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/levels/rooms/standard/SkullsRoom.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.rooms.standard;
import com.shatteredpixel.shatteredpixeldungeon.levels.Level;
import com.shatteredpixel.shatteredpixeldungeon.levels.Terrain;
import com.shatteredpixel.shatteredpixeldungeon.levels.painters.Painter;
import com.shatteredpixel.shatteredpixeldungeon.levels.rooms.standard.StandardRoom;
public class SkullsRoom extends StandardRoom {
@Override
public int minWidth() {
return Math.max(7, super.minWidth());
}
@Override
public int minHeight() {
return Math.max(7, super.minHeight());
}
@Override
public float[] sizeCatProbs() {
return new float[]{9, 3, 1};
}
@Override
public void paint(Level level) {
int minDim = Math.min(width(), height());
Painter.fill( level, this, Terrain.WALL );
if (minDim >= 9) {
Painter.fillEllipse(level, this, 2, Terrain.EMPTY);
} else {
Painter.fill(level, this, 2, Terrain.EMPTY);
}
for (Door door : connected.values()) {
door.set( Door.Type.REGULAR );
if (door.x == left || door.x == right){
Painter.drawInside(level, this, door, (width() - 3) / 2, Terrain.EMPTY);
} else {
Painter.drawInside(level, this, door, (height() - 3) / 2, Terrain.EMPTY);
}
}
boolean oddWidth = width() % 2 == 1;
boolean oddHeight = height() % 2 == 1;
if (minDim >= 12){
Painter.fillEllipse(level, this, 5, Terrain.STATUE);
Painter.fillEllipse(level, this, 6, Terrain.WALL);
} else {
Painter.fill(level,
left + width()/2 + (oddWidth ? 0 : -1),
top + height()/2 + (oddHeight ? 0 : -1),
oddWidth ? 1 : 2,
oddHeight ? 1 : 2,
Terrain.STATUE);
}
}
}
| 2,421 | SkullsRoom | java | en | java | code | {"qsc_code_num_words": 315, "qsc_code_num_chars": 2421.0, "qsc_code_mean_word_length": 5.28888889, "qsc_code_frac_words_unique": 0.44126984, "qsc_code_frac_chars_top_2grams": 0.03781513, "qsc_code_frac_chars_top_3grams": 0.11404562, "qsc_code_frac_chars_top_4grams": 0.13205282, "qsc_code_frac_chars_dupe_5grams": 0.31332533, "qsc_code_frac_chars_dupe_6grams": 0.10204082, "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.02394294, "qsc_code_frac_chars_whitespace": 0.18917803, "qsc_code_size_file_byte": 2421.0, "qsc_code_num_lines": 88.0, "qsc_code_num_chars_line_max": 84.0, "qsc_code_num_chars_line_mean": 27.51136364, "qsc_code_frac_chars_alphabet": 0.82475802, "qsc_code_frac_chars_comments": 0.32259397, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.14, "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.06, "qsc_codejava_score_lines_no_logic": 0.16, "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/levels/rooms/standard/BlacksmithRoom.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.rooms.standard;
import com.shatteredpixel.shatteredpixeldungeon.actors.mobs.npcs.Blacksmith;
import com.shatteredpixel.shatteredpixeldungeon.items.Generator;
import com.shatteredpixel.shatteredpixeldungeon.levels.Level;
import com.shatteredpixel.shatteredpixeldungeon.levels.Terrain;
import com.shatteredpixel.shatteredpixeldungeon.levels.painters.Painter;
import com.shatteredpixel.shatteredpixeldungeon.levels.traps.BurningTrap;
import com.watabou.utils.Point;
import com.watabou.utils.Random;
public class BlacksmithRoom extends StandardRoom {
@Override
public int minWidth() {
return Math.max(super.minWidth(), 6);
}
@Override
public int minHeight() {
return Math.max(super.minHeight(), 6);
}
public void paint(Level level ) {
Painter.fill( level, this, Terrain.WALL );
Painter.fill( level, this, 1, Terrain.TRAP );
Painter.fill( level, this, 2, Terrain.EMPTY_SP );
for (int i=0; i < 2; i++) {
int pos;
do {
pos = level.pointToCell(random());
} while (level.map[pos] != Terrain.EMPTY_SP);
level.drop(
Generator.random( Random.oneOf(
Generator.Category.ARMOR,
Generator.Category.WEAPON,
Generator.Category.MISSILE
) ), pos );
}
for (Door door : connected.values()) {
door.set( Door.Type.REGULAR );
Painter.drawInside( level, this, door, 1, Terrain.EMPTY );
}
Blacksmith npc = new Blacksmith();
do {
npc.pos = level.pointToCell(random( 2 ));
} while (level.heaps.get( npc.pos ) != null);
level.mobs.add( npc );
for(Point p : getPoints()) {
int cell = level.pointToCell(p);
if (level.map[cell] == Terrain.TRAP){
level.setTrap(new BurningTrap().reveal(), cell);
}
}
}
}
| 2,526 | BlacksmithRoom | java | en | java | code | {"qsc_code_num_words": 327, "qsc_code_num_chars": 2526.0, "qsc_code_mean_word_length": 5.5351682, "qsc_code_frac_words_unique": 0.47400612, "qsc_code_frac_chars_top_2grams": 0.03977901, "qsc_code_frac_chars_top_3grams": 0.14696133, "qsc_code_frac_chars_top_4grams": 0.14585635, "qsc_code_frac_chars_dupe_5grams": 0.1558011, "qsc_code_frac_chars_dupe_6grams": 0.03093923, "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.01192179, "qsc_code_frac_chars_whitespace": 0.16983373, "qsc_code_size_file_byte": 2526.0, "qsc_code_num_lines": 81.0, "qsc_code_num_chars_line_max": 77.0, "qsc_code_num_chars_line_mean": 31.18518519, "qsc_code_frac_chars_alphabet": 0.85121602, "qsc_code_frac_chars_comments": 0.30918448, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.07843137, "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.05882353, "qsc_codejava_score_lines_no_logic": 0.25490196, "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/levels/rooms/standard/CaveRoom.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.rooms.standard;
import com.shatteredpixel.shatteredpixeldungeon.levels.Level;
import com.shatteredpixel.shatteredpixeldungeon.levels.Terrain;
import com.shatteredpixel.shatteredpixeldungeon.levels.painters.Painter;
public class CaveRoom extends PatchRoom {
@Override
public float[] sizeCatProbs() {
return new float[]{9, 3, 1};
}
@Override
public void paint(Level level) {
Painter.fill( level, this, Terrain.WALL );
Painter.fill( level, this, 1 , Terrain.EMPTY );
for (Door door : connected.values()) {
door.set( Door.Type.REGULAR );
}
//fill scales from ~25% at 4x4, to ~55% at 18x18
// normal ~25% to ~35%
// large ~35% to ~45%
// giant ~45% to ~55%
float fill = 0.25f + (width()*height())/1024f;
setupPatch(level, fill, 4, true);
cleanDiagonalEdges();
for (int i = top + 1; i < bottom; i++) {
for (int j = left + 1; j < right; j++) {
if (patch[xyToPatchCoords(j, i)]) {
int cell = i * level.width() + j;
level.map[cell] = Terrain.WALL;
}
}
}
}
}
| 1,874 | CaveRoom | java | en | java | code | {"qsc_code_num_words": 258, "qsc_code_num_chars": 1874.0, "qsc_code_mean_word_length": 4.98449612, "qsc_code_frac_words_unique": 0.55813953, "qsc_code_frac_chars_top_2grams": 0.05287714, "qsc_code_frac_chars_top_3grams": 0.11819596, "qsc_code_frac_chars_top_4grams": 0.13685848, "qsc_code_frac_chars_dupe_5grams": 0.18040435, "qsc_code_frac_chars_dupe_6grams": 0.04354588, "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.03538051, "qsc_code_frac_chars_whitespace": 0.20064034, "qsc_code_size_file_byte": 1874.0, "qsc_code_num_lines": 62.0, "qsc_code_num_chars_line_max": 73.0, "qsc_code_num_chars_line_mean": 30.22580645, "qsc_code_frac_chars_alphabet": 0.82309746, "qsc_code_frac_chars_comments": 0.48078975, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.06896552, "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.03448276, "qsc_codejava_score_lines_no_logic": 0.17241379, "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/levels/rooms/standard/EntranceRoom.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.rooms.standard;
import com.shatteredpixel.shatteredpixeldungeon.Badges;
import com.shatteredpixel.shatteredpixeldungeon.Dungeon;
import com.shatteredpixel.shatteredpixeldungeon.items.journal.GuidePage;
import com.shatteredpixel.shatteredpixeldungeon.journal.Document;
import com.shatteredpixel.shatteredpixeldungeon.levels.Level;
import com.shatteredpixel.shatteredpixeldungeon.levels.Terrain;
import com.shatteredpixel.shatteredpixeldungeon.levels.painters.Painter;
import com.shatteredpixel.shatteredpixeldungeon.levels.rooms.Room;
import com.watabou.utils.Point;
import com.watabou.utils.Random;
public class EntranceRoom extends StandardRoom {
@Override
public int minWidth() {
return Math.max(super.minWidth(), 5);
}
@Override
public int minHeight() {
return Math.max(super.minHeight(), 5);
}
public void paint( Level level ) {
Painter.fill( level, this, Terrain.WALL );
Painter.fill( level, this, 1, Terrain.EMPTY );
for (Room.Door door : connected.values()) {
door.set( Room.Door.Type.REGULAR );
}
do {
level.entrance = level.pointToCell(random(2));
} while (level.findMob(level.entrance) != null);
Painter.set( level, level.entrance, Terrain.ENTRANCE );
if (Dungeon.depth == 1 && !Document.ADVENTURERS_GUIDE.hasPage(Document.GUIDE_INTRO_PAGE)){
int pos;
do {
//can't be on bottom row of tiles
pos = level.pointToCell(new Point( Random.IntRange( left + 1, right - 1 ),
Random.IntRange( top + 1, bottom - 2 )));
} while (pos == level.entrance || level.findMob(level.entrance) != null);
GuidePage p = new GuidePage();
p.page(Document.GUIDE_INTRO_PAGE);
level.drop( p, pos );
}
if (Dungeon.depth == 2){
if (!Badges.isUnlocked(Badges.Badge.BOSS_SLAIN_1)){
for (Room.Door door : connected.values()) {
door.set( Door.Type.HIDDEN );
}
}
if (!Document.ADVENTURERS_GUIDE.hasPage(Document.GUIDE_SEARCH_PAGE)){
int pos;
do {
//can't be on bottom row of tiles
pos = level.pointToCell(new Point( Random.IntRange( left + 1, right - 1 ),
Random.IntRange( top + 1, bottom - 2 )));
} while (pos == level.entrance || level.findMob(level.entrance) != null);
GuidePage p = new GuidePage();
p.page(Document.GUIDE_SEARCH_PAGE);
level.drop( p, pos );
}
}
}
}
| 3,140 | EntranceRoom | java | en | java | code | {"qsc_code_num_words": 408, "qsc_code_num_chars": 3140.0, "qsc_code_mean_word_length": 5.4754902, "qsc_code_frac_words_unique": 0.38480392, "qsc_code_frac_chars_top_2grams": 0.04028648, "qsc_code_frac_chars_top_3grams": 0.15308863, "qsc_code_frac_chars_top_4grams": 0.15756491, "qsc_code_frac_chars_dupe_5grams": 0.43285586, "qsc_code_frac_chars_dupe_6grams": 0.27931961, "qsc_code_frac_chars_dupe_7grams": 0.21486124, "qsc_code_frac_chars_dupe_8grams": 0.21486124, "qsc_code_frac_chars_dupe_9grams": 0.18173679, "qsc_code_frac_chars_dupe_10grams": 0.18173679, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.01227936, "qsc_code_frac_chars_whitespace": 0.17006369, "qsc_code_size_file_byte": 3140.0, "qsc_code_num_lines": 95.0, "qsc_code_num_chars_line_max": 93.0, "qsc_code_num_chars_line_mean": 33.05263158, "qsc_code_frac_chars_alphabet": 0.84497314, "qsc_code_frac_chars_comments": 0.26974522, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.3220339, "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.05084746, "qsc_codejava_score_lines_no_logic": 0.27118644, "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/levels/rooms/standard/ImpShopRoom.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.rooms.standard;
import com.shatteredpixel.shatteredpixeldungeon.actors.mobs.Mob;
import com.shatteredpixel.shatteredpixeldungeon.actors.mobs.npcs.Imp;
import com.shatteredpixel.shatteredpixeldungeon.actors.mobs.npcs.ImpShopkeeper;
import com.shatteredpixel.shatteredpixeldungeon.levels.Level;
import com.shatteredpixel.shatteredpixeldungeon.levels.Terrain;
import com.shatteredpixel.shatteredpixeldungeon.levels.painters.Painter;
import com.shatteredpixel.shatteredpixeldungeon.levels.rooms.special.ShopRoom;
import com.watabou.utils.Bundle;
//shops probably shouldn't extend special room, because of cases like this.
public class ImpShopRoom extends ShopRoom {
private boolean impSpawned = false;
//force a certain size here to guarantee enough room for 48 items, and the same center space
@Override
public int minWidth() {
return 9;
}
public int minHeight() {
return 9;
}
public int maxWidth() { return 9; }
public int maxHeight() { return 9; }
@Override
public int maxConnections(int direction) {
return 2;
}
@Override
public void paint(Level level) {
Painter.fill( level, this, Terrain.WALL );
Painter.fill( level, this, 1, Terrain.EMPTY_SP );
Painter.fill( level, this, 3, Terrain.WATER);
for (Door door : connected.values()) {
door.set( Door.Type.REGULAR );
}
if (Imp.Quest.isCompleted()){
impSpawned = true;
placeItems(level);
placeShopkeeper(level);
} else {
impSpawned = false;
}
}
@Override
protected void placeShopkeeper(Level level) {
int pos = level.pointToCell(center());
Mob shopkeeper = new ImpShopkeeper();
shopkeeper.pos = pos;
level.mobs.add( shopkeeper );
}
//fix for connections not being bundled normally
@Override
public Door entrance() {
return connected.isEmpty() ? new Door(left, top+2) : super.entrance();
}
private void spawnShop(Level level){
impSpawned = true;
super.paint(level);
}
private static final String IMP = "imp_spawned";
@Override
public void storeInBundle(Bundle bundle) {
super.storeInBundle(bundle);
bundle.put(IMP, impSpawned);
}
@Override
public void restoreFromBundle(Bundle bundle) {
super.restoreFromBundle(bundle);
impSpawned = bundle.getBoolean(IMP);
}
@Override
public void onLevelLoad(Level level) {
super.onLevelLoad(level);
if (Imp.Quest.isCompleted() && !impSpawned){
impSpawned = true;
placeItems(level);
placeShopkeeper(level);
}
}
}
| 3,259 | ImpShopRoom | java | en | java | code | {"qsc_code_num_words": 406, "qsc_code_num_chars": 3259.0, "qsc_code_mean_word_length": 5.94334975, "qsc_code_frac_words_unique": 0.45812808, "qsc_code_frac_chars_top_2grams": 0.05636138, "qsc_code_frac_chars_top_3grams": 0.12598425, "qsc_code_frac_chars_top_4grams": 0.12764194, "qsc_code_frac_chars_dupe_5grams": 0.27186075, "qsc_code_frac_chars_dupe_6grams": 0.13427269, "qsc_code_frac_chars_dupe_7grams": 0.04807294, "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.00987925, "qsc_code_frac_chars_whitespace": 0.1613992, "qsc_code_size_file_byte": 3259.0, "qsc_code_num_lines": 120.0, "qsc_code_num_chars_line_max": 94.0, "qsc_code_num_chars_line_mean": 27.15833333, "qsc_code_frac_chars_alphabet": 0.8730333, "qsc_code_frac_chars_comments": 0.30561522, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.22368421, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.0048608, "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.15789474, "qsc_codejava_score_lines_no_logic": 0.31578947, "qsc_codejava_frac_words_no_modifier": 0.92307692, "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/rooms/standard/PillarsRoom.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.rooms.standard;
import com.shatteredpixel.shatteredpixeldungeon.levels.Level;
import com.shatteredpixel.shatteredpixeldungeon.levels.Terrain;
import com.shatteredpixel.shatteredpixeldungeon.levels.painters.Painter;
import com.watabou.utils.Random;
public class PillarsRoom extends StandardRoom {
@Override
public int minWidth() {
return Math.max(super.minWidth(), 7);
}
@Override
public int minHeight() {
return Math.max(super.minHeight(), 7);
}
@Override
public float[] sizeCatProbs() {
return new float[]{9, 3, 1};
}
@Override
public void paint(Level level) {
Painter.fill( level, this, Terrain.WALL );
Painter.fill( level, this, 1 , Terrain.EMPTY );
for (Door door : connected.values()) {
door.set( Door.Type.REGULAR );
}
int minDim = Math.min(width(), height());
//2 pillars
if (minDim == 7 || Random.Int(2) == 0){
int pillarInset = minDim >= 11 ? 2 : 1;
int pillarSize = ((minDim-3)/2) - pillarInset;
int pillarX, pillarY;
if (Random.Int(2) == 0) {
pillarX = Random.IntRange(left + 1 + pillarInset, right - pillarSize - pillarInset);
pillarY = top + 1 + pillarInset;
} else {
pillarX = left + 1 + pillarInset;
pillarY = Random.IntRange(top + 1 + pillarInset, bottom - pillarSize - pillarInset);
}
//first pillar
Painter.fill(level, pillarX, pillarY, pillarSize, pillarSize, Terrain.WALL);
//invert for second pillar
pillarX = right - (pillarX - left + pillarSize - 1);
pillarY = bottom - (pillarY - top + pillarSize - 1);
Painter.fill(level, pillarX, pillarY, pillarSize, pillarSize, Terrain.WALL);
//4 pillars
} else {
int pillarInset = minDim >= 12 ? 2 : 1;
int pillarSize = (minDim - 6)/(pillarInset + 1);
float xSpaces = width() - 2*pillarInset - pillarSize - 2;
float ySpaces = height() - 2*pillarInset - pillarSize - 2;
float minSpaces = Math.min(xSpaces, ySpaces);
float percentSkew = Math.round(Random.Float() * minSpaces) / minSpaces;
//top-left, skews right
Painter.fill(level, left + 1 + pillarInset + Math.round(percentSkew*xSpaces), top + 1 + pillarInset, pillarSize, pillarSize, Terrain.WALL);
//top-right, skews down
Painter.fill(level, right - pillarSize - pillarInset, top + 1 + pillarInset + Math.round(percentSkew*ySpaces), pillarSize, pillarSize, Terrain.WALL);
//bottom-right, skews left
Painter.fill(level, right - pillarSize - pillarInset - Math.round(percentSkew*xSpaces), bottom - pillarSize - pillarInset, pillarSize, pillarSize, Terrain.WALL);
//bottom-left, skews up
Painter.fill(level, left + 1 + pillarInset, bottom - pillarSize - pillarInset - Math.round(percentSkew*ySpaces), pillarSize, pillarSize, Terrain.WALL);
}
}
}
| 3,602 | PillarsRoom | java | en | java | code | {"qsc_code_num_words": 441, "qsc_code_num_chars": 3602.0, "qsc_code_mean_word_length": 5.65759637, "qsc_code_frac_words_unique": 0.35147392, "qsc_code_frac_chars_top_2grams": 0.03527054, "qsc_code_frac_chars_top_3grams": 0.05130261, "qsc_code_frac_chars_top_4grams": 0.0745491, "qsc_code_frac_chars_dupe_5grams": 0.37835671, "qsc_code_frac_chars_dupe_6grams": 0.18597194, "qsc_code_frac_chars_dupe_7grams": 0.10420842, "qsc_code_frac_chars_dupe_8grams": 0.10420842, "qsc_code_frac_chars_dupe_9grams": 0.10420842, "qsc_code_frac_chars_dupe_10grams": 0.0, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.01923738, "qsc_code_frac_chars_whitespace": 0.19183787, "qsc_code_size_file_byte": 3602.0, "qsc_code_num_lines": 106.0, "qsc_code_num_chars_line_max": 165.0, "qsc_code_num_chars_line_mean": 33.98113208, "qsc_code_frac_chars_alphabet": 0.83785641, "qsc_code_frac_chars_comments": 0.26041088, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.14545455, "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.05454545, "qsc_codejava_score_lines_no_logic": 0.14545455, "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/levels/rooms/standard/PatchRoom.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.rooms.standard;
import com.shatteredpixel.shatteredpixeldungeon.levels.Level;
import com.shatteredpixel.shatteredpixeldungeon.levels.Patch;
import com.shatteredpixel.shatteredpixeldungeon.utils.BArray;
import com.watabou.utils.PathFinder;
//This room type uses the patch system to fill itself in in some manner
//it's still up to the specific room to implement paint, but utility methods are provided
public abstract class PatchRoom extends StandardRoom {
protected boolean[] patch;
protected void setupPatch(Level level, float fill, int clustering, boolean ensurePath){
if (ensurePath){
PathFinder.setMapSize(width()-2, height()-2);
boolean valid;
do {
patch = Patch.generate(width()-2, height()-2, fill, clustering, true);
int startPoint = 0;
for (Door door : connected.values()) {
if (door.x == left) {
startPoint = xyToPatchCoords(door.x + 1, door.y);
patch[xyToPatchCoords(door.x + 1, door.y)] = false;
patch[xyToPatchCoords(door.x + 2, door.y)] = false;
} else if (door.x == right) {
startPoint = xyToPatchCoords(door.x - 1, door.y);
patch[xyToPatchCoords(door.x - 1, door.y)] = false;
patch[xyToPatchCoords(door.x - 2, door.y)] = false;
} else if (door.y == top) {
startPoint = xyToPatchCoords(door.x, door.y + 1);
patch[xyToPatchCoords(door.x, door.y + 1)] = false;
patch[xyToPatchCoords(door.x, door.y + 2)] = false;
} else if (door.y == bottom) {
startPoint = xyToPatchCoords(door.x, door.y - 1);
patch[xyToPatchCoords(door.x, door.y - 1)] = false;
patch[xyToPatchCoords(door.x, door.y - 2)] = false;
}
}
PathFinder.buildDistanceMap(startPoint, BArray.not(patch, null));
valid = true;
for (int i = 0; i < patch.length; i++){
if (!patch[i] && PathFinder.distance[i] == Integer.MAX_VALUE){
valid = false;
break;
}
}
} while (!valid);
PathFinder.setMapSize(level.width(), level.height());
} else {
patch = Patch.generate(width()-2, height()-2, fill, clustering, true);
}
}
//removes all diagonal-only adjacent filled patch areas, handy for making things look cleaner
//note that this will reduce the fill rate very slightly
protected void cleanDiagonalEdges(){
if (patch == null) return;
int pWidth = width()-2;
for (int i = 0; i < patch.length - pWidth; i++){
if (!patch[i]) continue;
//we don't need to check above because we are either at the top
// or have already dealt with those tiles
//down-left
if (i % pWidth != 0){
if (patch[i - 1 + pWidth] && !(patch[i - 1] || patch[i + pWidth])){
patch[i - 1 + pWidth] = false;
}
}
//down-right
if ((i + 1) % pWidth != 0){
if (patch[i + 1 + pWidth] && !(patch[i + 1] || patch[i + pWidth])){
patch[i + 1 + pWidth] = false;
}
}
}
}
protected int xyToPatchCoords(int x, int y){
return (x-left-1) + ((y-top-1) * (width()-2));
}
}
| 3,811 | PatchRoom | java | en | java | code | {"qsc_code_num_words": 519, "qsc_code_num_chars": 3811.0, "qsc_code_mean_word_length": 4.80539499, "qsc_code_frac_words_unique": 0.36608863, "qsc_code_frac_chars_top_2grams": 0.02806736, "qsc_code_frac_chars_top_3grams": 0.09623095, "qsc_code_frac_chars_top_4grams": 0.08019246, "qsc_code_frac_chars_dupe_5grams": 0.361668, "qsc_code_frac_chars_dupe_6grams": 0.3063352, "qsc_code_frac_chars_dupe_7grams": 0.28388132, "qsc_code_frac_chars_dupe_8grams": 0.26784282, "qsc_code_frac_chars_dupe_9grams": 0.26784282, "qsc_code_frac_chars_dupe_10grams": 0.26784282, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.01707971, "qsc_code_frac_chars_whitespace": 0.21647861, "qsc_code_size_file_byte": 3811.0, "qsc_code_num_lines": 112.0, "qsc_code_num_chars_line_max": 95.0, "qsc_code_num_chars_line_mean": 34.02678571, "qsc_code_frac_chars_alphabet": 0.81815137, "qsc_code_frac_chars_comments": 0.31933876, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.02941176, "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.04411765, "qsc_codejava_score_lines_no_logic": 0.13235294, "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/levels/rooms/standard/SegmentedRoom.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.rooms.standard;
import com.shatteredpixel.shatteredpixeldungeon.levels.Level;
import com.shatteredpixel.shatteredpixeldungeon.levels.Terrain;
import com.shatteredpixel.shatteredpixeldungeon.levels.painters.Painter;
import com.watabou.utils.Point;
import com.watabou.utils.Random;
import com.watabou.utils.Rect;
public class SegmentedRoom extends StandardRoom {
@Override
public int minWidth() {
return Math.max(super.minWidth(), 7);
}
@Override
public int minHeight() {
return Math.max(super.minHeight(), 7);
}
@Override
public float[] sizeCatProbs() {
return new float[]{9, 3, 1};
}
@Override
public void paint( Level level ) {
Painter.fill( level, this, Terrain.WALL );
Painter.fill( level, this, 1 , Terrain.EMPTY );
for (Door door : connected.values()) {
door.set( Door.Type.REGULAR );
//set door areas to be empty to help with create walls logic
Painter.set(level, door, Terrain.EMPTY);
}
createWalls( level, new Rect(left+1, top+1, right-1, bottom-1));
}
private void createWalls( Level level, Rect area ){
if (Math.max(area.width()+1, area.height()+1) < 5
|| Math.min(area.width()+1, area.height()+1) < 3){
return;
}
int tries = 10;
//splitting top/bottom
if (area.width() > area.height() || (area.width() == area.height() && Random.Int(2) == 0)){
do{
int splitX = Random.IntRange(area.left+2, area.right-2);
if (level.map[splitX + level.width()*(area.top-1)] == Terrain.WALL
&& level.map[splitX + level.width()*(area.bottom+1)] == Terrain.WALL){
tries = 0;
Painter.drawLine(level, new Point(splitX, area.top), new Point(splitX, area.bottom), Terrain.WALL);
int spaceTop = Random.IntRange(area.top, area.bottom-1);
Painter.set(level, splitX, spaceTop, Terrain.EMPTY);
Painter.set(level, splitX, spaceTop+1, Terrain.EMPTY);
createWalls(level, new Rect(area.left, area.top, splitX-1, area.bottom));
createWalls(level, new Rect(splitX+1, area.top, area.right, area.bottom));
}
} while (--tries > 0);
//splitting left/right
} else {
do{
int splitY = Random.IntRange(area.top+2, area.bottom-2);
if (level.map[area.left-1 + level.width()*splitY] == Terrain.WALL
&& level.map[area.right+1 + level.width()*splitY] == Terrain.WALL){
tries = 0;
Painter.drawLine(level, new Point(area.left, splitY), new Point(area.right, splitY), Terrain.WALL);
int spaceLeft = Random.IntRange(area.left, area.right-1);
Painter.set(level, spaceLeft, splitY, Terrain.EMPTY);
Painter.set(level, spaceLeft+1, splitY, Terrain.EMPTY);
createWalls(level, new Rect(area.left, area.top, area.right, splitY-1));
createWalls(level, new Rect(area.left, splitY+1, area.right, area.bottom));
}
} while (--tries > 0);
}
}
}
| 3,704 | SegmentedRoom | java | en | java | code | {"qsc_code_num_words": 506, "qsc_code_num_chars": 3704.0, "qsc_code_mean_word_length": 4.94071146, "qsc_code_frac_words_unique": 0.3083004, "qsc_code_frac_chars_top_2grams": 0.0308, "qsc_code_frac_chars_top_3grams": 0.03, "qsc_code_frac_chars_top_4grams": 0.046, "qsc_code_frac_chars_dupe_5grams": 0.3152, "qsc_code_frac_chars_dupe_6grams": 0.206, "qsc_code_frac_chars_dupe_7grams": 0.1, "qsc_code_frac_chars_dupe_8grams": 0.076, "qsc_code_frac_chars_dupe_9grams": 0.076, "qsc_code_frac_chars_dupe_10grams": 0.04, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.0189747, "qsc_code_frac_chars_whitespace": 0.18898488, "qsc_code_size_file_byte": 3704.0, "qsc_code_num_lines": 116.0, "qsc_code_num_chars_line_max": 105.0, "qsc_code_num_chars_line_mean": 31.93103448, "qsc_code_frac_chars_alphabet": 0.813249, "qsc_code_frac_chars_comments": 0.23893089, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.14925373, "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.05970149, "qsc_codejava_score_lines_no_logic": 0.17910448, "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} |
0015/ESP32Berry | Deprecated/ESP32Berry_0.3/ESP32Berry_Network.cpp | /////////////////////////////////////////////////////////////////
/*
ESP32Berry, "ESP-NOW Chat App" Version 0.3
For More Information: https://youtu.be/UhIXAp2wqjg
Created by Eric N. (ThatProject)
*/
/////////////////////////////////////////////////////////////////
#include "ESP32Berry_Network.h"
static Network *instance = NULL;
extern "C" void WiFiEvent(WiFiEvent_t event, WiFiEventInfo_t info) {
instance->WiFiEvent(event, info);
}
extern "C" void WiFiEventOn() {
WiFi.onEvent(WiFiEvent);
}
Network::Network(FuncPtrVector callback) {
instance = this;
telegram = NULL;
ntScanTaskHandler = NULL;
ntConnectTaskHandler = NULL;
network_result_cb = callback;
_networkEvent = NETWORK_DISCONNECTED;
WiFiEventOn();
WiFi.mode(WIFI_AP_STA);
}
Network::~Network() {
}
void Network::WiFiEvent(WiFiEvent_t event, WiFiEventInfo_t info) {
switch (event) {
case SYSTEM_EVENT_STA_DISCONNECTED:
WiFiLog.push_back("Disconnected from WiFi access point.");
this->set_network_status(NETWORK_DISCONNECTED);
this->network_result_cb(NETWORK_DISCONNECTED, WiFiLog);
this->telegram_enable(false);
break;
case SYSTEM_EVENT_STA_GOT_IP:
WiFiLog.push_back("WiFi Connected!");
this->set_network_status(NETWORK_CONNECTED);
this->network_result_cb(NETWORK_CONNECTED, WiFiLog);
this->telegram_enable(true);
break;
default:
break;
}
}
String Network::get_mac_address() {
return WiFi.macAddress();
}
void ntScanTask(void *pvParam) {
int taskCount = 0;
std::vector<String> foundWifiList;
while (1) {
++taskCount;
foundWifiList.clear();
int n = WiFi.scanNetworks();
vTaskDelay(10);
for (int i = 0; i < n; ++i) {
String item = WiFi.SSID(i) + " (" + WiFi.RSSI(i) + ") " + "[" + WiFi.channel(i) + "]" + ((WiFi.encryptionType(i) == WIFI_AUTH_OPEN) ? " " : "*");
foundWifiList.push_back(item);
vTaskDelay(10);
}
instance->set_network_status(NETWORK_SCANNING_ON);
instance->network_result_cb(NETWORK_SCANNING_ON, foundWifiList);
vTaskDelay(5000);
if (taskCount >= WIFI_SCAN_ITER) {
instance->ntScanTaskHandler = NULL;
vTaskDelete(NULL);
}
}
}
void ntBeginTask(void *pvParameters) {
char *_networkInfo = reinterpret_cast<char *>(pvParameters);
std::string networkInfo = std::string(_networkInfo);
int seperatorIdx = networkInfo.find(WIFI_SSID_PW_DELIMITER, 0);
if (seperatorIdx < 3) {
instance->WiFiLog.push_back("Something Wrong!");
instance->set_network_status(NETWORK_CONNECT_FAILURE);
instance->network_result_cb(NETWORK_CONNECT_FAILURE, instance->WiFiLog);
vTaskDelete(NULL);
}
const char *_ssid = networkInfo.substr(0, seperatorIdx).c_str();
const char *_pwd = networkInfo.substr(seperatorIdx + 2, networkInfo.length() - seperatorIdx + 2).c_str();
vTaskDelay(500);
unsigned long startingTime = millis();
WiFi.disconnect(true);
WiFi.begin(_ssid, _pwd);
vTaskDelay(100);
vTaskDelete(NULL);
}
void Network::WiFiCommend(Network_Event_t networkEvent, char *param) {
switch (networkEvent) {
case NETWORK_SCANNING_OFF:
this->WiFiScanner(false);
break;
case NETWORK_SCANNING_ON:
this->WiFiScanner(true);
break;
case NETWORK_CONNECTING:
this->WiFiConnector(param);
break;
}
}
void Network::WiFiScanner(bool isOn) {
if (isOn) {
xTaskCreate(ntScanTask,
"ntScanTask",
4096,
NULL,
1,
&ntScanTaskHandler);
} else {
this->WiFiScannerStop();
WiFi.disconnect(true);
this->set_network_status(NETWORK_DISCONNECTED);
}
}
void Network::WiFiScannerStop() {
if (ntScanTaskHandler != NULL) {
vTaskDelete(ntScanTaskHandler);
ntScanTaskHandler = NULL;
}
}
void Network::WiFiConnector(char *param) {
this->WiFiScannerStop();
WiFiLog.push_back("WiFi Connecting!");
this->set_network_status(NETWORK_CONNECTING);
this->network_result_cb(NETWORK_CONNECTING, WiFiLog);
xTaskCreate(ntBeginTask, "ntBeginTask", 2048, (void *)param, 2, &ntConnectTaskHandler);
}
void Network::set_network_status(Network_Event_t event) {
_networkEvent = event;
}
Network_Event_t Network::get_network_status() {
return _networkEvent;
}
extern "C" void telegram_cb_thunk(FB_msg &msg) {
instance->telegram_cb(msg);
}
void Network::telegram_cb(FB_msg &msg) {
String telegramMsg = "[" + msg.username + "] - " + msg.text;
WiFiLog.push_back(telegramMsg);
network_result_cb(TELEGRAM_MESSAGE, WiFiLog);
}
void Network::telegram_enable(bool isOn) {
if (isOn) {
telegram = new FastBot(TELEGRAM_BOT_TOKEN);
telegram->setChatID(TELEGRAM_CHAT_ID);
telegram_set_cb_func(telegram_cb_thunk);
} else {
telegram_remove_cb_func();
delete telegram;
telegram = NULL;
}
}
void Network::telegram_set_cb_func(void (*handler)(FB_msg &msg)) {
if (telegram != NULL) {
telegram->attach(handler);
}
}
void Network::telegram_remove_cb_func() {
if (telegram != NULL) {
telegram->detach();
}
}
void Network::telegram_reset_cb_func() {
if (telegram != NULL) {
telegram_set_cb_func(telegram_cb_thunk);
}
}
bool Network::telegram_send(String msg) {
if (telegram != NULL) {
uint8_t result = telegram->sendMessage(msg);
return result != 0;
} else {
return false;
}
}
void Network::update() {
if (telegram != NULL) telegram->tick();
} | 5,429 | ESP32Berry_Network | cpp | en | cpp | code | {"qsc_code_num_words": 594, "qsc_code_num_chars": 5429.0, "qsc_code_mean_word_length": 5.87710438, "qsc_code_frac_words_unique": 0.28451178, "qsc_code_frac_chars_top_2grams": 0.03781152, "qsc_code_frac_chars_top_3grams": 0.03007734, "qsc_code_frac_chars_top_4grams": 0.04611859, "qsc_code_frac_chars_dupe_5grams": 0.15124606, "qsc_code_frac_chars_dupe_6grams": 0.07848754, "qsc_code_frac_chars_dupe_7grams": 0.04239473, "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.00921763, "qsc_code_frac_chars_whitespace": 0.18069626, "qsc_code_size_file_byte": 5429.0, "qsc_code_num_lines": 209.0, "qsc_code_num_chars_line_max": 152.0, "qsc_code_num_chars_line_mean": 25.97607656, "qsc_code_frac_chars_alphabet": 0.7756295, "qsc_code_frac_chars_comments": 0.04973292, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.1849711, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.02713178, "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_codecpp_frac_lines_preprocessor_directives": 0.00578035, "qsc_codecpp_frac_lines_func_ratio": 0.03468208, "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.05202312, "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/lvgl_gui/lvgl/src/lv_misc/lv_log.c | /**
* @file lv_log.c
*
*/
/*********************
* INCLUDES
*********************/
#include "lv_log.h"
#if LV_USE_LOG
#include <stdarg.h>
#include <string.h>
#include "lv_printf.h"
#if LV_LOG_PRINTF
#include <stdio.h>
#endif
/*********************
* DEFINES
*********************/
/**********************
* TYPEDEFS
**********************/
/**********************
* STATIC PROTOTYPES
**********************/
/**********************
* STATIC VARIABLES
**********************/
static lv_log_print_g_cb_t custom_print_cb;
/**********************
* MACROS
**********************/
/**********************
* GLOBAL FUNCTIONS
**********************/
/**
* Register custom print/write function to call when a log is added.
* It can format its "File path", "Line number" and "Description" as required
* and send the formatted log message to a console or serial port.
* @param print_cb a function pointer to print a log
*/
void lv_log_register_print_cb(lv_log_print_g_cb_t print_cb)
{
custom_print_cb = print_cb;
}
/**
* Add a log
* @param level the level of log. (From `lv_log_level_t` enum)
* @param file name of the file when the log added
* @param line line number in the source code where the log added
* @param func name of the function when the log added
* @param format printf-like format string
* @param ... parameters for `format`
*/
void _lv_log_add(lv_log_level_t level, const char * file, int line, const char * func, const char * format, ...)
{
if(level >= _LV_LOG_LEVEL_NUM) return; /*Invalid level*/
if(level >= LV_LOG_LEVEL) {
va_list args;
va_start(args, format);
char buf[256];
lv_vsnprintf(buf, sizeof(buf), format, args);
va_end(args);
#if LV_LOG_PRINTF
/*Use only the file name not the path*/
size_t p;
for(p = strlen(file); p > 0; p--) {
if(file[p] == '/' || file[p] == '\\') {
p++; /*Skip the slash*/
break;
}
}
static const char * lvl_prefix[] = {"Trace", "Info", "Warn", "Error", "User"};
printf("%s: %s \t(%s #%d %s())\n", lvl_prefix[level], buf, &file[p], line, func);
#else
if(custom_print_cb) custom_print_cb(level, file, line, func, buf);
#endif
}
}
/**********************
* STATIC FUNCTIONS
**********************/
#endif /*LV_USE_LOG*/
| 2,410 | lv_log | c | en | c | code | {"qsc_code_num_words": 304, "qsc_code_num_chars": 2410.0, "qsc_code_mean_word_length": 3.92105263, "qsc_code_frac_words_unique": 0.35197368, "qsc_code_frac_chars_top_2grams": 0.05033557, "qsc_code_frac_chars_top_3grams": 0.04362416, "qsc_code_frac_chars_top_4grams": 0.04026846, "qsc_code_frac_chars_dupe_5grams": 0.11912752, "qsc_code_frac_chars_dupe_6grams": 0.02348993, "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.00213789, "qsc_code_frac_chars_whitespace": 0.22365145, "qsc_code_size_file_byte": 2410.0, "qsc_code_num_lines": 99.0, "qsc_code_num_chars_line_max": 113.0, "qsc_code_num_chars_line_mean": 24.34343434, "qsc_code_frac_chars_alphabet": 0.63495457, "qsc_code_frac_chars_comments": 0.5219917, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.13157895, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.05902778, "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.07894737, "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.21052632, "qsc_codec_frac_lines_print": 0.07894737, "qsc_codec_frac_lines_preprocessor_directives": 0.31578947} | 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/lvgl_gui/lvgl/src/lv_misc/lv_anim.h | /**
* @file anim.h
*
*/
#ifndef ANIM_H
#define ANIM_H
#ifdef __cplusplus
extern "C" {
#endif
/*********************
* INCLUDES
*********************/
#include "../lv_conf_internal.h"
#include <stdint.h>
#include <stdbool.h>
#include <string.h>
#include "lv_mem.h"
/*********************
* DEFINES
*********************/
/**********************
* TYPEDEFS
**********************/
/** Can be used to indicate if animations are enabled or disabled in a case*/
enum {
LV_ANIM_OFF,
LV_ANIM_ON,
};
typedef uint8_t lv_anim_enable_t;
/** Type of the animated value*/
typedef lv_coord_t lv_anim_value_t;
#if LV_USE_ANIMATION
#define LV_ANIM_REPEAT_INFINITE 0xFFFF
struct _lv_anim_t;
struct _lv_anim_path_t;
/** Get the current value during an animation*/
typedef lv_anim_value_t (*lv_anim_path_cb_t)(const struct _lv_anim_path_t *, const struct _lv_anim_t *);
typedef struct _lv_anim_path_t {
lv_anim_path_cb_t cb;
void * user_data;
} lv_anim_path_t;
/** Generic prototype of "animator" functions.
* First parameter is the variable to animate.
* Second parameter is the value to set.
* Compatible with `lv_xxx_set_yyy(obj, value)` functions
* The `x` in `_xcb_t` means its not a fully generic prototype because
* it doesn't receive `lv_anim_t *` as its first argument*/
typedef void (*lv_anim_exec_xcb_t)(void *, lv_anim_value_t);
/** Same as `lv_anim_exec_xcb_t` but receives `lv_anim_t *` as the first parameter.
* It's more consistent but less convenient. Might be used by binding generator functions.*/
typedef void (*lv_anim_custom_exec_cb_t)(struct _lv_anim_t *, lv_anim_value_t);
/** Callback to call when the animation is ready*/
typedef void (*lv_anim_ready_cb_t)(struct _lv_anim_t *);
/** Callback to call when the animation really stars (considering `delay`)*/
typedef void (*lv_anim_start_cb_t)(struct _lv_anim_t *);
/** Describes an animation*/
typedef struct _lv_anim_t {
void * var; /**<Variable to animate*/
lv_anim_exec_xcb_t exec_cb; /**< Function to execute to animate*/
lv_anim_start_cb_t start_cb; /**< Call it when the animation is starts (considering `delay`)*/
lv_anim_ready_cb_t ready_cb; /**< Call it when the animation is ready*/
lv_anim_path_t path; /**< Describe the path (curve) of animations*/
int32_t start; /**< Start value*/
int32_t end; /**< End value*/
int32_t time; /**< Animation time in ms*/
int32_t act_time; /**< Current time in animation. Set to negative to make delay.*/
uint32_t playback_delay; /**< Wait before play back*/
uint32_t playback_time; /**< Duration of playback animation*/
uint32_t repeat_delay; /**< Wait before repeat*/
uint16_t repeat_cnt; /**< Repeat count for the animation*/
uint8_t early_apply : 1; /**< 1: Apply start value immediately even is there is `delay` */
#if LV_USE_USER_DATA
lv_anim_user_data_t user_data; /**< Custom user data*/
#endif
/*Animation system use these - user shouldn't set*/
uint32_t time_orig;
uint8_t playback_now : 1; /**< Play back is in progress*/
uint32_t has_run : 1; /**< Indicates the animation has run in this round*/
} lv_anim_t;
/**********************
* GLOBAL PROTOTYPES
**********************/
/**
* Init. the animation module
*/
void _lv_anim_core_init(void);
/**
* Initialize an animation variable.
* E.g.:
* lv_anim_t a;
* lv_anim_init(&a);
* lv_anim_set_...(&a);
* @param a pointer to an `lv_anim_t` variable to initialize
*/
void lv_anim_init(lv_anim_t * a);
/**
* Set a variable to animate
* @param a pointer to an initialized `lv_anim_t` variable
* @param var pointer to a variable to animate
*/
static inline void lv_anim_set_var(lv_anim_t * a, void * var)
{
a->var = var;
}
/**
* Set a function to animate `var`
* @param a pointer to an initialized `lv_anim_t` variable
* @param exec_cb a function to execute during animation
* LittelvGL's built-in functions can be used.
* E.g. lv_obj_set_x
*/
static inline void lv_anim_set_exec_cb(lv_anim_t * a, lv_anim_exec_xcb_t exec_cb)
{
a->exec_cb = exec_cb;
}
/**
* Set the duration of an animation
* @param a pointer to an initialized `lv_anim_t` variable
* @param duration duration of the animation in milliseconds
*/
static inline void lv_anim_set_time(lv_anim_t * a, uint32_t duration)
{
a->time = duration;
}
/**
* Set a delay before starting the animation
* @param a pointer to an initialized `lv_anim_t` variable
* @param delay delay before the animation in milliseconds
*/
static inline void lv_anim_set_delay(lv_anim_t * a, uint32_t delay)
{
a->act_time = -(int32_t)(delay);
}
/**
* Set the start and end values of an animation
* @param a pointer to an initialized `lv_anim_t` variable
* @param start the start value
* @param end the end value
*/
static inline void lv_anim_set_values(lv_anim_t * a, lv_anim_value_t start, lv_anim_value_t end)
{
a->start = start;
a->end = end;
}
/**
* Similar to `lv_anim_set_exec_cb` but `lv_anim_custom_exec_cb_t` receives
* `lv_anim_t * ` as its first parameter instead of `void *`.
* This function might be used when LVGL is binded to other languages because
* it's more consistent to have `lv_anim_t *` as first parameter.
* The variable to animate can be stored in the animation's `user_sata`
* @param a pointer to an initialized `lv_anim_t` variable
* @param exec_cb a function to execute.
*/
static inline void lv_anim_set_custom_exec_cb(lv_anim_t * a, lv_anim_custom_exec_cb_t exec_cb)
{
a->var = a;
a->exec_cb = (lv_anim_exec_xcb_t)exec_cb;
}
/**
* Set the path (curve) of the animation.
* @param a pointer to an initialized `lv_anim_t` variable
* @param path_cb a function the get the current value of the animation.
* The built in functions starts with `lv_anim_path_...`
*/
static inline void lv_anim_set_path(lv_anim_t * a, const lv_anim_path_t * path)
{
_lv_memcpy_small(&a->path, path, sizeof(lv_anim_path_t));
}
/**
* Set a function call when the animation really starts (considering `delay`)
* @param a pointer to an initialized `lv_anim_t` variable
* @param start_cb a function call when the animation starts
*/
static inline void lv_anim_set_start_cb(lv_anim_t * a, lv_anim_ready_cb_t start_cb)
{
a->start_cb = start_cb;
}
/**
* Set a function call when the animation is ready
* @param a pointer to an initialized `lv_anim_t` variable
* @param ready_cb a function call when the animation is ready
*/
static inline void lv_anim_set_ready_cb(lv_anim_t * a, lv_anim_ready_cb_t ready_cb)
{
a->ready_cb = ready_cb;
}
/**
* Make the animation to play back to when the forward direction is ready
* @param a pointer to an initialized `lv_anim_t` variable
* @param time the duration of the playback animation in in milliseconds. 0: disable playback
*/
static inline void lv_anim_set_playback_time(lv_anim_t * a, uint16_t time)
{
a->playback_time = time;
}
/**
* Make the animation to play back to when the forward direction is ready
* @param a pointer to an initialized `lv_anim_t` variable
* @param delay delay in milliseconds before starting the playback animation.
*/
static inline void lv_anim_set_playback_delay(lv_anim_t * a, uint16_t delay)
{
a->playback_delay = delay;
}
/**
* Make the animation repeat itself.
* @param a pointer to an initialized `lv_anim_t` variable
* @param cnt repeat count or `LV_ANIM_REPEAT_INFINITE` for infinite repetition. 0: to disable repetition.
*/
static inline void lv_anim_set_repeat_count(lv_anim_t * a, uint16_t cnt)
{
a->repeat_cnt = cnt;
}
/**
* Set a delay before repeating the animation.
* @param a pointer to an initialized `lv_anim_t` variable
* @param delay delay in milliseconds before repeating the animation.
*/
static inline void lv_anim_set_repeat_delay(lv_anim_t * a, uint16_t delay)
{
a->repeat_delay = delay;
}
/**
* Create an animation
* @param a an initialized 'anim_t' variable. Not required after call.
*/
void lv_anim_start(lv_anim_t * a);
/**
* Initialize an animation path
* @param path pointer to path
*/
static inline void lv_anim_path_init(lv_anim_path_t * path)
{
_lv_memset_00(path, sizeof(lv_anim_path_t));
}
/**
* Set a callback for a path
* @param path pointer to an initialized path
* @param cb the callback
*/
static inline void lv_anim_path_set_cb(lv_anim_path_t * path, lv_anim_path_cb_t cb)
{
path->cb = cb;
}
/**
* Set a user data for a path
* @param path pointer to an initialized path
* @param user_data pointer to the user data
*/
static inline void lv_anim_path_set_user_data(lv_anim_path_t * path, void * user_data)
{
path->user_data = user_data;
}
/**
* Get a delay before starting the animation
* @param a pointer to an initialized `lv_anim_t` variable
* @return delay before the animation in milliseconds
*/
static inline int32_t lv_anim_get_delay(lv_anim_t * a)
{
return -a->act_time;
}
/**
* Delete an animation of a variable with a given animator function
* @param var pointer to variable
* @param exec_cb a function pointer which is animating 'var',
* or NULL to ignore it and delete all the animations of 'var
* @return true: at least 1 animation is deleted, false: no animation is deleted
*/
bool lv_anim_del(void * var, lv_anim_exec_xcb_t exec_cb);
/**
* Get the animation of a variable and its `exec_cb`.
* @param var pointer to variable
* @param exec_cb a function pointer which is animating 'var',
* or NULL to delete all the animations of 'var'
* @return pointer to the animation.
*/
lv_anim_t * lv_anim_get(void * var, lv_anim_exec_xcb_t exec_cb);
/**
* Delete an animation by getting the animated variable from `a`.
* Only animations with `exec_cb` will be deleted.
* This function exists because it's logical that all anim. functions receives an
* `lv_anim_t` as their first parameter. It's not practical in C but might make
* the API more consequent and makes easier to generate bindings.
* @param a pointer to an animation.
* @param exec_cb a function pointer which is animating 'var',
* or NULL to ignore it and delete all the animations of 'var
* @return true: at least 1 animation is deleted, false: no animation is deleted
*/
static inline bool lv_anim_custom_del(lv_anim_t * a, lv_anim_custom_exec_cb_t exec_cb)
{
return lv_anim_del(a->var, (lv_anim_exec_xcb_t)exec_cb);
}
/**
* Get the number of currently running animations
* @return the number of running animations
*/
uint16_t lv_anim_count_running(void);
/**
* Calculate the time of an animation with a given speed and the start and end values
* @param speed speed of animation in unit/sec
* @param start start value of the animation
* @param end end value of the animation
* @return the required time [ms] for the animation with the given parameters
*/
uint16_t lv_anim_speed_to_time(uint16_t speed, lv_anim_value_t start, lv_anim_value_t end);
/**
* Manually refresh the state of the animations.
* Useful to make the animations running in a blocking process where
* `lv_task_handler` can't run for a while.
* Shouldn't be used directly because it is called in `lv_refr_now()`.
*/
void lv_anim_refr_now(void);
/**
* Calculate the current value of an animation applying linear characteristic
* @param a pointer to an animation
* @return the current value to set
*/
lv_anim_value_t lv_anim_path_linear(const lv_anim_path_t * path, const lv_anim_t * a);
/**
* Calculate the current value of an animation slowing down the start phase
* @param a pointer to an animation
* @return the current value to set
*/
lv_anim_value_t lv_anim_path_ease_in(const lv_anim_path_t * path, const lv_anim_t * a);
/**
* Calculate the current value of an animation slowing down the end phase
* @param a pointer to an animation
* @return the current value to set
*/
lv_anim_value_t lv_anim_path_ease_out(const lv_anim_path_t * path, const lv_anim_t * a);
/**
* Calculate the current value of an animation applying an "S" characteristic (cosine)
* @param a pointer to an animation
* @return the current value to set
*/
lv_anim_value_t lv_anim_path_ease_in_out(const lv_anim_path_t * path, const lv_anim_t * a);
/**
* Calculate the current value of an animation with overshoot at the end
* @param a pointer to an animation
* @return the current value to set
*/
lv_anim_value_t lv_anim_path_overshoot(const lv_anim_path_t * path, const lv_anim_t * a);
/**
* Calculate the current value of an animation with 3 bounces
* @param a pointer to an animation
* @return the current value to set
*/
lv_anim_value_t lv_anim_path_bounce(const lv_anim_path_t * path, const lv_anim_t * a);
/**
* Calculate the current value of an animation applying step characteristic.
* (Set end value on the end of the animation)
* @param a pointer to an animation
* @return the current value to set
*/
lv_anim_value_t lv_anim_path_step(const lv_anim_path_t * path, const lv_anim_t * a);
/**********************
* GLOBAL VARIABLES
**********************/
extern const lv_anim_path_t lv_anim_path_def;
/**********************
* MACROS
**********************/
#endif /*LV_USE_ANIMATION == 0*/
#ifdef __cplusplus
} /* extern "C" */
#endif
#endif /*LV_ANIM_H*/
| 13,410 | lv_anim | h | en | c | code | {"qsc_code_num_words": 2170, "qsc_code_num_chars": 13410.0, "qsc_code_mean_word_length": 4.09953917, "qsc_code_frac_words_unique": 0.12396313, "qsc_code_frac_chars_top_2grams": 0.10386691, "qsc_code_frac_chars_top_3grams": 0.04170414, "qsc_code_frac_chars_top_4grams": 0.02248201, "qsc_code_frac_chars_dupe_5grams": 0.5379946, "qsc_code_frac_chars_dupe_6grams": 0.49291817, "qsc_code_frac_chars_dupe_7grams": 0.43053058, "qsc_code_frac_chars_dupe_8grams": 0.36769335, "qsc_code_frac_chars_dupe_9grams": 0.33880396, "qsc_code_frac_chars_dupe_10grams": 0.32947392, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.00533481, "qsc_code_frac_chars_whitespace": 0.18926174, "qsc_code_size_file_byte": 13410.0, "qsc_code_num_lines": 432.0, "qsc_code_num_chars_line_max": 107.0, "qsc_code_num_chars_line_mean": 31.04166667, "qsc_code_frac_chars_alphabet": 0.81291391, "qsc_code_frac_chars_comments": 0.63825503, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.04794521, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.00618429, "qsc_code_frac_chars_long_word_length": 0.004329, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.00123686, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0, "qsc_codec_frac_lines_func_ratio": 0.23287671, "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.26712329, "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} |
00jacs/sveltekit-ultrafast | src/lib/components/common/popover/popover.svelte | <script lang="ts">
import { createEventDispatcher } from 'svelte';
import { Icon, XMark } from 'svelte-hero-icons';
export let open: boolean;
export let id: string | undefined = undefined;
let className = '';
export { className as class };
// you can also disable this by setting it to false
// and display the icon in the popover container yourself
export let withCloseIcon = true;
interface ModalElement extends HTMLElement {
showModal: () => void;
close: () => void;
}
export let element: ModalElement | null = null;
const dispatch = createEventDispatcher();
function handleClose() {
dispatch('close');
open = false;
}
$: if (open) {
element?.showModal();
} else {
element?.close();
}
</script>
<dialog {id} class="modal {className}" bind:this={element} on:close={handleClose}>
<div class="border-1 modal-box relative border-solid border-base-300">
{#if withCloseIcon}
<button class="absolute right-4 top-4" on:click={handleClose}>
<Icon src={XMark} class="h-5 w-5" />
</button>
{/if}
<slot>Default slot of the dialog box.</slot>
</div>
</dialog>
| 1,107 | popover | svelte | en | svelte | code | {"qsc_code_num_words": 139, "qsc_code_num_chars": 1107.0, "qsc_code_mean_word_length": 5.37410072, "qsc_code_frac_words_unique": 0.57553957, "qsc_code_frac_chars_top_2grams": 0.04819277, "qsc_code_frac_chars_top_3grams": 0.0, "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.00881057, "qsc_code_frac_chars_whitespace": 0.17976513, "qsc_code_size_file_byte": 1107.0, "qsc_code_num_lines": 45.0, "qsc_code_num_chars_line_max": 83.0, "qsc_code_num_chars_line_mean": 24.6, "qsc_code_frac_chars_alphabet": 0.81387665, "qsc_code_frac_chars_comments": 0.77506775, "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.10040161, "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} |
00jacs/sveltekit-ultrafast | src/lib/components/common/slideover/slideover.svelte | <script lang="ts">
import { fly } from 'svelte/transition';
import { createEventDispatcher } from 'svelte';
import Button from '../button/button.svelte';
import { Icon, XMark } from 'svelte-hero-icons';
export let open: boolean;
export let title: string;
export let subtitle: string = '';
export let cancelText: string = 'Cancel';
export let submitText: string = 'Save';
export let showButtons: boolean = true;
const dispatch = createEventDispatcher();
</script>
<div class="relative" style="z-index: 100;">
{#if open}
<div class="fixed inset-0"></div>
<div class="fixed inset-0 overflow-hidden">
<div class="absolute inset-0 overflow-hidden">
<div class="pointer-events-none fixed inset-y-0 right-0 flex max-w-full pl-10">
<div
class="min-w-screen pointer-events-auto w-screen max-w-md bg-base-100"
transition:fly={{ x: '100%', opacity: 0.5, duration: 500 }}>
<div
class="flex h-full flex-col overflow-y-scroll border border-base-200 shadow-xl">
<div class="bg-primary px-4 py-6 sm:px-6">
<div class="flex items-center justify-between">
<h2 class="pr-4 text-xl font-semibold leading-6 text-primary-content">
{title}
</h2>
<button type="button" on:click={() => (open = false)}>
<Icon src={XMark} color="white" size="1.6rem" />
</button>
</div>
<div class="mt-1 pr-4">
<p class="text-sm text-primary-content text-opacity-80">{subtitle}</p>
</div>
</div>
<div class="relative flex-1 px-4 py-6 sm:px-6">
<slot />
</div>
{#if showButtons}
<div class="flex flex-shrink-0 justify-end gap-2 px-4 py-4">
<Button
type="button"
class="btn-outline border-base-300"
on:click={() => {
open = false;
dispatch('cancel');
}}>
{cancelText}
</Button>
<Button
type="submit"
class="btn-primary"
on:click={() => dispatch('save')}>
{submitText}
</Button>
</div>
{/if}
</div>
</div>
</div>
</div>
</div>
{/if}
</div>
| 2,183 | slideover | svelte | en | svelte | code | {"qsc_code_num_words": 281, "qsc_code_num_chars": 2183.0, "qsc_code_mean_word_length": 4.38434164, "qsc_code_frac_words_unique": 0.39501779, "qsc_code_frac_chars_top_2grams": 0.07792208, "qsc_code_frac_chars_top_3grams": 0.02922078, "qsc_code_frac_chars_top_4grams": 0.02922078, "qsc_code_frac_chars_dupe_5grams": 0.08928571, "qsc_code_frac_chars_dupe_6grams": 0.06331169, "qsc_code_frac_chars_dupe_7grams": 0.01785714, "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.03007519, "qsc_code_frac_chars_whitespace": 0.26889601, "qsc_code_size_file_byte": 2183.0, "qsc_code_num_lines": 70.0, "qsc_code_num_chars_line_max": 88.0, "qsc_code_num_chars_line_mean": 31.18571429, "qsc_code_frac_chars_alphabet": 0.74185464, "qsc_code_frac_chars_comments": 0.0, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.28787879, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.04545455, "qsc_code_frac_chars_string_length": 0.32020156, "qsc_code_frac_chars_long_word_length": 0.01053596, "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} |
0015/ESP32Berry | Deprecated/ESP32Berry_0.3/ESP32Berry_BG.c | /////////////////////////////////////////////////////////////////
/*
ESP32Berry, "ESP-NOW Chat App" Version 0.3
For More Information: https://youtu.be/UhIXAp2wqjg
Created by Eric N. (ThatProject)
*/
/////////////////////////////////////////////////////////////////
#include "lvgl.h"
#ifndef LV_ATTRIBUTE_MEM_ALIGN
#define LV_ATTRIBUTE_MEM_ALIGN
#endif
#ifndef LV_ATTRIBUTE_IMG_ESP32BERRY_BG
#define LV_ATTRIBUTE_IMG_ESP32BERRY_BG
#endif
const LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_LARGE_CONST LV_ATTRIBUTE_IMG_ESP32BERRY_BG uint8_t ESP32Berry_BG_map[] = {
0xa9, 0x9e, 0xd4, 0xff, /*Color of index 0*/
0x95, 0x89, 0xf1, 0xff, /*Color of index 1*/
0x98, 0x8b, 0xd7, 0xff, /*Color of index 2*/
0x9a, 0x8b, 0xc1, 0xff, /*Color of index 3*/
0x86, 0x79, 0xfa, 0xff, /*Color of index 4*/
0x8d, 0x7d, 0xdf, 0xff, /*Color of index 5*/
0x8e, 0x7f, 0xd2, 0xff, /*Color of index 6*/
0x91, 0x82, 0xc1, 0xff, /*Color of index 7*/
0x80, 0x71, 0xef, 0xff, /*Color of index 8*/
0x8b, 0x7b, 0xc3, 0xff, /*Color of index 9*/
0x83, 0x74, 0xdd, 0xff, /*Color of index 10*/
0x7b, 0x6b, 0xfc, 0xff, /*Color of index 11*/
0x84, 0x73, 0xc8, 0xff, /*Color of index 12*/
0x71, 0x63, 0xfc, 0xff, /*Color of index 13*/
0x7c, 0x6b, 0xda, 0xff, /*Color of index 14*/
0x73, 0x64, 0xef, 0xff, /*Color of index 15*/
0x85, 0x71, 0xb9, 0xff, /*Color of index 16*/
0x7c, 0x6a, 0xc7, 0xff, /*Color of index 17*/
0x71, 0x62, 0xe0, 0xff, /*Color of index 18*/
0x6a, 0x5a, 0xfc, 0xff, /*Color of index 19*/
0x6d, 0x5a, 0xeb, 0xff, /*Color of index 20*/
0x72, 0x61, 0xc6, 0xff, /*Color of index 21*/
0x61, 0x52, 0xfc, 0xff, /*Color of index 22*/
0x6e, 0x57, 0xdf, 0xff, /*Color of index 23*/
0x62, 0x52, 0xef, 0xff, /*Color of index 24*/
0x5a, 0x4b, 0xfd, 0xff, /*Color of index 25*/
0x6d, 0x55, 0xcb, 0xff, /*Color of index 26*/
0x70, 0x5b, 0xb2, 0xff, /*Color of index 27*/
0x53, 0x44, 0xfd, 0xff, /*Color of index 28*/
0x63, 0x4c, 0xdb, 0xff, /*Color of index 29*/
0x59, 0x47, 0xeb, 0xff, /*Color of index 30*/
0x4a, 0x3c, 0xfe, 0xff, /*Color of index 31*/
0x56, 0x43, 0xdd, 0xff, /*Color of index 32*/
0x4a, 0x39, 0xef, 0xff, /*Color of index 33*/
0x5e, 0x46, 0xbb, 0xff, /*Color of index 34*/
0x43, 0x34, 0xfd, 0xff, /*Color of index 35*/
0x58, 0x41, 0xc7, 0xff, /*Color of index 36*/
0x5e, 0x45, 0xae, 0xff, /*Color of index 37*/
0x3b, 0x2d, 0xfe, 0xff, /*Color of index 38*/
0x5e, 0x45, 0x9c, 0xff, /*Color of index 39*/
0x45, 0x33, 0xda, 0xff, /*Color of index 40*/
0x55, 0x3d, 0xb2, 0xff, /*Color of index 41*/
0x39, 0x2c, 0xed, 0xff, /*Color of index 42*/
0x45, 0x32, 0xc7, 0xff, /*Color of index 43*/
0x48, 0x35, 0xb4, 0xff, /*Color of index 44*/
0x4f, 0x39, 0x9c, 0xff, /*Color of index 45*/
0x2c, 0x1e, 0xfd, 0xff, /*Color of index 46*/
0x34, 0x27, 0xd5, 0xff, /*Color of index 47*/
0x2b, 0x20, 0xe9, 0xff, /*Color of index 48*/
0x4e, 0x37, 0x86, 0xff, /*Color of index 49*/
0x3b, 0x2a, 0xb6, 0xff, /*Color of index 50*/
0x28, 0x1b, 0xd9, 0xff, /*Color of index 51*/
0x2c, 0x20, 0xc5, 0xff, /*Color of index 52*/
0x3b, 0x28, 0x9f, 0xff, /*Color of index 53*/
0x2c, 0x1f, 0xb9, 0xff, /*Color of index 54*/
0x3d, 0x29, 0x87, 0xff, /*Color of index 55*/
0x22, 0x16, 0xc5, 0xff, /*Color of index 56*/
0x2c, 0x1c, 0xa2, 0xff, /*Color of index 57*/
0x1f, 0x13, 0xb9, 0xff, /*Color of index 58*/
0x22, 0x14, 0xab, 0xff, /*Color of index 59*/
0x2c, 0x1c, 0x80, 0xff, /*Color of index 60*/
0x1e, 0x12, 0xa2, 0xff, /*Color of index 61*/
0x32, 0x1f, 0x6b, 0xff, /*Color of index 62*/
0x1a, 0x0e, 0x95, 0xff, /*Color of index 63*/
0x1c, 0x10, 0x85, 0xff, /*Color of index 64*/
0x1d, 0x10, 0x77, 0xff, /*Color of index 65*/
0x1d, 0x11, 0x64, 0xff, /*Color of index 66*/
0x24, 0x15, 0x50, 0xff, /*Color of index 67*/
0x11, 0x08, 0x62, 0xff, /*Color of index 68*/
0x0d, 0x05, 0x50, 0xff, /*Color of index 69*/
0x17, 0x0c, 0x31, 0xff, /*Color of index 70*/
0x0f, 0x07, 0x3e, 0xff, /*Color of index 71*/
0x0d, 0x05, 0x30, 0xff, /*Color of index 72*/
0x0b, 0x05, 0x1e, 0xff, /*Color of index 73*/
0xd4, 0xaa, 0x47, 0xff, /*Color of index 74*/
0xba, 0x8a, 0x17, 0xff, /*Color of index 75*/
0xb9, 0x87, 0x06, 0xff, /*Color of index 76*/
0xaa, 0x7f, 0x16, 0xff, /*Color of index 77*/
0xa8, 0x79, 0x06, 0xff, /*Color of index 78*/
0x9e, 0x71, 0x01, 0xff, /*Color of index 79*/
0x89, 0x61, 0x03, 0xff, /*Color of index 80*/
0x7b, 0x5a, 0x0c, 0xff, /*Color of index 81*/
0x62, 0x48, 0x0b, 0xff, /*Color of index 82*/
0xd7, 0xc9, 0xc1, 0xff, /*Color of index 83*/
0xd6, 0xc2, 0xaa, 0xff, /*Color of index 84*/
0xc9, 0xba, 0xb0, 0xff, /*Color of index 85*/
0xd7, 0xbe, 0x96, 0xff, /*Color of index 86*/
0xc0, 0xb2, 0xae, 0xff, /*Color of index 87*/
0xd5, 0xb8, 0x86, 0xff, /*Color of index 88*/
0xc9, 0xb3, 0x97, 0xff, /*Color of index 89*/
0xba, 0xab, 0xa8, 0xff, /*Color of index 90*/
0xbd, 0xab, 0x97, 0xff, /*Color of index 91*/
0xd2, 0xb3, 0x71, 0xff, /*Color of index 92*/
0xc4, 0xa9, 0x85, 0xff, /*Color of index 93*/
0xca, 0xaa, 0x73, 0xff, /*Color of index 94*/
0xb1, 0xa2, 0x95, 0xff, /*Color of index 95*/
0xbd, 0xa3, 0x78, 0xff, /*Color of index 96*/
0xaa, 0x9b, 0x8f, 0xff, /*Color of index 97*/
0xae, 0x99, 0x80, 0xff, /*Color of index 98*/
0xbf, 0x9f, 0x64, 0xff, /*Color of index 99*/
0xa3, 0x94, 0x8b, 0xff, /*Color of index 100*/
0xa2, 0x92, 0x83, 0xff, /*Color of index 101*/
0xaa, 0x92, 0x73, 0xff, /*Color of index 102*/
0xb0, 0x94, 0x5d, 0xff, /*Color of index 103*/
0x9a, 0x88, 0x7e, 0xff, /*Color of index 104*/
0xb5, 0x92, 0x4e, 0xff, /*Color of index 105*/
0x9b, 0x87, 0x6e, 0xff, /*Color of index 106*/
0xbc, 0x92, 0x3c, 0xff, /*Color of index 107*/
0xa7, 0x88, 0x5d, 0xff, /*Color of index 108*/
0xa9, 0x89, 0x4e, 0xff, /*Color of index 109*/
0x94, 0x81, 0x6f, 0xff, /*Color of index 110*/
0xb9, 0x8e, 0x30, 0xff, /*Color of index 111*/
0x96, 0x81, 0x62, 0xff, /*Color of index 112*/
0xa7, 0x87, 0x41, 0xff, /*Color of index 113*/
0x90, 0x7b, 0x6d, 0xff, /*Color of index 114*/
0xb6, 0x89, 0x23, 0xff, /*Color of index 115*/
0x90, 0x7b, 0x5e, 0xff, /*Color of index 116*/
0x93, 0x7b, 0x51, 0xff, /*Color of index 117*/
0x99, 0x7c, 0x41, 0xff, /*Color of index 118*/
0x88, 0x73, 0x5b, 0xff, /*Color of index 119*/
0xa2, 0x7b, 0x2c, 0xff, /*Color of index 120*/
0x86, 0x70, 0x53, 0xff, /*Color of index 121*/
0x93, 0x75, 0x3a, 0xff, /*Color of index 122*/
0x8b, 0x72, 0x46, 0xff, /*Color of index 123*/
0x81, 0x6c, 0x52, 0xff, /*Color of index 124*/
0x84, 0x68, 0x5d, 0xff, /*Color of index 125*/
0x96, 0x73, 0x2d, 0xff, /*Color of index 126*/
0x82, 0x6b, 0x46, 0xff, /*Color of index 127*/
0x79, 0x63, 0x5e, 0xff, /*Color of index 128*/
0x8a, 0x6d, 0x31, 0xff, /*Color of index 129*/
0x7b, 0x63, 0x46, 0xff, /*Color of index 130*/
0x94, 0x6e, 0x18, 0xff, /*Color of index 131*/
0x76, 0x5c, 0x59, 0xff, /*Color of index 132*/
0x7e, 0x64, 0x37, 0xff, /*Color of index 133*/
0x86, 0x66, 0x23, 0xff, /*Color of index 134*/
0x82, 0x63, 0x2b, 0xff, /*Color of index 135*/
0x75, 0x59, 0x4e, 0xff, /*Color of index 136*/
0x94, 0x69, 0x05, 0xff, /*Color of index 137*/
0x75, 0x5b, 0x3d, 0xff, /*Color of index 138*/
0x86, 0x63, 0x15, 0xff, /*Color of index 139*/
0x76, 0x5b, 0x2f, 0xff, /*Color of index 140*/
0x7a, 0x5b, 0x22, 0xff, /*Color of index 141*/
0x6f, 0x51, 0x40, 0xff, /*Color of index 142*/
0x79, 0x5a, 0x17, 0xff, /*Color of index 143*/
0x6d, 0x50, 0x30, 0xff, /*Color of index 144*/
0x83, 0x5a, 0x01, 0xff, /*Color of index 145*/
0x73, 0x54, 0x18, 0xff, /*Color of index 146*/
0x6d, 0x4f, 0x22, 0xff, /*Color of index 147*/
0x62, 0x46, 0x3f, 0xff, /*Color of index 148*/
0x70, 0x52, 0x0c, 0xff, /*Color of index 149*/
0x7a, 0x54, 0x01, 0xff, /*Color of index 150*/
0x6b, 0x4f, 0x16, 0xff, /*Color of index 151*/
0x61, 0x47, 0x33, 0xff, /*Color of index 152*/
0x6a, 0x4d, 0x0b, 0xff, /*Color of index 153*/
0x71, 0x4e, 0x01, 0xff, /*Color of index 154*/
0x64, 0x49, 0x15, 0xff, /*Color of index 155*/
0x5e, 0x43, 0x24, 0xff, /*Color of index 156*/
0x6b, 0x49, 0x01, 0xff, /*Color of index 157*/
0x54, 0x3b, 0x33, 0xff, /*Color of index 158*/
0x5b, 0x42, 0x15, 0xff, /*Color of index 159*/
0x54, 0x3b, 0x26, 0xff, /*Color of index 160*/
0x63, 0x44, 0x02, 0xff, /*Color of index 161*/
0x5b, 0x41, 0x0b, 0xff, /*Color of index 162*/
0x55, 0x3c, 0x18, 0xff, /*Color of index 163*/
0x5d, 0x40, 0x01, 0xff, /*Color of index 164*/
0x4a, 0x33, 0x2e, 0xff, /*Color of index 165*/
0x59, 0x3d, 0x02, 0xff, /*Color of index 166*/
0x53, 0x3a, 0x0b, 0xff, /*Color of index 167*/
0x4c, 0x33, 0x20, 0xff, /*Color of index 168*/
0x53, 0x39, 0x02, 0xff, /*Color of index 169*/
0x4a, 0x33, 0x0e, 0xff, /*Color of index 170*/
0x4f, 0x35, 0x01, 0xff, /*Color of index 171*/
0x40, 0x2c, 0x21, 0xff, /*Color of index 172*/
0x4b, 0x32, 0x02, 0xff, /*Color of index 173*/
0x42, 0x2c, 0x10, 0xff, /*Color of index 174*/
0x46, 0x2f, 0x02, 0xff, /*Color of index 175*/
0x38, 0x24, 0x1e, 0xff, /*Color of index 176*/
0x43, 0x2b, 0x01, 0xff, /*Color of index 177*/
0x3b, 0x27, 0x11, 0xff, /*Color of index 178*/
0x3e, 0x28, 0x02, 0xff, /*Color of index 179*/
0x34, 0x20, 0x10, 0xff, /*Color of index 180*/
0x38, 0x24, 0x01, 0xff, /*Color of index 181*/
0x34, 0x20, 0x01, 0xff, /*Color of index 182*/
0x2f, 0x1d, 0x01, 0xff, /*Color of index 183*/
0x29, 0x19, 0x0c, 0xff, /*Color of index 184*/
0x2b, 0x1a, 0x01, 0xff, /*Color of index 185*/
0x26, 0x17, 0x01, 0xff, /*Color of index 186*/
0x25, 0x16, 0x01, 0xff, /*Color of index 187*/
0x1e, 0x11, 0x0f, 0xff, /*Color of index 188*/
0x22, 0x13, 0x01, 0xff, /*Color of index 189*/
0x1d, 0x10, 0x01, 0xff, /*Color of index 190*/
0x18, 0x0c, 0x01, 0xff, /*Color of index 191*/
0x12, 0x08, 0x01, 0xff, /*Color of index 192*/
0x0b, 0x04, 0x01, 0xff, /*Color of index 193*/
0xc9, 0xbc, 0xbe, 0xff, /*Color of index 194*/
0xac, 0x9e, 0xa2, 0xff, /*Color of index 195*/
0xaa, 0x9b, 0x9b, 0xff, /*Color of index 196*/
0xa5, 0x94, 0x96, 0xff, /*Color of index 197*/
0x9a, 0x85, 0x8e, 0xff, /*Color of index 198*/
0x8c, 0x77, 0x7e, 0xff, /*Color of index 199*/
0x8b, 0x6f, 0x72, 0xff, /*Color of index 200*/
0x7f, 0x6c, 0x6e, 0xff, /*Color of index 201*/
0x6d, 0x50, 0x4f, 0xff, /*Color of index 202*/
0x5d, 0x43, 0x4f, 0xff, /*Color of index 203*/
0x58, 0x3e, 0x3f, 0xff, /*Color of index 204*/
0x38, 0x24, 0x2d, 0xff, /*Color of index 205*/
0x2a, 0x1b, 0x1e, 0xff, /*Color of index 206*/
0x19, 0x0d, 0x0e, 0xff, /*Color of index 207*/
0x10, 0x07, 0x09, 0xff, /*Color of index 208*/
0x04, 0x01, 0x01, 0xff, /*Color of index 209*/
0xc1, 0xb4, 0xbc, 0xff, /*Color of index 210*/
0xb7, 0xab, 0xb3, 0xff, /*Color of index 211*/
0xb1, 0xa3, 0xad, 0xff, /*Color of index 212*/
0xa3, 0x93, 0xa2, 0xff, /*Color of index 213*/
0x87, 0x6a, 0x7e, 0xff, /*Color of index 214*/
0x7c, 0x5f, 0x6f, 0xff, /*Color of index 215*/
0x73, 0x57, 0x69, 0xff, /*Color of index 216*/
0x63, 0x4a, 0x5f, 0xff, /*Color of index 217*/
0x54, 0x3b, 0x4e, 0xff, /*Color of index 218*/
0x49, 0x31, 0x3e, 0xff, /*Color of index 219*/
0x2c, 0x1b, 0x2c, 0xff, /*Color of index 220*/
0x20, 0x13, 0x1d, 0xff, /*Color of index 221*/
0xb8, 0xad, 0xce, 0xff, /*Color of index 222*/
0xb6, 0xab, 0xbf, 0xff, /*Color of index 223*/
0xab, 0x9f, 0xbd, 0xff, /*Color of index 224*/
0xa9, 0x9b, 0xad, 0xff, /*Color of index 225*/
0xa2, 0x95, 0xbd, 0xff, /*Color of index 226*/
0xa2, 0x94, 0xb0, 0xff, /*Color of index 227*/
0x9c, 0x8c, 0xac, 0xff, /*Color of index 228*/
0x92, 0x81, 0xb0, 0xff, /*Color of index 229*/
0x98, 0x86, 0x9c, 0xff, /*Color of index 230*/
0x91, 0x7f, 0xa2, 0xff, /*Color of index 231*/
0x89, 0x77, 0xb0, 0xff, /*Color of index 232*/
0x8a, 0x76, 0xa3, 0xff, /*Color of index 233*/
0x8c, 0x76, 0x99, 0xff, /*Color of index 234*/
0x8b, 0x76, 0x8e, 0xff, /*Color of index 235*/
0x7e, 0x69, 0xab, 0xff, /*Color of index 236*/
0x86, 0x6c, 0x97, 0xff, /*Color of index 237*/
0x7a, 0x62, 0x91, 0xff, /*Color of index 238*/
0x6c, 0x55, 0x9c, 0xff, /*Color of index 239*/
0x6c, 0x53, 0x87, 0xff, /*Color of index 240*/
0x6d, 0x52, 0x76, 0xff, /*Color of index 241*/
0x5d, 0x42, 0x86, 0xff, /*Color of index 242*/
0x5e, 0x42, 0x74, 0xff, /*Color of index 243*/
0x5c, 0x41, 0x61, 0xff, /*Color of index 244*/
0x4e, 0x36, 0x75, 0xff, /*Color of index 245*/
0x4d, 0x35, 0x67, 0xff, /*Color of index 246*/
0x4d, 0x35, 0x59, 0xff, /*Color of index 247*/
0x47, 0x31, 0x4d, 0xff, /*Color of index 248*/
0x3d, 0x29, 0x66, 0xff, /*Color of index 249*/
0x36, 0x23, 0x4f, 0xff, /*Color of index 250*/
0x36, 0x24, 0x3d, 0xff, /*Color of index 251*/
0x21, 0x13, 0x3c, 0xff, /*Color of index 252*/
0x22, 0x14, 0x30, 0xff, /*Color of index 253*/
0x15, 0x0a, 0x22, 0xff, /*Color of index 254*/
0x09, 0x03, 0x11, 0xff, /*Color of index 255*/
0x22, 0x25, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x25, 0xf4, 0xaa, 0xb1, 0xaf, 0xb1, 0xaf, 0xb1, 0xb1, 0xbd, 0xa2, 0x6b, 0x4a, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x73, 0x73, 0x73, 0x4d, 0x73, 0xd3, 0xde, 0xd3, 0xd3, 0xd4, 0xd3, 0xd3, 0xd3, 0xd3, 0xd4, 0xc3, 0xc4, 0x64, 0x68, 0x72, 0xc8, 0x82, 0x8d, 0x9a, 0x9d, 0x9d, 0x99, 0x95, 0x90, 0xca, 0xf4, 0xca, 0xd9, 0xca, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0x98, 0xf0, 0x04, 0x04, 0x08, 0x0a, 0x08, 0x0a, 0x05, 0x0a, 0x0c, 0x0c, 0xe9, 0xc7, 0x79, 0x7e, 0x4e, 0x83, 0x86, 0x8d, 0x8c, 0x7c, 0x79, 0x7c, 0x79, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0xe9, 0x09, 0x10, 0xe8, 0xe8, 0x0e, 0x18, 0x14, 0x14, 0x0c, 0xe6, 0x65, 0xe6, 0xe6, 0xe6, 0xe6, 0xe4, 0xe3, 0x5a, 0xd3, 0xd4, 0xd3, 0xd4, 0xd3, 0xd4, 0xd4, 0xd3, 0xd4, 0xd4, 0x5e, 0x5e, 0x5e, 0x5e, 0x59, 0xd2, 0xdf, 0x57, 0xd3, 0xd3, 0x5a, 0xd4, 0x5a, 0xd4, 0xd4, 0xc3, 0xc3, 0x5f, 0xc3, 0xc3, 0x60, 0x6d, 0x79, 0x7f, 0x8e, 0x9c, 0xa0, 0xa0, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0xa3, 0xed, 0x00, 0x03, 0x07, 0xe2, 0xe1, 0xe1, 0xe1, 0xe1, 0xe1, 0xe1, 0xe1, 0xe3, 0xe1, 0xe3, 0xe1, 0xe1, 0xe1, 0xe1, 0xe1, 0xe1, 0xe3, 0xe1, 0xd4, 0xd3, 0xd4, 0xe0, 0xd4, 0xd3, 0xe0, 0xd3, 0xd4, 0xd3, 0xd4, 0xe1, 0xdf, 0x53, 0x53, 0x53, 0x53, 0x53, 0x00, 0xde, 0xde, 0x00, 0xde, 0xde, 0xe2, 0x03, 0x03, 0xe2, 0x02, 0x0a, 0x08, 0x08, 0x0b, 0x0b, 0xc4, 0x4a, 0x5e, 0x5e, 0x5e, 0x5e, 0x5e, 0x5e, 0x5e, 0x4a, 0x5d, 0xe2, 0xe0, 0xe1, 0xe0, 0xe1, 0xd4, 0xd4, 0xc3, 0x5a, 0x5a, 0x62, 0x70, 0x70, 0x6e, 0x70, 0x70, 0x70, 0x70, 0x70, 0x74, 0x70, 0x70, 0x70, 0x70, 0x70, 0x74, 0x70, 0x74, 0x77, 0x77, 0xc5, 0xd4, 0xd3, 0xd4, 0x5b, 0x5d, 0x62, 0x61, 0x62, 0x64, 0x64, 0x62, 0x65, 0x65, 0x64, 0x65, 0x65, 0x65, 0x65, 0x65, 0x65, 0x6a, 0x55, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0xe2, 0xe4, 0xe2, 0xe2, 0xe2, 0xe3, 0xe2, 0xe3, 0xc2, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x5b, 0x68, 0x65, 0x65, 0x65, 0x65, 0x64, 0xc5, 0xd5, 0xe1, 0xe3, 0xe2, 0xe3, 0xe3, 0xe3, 0xe3, 0x03, 0x02, 0x02, 0x03, 0x03, 0x03, 0x03, 0x03, 0xe2, 0xe0, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xe1, 0xd4, 0xe1, 0xe1, 0xe1, 0xc3, 0xe1, 0xe1, 0xe1, 0xe1, 0xe1, 0xe2, 0x07, 0x06, 0x06, 0x02, 0x03, 0xe3, 0xe3, 0xe3, 0xe3, 0xe2, 0x03, 0x03, 0x02, 0x03, 0x02, 0x07, 0x00, 0xdf, 0xde, 0xdf, 0x00, 0xde, 0x00, 0x00, 0xdf, 0x01, 0x0d, 0x0b, 0x0b, 0x0b, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x0b, 0x04, 0xde, 0xde, 0xde, 0xde, 0x00, 0x05, 0x06, 0x01, 0x02, 0x05, 0x01, 0x05, 0x01, 0x05, 0x01, 0x0d, 0x16, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x1c, 0x1a, 0xec, 0xc9, 0x7f, 0x7c, 0x7d, 0x7f, 0x7c, 0x7c, 0x82, 0x7d, 0x82, 0x80, 0x82, 0x7f, 0x82, 0x1a, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x13, 0x0d, 0x13, 0x13, 0x13, 0x13,
0x25, 0x25, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x27, 0xf3, 0xaa, 0xb1, 0xaf, 0xaf, 0xaf, 0xb1, 0xb1, 0xb1, 0xbd, 0x9f, 0x6b, 0x4a, 0x6f, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x73, 0x78, 0x73, 0x73, 0x4d, 0x6f, 0xdf, 0xdf, 0xd3, 0xd4, 0xd3, 0xd4, 0xd3, 0xd4, 0xd3, 0xd3, 0xd4, 0xc3, 0xd5, 0x68, 0xc7, 0x72, 0x80, 0x8c, 0x9a, 0xa1, 0x9d, 0x9a, 0x93, 0xca, 0xd9, 0xd9, 0xcb, 0xd9, 0xd9, 0xca, 0xcb, 0xd9, 0xca, 0xd9, 0xcc, 0xef, 0x04, 0x04, 0x0a, 0x04, 0x0a, 0x0a, 0x05, 0x06, 0x10, 0xe9, 0xc7, 0x74, 0x78, 0x4d, 0x7e, 0x81, 0x87, 0x8c, 0x85, 0x79, 0x74, 0x79, 0x77, 0x77, 0x77, 0x77, 0x79, 0x72, 0x10, 0xe8, 0x10, 0x10, 0xe8, 0x10, 0x12, 0x13, 0x14, 0x13, 0x12, 0xe8, 0xc5, 0xe6, 0xe6, 0xe4, 0xe6, 0xe4, 0xe3, 0xd3, 0xd3, 0xd4, 0xd3, 0xd4, 0xd3, 0xd4, 0xd3, 0xe0, 0x5a, 0x5e, 0x5e, 0x5e, 0x5e, 0x63, 0x59, 0xd2, 0xd2, 0xd3, 0x57, 0xd3, 0xd3, 0x5a, 0xd3, 0x5a, 0xd4, 0xd4, 0xc3, 0xd4, 0xc3, 0x63, 0x63, 0x66, 0x66, 0x6a, 0x74, 0x7f, 0x8e, 0x98, 0x9c, 0xa0, 0x9c, 0x98, 0x90, 0x9c, 0x94, 0x03, 0x03, 0x03, 0xe3, 0xe1, 0xe1, 0xe3, 0xe1, 0xe3, 0xe1, 0xe3, 0xe1, 0xe1, 0xe1, 0xe1, 0xe3, 0xe3, 0xe1, 0xe1, 0xe1, 0xe1, 0xe3, 0xe3, 0xe1, 0xdf, 0xd2, 0xd4, 0xd3, 0xd4, 0xd4, 0xe0, 0xd4, 0xe0, 0xe0, 0xe1, 0xdf, 0x53, 0x53, 0x53, 0xc2, 0xde, 0x00, 0xde, 0x00, 0xde, 0xde, 0xde, 0x02, 0x03, 0x03, 0xe2, 0xe2, 0x05, 0x08, 0x0b, 0x0b, 0x60, 0x5e, 0x5e, 0x5e, 0x5e, 0x5e, 0x5e, 0x5e, 0x5e, 0x5e, 0x5e, 0x5d, 0xe2, 0xe0, 0xe3, 0xe0, 0xd4, 0xe1, 0xd4, 0xc3, 0x5a, 0x5a, 0x60, 0x70, 0x74, 0x6a, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x74, 0x70, 0x74, 0x70, 0x75, 0x79, 0x6e, 0xd5, 0xe0, 0xd4, 0x5f, 0x5f, 0x5f, 0x61, 0x61, 0x62, 0x64, 0x65, 0x65, 0x62, 0x65, 0x65, 0x65, 0x65, 0x65, 0x65, 0x68, 0x57, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0xe0, 0xe4, 0xe2, 0xe2, 0xe1, 0xe2, 0xe2, 0xe4, 0xdf, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x54, 0x68, 0x65, 0x64, 0x65, 0x65, 0x65, 0x65, 0x65, 0x64, 0xc5, 0xd5, 0xe3, 0xe2, 0xe3, 0xe3, 0xe3, 0x02, 0x02, 0x02, 0x03, 0x02, 0x03, 0x02, 0x03, 0x02, 0xe2, 0xe2, 0xd4, 0xd4, 0xe1, 0xd4, 0xe1, 0xd4, 0xd4, 0xd4, 0xd3, 0xd3, 0xd3, 0xdf, 0xd2, 0xd2, 0xd2, 0xc2, 0xc2, 0xc2, 0xc2, 0x00, 0x03, 0x06, 0x06, 0x02, 0xe3, 0xe3, 0xe3, 0xe3, 0x03, 0x02, 0x03, 0x02, 0x03, 0x02, 0x06, 0x02, 0x00, 0xde, 0xdf, 0x00, 0xdf, 0x00, 0xdf, 0x02, 0x0d, 0x0b, 0x0b, 0x0b, 0x0d, 0x0b, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x0b, 0x04, 0xde, 0xde, 0xde, 0xde, 0xde, 0x00, 0x05, 0x05, 0x01, 0x06, 0x01, 0x05, 0x01, 0x05, 0x02, 0x0d, 0x19, 0x16, 0x19, 0x19, 0x16, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x1a, 0xee, 0xec, 0x82, 0x79, 0x7f, 0x7d, 0x82, 0x7d, 0x7c, 0x7d, 0x7c, 0x7c, 0x7d, 0x7d, 0x84, 0x80, 0x17, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x1c, 0x16, 0x08, 0x0b, 0x0b, 0x0d, 0x0b, 0x0b, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d,
0x25, 0x25, 0x25, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x24, 0x22, 0x25, 0x27, 0xf3, 0xa8, 0xb1, 0xb1, 0xaf, 0xaf, 0xb1, 0xb1, 0xb1, 0xb1, 0xbd, 0xa7, 0x6b, 0x4a, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x73, 0x73, 0x73, 0x73, 0x73, 0x4d, 0x6f, 0xdf, 0xde, 0xd4, 0xd3, 0xd4, 0xd3, 0xd4, 0xd3, 0xd4, 0xd3, 0x5a, 0xd4, 0xc3, 0xc5, 0x68, 0xc7, 0x77, 0x88, 0x95, 0xa1, 0xa1, 0x97, 0xca, 0xd9, 0xd9, 0xca, 0xd9, 0xca, 0xd9, 0xd9, 0xcb, 0xd9, 0xd9, 0xca, 0x98, 0x1b, 0x01, 0x08, 0x0a, 0x05, 0x0a, 0x05, 0x0c, 0x09, 0xe7, 0xc7, 0x75, 0x78, 0x78, 0x78, 0x81, 0x81, 0x87, 0x8c, 0x85, 0x77, 0x74, 0x77, 0x77, 0x77, 0x77, 0x7b, 0xeb, 0x09, 0xe8, 0x10, 0xe8, 0x10, 0xe8, 0x11, 0x14, 0x14, 0x14, 0x14, 0x13, 0x11, 0xe6, 0xe6, 0xe6, 0xe4, 0xe4, 0xe4, 0xe1, 0xd3, 0xd4, 0xd3, 0xd4, 0xd4, 0xdf, 0xd4, 0xdf, 0x5f, 0x5c, 0x5e, 0x5e, 0x5d, 0x5e, 0x5e, 0x57, 0xd2, 0xd2, 0x57, 0xd2, 0xd3, 0xd3, 0xd3, 0xd3, 0xd3, 0x5a, 0xd3, 0xd4, 0xd4, 0x60, 0x5c, 0x5e, 0x62, 0x65, 0x65, 0x62, 0x66, 0x70, 0x79, 0x8a, 0x98, 0xa0, 0xa0, 0x9e, 0xa3, 0xd8, 0x00, 0x03, 0xe1, 0xe1, 0xe3, 0xe1, 0xe3, 0xe1, 0xe1, 0xe1, 0xe3, 0xe1, 0xe3, 0xe1, 0xe1, 0xe1, 0xe1, 0xe1, 0xe3, 0xe1, 0xe1, 0xe1, 0xe3, 0xe0, 0xd2, 0xde, 0xdf, 0xdf, 0xdf, 0xd4, 0xd3, 0xd4, 0xd4, 0xd4, 0xe1, 0xdf, 0x53, 0x53, 0xc2, 0xde, 0x00, 0xde, 0x00, 0xde, 0x00, 0xde, 0x00, 0xe2, 0x03, 0xe2, 0xe2, 0xe0, 0x03, 0x04, 0x08, 0x63, 0x4a, 0x5e, 0x63, 0x5e, 0x63, 0x60, 0x4a, 0x60, 0x4a, 0x63, 0x4a, 0x60, 0xe2, 0xe0, 0xd4, 0xd4, 0xd4, 0xe1, 0xd4, 0xc3, 0x5a, 0x57, 0x5b, 0x6a, 0x75, 0x70, 0x70, 0x70, 0x70, 0x74, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x74, 0x70, 0x74, 0x74, 0x74, 0x77, 0x7b, 0x68, 0xe1, 0xe0, 0x5f, 0x61, 0x5f, 0x5f, 0x5f, 0x61, 0x62, 0x62, 0x65, 0x62, 0x65, 0x65, 0x65, 0x65, 0x65, 0x6a, 0x55, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0xd2, 0xe5, 0xe2, 0xe2, 0xe1, 0xe3, 0xe0, 0xe4, 0xe2, 0xc2, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x54, 0x68, 0x65, 0x65, 0x64, 0x64, 0x65, 0x64, 0x65, 0x65, 0x65, 0x65, 0x64, 0xc5, 0xe1, 0xe2, 0xe2, 0xe2, 0x02, 0x02, 0x02, 0x03, 0x03, 0x03, 0x07, 0x02, 0x07, 0x02, 0x03, 0xd3, 0xd2, 0x53, 0xc2, 0xc2, 0xc2, 0x53, 0xc2, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0xc2, 0x00, 0x03, 0x06, 0x05, 0x03, 0xe2, 0xe3, 0xe2, 0x07, 0x02, 0x07, 0x02, 0x07, 0x02, 0x06, 0x06, 0x00, 0x00, 0xdf, 0x00, 0xe0, 0xde, 0x02, 0x0b, 0x0d, 0x0b, 0x0b, 0x0b, 0x0d, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x0b, 0x04, 0x00, 0xde, 0xde, 0xde, 0xde, 0xde, 0x00, 0x05, 0x05, 0x05, 0x02, 0x05, 0x02, 0x05, 0x01, 0x0d, 0x19, 0x13, 0x16, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x1b, 0xee, 0x1b, 0xee, 0x7f, 0x7c, 0x7d, 0x7c, 0x7d, 0x7f, 0x7d, 0x7c, 0x7d, 0x7c, 0x7c, 0xd7, 0x84, 0x84, 0x18, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x1c, 0x19, 0x05, 0x04, 0x0b, 0x0d, 0x0b, 0x0d, 0x0b, 0x0b, 0x0d, 0x0d, 0x0d,
0x25, 0x25, 0x25, 0x25, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x25, 0x27, 0xf3, 0xa0, 0xb1, 0xaf, 0xaf, 0xb1, 0xaf, 0xb3, 0xb1, 0xb1, 0xb1, 0xba, 0xaa, 0x6b, 0x4a, 0x6f, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x4d, 0x6b, 0xdf, 0xdf, 0xd3, 0xd3, 0xd4, 0xd3, 0xd3, 0xd3, 0xd4, 0xd4, 0xd4, 0xd4, 0xc3, 0xe1, 0x64, 0xc6, 0xc6, 0xc9, 0x8c, 0xa1, 0xa4, 0x94, 0xd9, 0xd9, 0xcb, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xca, 0xd9, 0xd9, 0x94, 0xcb, 0x11, 0x04, 0x05, 0x0a, 0x06, 0x06, 0x09, 0xe5, 0xea, 0x68, 0x6d, 0x73, 0x78, 0x7a, 0x7a, 0x81, 0x7f, 0x85, 0x8c, 0x8c, 0x79, 0x77, 0x77, 0x77, 0x77, 0x77, 0xe9, 0x0c, 0xe8, 0xe8, 0xe8, 0x10, 0x10, 0xe8, 0x11, 0x13, 0x12, 0x14, 0x14, 0x16, 0x12, 0xe8, 0xe6, 0xe6, 0xe4, 0xe5, 0xe4, 0xe0, 0x5a, 0xd4, 0xd3, 0xd4, 0xd4, 0xd4, 0xe0, 0x5b, 0x5e, 0x5e, 0x5e, 0x5e, 0x5e, 0x5e, 0x5e, 0xd2, 0xd2, 0xd2, 0xd2, 0xd2, 0xd2, 0xd3, 0xd2, 0xd3, 0xdf, 0x57, 0xd3, 0x5a, 0x5d, 0x5e, 0x58, 0x5d, 0x5f, 0x5f, 0x5f, 0x61, 0x61, 0x5f, 0x62, 0x6a, 0x74, 0x82, 0x8e, 0x9c, 0xb1, 0xee, 0x00, 0xe1, 0xe3, 0xe1, 0xe2, 0xe1, 0xe1, 0xe3, 0xe1, 0xe1, 0xe1, 0xe1, 0xe1, 0xe1, 0xe1, 0xe1, 0xe3, 0xe1, 0xe1, 0xe1, 0xe1, 0xe3, 0xe3, 0xe0, 0xd2, 0xde, 0xd2, 0xde, 0xde, 0xdf, 0xdf, 0xdf, 0xd4, 0xe0, 0xe1, 0xd3, 0x53, 0x53, 0x00, 0xde, 0x00, 0xde, 0x00, 0xde, 0x00, 0xde, 0x00, 0xe2, 0x03, 0xe2, 0xe2, 0xe0, 0x02, 0xe2, 0x5d, 0x58, 0x5d, 0x5d, 0x5d, 0x5c, 0x5d, 0x5d, 0x5d, 0x5d, 0x5d, 0x5e, 0x5c, 0x5f, 0xe0, 0xe1, 0xd4, 0xe1, 0xd4, 0xd4, 0xd4, 0xc3, 0xd4, 0x57, 0x5b, 0x66, 0x75, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x74, 0x70, 0x74, 0x70, 0x74, 0x74, 0x74, 0x74, 0x75, 0x7c, 0x77, 0xc6, 0xd4, 0xc3, 0xc3, 0xc3, 0xc3, 0x5f, 0xc3, 0x5f, 0x61, 0x61, 0x62, 0x65, 0x65, 0x65, 0x66, 0x68, 0x5b, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0xc2, 0xe2, 0xe4, 0xe2, 0xe1, 0xe2, 0xe0, 0xe2, 0xe4, 0xd3, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x65, 0x65, 0x65, 0x65, 0x65, 0x65, 0x65, 0x64, 0x65, 0x65, 0x65, 0x65, 0x65, 0x65, 0x64, 0xc5, 0xd5, 0x03, 0x02, 0x02, 0x02, 0x02, 0x03, 0x02, 0x03, 0x02, 0x07, 0x06, 0xe2, 0xdf, 0xd2, 0x53, 0x53, 0x53, 0x53, 0xc2, 0x53, 0xc2, 0x53, 0xc2, 0x53, 0xc2, 0x53, 0xc2, 0xc2, 0x53, 0xc2, 0x53, 0x53, 0xc2, 0xdf, 0x02, 0x06, 0x02, 0xe2, 0xe3, 0x03, 0x07, 0x02, 0x06, 0x02, 0x07, 0x02, 0x06, 0x06, 0x02, 0x00, 0xde, 0x00, 0xdf, 0x00, 0x0b, 0x0d, 0x0b, 0x0b, 0x0b, 0x0b, 0x0d, 0x0b, 0x04, 0x04, 0x04, 0x04, 0x04, 0x0b, 0x00, 0xde, 0xde, 0xde, 0xde, 0xde, 0xde, 0x00, 0x01, 0x05, 0x05, 0x01, 0x05, 0x01, 0x02, 0x0d, 0x19, 0x16, 0x16, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0xec, 0xee, 0x1b, 0xec, 0x80, 0x7f, 0x7d, 0x7c, 0x7d, 0x7c, 0x7d, 0x7d, 0x82, 0x7d, 0x7d, 0xd8, 0xd7, 0x84, 0xd7, 0x19, 0x19, 0x19, 0x1c, 0x19, 0x1c, 0x19, 0x1c, 0x19, 0x1c, 0x19, 0x08, 0x05, 0x04, 0x0d, 0x0d, 0x0b, 0x0d, 0x0d, 0x0b, 0x0d, 0x0d,
0x25, 0x25, 0x25, 0x25, 0x25, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x25, 0x2d, 0xf3, 0xa0, 0xb1, 0xaf, 0xb1, 0xad, 0xb1, 0xaf, 0xb3, 0xb1, 0xb1, 0xb1, 0xbd, 0xb1, 0x6b, 0x4a, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6f, 0x73, 0x78, 0x73, 0x78, 0x73, 0x73, 0x73, 0x4e, 0x69, 0xde, 0xdf, 0xd3, 0xd4, 0xd3, 0xd4, 0xd4, 0xd3, 0xd3, 0xd4, 0xd4, 0xd4, 0xc3, 0xc3, 0xd5, 0xc5, 0xd5, 0xc6, 0x72, 0x92, 0x94, 0xda, 0xcc, 0xd9, 0xca, 0xd9, 0xca, 0xcb, 0xca, 0xd9, 0xcb, 0xca, 0xca, 0x94, 0x94, 0x0a, 0x01, 0x0a, 0x06, 0x06, 0x09, 0xe5, 0xc6, 0x70, 0x71, 0x78, 0x76, 0x76, 0x7a, 0x7f, 0x81, 0x85, 0x85, 0x8c, 0x8a, 0x7f, 0x72, 0x77, 0x7b, 0xc8, 0x09, 0xe8, 0x10, 0xe8, 0x10, 0xe8, 0x10, 0x10, 0x10, 0x12, 0x14, 0x14, 0x12, 0x14, 0x14, 0x14, 0x0e, 0xe7, 0xd5, 0xe4, 0x03, 0xe4, 0xe0, 0xd3, 0xd4, 0xd4, 0xe0, 0xd3, 0xe0, 0x5b, 0x5e, 0x5e, 0x5e, 0x5d, 0x5e, 0x5e, 0x60, 0x5e, 0xd2, 0xd2, 0xd2, 0xd2, 0xdf, 0xd2, 0xdf, 0xd2, 0xd3, 0xd2, 0xdf, 0x5a, 0x58, 0x5d, 0x58, 0x58, 0x59, 0x5a, 0xd4, 0x5a, 0x5a, 0x5b, 0xd4, 0x5a, 0x5a, 0x5a, 0x5f, 0x68, 0x7c, 0x88, 0xe3, 0xd4, 0xc3, 0xe1, 0xe1, 0xe1, 0xe3, 0xe1, 0xe3, 0xe1, 0xe3, 0xe3, 0xe1, 0xe3, 0xe3, 0xe1, 0xe1, 0xe1, 0xe3, 0xe1, 0xe2, 0xe1, 0xe1, 0xe3, 0xdf, 0xd2, 0xdf, 0xde, 0xd2, 0xde, 0xde, 0xd2, 0xde, 0xdf, 0xdf, 0xe3, 0xd2, 0xde, 0xde, 0x00, 0xde, 0x00, 0xde, 0x00, 0xde, 0x00, 0xde, 0x00, 0xe2, 0xe2, 0xe0, 0xe0, 0xd4, 0xd3, 0xde, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xd2, 0xc2, 0xd2, 0xd2, 0x55, 0x57, 0xd4, 0xe1, 0xe1, 0xd4, 0xc3, 0xd4, 0xd4, 0xc3, 0xd4, 0x5b, 0x57, 0x62, 0x75, 0x74, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x74, 0x70, 0x74, 0x74, 0x77, 0x77, 0x74, 0x74, 0x70, 0x70, 0x6a, 0xc3, 0xd3, 0xe1, 0xd4, 0xc3, 0xd4, 0xc3, 0xe1, 0xd4, 0xc3, 0xc3, 0x5f, 0xc4, 0x61, 0x61, 0x6e, 0x55, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0xe0, 0xe3, 0xe2, 0xe1, 0xe2, 0xe3, 0xe0, 0xe4, 0xe3, 0xc2, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x61, 0x68, 0x65, 0x64, 0x65, 0x64, 0x65, 0x64, 0x65, 0x64, 0x65, 0x64, 0x65, 0x65, 0x65, 0x65, 0x62, 0xe4, 0x04, 0x02, 0x02, 0x02, 0x02, 0x03, 0x03, 0x02, 0x07, 0x02, 0x03, 0xd4, 0xe3, 0xe0, 0xdf, 0xc2, 0x53, 0x53, 0xc2, 0x53, 0xc2, 0x53, 0xc2, 0x53, 0xc2, 0x53, 0xc2, 0x53, 0xc2, 0x53, 0xc2, 0x53, 0x53, 0x53, 0xe0, 0x02, 0x05, 0x02, 0x03, 0x02, 0x06, 0x03, 0x06, 0x02, 0x06, 0x06, 0x06, 0x0a, 0x06, 0x02, 0xde, 0xdf, 0x00, 0x04, 0x0d, 0x0b, 0x0b, 0x0d, 0x0b, 0x0b, 0x0b, 0x0b, 0x04, 0x04, 0x04, 0x0b, 0x0b, 0x01, 0xde, 0xde, 0xde, 0xde, 0xde, 0xde, 0xde, 0x00, 0x01, 0x05, 0x05, 0x01, 0x05, 0x01, 0x0f, 0x19, 0x16, 0x16, 0x16, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x1c, 0x17, 0x1b, 0xee, 0x1b, 0x1b, 0xee, 0x7c, 0x7f, 0x7d, 0x7c, 0x7d, 0x7c, 0x7c, 0x7d, 0x7f, 0x80, 0xd7, 0xd7, 0xd8, 0x82, 0xf0, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x04, 0x05, 0x08, 0x04, 0x0d, 0x0d, 0x0b, 0x0d, 0x0d, 0x0d, 0x0d,
0x25, 0x25, 0x25, 0x25, 0x25, 0x25, 0x22, 0x22, 0x22, 0x22, 0x22, 0x25, 0x27, 0xf3, 0x9e, 0xaf, 0xb1, 0xaf, 0xb1, 0xaf, 0xb1, 0xb1, 0xb3, 0xb3, 0xb1, 0xaf, 0xba, 0xb3, 0x6f, 0x4a, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x4a, 0x6f, 0x4d, 0x73, 0x73, 0x73, 0x73, 0x78, 0x73, 0x73, 0x4c, 0x69, 0xdf, 0xdf, 0xd3, 0xd4, 0xd3, 0xd3, 0xd4, 0xd3, 0xd4, 0xd3, 0xd4, 0xd4, 0xe1, 0xc3, 0xe1, 0xc4, 0xe1, 0xe1, 0xd5, 0xc6, 0xc7, 0xd8, 0xcb, 0xda, 0xcc, 0xd9, 0xca, 0xd9, 0xca, 0xca, 0xca, 0xcb, 0xca, 0x98, 0xca, 0x05, 0x01, 0x09, 0x07, 0xe5, 0xe7, 0x68, 0x6d, 0x71, 0x78, 0x71, 0x76, 0x76, 0x7b, 0x7f, 0x7f, 0x85, 0x85, 0x8c, 0x8c, 0x82, 0x74, 0x77, 0xc7, 0x09, 0xe8, 0x10, 0x10, 0xe8, 0x10, 0x10, 0x10, 0xe8, 0x11, 0x12, 0x14, 0x12, 0x14, 0x12, 0x14, 0x14, 0x12, 0x0c, 0xe4, 0xe4, 0xe4, 0xe4, 0xd4, 0xd3, 0xd4, 0xd3, 0xd4, 0xe0, 0x5b, 0x5e, 0x5e, 0x5e, 0x5e, 0x5e, 0x5d, 0x5e, 0x5e, 0x5d, 0xd2, 0xd2, 0xd2, 0xd2, 0xd2, 0xd2, 0xd2, 0xd2, 0xdf, 0xd2, 0x57, 0x58, 0x58, 0x59, 0x59, 0x56, 0x59, 0xd3, 0x5a, 0x57, 0xd3, 0x57, 0x57, 0x57, 0xd2, 0xd2, 0xc2, 0xc2, 0x55, 0x02, 0x01, 0x03, 0xe3, 0xe1, 0xc3, 0xe1, 0xe3, 0xe1, 0xe1, 0xe1, 0xe3, 0xe1, 0xe1, 0xe1, 0xe3, 0xe1, 0xe3, 0xe1, 0xe3, 0xe1, 0xe3, 0xe1, 0xe3, 0xe3, 0xdf, 0xde, 0xd2, 0xde, 0xdf, 0xde, 0xdf, 0xde, 0xdf, 0xde, 0xde, 0xdf, 0xd3, 0xe0, 0xde, 0x00, 0xde, 0x00, 0xde, 0x00, 0xde, 0x00, 0xde, 0x00, 0xe3, 0xe2, 0xe0, 0xe0, 0xe1, 0xd3, 0xd3, 0xd2, 0xc2, 0xc2, 0xd2, 0xd2, 0xd2, 0xd2, 0xd2, 0xd2, 0xd2, 0xc2, 0xd2, 0xc2, 0xd2, 0xd3, 0xe1, 0xe1, 0xe1, 0xd4, 0xe1, 0xd4, 0xc3, 0xd4, 0x5a, 0x57, 0x5d, 0x70, 0x75, 0x70, 0x70, 0x6a, 0x70, 0x70, 0x70, 0x74, 0x74, 0x75, 0x70, 0x70, 0x6a, 0x66, 0x64, 0x61, 0x5f, 0x5f, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xe1, 0xd4, 0xe1, 0xd4, 0xc3, 0xc3, 0xd4, 0x57, 0xd2, 0x57, 0xd2, 0x55, 0xd2, 0x57, 0x55, 0xd2, 0x55, 0xd2, 0x55, 0xc2, 0x54, 0xc2, 0xe1, 0xe2, 0xe3, 0xe2, 0xe1, 0xe2, 0xe1, 0xe2, 0xd5, 0xd3, 0x53, 0x53, 0x53, 0x53, 0x53, 0x5b, 0x68, 0x65, 0x65, 0x65, 0x64, 0x65, 0x64, 0x65, 0x65, 0x65, 0x65, 0x64, 0x64, 0x64, 0x61, 0x60, 0x03, 0x16, 0x0b, 0x05, 0x02, 0x02, 0x02, 0x02, 0x07, 0x02, 0x06, 0x03, 0xe0, 0xe0, 0xe1, 0xe3, 0xe1, 0xdf, 0xd2, 0x53, 0x53, 0x53, 0xc2, 0x53, 0xc2, 0x53, 0xc2, 0x53, 0xc2, 0x53, 0xc2, 0xc2, 0x53, 0xc2, 0x53, 0x53, 0xc2, 0xde, 0x02, 0x05, 0x06, 0x02, 0x03, 0x02, 0x07, 0x02, 0x06, 0x06, 0x06, 0x06, 0x0a, 0x06, 0x00, 0xdf, 0x04, 0x0d, 0x0d, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x04, 0x04, 0x04, 0x0b, 0x01, 0xc2, 0xde, 0xde, 0xde, 0xde, 0xde, 0xde, 0xde, 0xde, 0x01, 0x05, 0x05, 0x05, 0x01, 0x0f, 0x19, 0x16, 0x16, 0x16, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x17, 0xee, 0x1b, 0xec, 0x1b, 0x1b, 0xd6, 0x82, 0x7c, 0x7d, 0x7c, 0x7d, 0x7c, 0x7d, 0x7d, 0x80, 0xd8, 0xd7, 0xd7, 0xd7, 0x84, 0xee, 0x1c, 0x19, 0x1c, 0x19, 0x1c, 0x19, 0x1c, 0x1c, 0x19, 0x08, 0x04, 0x05, 0x08, 0x08, 0x0d, 0x0d, 0x0d, 0x0b, 0x0d, 0x0d,
0x25, 0x25, 0x25, 0x25, 0x25, 0x25, 0x25, 0x22, 0x22, 0x22, 0x25, 0x25, 0xf2, 0xf3, 0xcc, 0xad, 0xb1, 0xb1, 0xaf, 0xb1, 0xaf, 0xb1, 0xb1, 0xb3, 0xb1, 0xb1, 0xb1, 0xba, 0xb5, 0x71, 0x4a, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6f, 0x73, 0x78, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x4e, 0x67, 0xde, 0xdf, 0xd3, 0xd4, 0xd3, 0xd3, 0xd3, 0xd4, 0xd3, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xe1, 0xe1, 0xe1, 0xe1, 0xe0, 0xd3, 0x5a, 0xc5, 0xc8, 0xca, 0xcb, 0x9e, 0xda, 0x94, 0xd9, 0x94, 0xca, 0x8e, 0x94, 0x9f, 0xca, 0x01, 0x06, 0xe5, 0xe5, 0xc6, 0x6c, 0x6d, 0x73, 0x76, 0x76, 0x75, 0x76, 0x7b, 0x7a, 0x7f, 0x85, 0x85, 0x85, 0x8c, 0x8c, 0x82, 0x77, 0xe8, 0x09, 0x10, 0xe8, 0x10, 0xe8, 0x10, 0xe8, 0x0c, 0x10, 0xe8, 0x11, 0x14, 0x14, 0x12, 0x14, 0x14, 0x0f, 0x18, 0x14, 0x0e, 0xe5, 0xe3, 0xe5, 0xe2, 0xd4, 0xd3, 0xe0, 0xd4, 0xe0, 0x5d, 0x5e, 0x5e, 0x5d, 0x5e, 0x5e, 0x5e, 0x5e, 0x60, 0x5e, 0x5d, 0xc2, 0xd2, 0xd2, 0xd2, 0xd2, 0xd2, 0xdf, 0xd2, 0xde, 0x57, 0x58, 0x59, 0x56, 0x56, 0x59, 0x56, 0x55, 0xdf, 0xd2, 0x57, 0xd2, 0xd2, 0xd2, 0xd2, 0xd2, 0xd2, 0xc2, 0xd2, 0x03, 0x08, 0x01, 0x04, 0x02, 0xe2, 0xe3, 0xc3, 0xc3, 0xe3, 0xe1, 0xe3, 0xe1, 0xe3, 0xe3, 0xe3, 0xe1, 0xe3, 0xe1, 0xe3, 0xe1, 0xe3, 0xe1, 0xe3, 0xe3, 0xd5, 0xde, 0xd2, 0xde, 0xdf, 0xde, 0xdf, 0xde, 0xdf, 0xde, 0xdf, 0xde, 0x5f, 0x65, 0xc3, 0xe0, 0x00, 0x00, 0xde, 0xde, 0x00, 0xde, 0x00, 0xde, 0x00, 0xe3, 0xe0, 0xe2, 0xe0, 0xd4, 0xd4, 0xe1, 0xd2, 0xc2, 0xc2, 0xd2, 0xc2, 0x55, 0xd2, 0x55, 0xd2, 0xd2, 0xd2, 0xd2, 0x55, 0xc2, 0x55, 0xd4, 0xe1, 0xe1, 0xc3, 0xd4, 0xc3, 0xd4, 0xc3, 0x5b, 0x57, 0x59, 0x6a, 0x75, 0x74, 0x70, 0x74, 0x74, 0x70, 0x6a, 0x6a, 0x65, 0x64, 0x61, 0x5f, 0xc4, 0x61, 0xc4, 0x5f, 0xc4, 0x5f, 0xd4, 0xd4, 0xc3, 0xd4, 0xc3, 0xd4, 0xc3, 0xd4, 0xc3, 0xd4, 0xc3, 0xd4, 0xc3, 0xd4, 0xd4, 0xe1, 0xe1, 0xe1, 0x5a, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xd3, 0xd3, 0xd4, 0xe1, 0xe2, 0xe3, 0xe2, 0xe2, 0xe1, 0xe2, 0xe4, 0xe1, 0x54, 0x53, 0x53, 0x53, 0x5b, 0x68, 0x65, 0x64, 0x65, 0x65, 0x65, 0x65, 0x65, 0x65, 0x64, 0x64, 0x61, 0x61, 0x5f, 0xc4, 0x60, 0x07, 0x16, 0x13, 0x0d, 0x0d, 0x08, 0x02, 0x02, 0x02, 0x03, 0x03, 0x06, 0xe2, 0xd4, 0xe0, 0xe0, 0xe0, 0xe3, 0xe3, 0xe0, 0xd2, 0xc2, 0x53, 0x53, 0xc2, 0x53, 0xc2, 0x53, 0xc2, 0x53, 0xc2, 0x53, 0xc2, 0x53, 0xc2, 0x53, 0x53, 0x53, 0xc2, 0xde, 0x02, 0x05, 0x06, 0x02, 0x03, 0x02, 0x07, 0x02, 0x06, 0x06, 0x06, 0x06, 0x0a, 0x00, 0x01, 0x0d, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0d, 0x0b, 0x0b, 0x0b, 0x04, 0x0b, 0x04, 0xde, 0xde, 0xde, 0xde, 0x00, 0xde, 0x00, 0xde, 0xde, 0xde, 0x02, 0x04, 0x05, 0x01, 0x08, 0x19, 0x19, 0x16, 0x16, 0x16, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x15, 0xee, 0xec, 0xef, 0xec, 0x1b, 0x1b, 0x7d, 0x7f, 0x7d, 0x7d, 0x82, 0x7d, 0x82, 0x7d, 0xd7, 0xd7, 0xd7, 0xd8, 0xd7, 0xd8, 0x88, 0x1b, 0x19, 0x19, 0x1c, 0x19, 0x19, 0x19, 0x1c, 0x19, 0x04, 0x0a, 0x04, 0x08, 0x04, 0x0b, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d,
0x25, 0x25, 0x25, 0x25, 0x25, 0x25, 0x25, 0x25, 0x22, 0x22, 0x25, 0x27, 0x2d, 0xf3, 0xcc, 0xad, 0xb1, 0xaf, 0xb1, 0xaf, 0xb1, 0xb1, 0xb3, 0xb1, 0xb3, 0xb1, 0xb1, 0xb1, 0xb9, 0xb6, 0x73, 0x4a, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6f, 0x4d, 0x73, 0x73, 0x4d, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x4e, 0x67, 0xde, 0xd3, 0xd3, 0xd4, 0xd4, 0xd4, 0xd3, 0xd4, 0xd3, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xe0, 0xe1, 0xe3, 0xd4, 0x57, 0xdf, 0xd4, 0xc6, 0xc8, 0x84, 0xcc, 0x9e, 0xcc, 0x94, 0x94, 0x8e, 0x90, 0x9b, 0x84, 0x02, 0x07, 0xc6, 0x68, 0x6c, 0x71, 0x71, 0x76, 0x71, 0x76, 0x75, 0x7b, 0x7b, 0x7f, 0x7f, 0x82, 0x85, 0x82, 0x85, 0x90, 0x8c, 0xe8, 0x09, 0xe8, 0xe8, 0x10, 0xe8, 0x10, 0xe8, 0x10, 0x10, 0x0c, 0x10, 0x0e, 0x14, 0x12, 0x14, 0x12, 0x14, 0x12, 0x14, 0x14, 0x14, 0x09, 0xd5, 0xe4, 0xe3, 0xd4, 0xd4, 0xd4, 0xe0, 0x5b, 0x5e, 0x5e, 0x5e, 0x5e, 0x5d, 0x5e, 0x5d, 0x5e, 0x5e, 0x60, 0x59, 0xd2, 0xc2, 0xdf, 0xd2, 0xd2, 0xd2, 0xd2, 0xd2, 0x57, 0x58, 0x56, 0x59, 0x56, 0x56, 0x54, 0x56, 0x55, 0xd3, 0xd2, 0xd2, 0xd2, 0x57, 0xd2, 0xd2, 0xd2, 0xc2, 0xe0, 0x07, 0x07, 0x04, 0x04, 0x04, 0x04, 0x01, 0x02, 0x03, 0xe1, 0xc4, 0xc3, 0xe3, 0xe1, 0xe3, 0xe1, 0xe3, 0xe1, 0xe3, 0xe3, 0xe3, 0xe1, 0xe3, 0xe1, 0xe3, 0xe3, 0xe3, 0xdf, 0xd2, 0xde, 0xdf, 0xde, 0xdf, 0xde, 0xdf, 0xde, 0xd2, 0xc4, 0x61, 0x61, 0x61, 0xe1, 0xe0, 0x00, 0x00, 0xde, 0x00, 0xde, 0x00, 0x00, 0x00, 0xe3, 0xe0, 0xe0, 0xd4, 0xd4, 0xd4, 0xd4, 0xd3, 0xc2, 0xc2, 0xd2, 0xd2, 0xd2, 0xd2, 0xd2, 0x55, 0xd2, 0x55, 0xd2, 0xd2, 0xd2, 0xc2, 0xd3, 0xd4, 0xe1, 0xc3, 0xc3, 0xd4, 0xc3, 0xd4, 0x5f, 0x57, 0x59, 0x66, 0x70, 0x6a, 0x66, 0x65, 0x62, 0x61, 0x61, 0x5f, 0x61, 0x61, 0xc5, 0x61, 0x61, 0xc4, 0x61, 0x5f, 0xc3, 0x5a, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xc3, 0xd4, 0xc3, 0xd4, 0xc3, 0xd4, 0xc3, 0xd4, 0xe1, 0xd4, 0xe1, 0xd4, 0xd4, 0xd3, 0xd3, 0xd3, 0xd3, 0xd3, 0xd3, 0xd3, 0xd3, 0xd3, 0xd3, 0xd4, 0xd3, 0xdf, 0xd3, 0xe0, 0xe3, 0xe0, 0xe1, 0xe2, 0xe1, 0xe1, 0xe1, 0xd5, 0x5a, 0x54, 0x53, 0x54, 0x65, 0x65, 0x65, 0x65, 0x65, 0x64, 0x64, 0x61, 0x61, 0x61, 0x5f, 0xc4, 0x61, 0xc5, 0x61, 0x60, 0x07, 0x16, 0x13, 0x0d, 0x0b, 0x0d, 0x0d, 0x08, 0x05, 0x02, 0x03, 0x06, 0xe2, 0xe0, 0xe0, 0xe1, 0xe0, 0xe1, 0xe0, 0xe3, 0xe3, 0xe0, 0xdf, 0xc2, 0x53, 0x53, 0x53, 0xc2, 0x53, 0xc2, 0x53, 0xc2, 0x53, 0xc2, 0x53, 0xc2, 0x53, 0xc2, 0x53, 0x53, 0x53, 0x00, 0x02, 0x05, 0x05, 0x06, 0x02, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x05, 0x08, 0x0b, 0x08, 0x0b, 0x0b, 0x0d, 0x0b, 0x0b, 0x0b, 0x0d, 0x0b, 0x0b, 0x04, 0x04, 0xde, 0xde, 0xde, 0xde, 0xde, 0xde, 0xde, 0x00, 0xde, 0x00, 0xde, 0x02, 0x05, 0x05, 0x08, 0x19, 0x16, 0x16, 0x16, 0x16, 0x16, 0x19, 0x19, 0x19, 0x19, 0x19, 0x1b, 0xec, 0xef, 0xec, 0x1b, 0xee, 0x15, 0xee, 0x7f, 0x7d, 0x7f, 0x7d, 0x7d, 0x7d, 0x7d, 0x84, 0xd7, 0xd8, 0xd7, 0xd8, 0xd7, 0xd8, 0x88, 0x1b, 0x1c, 0x19, 0x19, 0x1c, 0x19, 0x1c, 0x16, 0x08, 0x05, 0x08, 0x04, 0x08, 0x04, 0x0b, 0x0d, 0x0d, 0x0d, 0x0d,
0x25, 0x25, 0x25, 0x22, 0x25, 0x25, 0x25, 0x25, 0x25, 0x22, 0x25, 0x27, 0xf2, 0xf3, 0xda, 0xaa, 0xb1, 0xaf, 0xaf, 0xaf, 0xb1, 0xb1, 0xb1, 0xb3, 0xb1, 0xb3, 0xb3, 0xb1, 0xb1, 0xba, 0xb6, 0x78, 0x4a, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6f, 0x4b, 0x78, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x4b, 0x4e, 0x63, 0xde, 0xdf, 0xd4, 0xd3, 0xd3, 0xd4, 0xd3, 0xd4, 0xd3, 0xd4, 0xd3, 0xd4, 0xd4, 0xd4, 0xe0, 0xc3, 0xe0, 0xe1, 0xe1, 0xd3, 0x5a, 0xd3, 0xd2, 0xd2, 0xd4, 0xc6, 0x7d, 0xca, 0x98, 0xa0, 0x9c, 0x98, 0x93, 0xa6, 0xc9, 0xe2, 0x68, 0x6c, 0x69, 0x71, 0x76, 0x6d, 0x76, 0x75, 0x76, 0x7b, 0x76, 0x7b, 0x7f, 0x85, 0x85, 0x8c, 0x93, 0x90, 0xa2, 0x80, 0x06, 0x10, 0x09, 0xe8, 0x10, 0xe8, 0x10, 0x10, 0x09, 0x10, 0x10, 0x10, 0x14, 0x14, 0x12, 0x14, 0x12, 0x14, 0x12, 0x14, 0x14, 0x18, 0x0e, 0x03, 0xe3, 0xe1, 0xdf, 0xd4, 0xe0, 0x5d, 0x5e, 0x5e, 0x60, 0x5e, 0x5e, 0x5e, 0x5e, 0x5e, 0x5d, 0x5e, 0x5e, 0x5a, 0xc2, 0xde, 0xd2, 0xd2, 0xd2, 0xde, 0xd2, 0x55, 0x56, 0x56, 0x56, 0x56, 0x55, 0x56, 0x56, 0x54, 0xd2, 0xd2, 0xd2, 0xd2, 0xd2, 0xd2, 0xd2, 0xd2, 0xc2, 0xe0, 0x09, 0x03, 0x07, 0x01, 0x04, 0x04, 0x04, 0x04, 0x04, 0x01, 0x02, 0xe2, 0xe3, 0xc3, 0xd5, 0xe1, 0xe3, 0xe3, 0xe1, 0xe2, 0xe1, 0xe3, 0xe3, 0xe3, 0xe1, 0xe3, 0xe3, 0xe2, 0xd2, 0xdf, 0xde, 0xdf, 0xde, 0xdf, 0xde, 0xdf, 0xdf, 0x61, 0x5f, 0x61, 0x61, 0x61, 0xd5, 0xe1, 0xe2, 0xe0, 0x00, 0x00, 0x00, 0xde, 0x00, 0xe0, 0xe3, 0xe0, 0xd4, 0xe0, 0xd4, 0xd4, 0xe0, 0xd4, 0x55, 0xc2, 0xd2, 0xd2, 0x55, 0xd2, 0xd2, 0xc2, 0xd2, 0xd2, 0xd2, 0x55, 0xd2, 0xc2, 0x55, 0xd4, 0xe1, 0xe1, 0xc3, 0xd4, 0xc3, 0xc3, 0xc4, 0x5a, 0x59, 0x5f, 0x61, 0x5f, 0xc4, 0x61, 0x61, 0x61, 0x61, 0xc4, 0x61, 0x61, 0x61, 0xc4, 0x5f, 0x5f, 0x61, 0xc3, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xc3, 0xd4, 0xe1, 0xd4, 0xc3, 0xe1, 0xd4, 0xe1, 0xd4, 0xe1, 0xe1, 0xd4, 0xd3, 0xd3, 0xd4, 0xd3, 0xd3, 0xd4, 0xd3, 0xd3, 0xd3, 0xd3, 0xd3, 0xd4, 0xd3, 0xd4, 0xdf, 0xe3, 0xe2, 0xe1, 0xe0, 0xe0, 0xe1, 0xe1, 0xc4, 0xc3, 0x54, 0x53, 0x64, 0x68, 0x64, 0x64, 0x61, 0x61, 0xc4, 0x61, 0x61, 0x61, 0x61, 0x61, 0x61, 0x61, 0x61, 0x5f, 0x06, 0x16, 0x13, 0x13, 0x0b, 0x0b, 0x0d, 0x0d, 0x0b, 0x04, 0x02, 0x06, 0xe2, 0xd4, 0xe0, 0xe0, 0xe0, 0xe1, 0xe0, 0xe1, 0xe0, 0xe1, 0xe3, 0xe3, 0xdf, 0xd2, 0x53, 0x53, 0x53, 0x53, 0xc2, 0xc2, 0x53, 0xc2, 0x53, 0xc2, 0x53, 0xc2, 0x53, 0xc2, 0x53, 0x53, 0x53, 0xde, 0x05, 0x05, 0x0a, 0x02, 0x06, 0x06, 0x06, 0x06, 0x06, 0x05, 0x06, 0x05, 0x0a, 0x08, 0x0a, 0x08, 0x08, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0d, 0x0b, 0x0b, 0x00, 0xde, 0xde, 0xde, 0xde, 0xde, 0x00, 0xde, 0x00, 0xde, 0xde, 0xde, 0x01, 0x05, 0x0b, 0x19, 0x16, 0x19, 0x16, 0x16, 0x16, 0x19, 0x19, 0x19, 0x1c, 0x18, 0x1b, 0xee, 0xec, 0x1b, 0x1b, 0x1b, 0x1b, 0x1b, 0xd7, 0x7f, 0x7d, 0x7c, 0x7d, 0x7c, 0x80, 0xd7, 0xd8, 0xd7, 0xd8, 0xd7, 0xd8, 0xd7, 0x84, 0x84, 0x1d, 0x1c, 0x1c, 0x19, 0x19, 0x1c, 0x16, 0x08, 0x04, 0x08, 0x08, 0x08, 0x08, 0x04, 0x0d, 0x0d, 0x0d, 0x0d,
0x27, 0x25, 0x25, 0x25, 0x25, 0x25, 0x25, 0x25, 0x25, 0x25, 0x25, 0x27, 0xf2, 0xf3, 0xcb, 0xaa, 0xb1, 0xaf, 0xaf, 0xb1, 0xb1, 0xb1, 0xb3, 0xb1, 0xb1, 0xb3, 0xb1, 0xb1, 0xb1, 0xb1, 0xb7, 0xb9, 0x78, 0x4a, 0x6b, 0x6b, 0x6b, 0x6b, 0x73, 0x78, 0x4b, 0x73, 0x4d, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x4b, 0x4d, 0x66, 0xde, 0xd3, 0xd4, 0xd3, 0xd4, 0xd3, 0xd3, 0xd3, 0xd4, 0xd3, 0xd4, 0xd3, 0xd4, 0xd4, 0xe0, 0xd4, 0xd4, 0xe1, 0xd4, 0xd3, 0xd2, 0xd4, 0xd3, 0xd3, 0xd2, 0xd2, 0xd4, 0x68, 0xc9, 0x90, 0xa3, 0xa6, 0x52, 0xa4, 0x74, 0xc5, 0x6c, 0x6d, 0x71, 0x71, 0x76, 0x75, 0x6d, 0x75, 0x75, 0x7f, 0x85, 0x8c, 0x8c, 0x93, 0x93, 0x90, 0x93, 0x93, 0x9b, 0xc8, 0x06, 0xe8, 0x10, 0xe8, 0x10, 0xe8, 0x10, 0x10, 0x10, 0x10, 0x10, 0x11, 0x14, 0x14, 0x12, 0x14, 0x12, 0x14, 0x12, 0x14, 0x12, 0x18, 0x14, 0x0c, 0xe4, 0xd4, 0xd4, 0xe0, 0x5d, 0x5e, 0x5e, 0x5e, 0x5e, 0x5e, 0x5d, 0x5e, 0x5e, 0x60, 0x5e, 0x60, 0x5e, 0x5a, 0xc2, 0xd2, 0xd2, 0xd2, 0xd2, 0xd2, 0x55, 0x58, 0x56, 0x56, 0x56, 0x56, 0x54, 0x54, 0x56, 0x54, 0xd2, 0xd2, 0xd2, 0xd2, 0xd2, 0xd2, 0xd2, 0xd2, 0x03, 0x09, 0x07, 0x07, 0x06, 0x01, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x01, 0x06, 0xe2, 0xe1, 0xc3, 0xe1, 0xe3, 0xe3, 0xe3, 0xe1, 0xe3, 0xe1, 0xe3, 0xe3, 0xe3, 0xe3, 0xe0, 0xd2, 0xde, 0xdf, 0xdf, 0xde, 0xdf, 0xd2, 0xd3, 0x61, 0x5f, 0xc4, 0x61, 0x61, 0x61, 0x61, 0xe1, 0xe3, 0xe2, 0xe2, 0xe0, 0x00, 0xde, 0x00, 0x00, 0xe3, 0xe0, 0xd4, 0xd4, 0xd4, 0xd4, 0xe1, 0xe0, 0x57, 0xc2, 0x55, 0xd2, 0xc2, 0xd2, 0xd2, 0x55, 0xd2, 0x55, 0xd2, 0xd2, 0xd2, 0xc2, 0xc2, 0x57, 0xd4, 0xe1, 0xc4, 0xd4, 0xc3, 0xd4, 0xc3, 0xd4, 0x5f, 0x5f, 0xc4, 0x61, 0xc4, 0x61, 0x61, 0x61, 0x61, 0x61, 0x5f, 0xc4, 0x5f, 0xc4, 0x5f, 0xc4, 0x5f, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xc3, 0xd4, 0xd4, 0xc3, 0xd4, 0xc3, 0xd4, 0xc3, 0xd4, 0xc3, 0xd4, 0xe1, 0xd4, 0xe1, 0xe1, 0xe1, 0xd4, 0xd3, 0xd3, 0xd3, 0xd3, 0xd4, 0xd3, 0xd3, 0xd3, 0xd3, 0xd3, 0xd3, 0xe0, 0xd3, 0xd3, 0xe0, 0xe2, 0xe3, 0xe1, 0xe0, 0xe1, 0xe1, 0xc3, 0xc4, 0x59, 0x5f, 0x61, 0x61, 0x61, 0xc4, 0x61, 0x61, 0x61, 0xc4, 0x61, 0x61, 0x61, 0xc4, 0x61, 0x61, 0x60, 0x0a, 0x16, 0x13, 0x13, 0x13, 0x0b, 0x0b, 0x0b, 0x0d, 0x0d, 0x0b, 0x04, 0x05, 0xe0, 0xe1, 0xe0, 0xe0, 0xe0, 0xe0, 0xd4, 0xe0, 0xe1, 0xe0, 0xe1, 0xe3, 0xe2, 0xe0, 0xdf, 0xc2, 0x53, 0x53, 0x53, 0xc2, 0x53, 0xc2, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0xde, 0x01, 0x05, 0x05, 0x02, 0x06, 0x06, 0x06, 0x06, 0x05, 0x06, 0x05, 0x08, 0x08, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x08, 0x08, 0x08, 0x0b, 0x0b, 0x00, 0xc2, 0xde, 0xde, 0xde, 0xde, 0xde, 0xde, 0xde, 0x00, 0xde, 0xde, 0xde, 0x00, 0x08, 0x1c, 0x19, 0x16, 0x16, 0x16, 0x16, 0x16, 0x19, 0x19, 0x19, 0x17, 0xee, 0xec, 0x1b, 0xee, 0x1b, 0xee, 0x1b, 0x1b, 0xec, 0x80, 0x7f, 0x7d, 0x7d, 0x7d, 0x80, 0xd7, 0xd7, 0xd7, 0xd7, 0xd8, 0xd7, 0xd8, 0xd7, 0xd8, 0x84, 0x1d, 0x19, 0x1c, 0x19, 0x1c, 0x19, 0x08, 0x05, 0x08, 0x04, 0x08, 0x04, 0x08, 0x08, 0x0b, 0x0d, 0x0d,
0x22, 0x25, 0x25, 0x27, 0x25, 0x25, 0x25, 0x25, 0x25, 0x25, 0x25, 0x25, 0xf2, 0xf5, 0xcb, 0xa8, 0xb1, 0xb1, 0xaf, 0xaf, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb3, 0xb1, 0xb1, 0xb7, 0xbb, 0x78, 0x4a, 0x6b, 0x6b, 0x6b, 0x73, 0x73, 0x4d, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x4d, 0x4c, 0x60, 0xde, 0xd4, 0xdf, 0xd4, 0xd3, 0xd4, 0xd4, 0xd4, 0xd3, 0xd4, 0xd4, 0xd4, 0xe1, 0xd4, 0xd4, 0xd4, 0xe1, 0xe1, 0xd4, 0xd3, 0xd2, 0xd3, 0x57, 0xd3, 0xd3, 0x57, 0xd2, 0xd2, 0x5a, 0x6e, 0x7c, 0x93, 0xa6, 0xab, 0x75, 0x63, 0x71, 0x71, 0x6d, 0x6d, 0x76, 0x7b, 0x81, 0x87, 0x92, 0x97, 0x93, 0x93, 0x93, 0x93, 0x93, 0x90, 0x90, 0x93, 0x93, 0xea, 0x07, 0xe8, 0x10, 0xe8, 0x0c, 0xe8, 0x10, 0x09, 0x10, 0x10, 0x10, 0x0e, 0x14, 0x14, 0x12, 0x14, 0x12, 0x14, 0x12, 0x14, 0x12, 0x14, 0x18, 0x12, 0x03, 0xd4, 0xd3, 0x5d, 0x5e, 0x5e, 0x5e, 0x5e, 0x5e, 0x5e, 0x5e, 0x5d, 0x5e, 0x5d, 0x5e, 0x60, 0x5e, 0xd2, 0xc2, 0xd2, 0xd2, 0xd2, 0xde, 0x56, 0x56, 0x56, 0x55, 0x56, 0x54, 0x56, 0x54, 0x54, 0x54, 0x55, 0xd2, 0xd2, 0xd2, 0xd2, 0xd2, 0xc2, 0xde, 0x03, 0x06, 0x03, 0x07, 0xe5, 0x05, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x01, 0x02, 0xe2, 0xe3, 0xe3, 0xe3, 0xe3, 0xe3, 0xe3, 0xe3, 0xe3, 0xe3, 0xe3, 0xe4, 0xe0, 0xc2, 0xde, 0xdf, 0xdf, 0xd2, 0xde, 0xd4, 0x61, 0xc4, 0x61, 0x61, 0xc4, 0x61, 0x61, 0x62, 0xc3, 0xe1, 0xe2, 0xe1, 0xe1, 0xe0, 0x00, 0x00, 0xe0, 0xe1, 0xe0, 0xd4, 0xe0, 0xe1, 0xd4, 0xe1, 0xd4, 0xd3, 0xc2, 0xc2, 0xd2, 0xd2, 0xc2, 0xd2, 0xd2, 0xd2, 0x55, 0xd2, 0x55, 0xd2, 0xd2, 0xc2, 0x55, 0xd3, 0xe1, 0xe1, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc4, 0xc4, 0xc4, 0x5f, 0xc4, 0x5f, 0xc4, 0xc4, 0x61, 0xc4, 0x61, 0x5f, 0xc4, 0x5f, 0x61, 0xc3, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xc3, 0xd4, 0xe1, 0xd4, 0xc3, 0xd4, 0xe1, 0xd4, 0xe1, 0xe1, 0xe1, 0xd4, 0xd3, 0xd3, 0xd3, 0xd3, 0xd3, 0xd4, 0xd3, 0xd3, 0xd3, 0xd3, 0xd3, 0xd3, 0xdf, 0xd3, 0xd3, 0xe2, 0xe3, 0xe2, 0xe1, 0xe1, 0xe1, 0xe1, 0xc3, 0x5f, 0x61, 0x61, 0x61, 0x61, 0x61, 0x61, 0x61, 0x61, 0xc4, 0x61, 0x61, 0x61, 0x61, 0x61, 0x5d, 0x0a, 0x16, 0x13, 0x13, 0x13, 0x0d, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0d, 0x0b, 0xe0, 0xd3, 0xe1, 0xe3, 0xe2, 0xe1, 0xe2, 0xe1, 0xe2, 0xe1, 0xe3, 0xe0, 0xe1, 0xe3, 0xe3, 0xe1, 0xdf, 0xc2, 0xc2, 0x53, 0xc2, 0x53, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0x55, 0x53, 0x55, 0x00, 0x0a, 0x04, 0x02, 0x05, 0x06, 0x05, 0x06, 0x06, 0x06, 0x05, 0x08, 0x08, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x05, 0x0a, 0x08, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xde, 0x02, 0x16, 0x19, 0x19, 0x16, 0x16, 0x16, 0x16, 0x19, 0x19, 0x19, 0x17, 0xee, 0x1b, 0xec, 0x1b, 0xec, 0x1b, 0xee, 0x1b, 0x1b, 0xee, 0x7f, 0x7d, 0x82, 0x7d, 0x80, 0xd7, 0xd8, 0xd7, 0xd8, 0xd7, 0xd8, 0xd7, 0xd8, 0xd8, 0x84, 0xd8, 0x18, 0x1c, 0x19, 0x1c, 0x16, 0x08, 0x05, 0x08, 0x08, 0x08, 0x08, 0x08, 0x04, 0x08, 0x0b, 0x13,
0x17, 0x1d, 0x1a, 0x25, 0x25, 0x27, 0x25, 0x25, 0x25, 0x27, 0x29, 0x27, 0xf2, 0xf3, 0xf4, 0xa3, 0xb1, 0xaf, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb3, 0xb1, 0xb1, 0xb1, 0xb3, 0xb3, 0xb1, 0xb1, 0xb6, 0xbd, 0x7e, 0x4a, 0x6b, 0x6b, 0x73, 0x4d, 0x73, 0x78, 0x73, 0x4d, 0x73, 0x4d, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x4b, 0x4d, 0x62, 0xde, 0xd3, 0xd4, 0xd3, 0xd4, 0xd3, 0xd4, 0xd3, 0xd4, 0xd4, 0xd4, 0xd4, 0xe0, 0xd4, 0xe0, 0xd4, 0xe1, 0xe1, 0xd3, 0xd2, 0xd3, 0xd2, 0x57, 0x57, 0xd3, 0x57, 0x57, 0x57, 0xc2, 0x55, 0x5b, 0x66, 0x87, 0x9d, 0x71, 0x69, 0x76, 0x7a, 0x87, 0x8f, 0x92, 0x99, 0x97, 0x97, 0x92, 0x92, 0x92, 0x90, 0x93, 0x90, 0x92, 0x90, 0x90, 0x92, 0x8a, 0x07, 0x07, 0xe8, 0x09, 0xe8, 0x10, 0x09, 0x10, 0x10, 0x10, 0x10, 0x10, 0x12, 0x14, 0x14, 0x12, 0x14, 0x12, 0x14, 0x12, 0x14, 0x14, 0x0f, 0x18, 0x18, 0x0c, 0xe0, 0x58, 0x5e, 0x5e, 0x5e, 0x5e, 0x60, 0x5e, 0x60, 0x5e, 0x5d, 0x5e, 0x60, 0x5e, 0x60, 0x5e, 0xd2, 0xc2, 0xde, 0xd2, 0xd2, 0x54, 0x56, 0x56, 0x56, 0x56, 0x54, 0x56, 0x54, 0x56, 0x54, 0x54, 0x55, 0xd2, 0xd2, 0xd2, 0xd2, 0xc2, 0xdf, 0x09, 0x07, 0x07, 0x07, 0x07, 0x07, 0x05, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x0b, 0x02, 0xe1, 0xe3, 0xe3, 0xe1, 0xe3, 0xe3, 0xe3, 0xe3, 0xe2, 0xe3, 0xe3, 0xe4, 0xe0, 0xd2, 0xde, 0xdf, 0xdf, 0xd2, 0x5a, 0x61, 0x61, 0xc4, 0x61, 0xc4, 0x61, 0xc4, 0x61, 0x61, 0x61, 0xe1, 0xe2, 0xe2, 0xe1, 0xe1, 0xd4, 0xe0, 0xe1, 0xd4, 0xe1, 0xd4, 0xe0, 0xd4, 0xe1, 0xd4, 0xe1, 0xd4, 0xc2, 0xc2, 0xd2, 0x55, 0xd2, 0x55, 0xd2, 0xc2, 0xd2, 0xd2, 0xd2, 0x55, 0xd2, 0xc2, 0xc2, 0xd2, 0xd4, 0xd5, 0xe1, 0xc3, 0xc3, 0xc3, 0x5f, 0xc4, 0x61, 0xc4, 0x5f, 0xc4, 0xc4, 0x5f, 0xc3, 0x5f, 0xc3, 0x61, 0x5f, 0x5f, 0x61, 0x5f, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xc3, 0xd4, 0xc3, 0xc3, 0xd4, 0xd4, 0xd4, 0xe1, 0xd4, 0xe1, 0xd4, 0xc3, 0xe1, 0xe1, 0xd3, 0xd3, 0xd3, 0xd3, 0xd3, 0xd3, 0xd3, 0xdf, 0xd3, 0xd3, 0xdf, 0xd4, 0xdf, 0xdf, 0xd3, 0xe0, 0xe2, 0xe3, 0xe2, 0xe1, 0xe1, 0xc3, 0xc3, 0x61, 0xc4, 0x5f, 0x61, 0x61, 0x61, 0x61, 0x61, 0x61, 0x61, 0x61, 0xc4, 0x61, 0x61, 0x5f, 0x0e, 0x16, 0x13, 0x13, 0x13, 0x13, 0x0d, 0x0b, 0x0b, 0x0b, 0x08, 0x0b, 0x08, 0xe0, 0x57, 0x5a, 0xd4, 0xe2, 0xe3, 0xe2, 0xe3, 0xe3, 0xe3, 0xe3, 0xe3, 0xe3, 0xe3, 0xe3, 0xe3, 0xe4, 0xe3, 0xe1, 0xd4, 0xd4, 0xc3, 0xd4, 0xc3, 0xe1, 0xc3, 0xe1, 0xe1, 0xc4, 0xe1, 0xd5, 0xe1, 0xd5, 0xc4, 0x5f, 0x08, 0x16, 0x0f, 0x04, 0x05, 0x02, 0x06, 0x06, 0x06, 0x06, 0x0a, 0x08, 0x08, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x05, 0x0a, 0x07, 0x03, 0x03, 0xe2, 0xe2, 0xe2, 0x03, 0xe2, 0x03, 0xe2, 0x03, 0x03, 0xe2, 0xe2, 0x08, 0x0d, 0x13, 0x16, 0x19, 0x16, 0x16, 0x16, 0x19, 0x19, 0x15, 0xee, 0xec, 0xef, 0xec, 0x1b, 0x1b, 0x1b, 0xec, 0x1b, 0x1b, 0x7d, 0x7f, 0x7d, 0x7d, 0xd7, 0xd8, 0xd7, 0xd7, 0xd8, 0xd7, 0xd8, 0xd7, 0xd8, 0xd7, 0xd8, 0x80, 0xf1, 0x19, 0x1c, 0x1c, 0x16, 0x08, 0x08, 0x08, 0x08, 0x08, 0x08, 0x08, 0x08, 0x08, 0x0b, 0x0b,
0x1d, 0x17, 0x1d, 0x17, 0x22, 0x22, 0x27, 0x25, 0x27, 0x25, 0x27, 0xf2, 0xf2, 0xf3, 0xda, 0xa0, 0xb1, 0xb1, 0xb1, 0xaf, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb3, 0xb3, 0xb1, 0xb1, 0xb3, 0xb1, 0xb1, 0xb6, 0xbe, 0x83, 0x4a, 0x6b, 0x73, 0x4d, 0x73, 0x4d, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x4b, 0x4c, 0x5f, 0xde, 0xd3, 0xd3, 0xd3, 0xd4, 0xd3, 0xd4, 0xd4, 0xe0, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xe1, 0xd3, 0x55, 0xdf, 0x57, 0xdf, 0x57, 0xd3, 0x57, 0x57, 0x57, 0x57, 0xd2, 0x54, 0x55, 0x60, 0x75, 0x8b, 0x51, 0x9a, 0x9a, 0x9a, 0x95, 0x95, 0x92, 0x92, 0x92, 0x93, 0x92, 0x93, 0x8d, 0x93, 0x90, 0x93, 0x93, 0x8c, 0x92, 0x7d, 0x07, 0x09, 0xe8, 0x09, 0xe8, 0x10, 0xe8, 0x0c, 0xe8, 0x0c, 0xe8, 0x11, 0x14, 0x14, 0x14, 0x12, 0x14, 0x12, 0x14, 0x14, 0x14, 0x14, 0x14, 0x16, 0x16, 0x12, 0x63, 0x5e, 0x5e, 0x5e, 0x5d, 0x5e, 0x5d, 0x5e, 0x5e, 0x60, 0x5e, 0x5e, 0x5d, 0x5e, 0x5e, 0x5d, 0xde, 0xc2, 0xde, 0xd2, 0x56, 0x54, 0x56, 0x54, 0x56, 0x54, 0x56, 0x54, 0x54, 0x54, 0x56, 0x54, 0x55, 0xde, 0xd2, 0xd2, 0xc2, 0xe0, 0x09, 0x06, 0x07, 0x03, 0x07, 0x07, 0x07, 0x01, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x01, 0x5d, 0xe3, 0xe2, 0xe2, 0xe3, 0xe3, 0xe3, 0xe3, 0xe3, 0xe3, 0xe3, 0xe3, 0xe3, 0xdf, 0xd2, 0xde, 0xd3, 0xde, 0x5f, 0x61, 0xc4, 0x61, 0x5f, 0x61, 0x61, 0x61, 0xc4, 0x61, 0x61, 0x61, 0xc4, 0xe1, 0xe0, 0xe1, 0xe0, 0xe1, 0xe0, 0xd4, 0xe0, 0xe1, 0xd4, 0xe1, 0xd4, 0xe1, 0xd4, 0xe3, 0xd4, 0xd2, 0xc2, 0xc2, 0xd2, 0xd2, 0xd2, 0x55, 0xd2, 0x55, 0xd2, 0xd2, 0xd2, 0xd2, 0xc2, 0x55, 0xc2, 0xd3, 0xd4, 0xd5, 0xe1, 0xc3, 0xc4, 0xc4, 0xc3, 0x5f, 0xc3, 0xc4, 0x5f, 0xc4, 0xc3, 0x5f, 0xc3, 0xc3, 0xc3, 0xc4, 0xc4, 0xc3, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xc3, 0xd4, 0xc3, 0xd4, 0xc3, 0xd4, 0xe1, 0xe1, 0xd4, 0xe1, 0xd4, 0xe1, 0xe1, 0xe1, 0xd4, 0xd3, 0xd3, 0xd3, 0xd3, 0xd3, 0xd3, 0xd3, 0xdf, 0xd3, 0xdf, 0xdf, 0xd3, 0xdf, 0xd3, 0xdf, 0xe1, 0xe2, 0xe3, 0xe0, 0xe1, 0xc3, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0x61, 0xc4, 0x61, 0x61, 0x61, 0x61, 0x61, 0x61, 0x61, 0x61, 0x0b, 0x16, 0x13, 0x13, 0x13, 0x13, 0x13, 0x0b, 0x08, 0x0b, 0x0b, 0x08, 0x04, 0xe0, 0x57, 0x5a, 0x57, 0x5a, 0xd4, 0xe1, 0xe3, 0x03, 0xe3, 0xe3, 0xe3, 0xe3, 0xe3, 0xe3, 0xe3, 0xe3, 0xe3, 0xe3, 0xe4, 0xe3, 0xe3, 0xe1, 0xd5, 0xc3, 0xd5, 0xe1, 0xd5, 0xe1, 0xd5, 0xe1, 0xe1, 0xd5, 0xe1, 0x5f, 0x06, 0x16, 0x19, 0x16, 0x13, 0x0f, 0x08, 0x05, 0x02, 0x06, 0x07, 0x05, 0x08, 0x08, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0e, 0x05, 0x07, 0x06, 0x03, 0x00, 0xe2, 0x00, 0xe2, 0xe2, 0xe2, 0xe2, 0xe2, 0xe2, 0xe2, 0x02, 0x0d, 0x0b, 0x0d, 0x0d, 0x16, 0x16, 0x16, 0x19, 0x16, 0x1b, 0xec, 0x1b, 0xec, 0x1b, 0xec, 0x1b, 0xee, 0x1b, 0x1b, 0x1b, 0xee, 0x7c, 0x7c, 0x80, 0xd7, 0xd7, 0xd8, 0xd7, 0xd8, 0xd7, 0xd8, 0xd7, 0xd8, 0xd7, 0xf1, 0xd8, 0x84, 0xf0, 0x19, 0x1f, 0x16, 0x08, 0x05, 0x08, 0x08, 0x08, 0x08, 0x08, 0x0b, 0x08, 0x08, 0x0b,
0x1d, 0x1d, 0x1d, 0x1d, 0x17, 0x1d, 0x1d, 0x25, 0x25, 0x2d, 0x27, 0x2d, 0xf2, 0xf5, 0xf4, 0xa0, 0xaf, 0xaf, 0xaf, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb3, 0xb1, 0xb3, 0xb1, 0xb3, 0xb1, 0xb6, 0xbe, 0x87, 0x4a, 0x73, 0x73, 0x4d, 0x73, 0x4d, 0x73, 0x4d, 0x73, 0x4d, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x4b, 0x4c, 0x5f, 0xde, 0xd4, 0xd4, 0xd3, 0xd4, 0xd3, 0xd4, 0xd4, 0xd4, 0xe1, 0xd4, 0xd4, 0xe1, 0xd4, 0xe1, 0xd4, 0xe1, 0xe1, 0xd3, 0xd2, 0xd3, 0xd2, 0x57, 0x57, 0xd3, 0x57, 0x5a, 0x57, 0x59, 0x57, 0x59, 0x53, 0x66, 0xa9, 0xa1, 0x96, 0x96, 0x96, 0x96, 0x95, 0x95, 0x92, 0x92, 0x92, 0x93, 0x92, 0x93, 0x93, 0x93, 0x93, 0x8c, 0x90, 0x8d, 0x97, 0xeb, 0x07, 0xe5, 0xe8, 0x10, 0x09, 0xe8, 0x10, 0x10, 0x10, 0x10, 0xe8, 0x0e, 0x14, 0x0f, 0x14, 0x12, 0x14, 0x14, 0x14, 0x14, 0x14, 0x14, 0x14, 0x13, 0x1d, 0x8b, 0x6b, 0x69, 0x69, 0x63, 0x63, 0x5e, 0x60, 0x5d, 0x5e, 0x5d, 0x5e, 0x60, 0x5d, 0x60, 0x63, 0x5d, 0xc2, 0xde, 0xc2, 0x56, 0x56, 0x56, 0x56, 0x54, 0x56, 0x54, 0x56, 0x54, 0x56, 0x54, 0x54, 0x54, 0x55, 0xde, 0xd2, 0xc2, 0xe2, 0x06, 0x07, 0x06, 0x07, 0x06, 0x07, 0x07, 0x07, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x5d, 0x5d, 0x03, 0xe2, 0xe2, 0xe2, 0xe3, 0xe2, 0xe3, 0xe3, 0xe2, 0xe3, 0xe3, 0xd5, 0xdf, 0xd2, 0xdf, 0xd2, 0x5f, 0x61, 0x61, 0x5f, 0xc4, 0x61, 0xc4, 0x61, 0x61, 0x61, 0x61, 0x61, 0x61, 0x61, 0xc4, 0xe2, 0xe0, 0xe1, 0xe0, 0xe1, 0xe0, 0xd4, 0xe0, 0xd4, 0xe0, 0xd4, 0xe1, 0xd4, 0xe3, 0xe1, 0x57, 0xc2, 0xc2, 0x55, 0xd2, 0x55, 0xd2, 0xc2, 0xd2, 0xc2, 0x55, 0xc2, 0xd2, 0xd2, 0x55, 0xc2, 0xc2, 0xd4, 0xe1, 0xc4, 0xc3, 0x5f, 0xc3, 0xc3, 0x5f, 0xc4, 0xc3, 0xc4, 0x5f, 0xc3, 0xc4, 0x5f, 0xc3, 0x5f, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xe1, 0xd4, 0xe1, 0xd4, 0xe1, 0xd4, 0xe1, 0xe1, 0xd4, 0xe1, 0xc3, 0xd4, 0x57, 0xd3, 0xd3, 0xdf, 0xd3, 0xd3, 0xdf, 0xd4, 0xdf, 0xd3, 0xdf, 0xd3, 0xdf, 0xdf, 0xe0, 0xe2, 0xe3, 0xe2, 0xe1, 0xc3, 0xc3, 0xc4, 0xc3, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0x61, 0x61, 0x61, 0x61, 0x5f, 0x61, 0x0f, 0x16, 0x0d, 0x13, 0x13, 0x0d, 0x13, 0x0d, 0x0b, 0x0b, 0x08, 0x0b, 0x08, 0xe0, 0x57, 0x5a, 0xd3, 0x5a, 0x57, 0x5a, 0x5a, 0xd4, 0xe3, 0x03, 0xe3, 0xe3, 0xe3, 0xe3, 0xe3, 0xe3, 0xe3, 0xe3, 0xe3, 0xe3, 0xe3, 0xe3, 0xe3, 0xe1, 0xe1, 0xc3, 0xe1, 0xc3, 0xe1, 0xd5, 0xe1, 0xe1, 0xc4, 0xc3, 0xe3, 0x0d, 0x13, 0x19, 0x19, 0x19, 0x16, 0x13, 0x0f, 0x08, 0x06, 0x06, 0x06, 0x0a, 0x08, 0x08, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x06, 0x03, 0x09, 0x07, 0x03, 0xe2, 0xe2, 0xe2, 0x02, 0xe2, 0x02, 0xe2, 0xe2, 0xe2, 0x08, 0x0d, 0x08, 0x0b, 0x0b, 0x0d, 0x13, 0x16, 0x18, 0xef, 0xee, 0x1b, 0xee, 0x1b, 0xee, 0x1b, 0x1b, 0x1b, 0xee, 0x1b, 0x15, 0xd7, 0x7f, 0x7d, 0xd7, 0xd7, 0xd7, 0xd7, 0xd7, 0xd8, 0xd7, 0xd8, 0xd7, 0xf1, 0xd7, 0xf1, 0xd7, 0x88, 0xef, 0x1c, 0x19, 0x0a, 0x04, 0x0a, 0x04, 0x08, 0x08, 0x08, 0x08, 0x0b, 0x08, 0x08,
0x1a, 0x1d, 0x17, 0x1d, 0x1d, 0x1d, 0x17, 0x1d, 0x22, 0x25, 0x27, 0xf2, 0xf3, 0xf3, 0xcb, 0x9e, 0xaf, 0xaf, 0xb1, 0xaf, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb3, 0xb1, 0xb3, 0xb1, 0xb3, 0xb1, 0xb3, 0xb1, 0xb1, 0xb5, 0xb9, 0x8d, 0x4b, 0x4d, 0x73, 0x73, 0x6f, 0x4b, 0x6f, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x4d, 0x4b, 0xc3, 0xde, 0xd4, 0xd3, 0xd4, 0xd4, 0xd4, 0xe1, 0xd4, 0xd4, 0xd4, 0xe1, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0x57, 0xd2, 0x57, 0xd3, 0xd2, 0x57, 0x57, 0x57, 0x57, 0x5a, 0x57, 0x59, 0x57, 0x75, 0x9a, 0xa4, 0x9a, 0x96, 0x9a, 0x96, 0x96, 0x95, 0x95, 0x92, 0x97, 0x92, 0x92, 0x93, 0x92, 0x93, 0x93, 0x93, 0x8c, 0x8c, 0x93, 0x8d, 0xe5, 0x07, 0xe8, 0xe5, 0x10, 0x09, 0x10, 0x09, 0x10, 0x0c, 0x10, 0x10, 0x12, 0x14, 0x12, 0x14, 0x12, 0x14, 0x12, 0x14, 0x14, 0x14, 0x14, 0x14, 0x1a, 0x50, 0x4f, 0x63, 0x69, 0x6b, 0x6b, 0x69, 0x69, 0x67, 0x63, 0x63, 0x60, 0x5e, 0x5e, 0x5d, 0x5d, 0x5e, 0x5b, 0xde, 0xc2, 0x56, 0x54, 0x59, 0x54, 0x56, 0x55, 0x54, 0x54, 0x54, 0x54, 0x54, 0x54, 0x54, 0x54, 0xd2, 0xd2, 0xd2, 0x07, 0x06, 0x07, 0x07, 0x07, 0x07, 0x06, 0x07, 0x07, 0x06, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x05, 0x5b, 0x5c, 0xc3, 0x03, 0x03, 0xe3, 0x03, 0xe3, 0xe2, 0xe3, 0xe3, 0xe3, 0xe1, 0xe4, 0xe1, 0xde, 0xd2, 0xd2, 0x5f, 0x61, 0xc4, 0x61, 0x61, 0x61, 0x61, 0x61, 0xc4, 0x61, 0x61, 0xc4, 0x61, 0xc4, 0x5f, 0xc3, 0xd4, 0x00, 0xe1, 0xe1, 0xd4, 0xe1, 0xd4, 0xe1, 0xd4, 0xe1, 0xe0, 0xe1, 0xd4, 0xe1, 0xe3, 0xd3, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xd2, 0xe1, 0x5f, 0xc3, 0x5f, 0x5f, 0xc4, 0xc4, 0xc3, 0xc3, 0xc4, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0x5f, 0xc3, 0x5f, 0xc4, 0xc3, 0xc3, 0xc3, 0xc3, 0xe1, 0xc3, 0xe1, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xe1, 0xc3, 0xc3, 0xd4, 0xe1, 0xd4, 0xe1, 0xe1, 0xe1, 0xe1, 0xe1, 0xd4, 0xd3, 0xd3, 0xdf, 0xdf, 0xdf, 0xd3, 0xdf, 0xdf, 0xd3, 0xdf, 0xd3, 0xdf, 0xd3, 0xdf, 0xd3, 0xe0, 0xe2, 0xe2, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc4, 0xc4, 0x61, 0x61, 0xd5, 0x0d, 0x19, 0x13, 0x13, 0x13, 0x0d, 0x13, 0x13, 0x0b, 0x0b, 0x08, 0x08, 0x04, 0xe0, 0x57, 0x5a, 0xd3, 0x5a, 0xd3, 0x5a, 0x5a, 0x57, 0x5a, 0xe1, 0xe3, 0xe4, 0xe3, 0xe4, 0xe3, 0xe3, 0xe3, 0xe4, 0xe3, 0xe3, 0xe3, 0xe3, 0xe3, 0xe3, 0xe3, 0xe3, 0xc3, 0xe3, 0xc3, 0xe1, 0xc3, 0xd5, 0xe1, 0xc4, 0xc3, 0x08, 0x13, 0x13, 0x16, 0x16, 0x16, 0x19, 0x19, 0x16, 0x13, 0x0f, 0x0a, 0x05, 0x0a, 0x05, 0x08, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x08, 0x06, 0x07, 0x06, 0x07, 0x09, 0x02, 0x03, 0x00, 0xe2, 0xe2, 0xe2, 0xe2, 0xe2, 0xe2, 0x06, 0x13, 0x08, 0x0f, 0x0b, 0x0b, 0x0b, 0x0d, 0x0f, 0x10, 0x10, 0xec, 0xec, 0xec, 0x1b, 0xee, 0x1b, 0xef, 0x1b, 0x1b, 0x1b, 0x1b, 0x7d, 0x80, 0xd7, 0xd8, 0xd7, 0xf1, 0xd8, 0xd8, 0xd8, 0xd8, 0xd8, 0xd8, 0xd8, 0xd8, 0xd9, 0xd8, 0x8e, 0x25, 0x19, 0x08, 0x0a, 0x08, 0x08, 0x08, 0x08, 0x08, 0x08, 0x0b, 0x08, 0x0b,
0x1d, 0x17, 0x1d, 0x1d, 0x1d, 0x1d, 0x1d, 0x1d, 0x1d, 0x1d, 0x25, 0x27, 0x31, 0xf4, 0xf7, 0xcc, 0xad, 0xb1, 0xaf, 0xaf, 0xb1, 0xb1, 0xb1, 0xb1, 0xb3, 0xb1, 0xb3, 0xb1, 0xb1, 0xb3, 0xb1, 0xb3, 0xb1, 0xb1, 0xb3, 0xb1, 0xb5, 0xcd, 0xf4, 0x9d, 0x92, 0x8f, 0x8b, 0x83, 0x83, 0x4d, 0x4d, 0x73, 0x73, 0x73, 0x6f, 0x4b, 0x6f, 0x4b, 0x6f, 0x4b, 0x4c, 0x4b, 0xd4, 0xde, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xe1, 0xd4, 0xe1, 0xd4, 0xd4, 0xe1, 0xd4, 0xe1, 0xd4, 0xe1, 0xd4, 0xd2, 0x57, 0xd2, 0xd3, 0x57, 0xd3, 0x57, 0x57, 0x57, 0x59, 0x55, 0x5f, 0x7b, 0x92, 0xa1, 0xa1, 0x9a, 0x96, 0x9a, 0x96, 0x9a, 0x96, 0x95, 0x95, 0x92, 0x97, 0x92, 0x93, 0x93, 0x93, 0x90, 0x8c, 0x8c, 0x8c, 0x95, 0x88, 0x07, 0xe5, 0xe8, 0xe5, 0x10, 0xe8, 0x10, 0xe8, 0x09, 0x10, 0x0c, 0x10, 0x12, 0x14, 0x12, 0x14, 0x14, 0x14, 0x14, 0x14, 0x14, 0x17, 0x14, 0x1b, 0x89, 0x50, 0x4d, 0x63, 0x69, 0x69, 0x6b, 0x69, 0x6b, 0x69, 0x6b, 0x69, 0x69, 0x63, 0x63, 0x63, 0x60, 0x63, 0x57, 0xc2, 0x53, 0x54, 0x53, 0x54, 0x53, 0x54, 0x53, 0x54, 0x54, 0x54, 0x54, 0x54, 0x54, 0x54, 0x54, 0xc2, 0xde, 0x09, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x07, 0x05, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x0b, 0x04, 0x5b, 0x5d, 0x58, 0xc3, 0xe2, 0x03, 0xe2, 0xe2, 0x03, 0xe2, 0xe2, 0xe3, 0xe3, 0xe3, 0xd5, 0xe1, 0xd2, 0xdf, 0x5f, 0x61, 0x61, 0x5f, 0x61, 0xc4, 0x5f, 0xc3, 0x5f, 0xd4, 0x5f, 0xc3, 0x5f, 0x61, 0x64, 0x65, 0x68, 0x65, 0x00, 0xe0, 0xe1, 0xe1, 0xd4, 0xe1, 0xe0, 0xe1, 0xd4, 0xe1, 0xd4, 0xe1, 0xd4, 0xe3, 0xd4, 0xd2, 0x57, 0xd3, 0x57, 0xd3, 0x57, 0xd3, 0xd3, 0x5a, 0x5a, 0x5a, 0x5a, 0x5a, 0x5a, 0x5a, 0xd3, 0x5a, 0xc5, 0xc4, 0xc4, 0xc4, 0xc3, 0xc3, 0xc3, 0x5f, 0xc3, 0xc3, 0xc3, 0xc3, 0x5f, 0xc3, 0xc3, 0xc3, 0xc3, 0x5f, 0xc3, 0xc3, 0x5f, 0xc3, 0x5f, 0xc3, 0xc4, 0xc4, 0xc4, 0xc3, 0xc4, 0xe1, 0xc3, 0xe1, 0xd4, 0xd4, 0xe1, 0xe0, 0xd4, 0xc3, 0xc3, 0xe1, 0xc3, 0xc3, 0xe1, 0xc3, 0xe1, 0xe1, 0xe1, 0xd4, 0xd4, 0xd4, 0xe0, 0xd3, 0xd4, 0xe0, 0xd3, 0xdf, 0xd4, 0xdf, 0xd3, 0xdf, 0xdf, 0xd3, 0xe0, 0xe0, 0xe1, 0xc3, 0xe1, 0xc3, 0xc3, 0xc3, 0xe1, 0xc3, 0xe1, 0xc4, 0xe1, 0xc4, 0xe1, 0xc4, 0xc3, 0x06, 0x0b, 0x13, 0x16, 0x13, 0x13, 0x0d, 0x13, 0x13, 0x0b, 0x04, 0x08, 0x0a, 0x00, 0x57, 0xd3, 0x5a, 0xd3, 0x5a, 0xd3, 0x5a, 0xd3, 0x5a, 0x57, 0x5a, 0xd4, 0xe3, 0xe4, 0xe4, 0xe3, 0xe3, 0xe3, 0xe3, 0xe3, 0xe3, 0xe3, 0xe3, 0xe3, 0xe4, 0xe3, 0xe4, 0xe3, 0xe1, 0xe1, 0xc3, 0xe1, 0xc4, 0xe1, 0x5f, 0x06, 0x13, 0x0d, 0x13, 0x16, 0x16, 0x16, 0x16, 0x16, 0x19, 0x19, 0x19, 0x13, 0x0f, 0x0a, 0x05, 0x0a, 0x05, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x06, 0x03, 0x09, 0x07, 0x09, 0x09, 0x07, 0x03, 0x00, 0xe2, 0x03, 0xe2, 0xe2, 0x02, 0x0f, 0x0d, 0x0f, 0x0f, 0x0b, 0x0b, 0x0b, 0x0b, 0x04, 0x02, 0x01, 0x06, 0x06, 0x09, 0x0c, 0x0c, 0x10, 0x11, 0xec, 0x1b, 0x15, 0xee, 0x84, 0xd7, 0xd8, 0xd7, 0xd8, 0xd7, 0xd8, 0xd7, 0xf1, 0xd7, 0xd7, 0xd7, 0xd7, 0xee, 0xd7, 0xee, 0x80, 0x15, 0x04, 0x08, 0x04, 0x08, 0x08, 0x08, 0x08, 0x08, 0x08, 0x0b, 0x08,
0x1a, 0x1d, 0x1a, 0x1d, 0x1d, 0x1d, 0x1d, 0x1d, 0x22, 0x1d, 0x22, 0x25, 0x27, 0xf3, 0xda, 0xcc, 0xaf, 0xaf, 0xb1, 0xaf, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xaf, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xcd, 0x20, 0xda, 0xa6, 0xa3, 0xa3, 0xa3, 0x9f, 0x9f, 0x9b, 0x9b, 0x92, 0x8f, 0x8b, 0x83, 0x83, 0x4d, 0x4d, 0x6f, 0x73, 0x4b, 0x4b, 0xd2, 0xd2, 0xd4, 0xd4, 0xe1, 0xd4, 0xe1, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xe1, 0xd4, 0xe1, 0xd4, 0xe1, 0xd4, 0xd2, 0xd2, 0xd3, 0xd2, 0x57, 0x57, 0x57, 0x57, 0x57, 0x55, 0x65, 0x7f, 0x8b, 0x9d, 0xa4, 0xa1, 0x9a, 0x9a, 0x9a, 0x95, 0x9a, 0x95, 0x95, 0x92, 0x92, 0x92, 0x93, 0x92, 0x93, 0x93, 0x8c, 0x8c, 0x8d, 0x8c, 0x95, 0xc9, 0x06, 0xe5, 0xe8, 0xe5, 0x10, 0x09, 0x0c, 0xe8, 0x0c, 0x10, 0x10, 0x11, 0x14, 0x14, 0x12, 0x14, 0x14, 0x12, 0x17, 0x14, 0x17, 0x18, 0x1b, 0x89, 0x89, 0x50, 0x4d, 0x63, 0x69, 0x69, 0x69, 0x69, 0x69, 0x69, 0x69, 0x69, 0x6b, 0x6d, 0x69, 0x69, 0x69, 0x67, 0x63, 0x4a, 0x63, 0x5e, 0x5e, 0x5e, 0x58, 0x5e, 0x58, 0x56, 0x56, 0x54, 0x56, 0x54, 0x54, 0x54, 0x53, 0x00, 0x0a, 0x06, 0x03, 0x06, 0x07, 0x06, 0x07, 0x06, 0x07, 0x07, 0x07, 0x05, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x5f, 0x5d, 0x5d, 0x5d, 0xe1, 0x03, 0x03, 0xe3, 0xe2, 0xe4, 0xe2, 0xe3, 0xe2, 0xe3, 0xe3, 0xd5, 0xd4, 0xd2, 0xc3, 0x5f, 0xd4, 0x5f, 0xc3, 0x61, 0x61, 0x65, 0x68, 0x6a, 0x6e, 0x74, 0x74, 0x79, 0x7f, 0x7f, 0x85, 0x51, 0x66, 0x01, 0x00, 0xe1, 0xe1, 0xc3, 0xd4, 0xe1, 0xe1, 0xe1, 0xe1, 0xd4, 0xe1, 0xd4, 0xe1, 0xe1, 0xd4, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0x5f, 0x61, 0xc5, 0x64, 0xc5, 0x61, 0xc4, 0x61, 0xc3, 0xc4, 0xd4, 0x5f, 0xc3, 0xd4, 0xc3, 0xc3, 0xc3, 0x5f, 0xc3, 0x5f, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0x5a, 0xd4, 0x5a, 0xd4, 0x5a, 0x5a, 0xd4, 0xd4, 0x5a, 0xd4, 0xc3, 0xe3, 0xd4, 0x5f, 0x5f, 0xc4, 0xc3, 0xe1, 0xc4, 0xe1, 0xc4, 0xe1, 0xc4, 0xc5, 0xc4, 0xe1, 0xc4, 0xe1, 0xe1, 0xe1, 0xe1, 0xe1, 0xe1, 0xe1, 0xd4, 0xd4, 0xe1, 0xd3, 0xe1, 0xc3, 0xc4, 0xc3, 0xe1, 0xc3, 0xe1, 0xc3, 0xe1, 0xc4, 0xe1, 0xc3, 0xe1, 0xe1, 0xe1, 0xe1, 0x5f, 0xe2, 0x05, 0x0b, 0x13, 0x16, 0x13, 0x0d, 0x13, 0x0d, 0x08, 0x04, 0x04, 0xe0, 0x55, 0xd3, 0xd3, 0x5a, 0xd3, 0x5a, 0xd3, 0x5a, 0xd3, 0x5a, 0x57, 0x57, 0x5a, 0xd3, 0xe1, 0x03, 0xe4, 0xe4, 0xe3, 0xe3, 0xe3, 0xe3, 0xe4, 0xe3, 0xe3, 0xe4, 0xe3, 0xe3, 0xe4, 0xe4, 0xe3, 0xe1, 0xe1, 0xc3, 0x5f, 0x03, 0x0d, 0x13, 0x0d, 0x13, 0x16, 0x16, 0x19, 0x16, 0x16, 0x16, 0x19, 0x19, 0x13, 0x0d, 0x0f, 0x08, 0x08, 0x05, 0x0a, 0x0a, 0x0a, 0x0e, 0x0a, 0x07, 0x06, 0x07, 0x07, 0x07, 0x06, 0x07, 0x07, 0xe2, 0xe2, 0xe2, 0xe2, 0xe2, 0x0a, 0x0d, 0x0f, 0x0b, 0x0f, 0x0f, 0x0b, 0x08, 0x0b, 0x08, 0x05, 0x02, 0x05, 0x02, 0x02, 0x02, 0x02, 0x06, 0x02, 0x06, 0x06, 0x09, 0x07, 0xd5, 0xd5, 0xe4, 0xe4, 0xe4, 0xe4, 0xe2, 0xe3, 0xe3, 0xe3, 0x03, 0xe2, 0xe3, 0xe2, 0xe2, 0xe2, 0xe3, 0x02, 0x01, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04,
0x1d, 0x1d, 0x1d, 0x1d, 0x1d, 0x1d, 0x1d, 0x1d, 0x1d, 0x22, 0x22, 0x25, 0x27, 0xf2, 0xf4, 0xcc, 0xaa, 0xb1, 0xaf, 0xaf, 0xb1, 0xaf, 0xb1, 0xaf, 0xb1, 0xaf, 0xb1, 0xb1, 0xaf, 0xb1, 0xb1, 0xaf, 0xb3, 0xb1, 0xb1, 0xb3, 0xb3, 0xac, 0x20, 0x24, 0x9c, 0xa1, 0x9b, 0x9f, 0x9f, 0x9b, 0x9f, 0x9f, 0xa2, 0xa3, 0xa2, 0xa3, 0xa2, 0xa2, 0x97, 0x95, 0x51, 0x8b, 0x89, 0x83, 0xe2, 0xdf, 0x5a, 0x57, 0xd4, 0xd4, 0xd4, 0xe1, 0xd4, 0xe1, 0xd4, 0xe1, 0xd4, 0xe1, 0xd4, 0xd4, 0xc3, 0xe1, 0xd3, 0xd3, 0xd2, 0xd3, 0xd2, 0x57, 0x57, 0x57, 0x57, 0x57, 0x6a, 0x7c, 0x8c, 0x95, 0xa1, 0xa1, 0xa1, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x95, 0x95, 0x92, 0x97, 0x92, 0x93, 0x93, 0x93, 0x8c, 0x8c, 0x8c, 0x8d, 0x8d, 0x92, 0xeb, 0x07, 0xe8, 0xe8, 0xe5, 0xe8, 0x09, 0x10, 0x10, 0x09, 0x10, 0xe8, 0x0e, 0x14, 0x14, 0x12, 0x14, 0x17, 0x14, 0x17, 0x17, 0x14, 0x1b, 0x89, 0x4f, 0x89, 0x50, 0x73, 0x63, 0x6b, 0x69, 0x69, 0x69, 0x69, 0x69, 0x69, 0x69, 0x69, 0x69, 0x69, 0x69, 0x69, 0x6f, 0x4b, 0x4c, 0x4c, 0x4b, 0x4c, 0x4b, 0x4b, 0x4b, 0x73, 0x6f, 0x6f, 0x6b, 0x6b, 0x6b, 0x4a, 0x6b, 0x67, 0x05, 0x03, 0x06, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x07, 0x07, 0x07, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0xc3, 0x5c, 0x5b, 0x5d, 0x5d, 0xe3, 0xe2, 0x03, 0xe2, 0xe2, 0x03, 0xe3, 0xe2, 0xe3, 0xe2, 0xe3, 0xe3, 0xd4, 0x66, 0x6a, 0x66, 0x70, 0x70, 0x74, 0x79, 0x7b, 0x7f, 0x85, 0x85, 0x85, 0x85, 0x82, 0x7f, 0x85, 0x82, 0x7e, 0x4f, 0xd5, 0x01, 0x01, 0x00, 0xe2, 0xe0, 0xe1, 0xe1, 0xd4, 0xe1, 0xe1, 0xd4, 0xe1, 0xe1, 0xe1, 0xe1, 0xd4, 0xe1, 0xd4, 0x5a, 0xc3, 0xd4, 0x5f, 0xd4, 0x5f, 0xd4, 0x5f, 0xd4, 0x5f, 0xd4, 0x5b, 0xc4, 0x64, 0xc5, 0xc5, 0x64, 0x64, 0xc5, 0x64, 0x64, 0x64, 0xc4, 0xc4, 0x5f, 0xc3, 0x5f, 0xd4, 0xc3, 0xd3, 0xd3, 0x5a, 0x5a, 0x5a, 0xc3, 0x5f, 0xc3, 0x64, 0x64, 0x65, 0x68, 0x6a, 0x6e, 0x74, 0x77, 0x79, 0x7b, 0x81, 0x88, 0x14, 0x05, 0xe2, 0x5f, 0x5f, 0xc3, 0xe1, 0xc4, 0xe1, 0xc3, 0xe1, 0xc4, 0xc4, 0xc4, 0xc4, 0xc3, 0xc4, 0xe1, 0xe1, 0xe1, 0xe1, 0xe1, 0xe1, 0xe1, 0xe1, 0xc3, 0xe1, 0xc3, 0xc3, 0xc4, 0xc3, 0xc4, 0xc4, 0xe1, 0xc4, 0xe1, 0xc3, 0xe1, 0xc3, 0xd5, 0xc3, 0xd5, 0xe1, 0xc3, 0xe1, 0x00, 0x05, 0x08, 0x13, 0x13, 0x13, 0x0d, 0x0d, 0x04, 0x0a, 0x00, 0x57, 0xd3, 0x57, 0xd3, 0x5a, 0xd3, 0x5a, 0xd3, 0x57, 0xd3, 0x5a, 0xd3, 0x5a, 0x57, 0x57, 0x5a, 0xe1, 0xe3, 0xe4, 0xe4, 0xe4, 0xe4, 0xe4, 0xe4, 0xe4, 0xe3, 0xe4, 0xe4, 0xe4, 0xe4, 0xe4, 0xe4, 0xe4, 0xe4, 0xc3, 0xd5, 0x0f, 0x0d, 0x0d, 0x0d, 0x16, 0x16, 0x16, 0x16, 0x19, 0x16, 0x16, 0x16, 0x13, 0x0d, 0x13, 0x0d, 0x0f, 0x0b, 0x08, 0x0a, 0x0a, 0x0a, 0x0a, 0x06, 0x07, 0x07, 0x06, 0x07, 0x07, 0x09, 0x06, 0x09, 0x03, 0x03, 0xe2, 0xe2, 0x03, 0x0d, 0x0f, 0x0f, 0x0d, 0x0f, 0x0d, 0x0f, 0x0b, 0x0b, 0x08, 0x06, 0x05, 0x06, 0x06, 0x06, 0x06, 0x02, 0x06, 0x06, 0x03, 0x06, 0x06, 0x01, 0x00, 0xd3, 0xe0, 0xe0, 0xe0, 0xe0, 0xe2, 0xe0, 0xe2, 0xe0, 0xe2, 0xe2, 0xe2, 0xe2, 0xe2, 0x03, 0xe3, 0x03, 0x01, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04,
0x13, 0x1d, 0x1a, 0x1d, 0x1d, 0x1d, 0x1d, 0x1d, 0x22, 0x1d, 0x22, 0x25, 0x27, 0xf2, 0xf3, 0xcb, 0xa7, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xb1, 0xaf, 0xb1, 0xaf, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb3, 0xae, 0x24, 0x20, 0x29, 0x52, 0xa1, 0x9b, 0x9b, 0x9b, 0x9f, 0x9b, 0x9b, 0x52, 0x9b, 0x99, 0x9b, 0x52, 0x52, 0x9f, 0xa2, 0xa2, 0xa2, 0xa9, 0xcc, 0x12, 0x0a, 0xe4, 0xd3, 0x5a, 0x57, 0xd4, 0xd4, 0xd4, 0xd4, 0xe1, 0xd4, 0xe1, 0xd4, 0xe1, 0xd4, 0xe1, 0xc3, 0xd3, 0xd2, 0xd2, 0xd3, 0xd2, 0x57, 0x57, 0x55, 0x5a, 0x72, 0x79, 0x85, 0x95, 0x9d, 0xa1, 0xa1, 0xa1, 0x9a, 0x9d, 0x9a, 0x9a, 0x9a, 0x95, 0x99, 0x92, 0x93, 0x92, 0x93, 0x93, 0x8c, 0x8d, 0x8c, 0x87, 0x8d, 0x92, 0x8d, 0xe5, 0x07, 0xe5, 0xe5, 0xe8, 0xe8, 0x09, 0x0c, 0x10, 0x0c, 0x10, 0x10, 0x12, 0x14, 0x14, 0x17, 0x14, 0x17, 0x17, 0x17, 0x18, 0xee, 0x89, 0x4f, 0x89, 0x89, 0x50, 0x6f, 0x63, 0x69, 0x69, 0x69, 0x69, 0x69, 0x69, 0x69, 0x69, 0x69, 0x69, 0x69, 0x69, 0x69, 0x6b, 0x6f, 0x4b, 0x73, 0x73, 0x73, 0x4b, 0x73, 0x4b, 0x4b, 0x4b, 0x4b, 0x4b, 0x4b, 0x4d, 0x4c, 0x4c, 0x6d, 0x02, 0x06, 0x06, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x06, 0x07, 0x07, 0x04, 0x04, 0x04, 0x04, 0x04, 0x0b, 0x04, 0xc3, 0x5d, 0x5d, 0x5d, 0x5d, 0x5d, 0x03, 0xe2, 0x03, 0xe3, 0xe2, 0xe4, 0xe2, 0xe3, 0xe3, 0xe1, 0xe3, 0xc3, 0x66, 0x87, 0x85, 0x7f, 0x81, 0x7f, 0x7b, 0x7f, 0x7f, 0x7b, 0x7f, 0x7f, 0x7f, 0x7b, 0x7f, 0x7f, 0x82, 0x7e, 0x4e, 0x4f, 0xe2, 0x01, 0x01, 0x01, 0x02, 0x02, 0xe2, 0xe1, 0xd4, 0xc3, 0xd4, 0xe1, 0xd4, 0xe1, 0xc3, 0xe1, 0xd4, 0xe1, 0xd4, 0xc3, 0x5a, 0xd4, 0x5f, 0xd4, 0x5f, 0xd4, 0x5f, 0xd4, 0x5f, 0x5f, 0x5f, 0x64, 0xc5, 0x64, 0xc5, 0x64, 0xc5, 0x64, 0x64, 0x64, 0x68, 0x64, 0x65, 0xc5, 0x61, 0xc4, 0x61, 0x6e, 0x6e, 0x72, 0x74, 0x77, 0x7b, 0x7c, 0x85, 0x85, 0x85, 0x8c, 0x8c, 0x8d, 0x8c, 0x93, 0x8d, 0x93, 0x8d, 0x51, 0xca, 0x1f, 0x19, 0x16, 0x08, 0xe2, 0xc3, 0x5b, 0xc3, 0xe1, 0xc3, 0xe1, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc3, 0xc4, 0xc3, 0xc4, 0xe1, 0xe1, 0xe1, 0xe1, 0xe1, 0xe1, 0xe1, 0xe3, 0xe1, 0xc3, 0xc4, 0xc4, 0xc3, 0xc4, 0xc3, 0xc4, 0xc4, 0xc4, 0xc3, 0xe1, 0xc3, 0xe3, 0xe1, 0xd5, 0xe1, 0xe3, 0xe2, 0x01, 0x02, 0x08, 0x13, 0x13, 0x0d, 0x08, 0x05, 0xe2, 0x55, 0xd3, 0xd3, 0x5a, 0xd3, 0x5a, 0xd3, 0x57, 0x5a, 0x57, 0xd3, 0x57, 0x57, 0x57, 0x57, 0x57, 0x57, 0xd3, 0xd4, 0xe3, 0xe0, 0xe1, 0xe3, 0xe2, 0xe3, 0xe2, 0xe3, 0xe2, 0xe3, 0xe2, 0xe3, 0xe2, 0xe3, 0x03, 0xe2, 0xd4, 0x0a, 0x13, 0x13, 0x0d, 0x0d, 0x16, 0x19, 0x16, 0x16, 0x16, 0x16, 0x19, 0x13, 0x0d, 0x0d, 0x13, 0x0d, 0x13, 0x0d, 0x0d, 0x08, 0x08, 0x0a, 0x09, 0x07, 0x07, 0x07, 0x07, 0x09, 0x07, 0x09, 0x07, 0x09, 0x09, 0x02, 0xe2, 0xe2, 0x0a, 0x13, 0x0b, 0x0f, 0x0d, 0x0f, 0x0d, 0x0f, 0x0f, 0x0b, 0x08, 0x06, 0x06, 0x06, 0x06, 0x07, 0x07, 0x07, 0x07, 0x07, 0x07, 0x09, 0x0a, 0x08, 0x02, 0xd4, 0xe1, 0xe2, 0xe2, 0xe2, 0xe2, 0xe2, 0xe2, 0x03, 0xe2, 0x03, 0xe2, 0x03, 0xe2, 0x03, 0xe2, 0xe4, 0x02, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04,
0x27, 0x13, 0x1d, 0x1d, 0x1d, 0x1d, 0x1d, 0x1d, 0x1d, 0x22, 0x22, 0x22, 0x27, 0xf2, 0xf4, 0xcb, 0xa3, 0xaf, 0xad, 0xaf, 0xaf, 0xaf, 0xb1, 0xad, 0xb1, 0xaf, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb3, 0xae, 0x24, 0x24, 0x2b, 0xf2, 0x9f, 0x52, 0x9f, 0x9b, 0x9b, 0x9b, 0x9f, 0x9b, 0x52, 0x9b, 0x99, 0x52, 0x52, 0x99, 0x99, 0x99, 0x9a, 0x9a, 0xa9, 0xf3, 0x18, 0x1a, 0x15, 0x09, 0x03, 0xe1, 0x5a, 0x5a, 0xd4, 0xd4, 0xc3, 0xd4, 0xe1, 0xd4, 0xd4, 0xc3, 0xd4, 0xc3, 0xdf, 0x57, 0xd2, 0xd3, 0x57, 0x57, 0x55, 0xc5, 0xc9, 0x77, 0x85, 0x8d, 0x9a, 0x9d, 0xa6, 0xa1, 0x9d, 0x9d, 0x9d, 0x9a, 0x9a, 0x9a, 0x95, 0x95, 0x97, 0x97, 0x93, 0x93, 0x93, 0x87, 0x8d, 0x8c, 0x8d, 0x87, 0x95, 0x82, 0x07, 0x07, 0xe8, 0xe5, 0xe8, 0xe8, 0x10, 0x10, 0x10, 0x0c, 0xe8, 0x11, 0x14, 0x14, 0x17, 0x12, 0x17, 0x17, 0x1a, 0x14, 0xee, 0x89, 0x89, 0x83, 0x89, 0x50, 0x89, 0x69, 0x69, 0x69, 0x69, 0x69, 0x69, 0x69, 0x69, 0x69, 0x69, 0x69, 0x69, 0x69, 0x6b, 0x6b, 0x6b, 0x6f, 0x4b, 0x6f, 0x4b, 0x6f, 0x4b, 0x6f, 0x73, 0x6f, 0x73, 0x73, 0x6f, 0x4b, 0x6f, 0x4d, 0x4e, 0x6c, 0xe2, 0x03, 0x07, 0x06, 0x06, 0x07, 0x06, 0x07, 0x06, 0x07, 0x07, 0x06, 0x04, 0x04, 0x04, 0x04, 0x04, 0x0b, 0xe1, 0x5c, 0x5d, 0x5b, 0x5d, 0x5d, 0x5f, 0xe2, 0x03, 0xe2, 0xe2, 0x03, 0xe3, 0xe3, 0xe3, 0xe3, 0xe4, 0xc4, 0x55, 0x62, 0x85, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7f, 0x7f, 0x7b, 0x7f, 0x7f, 0x7f, 0x7f, 0x82, 0x81, 0x4d, 0x4e, 0x4e, 0xe2, 0x01, 0x01, 0x02, 0x01, 0x01, 0x02, 0x00, 0xe2, 0xe1, 0xc3, 0xc3, 0xc3, 0xe1, 0xc3, 0xe1, 0xc3, 0xe1, 0xc3, 0xe1, 0xc3, 0xd4, 0x5f, 0xd4, 0x5f, 0xd4, 0x5f, 0xd4, 0x5b, 0xc3, 0x64, 0xc5, 0x64, 0xc5, 0x64, 0xc5, 0x64, 0xc5, 0x64, 0xc5, 0x64, 0x64, 0x68, 0x68, 0x68, 0x5d, 0x6c, 0x9f, 0x93, 0x8c, 0x8c, 0x8c, 0x8c, 0x8c, 0x85, 0x8c, 0x85, 0x8c, 0x85, 0x8c, 0x85, 0x85, 0x85, 0x85, 0x8b, 0xf1, 0x1f, 0x19, 0x13, 0x19, 0x16, 0x0f, 0x03, 0xe1, 0x5f, 0xc3, 0xd5, 0xe1, 0xc4, 0xc3, 0xc4, 0xc3, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc3, 0xc3, 0xe1, 0xe1, 0xe1, 0xe1, 0xe1, 0xe1, 0xc4, 0xc4, 0xc3, 0xc4, 0xc3, 0xd5, 0xc3, 0xc4, 0xc3, 0xc3, 0xc3, 0xe1, 0xe1, 0xe0, 0xe0, 0xe0, 0xdf, 0xe0, 0xe2, 0x01, 0x00, 0x02, 0x08, 0x0b, 0x0d, 0x04, 0xe2, 0xd2, 0x57, 0xd3, 0x57, 0xd3, 0x57, 0xd3, 0x57, 0x57, 0xd3, 0x5a, 0xd3, 0x5a, 0xd4, 0xd4, 0x5a, 0xc3, 0x5a, 0x5f, 0xe2, 0xe0, 0xde, 0xc2, 0xde, 0xde, 0xdf, 0xde, 0xde, 0xde, 0xde, 0xdf, 0xde, 0xde, 0xdf, 0xde, 0xd2, 0x05, 0x19, 0x0d, 0x0d, 0x0d, 0x0d, 0x16, 0x16, 0x16, 0x16, 0x16, 0x19, 0x0d, 0x0d, 0x0d, 0x0d, 0x13, 0x0d, 0x0d, 0x13, 0x13, 0x0d, 0x0f, 0x0b, 0x09, 0x07, 0x07, 0x09, 0x07, 0x07, 0x07, 0x07, 0x07, 0x07, 0x07, 0x07, 0xe2, 0x03, 0x0d, 0x0f, 0x0f, 0x0b, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0f, 0x08, 0x09, 0x06, 0x0c, 0x05, 0x09, 0x06, 0x09, 0x07, 0x09, 0x09, 0x09, 0x0a, 0x0d, 0x02, 0xe2, 0xe1, 0xe2, 0xe2, 0xe2, 0xe2, 0xe2, 0xe2, 0xe2, 0x03, 0xe3, 0x03, 0x03, 0xe2, 0x03, 0xe2, 0xe4, 0x03, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04,
0xa0, 0x27, 0x16, 0x1d, 0x1a, 0x1d, 0x1d, 0x1d, 0x22, 0x1d, 0x22, 0x25, 0x25, 0xf2, 0xf3, 0xcb, 0x9c, 0xad, 0xaf, 0xaf, 0xb1, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xb1, 0xb1, 0xb1, 0xaf, 0xb1, 0xb1, 0xb3, 0xb1, 0xb1, 0xb1, 0xb1, 0xb2, 0x24, 0x20, 0x29, 0x20, 0xf4, 0x9d, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x52, 0x52, 0x99, 0x9b, 0x99, 0x99, 0x99, 0x99, 0x95, 0xa1, 0xaf, 0x1b, 0x0f, 0x1d, 0x1d, 0x1d, 0x12, 0x10, 0xe2, 0xd4, 0x5a, 0x5a, 0xd4, 0xd4, 0xd4, 0xe1, 0xd4, 0xd4, 0xc3, 0xd4, 0xd2, 0x57, 0xd2, 0x57, 0xd2, 0x57, 0xc6, 0xc8, 0xc9, 0x82, 0x8a, 0x95, 0x9d, 0xa1, 0xa4, 0xa1, 0x9d, 0x9a, 0x9d, 0x9d, 0x99, 0x9a, 0x97, 0x95, 0x93, 0x97, 0x93, 0x8d, 0x8c, 0x8d, 0x8d, 0x8c, 0x8d, 0x8d, 0x96, 0xc8, 0x07, 0xe5, 0xe8, 0xe5, 0xe5, 0x09, 0xe8, 0x0c, 0x10, 0x10, 0xe8, 0x11, 0x14, 0x14, 0x17, 0x12, 0x1a, 0x17, 0x18, 0xee, 0x4f, 0x89, 0x89, 0x83, 0x89, 0x50, 0x83, 0x69, 0x69, 0x69, 0x6b, 0x69, 0x69, 0x69, 0x69, 0x69, 0x69, 0x69, 0x69, 0x6b, 0x6b, 0x6b, 0x6b, 0x4b, 0x4b, 0x4b, 0x6f, 0x4b, 0x6f, 0x4b, 0x6f, 0x4b, 0x6f, 0x4b, 0x6f, 0x4b, 0x73, 0x4e, 0x4c, 0x6c, 0x00, 0xe3, 0xe4, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x07, 0x07, 0x05, 0x04, 0x04, 0x04, 0x04, 0x04, 0xe1, 0x5e, 0x5d, 0x5d, 0x5f, 0x5d, 0x5d, 0x5f, 0x03, 0xe3, 0x03, 0xe3, 0x03, 0xe3, 0xe2, 0xe3, 0xc5, 0xc4, 0xd2, 0x54, 0x60, 0x85, 0x7f, 0x7b, 0x7b, 0x7b, 0x7f, 0x7b, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7e, 0x4e, 0x4d, 0x4f, 0x78, 0x01, 0x01, 0x01, 0x02, 0x01, 0x01, 0x01, 0x01, 0x02, 0x02, 0xe0, 0xc3, 0xe1, 0xc3, 0xc3, 0xd4, 0xc3, 0xe1, 0xc3, 0xc3, 0xc3, 0xd4, 0xc3, 0x5a, 0x5f, 0x5a, 0x5f, 0x5f, 0x5b, 0x64, 0xc5, 0x64, 0xc5, 0x64, 0xc5, 0x64, 0x64, 0xc5, 0x64, 0x65, 0x68, 0x68, 0x68, 0xd6, 0x58, 0x54, 0x67, 0x93, 0x8c, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x8c, 0x85, 0x87, 0x8b, 0xef, 0x1f, 0x1c, 0x16, 0x13, 0x16, 0x16, 0x19, 0x0d, 0x06, 0xe3, 0x5a, 0x5f, 0xc4, 0xc4, 0xc4, 0xc4, 0xc3, 0xc4, 0xc3, 0xc3, 0xc4, 0xc3, 0xc4, 0xc4, 0xc3, 0xc3, 0xe1, 0xe1, 0xe2, 0xe1, 0xe1, 0xc3, 0xe0, 0xd4, 0xdf, 0xd4, 0xe0, 0xd4, 0xe1, 0xe1, 0xc4, 0xc5, 0x65, 0x68, 0x6c, 0x70, 0x76, 0x7e, 0xea, 0x01, 0xe2, 0x00, 0x02, 0x05, 0x0b, 0x02, 0x57, 0x57, 0x57, 0xd3, 0x5a, 0xd3, 0x5a, 0xd4, 0x5a, 0xc3, 0xd4, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0x5f, 0xe1, 0x0c, 0x00, 0xde, 0xc2, 0xde, 0xde, 0xd2, 0xde, 0xd2, 0xde, 0xde, 0xde, 0xde, 0xdf, 0xde, 0xc2, 0x05, 0x1c, 0x16, 0x0d, 0x0d, 0x0d, 0x0d, 0x16, 0x19, 0x16, 0x16, 0x19, 0x13, 0x0d, 0x13, 0x0d, 0x13, 0x0d, 0x13, 0x0d, 0x0d, 0x0d, 0x0d, 0x13, 0x0d, 0x0d, 0x0b, 0x0b, 0x0b, 0x08, 0x0f, 0x08, 0x08, 0x08, 0x0a, 0x0e, 0x0a, 0x05, 0x0f, 0x0d, 0x0b, 0x0f, 0x0b, 0x0f, 0x0b, 0x0d, 0x0d, 0x0d, 0x0d, 0x0a, 0x09, 0x06, 0x0c, 0x06, 0x0c, 0x06, 0x09, 0x06, 0x09, 0x0c, 0x07, 0x0e, 0x0d, 0x04, 0xe2, 0xe1, 0xe3, 0xe2, 0xe3, 0x03, 0xe3, 0x03, 0xe2, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0xe3, 0x05, 0x04, 0x04, 0x04, 0x04,
0xcc, 0x9e, 0x27, 0x18, 0x1d, 0x1d, 0x1d, 0x1d, 0x1d, 0x22, 0x22, 0x22, 0x27, 0x27, 0xf3, 0xf4, 0x9c, 0xad, 0xaf, 0xaf, 0xaf, 0xaf, 0xb1, 0xaf, 0xb1, 0xb1, 0xaf, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xae, 0x24, 0x24, 0x24, 0x2c, 0x24, 0xcb, 0xa1, 0x9b, 0x9b, 0x52, 0x52, 0x9b, 0x52, 0x9b, 0x99, 0x52, 0x99, 0x52, 0x99, 0x9d, 0x99, 0x9a, 0x9a, 0xa9, 0xaa, 0x1a, 0x12, 0x1a, 0x1a, 0x1d, 0x1d, 0x1d, 0x15, 0x0c, 0x03, 0xe1, 0x5a, 0x5a, 0xd4, 0xd4, 0xe1, 0xd4, 0xe1, 0xd4, 0xd2, 0x57, 0xd2, 0x55, 0xd4, 0xeb, 0xc7, 0xc9, 0x82, 0x8a, 0x93, 0x95, 0x9d, 0xa1, 0xa4, 0xa1, 0x9d, 0x9a, 0x9d, 0x9a, 0x9a, 0x99, 0x99, 0x92, 0x97, 0x93, 0x93, 0x8d, 0x8c, 0x87, 0x8d, 0x87, 0x8d, 0x8f, 0x51, 0xe7, 0x07, 0xe5, 0xe8, 0xe5, 0xe8, 0xe5, 0x10, 0x10, 0x10, 0x10, 0xe8, 0x15, 0x14, 0x17, 0x17, 0x17, 0x1a, 0x14, 0xee, 0x89, 0x89, 0x83, 0x89, 0x89, 0x83, 0x50, 0x83, 0x69, 0x69, 0x69, 0x69, 0x69, 0x69, 0x69, 0x69, 0x69, 0x69, 0x69, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x73, 0x4b, 0x6f, 0x4b, 0x6f, 0x4b, 0x6f, 0x4b, 0x6f, 0x4b, 0x6f, 0x73, 0x4d, 0x4d, 0x4d, 0x4e, 0x6a, 0x00, 0xe4, 0xe3, 0x03, 0x07, 0x06, 0x06, 0x07, 0x06, 0x07, 0x09, 0x04, 0x04, 0x04, 0x04, 0x0b, 0xe2, 0x5e, 0x5d, 0x5d, 0x5f, 0x5d, 0x5f, 0x5d, 0xc4, 0x03, 0xe2, 0xe4, 0xe2, 0xe3, 0xe3, 0xe3, 0xe6, 0xc4, 0x57, 0x57, 0x54, 0x60, 0x7f, 0x85, 0x7b, 0x7f, 0x7b, 0x7f, 0x7f, 0x7f, 0x7b, 0x7f, 0x7f, 0x81, 0x7c, 0x81, 0x4e, 0x4d, 0x4e, 0x4e, 0x78, 0x01, 0x01, 0x02, 0x01, 0x02, 0x01, 0x02, 0x01, 0x01, 0x01, 0x00, 0xd4, 0xe1, 0xe1, 0xe1, 0xc3, 0xe1, 0xc3, 0xc3, 0xc3, 0xc4, 0xc3, 0xc3, 0x5f, 0xd4, 0x5f, 0x5a, 0x5f, 0xc4, 0x64, 0xc5, 0x64, 0xc5, 0x64, 0xc5, 0x65, 0x68, 0x68, 0x68, 0x68, 0x68, 0x68, 0x6e, 0x61, 0x54, 0x54, 0x63, 0x93, 0x8c, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x8c, 0x85, 0x8c, 0x85, 0x8c, 0x85, 0x8b, 0x22, 0x1c, 0x1f, 0x16, 0x13, 0x13, 0x16, 0x13, 0x16, 0x16, 0x13, 0x0a, 0x03, 0xc3, 0xc4, 0xe1, 0xc3, 0xd4, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc4, 0xc4, 0xc3, 0xd5, 0xc3, 0xc5, 0x65, 0x65, 0x6a, 0x70, 0x75, 0x76, 0x7a, 0x7e, 0x86, 0x89, 0x50, 0x50, 0x50, 0x50, 0x50, 0x50, 0x89, 0x11, 0x04, 0x05, 0xe2, 0x00, 0x02, 0x02, 0x57, 0xd4, 0x5a, 0xc3, 0xd4, 0xc4, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xd4, 0xc3, 0x07, 0x0c, 0x02, 0xde, 0xc2, 0xde, 0xdf, 0xde, 0xde, 0xde, 0xdf, 0xde, 0xdf, 0xde, 0xdf, 0xc2, 0x05, 0x1c, 0x16, 0x16, 0x13, 0x0d, 0x0d, 0x13, 0x16, 0x19, 0x16, 0x19, 0x13, 0x0d, 0x0d, 0x0d, 0x13, 0x0d, 0x13, 0x0d, 0x13, 0x0d, 0x13, 0x0d, 0x13, 0x13, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x13, 0x13, 0x13, 0x13, 0x0d, 0x13, 0x13, 0x16, 0x19, 0x19, 0x16, 0x13, 0x13, 0x0d, 0x0d, 0x0d, 0x0b, 0x0d, 0x0d, 0x08, 0x07, 0x09, 0x0c, 0x06, 0x0c, 0x0a, 0x0c, 0x0c, 0x06, 0x0c, 0x09, 0x0e, 0x0d, 0x0b, 0x02, 0xe1, 0xe1, 0xe2, 0xe3, 0x03, 0xe2, 0x03, 0x03, 0x03, 0xe3, 0x03, 0x03, 0xe2, 0x03, 0x03, 0x03, 0xe4, 0x06, 0x04, 0x04, 0x04,
0xda, 0x9e, 0x9e, 0x27, 0x16, 0x1d, 0x1d, 0x1d, 0x22, 0x1d, 0x22, 0x22, 0x25, 0x27, 0xf3, 0xf4, 0x98, 0xa9, 0xb1, 0xad, 0xb1, 0xaf, 0xaf, 0xaf, 0xaf, 0xb1, 0xaf, 0xb1, 0xaf, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb2, 0x29, 0x20, 0x24, 0x29, 0x2c, 0x29, 0x98, 0x9d, 0x9b, 0x9b, 0x9b, 0x9b, 0x52, 0x52, 0x52, 0x52, 0x99, 0x99, 0x9a, 0x99, 0x9d, 0x99, 0x9a, 0xa2, 0xad, 0xcb, 0x0f, 0x17, 0x15, 0x17, 0x1a, 0x17, 0x1d, 0x1d, 0x1d, 0x15, 0x0c, 0x03, 0xe1, 0xd3, 0x5b, 0xd4, 0xd4, 0xe1, 0xd4, 0xd2, 0xd3, 0xd2, 0xe3, 0xed, 0xeb, 0xc8, 0x80, 0x88, 0x8a, 0x93, 0x9d, 0xa1, 0xa1, 0xa4, 0xa1, 0x9a, 0x9d, 0x9a, 0x9a, 0x99, 0x99, 0x97, 0x97, 0x93, 0x93, 0x87, 0x8d, 0x8d, 0x8d, 0x8d, 0x8d, 0x87, 0x51, 0x8d, 0xe5, 0x07, 0xe5, 0xe8, 0xe5, 0xe8, 0xe5, 0xe8, 0x10, 0x10, 0xe8, 0xec, 0x12, 0x17, 0x17, 0x17, 0x1a, 0x13, 0xd7, 0x4f, 0x83, 0x89, 0x83, 0x89, 0x89, 0x89, 0x50, 0x4d, 0x63, 0x69, 0x69, 0x69, 0x69, 0x69, 0x69, 0x69, 0x6c, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x4b, 0x4b, 0x6f, 0x4b, 0x6f, 0x4b, 0x6f, 0x4b, 0x6f, 0x73, 0x73, 0x73, 0x4d, 0x4d, 0x4c, 0x4e, 0x68, 0x00, 0xe3, 0xd5, 0xe4, 0x03, 0x07, 0x06, 0x06, 0x06, 0x07, 0x07, 0x04, 0x0b, 0x04, 0x0b, 0xe2, 0x5e, 0x5d, 0x5d, 0x5d, 0x5d, 0x5d, 0x5d, 0x5d, 0xe1, 0x03, 0xe3, 0x03, 0xe3, 0x03, 0xd5, 0xe4, 0xc4, 0x57, 0x5a, 0x57, 0x54, 0x60, 0x7b, 0x85, 0x7b, 0x7b, 0x7f, 0x7b, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x82, 0x7e, 0x4d, 0x4e, 0x4d, 0x4d, 0x4f, 0x6c, 0x01, 0x01, 0x02, 0x01, 0x02, 0x01, 0x01, 0x02, 0x04, 0x00, 0xc2, 0xe0, 0xe2, 0xe0, 0xe0, 0xe1, 0xe0, 0xe1, 0xe1, 0xd4, 0xc3, 0xc3, 0xc3, 0x5f, 0x5f, 0x5f, 0x5b, 0xc4, 0x64, 0xc5, 0xc5, 0x64, 0x64, 0x68, 0x68, 0x68, 0x68, 0x68, 0x68, 0x68, 0x68, 0xc7, 0x62, 0x56, 0x56, 0x54, 0x60, 0x90, 0x8c, 0x85, 0x85, 0x85, 0x85, 0x85, 0x8c, 0x85, 0x85, 0x85, 0x8c, 0x85, 0x8b, 0x82, 0x1e, 0x1f, 0x1c, 0x1c, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x16, 0x16, 0xe4, 0x67, 0x75, 0x6a, 0x6c, 0x70, 0x6c, 0x70, 0x6c, 0x75, 0x6c, 0x75, 0x6d, 0x75, 0x6d, 0x75, 0x76, 0x75, 0x76, 0x78, 0x50, 0x91, 0x50, 0x50, 0x91, 0x50, 0x91, 0x50, 0x50, 0x89, 0x50, 0x89, 0x89, 0x89, 0x89, 0x89, 0x89, 0x89, 0x12, 0x0d, 0x0a, 0x06, 0xe2, 0xe2, 0x03, 0xe3, 0xe1, 0xc3, 0xd4, 0x5f, 0xd4, 0xc3, 0xc3, 0xd4, 0xc3, 0xc3, 0xc3, 0xc3, 0xd4, 0xc3, 0xc3, 0xc3, 0xc3, 0x5b, 0x03, 0x06, 0x0c, 0x07, 0x00, 0xc2, 0xd2, 0xde, 0xdf, 0xde, 0xde, 0xde, 0xde, 0xdf, 0xde, 0xc2, 0x02, 0x1c, 0x19, 0x16, 0x16, 0x16, 0x0d, 0x0d, 0x13, 0x16, 0x19, 0x19, 0x13, 0x0d, 0x13, 0x0d, 0x13, 0x0d, 0x13, 0x13, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x13, 0x13, 0x0b, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x13, 0x0d, 0x16, 0x19, 0x19, 0x1c, 0x1c, 0x1c, 0x19, 0x16, 0x16, 0x13, 0x13, 0x13, 0x0d, 0x08, 0x07, 0x06, 0x09, 0x06, 0x09, 0x0c, 0x0a, 0x0c, 0x0a, 0x0c, 0x09, 0x0a, 0x0d, 0x0d, 0x05, 0xe2, 0xe3, 0xe2, 0xe3, 0x03, 0xe3, 0x03, 0xe2, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0xe4, 0x03, 0x05, 0x04,
0xcc, 0xda, 0x9e, 0x9e, 0x27, 0x18, 0x1d, 0x1d, 0x1d, 0x22, 0x22, 0x22, 0x25, 0x27, 0xf2, 0xf4, 0x94, 0xaa, 0xaf, 0xaf, 0xaf, 0xb1, 0xaf, 0xb1, 0xaf, 0xb1, 0xaf, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb3, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0x29, 0x20, 0x24, 0x29, 0x29, 0x29, 0x2d, 0x9c, 0x9d, 0x9b, 0x9b, 0x52, 0x99, 0x9b, 0x99, 0x52, 0x99, 0x9d, 0x99, 0x9d, 0x99, 0x9a, 0x9a, 0x52, 0xa7, 0xad, 0xd9, 0x0d, 0x1a, 0x1a, 0x17, 0x1a, 0x1a, 0x17, 0x1a, 0x1d, 0x1d, 0x1d, 0x12, 0x11, 0x03, 0xe1, 0x5a, 0x5a, 0xd4, 0xd3, 0xd2, 0xd2, 0xe6, 0xe9, 0xeb, 0xd6, 0xd7, 0x84, 0x8e, 0x90, 0x93, 0x9d, 0xa1, 0xa4, 0xa4, 0x9d, 0x9d, 0x9d, 0x9a, 0x9d, 0x99, 0x99, 0x97, 0x97, 0x93, 0x8d, 0x8c, 0x8d, 0x87, 0x8d, 0x87, 0x8f, 0x86, 0x96, 0x7c, 0x07, 0xe5, 0xe5, 0xe8, 0xe5, 0xe8, 0xe7, 0xe8, 0x10, 0xe8, 0xe9, 0xec, 0x14, 0x17, 0x1a, 0x17, 0x14, 0xd7, 0x89, 0x89, 0x83, 0x89, 0x83, 0x89, 0x83, 0x89, 0x50, 0x78, 0x63, 0x69, 0x69, 0x69, 0x69, 0x69, 0x69, 0x69, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x4b, 0x4b, 0x6f, 0x4b, 0x6f, 0x4b, 0x6f, 0x4b, 0x6f, 0x4b, 0x4d, 0x4d, 0x4d, 0x4d, 0x4c, 0x4e, 0x66, 0x00, 0xe4, 0xe3, 0xd5, 0xe3, 0x03, 0x07, 0x06, 0x06, 0x09, 0x07, 0x04, 0x04, 0x0b, 0xe2, 0x5e, 0x5d, 0x5f, 0x5d, 0x5f, 0x5d, 0x5f, 0x5d, 0x5d, 0xe3, 0x03, 0xe3, 0xe3, 0xe4, 0xe3, 0xe6, 0xc3, 0x57, 0x57, 0x5a, 0x57, 0x54, 0x5d, 0x7b, 0x85, 0x7f, 0x7b, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7e, 0x4e, 0x4d, 0x4e, 0x4d, 0x4e, 0x4e, 0x70, 0x01, 0x01, 0x02, 0x01, 0x02, 0x01, 0x01, 0x01, 0x00, 0x53, 0xc2, 0xe0, 0xe2, 0xe0, 0xe0, 0xe2, 0xe0, 0xe0, 0xe0, 0xe1, 0xe1, 0xe1, 0xe1, 0xc3, 0xc3, 0x5f, 0x5f, 0x64, 0x68, 0x65, 0x68, 0x68, 0x68, 0x68, 0x68, 0x68, 0x68, 0x68, 0x68, 0x68, 0x72, 0x62, 0x56, 0x56, 0x56, 0x56, 0x5c, 0x8c, 0x93, 0x85, 0x85, 0x8a, 0x85, 0x85, 0x85, 0x8c, 0x85, 0x85, 0x8c, 0x8b, 0x84, 0x1c, 0x1c, 0x1c, 0x1c, 0x19, 0x13, 0x13, 0x13, 0x13, 0x14, 0x14, 0x12, 0x17, 0xc5, 0x5c, 0x76, 0x81, 0x7a, 0x7a, 0x7a, 0x7a, 0x78, 0x7a, 0x7a, 0x78, 0x7a, 0x76, 0x78, 0x7a, 0x76, 0x78, 0x76, 0x4b, 0x4c, 0x51, 0x8b, 0x50, 0x8b, 0x89, 0x8b, 0x89, 0x8b, 0x89, 0x8b, 0x89, 0x8b, 0x89, 0x8b, 0x89, 0x83, 0x89, 0x83, 0x12, 0x0d, 0x0d, 0x08, 0x06, 0x02, 0xe2, 0xe2, 0xe2, 0xe3, 0xe1, 0xe1, 0x5f, 0xd4, 0x5f, 0xd4, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xd4, 0x5f, 0xe2, 0x0c, 0x06, 0x09, 0x09, 0x00, 0xd2, 0xde, 0xde, 0xde, 0xdf, 0xde, 0xdf, 0xde, 0xdf, 0xc2, 0x02, 0x1c, 0x16, 0x16, 0x16, 0x16, 0x16, 0x13, 0x0d, 0x13, 0x19, 0x19, 0x13, 0x0d, 0x0d, 0x0d, 0x0d, 0x13, 0x0d, 0x13, 0x13, 0x0d, 0x13, 0x0d, 0x13, 0x0d, 0x16, 0x0d, 0x0d, 0x0b, 0x0d, 0x0d, 0x0d, 0x0d, 0x13, 0x0d, 0x0d, 0x13, 0x16, 0x19, 0x19, 0x19, 0x19, 0x19, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x19, 0x19, 0x19, 0x13, 0x12, 0x0e, 0x0e, 0x0a, 0x0a, 0x0c, 0x06, 0x0c, 0x06, 0x0c, 0x09, 0x08, 0x0d, 0x0d, 0x08, 0x02, 0xe1, 0xe3, 0x03, 0xe2, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0xe4, 0x03, 0x06,
0xcc, 0xcb, 0xcc, 0xcc, 0xa0, 0x27, 0x18, 0x1d, 0x22, 0x1d, 0x22, 0x22, 0x25, 0x27, 0xf2, 0xf4, 0x94, 0xa7, 0xaf, 0xaf, 0xaf, 0xaf, 0xb1, 0xaf, 0xb1, 0xaf, 0xb1, 0xaf, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb3, 0xb1, 0xb3, 0x25, 0x20, 0x24, 0x24, 0x29, 0x2d, 0x29, 0xf5, 0x9b, 0x9d, 0x9b, 0x9b, 0x99, 0x52, 0x99, 0x52, 0x99, 0x99, 0x9d, 0x99, 0x9a, 0x99, 0x9a, 0x9d, 0xa3, 0xa9, 0xaa, 0xef, 0x0d, 0x1a, 0x17, 0x1a, 0x17, 0x1a, 0x17, 0x17, 0x17, 0x17, 0x17, 0x1e, 0x1d, 0x12, 0x0c, 0x07, 0xe3, 0x5a, 0x55, 0xd3, 0xe8, 0xe9, 0xea, 0xed, 0xd6, 0xd8, 0x84, 0x8e, 0x90, 0x9b, 0x52, 0xa1, 0xa4, 0xa4, 0x9d, 0x9a, 0x9d, 0x9d, 0x99, 0x99, 0x97, 0x97, 0x93, 0x8d, 0x8d, 0x8d, 0x8d, 0x8d, 0x8d, 0x8d, 0x86, 0x8f, 0x91, 0xc7, 0x07, 0xe5, 0xe7, 0xe5, 0xe8, 0xe5, 0xe8, 0xe7, 0xec, 0x10, 0xed, 0x15, 0x17, 0x17, 0x1a, 0x14, 0xd7, 0x4f, 0x83, 0x89, 0x83, 0x89, 0x83, 0x89, 0x89, 0x89, 0x50, 0x6f, 0x69, 0x69, 0x69, 0x69, 0x69, 0x69, 0x67, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6f, 0x73, 0x4b, 0x6f, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x4d, 0x4d, 0x4d, 0x4d, 0x4d, 0x4c, 0x4e, 0x68, 0x00, 0xe4, 0xe3, 0xe4, 0xe3, 0xe4, 0x03, 0x07, 0x06, 0x06, 0x05, 0x04, 0x0b, 0x03, 0x5e, 0x5d, 0x5d, 0x5d, 0x5d, 0x5d, 0x5d, 0x5f, 0x5d, 0x5f, 0xe3, 0x03, 0x03, 0xe3, 0xe4, 0xe6, 0xc3, 0xd2, 0x5a, 0x57, 0x59, 0x57, 0x56, 0x5d, 0x7b, 0x85, 0x7f, 0x7b, 0x7f, 0x7f, 0x7f, 0x81, 0x7f, 0x82, 0x7e, 0x4d, 0x4e, 0x4d, 0x4e, 0x4d, 0x4e, 0x4f, 0xe6, 0x01, 0x01, 0x02, 0x01, 0x01, 0x02, 0x04, 0x00, 0xc2, 0xc2, 0xc2, 0xe0, 0xe2, 0xe0, 0xe0, 0xe0, 0xe0, 0xe3, 0xe0, 0xe1, 0xe2, 0xe1, 0xe1, 0xc3, 0xc3, 0x5f, 0x64, 0x68, 0x68, 0x68, 0x68, 0x68, 0x68, 0x68, 0x68, 0x68, 0x68, 0x68, 0x68, 0xc7, 0x62, 0x56, 0x56, 0x58, 0x56, 0x56, 0x58, 0x85, 0x90, 0x87, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x8c, 0x85, 0x8b, 0xf0, 0x1f, 0x1c, 0x1c, 0x1c, 0x1c, 0x13, 0x13, 0x14, 0x14, 0x14, 0x17, 0x12, 0x15, 0x62, 0x58, 0x5c, 0x6d, 0x7b, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x7a, 0x6f, 0x4b, 0x4d, 0x50, 0x8b, 0x89, 0x8b, 0x89, 0x8b, 0x83, 0x89, 0x8b, 0x89, 0x8b, 0x89, 0x8b, 0x89, 0x89, 0x89, 0x89, 0x81, 0x0f, 0x0d, 0x13, 0x0f, 0x08, 0x02, 0x02, 0xe2, 0xe2, 0xe2, 0xe2, 0xe2, 0xe1, 0xe1, 0x5f, 0xc3, 0xd4, 0x5f, 0xd4, 0xc3, 0xc3, 0xc3, 0x5f, 0xd4, 0xc3, 0x06, 0x09, 0x06, 0x09, 0x0c, 0xe2, 0xde, 0xd2, 0xde, 0xde, 0xde, 0xde, 0xde, 0xde, 0xc2, 0x02, 0x19, 0x19, 0x16, 0x16, 0x16, 0x19, 0x16, 0x16, 0x0d, 0x13, 0x19, 0x13, 0x0d, 0x13, 0x0d, 0x13, 0x0d, 0x13, 0x13, 0x13, 0x13, 0x13, 0x0d, 0x0d, 0x13, 0x13, 0x13, 0x13, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x13, 0x0d, 0x13, 0x16, 0x19, 0x16, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x1c, 0x1c, 0x1f, 0x1f, 0x1f, 0x1c, 0x1c, 0x18, 0x16, 0x18, 0x14, 0x14, 0x0f, 0x0e, 0x0e, 0x0b, 0x0b, 0x0b, 0x0d, 0x06, 0xe2, 0xe3, 0x03, 0xe4, 0x03, 0x03, 0xe4, 0x03, 0xe4, 0x03, 0x03, 0x03, 0x03, 0x07, 0x03, 0xe5, 0x03,
0xcc, 0xcc, 0xcc, 0xda, 0x9e, 0x9e, 0x27, 0x18, 0x1d, 0x22, 0x1d, 0x25, 0x22, 0x27, 0xf2, 0xf3, 0xcb, 0x9f, 0xaf, 0xaf, 0xb1, 0xaf, 0xb1, 0xaf, 0xb1, 0xaf, 0xb1, 0xb1, 0xb1, 0xaf, 0xb1, 0xaf, 0xb1, 0xb1, 0xb3, 0xb1, 0xb1, 0xb3, 0x29, 0x20, 0x24, 0x29, 0x24, 0x29, 0x2d, 0x2d, 0xf4, 0x9d, 0x52, 0x52, 0x52, 0x99, 0x52, 0x99, 0x99, 0x52, 0x99, 0x9a, 0x9d, 0x99, 0x9a, 0x9a, 0xa7, 0xa7, 0xa9, 0xa3, 0x17, 0x14, 0x1a, 0x17, 0x1a, 0x17, 0x1a, 0x17, 0x17, 0x17, 0x17, 0x17, 0x17, 0x1d, 0x18, 0x1d, 0x17, 0x11, 0x03, 0xe3, 0xe9, 0xea, 0xe9, 0xed, 0xd6, 0xd7, 0xd8, 0xca, 0x8e, 0x98, 0x9b, 0xa2, 0x9d, 0xa4, 0xa1, 0x9d, 0x9d, 0x9d, 0x9d, 0x99, 0x9b, 0x97, 0x97, 0x8d, 0x8c, 0x8d, 0x8d, 0x86, 0x8d, 0x8b, 0x8d, 0x86, 0x51, 0x51, 0xe7, 0x07, 0xe5, 0xe7, 0xe5, 0xe8, 0xe8, 0xe7, 0xe9, 0xe9, 0xec, 0xea, 0x15, 0x17, 0x17, 0x14, 0xd7, 0x4f, 0x89, 0x83, 0x83, 0x89, 0x83, 0x89, 0x83, 0x89, 0x89, 0x50, 0x71, 0x63, 0x71, 0x69, 0x69, 0x69, 0x6d, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6f, 0x4b, 0x4b, 0x6f, 0x4b, 0x6f, 0x4b, 0x6f, 0x4b, 0x4d, 0x4d, 0x4d, 0x4d, 0x4d, 0x4d, 0x4c, 0x4e, 0x64, 0x02, 0xe3, 0xe4, 0xe3, 0xe3, 0xe3, 0xe4, 0x03, 0x09, 0x06, 0x0a, 0x0b, 0x02, 0x5e, 0x5d, 0x5d, 0x5f, 0x5d, 0x5f, 0x5d, 0x5d, 0x5d, 0x5d, 0x5f, 0x03, 0xe3, 0xe4, 0xe3, 0xe4, 0xe1, 0x57, 0x57, 0xd3, 0x57, 0x57, 0x57, 0x59, 0x59, 0x76, 0x8c, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x82, 0x7e, 0x4e, 0x4d, 0x4e, 0x4d, 0x4e, 0x4d, 0x4e, 0x4f, 0xe4, 0x01, 0x01, 0x02, 0x01, 0x01, 0x05, 0x00, 0xc2, 0xc2, 0xc2, 0xc2, 0xe0, 0xe2, 0xe0, 0xe0, 0xe0, 0xe1, 0xe1, 0xe1, 0xd4, 0xe1, 0xe1, 0xc3, 0x5f, 0x5f, 0x5b, 0x61, 0x68, 0x68, 0x68, 0x68, 0x68, 0x68, 0x68, 0x68, 0x68, 0x6e, 0x68, 0x6e, 0x65, 0x56, 0x56, 0x56, 0x58, 0x56, 0x56, 0x56, 0x81, 0x9c, 0x85, 0x8c, 0x85, 0x8c, 0x85, 0x8c, 0x85, 0x8c, 0x8b, 0xef, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x19, 0x0f, 0x14, 0x12, 0x12, 0x15, 0x11, 0x15, 0x62, 0x5c, 0x58, 0x58, 0x69, 0x7f, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x73, 0x4b, 0x4b, 0x4b, 0x51, 0x8b, 0x8b, 0x8b, 0x89, 0x8b, 0x89, 0x8b, 0x89, 0x89, 0x89, 0x8b, 0x89, 0x83, 0x89, 0x83, 0x89, 0x81, 0x0d, 0x0d, 0x0f, 0x13, 0x0f, 0x08, 0x06, 0xe0, 0xe2, 0xe3, 0xe2, 0xe2, 0xe3, 0xe2, 0xe1, 0xe1, 0xc3, 0x5f, 0xd4, 0x5f, 0xd4, 0xc3, 0xc3, 0xc3, 0x07, 0x06, 0x09, 0x06, 0x09, 0x0c, 0x06, 0xde, 0xc2, 0xde, 0xdf, 0xde, 0xdf, 0xde, 0xc2, 0x02, 0x19, 0x19, 0x16, 0x16, 0x16, 0x16, 0x16, 0x16, 0x16, 0x13, 0x16, 0x16, 0x13, 0x0d, 0x13, 0x13, 0x0d, 0x13, 0x0d, 0x13, 0x13, 0x13, 0x13, 0x0d, 0x13, 0x13, 0x13, 0x13, 0x13, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x13, 0x16, 0x19, 0x19, 0x19, 0x19, 0x19, 0x1c, 0x19, 0x1c, 0x19, 0x1c, 0x19, 0x1c, 0x19, 0x1c, 0x1c, 0x1c, 0x1c, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x1c, 0x1c, 0x1c, 0x0d, 0x0b, 0x0b, 0x04, 0xe2, 0xe3, 0x03, 0xe3, 0x03, 0x03, 0xe4, 0x03, 0xe4, 0x03, 0x03, 0x03, 0x03, 0x07, 0x03, 0x07,
0xcc, 0xcb, 0xcc, 0xcb, 0xcc, 0xcc, 0xa0, 0x27, 0x1e, 0x1d, 0x22, 0x22, 0x25, 0x27, 0xf2, 0xf3, 0xcb, 0x9f, 0xad, 0xaf, 0xaf, 0xaf, 0xb1, 0xaf, 0xb1, 0xaf, 0xb1, 0xaf, 0xb1, 0xb1, 0xb1, 0xb3, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb3, 0x29, 0x1d, 0x24, 0x24, 0x29, 0x29, 0x2d, 0x2d, 0x31, 0xcc, 0x9a, 0x52, 0x9b, 0x52, 0x99, 0x52, 0x9d, 0x99, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x99, 0xa2, 0xa3, 0xa7, 0xab, 0xcc, 0x0f, 0x17, 0x1a, 0x1a, 0x17, 0x1a, 0x17, 0x1a, 0x17, 0x17, 0x17, 0x17, 0x17, 0x17, 0x17, 0x18, 0x1e, 0x1d, 0x17, 0x0c, 0xe8, 0xea, 0xed, 0xee, 0xee, 0xf1, 0xd8, 0xca, 0x8e, 0x98, 0x9c, 0xa2, 0xa1, 0xa4, 0xa1, 0x9d, 0x9d, 0x9a, 0x9d, 0x99, 0x97, 0x97, 0x93, 0x86, 0x8d, 0x8d, 0x8d, 0x8d, 0x8d, 0x8b, 0x8b, 0x8d, 0x91, 0x87, 0x07, 0xe5, 0xe5, 0xe7, 0xe5, 0xe7, 0xe9, 0xe7, 0xe9, 0xe9, 0xed, 0xec, 0x17, 0x17, 0x14, 0x7d, 0x89, 0x83, 0x83, 0x89, 0x83, 0x89, 0x83, 0x89, 0x83, 0x89, 0x89, 0x89, 0x69, 0x69, 0x69, 0x6d, 0x69, 0x69, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6f, 0x73, 0x4b, 0x73, 0x73, 0x73, 0x73, 0x73, 0x4d, 0x4d, 0x4d, 0x4d, 0x4d, 0x4d, 0x4d, 0x4c, 0x4e, 0x64, 0x00, 0xe4, 0xe3, 0xe4, 0xe3, 0xe3, 0xe3, 0xe4, 0x03, 0x07, 0x0b, 0x05, 0x5e, 0x5d, 0x60, 0x5d, 0x60, 0x5f, 0x60, 0x5f, 0x60, 0x5f, 0x5e, 0xc4, 0xe4, 0x03, 0xe4, 0xe6, 0xe1, 0xd2, 0xd3, 0x57, 0x5a, 0x57, 0x57, 0x57, 0x59, 0x59, 0x75, 0x85, 0x85, 0x7b, 0x7f, 0x7f, 0x7f, 0x7f, 0x81, 0x4e, 0x4d, 0x4e, 0x4d, 0x4e, 0x4d, 0x4e, 0x4e, 0x4f, 0x02, 0x01, 0x02, 0x01, 0x02, 0x04, 0x00, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xe0, 0xe2, 0xe1, 0xe0, 0xe1, 0xe0, 0xe1, 0xe1, 0xe1, 0xc3, 0xc3, 0x5f, 0x5f, 0x5f, 0x5b, 0x5f, 0x65, 0x68, 0x68, 0x68, 0x68, 0x68, 0x68, 0x68, 0x68, 0x68, 0xc7, 0x65, 0x58, 0x56, 0x58, 0x56, 0x58, 0x58, 0x56, 0x56, 0x76, 0x93, 0x8c, 0x85, 0x85, 0x85, 0x8c, 0x85, 0x87, 0x86, 0x22, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x14, 0x14, 0x12, 0x15, 0x12, 0x11, 0x15, 0x60, 0x5c, 0x5c, 0x5c, 0x58, 0x67, 0x7a, 0x7a, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x73, 0x4b, 0x4b, 0x4b, 0x4d, 0x50, 0x8b, 0x89, 0x8b, 0x89, 0x8b, 0x89, 0x8b, 0x89, 0x8b, 0x89, 0x8b, 0x89, 0x83, 0x89, 0x89, 0x89, 0x7d, 0x0d, 0x0d, 0x0f, 0x13, 0x0d, 0x13, 0x08, 0x02, 0xe2, 0xe2, 0xe0, 0xe2, 0xe1, 0xe2, 0xe1, 0xe1, 0xe1, 0xc3, 0xc3, 0x5f, 0x5f, 0xd4, 0x5f, 0x03, 0x06, 0x09, 0x06, 0x09, 0x06, 0x0c, 0x09, 0x00, 0xc2, 0xd2, 0xde, 0xde, 0xde, 0xd2, 0x00, 0x19, 0x19, 0x16, 0x19, 0x16, 0x16, 0x16, 0x19, 0x16, 0x16, 0x16, 0x0d, 0x0d, 0x13, 0x0d, 0x0d, 0x13, 0x13, 0x13, 0x13, 0x16, 0x13, 0x16, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x0d, 0x0d, 0x13, 0x0d, 0x13, 0x0d, 0x13, 0x19, 0x19, 0x16, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x1c, 0x19, 0x1c, 0x1f, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1f, 0x1c, 0x1f, 0x1c, 0x23, 0x26, 0x23, 0x1c, 0x16, 0x0d, 0x04, 0x03, 0xe1, 0x03, 0xe4, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0xe5, 0x07, 0x03, 0x07, 0x03,
0xcc, 0xda, 0xcc, 0xcc, 0xda, 0xcc, 0xcc, 0xa0, 0xf2, 0x18, 0x24, 0x22, 0x22, 0x27, 0x27, 0xf3, 0xcb, 0x9c, 0xab, 0xb1, 0xaf, 0xb1, 0xaf, 0xb1, 0xaf, 0xb1, 0xaf, 0xb1, 0xaf, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb3, 0x2d, 0x1d, 0x24, 0x29, 0x22, 0x29, 0x29, 0x2d, 0xf2, 0xf5, 0x9c, 0x9d, 0x52, 0x99, 0x52, 0x9d, 0x99, 0x52, 0x9d, 0x99, 0x9a, 0x9a, 0x9a, 0x96, 0xa2, 0xa7, 0xa7, 0xa2, 0xad, 0xf1, 0x13, 0x17, 0x17, 0x1a, 0x17, 0x1a, 0x17, 0x17, 0x17, 0x17, 0x17, 0x17, 0x17, 0x17, 0x17, 0x17, 0x17, 0x1a, 0x14, 0x0b, 0x0e, 0xec, 0xed, 0xd6, 0xee, 0xd8, 0xd8, 0xcb, 0x8e, 0x98, 0x9c, 0x52, 0xa4, 0xa1, 0xa1, 0x9a, 0x9d, 0x9a, 0x99, 0x99, 0x97, 0x93, 0x8d, 0x8d, 0x8d, 0x8b, 0x8d, 0x8b, 0x8d, 0x86, 0x8b, 0x8b, 0x51, 0x7f, 0x03, 0xe8, 0xe5, 0xe7, 0xe8, 0xe7, 0xe9, 0xe7, 0xea, 0xea, 0xed, 0xec, 0x17, 0x14, 0x7d, 0x4f, 0x83, 0x83, 0x83, 0x83, 0x83, 0x89, 0x83, 0x89, 0x89, 0x83, 0x50, 0x89, 0x69, 0x69, 0x69, 0x69, 0x69, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6f, 0x4b, 0x73, 0x73, 0x73, 0x6f, 0x4b, 0x4d, 0x4d, 0x4d, 0x4d, 0x4d, 0x4d, 0x4d, 0x4d, 0x4c, 0x4e, 0xc5, 0x02, 0xe1, 0xe4, 0xe2, 0xe4, 0xe3, 0xe3, 0xe3, 0xe3, 0x06, 0x03, 0x5e, 0x5d, 0x5b, 0x5f, 0x5d, 0x5f, 0x5d, 0x61, 0x5d, 0x5f, 0x5d, 0x5f, 0xc4, 0x03, 0xe4, 0xe4, 0xe1, 0xd2, 0xd3, 0xd2, 0x57, 0x57, 0x57, 0x57, 0x59, 0x59, 0x59, 0x6c, 0x8c, 0x85, 0x7f, 0x81, 0x7f, 0x7f, 0x7e, 0x4e, 0x4d, 0x4e, 0x4d, 0x4e, 0x4d, 0x4e, 0x4d, 0x4e, 0x4e, 0x02, 0x01, 0x01, 0x02, 0x01, 0x02, 0x53, 0xd2, 0xc2, 0xd2, 0xc2, 0xc2, 0xdf, 0xe2, 0xe1, 0xe0, 0xe1, 0xe1, 0xe1, 0xe1, 0xc3, 0xc3, 0x5f, 0x5f, 0x5f, 0x5f, 0xc3, 0x5b, 0x64, 0x68, 0x68, 0x68, 0x68, 0x68, 0x68, 0x68, 0x6a, 0x68, 0x6a, 0x56, 0x56, 0x56, 0x58, 0x56, 0x58, 0x58, 0x56, 0x56, 0x6d, 0x93, 0x8c, 0x85, 0x8c, 0x85, 0x8c, 0x87, 0x87, 0x1d, 0x1c, 0x1c, 0x1c, 0x19, 0x1c, 0x1c, 0x19, 0x12, 0x12, 0x0e, 0x11, 0x11, 0xec, 0x62, 0x5c, 0x5c, 0x5c, 0x5c, 0x58, 0x63, 0x76, 0x7a, 0x76, 0x76, 0x76, 0x76, 0x7a, 0x76, 0x76, 0x76, 0x76, 0x7a, 0x73, 0x4b, 0x4b, 0x4b, 0x4b, 0x4b, 0x51, 0x8b, 0x8b, 0x89, 0x8b, 0x89, 0x8b, 0x89, 0x8b, 0x89, 0x89, 0x83, 0x89, 0x83, 0x89, 0x83, 0x89, 0x7d, 0x0d, 0x0d, 0x0f, 0x0f, 0x0f, 0x13, 0x0f, 0x13, 0x18, 0x0f, 0x0f, 0x0a, 0x05, 0x06, 0x06, 0x03, 0x03, 0xe2, 0xd4, 0xd4, 0x5b, 0x59, 0xc3, 0x0a, 0x07, 0x06, 0x09, 0x06, 0x09, 0x06, 0x11, 0xe2, 0xde, 0xd2, 0xde, 0xdf, 0xc2, 0x00, 0x19, 0x19, 0x19, 0x16, 0x19, 0x16, 0x16, 0x16, 0x16, 0x16, 0x1c, 0x05, 0xdf, 0x06, 0x0e, 0x0e, 0x0a, 0x0a, 0x0e, 0x08, 0x0e, 0x0b, 0x0f, 0x0d, 0x0f, 0x13, 0x16, 0x13, 0x13, 0x16, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x13, 0x19, 0x16, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x1c, 0x19, 0x1c, 0x1c, 0x19, 0x1c, 0x19, 0x1f, 0x1c, 0x1f, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1f, 0x23, 0x23, 0x23, 0x26, 0x1c, 0x19, 0x0d, 0x05, 0xe2, 0xe3, 0x03, 0xe4, 0x03, 0xe4, 0x03, 0x03, 0x03, 0x03, 0x07, 0x03, 0x07,
0xda, 0x94, 0xcc, 0xcb, 0xcc, 0xcb, 0xcc, 0xcc, 0xa0, 0x27, 0x1d, 0x22, 0x22, 0x27, 0x27, 0xf3, 0xf4, 0x98, 0xa9, 0xb1, 0xaf, 0xaf, 0xaf, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb3, 0xb1, 0xb1, 0xb3, 0x27, 0x20, 0x22, 0x24, 0x29, 0x29, 0x2d, 0x27, 0x31, 0xf3, 0xf7, 0x9f, 0x9d, 0x99, 0x52, 0x52, 0x9d, 0x9a, 0x9a, 0x99, 0x9a, 0x9a, 0x9a, 0x9a, 0x52, 0xa7, 0xa7, 0xa7, 0xa9, 0xab, 0xef, 0x13, 0x1a, 0x17, 0x1a, 0x17, 0x1a, 0x17, 0x17, 0x17, 0x17, 0x17, 0x17, 0x17, 0x17, 0x18, 0x17, 0x1a, 0x1a, 0x12, 0x0d, 0x0f, 0x11, 0x1b, 0xee, 0xd7, 0xf1, 0xd8, 0xd9, 0x94, 0x94, 0x9c, 0x9b, 0xa1, 0xa4, 0x9d, 0x9d, 0x9d, 0x9d, 0x99, 0x9b, 0x93, 0x8b, 0x8d, 0x8b, 0x8d, 0x8b, 0x8d, 0x8b, 0x8f, 0x8b, 0x8b, 0x8b, 0x91, 0xc7, 0x03, 0xe9, 0xe5, 0xe7, 0xe7, 0xe9, 0xe7, 0xea, 0xea, 0xeb, 0xed, 0x15, 0x14, 0x7c, 0x4f, 0x83, 0x83, 0x83, 0x4f, 0x83, 0x83, 0x89, 0x83, 0x83, 0x89, 0x89, 0x89, 0x83, 0x69, 0x69, 0x69, 0x69, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x73, 0x73, 0x4b, 0x6f, 0x4b, 0x73, 0x4d, 0x4d, 0x4d, 0x4d, 0x4d, 0x4d, 0x4d, 0x4d, 0x4d, 0x4c, 0x4d, 0xc4, 0x02, 0xe4, 0xe3, 0xe3, 0xe3, 0xe3, 0xe3, 0xe3, 0xe1, 0xe3, 0x66, 0x67, 0x62, 0x60, 0x5f, 0x5d, 0x5f, 0x5d, 0x5f, 0x60, 0x5f, 0x60, 0x5d, 0xc5, 0x03, 0xe6, 0xd4, 0xd2, 0xdf, 0xd3, 0xdf, 0xd3, 0x57, 0x57, 0x55, 0x5a, 0x59, 0x59, 0x6c, 0x85, 0x85, 0x7f, 0x7f, 0x82, 0x7e, 0x4e, 0x4e, 0x4d, 0x4e, 0x4d, 0x4e, 0x4d, 0x4e, 0x4d, 0x4f, 0x78, 0x01, 0x01, 0x02, 0x04, 0x00, 0xc2, 0xc2, 0xd2, 0xc2, 0xd2, 0xc2, 0xc2, 0xd4, 0xe2, 0xe1, 0xe0, 0xe1, 0xe1, 0xc3, 0xc3, 0xc4, 0x5a, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5b, 0x61, 0x68, 0x6e, 0x68, 0x68, 0x68, 0x68, 0x68, 0x6e, 0x68, 0x58, 0x56, 0x58, 0x56, 0x58, 0x58, 0x56, 0x5c, 0x56, 0x56, 0x67, 0x93, 0x8c, 0x85, 0x85, 0x87, 0x87, 0x8a, 0x19, 0x1c, 0x1c, 0x19, 0x1c, 0x19, 0x1c, 0x19, 0x17, 0x0e, 0x15, 0x11, 0x11, 0xec, 0x5e, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x58, 0x5e, 0x76, 0x81, 0x76, 0x76, 0x76, 0x76, 0x76, 0x7a, 0x76, 0x76, 0x76, 0x73, 0x4b, 0x4b, 0x4b, 0x4b, 0x4b, 0x4d, 0x50, 0x8b, 0x89, 0x8b, 0x89, 0x8b, 0x89, 0x8b, 0x89, 0x8b, 0x89, 0x83, 0x89, 0x83, 0x89, 0x89, 0x89, 0xd6, 0x0d, 0x0d, 0x0d, 0x0f, 0x0f, 0x0f, 0x13, 0x1c, 0x1f, 0x1c, 0x1f, 0x1c, 0x1c, 0x19, 0x19, 0x14, 0x13, 0x14, 0x0f, 0x0e, 0x06, 0x07, 0x05, 0x06, 0x09, 0x07, 0x09, 0x09, 0x06, 0x09, 0x0c, 0x03, 0xde, 0xd2, 0xde, 0xd2, 0x00, 0x16, 0x19, 0x16, 0x19, 0x16, 0x16, 0x16, 0x16, 0x16, 0x16, 0x19, 0x08, 0xc2, 0xd2, 0xe2, 0x07, 0x0c, 0x09, 0x06, 0x09, 0x09, 0x09, 0x06, 0x09, 0x09, 0x0a, 0x0f, 0x13, 0x16, 0x16, 0x13, 0x13, 0x0d, 0x0d, 0x13, 0x0d, 0x13, 0x19, 0x19, 0x19, 0x16, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x1c, 0x19, 0x1c, 0x19, 0x1c, 0x1c, 0x1c, 0x1f, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1f, 0x1c, 0x1f, 0x1c, 0x23, 0x23, 0x23, 0x1f, 0x23, 0x23, 0x26, 0x1f, 0x19, 0x0b, 0x03, 0xe3, 0xe4, 0x03, 0x03, 0x03, 0x03, 0x03, 0xe5, 0x03, 0xe5, 0x07,
0x94, 0xda, 0x94, 0xcc, 0xcc, 0xcc, 0xcb, 0xcc, 0x94, 0xa3, 0x27, 0x1d, 0x22, 0x25, 0xf2, 0xf2, 0xf4, 0x98, 0xa7, 0xaf, 0xaf, 0xb1, 0xaf, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb3, 0x2d, 0x1d, 0x24, 0x22, 0x29, 0x22, 0x29, 0x2d, 0xf2, 0x31, 0xf4, 0xcc, 0x52, 0x9d, 0x52, 0x99, 0x9d, 0x99, 0x9d, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x99, 0xa7, 0xa7, 0xa7, 0xa2, 0xa9, 0xa3, 0x17, 0x14, 0x1a, 0x17, 0x1a, 0x17, 0x17, 0x17, 0x17, 0x17, 0x17, 0x17, 0x17, 0x17, 0x17, 0x17, 0x1a, 0x1a, 0x1a, 0x0f, 0x0f, 0x13, 0x0f, 0x1a, 0x1b, 0xf0, 0xd8, 0xd9, 0xca, 0xcb, 0x98, 0x98, 0xa2, 0xa1, 0xa4, 0x9d, 0x9d, 0x9a, 0x99, 0x9b, 0x97, 0x8d, 0x8f, 0x8d, 0x8f, 0x8b, 0x8f, 0x8b, 0x8d, 0x8b, 0x8f, 0x8b, 0x50, 0x8f, 0xe7, 0x07, 0xe7, 0xe7, 0xe5, 0xe7, 0xe7, 0xea, 0xeb, 0xeb, 0xc7, 0xe9, 0x14, 0x7d, 0x4f, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x89, 0x83, 0x89, 0x4f, 0x50, 0x4d, 0x67, 0x69, 0x69, 0x6f, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x4b, 0x73, 0x4b, 0x6f, 0x4b, 0x4d, 0x4d, 0x4d, 0x4d, 0x4d, 0x4c, 0x4d, 0x4d, 0x4d, 0x4d, 0x4e, 0x4d, 0xd5, 0xe2, 0x03, 0xe4, 0xe3, 0xe4, 0xe3, 0xe3, 0xe3, 0x03, 0x03, 0x71, 0x71, 0x6d, 0x67, 0x66, 0x60, 0x62, 0x5d, 0x5f, 0x5d, 0x5f, 0x5d, 0x5f, 0xd5, 0xe5, 0xd4, 0xd2, 0xd3, 0xd3, 0xd3, 0xd2, 0xd3, 0xd2, 0x57, 0x57, 0x5a, 0x59, 0x59, 0x67, 0x8c, 0x85, 0x7f, 0x7f, 0x81, 0x4e, 0x4d, 0x4e, 0x4d, 0x4e, 0x4d, 0x4e, 0x83, 0x4e, 0x4d, 0x4f, 0x76, 0x01, 0x01, 0x01, 0x02, 0xc2, 0xc2, 0xc2, 0xd2, 0xd2, 0xd2, 0xc2, 0xc2, 0xdf, 0xe3, 0xe1, 0xe1, 0xd4, 0xe1, 0xc3, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5a, 0x5f, 0x65, 0x6e, 0x68, 0x68, 0x68, 0x68, 0x68, 0x6a, 0x58, 0x56, 0x56, 0x58, 0x56, 0x58, 0x58, 0x58, 0x58, 0x58, 0x56, 0x63, 0x93, 0x8c, 0x8c, 0x85, 0x8b, 0xd8, 0x1c, 0x1c, 0x1c, 0x19, 0x1c, 0x1c, 0x19, 0x1c, 0x18, 0x0e, 0x12, 0x11, 0x11, 0xec, 0x60, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5e, 0x5c, 0x5c, 0x71, 0x81, 0x76, 0x7a, 0x76, 0x76, 0x76, 0x78, 0x76, 0x7a, 0x73, 0x4b, 0x4b, 0x4b, 0x4b, 0x4b, 0x4b, 0x4b, 0x51, 0x8b, 0x89, 0x8b, 0x89, 0x8b, 0x89, 0x8b, 0x89, 0x83, 0x89, 0x83, 0x89, 0x83, 0x8b, 0x89, 0x89, 0xee, 0x0d, 0x0f, 0x0f, 0x0f, 0x0f, 0x0d, 0x13, 0x19, 0x1c, 0x19, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1f, 0x1c, 0x1f, 0x1f, 0x23, 0x1d, 0x64, 0x04, 0x05, 0x05, 0x09, 0x06, 0x09, 0x09, 0x09, 0x0c, 0x09, 0xde, 0xd2, 0xc2, 0x00, 0x13, 0x1c, 0x16, 0x19, 0x16, 0x19, 0x16, 0x16, 0x16, 0x16, 0x19, 0x0b, 0xde, 0xd2, 0xc2, 0xde, 0x07, 0x0c, 0x0c, 0x09, 0x06, 0x09, 0x09, 0x06, 0x09, 0x09, 0x07, 0x0a, 0x0d, 0x13, 0x16, 0x16, 0x13, 0x0d, 0x0d, 0x0d, 0x13, 0x19, 0x16, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x1c, 0x19, 0x1c, 0x19, 0x1c, 0x19, 0x1f, 0x1c, 0x1f, 0x1c, 0x1c, 0x1c, 0x1c, 0x1f, 0x1c, 0x1c, 0x1c, 0x1c, 0x1f, 0x23, 0x23, 0x23, 0x1f, 0x1f, 0x1f, 0x23, 0x23, 0x23, 0x19, 0x06, 0xe4, 0xe4, 0xe5, 0xe5, 0xe7, 0xe8, 0xe9, 0xe9, 0xed, 0xed,
0xda, 0x94, 0xda, 0xcc, 0xda, 0x94, 0xcc, 0xcc, 0xcc, 0xcc, 0xa0, 0xf2, 0x1d, 0x25, 0x27, 0xf2, 0xf4, 0x94, 0xa2, 0xaf, 0xb1, 0xaf, 0xb1, 0xaf, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb3, 0xb1, 0x2d, 0x1d, 0x24, 0x22, 0x24, 0x29, 0x29, 0x27, 0x2d, 0xf2, 0xf6, 0xda, 0xa0, 0x9d, 0x99, 0x9d, 0x9d, 0x99, 0x9d, 0x99, 0x9a, 0x9d, 0x99, 0x9a, 0x9a, 0xa4, 0xa7, 0xa2, 0xa7, 0xa2, 0xab, 0x94, 0x14, 0x14, 0x1a, 0x17, 0x17, 0x17, 0x17, 0x17, 0x17, 0x17, 0x17, 0x17, 0x17, 0x18, 0x17, 0x1a, 0x1a, 0x1a, 0x1a, 0x0f, 0x12, 0x14, 0x13, 0x14, 0x17, 0xef, 0xf1, 0xd9, 0xca, 0xcb, 0x98, 0x98, 0x9c, 0xa1, 0xa1, 0x9d, 0x9d, 0x9d, 0x99, 0x97, 0x8f, 0x8d, 0x8d, 0x8f, 0x8b, 0x8f, 0x8b, 0x8b, 0x8b, 0x8b, 0x8b, 0x8b, 0x91, 0x87, 0x07, 0xe5, 0xe7, 0xe7, 0xe7, 0xe7, 0xea, 0xe7, 0xea, 0xeb, 0xc7, 0xec, 0x85, 0x89, 0x89, 0x89, 0x89, 0x89, 0x89, 0x89, 0x89, 0x4f, 0x89, 0x4f, 0x89, 0x83, 0x89, 0x50, 0x78, 0x67, 0x69, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x73, 0x4b, 0x73, 0x73, 0x4d, 0x4d, 0x4d, 0x4d, 0x4d, 0x4d, 0x4d, 0x4c, 0x4d, 0x4d, 0x4c, 0x4e, 0x4d, 0xe3, 0xe2, 0xe3, 0xe3, 0xe3, 0xe3, 0xe3, 0xe3, 0xe3, 0x03, 0xe5, 0x69, 0x71, 0x6d, 0x6d, 0x6d, 0x6c, 0x6c, 0x67, 0x62, 0x60, 0x61, 0x5d, 0x5f, 0xe4, 0xdf, 0xd2, 0xd2, 0xd3, 0xd2, 0xd3, 0xd3, 0xd2, 0x57, 0xd2, 0x55, 0x5a, 0x57, 0x59, 0x63, 0x85, 0x85, 0x7f, 0x7e, 0x4e, 0x4e, 0x4d, 0x4e, 0x4d, 0x4e, 0x4d, 0x4e, 0x4d, 0x4e, 0x4e, 0x4f, 0x6e, 0x01, 0x04, 0x00, 0xc2, 0xd2, 0xc2, 0xd2, 0xc2, 0xd2, 0xd2, 0xc2, 0xc2, 0xd3, 0xe3, 0xe1, 0xe1, 0xc3, 0xc3, 0xc3, 0x5f, 0x5f, 0x5f, 0xc4, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5b, 0x64, 0x68, 0x6e, 0x6a, 0x68, 0x6e, 0x68, 0x58, 0x58, 0x56, 0x58, 0x56, 0x58, 0x58, 0x58, 0x58, 0x58, 0x58, 0x56, 0x5e, 0x8c, 0x93, 0x85, 0x8b, 0xf0, 0x1c, 0x19, 0x1c, 0x19, 0x1c, 0x19, 0x19, 0x1c, 0x1c, 0x12, 0x11, 0x11, 0x15, 0xe8, 0x63, 0x5c, 0x5e, 0x5c, 0x5e, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x6d, 0x81, 0x76, 0x76, 0x76, 0x7a, 0x76, 0x76, 0x76, 0x73, 0x4b, 0x4b, 0x73, 0x4b, 0x4b, 0x4b, 0x4b, 0x4d, 0x8b, 0x8b, 0x83, 0x8b, 0x89, 0x8b, 0x89, 0x8b, 0x83, 0x89, 0x83, 0x89, 0x83, 0x89, 0x83, 0x89, 0x89, 0xec, 0x0d, 0x0f, 0x0d, 0x0f, 0x0d, 0x13, 0x13, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x1c, 0x19, 0x1c, 0x19, 0x19, 0x1f, 0x12, 0x4b, 0x65, 0x04, 0x04, 0x04, 0x04, 0x05, 0x05, 0x06, 0x09, 0x10, 0x0c, 0xe2, 0xc2, 0xde, 0x16, 0x1c, 0x19, 0x16, 0x19, 0x16, 0x19, 0x16, 0x16, 0x16, 0x16, 0x13, 0xde, 0xd2, 0xdf, 0xde, 0xc2, 0xe0, 0x06, 0x0c, 0x0c, 0x06, 0x09, 0x0c, 0x06, 0x09, 0x09, 0x09, 0x09, 0x08, 0x0d, 0x16, 0x16, 0x13, 0x0d, 0x0d, 0x13, 0x19, 0x16, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x1c, 0x19, 0x1c, 0x19, 0x1c, 0x1c, 0x1f, 0x1c, 0x1f, 0x1c, 0x1f, 0x1c, 0x1c, 0x1c, 0x1f, 0x1c, 0x1c, 0x23, 0x23, 0x23, 0x23, 0x23, 0x1f, 0x23, 0x1f, 0x23, 0x1f, 0x26, 0x1f, 0x0c, 0xed, 0xeb, 0xed, 0xed, 0xed, 0xed, 0xed, 0xe9, 0xec,
0xcc, 0xcc, 0xcb, 0xcc, 0x94, 0xcc, 0xcc, 0x94, 0xcc, 0x94, 0x9e, 0x9c, 0xf3, 0x24, 0x27, 0xf2, 0xf4, 0xcb, 0xa2, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xb1, 0xaf, 0xb1, 0xb1, 0xb3, 0xb1, 0xb1, 0xb1, 0xaf, 0xb1, 0xb1, 0xb1, 0xb1, 0xb3, 0x27, 0x1d, 0x24, 0x22, 0x29, 0x25, 0x29, 0x2d, 0x27, 0x31, 0xf3, 0xf4, 0xdb, 0x9f, 0x9d, 0x52, 0x9d, 0x9d, 0x9a, 0x9a, 0x9d, 0x9a, 0x9d, 0x9a, 0x9a, 0xa1, 0xa7, 0xa7, 0xa2, 0xa7, 0xa2, 0xab, 0xf1, 0x13, 0x17, 0x1a, 0x17, 0x1a, 0x17, 0x17, 0x17, 0x17, 0x17, 0x17, 0x17, 0x17, 0x17, 0x1a, 0x1a, 0x1a, 0x1a, 0x12, 0x0f, 0x14, 0x12, 0x14, 0x14, 0x16, 0x1a, 0xef, 0xd9, 0xcb, 0x94, 0x94, 0x98, 0x9b, 0xa4, 0xa4, 0x9d, 0x9a, 0x99, 0x9b, 0x92, 0x8d, 0x8f, 0x8f, 0x8f, 0x8b, 0x8b, 0x8b, 0x8b, 0x8b, 0x8b, 0x8f, 0x8b, 0x91, 0x79, 0x03, 0xe5, 0xe7, 0xe7, 0xe7, 0xe7, 0xeb, 0xc6, 0xeb, 0xeb, 0xc6, 0x6a, 0x71, 0x76, 0x71, 0x76, 0x78, 0x78, 0x78, 0x83, 0x83, 0x83, 0x83, 0x89, 0x89, 0x89, 0x89, 0x91, 0x78, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x4b, 0x73, 0x4b, 0x4d, 0x4d, 0x4d, 0x4d, 0x4d, 0x4d, 0x4d, 0x4d, 0x4d, 0x4d, 0x4d, 0x4d, 0x4c, 0x4d, 0xe3, 0xe2, 0x03, 0xe3, 0xe4, 0xe3, 0xe4, 0xe4, 0xe4, 0x03, 0xe4, 0x71, 0x6d, 0x6c, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6c, 0x6c, 0x66, 0x63, 0x64, 0xe1, 0xd2, 0xd2, 0xd2, 0xd2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xd2, 0x55, 0x57, 0x57, 0x57, 0x63, 0x85, 0x8a, 0x7e, 0x4e, 0x4d, 0x4e, 0x4d, 0x4e, 0x4d, 0x4e, 0x4d, 0x83, 0x4d, 0x4d, 0x4e, 0x4f, 0x6e, 0x01, 0x01, 0xc2, 0xd2, 0xd2, 0xd2, 0xc2, 0xd2, 0xc2, 0xd2, 0xd2, 0xc2, 0xdf, 0xe3, 0xc3, 0xc3, 0xc3, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0xc3, 0x5b, 0x5f, 0x68, 0x6e, 0x68, 0x68, 0x6e, 0x59, 0x56, 0x58, 0x56, 0x58, 0x58, 0x56, 0x58, 0x58, 0x58, 0x58, 0x58, 0x56, 0x5c, 0x8c, 0x93, 0x8b, 0x1b, 0x1c, 0x19, 0x1c, 0x19, 0x1c, 0x19, 0x1e, 0x19, 0x1e, 0x18, 0x0e, 0x11, 0x11, 0xed, 0x5e, 0x5c, 0x5e, 0x5c, 0x5c, 0x5c, 0x5e, 0x5c, 0x5e, 0x5c, 0x5c, 0x69, 0x81, 0x7a, 0x76, 0x76, 0x76, 0x7a, 0x76, 0x4b, 0x4b, 0x4b, 0x4b, 0x4b, 0x73, 0x4b, 0x4b, 0x4b, 0x4c, 0x8b, 0x50, 0x8b, 0x83, 0x50, 0x83, 0x8b, 0x89, 0x83, 0x89, 0x83, 0x8b, 0x83, 0x8b, 0x83, 0x89, 0x89, 0x15, 0x0d, 0x13, 0x0f, 0x0d, 0x13, 0x13, 0x16, 0x1c, 0x19, 0x1c, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x1f, 0x12, 0x6b, 0x4b, 0x65, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x05, 0x0a, 0x0c, 0x03, 0xde, 0x0f, 0x1c, 0x16, 0x16, 0x16, 0x19, 0x16, 0x19, 0x16, 0x16, 0x16, 0x13, 0x00, 0xd2, 0xde, 0xd2, 0xde, 0xd2, 0xd2, 0xe2, 0x06, 0x11, 0x09, 0x06, 0x0c, 0x09, 0x0c, 0x06, 0x09, 0x09, 0x06, 0x08, 0x0d, 0x16, 0x13, 0x0d, 0x16, 0x19, 0x19, 0x16, 0x19, 0x16, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x1c, 0x19, 0x19, 0x1c, 0x1c, 0x1f, 0x1c, 0x1c, 0x1f, 0x1c, 0x1f, 0x1c, 0x1f, 0x1c, 0x1c, 0x1f, 0x1f, 0x23, 0x23, 0x23, 0x23, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x1c, 0x0f, 0x0c, 0xe9, 0xed, 0xea, 0xe9, 0xe9, 0xec, 0xed, 0xe9,
0x9e, 0xcc, 0xcc, 0xcc, 0xcb, 0xcc, 0xcb, 0xcc, 0xcc, 0xcc, 0x94, 0x9e, 0x9c, 0xf3, 0x22, 0xf2, 0xf3, 0xcb, 0x9f, 0xab, 0xb1, 0xaf, 0xb1, 0xaf, 0xb1, 0xaf, 0xb1, 0xb1, 0xb1, 0xb1, 0xb3, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb3, 0xb1, 0x31, 0x1d, 0x22, 0x24, 0x22, 0x29, 0x29, 0x25, 0x2d, 0x27, 0xf5, 0xf4, 0xcc, 0xa0, 0xa2, 0x9d, 0x9a, 0x99, 0x9a, 0x9d, 0x9d, 0x9a, 0x9d, 0x9a, 0x9a, 0xa1, 0xa7, 0xa9, 0xa2, 0xa7, 0xa2, 0xa6, 0xab, 0xef, 0x13, 0x1a, 0x17, 0x17, 0x17, 0x17, 0x17, 0x17, 0x17, 0x17, 0x17, 0x18, 0x17, 0x1a, 0x1a, 0x1a, 0x1a, 0x1a, 0x14, 0x0f, 0x14, 0x14, 0x17, 0x18, 0x18, 0x1e, 0x1a, 0x27, 0xd9, 0x94, 0x94, 0x98, 0x9c, 0xa1, 0xa1, 0x9d, 0x9d, 0x9b, 0x92, 0x8f, 0x8f, 0x51, 0x8b, 0x51, 0x8b, 0x51, 0x8b, 0x8f, 0x8b, 0x8f, 0x8b, 0x51, 0x91, 0xc7, 0x07, 0xe7, 0xe7, 0xe7, 0xe7, 0xe7, 0xea, 0xc6, 0xc7, 0xc5, 0xe1, 0xc4, 0x62, 0x62, 0x62, 0x62, 0x62, 0x66, 0x66, 0x66, 0x67, 0x67, 0x6c, 0x6d, 0x6d, 0x71, 0x76, 0x78, 0x63, 0x63, 0x69, 0x6b, 0x6b, 0x6f, 0x6f, 0x73, 0x73, 0x73, 0x6f, 0x73, 0x6f, 0x6f, 0x6f, 0x6b, 0x6f, 0x4b, 0x4d, 0x4d, 0x4d, 0x4d, 0x4d, 0x4d, 0x4d, 0x4d, 0x4d, 0x4d, 0x4c, 0x4d, 0x4d, 0x4d, 0x4e, 0x4d, 0xe2, 0xe2, 0xe4, 0xe3, 0xe3, 0x03, 0xe4, 0xe4, 0xe4, 0x03, 0xe6, 0x6b, 0x6d, 0x6c, 0x6d, 0x6c, 0x6d, 0x6c, 0x6d, 0x6c, 0x71, 0x6c, 0x6d, 0xc6, 0xc7, 0xc7, 0xc6, 0xc6, 0xc5, 0xd5, 0xc4, 0xc3, 0x5a, 0xd2, 0xd2, 0xc2, 0xc2, 0xc2, 0x53, 0x59, 0x7b, 0x83, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4f, 0x4f, 0x4f, 0x4e, 0x89, 0xe7, 0x01, 0xc2, 0xc2, 0xd2, 0xc2, 0xd2, 0xc2, 0xd2, 0xd2, 0xc2, 0xd2, 0xc2, 0xd3, 0xe1, 0xc3, 0xc3, 0x5a, 0x5f, 0x5f, 0x5f, 0xc3, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0xc4, 0x5b, 0x5f, 0x65, 0x6e, 0x6e, 0x6e, 0x58, 0x56, 0x56, 0x58, 0x56, 0x58, 0x58, 0x58, 0x58, 0x58, 0x58, 0x58, 0x5c, 0x56, 0x58, 0x86, 0x93, 0x1d, 0x1c, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x1e, 0x12, 0x11, 0x15, 0xe9, 0x5e, 0x5e, 0x5c, 0x5e, 0x5e, 0x5c, 0x5c, 0x5e, 0x5c, 0x5c, 0x5c, 0x5c, 0x63, 0x81, 0x7a, 0x76, 0x7a, 0x76, 0x76, 0x73, 0x4b, 0x73, 0x73, 0x4b, 0x73, 0x4b, 0x4b, 0x4b, 0x4b, 0x4d, 0x8b, 0x8b, 0x89, 0x8b, 0x8b, 0x89, 0x83, 0x89, 0x83, 0x89, 0x83, 0x8b, 0x83, 0x8b, 0x89, 0x89, 0x89, 0x12, 0x0d, 0x0d, 0x0f, 0x0d, 0x13, 0x13, 0x19, 0x19, 0x1c, 0x19, 0x19, 0x19, 0x1c, 0x19, 0x1c, 0x19, 0x1c, 0x12, 0x6b, 0x6b, 0x4b, 0x65, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x08, 0x05, 0x13, 0x19, 0x19, 0x19, 0x19, 0x16, 0x19, 0x16, 0x16, 0x16, 0x16, 0x16, 0x00, 0xc2, 0xde, 0xdf, 0xde, 0xdf, 0xde, 0xc2, 0xdf, 0x03, 0x0c, 0x0c, 0x0c, 0x06, 0x0c, 0x0c, 0x09, 0x0c, 0x09, 0x09, 0x0a, 0x0b, 0x0d, 0x13, 0x16, 0x19, 0x19, 0x19, 0x16, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x1c, 0x19, 0x1c, 0x1f, 0x1c, 0x1f, 0x1f, 0x1c, 0x1f, 0x1c, 0x1c, 0x1c, 0x1f, 0x1c, 0x1c, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x1c, 0x0e, 0x08, 0x0e, 0x10, 0xeb, 0xed, 0xe9, 0xed, 0xe9, 0xed,
0xca, 0xcb, 0xcc, 0x9e, 0x9e, 0xcc, 0xcc, 0x94, 0xcc, 0x94, 0xcc, 0xcc, 0x9c, 0xa0, 0xf3, 0x27, 0xf3, 0xcb, 0x9c, 0xab, 0xad, 0xaf, 0xaf, 0xb1, 0xaf, 0xb1, 0xaf, 0xb1, 0xb1, 0xb3, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb3, 0xf2, 0x1d, 0x22, 0x22, 0x29, 0x22, 0x29, 0x25, 0x2d, 0xf2, 0xf2, 0xf4, 0xda, 0x9e, 0xa3, 0xa4, 0x99, 0x9d, 0x9d, 0x9a, 0x9d, 0x9d, 0x9a, 0x9d, 0x9a, 0x9d, 0xa7, 0xa6, 0xa7, 0xa4, 0xa2, 0xa2, 0xa6, 0xa3, 0x17, 0x14, 0x17, 0x1a, 0x17, 0x17, 0x17, 0x17, 0x17, 0x17, 0x17, 0x17, 0x17, 0x1a, 0x1a, 0x1a, 0x1a, 0x1a, 0x1a, 0x0f, 0x14, 0x14, 0x14, 0x17, 0x14, 0x17, 0x1e, 0x1d, 0x22, 0xf2, 0xd9, 0x98, 0x98, 0x9b, 0xa2, 0xa1, 0x9a, 0x52, 0x92, 0x8f, 0x51, 0x8f, 0x51, 0x51, 0x50, 0x51, 0x8b, 0x51, 0x8b, 0x8f, 0x8b, 0x8d, 0x91, 0x87, 0xe7, 0x03, 0xe9, 0xe6, 0xe7, 0xe7, 0xe7, 0xeb, 0xe6, 0xc3, 0xd5, 0xc4, 0xc5, 0x64, 0x62, 0x62, 0x62, 0x62, 0x62, 0x62, 0x62, 0x61, 0x62, 0x61, 0x61, 0x5f, 0x5f, 0x5b, 0xe1, 0xd2, 0x54, 0x57, 0x59, 0x5b, 0x5d, 0x5d, 0x60, 0x60, 0x63, 0x63, 0x69, 0x69, 0x69, 0x6b, 0x6b, 0x73, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4d, 0x4d, 0x4d, 0x4d, 0x4c, 0x4d, 0x4c, 0x4e, 0x73, 0xe2, 0xe2, 0xe3, 0xe3, 0xe4, 0xe4, 0x03, 0xe4, 0x03, 0x03, 0xc6, 0x71, 0x69, 0x6c, 0x6d, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6d, 0xe9, 0xed, 0x7d, 0x7d, 0xd7, 0x7d, 0xd7, 0xc9, 0xd7, 0xc7, 0xd6, 0xc6, 0xc6, 0xc6, 0xc5, 0xe6, 0xd4, 0x64, 0x76, 0x6f, 0x73, 0x78, 0x73, 0x78, 0x4d, 0x4d, 0x78, 0x4d, 0x78, 0x4d, 0x4d, 0x83, 0x4e, 0x89, 0xe3, 0x53, 0xde, 0xc2, 0xc2, 0xc2, 0xd2, 0xd2, 0xd2, 0xd2, 0xd2, 0xc2, 0xc2, 0xd3, 0xe1, 0xc3, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5a, 0x61, 0x68, 0x72, 0x5d, 0x56, 0x58, 0x56, 0x58, 0x58, 0x58, 0x58, 0x58, 0x58, 0x58, 0x58, 0x58, 0x5c, 0x56, 0x5c, 0x77, 0x21, 0x1f, 0x1c, 0x19, 0x1c, 0x19, 0x19, 0x1e, 0x19, 0x1e, 0x1e, 0x18, 0x11, 0x11, 0xea, 0x5c, 0x4a, 0x5e, 0x5c, 0x5c, 0x5e, 0x5c, 0x5c, 0x5c, 0x5e, 0x5c, 0x5c, 0x5c, 0x63, 0x7a, 0x7e, 0x76, 0x7a, 0x76, 0x4b, 0x4b, 0x4b, 0x4b, 0x4b, 0x4b, 0x4b, 0x4b, 0x4b, 0x4b, 0x4b, 0x4c, 0x8b, 0x8b, 0x8b, 0x89, 0x8b, 0x89, 0x83, 0x89, 0x83, 0x8b, 0x83, 0x8b, 0x83, 0x8b, 0x83, 0x89, 0x8b, 0x12, 0x0d, 0x0f, 0x13, 0x13, 0x13, 0x13, 0x19, 0x1c, 0x19, 0x19, 0x19, 0x19, 0x19, 0x1c, 0x19, 0x1c, 0x15, 0x6b, 0x6b, 0x6b, 0x4b, 0x66, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x13, 0x1c, 0x19, 0x16, 0x19, 0x19, 0x19, 0x16, 0x19, 0x16, 0x13, 0x19, 0x02, 0xd2, 0xde, 0xdf, 0xde, 0xdf, 0xde, 0xdf, 0xde, 0xc2, 0x00, 0x07, 0x0c, 0x11, 0x09, 0x06, 0x0c, 0x09, 0x0c, 0x09, 0x09, 0x09, 0x08, 0x0b, 0x0d, 0x16, 0x16, 0x16, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x1c, 0x1c, 0x1c, 0x1f, 0x1c, 0x1f, 0x1c, 0x1f, 0x1f, 0x1c, 0x1c, 0x1f, 0x1c, 0x1f, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x1c, 0x0e, 0x0c, 0x08, 0x0e, 0x0e, 0xea, 0xed, 0xe9, 0xed, 0xe9,
0xe7, 0xed, 0xd6, 0xd8, 0xcb, 0xcc, 0x9e, 0x9e, 0x9e, 0xcc, 0xcc, 0x98, 0xcc, 0x9c, 0x9f, 0xf4, 0xf2, 0xd9, 0x9c, 0xa9, 0xb1, 0xaf, 0xaf, 0xaf, 0xb1, 0xaf, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb3, 0xb1, 0xb1, 0xb3, 0xb1, 0xb3, 0xb3, 0x31, 0x1d, 0x22, 0x22, 0x22, 0x29, 0x25, 0x29, 0x27, 0x2d, 0xf2, 0xf5, 0xf4, 0xcc, 0xa0, 0xa7, 0xa1, 0x9a, 0x9d, 0x9d, 0x9a, 0x9d, 0x9a, 0x9d, 0x9a, 0x9d, 0xa6, 0xa7, 0xa6, 0xa7, 0xa6, 0xa2, 0xa2, 0xa9, 0x94, 0x13, 0x17, 0x17, 0x17, 0x17, 0x17, 0x17, 0x17, 0x17, 0x17, 0x17, 0x17, 0x1a, 0x1a, 0x1a, 0x1a, 0x1a, 0x1a, 0x1a, 0x0f, 0x12, 0x14, 0x14, 0x14, 0x1d, 0x18, 0x1d, 0x1d, 0x1d, 0x25, 0xf2, 0xcb, 0x98, 0x9b, 0xa2, 0x9d, 0x9d, 0x95, 0x92, 0x51, 0x91, 0x51, 0x50, 0x51, 0x51, 0x51, 0x51, 0x8f, 0x51, 0x8f, 0x8b, 0x8f, 0x91, 0x85, 0xe5, 0xe5, 0xe7, 0xe7, 0xe9, 0xc6, 0xe6, 0xc5, 0xc3, 0xe1, 0xd5, 0xc5, 0xc4, 0x64, 0x62, 0x62, 0x62, 0x62, 0x62, 0x62, 0x61, 0x62, 0x61, 0x61, 0x5f, 0x5f, 0xc4, 0xd5, 0xd5, 0xd3, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0x55, 0x55, 0x57, 0x59, 0x59, 0x60, 0x5e, 0x63, 0x69, 0x6f, 0x78, 0x73, 0x4d, 0x4e, 0x4e, 0x4f, 0x4e, 0x4f, 0x4f, 0x4e, 0x4e, 0x4f, 0x4d, 0xe3, 0xe2, 0xe4, 0x03, 0xe4, 0xe4, 0xe4, 0xe4, 0x03, 0x07, 0x66, 0x71, 0x6c, 0x6d, 0x6c, 0x6d, 0x6c, 0x6d, 0x6c, 0x6d, 0x6d, 0xe7, 0x0c, 0xea, 0xc8, 0xc8, 0xc8, 0xc8, 0xc8, 0xc8, 0xd6, 0xc8, 0xd7, 0xd7, 0xd7, 0xd7, 0xd6, 0xd7, 0xee, 0x79, 0x5c, 0x54, 0x56, 0x58, 0x58, 0x56, 0x58, 0x58, 0x58, 0x58, 0x5d, 0x58, 0x58, 0x5c, 0x5c, 0x63, 0xe1, 0xdf, 0xd3, 0xdf, 0xd2, 0xd2, 0xc2, 0xd2, 0xc2, 0xc2, 0xd2, 0xc2, 0xc2, 0xd2, 0xe1, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0xc3, 0x5f, 0xc3, 0x5b, 0x5f, 0x68, 0x5e, 0x56, 0x58, 0x58, 0x56, 0x58, 0x56, 0x58, 0x56, 0x59, 0x56, 0x59, 0x56, 0x57, 0x56, 0x54, 0x55, 0x05, 0x16, 0x19, 0x1c, 0x1c, 0x1c, 0x1c, 0x18, 0x19, 0x18, 0x18, 0x1d, 0x12, 0x15, 0xe7, 0x4a, 0x5e, 0x5c, 0x5e, 0x5e, 0x5c, 0x5e, 0x5c, 0x5e, 0x5c, 0x5e, 0x5e, 0x5c, 0x5c, 0x5e, 0x76, 0x81, 0x76, 0x7a, 0x73, 0x4b, 0x73, 0x4b, 0x73, 0x73, 0x4b, 0x73, 0x4b, 0x4b, 0x4b, 0x4b, 0x4c, 0x8b, 0x8b, 0x89, 0x8b, 0x83, 0x8b, 0x83, 0x8b, 0x83, 0x8b, 0x83, 0x8b, 0x83, 0x8b, 0x8b, 0x89, 0x87, 0x0f, 0x13, 0x0f, 0x13, 0x13, 0x13, 0x13, 0x19, 0x1c, 0x19, 0x1c, 0x19, 0x1c, 0x19, 0x19, 0x1c, 0x15, 0x6b, 0x6b, 0x6b, 0x6b, 0x4b, 0x66, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x0d, 0x1c, 0x1c, 0x19, 0x19, 0x16, 0x19, 0x16, 0x19, 0x16, 0x13, 0x16, 0x04, 0xc2, 0xde, 0xde, 0xdf, 0xde, 0xdf, 0xde, 0xdf, 0xde, 0xc2, 0xde, 0xe0, 0x09, 0x11, 0x11, 0x09, 0x0c, 0x09, 0x0c, 0x0c, 0x0c, 0x09, 0x0c, 0x08, 0x0b, 0x0b, 0x0d, 0x0d, 0x13, 0x13, 0x19, 0x19, 0x19, 0x1c, 0x19, 0x1c, 0x19, 0x1c, 0x19, 0x1f, 0x1c, 0x1f, 0x1c, 0x1f, 0x1c, 0x1f, 0x1f, 0x1f, 0x1c, 0x1c, 0x1f, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x1f, 0x1f, 0x1f, 0x1f, 0x1c, 0x0e, 0x0a, 0x0a, 0x0e, 0x0e, 0x0e, 0xe9, 0xed, 0xed, 0xed,
0xea, 0xea, 0xe7, 0xe7, 0xea, 0xd6, 0xd7, 0xca, 0x94, 0xcc, 0xa0, 0x9e, 0x9e, 0x98, 0x9c, 0x9f, 0xcb, 0xf3, 0x98, 0xa6, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xb1, 0xaf, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb3, 0xf2, 0x1d, 0x22, 0x22, 0x29, 0x22, 0x29, 0x25, 0x2d, 0x27, 0xf2, 0xf3, 0xf4, 0xda, 0x9c, 0xa3, 0xa4, 0xa1, 0x9d, 0x9d, 0x9d, 0x9d, 0x9d, 0x9d, 0x9d, 0x9a, 0xa1, 0xa6, 0xa7, 0xa6, 0xa2, 0xa2, 0xa6, 0xa2, 0xa6, 0xf1, 0x13, 0x17, 0x1a, 0x17, 0x17, 0x17, 0x17, 0x17, 0x17, 0x18, 0x17, 0x1a, 0x1a, 0x1a, 0x1a, 0x1a, 0x1a, 0x1a, 0x17, 0x0f, 0x14, 0x14, 0x17, 0x14, 0x1d, 0x18, 0x1d, 0x20, 0x1d, 0x22, 0x25, 0xf3, 0x94, 0x9c, 0x9d, 0x9d, 0x99, 0x95, 0x51, 0x91, 0x91, 0x96, 0x91, 0x96, 0x51, 0x51, 0x51, 0x51, 0x8f, 0x51, 0x8b, 0x8f, 0x91, 0xc8, 0x03, 0xe7, 0xe7, 0xe6, 0xe7, 0xe6, 0xc3, 0xd5, 0xe1, 0xd5, 0xc4, 0xc5, 0xc5, 0xc5, 0x64, 0x62, 0x62, 0x64, 0x62, 0x61, 0x62, 0x5f, 0x62, 0x5f, 0x61, 0xd5, 0xc4, 0xd5, 0xc4, 0xd4, 0x55, 0x55, 0x57, 0x55, 0x57, 0x57, 0x55, 0x57, 0x55, 0xd2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0x53, 0x53, 0x53, 0x53, 0x54, 0x55, 0x56, 0x59, 0x58, 0x5e, 0x5e, 0x63, 0x63, 0x6b, 0x6b, 0x73, 0x4c, 0x71, 0xd5, 0x03, 0xe4, 0xe4, 0xe4, 0xe4, 0xe4, 0xe4, 0x03, 0x07, 0x6a, 0x6b, 0x6c, 0x6d, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6d, 0xea, 0x10, 0x09, 0xed, 0xc8, 0xc8, 0xc8, 0xd6, 0xc8, 0xc8, 0xd6, 0xc8, 0xd6, 0xc8, 0xd6, 0xd6, 0xd6, 0xeb, 0x87, 0x86, 0x5e, 0x54, 0x56, 0x58, 0x56, 0x58, 0x56, 0x56, 0x56, 0x56, 0x56, 0x56, 0x56, 0x54, 0x5c, 0x77, 0x68, 0xe1, 0xc3, 0xc4, 0xe1, 0xc3, 0xd4, 0xd4, 0xd4, 0x57, 0xd3, 0x57, 0xd2, 0x57, 0xd4, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0xc4, 0xc4, 0x61, 0x5f, 0x54, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0x55, 0xc2, 0xd2, 0x54, 0xde, 0x00, 0x08, 0x0d, 0x13, 0x13, 0x19, 0x19, 0x1e, 0x19, 0x1e, 0x18, 0x1d, 0x11, 0xe7, 0x5c, 0x5e, 0x5e, 0x5e, 0x5c, 0x5e, 0x5e, 0x5e, 0x5c, 0x5e, 0x5e, 0x5c, 0x5e, 0x5c, 0x5c, 0x5c, 0x76, 0x81, 0x78, 0x73, 0x4b, 0x4b, 0x73, 0x4b, 0x4b, 0x4b, 0x73, 0x4b, 0x4b, 0x73, 0x4b, 0x4b, 0x4d, 0x8b, 0x8b, 0x83, 0x89, 0x83, 0x8b, 0x83, 0x8b, 0x83, 0x8b, 0x83, 0x8b, 0x83, 0x8b, 0x83, 0x89, 0x85, 0x0d, 0x13, 0x13, 0x13, 0x13, 0x13, 0x16, 0x19, 0x1c, 0x19, 0x19, 0x19, 0x19, 0x19, 0x1c, 0x15, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x4b, 0x66, 0x04, 0x04, 0x04, 0x04, 0x04, 0x0b, 0x04, 0x04, 0x04, 0x19, 0x19, 0x1c, 0x19, 0x1c, 0x16, 0x16, 0x16, 0x19, 0x16, 0x16, 0x08, 0xd2, 0xde, 0xdf, 0xde, 0xdf, 0xde, 0xdf, 0xde, 0xdf, 0xde, 0xdf, 0xc2, 0xde, 0xe2, 0x0c, 0x11, 0x0c, 0x09, 0x0c, 0x0c, 0x0c, 0x09, 0x0c, 0x09, 0x0a, 0x0b, 0x0b, 0x0b, 0x08, 0x0b, 0x0b, 0x0d, 0x13, 0x13, 0x16, 0x16, 0x19, 0x1c, 0x1c, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x1c, 0x1f, 0x1c, 0x1c, 0x1f, 0x23, 0x1f, 0x23, 0x1f, 0x23, 0x1f, 0x23, 0x23, 0x1f, 0x1f, 0x1f, 0x1c, 0x0e, 0x0e, 0x0e, 0x0e, 0x0e, 0x08, 0x0e, 0x10, 0xed, 0xed,
0xea, 0xea, 0xea, 0xed, 0xea, 0xea, 0xea, 0xeb, 0xeb, 0xd7, 0xca, 0x8e, 0x9e, 0xa0, 0xa0, 0x9c, 0xa7, 0x94, 0xcb, 0xa2, 0xb1, 0xad, 0xb1, 0xaf, 0xaf, 0xaf, 0xb1, 0xaf, 0xb1, 0xb1, 0xb1, 0xb3, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb3, 0x31, 0x1d, 0x22, 0x22, 0x22, 0x25, 0x29, 0x25, 0x25, 0x27, 0xf2, 0xf2, 0xf4, 0xcb, 0x9e, 0xa3, 0xa6, 0xa9, 0x9d, 0x9d, 0x9d, 0x9d, 0x9d, 0x9d, 0x9d, 0x9a, 0xa1, 0xa9, 0xa6, 0xa6, 0xa6, 0xa4, 0xa2, 0xa4, 0xa4, 0xab, 0x1b, 0x13, 0x17, 0x17, 0x17, 0x17, 0x17, 0x17, 0x17, 0x17, 0x17, 0x1a, 0x1a, 0x1a, 0x1a, 0x1a, 0x1a, 0x1a, 0x1a, 0x14, 0x14, 0x14, 0x14, 0x18, 0x14, 0x1d, 0x18, 0x1d, 0x1d, 0x24, 0x22, 0x25, 0x27, 0xd9, 0x98, 0xa1, 0x9d, 0x95, 0x91, 0x91, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x51, 0x96, 0x51, 0x51, 0x51, 0x8b, 0x51, 0x51, 0xeb, 0x03, 0xe7, 0xe7, 0xe6, 0xc3, 0xc4, 0xe1, 0xd5, 0xe1, 0xd5, 0xc5, 0xc5, 0x64, 0x64, 0x64, 0x61, 0x62, 0x61, 0x62, 0x61, 0x62, 0x61, 0x64, 0xc5, 0xc4, 0xc5, 0xc4, 0xd5, 0xc5, 0xd4, 0x55, 0x57, 0x57, 0x57, 0x57, 0x57, 0x57, 0x57, 0x57, 0x57, 0x57, 0xd2, 0x57, 0xd2, 0xd2, 0x54, 0x53, 0x55, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x54, 0x56, 0xe4, 0x09, 0xd5, 0xe4, 0xe4, 0xe4, 0xe4, 0xe5, 0xe4, 0x03, 0x03, 0x6c, 0x71, 0x6c, 0x6c, 0x6d, 0x6c, 0x6d, 0x6c, 0x6d, 0xe7, 0x10, 0xe8, 0x09, 0xeb, 0xc8, 0xc8, 0xc8, 0xc8, 0xd6, 0xc8, 0xd6, 0xc8, 0xd6, 0xc8, 0xd6, 0xd6, 0xc8, 0x7f, 0x51, 0x87, 0x5c, 0x54, 0x58, 0x58, 0x59, 0x58, 0x58, 0x58, 0x58, 0x58, 0x56, 0x58, 0x56, 0x60, 0x72, 0x70, 0x68, 0xd4, 0xd4, 0xc3, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0x5a, 0x5f, 0x61, 0xc4, 0x61, 0x5f, 0xc4, 0x61, 0xc4, 0x61, 0xc4, 0x61, 0xc5, 0x61, 0xc5, 0x64, 0x64, 0x64, 0x64, 0xc3, 0xd4, 0xd3, 0xc2, 0xc2, 0xd2, 0xc2, 0xd2, 0x55, 0xc2, 0x55, 0xc2, 0x55, 0xc2, 0x55, 0xc2, 0xc2, 0xdf, 0xde, 0x00, 0x02, 0x08, 0x08, 0x08, 0x0f, 0x13, 0x18, 0x16, 0x1e, 0x1e, 0x17, 0x68, 0x5c, 0x4a, 0x5e, 0x5e, 0x5e, 0x5e, 0x5c, 0x5e, 0x5c, 0x5e, 0x5c, 0x5e, 0x4a, 0x5c, 0x4a, 0x5c, 0x5c, 0x71, 0x81, 0x4c, 0x4b, 0x4b, 0x4b, 0x4b, 0x4b, 0x4b, 0x4b, 0x73, 0x4b, 0x4b, 0x4b, 0x4b, 0x4b, 0x4d, 0x50, 0x8b, 0x83, 0x83, 0x8b, 0x83, 0x8b, 0x83, 0x8b, 0x83, 0x86, 0x89, 0x86, 0x8b, 0x89, 0x89, 0x80, 0x0d, 0x13, 0x13, 0x13, 0x13, 0x13, 0x16, 0x19, 0x1c, 0x19, 0x1c, 0x19, 0x19, 0x1f, 0x11, 0x6f, 0x6b, 0x6b, 0x71, 0x6b, 0x6b, 0x4b, 0x6a, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x16, 0x19, 0x19, 0x1c, 0x19, 0x1c, 0x19, 0x19, 0x16, 0x16, 0x16, 0x0b, 0xde, 0xd2, 0xde, 0xdf, 0xde, 0xdf, 0xde, 0xdf, 0xde, 0xdf, 0xde, 0xdf, 0xde, 0xd2, 0xde, 0x07, 0x0c, 0x09, 0x0c, 0x09, 0x0c, 0x0c, 0x0c, 0x0c, 0x10, 0x0c, 0x08, 0x0d, 0x0b, 0x0f, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0d, 0x0d, 0x16, 0x1c, 0x1f, 0x1c, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x1f, 0x23, 0x1f, 0x1f, 0x1f, 0x0e, 0x0c, 0x0a, 0x0e, 0x0e, 0x0e, 0x0e, 0x0b, 0x11, 0xed,
0xea, 0xea, 0xea, 0xea, 0xeb, 0xed, 0xeb, 0xed, 0xeb, 0xeb, 0xeb, 0xd6, 0x80, 0x88, 0x93, 0x9c, 0x9f, 0xa7, 0x9c, 0x9c, 0xad, 0xaf, 0xad, 0xaf, 0xaf, 0xaf, 0xaf, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb3, 0xb1, 0xb1, 0xb3, 0xf2, 0x1d, 0x22, 0x22, 0x25, 0x22, 0x25, 0x25, 0x27, 0x27, 0x2d, 0xf2, 0xf3, 0xf4, 0xcc, 0xa0, 0xa7, 0xa6, 0xa6, 0x9d, 0x9d, 0x9d, 0x9d, 0x9d, 0x9d, 0x9d, 0x9d, 0xa9, 0xa6, 0xa6, 0xa4, 0xa6, 0xa4, 0xa4, 0xa1, 0xa4, 0x9f, 0x1a, 0x13, 0x1a, 0x17, 0x17, 0x17, 0x17, 0x17, 0x18, 0x17, 0x1a, 0x1a, 0x1a, 0x1a, 0x1a, 0x1a, 0x1a, 0x1a, 0x1a, 0x0f, 0x14, 0x14, 0x14, 0x17, 0x18, 0x17, 0x1d, 0x1d, 0x1d, 0x24, 0x22, 0x25, 0x27, 0xf2, 0xcb, 0x9b, 0x9a, 0x96, 0x9a, 0x96, 0x9a, 0x96, 0x9a, 0x96, 0x96, 0x96, 0x96, 0x96, 0x91, 0x51, 0x51, 0x8f, 0x50, 0x8d, 0xe4, 0x07, 0xe6, 0xd5, 0xc3, 0xe1, 0xd5, 0xc3, 0xd5, 0xd5, 0xc5, 0xc5, 0xc5, 0x64, 0x64, 0x65, 0x64, 0x62, 0x61, 0x64, 0x62, 0x61, 0xc5, 0xd5, 0xc5, 0xc5, 0xc4, 0xc4, 0xc4, 0xd5, 0xc3, 0x55, 0x57, 0x57, 0x57, 0x57, 0x57, 0x57, 0x57, 0x55, 0x57, 0x57, 0x57, 0x57, 0x5a, 0x57, 0x55, 0x54, 0x54, 0x55, 0x54, 0xc2, 0x54, 0x54, 0xc2, 0x54, 0x53, 0x54, 0x54, 0xc2, 0x53, 0x53, 0x05, 0x17, 0x0a, 0xe5, 0xd5, 0xe4, 0xe4, 0xe4, 0xe5, 0xe4, 0x07, 0xe4, 0x6c, 0x71, 0x6c, 0x6c, 0x6d, 0x6c, 0x6d, 0x6c, 0xea, 0x10, 0xe8, 0x10, 0x09, 0xed, 0x7d, 0xc8, 0xc8, 0xc8, 0xc8, 0xc8, 0xc8, 0xd6, 0xc8, 0xd6, 0xd6, 0xc8, 0x81, 0x86, 0x8d, 0x8d, 0x5e, 0x54, 0x58, 0x58, 0x58, 0x58, 0x58, 0x59, 0x58, 0x58, 0x58, 0x56, 0x60, 0x72, 0x6e, 0x70, 0x6a, 0xc3, 0xe1, 0xc3, 0xc3, 0xc4, 0xc3, 0xc3, 0xc3, 0xc4, 0x5f, 0xc5, 0x61, 0x61, 0x61, 0x5f, 0x61, 0x5f, 0x61, 0x61, 0x61, 0x5f, 0x61, 0x61, 0x61, 0x61, 0x61, 0x61, 0x61, 0xc4, 0xc3, 0xc3, 0xc3, 0xd4, 0x5a, 0xc2, 0x55, 0xc2, 0x55, 0x55, 0xc2, 0x55, 0xc2, 0x55, 0xc2, 0x55, 0xc2, 0xc2, 0x00, 0xdf, 0xde, 0x03, 0x05, 0x0a, 0x05, 0x06, 0x0a, 0x0e, 0x14, 0x17, 0x1d, 0xc6, 0x4a, 0x5e, 0x4a, 0x5e, 0x4a, 0x5c, 0x5e, 0x5e, 0x5e, 0x5e, 0x5e, 0x5e, 0x5c, 0x5e, 0x5e, 0x5e, 0x5c, 0x5c, 0x69, 0x6f, 0x6f, 0x4b, 0x73, 0x4d, 0x4d, 0x4c, 0x4d, 0x4c, 0x4e, 0x4c, 0x4e, 0x4c, 0x4e, 0x4c, 0x4e, 0x50, 0x91, 0x50, 0x50, 0x50, 0x50, 0x91, 0x50, 0x91, 0x50, 0x50, 0x91, 0x50, 0x51, 0x91, 0x91, 0x88, 0x16, 0x13, 0x13, 0x13, 0x13, 0x13, 0x16, 0x1c, 0x19, 0x19, 0x19, 0x19, 0x1c, 0x11, 0x6f, 0x6b, 0x6b, 0x6b, 0x6b, 0x71, 0x6b, 0x4b, 0x6c, 0x04, 0x04, 0x04, 0x04, 0x04, 0x0b, 0x04, 0x13, 0x19, 0x19, 0x1c, 0x19, 0x1c, 0x19, 0x19, 0x19, 0x16, 0x16, 0x0d, 0xde, 0xd2, 0xde, 0xdf, 0xde, 0xdf, 0xde, 0xdf, 0xdf, 0xdf, 0xde, 0xdf, 0xde, 0xde, 0xd2, 0xc2, 0x08, 0x0e, 0x0a, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x09, 0x0c, 0x10, 0x0a, 0x08, 0x0d, 0x0b, 0x0f, 0x08, 0x0f, 0x0b, 0x0f, 0x0b, 0x0b, 0x0b, 0x13, 0x1c, 0x19, 0x1c, 0x19, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x26, 0x26, 0x23, 0x1f, 0x23, 0x1f, 0x23, 0x1f, 0x23, 0x1f, 0x1f, 0x1f, 0x1c, 0x0e, 0x0e, 0x0e, 0x0e, 0x0e, 0x0e, 0x0e, 0x0e, 0x0f, 0x0e,
0xea, 0xea, 0xea, 0xea, 0xed, 0xeb, 0xed, 0xeb, 0xed, 0xd6, 0xd6, 0xd6, 0xd6, 0x7d, 0x7d, 0x85, 0x92, 0x9a, 0xa1, 0xa1, 0xad, 0xaf, 0xaf, 0xaf, 0xb1, 0xaf, 0xb1, 0xaf, 0xb1, 0xb1, 0xb1, 0xb1, 0xb3, 0xb3, 0xb3, 0xb1, 0xb1, 0xb5, 0xf3, 0x1d, 0x22, 0x22, 0x22, 0x25, 0x25, 0x29, 0x25, 0x2d, 0x27, 0xf2, 0xf3, 0xf4, 0xcb, 0x9e, 0xa2, 0xa6, 0xa6, 0xa4, 0x9d, 0x9d, 0xa1, 0x9d, 0xa1, 0x9d, 0x9d, 0xa4, 0xa9, 0xa6, 0xa6, 0xa4, 0xa4, 0xa4, 0xa4, 0xa1, 0xa4, 0x98, 0x13, 0x18, 0x17, 0x17, 0x17, 0x17, 0x17, 0x17, 0x17, 0x1a, 0x1a, 0x1a, 0x1a, 0x1a, 0x1a, 0x1a, 0x1a, 0x1a, 0x1a, 0x0f, 0x14, 0x17, 0x14, 0x18, 0x17, 0x18, 0x18, 0x1d, 0x1d, 0x1d, 0x25, 0x25, 0xf2, 0x27, 0xcb, 0x9a, 0x9d, 0x9d, 0x9d, 0x9d, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x96, 0x96, 0x96, 0x96, 0x96, 0x91, 0x51, 0x91, 0x7b, 0x03, 0xe4, 0xc4, 0xe1, 0xc4, 0xd5, 0xd5, 0xe3, 0xc5, 0xd5, 0xc5, 0xc5, 0xc5, 0x65, 0x64, 0x65, 0x64, 0x65, 0x61, 0x62, 0x64, 0xd5, 0xc5, 0xc5, 0xd5, 0xc5, 0xc5, 0xc4, 0xd5, 0xd5, 0xc4, 0x55, 0x57, 0x57, 0x57, 0x57, 0x57, 0x57, 0x57, 0x57, 0x57, 0x57, 0xd3, 0x57, 0xd3, 0x57, 0xc2, 0x54, 0x54, 0x54, 0x54, 0x54, 0x55, 0x54, 0x54, 0x55, 0x54, 0x55, 0x54, 0x54, 0x55, 0x11, 0x0e, 0x0f, 0x0e, 0x0c, 0xe4, 0xe6, 0xe4, 0xe4, 0xe5, 0xe4, 0x06, 0xe4, 0x6d, 0x6d, 0x6d, 0x6c, 0x6d, 0x6c, 0x6d, 0xe7, 0x10, 0x10, 0xe8, 0x10, 0x10, 0xeb, 0xc8, 0xc8, 0xc8, 0xd6, 0xc8, 0xd6, 0xc8, 0xd6, 0xc8, 0xd6, 0xc8, 0x81, 0x86, 0x81, 0x8b, 0x8b, 0x5e, 0x54, 0x58, 0x58, 0x58, 0x58, 0x58, 0x58, 0x58, 0x58, 0x58, 0x60, 0x72, 0x6e, 0x6e, 0x72, 0x6e, 0xc4, 0xd4, 0xc3, 0xc3, 0xc4, 0xc3, 0xc4, 0xc3, 0xc3, 0xc3, 0xc4, 0x61, 0xc4, 0x61, 0xc4, 0x61, 0xc4, 0xc4, 0x61, 0xc4, 0x61, 0xc4, 0x61, 0xc4, 0x61, 0xc5, 0x61, 0xc5, 0xc3, 0xc3, 0xc3, 0xc4, 0xc3, 0xc3, 0x55, 0x55, 0xc2, 0xc2, 0x57, 0xc2, 0x55, 0xc2, 0xd2, 0xc2, 0xc2, 0xd2, 0xde, 0xe0, 0xdf, 0xdf, 0xe0, 0x07, 0x06, 0x07, 0x03, 0x03, 0x03, 0x03, 0x09, 0xc5, 0x5d, 0x5d, 0x5b, 0x5d, 0x5b, 0x5d, 0x5b, 0x5d, 0x5b, 0x5b, 0x5b, 0x5b, 0x5b, 0x5b, 0x5b, 0x5b, 0x5b, 0x57, 0x57, 0x5b, 0xc2, 0x54, 0x55, 0x59, 0x59, 0x5d, 0x5d, 0x60, 0x60, 0x63, 0x63, 0x67, 0x63, 0x69, 0x69, 0x6b, 0x7a, 0x78, 0x7a, 0x78, 0x7a, 0x78, 0x7a, 0x78, 0x7a, 0x78, 0x7a, 0x7e, 0x76, 0x7e, 0x78, 0x4e, 0xe9, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x19, 0x1c, 0x19, 0x19, 0x19, 0x1c, 0x11, 0x6b, 0x6f, 0x6b, 0x6b, 0x71, 0x6b, 0x6b, 0x6b, 0x4b, 0x6c, 0x04, 0x04, 0x0b, 0x04, 0x04, 0x04, 0x0b, 0x19, 0x16, 0x19, 0x1c, 0x19, 0x19, 0x19, 0x19, 0x19, 0x16, 0x16, 0x00, 0xc2, 0xdf, 0xde, 0xde, 0xd2, 0xde, 0xd2, 0xde, 0xd2, 0xde, 0xc2, 0xde, 0xc2, 0xde, 0x53, 0x01, 0x16, 0x05, 0x04, 0x08, 0x0a, 0x0a, 0x0a, 0x0c, 0x0c, 0x0c, 0x10, 0x10, 0x0a, 0x0b, 0x0b, 0x0f, 0x08, 0x0f, 0x0b, 0x0d, 0x0f, 0x0d, 0x0d, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x1c, 0x16, 0x08, 0x19, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x1f, 0x23, 0x1f, 0x1f, 0x0e, 0x0c, 0x0e, 0x0e, 0x0e, 0x0e, 0x0e, 0x0e, 0x0e, 0x0f,
0xea, 0xea, 0xea, 0xed, 0xea, 0xed, 0xea, 0xed, 0xed, 0xd6, 0xed, 0xc8, 0xd6, 0x7d, 0x7d, 0x82, 0x87, 0x50, 0x91, 0x91, 0x99, 0xb1, 0xad, 0xad, 0xad, 0xaf, 0xad, 0xaf, 0xaf, 0xb1, 0xaf, 0xaf, 0xb1, 0xaf, 0xb1, 0xaf, 0xb1, 0xb3, 0xf2, 0x1d, 0x25, 0x22, 0x25, 0x22, 0x25, 0x25, 0x27, 0x27, 0x27, 0xf2, 0xf2, 0xf4, 0xda, 0x98, 0xa0, 0xa4, 0xa6, 0xa9, 0xa4, 0x9d, 0x9d, 0x9d, 0xa1, 0xa1, 0x9d, 0xa4, 0xa6, 0xa6, 0xa6, 0xa6, 0xa4, 0xa4, 0xa4, 0xa1, 0xa1, 0xa4, 0xf1, 0x13, 0x17, 0x17, 0x17, 0x17, 0x17, 0x18, 0x17, 0x1a, 0x1a, 0x1a, 0x1a, 0x1a, 0x1a, 0x1a, 0x1a, 0x1a, 0x1a, 0x17, 0x0d, 0x14, 0x14, 0x17, 0x18, 0x17, 0x1d, 0x18, 0x1d, 0x1d, 0x24, 0x22, 0x25, 0xf2, 0x95, 0x96, 0x9a, 0x99, 0x9d, 0x9d, 0x9d, 0x9d, 0x9d, 0x9d, 0x9d, 0x9d, 0x9d, 0x9d, 0x9d, 0x9a, 0x9d, 0x9a, 0x9a, 0x9d, 0x7c, 0xe1, 0xe1, 0xc4, 0xd5, 0xd5, 0xd5, 0xd5, 0xd5, 0xc5, 0xe6, 0x64, 0x64, 0x64, 0x65, 0x64, 0x65, 0x65, 0x65, 0x65, 0xd5, 0xc5, 0xc5, 0xc5, 0xc5, 0xc5, 0xc5, 0xc5, 0xc4, 0xc5, 0xd5, 0xd5, 0x57, 0x57, 0x57, 0x57, 0x57, 0x57, 0x57, 0x57, 0x57, 0x57, 0x5a, 0xd3, 0x57, 0xd3, 0x5a, 0x54, 0x54, 0x55, 0x55, 0x54, 0x55, 0x54, 0x55, 0x54, 0x54, 0x55, 0x54, 0x53, 0xd4, 0x12, 0x0e, 0x0e, 0x12, 0x0f, 0x0e, 0x09, 0xe6, 0xe4, 0xe6, 0xe4, 0xe5, 0x02, 0xe6, 0x71, 0x6d, 0x6c, 0x6c, 0x6d, 0x6c, 0xea, 0x10, 0xe8, 0xe8, 0x10, 0xe8, 0x0c, 0xd6, 0xc8, 0xc8, 0xc8, 0xd6, 0xc8, 0xd6, 0xc8, 0xd6, 0xc8, 0xc8, 0x87, 0x86, 0x81, 0x86, 0x87, 0x8f, 0x5e, 0x54, 0x58, 0x58, 0x58, 0x58, 0x58, 0x58, 0x58, 0x56, 0x63, 0x72, 0x6e, 0x6a, 0x6e, 0x70, 0x6e, 0x65, 0xe0, 0xc3, 0xc3, 0xc4, 0xc3, 0xc4, 0xc3, 0xc3, 0x61, 0x61, 0x61, 0x61, 0x61, 0xc4, 0x61, 0xc4, 0x61, 0x61, 0xc4, 0x61, 0xc4, 0x61, 0xc5, 0x61, 0x61, 0xc3, 0xc3, 0xc3, 0xc4, 0xc3, 0xc3, 0xc3, 0xc4, 0xd4, 0x57, 0xc2, 0xc2, 0x55, 0xc2, 0x55, 0xc2, 0x55, 0xc2, 0xc2, 0xdf, 0xe0, 0xe0, 0xdf, 0xe0, 0xdf, 0x03, 0x07, 0x03, 0xe3, 0xe3, 0xe3, 0xc3, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0x5a, 0xd4, 0x5a, 0xd4, 0x5a, 0x5a, 0xd3, 0x5a, 0x5a, 0x5a, 0x5a, 0xd4, 0xe1, 0xc2, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0xc2, 0x53, 0xc2, 0xc2, 0xc2, 0xc2, 0xe0, 0x59, 0x58, 0x59, 0x59, 0x59, 0x59, 0x59, 0x59, 0x59, 0x59, 0x59, 0x59, 0x59, 0x59, 0x58, 0xe1, 0x13, 0x13, 0x13, 0x18, 0x13, 0x13, 0x13, 0x19, 0x19, 0x19, 0x19, 0x1c, 0x11, 0x6f, 0x6b, 0x71, 0x6b, 0x6b, 0x71, 0x6b, 0x71, 0x6b, 0x4b, 0x6c, 0x04, 0x0b, 0x04, 0x0b, 0x04, 0x0b, 0x16, 0x19, 0x16, 0x19, 0x1c, 0x19, 0x19, 0x19, 0x16, 0x19, 0x16, 0x00, 0xc2, 0xde, 0xc2, 0xde, 0xc2, 0xde, 0xd2, 0xde, 0xc2, 0xde, 0xd2, 0xde, 0xd2, 0xde, 0xc2, 0xde, 0x0d, 0x16, 0x08, 0x05, 0x08, 0x08, 0x0b, 0x08, 0x08, 0x08, 0x0a, 0x0a, 0x0c, 0x0c, 0x0e, 0x0d, 0x0f, 0x0f, 0x0f, 0x0f, 0x0b, 0x0f, 0x0b, 0x16, 0x19, 0x19, 0x19, 0x19, 0x19, 0x1c, 0x19, 0x1c, 0x1c, 0x00, 0xde, 0x04, 0x19, 0x1c, 0x1c, 0x1f, 0x23, 0x23, 0x23, 0x23, 0x1f, 0x1c, 0x0e, 0x0e, 0x0e, 0x0e, 0x0e, 0x0e, 0x0e, 0x0e, 0x0e, 0x0e,
0xe9, 0xea, 0xea, 0xea, 0xea, 0xea, 0xed, 0xeb, 0xed, 0xed, 0xed, 0xd6, 0xd6, 0xd6, 0x7d, 0x7d, 0x82, 0x8d, 0x50, 0x91, 0x89, 0x9d, 0xb1, 0xab, 0xab, 0xad, 0xad, 0xaa, 0xaa, 0xad, 0xaa, 0xaa, 0xaf, 0xad, 0xaf, 0xaa, 0xad, 0xb1, 0xda, 0x17, 0x24, 0x25, 0x25, 0x25, 0x25, 0x25, 0x29, 0x27, 0x2d, 0xf2, 0xf2, 0xf3, 0xf4, 0xcc, 0x9c, 0xa2, 0xa4, 0xa6, 0xa6, 0xa4, 0x9d, 0xa1, 0xa1, 0xa1, 0xa1, 0xa4, 0xa6, 0xa9, 0xa6, 0xa4, 0xa4, 0xa4, 0xa4, 0xa4, 0xa1, 0xa1, 0xa6, 0xef, 0x13, 0x1d, 0x17, 0x1d, 0x17, 0x17, 0x1a, 0x1a, 0x1a, 0x1a, 0x1a, 0x1a, 0x1a, 0x1a, 0x1a, 0x1a, 0x1a, 0x1a, 0x14, 0x0f, 0x14, 0x14, 0x17, 0x18, 0x14, 0x1d, 0x18, 0x1d, 0x1d, 0x24, 0x22, 0xd9, 0x96, 0x91, 0x96, 0x92, 0x93, 0x92, 0x97, 0x92, 0x97, 0x92, 0x97, 0x92, 0x97, 0x92, 0x92, 0x93, 0x92, 0x8d, 0x8c, 0x87, 0x74, 0xc3, 0xc4, 0xc4, 0xc4, 0x61, 0xc5, 0xc5, 0x64, 0x64, 0x64, 0x65, 0x65, 0x64, 0x68, 0x65, 0x68, 0x68, 0x66, 0xe5, 0x03, 0xe4, 0xd5, 0xc5, 0xc4, 0xc5, 0xc5, 0xc5, 0xc5, 0xc5, 0xc4, 0xc5, 0xc4, 0x5a, 0x55, 0x57, 0x5a, 0x57, 0x57, 0x5a, 0x57, 0x5a, 0xd3, 0x5a, 0x5a, 0xd3, 0xd3, 0xd3, 0x54, 0x54, 0x54, 0x55, 0x54, 0x55, 0x54, 0x55, 0x54, 0x55, 0x54, 0x54, 0xe2, 0x12, 0x0c, 0x0e, 0x0e, 0x0e, 0x12, 0x0f, 0x0c, 0x09, 0xe4, 0xe4, 0xe4, 0x07, 0x03, 0xc6, 0x71, 0x6d, 0x6c, 0x6c, 0x6d, 0xe7, 0x10, 0xe8, 0xe8, 0xe8, 0x10, 0x10, 0x09, 0xd6, 0x77, 0xd6, 0xc8, 0xd6, 0xc8, 0xd6, 0xc8, 0xd6, 0x7d, 0x81, 0x81, 0x86, 0x7e, 0x86, 0x86, 0x8f, 0x5e, 0x54, 0x58, 0x58, 0x58, 0x58, 0x58, 0x58, 0x58, 0x62, 0x72, 0x6a, 0x6e, 0x6e, 0x6e, 0x6e, 0x74, 0x65, 0xc3, 0xd4, 0xc3, 0xc3, 0xc3, 0xc4, 0xc3, 0xc3, 0x61, 0xc4, 0x61, 0xc4, 0x61, 0xc4, 0x61, 0xc4, 0x61, 0xc4, 0x61, 0xc4, 0x61, 0xc4, 0x64, 0xc4, 0xc4, 0xc3, 0xc4, 0xc4, 0xc3, 0xc4, 0xc3, 0xc4, 0xc4, 0xc4, 0x5a, 0x57, 0xc2, 0xc2, 0xd2, 0x55, 0xc2, 0xd2, 0xc2, 0xdf, 0x00, 0xe0, 0xdf, 0xe0, 0xdf, 0xdf, 0xe1, 0x03, 0xe4, 0xe3, 0xe3, 0xe1, 0xe1, 0xe1, 0xc3, 0x5f, 0xd4, 0x5f, 0xd4, 0x5f, 0xd4, 0x5f, 0xd4, 0x5f, 0xd4, 0x5f, 0xd4, 0x5f, 0xd4, 0x5b, 0xd4, 0x5f, 0xc3, 0xe1, 0xd5, 0xd2, 0xc2, 0x53, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0x55, 0xc2, 0x55, 0xc2, 0xe0, 0x03, 0x5b, 0x58, 0x5d, 0x59, 0x5d, 0x59, 0x5d, 0x59, 0x5b, 0x59, 0x5b, 0x59, 0x5b, 0x56, 0xe1, 0x16, 0x13, 0x0f, 0x13, 0x13, 0x13, 0x0d, 0x13, 0x1c, 0x19, 0x19, 0x1c, 0xec, 0x6f, 0x6f, 0x6b, 0x71, 0x6f, 0x6b, 0x6b, 0x6b, 0x71, 0x6b, 0x4b, 0x6d, 0x04, 0x0b, 0x04, 0x04, 0x04, 0x13, 0x19, 0x16, 0x16, 0x1c, 0x19, 0x19, 0x19, 0x16, 0x16, 0x19, 0xe2, 0x54, 0xc2, 0xde, 0xc2, 0xde, 0xc2, 0xde, 0xd2, 0xde, 0xd2, 0xde, 0xc2, 0xde, 0xde, 0xde, 0x53, 0x05, 0x1f, 0x0d, 0x08, 0x05, 0x08, 0x08, 0x08, 0x08, 0x08, 0x0b, 0x0b, 0x08, 0x08, 0x0e, 0x08, 0x0d, 0x0b, 0x08, 0x0f, 0x0f, 0x0f, 0x0b, 0x13, 0x16, 0x16, 0x19, 0x1c, 0x19, 0x19, 0x19, 0x19, 0x1f, 0x04, 0xde, 0xde, 0x02, 0x0b, 0x16, 0x13, 0x16, 0x19, 0x1c, 0x1f, 0x26, 0x1f, 0x12, 0x0c, 0x11, 0x0e, 0x0e, 0x0e, 0x0e, 0x12, 0x0e, 0x12,
0x03, 0xe7, 0xed, 0xea, 0xea, 0xed, 0xea, 0xed, 0xeb, 0xed, 0xd6, 0xed, 0xd6, 0xd6, 0xd7, 0x7d, 0x82, 0x85, 0x51, 0x91, 0x89, 0x50, 0xa1, 0xb3, 0xad, 0xad, 0xaa, 0xad, 0xad, 0xaa, 0xad, 0xad, 0xaa, 0xaa, 0xaa, 0xad, 0xaa, 0xab, 0xab, 0xd9, 0x14, 0x1a, 0x25, 0x25, 0x25, 0x25, 0x27, 0x27, 0x27, 0x27, 0xf2, 0xf3, 0xf4, 0xcb, 0x9e, 0x9f, 0xa6, 0xa4, 0xa6, 0xa6, 0xa1, 0xa1, 0x9d, 0xa4, 0xa1, 0xa4, 0xa6, 0xa6, 0xa6, 0xa6, 0xa4, 0xa4, 0xa1, 0xa4, 0xa1, 0xa1, 0xa1, 0xa2, 0x17, 0x13, 0x17, 0x17, 0x17, 0x18, 0x1a, 0x1a, 0x1a, 0x1a, 0x1a, 0x1a, 0x1a, 0x1a, 0x1a, 0x1a, 0x1a, 0x1a, 0x1a, 0x14, 0x14, 0x14, 0x14, 0x17, 0x18, 0x17, 0x1d, 0x1d, 0x1d, 0x1d, 0x25, 0x90, 0x91, 0x91, 0x96, 0x91, 0x8f, 0x8a, 0x8c, 0x8c, 0x8c, 0x87, 0x8a, 0x85, 0x82, 0x7f, 0x7c, 0x79, 0x74, 0x6e, 0x68, 0xc4, 0xc3, 0xc3, 0x61, 0x61, 0xc4, 0x61, 0xc5, 0x61, 0x64, 0x64, 0x65, 0xc6, 0x65, 0x68, 0x65, 0x68, 0x65, 0x68, 0x68, 0x02, 0x06, 0x09, 0x07, 0xe5, 0xe4, 0xc5, 0xc4, 0x61, 0xc5, 0xc5, 0xc4, 0xc5, 0xd5, 0xc5, 0x5a, 0x57, 0x57, 0x57, 0x57, 0x57, 0x57, 0xd3, 0x5a, 0xd3, 0xd3, 0x5a, 0xd3, 0x5a, 0xd3, 0x54, 0x54, 0x55, 0x55, 0x54, 0x55, 0x54, 0x55, 0x54, 0x54, 0x54, 0x06, 0x12, 0x0e, 0x0e, 0x0e, 0x0e, 0x0e, 0x0e, 0x12, 0x0f, 0x0e, 0x09, 0xe6, 0xe4, 0xe5, 0x02, 0x68, 0x71, 0x6d, 0x6c, 0x6d, 0xe9, 0x10, 0xe8, 0x10, 0xe8, 0x10, 0xe8, 0x10, 0x10, 0xd6, 0xc8, 0xc8, 0xc8, 0xc8, 0xc8, 0xc8, 0xc8, 0x7d, 0x81, 0x86, 0x81, 0x86, 0x81, 0x81, 0x8b, 0x8f, 0x63, 0x54, 0x58, 0x58, 0x58, 0x58, 0x58, 0x58, 0x63, 0x72, 0x6e, 0x6a, 0x6e, 0x6a, 0x6e, 0x6e, 0x74, 0x6e, 0xe1, 0xd4, 0xc3, 0xc3, 0xc3, 0xc3, 0xc4, 0x61, 0x61, 0x61, 0x61, 0xc4, 0x61, 0xc5, 0x61, 0xc4, 0x61, 0xc4, 0x61, 0xc4, 0x61, 0x61, 0xc4, 0xc3, 0xd5, 0xc3, 0xd5, 0xc3, 0xd5, 0xc4, 0xd5, 0xc3, 0xd5, 0xd5, 0xc4, 0xd4, 0x55, 0xc2, 0xc2, 0xd2, 0xc2, 0x55, 0xd2, 0xe0, 0xdf, 0xe0, 0xdf, 0xe0, 0xdf, 0xdf, 0xe0, 0xe3, 0x03, 0xe3, 0xe3, 0xe3, 0xe1, 0xc3, 0xc3, 0xc3, 0xd4, 0x5f, 0xd4, 0xc3, 0xd4, 0x5f, 0xd4, 0x5f, 0xd4, 0x5f, 0xd4, 0x5f, 0xd4, 0x5f, 0xd4, 0x5f, 0xc3, 0xd5, 0xd5, 0xe1, 0xc2, 0x53, 0x53, 0xc2, 0xc2, 0xc2, 0xc2, 0x54, 0xc2, 0xc2, 0xc2, 0x53, 0xd2, 0x02, 0x03, 0xd4, 0x58, 0x5d, 0x59, 0x5d, 0x59, 0x5b, 0x59, 0x5b, 0x59, 0x5b, 0x5b, 0x58, 0xe1, 0x16, 0x19, 0x0d, 0x12, 0x0f, 0x13, 0x13, 0x0d, 0x13, 0x1c, 0x19, 0x1c, 0x11, 0x6f, 0x6b, 0x71, 0x6b, 0x6b, 0x71, 0x6b, 0x71, 0x6b, 0x71, 0x6b, 0x4b, 0x69, 0x08, 0x0b, 0x0b, 0x04, 0x0d, 0x1c, 0x16, 0x16, 0x16, 0x1c, 0x19, 0x16, 0x19, 0x13, 0x19, 0x02, 0x56, 0x56, 0x55, 0xd2, 0xde, 0xde, 0xd2, 0xde, 0xc2, 0xde, 0xd2, 0xde, 0xd2, 0xde, 0xd2, 0xc2, 0x00, 0x16, 0x16, 0x13, 0x08, 0x08, 0x08, 0x08, 0x08, 0x0b, 0x08, 0x0b, 0x08, 0x0b, 0x0b, 0x08, 0x0d, 0x1c, 0x13, 0x08, 0x08, 0x0f, 0x0f, 0x0f, 0x16, 0x16, 0x16, 0x1c, 0x19, 0x1c, 0x19, 0x1c, 0x1f, 0x0f, 0x00, 0x00, 0xde, 0x00, 0x01, 0x13, 0x16, 0x0d, 0x0d, 0x13, 0x16, 0x19, 0x0e, 0x05, 0x0e, 0x0a, 0x0e, 0x08, 0x0e, 0x08, 0x0e, 0x08,
0xcc, 0xe5, 0xe5, 0xed, 0xea, 0xea, 0xed, 0xea, 0xed, 0xed, 0xed, 0xd6, 0xed, 0xd6, 0xd6, 0xd7, 0x80, 0x82, 0x8c, 0x91, 0x50, 0x50, 0x50, 0xa2, 0xaf, 0xad, 0xab, 0xad, 0xaa, 0xad, 0xaf, 0xaa, 0xad, 0xaa, 0xad, 0xaa, 0xab, 0xad, 0xa9, 0xa9, 0xd9, 0x14, 0x1a, 0x25, 0x25, 0x27, 0x25, 0x27, 0x25, 0xf2, 0xf2, 0xf3, 0xf4, 0xcb, 0xcc, 0x9c, 0xa2, 0xa4, 0xa4, 0xa6, 0xa6, 0xa1, 0xa1, 0xa1, 0xa1, 0xa4, 0xa6, 0xa9, 0xa6, 0xa6, 0xa4, 0xa4, 0xa4, 0xa1, 0xa1, 0xa1, 0x9d, 0xa4, 0x94, 0x18, 0x14, 0x1d, 0x17, 0x17, 0x17, 0x1a, 0x1a, 0x1a, 0x1a, 0x1a, 0x1a, 0x1a, 0x1a, 0x1a, 0x17, 0x1a, 0x1a, 0x17, 0x0f, 0x14, 0x14, 0x14, 0x18, 0x17, 0x18, 0x1d, 0x1d, 0x1d, 0xf0, 0x51, 0x91, 0x91, 0x91, 0x91, 0x91, 0x85, 0x7f, 0x7f, 0x7f, 0x7f, 0x79, 0x79, 0x74, 0x77, 0x6e, 0x6e, 0x68, 0x65, 0x64, 0x61, 0xc4, 0xc3, 0xc4, 0x61, 0x64, 0xc5, 0x61, 0x64, 0x65, 0x65, 0x65, 0x65, 0x65, 0xc6, 0x65, 0x68, 0x68, 0x66, 0xc6, 0x02, 0x06, 0x03, 0x07, 0x07, 0x07, 0x07, 0xe4, 0xe4, 0xc5, 0xc4, 0x64, 0xc4, 0xc5, 0xd5, 0xc5, 0x5a, 0x57, 0x57, 0x57, 0x5a, 0x57, 0x5a, 0xd3, 0x5a, 0x5a, 0xd3, 0x5a, 0xd3, 0xd3, 0xd3, 0x54, 0x54, 0x54, 0x55, 0x54, 0x55, 0x55, 0x54, 0x54, 0xd2, 0x11, 0x0e, 0x0e, 0x0e, 0x0e, 0x0e, 0x0e, 0x0e, 0x0e, 0x0e, 0x12, 0x0e, 0x0c, 0x09, 0xe4, 0x07, 0x03, 0x6a, 0x71, 0x6d, 0x6c, 0xea, 0x10, 0xe8, 0xe8, 0xe8, 0x10, 0xe8, 0x10, 0x09, 0x10, 0xc8, 0xc9, 0xc8, 0xd6, 0xc8, 0xc8, 0xc8, 0x7d, 0x81, 0x86, 0x81, 0x86, 0x81, 0x86, 0x81, 0x86, 0x8b, 0x63, 0x56, 0x58, 0x58, 0x58, 0x5c, 0x58, 0x66, 0x72, 0x6a, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x70, 0x6e, 0xc5, 0xd4, 0xc3, 0xc3, 0xc3, 0xc4, 0x61, 0xc4, 0x61, 0xc4, 0x61, 0xc4, 0x61, 0xc5, 0x61, 0xc5, 0x61, 0x61, 0xc5, 0xc4, 0x61, 0xc4, 0xd5, 0xc3, 0xc4, 0xc3, 0xc4, 0xc4, 0xc3, 0xd5, 0xc3, 0xc4, 0xc3, 0xd5, 0xd5, 0xe1, 0xd4, 0x55, 0xc2, 0xc2, 0xd2, 0xd2, 0xe0, 0xdf, 0xe0, 0xdf, 0xe0, 0xdf, 0xe0, 0xdf, 0xe0, 0xe3, 0xe3, 0xe3, 0xe1, 0xe3, 0xe1, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0x5a, 0xc3, 0xd4, 0x5f, 0xd4, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0x5f, 0xc3, 0x5f, 0xc3, 0xd5, 0xe1, 0xd5, 0xd5, 0xd3, 0xc2, 0x53, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xe2, 0x02, 0xe2, 0xe1, 0x58, 0x5d, 0x59, 0x5b, 0x59, 0x5d, 0x59, 0x5d, 0x59, 0x5d, 0x58, 0xe1, 0x16, 0x19, 0x16, 0x0f, 0x0f, 0x0f, 0x13, 0x0d, 0x0d, 0x16, 0x19, 0x1c, 0x10, 0x4b, 0x6b, 0x6b, 0x71, 0x6f, 0x6b, 0x71, 0x6b, 0x6f, 0x6b, 0x71, 0x6b, 0x4b, 0x6d, 0x05, 0x0b, 0x04, 0x0b, 0x19, 0x16, 0x16, 0x16, 0x16, 0x19, 0x16, 0x16, 0x16, 0x16, 0x05, 0x56, 0x56, 0x59, 0x56, 0x55, 0xc2, 0xde, 0xde, 0xde, 0xc2, 0xde, 0xd2, 0xde, 0xd2, 0xde, 0xc2, 0xd2, 0x0d, 0x19, 0x16, 0x13, 0x08, 0x08, 0x08, 0x0b, 0x08, 0x0b, 0x08, 0x0b, 0x08, 0x0b, 0x04, 0x0d, 0x26, 0x26, 0x19, 0x13, 0x08, 0x0b, 0x0f, 0x16, 0x16, 0x16, 0x16, 0x1c, 0x19, 0x19, 0x19, 0x1c, 0x19, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x08, 0x13, 0x13, 0x0d, 0x0b, 0x0d, 0x0b, 0x04, 0x01, 0x01, 0x04, 0x01, 0x04, 0x04, 0x04, 0x04,
0xc1, 0x9e, 0xe5, 0xe5, 0xed, 0xea, 0xed, 0xed, 0xea, 0xed, 0xed, 0xed, 0xd6, 0xed, 0xd6, 0xd6, 0x7d, 0x84, 0x85, 0x50, 0x50, 0x91, 0x89, 0x50, 0xa6, 0xb1, 0xad, 0xab, 0xaa, 0xad, 0xaa, 0xad, 0xaa, 0xab, 0xaa, 0xab, 0xaa, 0xaa, 0xaa, 0xa1, 0xa9, 0xf1, 0x18, 0x1a, 0x25, 0x25, 0xf2, 0xf2, 0xf2, 0x27, 0x27, 0xf2, 0xf3, 0xcb, 0x94, 0x9c, 0xa2, 0xa4, 0xa4, 0xa4, 0xa6, 0xa6, 0xa1, 0xa1, 0xa4, 0xa1, 0xa6, 0xa9, 0xa6, 0xa6, 0xa4, 0xa4, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa4, 0xf1, 0x13, 0x17, 0x17, 0x17, 0x1a, 0x1a, 0x1a, 0x1a, 0x1a, 0x1a, 0x1a, 0x1a, 0x1a, 0x1a, 0x1a, 0x1a, 0x1a, 0x1a, 0x17, 0x0d, 0x14, 0x14, 0x17, 0x18, 0x17, 0x17, 0x1d, 0x1b, 0xca, 0x51, 0x91, 0x91, 0x50, 0x91, 0x91, 0x51, 0x79, 0x77, 0x77, 0x77, 0x74, 0x72, 0x6e, 0x68, 0x68, 0x65, 0x65, 0x65, 0xc5, 0xc4, 0xc4, 0xc4, 0xc3, 0x61, 0x64, 0x64, 0x64, 0x64, 0x64, 0x65, 0x64, 0x68, 0x65, 0x65, 0x65, 0x68, 0x65, 0x6a, 0xe4, 0x05, 0x02, 0x06, 0x07, 0x07, 0x07, 0x07, 0x09, 0x07, 0x07, 0xe4, 0xd5, 0xc5, 0x61, 0x61, 0xc5, 0xc5, 0xd4, 0x55, 0xd3, 0x57, 0x57, 0xd3, 0xd4, 0xd3, 0xd3, 0xd4, 0xd3, 0x5a, 0x5a, 0xd4, 0xd3, 0x54, 0x54, 0x55, 0x54, 0x55, 0x54, 0x55, 0x54, 0xd3, 0x17, 0x0e, 0x0e, 0x0e, 0x0c, 0x0e, 0x0e, 0x0e, 0x0e, 0x0e, 0x0e, 0x0e, 0x0f, 0x0e, 0x0a, 0xe5, 0x03, 0x07, 0x6c, 0x71, 0x6d, 0xe9, 0xe8, 0x10, 0xe8, 0x10, 0xe8, 0x10, 0xe8, 0x10, 0xe8, 0x10, 0xc8, 0xc8, 0xc8, 0xc8, 0xc8, 0xc8, 0x7c, 0x81, 0x86, 0x81, 0x86, 0x81, 0x86, 0x81, 0x86, 0x86, 0x8f, 0x63, 0x56, 0x58, 0x5c, 0x58, 0x58, 0x66, 0x72, 0x6e, 0x6a, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6a, 0x72, 0x70, 0x64, 0xd4, 0xe1, 0xc4, 0xc4, 0x61, 0xc5, 0x61, 0xc5, 0x61, 0x61, 0x61, 0x61, 0xc4, 0x61, 0xc5, 0x61, 0x61, 0x61, 0xc4, 0xc4, 0xe1, 0xc4, 0xd5, 0xc3, 0xd5, 0xc3, 0xd5, 0xc4, 0xd5, 0xc4, 0xd5, 0xe1, 0xd5, 0xd5, 0xe4, 0xe3, 0xd4, 0xc2, 0xc2, 0xc2, 0xdf, 0xe0, 0xdf, 0xe0, 0xdf, 0xe0, 0xdf, 0xe0, 0xdf, 0xdf, 0xe0, 0xe4, 0xe3, 0xe3, 0xe3, 0xd4, 0xc3, 0xd4, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0x5f, 0xd4, 0x5f, 0xd4, 0x5f, 0xd4, 0x5f, 0xc3, 0xc3, 0xc3, 0xd5, 0xd5, 0xd5, 0xd5, 0xd5, 0xe1, 0xd2, 0x53, 0xc2, 0xc2, 0xc2, 0xc2, 0x53, 0xc2, 0xc2, 0x53, 0x00, 0x03, 0x02, 0x02, 0xe0, 0x5d, 0x58, 0x5d, 0x59, 0x5b, 0x5b, 0x5b, 0x5b, 0x5b, 0x58, 0xe3, 0x16, 0x19, 0x16, 0x16, 0x0f, 0x0e, 0x0f, 0x14, 0x0d, 0x0d, 0x19, 0x1f, 0xec, 0x6b, 0x6f, 0x6b, 0x6b, 0x71, 0x6b, 0x6b, 0x6b, 0x71, 0x6b, 0x71, 0x6b, 0x71, 0x4b, 0x6d, 0x0a, 0x0b, 0x0b, 0x16, 0x19, 0x16, 0x16, 0x16, 0x19, 0x19, 0x16, 0x13, 0x16, 0x08, 0x56, 0x56, 0x59, 0x56, 0x59, 0x56, 0x55, 0xde, 0xc2, 0xde, 0xd2, 0xde, 0xd2, 0xde, 0xde, 0xde, 0xc2, 0x02, 0x1c, 0x13, 0x16, 0x16, 0x08, 0x08, 0x08, 0x08, 0x08, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x26, 0x23, 0x26, 0x23, 0x19, 0x0f, 0x0a, 0x0d, 0x19, 0x16, 0x16, 0x16, 0x1c, 0x19, 0x1c, 0x19, 0x1c, 0x02, 0xde, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x01, 0x0f, 0x16, 0x13, 0x0d, 0x13, 0x0d, 0x0b, 0x01, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04,
0xb9, 0xbf, 0xa5, 0xe7, 0xe5, 0xed, 0xe9, 0xea, 0xed, 0xed, 0xed, 0xed, 0xed, 0xed, 0xd6, 0xd6, 0xc9, 0xd7, 0x82, 0x89, 0x50, 0x50, 0x91, 0x50, 0x50, 0xa9, 0xaf, 0xab, 0xad, 0xad, 0xab, 0xaa, 0xab, 0xaa, 0xab, 0xab, 0xab, 0xaa, 0xab, 0xa2, 0xa4, 0xa9, 0xf0, 0x14, 0x22, 0x22, 0x27, 0x27, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xcb, 0x98, 0x9f, 0xa1, 0xa4, 0xa1, 0xa6, 0xa4, 0xa4, 0xa1, 0xa4, 0xa1, 0xa6, 0xa6, 0xa6, 0xa6, 0xa4, 0xa4, 0xa6, 0xa1, 0xa4, 0xa1, 0xa1, 0xa1, 0xa1, 0xa6, 0xef, 0x13, 0x17, 0x18, 0x17, 0x1b, 0x1a, 0x1a, 0x1a, 0x1a, 0x1a, 0x1a, 0x1a, 0x1a, 0x1a, 0x1a, 0x1a, 0x1a, 0x1a, 0x14, 0x0f, 0x14, 0x14, 0x14, 0x17, 0x17, 0x1a, 0xef, 0x87, 0x91, 0x91, 0x50, 0x91, 0x91, 0x50, 0x91, 0x8b, 0x72, 0x6e, 0x72, 0x6e, 0x6e, 0x68, 0x68, 0x65, 0x68, 0x64, 0x64, 0xc5, 0xc4, 0xc3, 0xc4, 0xc4, 0x5f, 0xc5, 0x64, 0x64, 0x64, 0x64, 0x65, 0x64, 0x65, 0xc6, 0x65, 0xc6, 0x68, 0x68, 0x68, 0x03, 0x05, 0x07, 0x02, 0x07, 0x07, 0x07, 0x07, 0x07, 0x07, 0x07, 0x09, 0x07, 0x07, 0xe4, 0xd5, 0xc5, 0xc5, 0xc5, 0xc3, 0x57, 0x57, 0xd3, 0x5a, 0x5a, 0xd3, 0x5a, 0xd3, 0x5a, 0xd3, 0xd4, 0x5a, 0xd4, 0xd3, 0x54, 0x54, 0x55, 0x54, 0x55, 0x54, 0x54, 0x03, 0x12, 0x0e, 0x0e, 0x0e, 0x0e, 0x0e, 0x0e, 0x0e, 0x0e, 0x0e, 0x0e, 0x0e, 0x0e, 0x0e, 0x0e, 0x0e, 0x0c, 0x06, 0xe4, 0x6d, 0x6d, 0xea, 0x10, 0x10, 0xe8, 0xe9, 0x10, 0xe8, 0xe8, 0x10, 0x10, 0x10, 0x10, 0xc8, 0x7d, 0xc8, 0x7d, 0xc8, 0x7c, 0x81, 0x86, 0x81, 0x86, 0x81, 0x86, 0x81, 0x83, 0x81, 0x86, 0x8f, 0x63, 0x56, 0x58, 0x58, 0x5c, 0x6a, 0x6e, 0x6e, 0x6e, 0x6e, 0x6a, 0x70, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x70, 0x68, 0xc3, 0xc3, 0xc4, 0x61, 0x61, 0x61, 0xc4, 0x61, 0xc4, 0x61, 0xc5, 0x61, 0xc5, 0x61, 0xc5, 0x61, 0xc5, 0x61, 0xd5, 0xc3, 0xe1, 0xc3, 0xc3, 0xd5, 0xc4, 0xd5, 0xc4, 0xd5, 0xd5, 0xc4, 0xc5, 0xe3, 0xd5, 0xe1, 0xe4, 0x03, 0xe4, 0xd3, 0x55, 0xd2, 0xde, 0xe0, 0xdf, 0xe0, 0xdf, 0xe0, 0xdf, 0xe0, 0xdf, 0xe0, 0xdf, 0xe3, 0xe3, 0xe3, 0xe1, 0xd4, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0x5f, 0x5f, 0xc5, 0xd5, 0xd5, 0xc5, 0xd5, 0xd5, 0xd5, 0xd3, 0xc2, 0x53, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xdf, 0x06, 0xe2, 0x02, 0x02, 0xe2, 0x5b, 0x58, 0x5b, 0x5d, 0x59, 0x5d, 0x59, 0x5d, 0x58, 0xe1, 0x19, 0x16, 0x16, 0x19, 0x16, 0x0f, 0x0e, 0x0f, 0x0f, 0x0d, 0x0d, 0x1f, 0xe9, 0x6f, 0x6b, 0x71, 0x6b, 0x6b, 0x6b, 0x71, 0x6b, 0x71, 0x6b, 0x71, 0x6f, 0x71, 0x6b, 0x4b, 0x71, 0x05, 0x04, 0x13, 0x19, 0x16, 0x16, 0x13, 0x16, 0x16, 0x16, 0x13, 0x13, 0x0b, 0x5a, 0x56, 0x54, 0x59, 0x56, 0x59, 0x56, 0x59, 0xd2, 0xc2, 0xde, 0xde, 0xd2, 0xde, 0xd2, 0xde, 0xc2, 0xde, 0x13, 0x19, 0x13, 0x16, 0x16, 0x0b, 0x08, 0x08, 0x0b, 0x08, 0x0b, 0x0b, 0x08, 0x0b, 0x0d, 0x23, 0x26, 0x1f, 0x23, 0x26, 0x1f, 0x19, 0x08, 0x13, 0x16, 0x16, 0x16, 0x16, 0x1c, 0x19, 0x19, 0x1f, 0x04, 0xde, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe0, 0x00, 0x05, 0x13, 0x13, 0x13, 0x0d, 0x13, 0x0b, 0x04, 0x01, 0x04, 0x04, 0x04, 0x04,
0xb6, 0xb7, 0xc0, 0xac, 0xe5, 0xe5, 0xed, 0xed, 0xe9, 0xed, 0xea, 0xed, 0xed, 0xed, 0xed, 0xd6, 0xd6, 0xd7, 0x7f, 0x86, 0x8b, 0x50, 0x91, 0x50, 0x50, 0x91, 0xa7, 0xb1, 0xab, 0xaa, 0xab, 0xaa, 0xab, 0xaa, 0xaa, 0xaa, 0xa7, 0xa9, 0xaa, 0xa2, 0x9f, 0xa4, 0xa6, 0xef, 0x17, 0x22, 0x25, 0x27, 0xf2, 0xf3, 0xf4, 0xda, 0xcb, 0xcb, 0x94, 0x94, 0x9c, 0x52, 0xa4, 0xa1, 0xa4, 0xa1, 0xa6, 0xa4, 0xa4, 0xa4, 0xa4, 0xa9, 0xa6, 0xa6, 0xa4, 0xa4, 0xa4, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa4, 0xa2, 0x17, 0x16, 0x17, 0x1a, 0x1a, 0x1a, 0x1a, 0x1a, 0x1a, 0x1a, 0x1a, 0x1a, 0x1a, 0x1a, 0x1a, 0x1a, 0x17, 0x1a, 0x1a, 0x14, 0x0f, 0x17, 0x17, 0x17, 0x1a, 0x1b, 0xd7, 0x50, 0x91, 0x50, 0x50, 0x50, 0x50, 0x50, 0x8b, 0x96, 0x86, 0x6a, 0x68, 0x68, 0x68, 0x65, 0x68, 0x64, 0x64, 0x64, 0xc5, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0x5f, 0x64, 0x65, 0x64, 0x65, 0x64, 0x68, 0x65, 0x68, 0x65, 0x68, 0x65, 0x68, 0x65, 0x06, 0x02, 0x06, 0x06, 0x02, 0x06, 0xe5, 0x07, 0xe5, 0x07, 0x07, 0x07, 0x07, 0x09, 0x07, 0x09, 0xe4, 0xe4, 0xc5, 0xc5, 0x5f, 0x57, 0x55, 0x5a, 0xd3, 0xd4, 0xd3, 0xd3, 0xd3, 0xd4, 0xd3, 0x5a, 0xd3, 0xd4, 0x57, 0x54, 0x54, 0x55, 0x54, 0x54, 0x54, 0x06, 0x12, 0x0c, 0x0e, 0x0c, 0x0e, 0x0c, 0x0e, 0x0e, 0x0e, 0x0e, 0x0e, 0x0e, 0x0e, 0x0e, 0x0e, 0x0e, 0x12, 0x0e, 0x05, 0xe6, 0x6d, 0xed, 0x10, 0xe9, 0x10, 0xe8, 0xe8, 0x10, 0xe8, 0xe8, 0xe8, 0xe8, 0x10, 0xe8, 0xc8, 0xc9, 0xc8, 0x77, 0x7c, 0x86, 0x81, 0x86, 0x81, 0x86, 0x81, 0x86, 0x81, 0x86, 0x7e, 0x8b, 0x8f, 0x63, 0x56, 0x58, 0x5c, 0x6a, 0x6e, 0x6a, 0x6e, 0x6a, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x70, 0x68, 0xc3, 0xc3, 0x5f, 0xc5, 0x61, 0x61, 0xc5, 0x61, 0xc5, 0x61, 0x61, 0x61, 0xc5, 0x61, 0x61, 0x61, 0x61, 0xd5, 0xe1, 0xc3, 0xe1, 0xe1, 0xc3, 0xe1, 0xd5, 0xe1, 0xd5, 0xe1, 0xd5, 0xe3, 0xd5, 0xe3, 0xe3, 0xe3, 0xe3, 0xe3, 0x07, 0xe1, 0xd3, 0xe0, 0xde, 0xdf, 0xdf, 0xdf, 0xdf, 0xe0, 0xdf, 0xe0, 0xdf, 0xe0, 0xdf, 0xe3, 0xe4, 0xe3, 0xc3, 0xc3, 0xd4, 0xc3, 0xc3, 0xc3, 0xd4, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc4, 0xe6, 0xc5, 0xd5, 0xd5, 0xd5, 0xd5, 0xe6, 0xe1, 0xd2, 0x53, 0xc2, 0xc2, 0xc2, 0xc2, 0x53, 0xdf, 0x03, 0x02, 0xe2, 0x02, 0x02, 0xe2, 0x5b, 0x58, 0x5b, 0x5d, 0x5b, 0x5d, 0x5b, 0x58, 0xe3, 0x16, 0x19, 0x16, 0x16, 0x16, 0x16, 0x0e, 0x12, 0x0e, 0x0f, 0x08, 0x16, 0xec, 0x4b, 0x6f, 0x73, 0x6f, 0x73, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x71, 0x6f, 0x71, 0x4b, 0x6f, 0x0a, 0x0d, 0x19, 0x16, 0x16, 0x13, 0x13, 0x13, 0x16, 0x13, 0x13, 0x13, 0xe0, 0x56, 0x56, 0x59, 0x55, 0x59, 0x59, 0x56, 0x58, 0x59, 0xd2, 0xc2, 0xde, 0xde, 0xd2, 0xde, 0xd2, 0xc2, 0x08, 0x1c, 0x13, 0x16, 0x13, 0x16, 0x0d, 0x08, 0x08, 0x08, 0x0b, 0x08, 0x0b, 0x08, 0x0b, 0x23, 0x26, 0x23, 0x23, 0x1f, 0x26, 0x26, 0x1f, 0x18, 0x16, 0x16, 0x13, 0x16, 0x16, 0x1c, 0x19, 0x1f, 0x08, 0xde, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x08, 0x13, 0x13, 0x0d, 0x16, 0x0d, 0x04, 0x04, 0x01, 0x04, 0x04,
0xb7, 0xb7, 0xb6, 0xbe, 0xb0, 0xe9, 0x07, 0xed, 0xed, 0xed, 0xed, 0xed, 0xed, 0xed, 0xed, 0xd6, 0xee, 0xd6, 0x7c, 0x81, 0x87, 0x50, 0x91, 0x91, 0x50, 0x50, 0x91, 0xab, 0xaf, 0xab, 0xab, 0xaa, 0xab, 0xaa, 0xa9, 0xaa, 0xab, 0xab, 0xa7, 0xa7, 0x52, 0xa2, 0xa4, 0xa7, 0xef, 0x14, 0x22, 0x25, 0x27, 0xf2, 0xf3, 0xf4, 0xcc, 0x98, 0x9c, 0x9c, 0x9c, 0xa2, 0x9d, 0xa1, 0xa1, 0xa4, 0xa4, 0xa4, 0xa4, 0xa4, 0xa4, 0xa9, 0xa6, 0xa6, 0xa4, 0xa4, 0xa1, 0xa4, 0xa4, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa4, 0x98, 0x13, 0x16, 0x1a, 0x1a, 0x1a, 0x1a, 0x1a, 0x1a, 0x1a, 0x1a, 0x1a, 0x1a, 0x1a, 0x1a, 0x1a, 0x1a, 0x1a, 0x1a, 0x17, 0x14, 0x12, 0x17, 0x15, 0x1b, 0xee, 0x82, 0x50, 0x50, 0x50, 0x50, 0x50, 0x50, 0x50, 0x8b, 0x8b, 0x91, 0x87, 0x65, 0x64, 0x68, 0x65, 0x64, 0x64, 0x64, 0x64, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0x5f, 0x64, 0x68, 0x65, 0x64, 0x68, 0x64, 0x68, 0x65, 0x68, 0x68, 0x6a, 0xe6, 0x06, 0x02, 0x07, 0x02, 0x06, 0x06, 0x07, 0x07, 0x07, 0x07, 0x07, 0x07, 0x07, 0x07, 0x09, 0x07, 0x07, 0x09, 0x07, 0xe5, 0xe4, 0xc4, 0x57, 0xc2, 0xd2, 0xd2, 0xd3, 0x5a, 0xd3, 0xd3, 0x5a, 0xd3, 0xd4, 0xd3, 0xd4, 0x57, 0x54, 0x54, 0x55, 0x54, 0x55, 0x0e, 0x0e, 0x0e, 0x0e, 0x0e, 0x11, 0x0e, 0x0c, 0x0e, 0x0e, 0x0e, 0x0e, 0x0a, 0x0e, 0x0a, 0x0e, 0x0e, 0x0e, 0x0e, 0x12, 0x08, 0xe8, 0xea, 0xec, 0x10, 0xec, 0x10, 0xec, 0xe8, 0x10, 0xe8, 0x10, 0x10, 0xe8, 0x10, 0xe9, 0x77, 0x7d, 0x77, 0x79, 0x86, 0x81, 0x81, 0x81, 0x81, 0x86, 0x81, 0x86, 0x81, 0x86, 0x81, 0x86, 0x51, 0x63, 0x56, 0x5c, 0x6e, 0x6e, 0x6a, 0x6e, 0x6e, 0x6e, 0x6a, 0x6e, 0x6e, 0x6a, 0x6e, 0x6a, 0x6e, 0x6e, 0x74, 0x70, 0x65, 0x61, 0xc3, 0xc4, 0xc4, 0x61, 0xc4, 0x61, 0xc5, 0x61, 0xc5, 0x61, 0x61, 0xc5, 0x61, 0x61, 0xc4, 0xd5, 0xd5, 0xe1, 0xc3, 0xd5, 0xe1, 0xc3, 0xd5, 0xe1, 0xd5, 0xe3, 0xd5, 0xe1, 0xe3, 0xe3, 0xe3, 0xe3, 0xe3, 0xe2, 0xe3, 0xe4, 0x65, 0xc5, 0xe2, 0xe2, 0xe0, 0xe0, 0xdf, 0xdf, 0xdf, 0xdf, 0xe0, 0xdf, 0xdf, 0xe0, 0xe4, 0xe3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0x5f, 0xc3, 0xc3, 0xc3, 0xd5, 0xd5, 0xe6, 0xd5, 0xc5, 0xd5, 0xd5, 0xe6, 0xe6, 0xd3, 0xc2, 0x53, 0xc2, 0xc2, 0xc2, 0xd2, 0x02, 0x03, 0x03, 0x03, 0x02, 0x02, 0x02, 0x5f, 0x58, 0x5d, 0x5b, 0x5d, 0x5b, 0x5c, 0xe2, 0x16, 0x19, 0x16, 0x16, 0x16, 0x19, 0x13, 0x0e, 0x0e, 0x0e, 0x0a, 0x0d, 0xe4, 0x63, 0x67, 0x63, 0x67, 0x67, 0x69, 0x69, 0x6d, 0x6b, 0x71, 0x6b, 0x71, 0x6f, 0x6f, 0x6f, 0x6f, 0x4b, 0x73, 0x0c, 0x1c, 0x16, 0x16, 0x16, 0x13, 0x0d, 0x13, 0x13, 0x13, 0x13, 0xe2, 0x56, 0x59, 0x59, 0x56, 0x59, 0x56, 0x59, 0x56, 0x59, 0x58, 0x57, 0xc2, 0xde, 0xde, 0xd2, 0xde, 0x53, 0x02, 0x19, 0x13, 0x16, 0x16, 0x13, 0x16, 0x0d, 0x08, 0x08, 0x0b, 0x0b, 0x0b, 0x0b, 0x0d, 0x23, 0x26, 0x26, 0x1f, 0x23, 0x1f, 0x1f, 0x23, 0x26, 0x1c, 0x19, 0x16, 0x13, 0x13, 0x16, 0x1c, 0x1c, 0x13, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x0d, 0x16, 0x13, 0x13, 0x13, 0x0b, 0x04, 0x01, 0x04,
0xb7, 0xb7, 0xb6, 0xb6, 0xbf, 0xb0, 0xea, 0xe5, 0xed, 0xe9, 0xed, 0xe9, 0xed, 0xed, 0xed, 0xee, 0xed, 0xd7, 0x7b, 0x7d, 0x81, 0x87, 0x50, 0x91, 0x91, 0x50, 0x50, 0x51, 0xab, 0xaf, 0xab, 0xab, 0xaa, 0xab, 0xaa, 0xa9, 0xa7, 0xaa, 0xab, 0xa2, 0x52, 0x9f, 0x52, 0xa4, 0x9f, 0x22, 0x17, 0x25, 0x25, 0x27, 0xf2, 0xf3, 0xf4, 0xcb, 0x9e, 0x9f, 0xa2, 0xa1, 0xa2, 0xa1, 0x9d, 0xa1, 0xa1, 0xa4, 0xa4, 0xa4, 0xa6, 0xa9, 0xa6, 0xa6, 0xa4, 0xa4, 0xa4, 0xa4, 0xa1, 0xa1, 0xa4, 0xa1, 0xa4, 0xa1, 0xa1, 0xa9, 0xd9, 0x13, 0x1a, 0x1a, 0x15, 0x1a, 0x1a, 0x1a, 0x1a, 0x1a, 0x1a, 0x1a, 0x1a, 0x1a, 0x1a, 0x1a, 0x1a, 0x1a, 0x1a, 0x1a, 0x0f, 0x15, 0x15, 0xec, 0xd7, 0x87, 0x89, 0x50, 0x50, 0x50, 0x50, 0x50, 0x50, 0x8b, 0x8b, 0x86, 0x51, 0x81, 0x64, 0xc5, 0x65, 0x64, 0x64, 0xc5, 0xc5, 0xc5, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0x5f, 0x65, 0x68, 0x65, 0x65, 0x68, 0x68, 0x68, 0x65, 0x68, 0x68, 0x03, 0x06, 0x02, 0x06, 0x02, 0x07, 0x06, 0x06, 0x07, 0x07, 0x07, 0x07, 0x07, 0x07, 0x07, 0x07, 0x07, 0x07, 0x07, 0x07, 0x09, 0x09, 0x07, 0xe4, 0x68, 0x64, 0x5a, 0xd2, 0xc2, 0xd2, 0xd2, 0xd3, 0xd3, 0x5a, 0xd4, 0xd3, 0xd4, 0x57, 0x54, 0x55, 0x54, 0xd3, 0x12, 0x11, 0x0e, 0x0c, 0x0e, 0x0a, 0x0e, 0x0e, 0x0c, 0x0e, 0x0e, 0x0e, 0x0e, 0x0c, 0x0e, 0x0c, 0x0e, 0x0e, 0x0e, 0x0c, 0x12, 0x06, 0xc3, 0xe3, 0xe5, 0xe5, 0xe8, 0xe8, 0xec, 0xec, 0xec, 0x10, 0xe9, 0xec, 0xe8, 0x10, 0xea, 0x7d, 0x77, 0x7f, 0x81, 0x86, 0x81, 0x86, 0x81, 0x81, 0x83, 0x81, 0x86, 0x81, 0x86, 0x81, 0x8b, 0x51, 0x63, 0x5c, 0x6e, 0x6a, 0x6e, 0x6e, 0x6a, 0x6e, 0x6e, 0x6e, 0x6e, 0x72, 0x70, 0x72, 0x70, 0x6e, 0x70, 0x74, 0x74, 0x6e, 0x68, 0x64, 0xc4, 0xc4, 0x61, 0xc5, 0x61, 0xc5, 0x61, 0xc5, 0x61, 0x61, 0x61, 0xc5, 0x61, 0xd5, 0xe4, 0xd5, 0xd5, 0xc3, 0xe1, 0xc3, 0xe3, 0xc4, 0xe1, 0xd5, 0xe1, 0xe3, 0xe3, 0xe3, 0xe3, 0xe3, 0xe3, 0xe3, 0xe2, 0xd5, 0x65, 0x65, 0x65, 0xc5, 0xe4, 0xe3, 0xe3, 0xe2, 0xe0, 0xe1, 0xe0, 0xe0, 0xe0, 0xdf, 0xe0, 0xe3, 0xe1, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc4, 0xc3, 0xc3, 0xc4, 0xc3, 0xc3, 0xc4, 0x5f, 0xd5, 0xe6, 0xd5, 0xe6, 0xe6, 0xd5, 0xe6, 0xd5, 0xe4, 0xe6, 0xe3, 0xd2, 0x53, 0xc2, 0xc2, 0xc2, 0xe2, 0x07, 0x02, 0x03, 0x02, 0x03, 0x02, 0x02, 0xc3, 0x58, 0x5d, 0x5b, 0x5d, 0x58, 0xe3, 0x19, 0x19, 0x16, 0x16, 0x16, 0x16, 0x19, 0x14, 0x0e, 0x12, 0x0e, 0x0e, 0x01, 0x53, 0xd2, 0xdf, 0xdf, 0xd3, 0xdf, 0xd4, 0x5a, 0xd4, 0xd4, 0x5f, 0xc3, 0x5f, 0xc4, 0x61, 0x64, 0x62, 0x63, 0x65, 0x0f, 0x19, 0x16, 0x13, 0x13, 0x0d, 0x13, 0x13, 0x13, 0x13, 0x02, 0x56, 0x56, 0x59, 0x59, 0x56, 0x59, 0x59, 0x56, 0x59, 0x56, 0x59, 0x58, 0x57, 0xd2, 0xde, 0xde, 0xc2, 0xde, 0x13, 0x19, 0x16, 0x13, 0x16, 0x16, 0x16, 0x0d, 0x08, 0x08, 0x0b, 0x0b, 0x08, 0x0b, 0x23, 0x26, 0x23, 0x23, 0x1f, 0x23, 0x1f, 0x23, 0x1f, 0x23, 0x23, 0x1c, 0x19, 0x13, 0x13, 0x16, 0x1c, 0x19, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x0a, 0x13, 0x16, 0x13, 0x16, 0x0d, 0x04, 0x04,
0xb6, 0xb7, 0xb6, 0xb7, 0xb5, 0xbe, 0xb4, 0xed, 0x07, 0xed, 0xed, 0xed, 0xed, 0xed, 0xed, 0xed, 0xee, 0xc8, 0x79, 0x7d, 0x82, 0x85, 0x87, 0x51, 0x91, 0x91, 0x50, 0x50, 0x51, 0xaf, 0xaf, 0xa9, 0xab, 0xa7, 0xa9, 0xaa, 0xa7, 0xa7, 0xaa, 0xa7, 0x52, 0x9f, 0x52, 0xa2, 0xa1, 0xa1, 0x1a, 0x17, 0x22, 0x27, 0x27, 0xf2, 0xf3, 0xf4, 0x94, 0xcc, 0x9f, 0xa2, 0xa4, 0xa6, 0xa4, 0xa4, 0xa1, 0xa1, 0xa4, 0xa4, 0xa9, 0xa6, 0xa9, 0xa6, 0xa4, 0xa4, 0xa4, 0xa4, 0xa4, 0xa4, 0xa4, 0xa4, 0xa4, 0xa4, 0xa4, 0xa4, 0xa9, 0x1b, 0x13, 0x1a, 0x1a, 0x1a, 0x15, 0x1a, 0x1a, 0x15, 0x1a, 0x1a, 0x1a, 0x1a, 0x1a, 0x1a, 0x1a, 0x1a, 0x1a, 0x1b, 0x15, 0x12, 0xec, 0xee, 0x7d, 0x83, 0x50, 0x50, 0x50, 0x50, 0x89, 0x50, 0x89, 0x8b, 0x8b, 0x8b, 0x86, 0x51, 0x7b, 0xc4, 0xc5, 0x64, 0xc5, 0x64, 0xc5, 0xc5, 0xc4, 0xc5, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0x61, 0xc4, 0x65, 0x68, 0x68, 0x68, 0x65, 0x68, 0x68, 0x68, 0x68, 0x02, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x02, 0x06, 0x07, 0x07, 0x07, 0x07, 0x07, 0x07, 0x07, 0x07, 0x07, 0x07, 0x07, 0x07, 0x07, 0x07, 0x05, 0xf0, 0xa4, 0x8c, 0x82, 0x72, 0x68, 0xd4, 0x57, 0xde, 0xc2, 0xd2, 0xd2, 0xdf, 0xd4, 0x57, 0x54, 0x54, 0x03, 0x15, 0x0e, 0x0e, 0x0c, 0x0e, 0x11, 0x0c, 0x0e, 0x0c, 0x0e, 0x0e, 0x0e, 0x0e, 0x0e, 0x0c, 0x0e, 0x0c, 0x0c, 0x0c, 0x0e, 0x0c, 0xe2, 0x59, 0x5f, 0xd4, 0xd4, 0xe1, 0xe3, 0xe3, 0xe4, 0xe5, 0xe9, 0xe8, 0xec, 0xec, 0xec, 0xe8, 0xeb, 0x7c, 0x7b, 0x86, 0x7e, 0x86, 0x81, 0x83, 0x86, 0x86, 0x8b, 0x8b, 0x8b, 0x8b, 0x8b, 0x86, 0x86, 0x8b, 0x67, 0x6a, 0x72, 0x6a, 0x70, 0x6e, 0x70, 0x6e, 0x70, 0x6e, 0x74, 0x6e, 0x70, 0x6e, 0x70, 0x6e, 0x70, 0x70, 0x74, 0x74, 0x70, 0x6e, 0x65, 0xc4, 0xc4, 0xc4, 0x61, 0x61, 0x61, 0xc5, 0x61, 0xc5, 0x61, 0x61, 0xc5, 0xd5, 0xd5, 0xd5, 0xd5, 0xd5, 0xe1, 0xc3, 0xe1, 0xd5, 0xe1, 0xe1, 0xd5, 0xe3, 0xe3, 0xe3, 0xe3, 0xe3, 0xe3, 0xe3, 0xe1, 0x65, 0x64, 0x64, 0x65, 0x65, 0x65, 0xd5, 0xd5, 0xe3, 0xe2, 0xe1, 0xe1, 0xe1, 0xd4, 0xe0, 0xdf, 0xe2, 0xc3, 0x5f, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0x5f, 0xd4, 0xc3, 0xe6, 0xe6, 0xd5, 0xe6, 0xe4, 0xe6, 0xe4, 0xe6, 0xd5, 0xe7, 0xe5, 0xd4, 0xc2, 0x53, 0xc2, 0xdf, 0x07, 0x03, 0x02, 0x03, 0x02, 0x03, 0x06, 0x02, 0xe3, 0x58, 0x5d, 0x5d, 0x58, 0xe3, 0x19, 0x19, 0x16, 0x16, 0x16, 0x19, 0x16, 0x19, 0x0f, 0x11, 0x12, 0x0e, 0x0e, 0xde, 0xc2, 0xd2, 0xd3, 0xe0, 0xe1, 0xe0, 0xe0, 0xe0, 0xe0, 0xe0, 0xe0, 0xe0, 0xe0, 0xe0, 0xe0, 0xe2, 0xe2, 0xe1, 0x03, 0x14, 0x13, 0x16, 0x16, 0x0d, 0x0d, 0x0d, 0x13, 0x13, 0x05, 0x56, 0x59, 0x56, 0x59, 0x59, 0x56, 0x59, 0x59, 0x59, 0x59, 0x56, 0x59, 0x58, 0x59, 0x57, 0xd2, 0xde, 0xc2, 0x05, 0x1c, 0x13, 0x16, 0x16, 0x13, 0x16, 0x16, 0x0d, 0x08, 0x0f, 0x0b, 0x0b, 0x0d, 0x23, 0x26, 0x23, 0x26, 0x1f, 0x23, 0x1f, 0x23, 0x1f, 0x1f, 0x1f, 0x23, 0x1f, 0x1f, 0x16, 0x13, 0x16, 0x1c, 0x01, 0xde, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x02, 0x00, 0x00, 0x02, 0x0f, 0x16, 0x16, 0x16, 0x13, 0x0b,
0xb7, 0xb6, 0xb7, 0xb6, 0xb6, 0xb5, 0xbd, 0xb4, 0xd6, 0x09, 0xe9, 0xed, 0xec, 0xed, 0xed, 0xec, 0xed, 0xc8, 0x7d, 0x7d, 0x7d, 0x7f, 0x85, 0x87, 0x51, 0x91, 0x91, 0x91, 0x50, 0x96, 0xab, 0xaf, 0xab, 0xa7, 0xab, 0xa7, 0xad, 0xa7, 0xab, 0xa7, 0xa2, 0x9f, 0xa2, 0x52, 0x9f, 0xa4, 0x9c, 0x1a, 0x1d, 0x25, 0x27, 0x27, 0xf3, 0xf3, 0xcb, 0xcc, 0x98, 0x9f, 0xa2, 0xa4, 0xa4, 0xa4, 0xa4, 0xa4, 0xa1, 0xa4, 0xa4, 0xa9, 0xa9, 0xa4, 0xa4, 0xa4, 0xa4, 0xa4, 0xa4, 0xa4, 0xa6, 0xa6, 0xa6, 0xa6, 0xa6, 0xa6, 0xab, 0xaa, 0x15, 0x12, 0x1a, 0x1a, 0x1a, 0x15, 0x1a, 0x1a, 0x1a, 0x1a, 0x1a, 0x1a, 0x1a, 0x15, 0x1a, 0x1b, 0x1b, 0x1b, 0xef, 0x11, 0xec, 0xd6, 0x7f, 0x8b, 0x89, 0x50, 0x50, 0x89, 0x50, 0x89, 0x89, 0x8b, 0x8b, 0x86, 0x86, 0x86, 0x51, 0x79, 0xc3, 0xc4, 0xc5, 0xc5, 0xc5, 0xc4, 0xc4, 0xc4, 0xc4, 0xc5, 0xc3, 0x61, 0xc4, 0x61, 0xc4, 0x5f, 0xc5, 0x68, 0x68, 0x68, 0x68, 0x68, 0x68, 0x6a, 0xe6, 0x06, 0x02, 0x06, 0x02, 0x06, 0x06, 0x06, 0x06, 0x06, 0x07, 0x07, 0x07, 0x07, 0x07, 0x07, 0x07, 0x07, 0x07, 0x07, 0x07, 0x07, 0x07, 0x07, 0x09, 0x0a, 0xf1, 0xa1, 0x9f, 0xa2, 0x9c, 0x93, 0x8a, 0x79, 0x72, 0x65, 0xd5, 0xd3, 0xd2, 0xd2, 0x53, 0x54, 0x07, 0x12, 0x0c, 0x0e, 0x0e, 0x0c, 0x0e, 0x0c, 0x0e, 0x0c, 0x0c, 0x0e, 0x0c, 0x0c, 0x0e, 0x0c, 0x0c, 0x0a, 0x0c, 0x0c, 0x09, 0x03, 0xd4, 0x5b, 0x5f, 0x5f, 0xd5, 0xe1, 0xc3, 0xd4, 0xd4, 0xd4, 0xe1, 0xe3, 0xe4, 0xe4, 0xe7, 0xe9, 0xe9, 0xd6, 0x85, 0x8b, 0x8b, 0x86, 0x86, 0x81, 0x81, 0x7a, 0x7a, 0x75, 0x6d, 0x70, 0x6c, 0x66, 0x66, 0x66, 0x64, 0x62, 0x74, 0x74, 0x6e, 0x70, 0x6e, 0x70, 0x6e, 0x72, 0x70, 0x6e, 0x70, 0x6e, 0x70, 0x72, 0x70, 0x70, 0x70, 0x70, 0x74, 0x70, 0x74, 0x6a, 0x65, 0x64, 0xc4, 0xc4, 0xc4, 0x61, 0x61, 0x61, 0x61, 0x61, 0x61, 0xd5, 0xe4, 0xd5, 0xe4, 0xd5, 0xd5, 0xe1, 0xc3, 0xe1, 0xd5, 0xe1, 0xe3, 0xe1, 0xe3, 0xe3, 0xe3, 0xe3, 0xe3, 0xe1, 0xd5, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x65, 0x64, 0xc5, 0xc5, 0xe1, 0xe1, 0xe1, 0xe3, 0xc4, 0xe3, 0xe1, 0xe1, 0xd4, 0x5a, 0xd4, 0x5a, 0xd4, 0x5a, 0xd4, 0x5a, 0xd4, 0x5a, 0xd4, 0x5a, 0xd4, 0x5a, 0xd4, 0x5a, 0xd4, 0xd4, 0xd5, 0xc6, 0xe6, 0xe6, 0xd5, 0xe6, 0xe4, 0xe6, 0xe4, 0xe6, 0xe7, 0xe3, 0xd2, 0x53, 0xde, 0x07, 0x02, 0x03, 0x02, 0x03, 0x02, 0x03, 0x02, 0x05, 0xe2, 0x5d, 0x5d, 0x5c, 0xe3, 0x19, 0x16, 0x16, 0x16, 0x16, 0x16, 0x16, 0x19, 0x16, 0x14, 0x0c, 0x0e, 0x0f, 0x02, 0xc2, 0xd2, 0xd2, 0xdf, 0xd3, 0xe1, 0xe1, 0xd5, 0xe1, 0xe1, 0xe1, 0xe1, 0xe3, 0xe3, 0xe3, 0xe3, 0xe3, 0xe3, 0xe3, 0x0c, 0x0f, 0x0e, 0x13, 0x13, 0x0d, 0x0f, 0x0d, 0x13, 0x08, 0x56, 0x56, 0x59, 0x59, 0x56, 0x59, 0x59, 0x56, 0x59, 0x59, 0x59, 0x59, 0x59, 0x59, 0x58, 0x59, 0x57, 0xc2, 0x00, 0x16, 0x16, 0x16, 0x16, 0x16, 0x16, 0x16, 0x16, 0x13, 0x0b, 0x08, 0x0b, 0x0b, 0x23, 0x26, 0x26, 0x23, 0x26, 0x1f, 0x23, 0x1f, 0x23, 0x1f, 0x23, 0x1f, 0x1f, 0x1f, 0x1f, 0x19, 0x16, 0x1c, 0x08, 0xde, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x14, 0x13, 0x13, 0x16,
0xb7, 0xb7, 0xb6, 0xb6, 0xb6, 0xb5, 0xb5, 0xbd, 0xb9, 0xee, 0x07, 0xec, 0xed, 0xec, 0xed, 0xec, 0xd6, 0x77, 0xc8, 0xc8, 0x7d, 0x7d, 0x7f, 0x8a, 0x87, 0x8f, 0x91, 0x91, 0x50, 0x50, 0x96, 0xad, 0xaf, 0xab, 0xa7, 0xaa, 0xa7, 0xa7, 0xa7, 0xa7, 0x52, 0x52, 0x9b, 0xa2, 0x9f, 0x52, 0xa4, 0x9c, 0x17, 0x1a, 0x25, 0x27, 0x27, 0xf3, 0xf4, 0xcb, 0xcc, 0x9c, 0x9f, 0xa4, 0xa1, 0xa4, 0xa6, 0xa6, 0xa6, 0xa6, 0xa6, 0xa6, 0xab, 0xa6, 0xa6, 0xa9, 0xa6, 0xa6, 0xa9, 0xa9, 0xa9, 0xa9, 0xab, 0xa9, 0xab, 0xa9, 0xab, 0xa6, 0x92, 0xe7, 0x0a, 0x15, 0x1a, 0x1a, 0x1a, 0x1a, 0x1a, 0x15, 0x1a, 0x1b, 0x1a, 0x1b, 0x1b, 0x1b, 0x1b, 0xee, 0xef, 0xd7, 0xed, 0xc9, 0x81, 0x89, 0x89, 0x50, 0x89, 0x89, 0x89, 0x89, 0x8b, 0x8b, 0x86, 0x8b, 0x86, 0x87, 0x86, 0x51, 0x74, 0xc3, 0xc4, 0x64, 0xc4, 0xc5, 0xc4, 0xc4, 0xc5, 0xc4, 0xc4, 0xc4, 0x61, 0xc4, 0xc4, 0xc5, 0x5f, 0x61, 0x68, 0x68, 0x68, 0x65, 0x68, 0x6a, 0xe5, 0x02, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x02, 0x06, 0x06, 0x07, 0xe5, 0x07, 0x07, 0x07, 0x07, 0x07, 0x07, 0x07, 0x07, 0x07, 0x07, 0x09, 0x09, 0x0e, 0x08, 0xca, 0x9a, 0x90, 0x90, 0x93, 0x9b, 0x9f, 0x9f, 0x9f, 0x90, 0x8a, 0x7d, 0x72, 0x61, 0xd3, 0x08, 0x0e, 0x0e, 0x0c, 0x0e, 0x0c, 0x0e, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0e, 0x0a, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x07, 0x06, 0xe3, 0x5b, 0xd4, 0x5f, 0x5f, 0x5f, 0xc4, 0xd5, 0xe3, 0xc4, 0xe1, 0xe1, 0xd4, 0xd4, 0xd4, 0xd4, 0xc3, 0xc4, 0xd5, 0x6a, 0x6d, 0x6c, 0x66, 0x66, 0x62, 0x62, 0x61, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x61, 0x61, 0x61, 0x5f, 0x5b, 0x61, 0x70, 0x74, 0x70, 0x6e, 0x70, 0x6e, 0x70, 0x6e, 0x70, 0x70, 0x70, 0x70, 0x70, 0x6e, 0x70, 0x70, 0x70, 0x6e, 0x70, 0x6e, 0x70, 0x74, 0x6e, 0x6a, 0x64, 0x61, 0xc4, 0xc4, 0x61, 0x61, 0xc5, 0x61, 0xc5, 0xd5, 0xe4, 0xd5, 0xe4, 0xe4, 0xe4, 0xd5, 0xe1, 0xe1, 0xe3, 0xe1, 0xe3, 0xe1, 0xe3, 0xe3, 0xe3, 0xe1, 0xe3, 0xd5, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0xc5, 0xd5, 0xe1, 0xe3, 0xe1, 0xd5, 0xe1, 0xe3, 0xe1, 0x5a, 0x5a, 0xd4, 0xd4, 0x5a, 0xd4, 0xd4, 0x5a, 0xd4, 0x5a, 0xd4, 0xd4, 0xd4, 0xd4, 0x5a, 0xd4, 0xd3, 0xc3, 0xe6, 0xc6, 0xe6, 0xc5, 0xe6, 0xe4, 0xe6, 0xe4, 0xe6, 0xe7, 0xe7, 0xe0, 0x53, 0x02, 0x07, 0x02, 0x07, 0x02, 0x07, 0x02, 0x03, 0x02, 0x05, 0x03, 0x5d, 0x5c, 0xe3, 0x19, 0x19, 0x16, 0x16, 0x16, 0x19, 0x16, 0x19, 0x19, 0x16, 0x12, 0x0e, 0x0e, 0x0a, 0xdf, 0x57, 0xd2, 0xd3, 0xd2, 0xd3, 0xd3, 0xe1, 0xe1, 0xe3, 0xe3, 0xe3, 0xe3, 0xe1, 0xe3, 0xe3, 0xe2, 0xe4, 0xe1, 0x03, 0x12, 0x0e, 0x0a, 0x08, 0x0d, 0x0d, 0x0b, 0x0d, 0x0b, 0x5b, 0x56, 0x59, 0x59, 0x59, 0x59, 0x56, 0x59, 0x59, 0x59, 0x59, 0x59, 0x56, 0x56, 0x54, 0x56, 0x56, 0x54, 0x53, 0x08, 0x19, 0x13, 0x13, 0x13, 0x13, 0x16, 0x16, 0x16, 0x16, 0x0b, 0x08, 0x0b, 0x23, 0x26, 0x26, 0x23, 0x26, 0x23, 0x1f, 0x1f, 0x23, 0x1f, 0x23, 0x1f, 0x1f, 0x1c, 0x1f, 0x1f, 0x1c, 0x1c, 0x0f, 0xe0, 0xe0, 0x02, 0xe2, 0x03, 0x03, 0x07, 0xe5, 0xe8, 0xe9, 0xe9, 0xe9, 0xed, 0xed, 0xee, 0xc7, 0xef, 0x1f, 0x19, 0x13,
0xb7, 0xb7, 0xb6, 0xb4, 0xb6, 0xb5, 0xb5, 0xb5, 0xb9, 0xb9, 0xd7, 0x07, 0xec, 0xed, 0xec, 0xed, 0xeb, 0xc8, 0xc8, 0xc8, 0x7d, 0x7d, 0x7d, 0x82, 0x82, 0x8d, 0x8d, 0x51, 0x91, 0x91, 0x50, 0x95, 0xad, 0xad, 0xa9, 0xa7, 0xab, 0xa7, 0xa7, 0xa7, 0xa2, 0x52, 0xa2, 0x52, 0x52, 0x9b, 0x52, 0xa1, 0x94, 0x1a, 0x1d, 0x27, 0x27, 0xf2, 0xf3, 0xf4, 0xcb, 0x98, 0x9c, 0xa1, 0xa1, 0xa1, 0xa4, 0xa4, 0xa6, 0xa6, 0xa9, 0xa9, 0xa6, 0xa6, 0xab, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa6, 0xa9, 0xa9, 0xa9, 0xa1, 0x99, 0x9d, 0x95, 0x68, 0xe2, 0xe8, 0xec, 0x15, 0x1a, 0x1a, 0x1a, 0x1b, 0x1a, 0x1b, 0x1b, 0x1b, 0x1b, 0xee, 0xf0, 0xd7, 0xd8, 0x7d, 0x77, 0x81, 0x4f, 0x50, 0x89, 0x50, 0x89, 0x89, 0x89, 0x89, 0x86, 0x8b, 0x86, 0x86, 0x86, 0x87, 0x86, 0x8f, 0x74, 0xd4, 0xc5, 0xc5, 0xc4, 0xc5, 0xc4, 0xc4, 0xc4, 0xc5, 0xc4, 0xc4, 0xc4, 0xc4, 0x61, 0xc4, 0xc4, 0x64, 0x68, 0x68, 0x68, 0x68, 0x6a, 0x07, 0x05, 0x02, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x07, 0x07, 0x07, 0x09, 0x07, 0x07, 0x09, 0x07, 0x09, 0x07, 0x09, 0x07, 0x09, 0x10, 0x08, 0x11, 0x8e, 0x97, 0x90, 0x90, 0x90, 0x90, 0x90, 0x93, 0x93, 0x9c, 0xa2, 0xa3, 0x9c, 0x93, 0xd6, 0x05, 0x0e, 0x0e, 0x0c, 0x0e, 0x0c, 0x0c, 0x0e, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x09, 0x06, 0x07, 0x06, 0xc3, 0x5b, 0xc3, 0x5f, 0x5f, 0x61, 0x5f, 0xc5, 0xd5, 0xd5, 0xd5, 0xd5, 0xc4, 0xd5, 0xc4, 0xc4, 0xc4, 0x5f, 0x5f, 0x5b, 0x5f, 0x5b, 0x5f, 0x5f, 0x61, 0x61, 0x62, 0x62, 0x62, 0x62, 0x65, 0x62, 0x64, 0x62, 0x61, 0xc4, 0xc4, 0x5f, 0x5f, 0x6a, 0x74, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x6e, 0x70, 0x6e, 0x70, 0x70, 0x72, 0x70, 0x70, 0x70, 0x70, 0x70, 0x6e, 0x6a, 0x70, 0x6e, 0x70, 0x6e, 0x65, 0x64, 0xc4, 0x61, 0x61, 0x61, 0xc5, 0xd5, 0xd5, 0xe4, 0xd5, 0xd5, 0xe4, 0xe4, 0xe4, 0xe3, 0xe1, 0xe1, 0xe3, 0xe3, 0xe1, 0xe3, 0xe1, 0xe3, 0xe1, 0xd5, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0xc5, 0xc4, 0xd5, 0xe1, 0xe3, 0xe1, 0xe3, 0xe3, 0xd4, 0x5a, 0x5a, 0xd4, 0x5a, 0xd4, 0x5a, 0xd4, 0x5a, 0xd4, 0x5a, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0x5a, 0xd4, 0xd5, 0xe6, 0xe6, 0xe6, 0xe6, 0xe6, 0xe6, 0xe4, 0xe6, 0xe4, 0xe7, 0xe3, 0xe2, 0x03, 0x03, 0x02, 0x03, 0x02, 0x02, 0x06, 0x02, 0x06, 0x05, 0x02, 0x5d, 0xe1, 0x19, 0x19, 0x16, 0x16, 0x16, 0x16, 0x16, 0x16, 0x16, 0x19, 0x16, 0x12, 0x0a, 0x12, 0x00, 0x55, 0xdf, 0xd3, 0xdf, 0xd3, 0xd2, 0xd3, 0xd3, 0xe1, 0xe3, 0xe3, 0xe3, 0xe3, 0xe3, 0xe3, 0xe3, 0xe3, 0xe3, 0xe3, 0x0a, 0x14, 0x0e, 0x0a, 0x0a, 0x08, 0x0d, 0x0d, 0x0d, 0xd4, 0x56, 0x56, 0x59, 0x56, 0x59, 0x56, 0x56, 0x54, 0x54, 0x54, 0x56, 0x59, 0x5d, 0x5e, 0x66, 0x67, 0x6d, 0x73, 0x25, 0x28, 0x20, 0x1e, 0x1e, 0x19, 0x16, 0x0d, 0x13, 0x13, 0x13, 0x0b, 0x0b, 0x23, 0x26, 0x23, 0x26, 0x23, 0x26, 0x23, 0x23, 0x1f, 0x23, 0x1f, 0x23, 0x1f, 0x1f, 0x1f, 0x1c, 0x1c, 0x1c, 0x19, 0x1b, 0x84, 0xd7, 0xd8, 0xd8, 0xd8, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0x88, 0x27, 0x26, 0x26, 0x1f,
0xb7, 0xb6, 0xb7, 0xb6, 0xb6, 0xb6, 0xb4, 0xb5, 0xb3, 0xb7, 0xb8, 0xd8, 0x07, 0xec, 0xec, 0xed, 0xc8, 0xc8, 0xc8, 0xc8, 0xc8, 0xc8, 0x7d, 0x7d, 0x82, 0x88, 0x8a, 0x8d, 0x8f, 0x91, 0x91, 0x50, 0x99, 0xad, 0xaa, 0xa9, 0xa7, 0xa7, 0xa7, 0xa7, 0xa2, 0x9b, 0x52, 0x9b, 0x52, 0xa2, 0x9b, 0x52, 0xa4, 0xca, 0x1d, 0x1a, 0x25, 0x27, 0xf2, 0xf3, 0xcb, 0x94, 0x9c, 0xa2, 0xa4, 0xa4, 0xa4, 0xa4, 0xa4, 0xa4, 0xa6, 0xa6, 0xa1, 0xa4, 0xa9, 0xa6, 0xa6, 0xa9, 0xa6, 0xa9, 0xa9, 0xa9, 0xa6, 0xa6, 0xa6, 0xa1, 0x99, 0x97, 0x99, 0x9d, 0x99, 0xc6, 0xe3, 0xe4, 0xe6, 0xe9, 0x10, 0x1b, 0x1a, 0x1b, 0x1b, 0x1b, 0x1b, 0xee, 0xee, 0xd7, 0xd7, 0x82, 0x85, 0x81, 0x7e, 0x89, 0x89, 0x50, 0x89, 0x89, 0x89, 0x89, 0x8b, 0x83, 0x86, 0x86, 0x86, 0x86, 0x86, 0x87, 0x86, 0x8f, 0x70, 0xd4, 0xd4, 0xe1, 0xc3, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0x61, 0xc4, 0xc4, 0x61, 0x61, 0x5f, 0x64, 0x6e, 0x68, 0x6a, 0xe6, 0x02, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x07, 0x07, 0x07, 0x09, 0x07, 0x07, 0x09, 0x07, 0x09, 0x07, 0x09, 0x0c, 0x0c, 0x11, 0x08, 0x15, 0x9b, 0x93, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x93, 0xa4, 0x9d, 0xc7, 0x02, 0x0a, 0x11, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x09, 0x09, 0x06, 0x07, 0x06, 0x03, 0x5f, 0x5a, 0x5f, 0xc4, 0x5f, 0x5f, 0x61, 0x5f, 0x61, 0xd5, 0xd5, 0xd5, 0xc4, 0xd5, 0xc5, 0xc5, 0x61, 0x61, 0x62, 0x61, 0x61, 0x61, 0x62, 0x62, 0x62, 0x62, 0x64, 0x62, 0x64, 0x65, 0x64, 0x62, 0x64, 0x62, 0x61, 0xc4, 0xc4, 0xc4, 0xc4, 0x5b, 0x65, 0x74, 0x72, 0x70, 0x6e, 0x70, 0x72, 0x70, 0x6e, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x6e, 0x70, 0x6a, 0x70, 0x6e, 0x70, 0x6e, 0x6e, 0x74, 0x6e, 0x68, 0x64, 0x61, 0xc3, 0x61, 0xd5, 0xe4, 0xd5, 0xe4, 0xd5, 0xe4, 0xe3, 0xe4, 0xe4, 0xe3, 0xe3, 0xe1, 0xe1, 0xe3, 0xe1, 0xe3, 0xc3, 0xe3, 0xc4, 0x61, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x65, 0xc5, 0xc5, 0xd5, 0xe3, 0xe3, 0xe4, 0x03, 0xd4, 0x5a, 0x5a, 0xd4, 0x5a, 0xd4, 0x5a, 0xd4, 0x5a, 0xd4, 0x5a, 0xd4, 0x5a, 0xd4, 0xd4, 0xd4, 0xd3, 0x5a, 0xe1, 0xe6, 0xe7, 0xe6, 0xe4, 0xe6, 0xe6, 0xe5, 0xe6, 0xe6, 0xe5, 0xe6, 0xc5, 0xe4, 0xe4, 0xe4, 0xe4, 0xe4, 0x03, 0x03, 0x03, 0x03, 0x06, 0xe2, 0x03, 0x19, 0x19, 0x19, 0x16, 0x16, 0x16, 0x16, 0x16, 0x16, 0x16, 0x19, 0x16, 0x0e, 0x0e, 0x05, 0xd2, 0x57, 0xd2, 0xd3, 0xdf, 0xd2, 0xdf, 0xd2, 0xd3, 0xdf, 0xe1, 0xe3, 0xe3, 0xe3, 0xe3, 0xe3, 0xe3, 0xe3, 0xe1, 0x07, 0x12, 0x12, 0x0e, 0x0a, 0x05, 0x05, 0x04, 0x13, 0xd4, 0x56, 0x54, 0x54, 0x55, 0x56, 0x59, 0x5d, 0x60, 0x63, 0x67, 0x75, 0x7a, 0x81, 0x86, 0x86, 0x8f, 0x8b, 0x8b, 0x2b, 0x38, 0x39, 0x39, 0x32, 0x32, 0x2b, 0x28, 0x20, 0x1e, 0x19, 0x16, 0x0b, 0x23, 0x26, 0x23, 0x23, 0x26, 0x23, 0x23, 0x1f, 0x1f, 0x23, 0x1f, 0x23, 0x1f, 0x1f, 0x1c, 0x1f, 0x1c, 0x1c, 0x1f, 0x1c, 0xef, 0x88, 0xd8, 0xd8, 0xd7, 0xd8, 0xd7, 0xd8, 0xd7, 0xd8, 0xd7, 0xf1, 0xd7, 0xf1, 0x84, 0x22, 0x26, 0x26, 0x26,
0xb7, 0xb7, 0xb6, 0xb6, 0xb5, 0xb5, 0xb5, 0xb3, 0xb5, 0xb1, 0xb5, 0xb7, 0xd8, 0x09, 0x10, 0xed, 0xc8, 0xc7, 0xd6, 0xc8, 0xc8, 0xc8, 0xc9, 0x7d, 0xd7, 0x7d, 0x88, 0x8a, 0x8c, 0x8d, 0x91, 0x96, 0x50, 0x9a, 0xaf, 0xaa, 0xa9, 0xa7, 0xa7, 0xa9, 0xa2, 0x99, 0xa2, 0x52, 0x52, 0x52, 0x52, 0x9b, 0x9d, 0xa1, 0xca, 0x1d, 0x22, 0xef, 0x27, 0xf3, 0xf3, 0x94, 0x98, 0x9f, 0xa1, 0xa4, 0xa1, 0xa4, 0xa4, 0xa6, 0xa4, 0xa4, 0xa4, 0xa1, 0xa1, 0xa6, 0xa6, 0xa6, 0xa6, 0xa6, 0xa6, 0xa9, 0xa6, 0xa6, 0xa1, 0x52, 0x97, 0x97, 0x99, 0x97, 0x99, 0x9d, 0xc8, 0xe2, 0xe7, 0xe6, 0xe6, 0xe6, 0xe9, 0xec, 0xec, 0xef, 0xee, 0xf0, 0xd7, 0xd7, 0x82, 0x82, 0x86, 0x8b, 0x83, 0x89, 0x89, 0x89, 0x89, 0x89, 0x89, 0x89, 0x83, 0x8b, 0x86, 0x86, 0x86, 0x86, 0x87, 0x86, 0x87, 0x8d, 0x8d, 0x74, 0x6a, 0x65, 0xc5, 0xd4, 0xd4, 0xd4, 0xd3, 0xe1, 0xd4, 0xc3, 0xc3, 0xc4, 0xc4, 0xc4, 0xc4, 0x5f, 0x65, 0x6e, 0x6a, 0xe6, 0x05, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x07, 0x09, 0x07, 0x07, 0x07, 0x07, 0x07, 0x09, 0x07, 0x09, 0x09, 0x09, 0x0c, 0x0c, 0x11, 0x08, 0xf0, 0x99, 0x93, 0x90, 0x93, 0x90, 0x93, 0x90, 0x90, 0x90, 0x93, 0x93, 0x95, 0x99, 0x9d, 0x79, 0x03, 0x06, 0x0c, 0x0e, 0x0c, 0x11, 0x0c, 0x0c, 0x09, 0x0c, 0x09, 0x0c, 0x09, 0x09, 0x07, 0x06, 0x03, 0xe3, 0x5b, 0xd4, 0x5f, 0x5f, 0xc4, 0x61, 0x5f, 0x61, 0x61, 0x61, 0xd5, 0xc5, 0xd5, 0xc5, 0xc5, 0xc4, 0x64, 0xc5, 0x61, 0x61, 0x62, 0x62, 0x61, 0x64, 0x64, 0x65, 0x62, 0x65, 0x62, 0x65, 0x62, 0x64, 0x62, 0x64, 0x61, 0xc4, 0xc4, 0xc4, 0x5f, 0x61, 0x5b, 0x61, 0x70, 0x74, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x72, 0x70, 0x70, 0x74, 0x70, 0x70, 0x70, 0x6e, 0x70, 0x6e, 0x6a, 0x70, 0x6e, 0x6e, 0x6a, 0x6e, 0x70, 0x70, 0x68, 0x65, 0x62, 0xc3, 0xd5, 0xe4, 0xd5, 0xe4, 0xd5, 0xe4, 0xe4, 0xe4, 0xe4, 0xe4, 0xe3, 0xe1, 0xe1, 0xe1, 0xe1, 0xe3, 0xe1, 0xe1, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x61, 0x64, 0x64, 0x64, 0x61, 0xc5, 0xe1, 0xe4, 0x07, 0xe3, 0xd3, 0x5a, 0xd4, 0xd4, 0x5a, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0x5a, 0xd4, 0xd4, 0xd4, 0x5a, 0xd4, 0xd5, 0xe7, 0xe6, 0xe4, 0xe6, 0xe4, 0xe6, 0xe4, 0xe5, 0xd5, 0x64, 0xc5, 0xc5, 0xd5, 0xe4, 0xe4, 0xe3, 0xd5, 0xe4, 0xe3, 0xe3, 0x03, 0x03, 0x0a, 0x0f, 0x13, 0x16, 0x19, 0x19, 0x16, 0x16, 0x16, 0x16, 0x16, 0x19, 0x16, 0x0e, 0x0e, 0xe0, 0xc2, 0xd3, 0xdf, 0x57, 0xd3, 0xd3, 0xd3, 0xdf, 0x57, 0xdf, 0xd3, 0xe0, 0xe3, 0x03, 0xe3, 0xe3, 0xe3, 0xe3, 0xe1, 0x0c, 0x0f, 0x12, 0x12, 0x0e, 0x05, 0x06, 0x04, 0xe2, 0x5e, 0x63, 0x66, 0x6d, 0x75, 0x7a, 0x7a, 0x87, 0x87, 0x8d, 0x86, 0x87, 0x86, 0x87, 0x81, 0x86, 0x83, 0x7f, 0x26, 0x2f, 0x32, 0x32, 0x32, 0x35, 0x36, 0x35, 0x39, 0x35, 0x32, 0x32, 0x2c, 0x1e, 0x26, 0x26, 0x23, 0x26, 0x23, 0x26, 0x23, 0x1f, 0x23, 0x1f, 0x23, 0x1f, 0x1f, 0x1f, 0x1f, 0x1c, 0x1c, 0x1c, 0x1c, 0x19, 0xef, 0x84, 0xd8, 0xd8, 0xd7, 0xf1, 0xd7, 0xf1, 0xd8, 0xf1, 0xd8, 0xf1, 0xd8, 0xd8, 0x22, 0x26, 0x26, 0x23,
0xb7, 0xb6, 0xb7, 0xb5, 0xb6, 0xb6, 0xb5, 0xb3, 0xb3, 0xb3, 0xb1, 0xb3, 0xb7, 0xd8, 0x09, 0xeb, 0xc8, 0xc7, 0xc8, 0xc7, 0xc8, 0xd6, 0xc8, 0xd6, 0x7d, 0x80, 0x7d, 0x84, 0x8a, 0x8a, 0x8c, 0x51, 0x91, 0x50, 0x9d, 0xad, 0xa9, 0xa7, 0xa6, 0xa7, 0xa2, 0x9b, 0x52, 0x9f, 0x52, 0x9b, 0x52, 0x9b, 0x52, 0x52, 0xa1, 0xd9, 0x17, 0x25, 0x27, 0xf0, 0xf3, 0xcb, 0x94, 0x9c, 0xa2, 0xa1, 0xa4, 0xa1, 0xa4, 0xa1, 0xa1, 0xa1, 0xa4, 0x9d, 0xa1, 0xa1, 0xa4, 0xa4, 0xa4, 0xa6, 0xa6, 0xa4, 0xa6, 0xa1, 0x9d, 0x97, 0x97, 0x99, 0x95, 0x97, 0x92, 0x99, 0x52, 0x77, 0xe4, 0xe7, 0xc6, 0xe7, 0xc6, 0xe6, 0xc6, 0xea, 0xd6, 0xd6, 0x80, 0x82, 0x85, 0x86, 0x8b, 0x89, 0x89, 0x89, 0x89, 0x89, 0x89, 0x4f, 0x89, 0x89, 0x8b, 0x83, 0x86, 0x86, 0x86, 0x86, 0x86, 0x87, 0x87, 0x81, 0x85, 0xe8, 0x90, 0x9d, 0x8f, 0x87, 0x7b, 0x75, 0x70, 0x6a, 0x68, 0x61, 0xc4, 0xc3, 0xd4, 0xd4, 0xd3, 0xd4, 0xd4, 0x65, 0x6e, 0x07, 0x02, 0x06, 0x06, 0x02, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x07, 0x07, 0x09, 0x09, 0x09, 0x09, 0x07, 0x07, 0x09, 0x09, 0x0c, 0x0c, 0x0c, 0x11, 0x12, 0x08, 0xd8, 0x99, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x93, 0x97, 0x9a, 0x93, 0x97, 0xa1, 0x7c, 0xe2, 0x03, 0x10, 0x0c, 0x0a, 0x09, 0x0c, 0x09, 0x09, 0x09, 0x09, 0x06, 0x07, 0x06, 0x07, 0x03, 0xc4, 0x5a, 0x5b, 0xc3, 0x5f, 0xc4, 0x5f, 0x61, 0x61, 0x61, 0x61, 0x61, 0xd5, 0xc5, 0xc5, 0xc5, 0xc5, 0x64, 0x61, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x62, 0x64, 0x65, 0x65, 0x65, 0x62, 0x64, 0x62, 0x64, 0x62, 0x61, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0x61, 0x5b, 0x5f, 0x6a, 0x74, 0x70, 0x6e, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x6e, 0x70, 0x6a, 0x6e, 0x70, 0x6e, 0x6a, 0x6e, 0x6e, 0x74, 0x74, 0x6a, 0x68, 0xe4, 0xe4, 0xe4, 0xd5, 0xe4, 0xd5, 0xe4, 0xe4, 0xe3, 0xe4, 0xe4, 0xe4, 0xd5, 0xe1, 0xc3, 0xe1, 0xe1, 0xd5, 0x61, 0x64, 0x64, 0x64, 0x64, 0x64, 0x61, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0xc5, 0x64, 0x64, 0x64, 0x64, 0x61, 0x64, 0x64, 0xc4, 0xd5, 0x09, 0xe5, 0xd4, 0x57, 0x5a, 0xd4, 0x5a, 0xd4, 0x5a, 0xd4, 0x5a, 0xd4, 0x5a, 0xd4, 0xd4, 0xd4, 0xd4, 0x5a, 0xd4, 0xd3, 0xe1, 0xe5, 0xe7, 0xe4, 0xe6, 0xe4, 0xe5, 0xe4, 0xe5, 0xd5, 0xc5, 0xd5, 0xc5, 0xd5, 0xd5, 0xe4, 0xe4, 0xe4, 0xe3, 0x03, 0xe4, 0x07, 0xe4, 0x06, 0x0a, 0x0e, 0x0f, 0x13, 0x19, 0x19, 0x19, 0x16, 0x19, 0x16, 0x19, 0x13, 0x12, 0x02, 0xd2, 0x57, 0xdf, 0xd3, 0xdf, 0xd2, 0xd3, 0xd3, 0xdf, 0xd3, 0xd3, 0xd2, 0xd3, 0xd4, 0xe3, 0x03, 0xe4, 0xe3, 0xe1, 0x03, 0x12, 0x12, 0x0e, 0x12, 0x0e, 0x05, 0x02, 0x05, 0x77, 0x8b, 0x81, 0x85, 0x81, 0x81, 0x81, 0x7a, 0x81, 0x7a, 0x81, 0x81, 0x81, 0x81, 0x81, 0x7e, 0x83, 0xd7, 0x2e, 0x2a, 0x35, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x35, 0x36, 0xf5, 0xd9, 0x1c, 0x23, 0x26, 0x26, 0x23, 0x23, 0x23, 0x1f, 0x1f, 0x23, 0x23, 0x1f, 0x23, 0x1f, 0x1f, 0x1c, 0x1f, 0x1c, 0x1c, 0x19, 0x16, 0xee, 0x88, 0xd7, 0xf1, 0xd8, 0xd8, 0xd8, 0xd7, 0xd8, 0xd7, 0xf1, 0xd8, 0xd8, 0x20, 0x26, 0x23, 0x26,
0xb7, 0xb6, 0xb7, 0xb6, 0xb6, 0xb3, 0xb5, 0xb3, 0xb3, 0xb1, 0xaf, 0xb1, 0xb1, 0xb5, 0xca, 0xeb, 0xc7, 0xc7, 0xc7, 0xc7, 0xd6, 0xc8, 0xd6, 0xc8, 0xd6, 0xd7, 0xd7, 0x80, 0x84, 0x88, 0x8a, 0x8a, 0x92, 0x91, 0x50, 0x9d, 0xad, 0xa9, 0xa7, 0xa6, 0xa7, 0x52, 0x52, 0x52, 0xa2, 0x52, 0x52, 0x52, 0x9b, 0x52, 0x99, 0xa1, 0xd8, 0x1a, 0x25, 0xf0, 0xf3, 0xd9, 0xcb, 0x9c, 0x9b, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0x9d, 0x9d, 0xa1, 0xa4, 0xa4, 0xa4, 0xa4, 0xa1, 0xa1, 0x9d, 0x97, 0x97, 0x97, 0x99, 0x97, 0x97, 0x97, 0x92, 0x99, 0xa1, 0x7c, 0xe4, 0xe6, 0xe7, 0xc6, 0xea, 0xc6, 0xc6, 0xc6, 0xeb, 0x72, 0x77, 0x81, 0x8b, 0x89, 0x89, 0x89, 0x89, 0x89, 0x89, 0x89, 0x4f, 0x89, 0x83, 0x8b, 0x8b, 0x86, 0x86, 0x86, 0x81, 0x81, 0x7f, 0x7f, 0x86, 0xc8, 0x01, 0x01, 0x9a, 0x9d, 0x9d, 0x9d, 0x9d, 0x9d, 0x9a, 0x96, 0x95, 0x8b, 0x87, 0x81, 0x75, 0x75, 0x6a, 0x62, 0x61, 0xc5, 0x01, 0x05, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x05, 0x06, 0x07, 0x07, 0x09, 0x07, 0x09, 0x07, 0x09, 0x09, 0x0c, 0x09, 0x0c, 0x0c, 0x11, 0x11, 0x12, 0x0e, 0x94, 0x95, 0x90, 0x90, 0x90, 0x93, 0x90, 0x93, 0x93, 0x99, 0x9a, 0x92, 0x93, 0x92, 0xa1, 0x8a, 0xe2, 0xe2, 0xe5, 0x09, 0x0c, 0x0c, 0x09, 0x09, 0x09, 0x07, 0x06, 0x07, 0x06, 0x03, 0xe4, 0x5f, 0x5a, 0xc3, 0x5f, 0xc4, 0x5f, 0x61, 0xc4, 0x61, 0x61, 0x61, 0x61, 0x61, 0xc5, 0xc5, 0xc5, 0xc5, 0xc5, 0x64, 0x64, 0x64, 0x64, 0x62, 0x65, 0x62, 0x64, 0x62, 0x64, 0x65, 0x62, 0x65, 0x65, 0x62, 0x64, 0x62, 0x61, 0xc3, 0xc4, 0xc4, 0xc4, 0x61, 0xc4, 0x61, 0x5f, 0x5b, 0x66, 0x77, 0x74, 0x70, 0x72, 0x70, 0x70, 0x72, 0x70, 0x70, 0x70, 0x70, 0x6e, 0x70, 0x6e, 0x70, 0x6e, 0x70, 0x6e, 0x70, 0x6e, 0x6e, 0x6e, 0x6e, 0x6a, 0x6e, 0x6e, 0x74, 0x64, 0x00, 0x02, 0x03, 0xe2, 0x03, 0xe3, 0xe4, 0xe4, 0xe4, 0xe4, 0xe4, 0xe4, 0xd5, 0xe3, 0xc3, 0xe1, 0xc3, 0x64, 0x61, 0x64, 0x64, 0x64, 0x61, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x61, 0x64, 0x61, 0x64, 0x61, 0x64, 0x61, 0x64, 0x61, 0x62, 0xc3, 0xe2, 0x10, 0xe3, 0x5a, 0x57, 0xd4, 0x5a, 0xd4, 0x5a, 0xd4, 0x5a, 0xd4, 0x5a, 0xd4, 0x5a, 0xd4, 0xd4, 0xd3, 0xd4, 0x5a, 0x5a, 0xe4, 0xe7, 0xe5, 0xe4, 0xe4, 0xe5, 0xe4, 0xe4, 0xc5, 0xd5, 0xd5, 0xc5, 0xd5, 0xd5, 0xe4, 0xe3, 0x03, 0x03, 0x07, 0x03, 0x07, 0x03, 0x06, 0x0a, 0x06, 0x0a, 0x0a, 0x0f, 0x13, 0x19, 0x19, 0x19, 0x19, 0x19, 0x13, 0x0a, 0xdf, 0x57, 0xdf, 0xd3, 0xd2, 0xd3, 0xdf, 0xd3, 0xd2, 0xd3, 0xdf, 0xd3, 0xd3, 0xd2, 0xdf, 0xd3, 0xe3, 0xe3, 0xe4, 0xe3, 0x0c, 0x0f, 0x12, 0x0e, 0x12, 0x0e, 0x0a, 0x05, 0x05, 0xc7, 0x7e, 0x7e, 0x7b, 0x7a, 0x7b, 0x81, 0x7a, 0x81, 0x81, 0x7f, 0x81, 0x81, 0x81, 0x81, 0x83, 0xf0, 0x2e, 0x26, 0x32, 0x32, 0x32, 0x32, 0x32, 0x35, 0x32, 0x32, 0x32, 0x32, 0xf6, 0x8c, 0xef, 0x1c, 0x1f, 0x23, 0x26, 0x26, 0x23, 0x23, 0x23, 0x1f, 0x23, 0x1f, 0x23, 0x1f, 0x1f, 0x1f, 0x1c, 0x1c, 0x1c, 0x19, 0x1c, 0x16, 0xef, 0x88, 0xd7, 0xf1, 0xd7, 0xf1, 0xf1, 0xd8, 0xf1, 0xd8, 0xf1, 0xd8, 0x21, 0x26, 0x26, 0x23,
0xb7, 0xb7, 0xb6, 0xb6, 0xb5, 0xb5, 0xb5, 0xb5, 0xb3, 0xb1, 0xb1, 0xaf, 0xab, 0xb1, 0xb9, 0x98, 0xd6, 0xd7, 0xc8, 0xd6, 0xc7, 0xc7, 0xc7, 0xd6, 0xd6, 0xd6, 0xc8, 0xd7, 0xd7, 0x80, 0x84, 0x88, 0x8e, 0x8d, 0x96, 0x50, 0xa1, 0xad, 0xa7, 0xa7, 0xa7, 0x52, 0x52, 0x52, 0x9b, 0x52, 0x9b, 0x52, 0x99, 0x99, 0x52, 0x9d, 0xa1, 0xf1, 0x1a, 0xef, 0xf2, 0xf1, 0xcb, 0x98, 0x9b, 0xa1, 0xa1, 0xa1, 0xa1, 0x9d, 0xa1, 0x9d, 0xa1, 0x9d, 0x9d, 0x9d, 0x9d, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0x9d, 0x52, 0x97, 0x97, 0x97, 0x99, 0x95, 0x97, 0x92, 0x97, 0x92, 0x97, 0xa1, 0x82, 0xe6, 0xe6, 0xeb, 0xc6, 0xea, 0xc6, 0xeb, 0xc6, 0xeb, 0x68, 0x72, 0x76, 0x83, 0x4f, 0x89, 0x89, 0x89, 0x89, 0x4f, 0x89, 0x89, 0x50, 0x83, 0x86, 0x81, 0x81, 0x7a, 0x7f, 0x7b, 0x7f, 0x81, 0x81, 0x09, 0x01, 0x01, 0xe8, 0x9d, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x9a, 0x9a, 0x9d, 0x9d, 0xa1, 0x9d, 0x9a, 0x9a, 0x8b, 0x8c, 0xe4, 0x02, 0x06, 0x05, 0x06, 0x05, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x09, 0x07, 0x09, 0x07, 0x09, 0x07, 0x09, 0x0c, 0x09, 0x0c, 0x0c, 0x11, 0x11, 0x11, 0x0f, 0x11, 0x98, 0x97, 0x90, 0x90, 0x90, 0x93, 0x93, 0x93, 0x99, 0x9a, 0x97, 0x8d, 0x93, 0x92, 0xa1, 0x8a, 0xe4, 0xe2, 0xe4, 0xe5, 0x09, 0x09, 0x09, 0x07, 0x07, 0x07, 0x02, 0x07, 0x03, 0xd5, 0x5b, 0xd4, 0x5b, 0xc3, 0x5f, 0x61, 0xc4, 0x61, 0x61, 0xc4, 0x61, 0x61, 0x61, 0x61, 0x61, 0xc5, 0xc5, 0x64, 0xc5, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x65, 0x61, 0x64, 0x64, 0x61, 0x65, 0x62, 0x64, 0x64, 0x62, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0x61, 0x61, 0x61, 0x5f, 0x5b, 0x62, 0x70, 0x74, 0x70, 0x70, 0x70, 0x70, 0x74, 0x70, 0x70, 0x70, 0x70, 0x70, 0x6e, 0x70, 0x6a, 0x6e, 0x6a, 0x6e, 0x70, 0x6e, 0x6a, 0x6e, 0x6a, 0x6e, 0x6e, 0x6a, 0x66, 0xc5, 0x00, 0x02, 0x02, 0x02, 0x02, 0x02, 0x03, 0x03, 0xe3, 0x03, 0xe4, 0xe4, 0xe4, 0xd5, 0xc4, 0xc3, 0x61, 0x64, 0x61, 0x64, 0x64, 0x64, 0x64, 0x64, 0x61, 0x64, 0x64, 0x61, 0x64, 0x61, 0x64, 0x61, 0x61, 0x64, 0x61, 0x61, 0x61, 0x61, 0x64, 0x5b, 0xc2, 0xe2, 0xe8, 0x03, 0xd4, 0x5a, 0x5a, 0x5a, 0xd4, 0x5a, 0xd4, 0xd3, 0xd4, 0x5a, 0xd4, 0xd4, 0x5a, 0xd4, 0xd3, 0xd4, 0xd3, 0x5a, 0xe1, 0xe4, 0xe5, 0xe5, 0xe4, 0xe5, 0xe4, 0xd5, 0xc5, 0xd5, 0xd5, 0xd5, 0xd5, 0xd5, 0xd5, 0xe4, 0xe4, 0x07, 0x03, 0x07, 0x07, 0x03, 0x07, 0x0a, 0x0a, 0x09, 0x06, 0x0c, 0x08, 0x0f, 0x13, 0x16, 0x1c, 0x19, 0x16, 0xe2, 0x55, 0x57, 0xdf, 0xd3, 0xdf, 0x57, 0xdf, 0xd3, 0xd3, 0xd3, 0xd3, 0xd3, 0xd3, 0xd3, 0xd2, 0xd3, 0xe0, 0xe1, 0xe3, 0x03, 0x12, 0x12, 0x12, 0x12, 0x12, 0x12, 0x0a, 0x05, 0x05, 0xeb, 0x78, 0x7e, 0x7b, 0x7b, 0x7a, 0x7b, 0x81, 0x7b, 0x81, 0x81, 0x7e, 0x85, 0x7e, 0x83, 0x25, 0x2e, 0x26, 0x28, 0x35, 0x2c, 0x32, 0x32, 0x32, 0x32, 0x2c, 0x32, 0x37, 0xf3, 0xca, 0x8e, 0x22, 0x19, 0x1c, 0x1f, 0x23, 0x26, 0x26, 0x1f, 0x23, 0x1f, 0x23, 0x1f, 0x23, 0x1f, 0x1f, 0x1f, 0x1f, 0x1c, 0x19, 0x19, 0x19, 0x16, 0xf0, 0x84, 0xd7, 0xf1, 0xd8, 0xd7, 0xf1, 0xd8, 0xf1, 0xd8, 0xf1, 0x21, 0x26, 0x23, 0x26,
0xb7, 0xb7, 0xb6, 0xb6, 0xb6, 0xb6, 0xb5, 0xb3, 0xb1, 0xb1, 0xaf, 0xab, 0xb1, 0xb3, 0xb5, 0xb5, 0xca, 0xd7, 0xca, 0xd8, 0xd8, 0xd7, 0xd7, 0xc8, 0xd6, 0xc8, 0xd6, 0xd6, 0xc8, 0xd7, 0xd7, 0x84, 0x84, 0x88, 0x8c, 0x51, 0x91, 0xa1, 0xab, 0xa7, 0xa7, 0x52, 0x52, 0x52, 0x52, 0x52, 0x52, 0x99, 0x52, 0x52, 0x99, 0x99, 0x9a, 0x9d, 0xf1, 0x1a, 0xf0, 0xf3, 0xd9, 0x94, 0x9b, 0x9d, 0x9d, 0x9d, 0x9d, 0x9d, 0x9d, 0x9d, 0x9d, 0x9d, 0x9d, 0x9a, 0x9d, 0x9d, 0xa1, 0x9d, 0xa1, 0x9a, 0x99, 0x95, 0x97, 0x92, 0x99, 0x95, 0x97, 0x97, 0x97, 0x92, 0x97, 0x92, 0x97, 0xa1, 0x8a, 0xc6, 0xe6, 0xeb, 0xc6, 0xeb, 0xc6, 0xc7, 0x68, 0xc7, 0x72, 0x72, 0x70, 0x76, 0x7e, 0x4f, 0x89, 0x89, 0x89, 0x89, 0x83, 0x7e, 0x81, 0x7a, 0x7a, 0x7a, 0x7f, 0x7a, 0x7f, 0x7b, 0x86, 0xc8, 0x01, 0x05, 0x05, 0x01, 0xe9, 0x9d, 0x96, 0x96, 0x96, 0x9a, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x9a, 0xab, 0xa2, 0xd5, 0xe0, 0xe4, 0x03, 0x06, 0x06, 0x05, 0x05, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x05, 0x07, 0x09, 0x09, 0x09, 0x07, 0x09, 0x0c, 0x09, 0x0c, 0x0c, 0x0c, 0x11, 0x11, 0x11, 0x15, 0x0b, 0xef, 0x99, 0x93, 0x90, 0x93, 0x93, 0x93, 0x97, 0x99, 0x9a, 0x92, 0x92, 0x92, 0x92, 0x92, 0xa1, 0x8c, 0xe4, 0x03, 0xe4, 0xe4, 0xe5, 0x07, 0x09, 0x06, 0x03, 0x06, 0x03, 0xe4, 0x5f, 0x5f, 0x5a, 0xc3, 0x5f, 0x5f, 0xc4, 0x5f, 0x61, 0x61, 0x61, 0x61, 0xc4, 0x5f, 0xc3, 0x5f, 0xc3, 0xc3, 0xc4, 0x65, 0x64, 0xc6, 0x64, 0x65, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x61, 0xc5, 0x64, 0x62, 0x64, 0x62, 0xc4, 0xc4, 0xc3, 0xc4, 0xc4, 0x61, 0xc4, 0xc5, 0x61, 0x61, 0x61, 0x5b, 0x60, 0x6e, 0x74, 0x74, 0x6e, 0x74, 0x6e, 0x70, 0x70, 0x70, 0x6e, 0x70, 0x6e, 0x70, 0x6e, 0x70, 0x6a, 0x70, 0x6e, 0x6a, 0x6e, 0x6a, 0x6e, 0x6a, 0x6e, 0x6e, 0x62, 0x60, 0xc5, 0x02, 0x02, 0x00, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0x03, 0x03, 0x03, 0xe3, 0xd5, 0xc5, 0x61, 0x64, 0x64, 0x64, 0x61, 0x61, 0x64, 0x61, 0x61, 0x61, 0x64, 0x61, 0x64, 0x61, 0x61, 0x61, 0x61, 0x64, 0x61, 0x61, 0x61, 0x64, 0x5a, 0xc2, 0xc2, 0xe0, 0x10, 0x09, 0xe1, 0xd3, 0x5a, 0x5a, 0xd4, 0x5a, 0xd4, 0x5a, 0xd4, 0xd3, 0xd4, 0xd3, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0x5a, 0xd4, 0xe3, 0xe5, 0xe5, 0xe4, 0x07, 0xd5, 0xc5, 0xd5, 0xd5, 0xd5, 0xd5, 0xd5, 0xd5, 0xd5, 0xe3, 0xe4, 0x03, 0x07, 0x07, 0x07, 0x03, 0x07, 0x06, 0x0a, 0x09, 0x06, 0x09, 0x06, 0x09, 0x0a, 0x0f, 0x13, 0x1f, 0x0b, 0xd2, 0x57, 0xd3, 0xdf, 0xd3, 0xd3, 0xdf, 0xd3, 0xd3, 0xdf, 0xd3, 0xdf, 0xd3, 0xd3, 0xd3, 0xd3, 0xd2, 0xd3, 0xd3, 0xe1, 0x09, 0x12, 0x0e, 0x0e, 0x0e, 0x12, 0x0e, 0x0e, 0x05, 0x0a, 0xe9, 0x7a, 0x7e, 0x7a, 0x7b, 0x7a, 0x7f, 0x81, 0x7a, 0x7f, 0x81, 0x81, 0x81, 0x7e, 0x20, 0x2e, 0x26, 0x2a, 0x2c, 0x32, 0x32, 0x2c, 0x32, 0x2c, 0x32, 0x35, 0x37, 0xd9, 0x84, 0xca, 0xca, 0x1e, 0x1c, 0x1c, 0x1c, 0x1f, 0x26, 0x26, 0x23, 0x1f, 0x23, 0x23, 0x1f, 0x23, 0x1f, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x19, 0x19, 0x16, 0xd7, 0xd8, 0xd8, 0xd8, 0xf1, 0xd8, 0xf1, 0xd8, 0xd8, 0xf0, 0x23, 0x26, 0x26, 0x23,
0xb7, 0xb7, 0xb7, 0xb6, 0xb6, 0xb5, 0xb3, 0xb1, 0xb3, 0xaf, 0xaf, 0xb1, 0xb5, 0xb3, 0xb1, 0xb1, 0xad, 0x84, 0xd7, 0xca, 0xd8, 0xca, 0xd8, 0xd8, 0xd7, 0xd7, 0xd6, 0xd7, 0xd6, 0xd6, 0xd6, 0xd7, 0xd7, 0x84, 0x88, 0x88, 0x8f, 0x91, 0xa4, 0xa9, 0xa7, 0xa1, 0x52, 0x9b, 0x52, 0x52, 0x99, 0x52, 0x99, 0x99, 0x52, 0x9a, 0x99, 0x9a, 0x9d, 0xf0, 0x22, 0xf1, 0xd8, 0x94, 0x93, 0x52, 0x9d, 0x9d, 0x9d, 0x9a, 0x9d, 0x9d, 0x9a, 0x9d, 0x9a, 0x9d, 0x9a, 0x9d, 0x9a, 0x9d, 0x9d, 0x9a, 0x99, 0x95, 0x97, 0x97, 0x95, 0x99, 0x95, 0x95, 0x97, 0x97, 0x92, 0x97, 0x97, 0x97, 0x9d, 0x90, 0xc6, 0xe6, 0xc7, 0xc6, 0xc7, 0xc6, 0xeb, 0x6e, 0xc7, 0x72, 0x72, 0x74, 0x75, 0x7a, 0x7e, 0x89, 0x4f, 0x83, 0x7e, 0x7e, 0x7e, 0x7a, 0x7a, 0x7b, 0x7a, 0x7b, 0x7b, 0x7f, 0x81, 0xe5, 0x01, 0x06, 0x02, 0x05, 0x01, 0x80, 0x9d, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x9a, 0x91, 0x9d, 0xb3, 0x9f, 0xc4, 0xe0, 0xc5, 0xe4, 0xe4, 0x03, 0x06, 0x06, 0x05, 0x05, 0x05, 0x06, 0x05, 0x06, 0x06, 0x05, 0x07, 0x09, 0x07, 0x09, 0x09, 0x0c, 0x0c, 0x0c, 0x10, 0x0c, 0x11, 0x11, 0x11, 0x11, 0x11, 0x08, 0xf1, 0x9d, 0x90, 0x93, 0x93, 0x97, 0x97, 0x9d, 0x9a, 0x97, 0x8d, 0x93, 0x92, 0x93, 0x92, 0xa1, 0x93, 0xe6, 0xe2, 0xe5, 0xe4, 0xe5, 0xe4, 0x07, 0x07, 0x07, 0x03, 0xe3, 0x5f, 0x5b, 0xd4, 0x5a, 0xc3, 0xc3, 0xc3, 0x5f, 0xd4, 0x5f, 0xd4, 0x5f, 0xc4, 0x61, 0x64, 0x65, 0x66, 0x6e, 0x62, 0x5b, 0x61, 0x61, 0x61, 0x62, 0x61, 0x61, 0x64, 0x64, 0x61, 0x64, 0x64, 0x61, 0xc5, 0xc5, 0x65, 0xc5, 0xc3, 0xc3, 0xc4, 0xc4, 0xc4, 0xc4, 0x61, 0x61, 0x61, 0x61, 0x61, 0x61, 0x5f, 0x5d, 0x6a, 0x74, 0x74, 0x70, 0x70, 0x70, 0x6a, 0x70, 0x70, 0x70, 0x70, 0x6a, 0x70, 0x6a, 0x6e, 0x6a, 0x6a, 0x6e, 0x6a, 0x6e, 0x6a, 0x6e, 0x6e, 0x6e, 0x66, 0x61, 0x63, 0xc4, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0x03, 0x68, 0x65, 0x61, 0x61, 0x61, 0x64, 0x64, 0x61, 0x64, 0x64, 0x61, 0x64, 0x61, 0x61, 0x64, 0x61, 0x64, 0x61, 0x61, 0x61, 0x64, 0x61, 0x64, 0x5b, 0xc2, 0x55, 0xc2, 0xd3, 0x07, 0x11, 0xe3, 0xd4, 0x57, 0x5a, 0xd3, 0xd4, 0xd3, 0xd3, 0xd4, 0x5a, 0xd4, 0xd4, 0xd4, 0xd4, 0x5a, 0xd4, 0xd3, 0x5a, 0x5a, 0xe1, 0xe5, 0xe5, 0xe5, 0xe4, 0xc5, 0xd5, 0xd5, 0xd5, 0xd5, 0xd5, 0xd5, 0xe4, 0xd5, 0xd5, 0xd5, 0xe4, 0x03, 0x07, 0x07, 0x03, 0x07, 0x06, 0x0a, 0x0c, 0x09, 0x09, 0x06, 0x09, 0x07, 0x07, 0x0a, 0x0f, 0xe2, 0x53, 0xd2, 0x57, 0xd2, 0xd2, 0xd2, 0xd2, 0xd2, 0xd2, 0xd2, 0xd2, 0xd2, 0xd2, 0xd2, 0xd2, 0xd2, 0xd2, 0xc2, 0x54, 0x00, 0x18, 0x14, 0x12, 0x12, 0x0e, 0x12, 0x0f, 0x0e, 0x0a, 0x0a, 0xe8, 0x7a, 0x7e, 0x7a, 0x7f, 0x7a, 0x7b, 0x81, 0x7a, 0x81, 0x7f, 0x83, 0x7f, 0x2a, 0x26, 0x26, 0x26, 0x2b, 0x35, 0x2c, 0x32, 0x2c, 0x35, 0x2c, 0x35, 0xf5, 0x84, 0xd9, 0xd8, 0x8e, 0xf1, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x23, 0x23, 0x23, 0x23, 0x1f, 0x23, 0x1f, 0x1f, 0x1f, 0x1f, 0x1c, 0x19, 0x1c, 0x19, 0x19, 0x19, 0x16, 0xf1, 0x84, 0xf1, 0xd7, 0xf1, 0xd8, 0xf1, 0x84, 0xef, 0x26, 0x26, 0x23, 0x26,
0xb7, 0xb7, 0xb7, 0xb6, 0xb6, 0xb3, 0xb5, 0xb1, 0xb1, 0xaf, 0xb1, 0xb5, 0xb1, 0xb1, 0xaf, 0xaf, 0xad, 0xa7, 0xd7, 0xd8, 0xd8, 0xd8, 0xd8, 0xca, 0xd8, 0xca, 0xd9, 0xd8, 0xd8, 0xd7, 0xd7, 0xd7, 0xd7, 0xd7, 0xd7, 0x84, 0x88, 0x8d, 0x91, 0xa4, 0xab, 0xa2, 0x52, 0x52, 0x99, 0x52, 0x52, 0x99, 0x52, 0x9a, 0x52, 0x9a, 0x99, 0x9a, 0x9a, 0x9a, 0xf0, 0xef, 0xd9, 0xca, 0x98, 0x9d, 0x9d, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x9d, 0x9a, 0x9d, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x95, 0x95, 0x95, 0x92, 0x95, 0x95, 0x95, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x92, 0x97, 0x9d, 0x93, 0xc7, 0xe6, 0x6e, 0xc6, 0xc7, 0x68, 0xc7, 0x68, 0xc7, 0x72, 0x72, 0x74, 0x75, 0x75, 0x7a, 0x7e, 0x89, 0x7e, 0x7e, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7e, 0xc9, 0x01, 0x05, 0x05, 0x05, 0x06, 0x01, 0x04, 0x84, 0x9d, 0x96, 0x9a, 0x96, 0x9a, 0x96, 0x9a, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0xa1, 0xa2, 0xaf, 0x9b, 0xe3, 0xd4, 0xd5, 0xc5, 0xd5, 0xd5, 0xe4, 0x03, 0x06, 0x06, 0x05, 0x05, 0x05, 0x06, 0x06, 0x05, 0x09, 0x09, 0x09, 0x09, 0x0c, 0x09, 0x0c, 0x0c, 0x0c, 0x10, 0x11, 0x11, 0x15, 0x10, 0x15, 0x08, 0x8e, 0x52, 0x93, 0x93, 0x97, 0x97, 0x9a, 0x9d, 0x95, 0x8d, 0x92, 0x92, 0x92, 0x92, 0x92, 0x9d, 0x97, 0xe7, 0xe2, 0x03, 0xe6, 0xe4, 0xe4, 0xe4, 0x03, 0xe5, 0xd4, 0x5a, 0x57, 0x5a, 0x5a, 0xc3, 0x5f, 0x61, 0x65, 0x66, 0x66, 0x70, 0x70, 0x7b, 0x7b, 0x81, 0x85, 0x87, 0x92, 0x7a, 0x58, 0x56, 0x58, 0x58, 0x58, 0x58, 0x58, 0x58, 0x5d, 0x5d, 0x5d, 0x5d, 0x5d, 0x5d, 0x5d, 0x5f, 0x61, 0xc4, 0xc3, 0xc3, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0x61, 0x61, 0x61, 0x61, 0x5f, 0x5b, 0x66, 0x74, 0x74, 0x70, 0x70, 0x70, 0x6a, 0x70, 0x6a, 0x70, 0x6a, 0x6e, 0x6a, 0x6a, 0x6e, 0x6a, 0x6e, 0x6a, 0x6e, 0x6a, 0x6e, 0x6e, 0x6e, 0x62, 0x62, 0x62, 0x66, 0xc4, 0x02, 0x02, 0x03, 0x02, 0x02, 0x03, 0x02, 0x03, 0x02, 0x03, 0x02, 0x03, 0xe2, 0x6a, 0x70, 0x68, 0x64, 0x61, 0x61, 0x64, 0x61, 0x64, 0x61, 0x64, 0x61, 0x64, 0x61, 0x61, 0x61, 0x61, 0x64, 0x61, 0x61, 0x61, 0x61, 0x65, 0x5a, 0xc2, 0xd2, 0x55, 0xc2, 0x55, 0x03, 0x10, 0x09, 0xe1, 0x57, 0x5a, 0x5a, 0xd4, 0x5a, 0xd3, 0x5a, 0xd4, 0xd3, 0xd4, 0xd3, 0xd4, 0xd3, 0xd4, 0xd4, 0xd4, 0x5a, 0xd3, 0xe3, 0xe5, 0xe5, 0xd5, 0xd5, 0xd5, 0xd5, 0xd5, 0xd5, 0xe4, 0xd5, 0xe4, 0xe3, 0xe4, 0xd5, 0xe4, 0xd5, 0x03, 0x07, 0x03, 0xe5, 0x06, 0x0a, 0x06, 0x0c, 0x09, 0x09, 0x09, 0x07, 0x07, 0x07, 0x09, 0xe0, 0x53, 0x53, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0x53, 0xde, 0x1f, 0x16, 0x16, 0x14, 0x0f, 0x0e, 0x0e, 0x12, 0x0e, 0x0e, 0x0a, 0x0c, 0x75, 0x7e, 0x7a, 0x7b, 0x7a, 0x7b, 0x81, 0x7b, 0x81, 0x7e, 0x80, 0x26, 0x26, 0x26, 0x26, 0x28, 0x2c, 0x32, 0x2c, 0x32, 0x2c, 0x35, 0x37, 0xf3, 0xd8, 0xd8, 0xd9, 0xd8, 0x8e, 0xef, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1f, 0x23, 0x23, 0x23, 0x1f, 0x23, 0x1f, 0x23, 0x1c, 0x1f, 0x1c, 0x19, 0x1c, 0x19, 0x19, 0x19, 0x18, 0xd8, 0xd8, 0xf1, 0xd8, 0xf1, 0xf1, 0x84, 0x25, 0x26, 0x26, 0x26, 0x23,
0xb7, 0xb7, 0xb7, 0xb6, 0xb6, 0xb5, 0xb3, 0xb3, 0xaf, 0xb3, 0xb3, 0xb1, 0xb1, 0xaf, 0xaf, 0xaf, 0xab, 0xad, 0x9f, 0xd7, 0x84, 0xd8, 0x84, 0xd8, 0x84, 0xd8, 0x84, 0xd8, 0xca, 0xd8, 0xca, 0xd8, 0x84, 0xd8, 0xd7, 0xd8, 0xd8, 0x84, 0x88, 0x51, 0xa6, 0xa9, 0x52, 0x9d, 0x52, 0x9d, 0x99, 0x9d, 0x99, 0x9d, 0x9a, 0x9a, 0x9a, 0x99, 0x9a, 0x9a, 0x9a, 0xf0, 0xf0, 0xca, 0x90, 0x99, 0x9a, 0x9a, 0x9a, 0x9a, 0x9d, 0x9a, 0x9a, 0x9d, 0x9a, 0x9a, 0x9a, 0x96, 0x9a, 0x9a, 0x96, 0x95, 0x95, 0x92, 0x92, 0x95, 0x95, 0x95, 0x95, 0x92, 0x97, 0x95, 0x97, 0x92, 0x97, 0x97, 0x97, 0x92, 0x52, 0x92, 0xc8, 0xc6, 0x6a, 0xc7, 0x68, 0xc7, 0xc7, 0x6e, 0xc7, 0x72, 0x6e, 0x74, 0x70, 0x75, 0x76, 0x7e, 0x83, 0x7e, 0x7e, 0x7a, 0x7b, 0x7a, 0x7b, 0x7b, 0x7a, 0x81, 0xe8, 0x01, 0x05, 0x06, 0x05, 0x05, 0x06, 0x01, 0x05, 0x8d, 0x9a, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x9a, 0x96, 0x96, 0xa4, 0xa2, 0xa4, 0xaf, 0x98, 0xe1, 0xe1, 0xd5, 0xd5, 0xd5, 0xd5, 0xd5, 0xd5, 0xe4, 0x03, 0x07, 0x06, 0x05, 0x05, 0x05, 0x06, 0x07, 0x09, 0x09, 0x10, 0x0c, 0x0c, 0x0c, 0x10, 0x11, 0x10, 0x11, 0xec, 0x11, 0xec, 0x0e, 0xec, 0x93, 0x9b, 0x93, 0x97, 0x97, 0x9a, 0x9d, 0x97, 0x8d, 0x93, 0x8d, 0x92, 0x8d, 0x93, 0x92, 0x9d, 0x99, 0xeb, 0xe2, 0xe4, 0xe4, 0xe4, 0xe4, 0xe4, 0xe3, 0x66, 0x66, 0x66, 0x6a, 0x6c, 0x75, 0x76, 0x7a, 0x7a, 0x81, 0x86, 0x81, 0x86, 0x87, 0x86, 0x85, 0x87, 0x87, 0x81, 0x85, 0x7f, 0x5e, 0x56, 0x58, 0x58, 0x58, 0x58, 0x58, 0x58, 0x58, 0x58, 0x58, 0x58, 0x58, 0x58, 0x56, 0x5e, 0x77, 0x68, 0x61, 0xc3, 0xc4, 0xc4, 0x61, 0x61, 0x61, 0x61, 0xc4, 0x62, 0x5f, 0x62, 0x5f, 0x5b, 0x62, 0x70, 0x74, 0x70, 0x6a, 0x70, 0x6a, 0x70, 0x6a, 0x70, 0x6a, 0x6e, 0x6e, 0x6e, 0x6a, 0x6e, 0x6a, 0x6e, 0x6a, 0x6e, 0x6e, 0x6e, 0x62, 0x62, 0x62, 0x62, 0x62, 0xd5, 0x02, 0x02, 0x03, 0x02, 0x02, 0x03, 0x02, 0x03, 0x02, 0x03, 0x02, 0xe3, 0x66, 0x6e, 0x6e, 0x6a, 0x68, 0x64, 0x61, 0x61, 0x64, 0x61, 0x64, 0x61, 0x64, 0x61, 0x64, 0x61, 0x64, 0x61, 0x61, 0x61, 0x61, 0x61, 0x65, 0x5a, 0xc2, 0xd2, 0xd2, 0xd2, 0x55, 0xc2, 0xe2, 0x0c, 0x10, 0x03, 0xd4, 0x57, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0x5a, 0xd4, 0xe1, 0xe5, 0xe6, 0xc5, 0xe6, 0xe4, 0xd5, 0xe4, 0xd5, 0xe4, 0xd5, 0xe4, 0xe3, 0xe4, 0xe4, 0xe4, 0xd5, 0xe4, 0xe4, 0x03, 0xe5, 0x07, 0x0a, 0x06, 0x09, 0x09, 0x09, 0x09, 0x09, 0x07, 0x09, 0x0c, 0x07, 0xdf, 0x53, 0x53, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0x54, 0x00, 0x19, 0x1c, 0x16, 0x19, 0x16, 0x16, 0x14, 0x0f, 0x12, 0x0e, 0x11, 0x0e, 0x0c, 0xc8, 0x7e, 0x7a, 0x7b, 0x7b, 0x7b, 0x81, 0x7f, 0x4d, 0xf1, 0x26, 0x26, 0x26, 0x26, 0x23, 0x32, 0x2c, 0x2c, 0x2c, 0x2d, 0x35, 0x31, 0xd9, 0xca, 0xd8, 0xd8, 0xd9, 0x84, 0xca, 0x22, 0x1c, 0x1c, 0x1c, 0x1c, 0x19, 0x1f, 0x1f, 0x1f, 0x23, 0x23, 0x23, 0x1f, 0x1f, 0x1c, 0x1c, 0x1c, 0x19, 0x1c, 0x19, 0x19, 0x19, 0x18, 0xd8, 0x84, 0xf1, 0xd8, 0xf1, 0x84, 0x25, 0x26, 0x26, 0x23, 0x26,
0xb7, 0xb9, 0xb7, 0xb7, 0xb6, 0xb5, 0xb3, 0xb3, 0xb5, 0xb3, 0xb3, 0xaf, 0xaf, 0xaf, 0xad, 0xad, 0xa9, 0xa9, 0xad, 0x98, 0xd7, 0x84, 0xd8, 0x88, 0xd8, 0xca, 0xd8, 0x88, 0xd8, 0xca, 0xd8, 0xca, 0xca, 0xca, 0xca, 0xca, 0x88, 0x84, 0x88, 0x84, 0x8f, 0xa2, 0xa1, 0x52, 0x9a, 0x99, 0x9d, 0x9a, 0x9d, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x97, 0xd8, 0xd8, 0x90, 0x92, 0x9a, 0x96, 0x9a, 0x96, 0x9a, 0x9a, 0x9d, 0x9a, 0x9a, 0x9a, 0x96, 0x9a, 0x96, 0x96, 0x96, 0x96, 0x92, 0x95, 0x92, 0x95, 0x95, 0x95, 0x97, 0x95, 0x97, 0x97, 0x97, 0x97, 0x97, 0x93, 0x97, 0x97, 0x97, 0xa1, 0xf1, 0x0f, 0xec, 0xc6, 0x6e, 0x6a, 0x6e, 0xc7, 0x6e, 0xc7, 0x6e, 0xc7, 0x70, 0x70, 0x6c, 0x75, 0x78, 0x7e, 0x7e, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x81, 0x77, 0x01, 0x05, 0x05, 0x05, 0x06, 0x05, 0x05, 0x05, 0x04, 0x05, 0x99, 0x9a, 0x96, 0x96, 0x9a, 0x96, 0x9a, 0x96, 0x9a, 0x96, 0x96, 0x9a, 0xa2, 0xa7, 0xa2, 0xa2, 0xad, 0x93, 0xe0, 0xe1, 0xe4, 0xd5, 0xd5, 0xd5, 0xd5, 0xc5, 0xd5, 0xd5, 0xe4, 0x07, 0x07, 0x05, 0x0a, 0x06, 0x09, 0x0c, 0x0c, 0x09, 0x0c, 0x0c, 0x0c, 0x10, 0x11, 0x11, 0xec, 0xec, 0xec, 0x11, 0x11, 0xee, 0x52, 0x97, 0x97, 0x99, 0x9a, 0x9d, 0x95, 0x8f, 0x8d, 0x93, 0x8d, 0x93, 0x92, 0x92, 0x93, 0x95, 0xa1, 0xc7, 0xe2, 0xe4, 0xe4, 0xe4, 0xd5, 0xe3, 0x6a, 0x83, 0x7e, 0x7e, 0x7a, 0x7e, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x81, 0x7b, 0x81, 0x81, 0x85, 0x81, 0x87, 0x7b, 0x7b, 0x85, 0x63, 0x56, 0x58, 0x5d, 0x58, 0x58, 0x58, 0x58, 0x58, 0x58, 0x58, 0x58, 0x58, 0x58, 0x5c, 0x7b, 0x77, 0x74, 0x68, 0xc5, 0xc3, 0xc3, 0x61, 0xc5, 0x61, 0x61, 0x61, 0x62, 0x61, 0x62, 0x61, 0x5d, 0x61, 0x6c, 0x70, 0x6a, 0x6a, 0x70, 0x6a, 0x70, 0x6a, 0x6e, 0x6a, 0x6a, 0x6a, 0x70, 0x6e, 0x6a, 0x6e, 0x6a, 0x6e, 0x6e, 0x6a, 0x62, 0x62, 0x62, 0x62, 0x62, 0x66, 0xe3, 0x02, 0x02, 0x02, 0x03, 0x02, 0x03, 0x02, 0x03, 0x02, 0x03, 0xe1, 0x66, 0x72, 0x6a, 0x6e, 0x6e, 0x6e, 0x65, 0x64, 0x5f, 0x64, 0x61, 0x64, 0x61, 0x64, 0x61, 0x61, 0x61, 0x61, 0x64, 0x61, 0x61, 0x61, 0x64, 0x5a, 0xc2, 0xd2, 0x57, 0xd2, 0xd2, 0x55, 0x54, 0xdf, 0x10, 0x0c, 0x09, 0xe1, 0x55, 0x57, 0xd3, 0x57, 0xd3, 0x57, 0xd3, 0xd3, 0xd3, 0xd3, 0xd3, 0xd3, 0xd3, 0xd3, 0xd3, 0xd3, 0xd2, 0xd3, 0xe1, 0xe1, 0xc3, 0xc4, 0xd5, 0xd5, 0xe3, 0xd5, 0xe4, 0xe4, 0xe4, 0xe4, 0xe4, 0xe4, 0xe4, 0xe4, 0xe4, 0xe4, 0xe4, 0xe5, 0x09, 0x0e, 0x06, 0x0c, 0x09, 0x09, 0x09, 0x09, 0x09, 0x09, 0x09, 0x09, 0xe2, 0xc2, 0x53, 0xc2, 0xc2, 0xd2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0x53, 0xdf, 0x19, 0x1c, 0x16, 0x16, 0x16, 0x19, 0x16, 0x19, 0x16, 0x14, 0x0f, 0x0e, 0x11, 0x0a, 0xc7, 0x7e, 0x7a, 0x7b, 0x7b, 0x7b, 0x81, 0x78, 0xef, 0x2e, 0x23, 0x26, 0x23, 0x26, 0x2b, 0x2c, 0x32, 0x2c, 0x2d, 0x35, 0xf5, 0xf1, 0xd8, 0xd8, 0xd9, 0xd8, 0xd8, 0x88, 0x84, 0x20, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1f, 0x1f, 0x1f, 0x23, 0x1f, 0x23, 0x1f, 0x1c, 0x1c, 0x19, 0x1c, 0x19, 0x1c, 0x19, 0x19, 0x17, 0xf1, 0x84, 0xf1, 0xd7, 0xd8, 0x24, 0x26, 0x26, 0x23, 0x26,
0xb7, 0xb7, 0xb7, 0xb6, 0xb6, 0xb3, 0xb3, 0xb5, 0xb5, 0xb1, 0xb1, 0xb1, 0xaf, 0xad, 0xad, 0xad, 0xab, 0xa6, 0xa6, 0xab, 0x8e, 0xd7, 0x88, 0xd8, 0x88, 0xd8, 0x88, 0xd8, 0x84, 0xca, 0x84, 0xca, 0x84, 0xca, 0x88, 0xca, 0xca, 0xca, 0xca, 0x8e, 0x88, 0x90, 0x9d, 0x9a, 0xa1, 0xa1, 0x9d, 0x9d, 0x9d, 0x9d, 0x99, 0x9d, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x92, 0x84, 0x88, 0x92, 0x96, 0x96, 0x96, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x96, 0x9a, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x92, 0x92, 0x51, 0x95, 0x95, 0x92, 0x95, 0x95, 0x95, 0x97, 0x92, 0x97, 0x97, 0x97, 0x99, 0x97, 0x9d, 0x99, 0x1a, 0x16, 0x21, 0x1e, 0x15, 0xec, 0x68, 0x6a, 0x6e, 0x6a, 0xc7, 0x6e, 0xc7, 0x72, 0x70, 0x70, 0x70, 0x7e, 0x7e, 0x7a, 0x7a, 0x7b, 0x7a, 0x7b, 0x7e, 0xe9, 0x01, 0x05, 0x06, 0x05, 0x06, 0x05, 0x05, 0x05, 0x05, 0x04, 0x10, 0x9d, 0x9a, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x9a, 0xa4, 0xa2, 0xa2, 0xa4, 0xa2, 0xaf, 0x93, 0xe0, 0xe1, 0xd5, 0xd5, 0xd5, 0xd5, 0xd5, 0xd5, 0xd5, 0xc5, 0xc5, 0xd5, 0xd5, 0x03, 0x07, 0x09, 0x0c, 0x0c, 0x10, 0x0c, 0x10, 0x0c, 0x11, 0x10, 0x10, 0x11, 0xec, 0xec, 0xec, 0xec, 0x11, 0x84, 0x9d, 0x95, 0x97, 0x9a, 0x9d, 0x95, 0x8d, 0x92, 0x8d, 0x92, 0x92, 0x8d, 0x92, 0x92, 0x92, 0x99, 0x9d, 0xc8, 0xe2, 0xe3, 0xe6, 0xe4, 0xd5, 0xe3, 0x70, 0x78, 0x7a, 0x76, 0x76, 0x7a, 0x76, 0x7a, 0x7b, 0x7a, 0x7a, 0x7b, 0x81, 0x7f, 0x81, 0x81, 0x85, 0x81, 0x81, 0x75, 0x7a, 0x82, 0x67, 0x56, 0x56, 0x5d, 0x58, 0x5d, 0x58, 0x5d, 0x58, 0x5c, 0x58, 0x5c, 0x58, 0x5c, 0x70, 0x77, 0x74, 0x74, 0x72, 0x68, 0x64, 0xc3, 0xc3, 0xc4, 0xc5, 0x61, 0x61, 0x61, 0x64, 0x62, 0x65, 0x62, 0x65, 0x66, 0x70, 0x6a, 0x6e, 0x6a, 0x6a, 0x70, 0x6a, 0x70, 0x6a, 0x6a, 0x6e, 0x6a, 0x6e, 0x6e, 0x6e, 0x6e, 0x6a, 0x6e, 0x62, 0x62, 0x62, 0x62, 0x62, 0x62, 0x66, 0xe3, 0x02, 0x03, 0x02, 0x03, 0x02, 0x03, 0x02, 0x03, 0x03, 0xe1, 0x66, 0x6e, 0x6a, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x65, 0x61, 0x61, 0x64, 0x61, 0x64, 0x61, 0x64, 0x61, 0x64, 0x61, 0x64, 0x61, 0x61, 0x64, 0x5a, 0xc2, 0xd2, 0x55, 0xd2, 0x55, 0xd2, 0xd2, 0xc2, 0xd2, 0x03, 0x11, 0x09, 0xe2, 0xc2, 0x53, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xd2, 0xc2, 0xd2, 0xc2, 0xc2, 0xd2, 0xd3, 0xc2, 0xc2, 0xd2, 0x55, 0xd2, 0x57, 0x57, 0x57, 0xd3, 0xd3, 0xd3, 0xd4, 0xd4, 0xd4, 0xd4, 0xe1, 0xe1, 0xe1, 0xe1, 0x07, 0x09, 0x06, 0x06, 0x09, 0x09, 0x09, 0x09, 0x09, 0x09, 0x09, 0x0c, 0x07, 0xdf, 0x53, 0x53, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0x55, 0xc2, 0xc2, 0xc2, 0x54, 0xde, 0x16, 0x1c, 0x19, 0x19, 0x16, 0x16, 0x19, 0x16, 0x19, 0x19, 0x19, 0x16, 0x14, 0x0e, 0x0e, 0xea, 0x7a, 0x7e, 0x7b, 0x7b, 0x7a, 0x7e, 0x22, 0x2e, 0x23, 0x26, 0x26, 0x23, 0x28, 0x2c, 0x2c, 0x2d, 0x2d, 0x31, 0xf3, 0xd8, 0xd8, 0xd8, 0xd8, 0xd8, 0xd8, 0xd8, 0x88, 0xf1, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1f, 0x1f, 0x1c, 0x1f, 0x1f, 0x23, 0x1f, 0x1f, 0x19, 0x1c, 0x1c, 0x1c, 0x1c, 0x19, 0x1c, 0x1c, 0x17, 0xd8, 0x84, 0xf1, 0xd8, 0x20, 0x26, 0x23, 0x26, 0x26,
0xb6, 0xb7, 0xb9, 0xb7, 0xb5, 0xb5, 0xb5, 0xb5, 0xb3, 0xb1, 0xaf, 0xad, 0xad, 0xad, 0xad, 0xab, 0xab, 0xa6, 0xa6, 0xa9, 0xa9, 0x88, 0xd7, 0xca, 0x84, 0x88, 0x84, 0xca, 0x84, 0xca, 0x84, 0xca, 0x88, 0xca, 0x88, 0xca, 0x88, 0x8e, 0xca, 0x8e, 0x8e, 0x99, 0x9d, 0x96, 0x96, 0x9a, 0x9a, 0x9a, 0x9d, 0x9a, 0x9d, 0x9d, 0x9a, 0x9d, 0x9a, 0x9a, 0x96, 0x9a, 0x9a, 0x92, 0x8a, 0x8d, 0x96, 0x96, 0x96, 0x9a, 0x96, 0x9a, 0x9a, 0x9a, 0x9a, 0x96, 0x96, 0x9a, 0x96, 0x91, 0x96, 0x95, 0x51, 0x92, 0x92, 0x95, 0x95, 0x95, 0x92, 0x95, 0x97, 0x95, 0x97, 0x99, 0x99, 0x99, 0x99, 0x99, 0x9d, 0x8e, 0x0d, 0x0f, 0x18, 0x1e, 0x1f, 0x1c, 0x1d, 0x15, 0xeb, 0x68, 0x6a, 0x6e, 0x6e, 0xc7, 0x6e, 0x6e, 0x6c, 0x6c, 0x7e, 0x7e, 0x7a, 0x7a, 0x7a, 0x7e, 0x77, 0x05, 0x05, 0x06, 0x05, 0x05, 0x05, 0x05, 0x06, 0x05, 0x05, 0x05, 0x04, 0xd6, 0x9d, 0x9a, 0x96, 0x9a, 0x96, 0x9a, 0x96, 0x9a, 0x91, 0x99, 0xa2, 0xa2, 0xa2, 0xa2, 0xa2, 0xa1, 0xaf, 0x90, 0xe0, 0xe1, 0xe6, 0xd5, 0xd5, 0xd5, 0xd5, 0xd5, 0xd5, 0xe4, 0xd5, 0xd5, 0xc5, 0xc5, 0xe5, 0x11, 0x09, 0x0c, 0x10, 0x0c, 0x10, 0x0c, 0x10, 0x10, 0xec, 0xec, 0xec, 0xec, 0xec, 0xec, 0xee, 0x8e, 0x9d, 0x99, 0x9a, 0x9d, 0x9a, 0x8d, 0x92, 0x8d, 0x92, 0x8d, 0x92, 0x92, 0x92, 0x92, 0x92, 0x95, 0xa1, 0x7d, 0xe2, 0xe3, 0xe4, 0xe6, 0xd5, 0xe6, 0x6c, 0x7e, 0x78, 0x7a, 0x76, 0x7a, 0x76, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x81, 0x81, 0x81, 0x81, 0x85, 0x7b, 0x75, 0x7b, 0x7b, 0x85, 0x6c, 0x58, 0x56, 0x5c, 0x58, 0x58, 0x58, 0x58, 0x5d, 0x58, 0x5c, 0x58, 0x5c, 0x6c, 0x7c, 0x72, 0x74, 0x72, 0x74, 0x72, 0x68, 0x65, 0xc4, 0xc3, 0xc4, 0xc5, 0x64, 0xc5, 0x64, 0x65, 0x65, 0x66, 0x65, 0x66, 0x6a, 0x6a, 0x70, 0x6a, 0x6a, 0x6e, 0x6a, 0x6a, 0x6a, 0x6a, 0x6e, 0x6a, 0x6a, 0x6e, 0x6a, 0x72, 0x6a, 0x62, 0x62, 0x62, 0x62, 0x62, 0x62, 0x62, 0x66, 0xe3, 0x02, 0x02, 0x03, 0x02, 0x03, 0x03, 0x03, 0x03, 0xe1, 0x66, 0x6e, 0x6e, 0x6a, 0x68, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x64, 0x61, 0x61, 0x61, 0x64, 0x61, 0x61, 0x61, 0x61, 0x61, 0x64, 0x61, 0x64, 0x5a, 0xc2, 0xd2, 0xd2, 0xd2, 0xd2, 0xd2, 0x55, 0xd2, 0x54, 0xd2, 0xe3, 0x0c, 0x0c, 0x03, 0xd2, 0xc2, 0xc2, 0xd2, 0xd2, 0xc2, 0xd2, 0xc2, 0xd2, 0xc2, 0xd2, 0xd2, 0xd2, 0x55, 0xd2, 0xc2, 0xd2, 0xe0, 0xdf, 0x55, 0x55, 0xc2, 0x55, 0xc2, 0x55, 0xc2, 0x55, 0xc2, 0x55, 0xc2, 0xc2, 0xc2, 0x55, 0xc2, 0x55, 0xc2, 0x55, 0xd2, 0x0f, 0x12, 0x0c, 0x06, 0x09, 0x09, 0x09, 0x0c, 0x09, 0x09, 0x07, 0x0c, 0x0c, 0xe2, 0xd2, 0x53, 0x55, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0x54, 0xd2, 0x16, 0x1c, 0x19, 0x19, 0x19, 0x16, 0x16, 0x19, 0x16, 0x19, 0x16, 0x19, 0x19, 0x0f, 0x0c, 0x0f, 0xe9, 0x7b, 0x7e, 0x7b, 0x7a, 0x7a, 0x20, 0x26, 0x26, 0x23, 0x23, 0x23, 0x23, 0x2c, 0x2d, 0x2d, 0x2d, 0x37, 0xf3, 0xd8, 0xd8, 0xd8, 0xd8, 0xd8, 0xd8, 0xd8, 0xd8, 0x8a, 0x27, 0x1c, 0x1f, 0x1c, 0x1f, 0x1c, 0x1c, 0x1f, 0x1f, 0x1f, 0x1f, 0x1c, 0x23, 0x1f, 0x1c, 0x19, 0x19, 0x19, 0x1c, 0x1c, 0x19, 0x1c, 0x19, 0x1d, 0xd8, 0xd8, 0xf1, 0x21, 0x26, 0x26, 0x23, 0x23,
0xb7, 0xb7, 0xb9, 0xb7, 0xb7, 0xb5, 0xb5, 0xb1, 0xb1, 0xaf, 0xaf, 0xad, 0xad, 0xad, 0xab, 0xa9, 0xab, 0xa6, 0xa4, 0xa4, 0xa9, 0xa2, 0x88, 0xd7, 0xca, 0x84, 0xca, 0x84, 0xca, 0x88, 0x88, 0x88, 0x88, 0xca, 0x88, 0xca, 0x8e, 0xca, 0x8e, 0xca, 0x92, 0x9a, 0xa9, 0x99, 0x50, 0x50, 0x91, 0x91, 0x96, 0x9a, 0x96, 0x9a, 0x9d, 0x9a, 0x9d, 0x9a, 0x9a, 0x9a, 0x96, 0x9d, 0x8f, 0x87, 0x50, 0x91, 0x96, 0x96, 0x9a, 0x96, 0x9a, 0x96, 0x96, 0x96, 0x9a, 0x91, 0x96, 0x96, 0x51, 0x96, 0x51, 0x8f, 0x95, 0x96, 0x95, 0x95, 0x95, 0x95, 0x99, 0x95, 0x99, 0x95, 0x97, 0x99, 0x9b, 0x97, 0x9d, 0xd9, 0x0d, 0x14, 0x14, 0x1e, 0x1e, 0x1e, 0x1c, 0x1f, 0x19, 0x1d, 0xec, 0xeb, 0x6a, 0x6a, 0x68, 0x6e, 0x6e, 0x6e, 0x6c, 0x7e, 0x7a, 0x7a, 0x7b, 0x83, 0xe9, 0x01, 0x06, 0x05, 0x06, 0x05, 0x06, 0x05, 0x05, 0x05, 0x05, 0x05, 0x0a, 0x01, 0x84, 0x9d, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x9d, 0xa2, 0xa2, 0xa2, 0x52, 0xa2, 0xa2, 0xa2, 0xaf, 0x8a, 0xe0, 0xe2, 0xc5, 0xe4, 0xd5, 0xe4, 0xd5, 0xd5, 0xd5, 0xd5, 0xd5, 0xd5, 0xe6, 0xe7, 0xe8, 0x0c, 0x0c, 0x10, 0x0c, 0x10, 0x10, 0x10, 0xec, 0x10, 0xec, 0xec, 0xed, 0xec, 0xed, 0xed, 0xd7, 0x99, 0x9d, 0x9a, 0x9d, 0x9a, 0x8d, 0x92, 0x8d, 0x92, 0x8d, 0x92, 0x8d, 0x92, 0x92, 0x8d, 0x92, 0x92, 0xa1, 0x82, 0xe2, 0xe3, 0xd5, 0xe6, 0xd5, 0xc6, 0x6c, 0x7e, 0x4d, 0x7a, 0x76, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7a, 0x7b, 0x7e, 0x7f, 0x81, 0x85, 0x81, 0x7b, 0x75, 0x7b, 0x7b, 0x85, 0x75, 0x58, 0x56, 0x5e, 0x58, 0x5e, 0x58, 0x5c, 0x58, 0x5c, 0x5c, 0x58, 0x6c, 0x7c, 0x74, 0x70, 0x72, 0x6e, 0x6e, 0x72, 0x72, 0x6e, 0x65, 0xc4, 0xc3, 0xc4, 0xc5, 0xc5, 0x64, 0x64, 0x64, 0x65, 0x66, 0x62, 0x66, 0x6a, 0x70, 0x6a, 0x6a, 0x70, 0x6a, 0x6e, 0x6a, 0x6a, 0x6a, 0x6e, 0x6a, 0x6e, 0x6e, 0x6a, 0x62, 0x66, 0x62, 0x66, 0x62, 0x62, 0x66, 0x62, 0x66, 0x03, 0x02, 0x02, 0x03, 0x03, 0x03, 0x03, 0xe2, 0xc3, 0x66, 0x70, 0x6e, 0x6a, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x68, 0x64, 0x61, 0x61, 0x61, 0x64, 0x61, 0x64, 0x61, 0x61, 0x61, 0x61, 0x5a, 0xc2, 0x55, 0x55, 0xd2, 0x55, 0xd2, 0xd2, 0xd2, 0xd2, 0x55, 0xc2, 0xe0, 0x0c, 0x10, 0x09, 0xdf, 0xc2, 0x54, 0xd2, 0x55, 0xd2, 0xc2, 0xd2, 0x55, 0xd2, 0xc2, 0xd2, 0xd2, 0xd2, 0x55, 0xd2, 0xdf, 0xe2, 0xe0, 0xd2, 0x54, 0xd2, 0x55, 0xd2, 0x55, 0xd2, 0x55, 0xd2, 0x57, 0xd2, 0x57, 0xd2, 0xd2, 0xd2, 0xd2, 0x55, 0xd2, 0x13, 0x19, 0x12, 0x12, 0x0a, 0x06, 0x09, 0x09, 0x0c, 0x09, 0x09, 0x07, 0x09, 0x0c, 0x07, 0xe0, 0x53, 0x53, 0xc2, 0xd2, 0xc2, 0xc2, 0xc2, 0xc2, 0x55, 0x53, 0xd2, 0x16, 0x1c, 0x19, 0x19, 0x19, 0x19, 0x16, 0x16, 0x16, 0x19, 0x16, 0x19, 0x1c, 0x0f, 0x05, 0x0e, 0x0f, 0x0c, 0x77, 0x7e, 0x7a, 0x7c, 0x23, 0x26, 0x23, 0x23, 0x23, 0x23, 0x1f, 0x2b, 0x2d, 0x2d, 0x2d, 0x31, 0xf1, 0xd8, 0xd8, 0xd8, 0xd8, 0xd8, 0xd8, 0xd8, 0xd8, 0xd8, 0x88, 0x22, 0x1c, 0x1f, 0x1c, 0x1f, 0x1c, 0x1c, 0x1f, 0x1f, 0x1f, 0x1f, 0x1c, 0x1c, 0x23, 0x23, 0x1f, 0x1c, 0x1c, 0x19, 0x19, 0x19, 0x1c, 0x19, 0x1d, 0x88, 0xd8, 0x23, 0x26, 0x23, 0x26, 0x26,
0xba, 0xb9, 0xba, 0xb7, 0xb6, 0xb5, 0xb3, 0xb3, 0xb1, 0xaf, 0xaf, 0xad, 0xad, 0xab, 0xab, 0xa9, 0xa9, 0xa9, 0xa6, 0xa6, 0xa4, 0xa9, 0x9f, 0x84, 0xd8, 0x88, 0x88, 0x88, 0x88, 0x88, 0xca, 0x88, 0xca, 0x88, 0xca, 0x8a, 0xca, 0x8a, 0xca, 0x93, 0x96, 0x9a, 0xa6, 0xa6, 0x95, 0x8b, 0x51, 0x51, 0x50, 0x50, 0x91, 0x91, 0x91, 0x96, 0x91, 0x96, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x95, 0x50, 0x50, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x51, 0x96, 0x95, 0x96, 0x95, 0x96, 0x95, 0x96, 0x95, 0x95, 0x99, 0x95, 0x99, 0x95, 0x97, 0x99, 0x99, 0x9d, 0xef, 0x0d, 0x14, 0x0f, 0x14, 0x1e, 0x1e, 0x1e, 0x1e, 0x1e, 0x1c, 0x1c, 0x1e, 0x1a, 0xec, 0xc7, 0x68, 0x6a, 0x6a, 0x6a, 0x75, 0x7e, 0x7a, 0x7e, 0x7b, 0x06, 0x05, 0x05, 0x06, 0x05, 0x05, 0x05, 0x05, 0x06, 0x05, 0x05, 0x05, 0x06, 0x0a, 0x09, 0x8c, 0x9d, 0x96, 0x96, 0x9a, 0x96, 0x96, 0x96, 0x52, 0xa2, 0xa1, 0xa2, 0xa1, 0xa2, 0x52, 0xa2, 0xa2, 0xaf, 0x8a, 0xe0, 0xe1, 0xd5, 0xd5, 0xd5, 0xd5, 0xe6, 0xd5, 0xd5, 0xd5, 0xd5, 0xe5, 0xe9, 0xe7, 0xe8, 0x0c, 0x0c, 0x10, 0x0c, 0x10, 0x10, 0x11, 0xec, 0xec, 0xec, 0xed, 0xec, 0xed, 0xed, 0xd6, 0x88, 0x9d, 0x9a, 0x9d, 0x99, 0x8f, 0x8d, 0x92, 0x8d, 0x92, 0x8d, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x95, 0xa1, 0x82, 0xe3, 0xe3, 0xe6, 0xe6, 0xe6, 0xc6, 0x70, 0x78, 0x83, 0x78, 0x7a, 0x76, 0x7a, 0x7a, 0x7a, 0x7a, 0x81, 0x7b, 0x81, 0x81, 0x81, 0x7f, 0x75, 0x7b, 0x75, 0x7b, 0x7b, 0x85, 0x75, 0x5c, 0x56, 0x5c, 0x58, 0x5c, 0x58, 0x5c, 0x5c, 0x5c, 0x58, 0x69, 0x7c, 0x74, 0x72, 0x74, 0x6e, 0x72, 0x72, 0x6e, 0x72, 0x72, 0x72, 0xc6, 0xc5, 0xc4, 0xc4, 0xc5, 0xc5, 0x64, 0x64, 0x65, 0x65, 0x66, 0x62, 0x66, 0x70, 0x6a, 0x6a, 0x6a, 0x70, 0x6a, 0x6a, 0x6a, 0x6a, 0x6e, 0x6e, 0x6e, 0x6a, 0x62, 0x62, 0x66, 0x62, 0x66, 0x62, 0x66, 0x62, 0x66, 0x66, 0x03, 0x02, 0x03, 0x02, 0x03, 0x03, 0xe3, 0xc4, 0x66, 0x6e, 0x6a, 0x6e, 0x6a, 0x6e, 0x6a, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x68, 0x61, 0x61, 0x61, 0x61, 0x64, 0x61, 0x61, 0x61, 0x64, 0x5a, 0xc2, 0xd2, 0xd2, 0x55, 0xd2, 0x55, 0xd2, 0x57, 0x55, 0xd2, 0x55, 0xc2, 0xd3, 0x09, 0x0c, 0x0c, 0xe2, 0xc2, 0xc2, 0xc2, 0xd2, 0x55, 0xd2, 0xc2, 0xd2, 0xd2, 0xc2, 0xd2, 0xc2, 0xd2, 0xc2, 0xdf, 0xe0, 0xe0, 0xe0, 0xdf, 0x55, 0x55, 0xd2, 0x55, 0xd2, 0xd2, 0xd2, 0x55, 0xd2, 0x55, 0xd2, 0x57, 0xd2, 0x57, 0x55, 0xd2, 0x16, 0x19, 0x16, 0x17, 0x14, 0x12, 0x0a, 0x06, 0x09, 0x09, 0x0c, 0x09, 0x09, 0x09, 0x0c, 0x0c, 0x03, 0xd2, 0x53, 0x55, 0xc2, 0xd2, 0xc2, 0xc2, 0xc2, 0x54, 0xd2, 0x13, 0x1c, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x16, 0x19, 0x19, 0x19, 0x16, 0x05, 0x0a, 0x0e, 0x0f, 0x0f, 0xc8, 0x4d, 0xd7, 0x23, 0x26, 0x23, 0x23, 0x23, 0x23, 0x23, 0x28, 0x2d, 0x2d, 0x31, 0x31, 0xd8, 0xd8, 0xd8, 0xd8, 0xd8, 0xd8, 0xd8, 0xd8, 0xd8, 0xd8, 0x88, 0x84, 0x1e, 0x1f, 0x1c, 0x1c, 0x1c, 0x1f, 0x1c, 0x23, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x26, 0x26, 0x26, 0x23, 0x23, 0x1f, 0x1f, 0x1c, 0x19, 0x19, 0x1b, 0xf0, 0x26, 0x26, 0x26, 0x23, 0x26,
0xb9, 0xba, 0xb7, 0xb7, 0xb6, 0xb5, 0xb5, 0xb3, 0xb1, 0xaf, 0xaf, 0xad, 0xad, 0xab, 0xa9, 0xa9, 0xa9, 0xa9, 0xa4, 0xa4, 0xa6, 0xa4, 0xab, 0x93, 0x84, 0x84, 0xca, 0x88, 0x88, 0xca, 0x88, 0x8e, 0x88, 0x8e, 0x88, 0x8e, 0x8a, 0x8e, 0x8e, 0x9a, 0x91, 0x9a, 0xa6, 0xa9, 0xa4, 0x8f, 0x8b, 0x8b, 0x8f, 0x50, 0x51, 0x50, 0x50, 0x50, 0x50, 0x50, 0x91, 0x91, 0x91, 0x96, 0x96, 0x9a, 0x91, 0x50, 0x91, 0x96, 0x96, 0x96, 0x9a, 0x96, 0x96, 0x9a, 0x96, 0x9a, 0x96, 0x96, 0x96, 0x9a, 0x96, 0x9a, 0x96, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x99, 0x97, 0x99, 0x97, 0x99, 0x99, 0x9d, 0x1a, 0x0d, 0x14, 0x14, 0x12, 0x18, 0x1e, 0x1e, 0x1d, 0x1e, 0x1e, 0x1e, 0x1e, 0x1c, 0x1c, 0x1e, 0x15, 0xea, 0xc6, 0x6a, 0x66, 0x76, 0x7a, 0x83, 0xea, 0x01, 0x05, 0x06, 0x05, 0x05, 0x05, 0x06, 0x05, 0x05, 0x05, 0x06, 0x05, 0x05, 0x09, 0x05, 0xe8, 0x95, 0x9d, 0x96, 0x96, 0x96, 0x9a, 0x96, 0xa1, 0xa2, 0xa2, 0x52, 0xa2, 0x52, 0xa2, 0xa2, 0x52, 0xa1, 0xaf, 0x82, 0xe0, 0xe3, 0xd5, 0xe4, 0xd5, 0xd5, 0xd5, 0xe4, 0xd5, 0xe4, 0xe7, 0xe8, 0xe7, 0xea, 0xe8, 0x0c, 0x0c, 0x10, 0x10, 0x10, 0x10, 0x10, 0xec, 0xec, 0xec, 0xed, 0xed, 0xed, 0xd6, 0x7d, 0x93, 0x9d, 0x9d, 0x9a, 0x8f, 0x8f, 0x8f, 0x92, 0x8d, 0x8f, 0x92, 0x8d, 0x92, 0x8d, 0x92, 0x92, 0x92, 0x92, 0xa1, 0x8c, 0xe3, 0xe3, 0xe6, 0xe6, 0xc6, 0xc6, 0x70, 0x78, 0x83, 0x7e, 0x78, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x81, 0x7b, 0x81, 0x81, 0x81, 0x75, 0x7b, 0x76, 0x7b, 0x7b, 0x7b, 0x85, 0x7b, 0x5e, 0x56, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x58, 0x5c, 0x63, 0x7c, 0x74, 0x74, 0x6e, 0x72, 0x6e, 0x6e, 0x72, 0x72, 0x6e, 0x72, 0x74, 0x72, 0xc6, 0xc5, 0xd5, 0xc4, 0xd5, 0xc5, 0xc5, 0x64, 0x65, 0x66, 0x62, 0x66, 0x6a, 0x70, 0x6a, 0x6a, 0x6e, 0x6a, 0x6e, 0x6a, 0x6a, 0x6e, 0x6e, 0x6a, 0x62, 0x66, 0x62, 0x66, 0x62, 0x66, 0x62, 0x66, 0x62, 0x66, 0x66, 0x03, 0x02, 0x03, 0x03, 0x03, 0xe3, 0xc3, 0x65, 0x70, 0x6e, 0x6a, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x72, 0x6e, 0x65, 0x61, 0x61, 0x61, 0x61, 0x61, 0x61, 0x61, 0x5a, 0xc2, 0xd2, 0x55, 0xd2, 0xd2, 0x55, 0xd2, 0x55, 0xd2, 0xd2, 0xd2, 0x55, 0x55, 0xd2, 0x07, 0x0c, 0x0c, 0x07, 0xd2, 0x54, 0xc2, 0xd2, 0xc2, 0xd2, 0x55, 0xc2, 0xd2, 0x55, 0xd2, 0xd2, 0xc2, 0xd3, 0x00, 0xe0, 0xe0, 0xe0, 0xdf, 0x55, 0x55, 0xd2, 0x57, 0x55, 0x57, 0xd2, 0x57, 0xd2, 0x57, 0xd2, 0x57, 0xd2, 0x55, 0xdf, 0x13, 0x1c, 0x16, 0x14, 0x14, 0x14, 0x18, 0x12, 0x0a, 0x0c, 0x09, 0x09, 0x0c, 0x09, 0x07, 0x09, 0x0c, 0x09, 0xe0, 0xc2, 0x53, 0xc2, 0xc2, 0x55, 0xc2, 0xc2, 0xc2, 0x0d, 0x1f, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x16, 0x19, 0x19, 0x19, 0x19, 0x19, 0x08, 0x05, 0x0a, 0x0a, 0x0d, 0x0d, 0xc7, 0xf0, 0x26, 0x26, 0x1f, 0x23, 0x23, 0x1f, 0x23, 0x20, 0x2d, 0x2d, 0x31, 0xf1, 0xf1, 0xd8, 0xf1, 0xd8, 0xd8, 0xd8, 0xd8, 0xd8, 0xd8, 0xd8, 0xd8, 0x88, 0xf1, 0x1c, 0x1f, 0x1c, 0x1c, 0x1c, 0x1c, 0x1f, 0x1f, 0x1f, 0x1f, 0x1c, 0x1f, 0x23, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x23, 0x1f, 0x20, 0x23, 0x23, 0x26, 0x26, 0x26,
0xb9, 0xb6, 0xb5, 0xb6, 0xb6, 0xb6, 0xb3, 0xb3, 0xb3, 0xb1, 0xaf, 0xad, 0xad, 0xab, 0xab, 0xa9, 0xa9, 0xa9, 0xa6, 0xa4, 0xa6, 0xa2, 0xa6, 0xa9, 0x90, 0x84, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x8e, 0x88, 0x8e, 0x8a, 0x8e, 0x8e, 0x95, 0x96, 0x96, 0x9d, 0xa6, 0xa4, 0xa9, 0xa2, 0x86, 0x86, 0x8b, 0x8d, 0x8b, 0x8f, 0x51, 0x8b, 0x91, 0x51, 0x91, 0x50, 0x91, 0x91, 0x91, 0x96, 0x96, 0x9a, 0x9d, 0x9a, 0x9a, 0x9a, 0x96, 0x9a, 0x9a, 0x9a, 0x9a, 0x96, 0x9a, 0x96, 0x9a, 0x96, 0x95, 0x9a, 0x95, 0x95, 0x96, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x9b, 0x95, 0x9d, 0x90, 0x13, 0x14, 0x14, 0x14, 0x14, 0x14, 0x1d, 0x1e, 0x1e, 0x1e, 0x1e, 0x1e, 0x1e, 0x1e, 0x1e, 0x1c, 0x1c, 0x1c, 0x1d, 0x15, 0xe9, 0x66, 0x4d, 0x7b, 0x05, 0x05, 0x05, 0x06, 0x05, 0x06, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x06, 0x0c, 0x09, 0xe8, 0xc7, 0x99, 0x9a, 0x9a, 0x96, 0x96, 0x96, 0x52, 0xa2, 0x52, 0xa2, 0x52, 0xa2, 0xa2, 0x52, 0xa2, 0xa2, 0xa2, 0xaf, 0x82, 0xe0, 0xe3, 0xd5, 0xd5, 0xe4, 0xd5, 0xe4, 0xc5, 0xe6, 0xe8, 0xe7, 0xe8, 0xe7, 0xe9, 0xe8, 0x0c, 0x0c, 0x10, 0x10, 0x10, 0xec, 0xec, 0xec, 0xed, 0xec, 0xed, 0xed, 0xd6, 0xc9, 0x85, 0x9a, 0x9d, 0x9d, 0x8f, 0x92, 0x8d, 0x8f, 0x8d, 0x92, 0x8d, 0x8f, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x8f, 0xa1, 0x8d, 0xe6, 0xe1, 0xc6, 0xe6, 0xc6, 0xc7, 0x6a, 0x78, 0x83, 0x83, 0x78, 0x7e, 0x7a, 0x7e, 0x7a, 0x7a, 0x81, 0x7a, 0x81, 0x81, 0x7b, 0x75, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x85, 0x7f, 0x5e, 0x56, 0x5c, 0x5d, 0x5c, 0x5c, 0x5c, 0x58, 0x63, 0x79, 0x74, 0x74, 0x72, 0x70, 0x72, 0x6e, 0x72, 0x6e, 0x72, 0x72, 0x72, 0x72, 0x74, 0x72, 0x68, 0xc5, 0xc5, 0xe1, 0xd5, 0xe6, 0xc5, 0xc6, 0x65, 0x65, 0x62, 0x66, 0x6a, 0x70, 0x6a, 0x6e, 0x6a, 0x6e, 0x6a, 0x6a, 0x72, 0x6a, 0x62, 0x62, 0x66, 0x62, 0x66, 0x62, 0x66, 0x62, 0x66, 0x66, 0x66, 0x62, 0x03, 0x02, 0x03, 0x03, 0xe3, 0xc3, 0x66, 0x6a, 0x70, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x72, 0x6e, 0x65, 0x61, 0x5f, 0x61, 0x61, 0x64, 0x57, 0xc2, 0x55, 0xd2, 0x55, 0xd2, 0x55, 0xd2, 0xd2, 0x55, 0xd2, 0x55, 0xd2, 0xd2, 0x55, 0xc2, 0xe2, 0x0c, 0x0c, 0x09, 0xe0, 0xc2, 0x54, 0xd2, 0x55, 0xd2, 0xd2, 0xc2, 0xd2, 0xc2, 0x55, 0xc2, 0xd2, 0xe0, 0xe0, 0xe0, 0xe0, 0xe0, 0xdf, 0x55, 0x55, 0x55, 0xd2, 0xd2, 0x55, 0xd2, 0x57, 0xd2, 0x57, 0xd2, 0x57, 0x55, 0xdf, 0x16, 0x19, 0x16, 0x16, 0x14, 0x12, 0x14, 0x14, 0x18, 0x0f, 0x0e, 0x09, 0x09, 0x0c, 0x09, 0x09, 0x09, 0x09, 0x0c, 0x03, 0xdf, 0x53, 0xc2, 0xc2, 0xc2, 0x55, 0x53, 0x14, 0x1f, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x16, 0x19, 0x19, 0x19, 0x0f, 0x05, 0x0a, 0x0a, 0x0a, 0x0d, 0x13, 0x13, 0x1c, 0x26, 0x26, 0x23, 0x1f, 0x23, 0x1f, 0x28, 0x29, 0xf2, 0x31, 0xf3, 0xd8, 0xd8, 0xd8, 0xd8, 0xd8, 0xd8, 0xd8, 0xd8, 0xd8, 0xd8, 0xd8, 0xd8, 0x8a, 0x27, 0x1c, 0x1f, 0x1f, 0x1c, 0x1c, 0x1c, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x1c, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x2e, 0x23, 0x20, 0x1f, 0x1f, 0x1f, 0x1f,
0xb6, 0xb3, 0xb5, 0xb6, 0xb5, 0xb6, 0xb5, 0xb5, 0xb3, 0xb1, 0xaf, 0xaf, 0xad, 0xad, 0xa9, 0xa9, 0xa9, 0xa9, 0xa6, 0xa4, 0xa6, 0xa6, 0xa6, 0xa6, 0xa9, 0x8e, 0x84, 0x8e, 0x88, 0x8e, 0x88, 0x8e, 0x8a, 0x8e, 0x8a, 0x8e, 0x8e, 0x92, 0x96, 0x96, 0x96, 0xa1, 0xa6, 0xa4, 0xa4, 0xa9, 0x9b, 0x81, 0x87, 0x86, 0x8d, 0x86, 0x8d, 0x8b, 0x8d, 0x8f, 0x8f, 0x51, 0x51, 0x51, 0x95, 0x96, 0x96, 0x96, 0xa1, 0xa1, 0x9d, 0x9a, 0x9d, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x95, 0x96, 0x95, 0x9a, 0x95, 0x96, 0x99, 0x95, 0x95, 0x95, 0x95, 0x95, 0x99, 0x95, 0x95, 0x97, 0x99, 0x97, 0x9d, 0xf1, 0x0d, 0x14, 0x14, 0x12, 0x14, 0x14, 0x14, 0x1e, 0x1e, 0x20, 0x18, 0x1d, 0x1e, 0x1e, 0x1e, 0x1e, 0x1e, 0x1e, 0x1c, 0x1f, 0x1c, 0x17, 0xed, 0xe6, 0x01, 0x0a, 0x05, 0x05, 0x0a, 0x05, 0x05, 0x06, 0x05, 0x05, 0x05, 0x05, 0x06, 0x05, 0x06, 0x09, 0xe8, 0xe7, 0x7f, 0x9d, 0x96, 0x9a, 0x96, 0x9a, 0xa1, 0x52, 0xa2, 0x52, 0xa2, 0x52, 0x52, 0xa2, 0xa2, 0xa1, 0xa2, 0xa6, 0xad, 0x7d, 0xe0, 0xe4, 0xd5, 0xd5, 0xe4, 0xd5, 0xd5, 0xe7, 0xe8, 0xe9, 0xe7, 0xe9, 0xe9, 0xea, 0xe8, 0x11, 0x10, 0x10, 0x10, 0x10, 0xec, 0xec, 0xec, 0xed, 0xed, 0xed, 0xed, 0xd6, 0x7c, 0x8b, 0x9d, 0x9d, 0x51, 0x8f, 0x8f, 0x8f, 0x8f, 0x92, 0x8d, 0x8f, 0x8d, 0x92, 0x8f, 0x92, 0x92, 0x92, 0x92, 0x92, 0xa1, 0x92, 0xe6, 0xe3, 0xc6, 0xc6, 0xc6, 0xc7, 0x6a, 0x76, 0x4d, 0x83, 0x78, 0x7a, 0x7e, 0x7e, 0x81, 0x7e, 0x81, 0x81, 0x81, 0x7b, 0x76, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x81, 0x85, 0x63, 0x56, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x63, 0x79, 0x74, 0x74, 0x6e, 0x72, 0x6e, 0x72, 0x6e, 0x6e, 0x72, 0x6e, 0x72, 0x6e, 0x72, 0x72, 0x72, 0x77, 0x68, 0xc6, 0xc5, 0xc5, 0x64, 0xc5, 0xe6, 0x64, 0x65, 0x65, 0x66, 0x66, 0x6c, 0x6a, 0x70, 0x6a, 0x6e, 0x6e, 0x6e, 0x6a, 0x62, 0x66, 0x62, 0x66, 0x62, 0x66, 0x62, 0x66, 0x66, 0x62, 0x66, 0x66, 0x66, 0x02, 0x03, 0xe2, 0xe3, 0xc3, 0x66, 0x6a, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x72, 0x74, 0x68, 0x64, 0x61, 0x61, 0x64, 0x57, 0xd2, 0x57, 0xd2, 0x55, 0xd2, 0x57, 0xc2, 0x57, 0xd2, 0xd2, 0xd2, 0xd2, 0xd2, 0xd2, 0x55, 0x53, 0xe0, 0x06, 0x06, 0x0c, 0xe2, 0xd2, 0x53, 0xc2, 0xd2, 0x55, 0xd2, 0x55, 0xd2, 0xd2, 0xc2, 0xd2, 0xdf, 0xe0, 0xe0, 0xe0, 0xe0, 0xe2, 0xe0, 0xd2, 0x55, 0x57, 0xd2, 0x57, 0xd2, 0x57, 0xd2, 0x57, 0xd2, 0x57, 0x55, 0xdf, 0x13, 0x19, 0x16, 0x19, 0x16, 0x14, 0x14, 0x14, 0x14, 0x14, 0x18, 0x06, 0xe2, 0x09, 0x0c, 0x0c, 0x09, 0x09, 0x09, 0x0c, 0x10, 0xe0, 0xc2, 0x53, 0xc2, 0x55, 0xc2, 0x0f, 0x1f, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x13, 0x0a, 0x0a, 0x08, 0x0a, 0x0a, 0x0f, 0x13, 0x0d, 0x16, 0x1f, 0x23, 0x26, 0x1f, 0x21, 0x20, 0x2c, 0x27, 0x31, 0xf1, 0xd7, 0xd8, 0xf1, 0xd8, 0xf1, 0xd8, 0xd8, 0xd7, 0xd8, 0xd8, 0xd8, 0xd8, 0x84, 0x88, 0x22, 0x1f, 0x1c, 0x1f, 0x1f, 0x1c, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x28, 0x2d, 0x1e, 0x1f, 0x1f, 0x1f,
0xb1, 0xb5, 0xb3, 0xb5, 0xb6, 0xb5, 0xb6, 0xb5, 0xb3, 0xb1, 0xaf, 0xaf, 0xad, 0xad, 0xab, 0xab, 0xa9, 0xa9, 0xa9, 0xa4, 0xa6, 0xa6, 0xa6, 0xa6, 0xa9, 0xa9, 0x8a, 0x84, 0x8a, 0x8a, 0x8e, 0x8a, 0x8a, 0x8a, 0x8e, 0x8c, 0x93, 0x96, 0x9a, 0x91, 0x96, 0xa1, 0xa6, 0xa4, 0xa4, 0xa4, 0xab, 0x92, 0x7b, 0x87, 0x85, 0x87, 0x87, 0x87, 0x87, 0x8d, 0x87, 0x8d, 0x8d, 0x8f, 0x8f, 0x8f, 0x51, 0x96, 0x51, 0xa1, 0xa4, 0x9d, 0x9d, 0x9d, 0x9a, 0x9d, 0x95, 0x9a, 0x95, 0x9a, 0x95, 0x9a, 0x95, 0x9a, 0x99, 0x95, 0x99, 0x95, 0x95, 0x95, 0x95, 0x95, 0x99, 0x95, 0x97, 0x97, 0x99, 0x9d, 0x1b, 0x13, 0x14, 0x17, 0x14, 0x14, 0x14, 0x14, 0x17, 0x1e, 0x1e, 0x1e, 0x1e, 0x1e, 0x1e, 0x1e, 0x1e, 0x1e, 0x1e, 0x1e, 0x1e, 0x1e, 0x1f, 0x1f, 0xd9, 0x65, 0x00, 0x03, 0x07, 0x06, 0x05, 0x0a, 0x05, 0x08, 0x05, 0x05, 0x05, 0x05, 0x06, 0x06, 0x09, 0xe8, 0xea, 0xc7, 0x8b, 0x9d, 0x9a, 0x96, 0x9a, 0x52, 0xa2, 0x52, 0x52, 0x52, 0x52, 0xa2, 0x52, 0x52, 0xa2, 0xa2, 0x52, 0xa4, 0xaf, 0x7d, 0xdf, 0xe4, 0xd5, 0xe6, 0xd5, 0xe6, 0xe8, 0xe7, 0xe9, 0xe9, 0xe9, 0xe9, 0xe9, 0xea, 0xe8, 0x11, 0x10, 0x10, 0xec, 0x10, 0xec, 0xec, 0xec, 0xed, 0xed, 0xed, 0xd6, 0x7d, 0x87, 0x91, 0x9d, 0x96, 0x51, 0x8f, 0x8f, 0x8d, 0x8f, 0x8d, 0x92, 0x8f, 0x92, 0x92, 0x8f, 0x8f, 0x92, 0x92, 0x92, 0x92, 0x9d, 0x97, 0xe6, 0xe3, 0xc6, 0xc6, 0x68, 0xc7, 0x6a, 0x76, 0x83, 0x4f, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x81, 0x7e, 0x81, 0x7a, 0x75, 0x7b, 0x76, 0x7b, 0x7a, 0x7b, 0x7a, 0x7b, 0x81, 0x8c, 0x67, 0x58, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x75, 0x77, 0x74, 0x72, 0x70, 0x72, 0x6e, 0x72, 0x6e, 0x72, 0x6e, 0x72, 0x72, 0x6e, 0x72, 0x72, 0x72, 0x77, 0x77, 0x6e, 0x07, 0x07, 0xe4, 0x64, 0x64, 0x64, 0x64, 0x64, 0x65, 0x66, 0x6c, 0x6a, 0x6e, 0x6a, 0x6e, 0x6e, 0x6a, 0x62, 0x66, 0x62, 0x66, 0x66, 0x66, 0x66, 0x62, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x03, 0x03, 0xd5, 0xc4, 0x62, 0x70, 0x6a, 0x6e, 0x6e, 0x6a, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x72, 0x72, 0x6a, 0x64, 0x5f, 0xc2, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0xc2, 0xc2, 0xc2, 0x53, 0xd3, 0x02, 0x07, 0x09, 0x07, 0xdf, 0x54, 0xc2, 0xd2, 0xc2, 0xd2, 0xc2, 0xd2, 0x55, 0xc2, 0xdf, 0xe0, 0xe0, 0xe0, 0xe0, 0xe0, 0xe2, 0xe0, 0xd2, 0x55, 0x57, 0xd2, 0x57, 0xd2, 0x57, 0xd2, 0x57, 0xd2, 0x55, 0xdf, 0x16, 0x19, 0x19, 0x16, 0x19, 0x16, 0x14, 0x12, 0x14, 0x12, 0x18, 0x0f, 0xe0, 0xd4, 0x03, 0x09, 0x0c, 0x09, 0x09, 0x09, 0x0c, 0x0c, 0x07, 0xe0, 0x53, 0x54, 0x53, 0x0f, 0x1f, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x0a, 0x0a, 0x0a, 0x0a, 0x08, 0x0a, 0x08, 0x14, 0x0d, 0x0d, 0x13, 0x1c, 0x23, 0x23, 0x28, 0x22, 0x2d, 0xf3, 0xd8, 0xd8, 0xd8, 0xd8, 0xd8, 0xd7, 0xd8, 0xd7, 0xd8, 0xd8, 0xd7, 0x84, 0xd8, 0xd8, 0x84, 0x88, 0x1e, 0x1f, 0x1f, 0x1c, 0x1f, 0x1c, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x23, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x2a, 0x27, 0x2d, 0x1e, 0x1f, 0x1f,
0xb3, 0xb3, 0xb5, 0xb3, 0xb5, 0xb5, 0xb5, 0xb6, 0xb5, 0xb3, 0xb1, 0xb1, 0xad, 0xad, 0xad, 0xa9, 0xab, 0xa9, 0xa9, 0xa6, 0xa6, 0xa6, 0xa6, 0xa6, 0xa6, 0xa9, 0xa2, 0x88, 0x8a, 0x8e, 0x8a, 0x8e, 0x8a, 0x8e, 0x8c, 0x90, 0x51, 0x96, 0x91, 0x96, 0x96, 0xa4, 0xa4, 0xa4, 0xa4, 0xa4, 0xa6, 0xa9, 0x87, 0x79, 0x81, 0x85, 0x85, 0x85, 0x87, 0x85, 0x87, 0x87, 0x87, 0x87, 0x87, 0x8d, 0x8f, 0x8f, 0x8f, 0x51, 0xa1, 0xa4, 0x9d, 0x9d, 0x52, 0x9a, 0x9a, 0x9a, 0x99, 0x9a, 0x99, 0x9a, 0x95, 0x99, 0x95, 0x99, 0x99, 0x99, 0x95, 0x95, 0x97, 0x95, 0x97, 0x97, 0x99, 0x95, 0x9d, 0x97, 0x17, 0x13, 0x14, 0x14, 0x14, 0x14, 0x14, 0x17, 0x14, 0x1d, 0x1e, 0x1e, 0x1e, 0x1d, 0x1e, 0x1e, 0x1e, 0x1d, 0x1e, 0x1d, 0x1e, 0x1e, 0x19, 0x1e, 0xaa, 0xa4, 0x64, 0xd2, 0xe1, 0xc4, 0xe3, 0xe2, 0x03, 0x03, 0x06, 0x05, 0x05, 0x0a, 0x05, 0x0a, 0x09, 0xe5, 0xea, 0xc7, 0x7a, 0x91, 0x9a, 0x96, 0x9a, 0xa1, 0x52, 0x52, 0x52, 0xa2, 0x52, 0x52, 0xa2, 0xa2, 0x52, 0xa2, 0x52, 0xa2, 0xa4, 0xab, 0xc9, 0xe0, 0xd5, 0xd5, 0xd5, 0xe5, 0xe9, 0xe9, 0xe9, 0xe9, 0xe7, 0xe9, 0xe9, 0xe9, 0xeb, 0x10, 0x11, 0x10, 0x10, 0xec, 0xec, 0xec, 0xec, 0xed, 0xed, 0xed, 0xed, 0xc8, 0x7f, 0x8b, 0x96, 0x9a, 0x51, 0x8f, 0x8f, 0x8f, 0x8f, 0x92, 0x8d, 0x8f, 0x8d, 0x8f, 0x8d, 0x92, 0x8f, 0x92, 0x92, 0x8f, 0x92, 0x9d, 0x93, 0xe4, 0xe4, 0xc6, 0xc6, 0xc7, 0x6e, 0x6e, 0x71, 0x83, 0x83, 0x83, 0x7e, 0x7e, 0x7e, 0x7e, 0x81, 0x81, 0x76, 0x7b, 0x76, 0x7b, 0x7b, 0x7a, 0x7b, 0x7b, 0x7a, 0x81, 0x81, 0x87, 0x69, 0x58, 0x5c, 0x5c, 0x5c, 0x5e, 0x75, 0x77, 0x6e, 0x70, 0x72, 0x6e, 0x6e, 0x6e, 0x72, 0x6e, 0x6e, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x6e, 0x72, 0x74, 0x0a, 0x0d, 0x08, 0x0a, 0x06, 0xe5, 0xe4, 0xc5, 0x65, 0x64, 0x66, 0x66, 0x6c, 0x70, 0x6e, 0x6a, 0x6a, 0x62, 0x66, 0x66, 0x66, 0x66, 0x62, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x67, 0x65, 0xe2, 0xe3, 0xc4, 0x62, 0x70, 0x6a, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x72, 0x70, 0x68, 0x62, 0x64, 0x64, 0xc6, 0x68, 0x68, 0xc7, 0x72, 0x72, 0x77, 0xc9, 0x7d, 0x80, 0x84, 0x82, 0x88, 0x8e, 0x90, 0x93, 0xf4, 0x13, 0x06, 0x03, 0x09, 0xe2, 0xc2, 0x54, 0xd2, 0xd2, 0x55, 0xd2, 0xd2, 0x55, 0xdf, 0xe0, 0xe0, 0xe0, 0xe0, 0xe0, 0xe0, 0xe2, 0xe0, 0xdf, 0x55, 0x57, 0xd2, 0x57, 0xd2, 0x57, 0x57, 0x57, 0x55, 0xe0, 0x16, 0x19, 0x16, 0x19, 0x19, 0x16, 0x16, 0x12, 0x14, 0x14, 0x12, 0x18, 0x06, 0x5a, 0xe0, 0xe2, 0x07, 0x09, 0x0c, 0x09, 0x09, 0x09, 0x0c, 0x0c, 0xe2, 0xc2, 0x53, 0x08, 0x1f, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x0f, 0x05, 0x08, 0x0e, 0x0a, 0x0a, 0x0a, 0x0e, 0x0f, 0x14, 0x0f, 0x0f, 0x16, 0x1f, 0x20, 0x2c, 0x27, 0xf3, 0xca, 0xd8, 0xd8, 0xd8, 0xd8, 0xd8, 0xd7, 0xd8, 0x80, 0xd8, 0xd7, 0xd8, 0xd8, 0xd8, 0x84, 0x82, 0xf1, 0x1c, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x23, 0x1f, 0x1f, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x2a, 0x25, 0xf2, 0x29, 0x21, 0x1f,
0xb1, 0xb1, 0xb3, 0xb3, 0xb3, 0xb3, 0xb3, 0xb3, 0xb5, 0xb3, 0xb1, 0xaf, 0xaf, 0xad, 0xab, 0xab, 0xa9, 0xa9, 0xa9, 0xa6, 0xa6, 0xa6, 0xa6, 0xa6, 0xa6, 0xa6, 0xab, 0x9b, 0x82, 0x8a, 0x8a, 0x8c, 0x8a, 0x8c, 0x90, 0x8f, 0x96, 0x96, 0x96, 0x91, 0x9a, 0xa6, 0xa4, 0xa4, 0xa4, 0xa4, 0xa4, 0xab, 0xa6, 0x7b, 0x79, 0x7f, 0x7f, 0x7f, 0x85, 0x7f, 0x85, 0x7f, 0x85, 0x85, 0x87, 0x87, 0x87, 0x87, 0x87, 0x86, 0x8f, 0xa6, 0xa1, 0xa1, 0x9d, 0x52, 0x99, 0x52, 0x9a, 0x99, 0x9a, 0x99, 0x9a, 0x99, 0x99, 0x99, 0x97, 0x52, 0x99, 0x99, 0x97, 0x99, 0x95, 0x99, 0x97, 0x95, 0x9d, 0x8e, 0x13, 0x14, 0x14, 0x14, 0x17, 0x14, 0x12, 0x17, 0x14, 0x14, 0x1d, 0x1e, 0x1d, 0x1e, 0x1e, 0x1e, 0x1d, 0x1e, 0x1e, 0x1e, 0x1e, 0x1e, 0x1c, 0x22, 0x97, 0xab, 0xa9, 0xc6, 0xdf, 0xc3, 0xc4, 0xc4, 0x5f, 0xc4, 0xc3, 0xe3, 0xe3, 0x03, 0x06, 0x06, 0x09, 0x0c, 0xe9, 0xeb, 0x79, 0x83, 0x96, 0x9a, 0x9a, 0x52, 0x9d, 0x52, 0x52, 0x52, 0x52, 0x52, 0x52, 0x52, 0x52, 0xa2, 0x52, 0xa2, 0x52, 0xa6, 0xad, 0xc8, 0xe0, 0xe3, 0xe6, 0xe7, 0xe8, 0xe7, 0xe9, 0xe7, 0xe9, 0xe9, 0xe9, 0xea, 0xea, 0xea, 0xe8, 0x11, 0xec, 0x10, 0xec, 0xec, 0xec, 0xed, 0xed, 0xed, 0xed, 0xd6, 0x7d, 0x87, 0x89, 0x50, 0x96, 0x51, 0x8f, 0x8f, 0x8f, 0x8f, 0x8f, 0x92, 0x8f, 0x92, 0x8f, 0x92, 0x8f, 0x92, 0x8f, 0x92, 0x92, 0x92, 0x9d, 0x8d, 0xe5, 0xe4, 0xeb, 0xc6, 0x6e, 0xc7, 0x6e, 0x6d, 0x83, 0x4e, 0x83, 0x7e, 0x7e, 0x7e, 0x7e, 0x81, 0x7a, 0x76, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x81, 0x7b, 0x81, 0x7a, 0x85, 0x87, 0x76, 0x58, 0x5c, 0x5c, 0x5c, 0x6d, 0x77, 0x74, 0x6e, 0x70, 0x6e, 0x72, 0x6e, 0x72, 0x6e, 0x72, 0x6e, 0x72, 0x72, 0x72, 0x6e, 0x72, 0x72, 0x72, 0x70, 0x0e, 0x0b, 0x0d, 0x0b, 0x0d, 0x0b, 0x0b, 0x08, 0x06, 0x07, 0xe6, 0x64, 0x66, 0x67, 0x6c, 0x70, 0x6a, 0x62, 0x66, 0x62, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x67, 0x65, 0xe3, 0xc3, 0x66, 0x6a, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x68, 0x6e, 0x6e, 0x6e, 0x6e, 0x72, 0x74, 0x77, 0x77, 0x7c, 0x77, 0xf2, 0xb5, 0xaf, 0xae, 0xb1, 0xb2, 0xb3, 0xb3, 0xb3, 0xb3, 0xb3, 0xb3, 0xb3, 0xb1, 0xae, 0xb1, 0xae, 0xae, 0xad, 0xb2, 0x32, 0x23, 0x12, 0x06, 0x03, 0x03, 0xd2, 0x54, 0xc2, 0xd2, 0xd2, 0xc2, 0xc2, 0xd2, 0xe0, 0xe0, 0xe0, 0xe0, 0xe0, 0xe0, 0xe0, 0xe2, 0xe2, 0xdf, 0x55, 0x57, 0x57, 0x57, 0x57, 0xd2, 0x57, 0x55, 0xdf, 0x19, 0x19, 0x19, 0x19, 0x16, 0x16, 0x19, 0x16, 0x12, 0x14, 0x14, 0x18, 0x0a, 0xd4, 0xe0, 0xe1, 0xe0, 0xe2, 0x09, 0x0c, 0x0c, 0x09, 0x09, 0x09, 0x11, 0x09, 0x57, 0x08, 0x1f, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x0f, 0x05, 0x0a, 0x0a, 0x08, 0x08, 0x08, 0x0a, 0x08, 0x0f, 0x14, 0x12, 0x0e, 0x12, 0x17, 0x24, 0x31, 0xcb, 0x88, 0xca, 0xd8, 0xca, 0xd8, 0x84, 0xd8, 0xd8, 0xd8, 0xd8, 0x88, 0xd8, 0xca, 0xd8, 0xca, 0xca, 0x90, 0xf2, 0x26, 0x1c, 0x1f, 0x1c, 0x1f, 0x1c, 0x23, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x2a, 0x27, 0x27, 0x27, 0x25, 0x1f,
0xb1, 0xb1, 0xb1, 0xb3, 0xb1, 0xb3, 0xb1, 0xb3, 0xb3, 0xb6, 0xb3, 0xb3, 0xaf, 0xaf, 0xad, 0xad, 0xa9, 0xa9, 0xa9, 0xa6, 0xa6, 0xa4, 0xa6, 0xa9, 0xa9, 0xa6, 0xa9, 0xab, 0x9c, 0x82, 0x8e, 0x8c, 0x90, 0x8c, 0x92, 0x95, 0x96, 0x96, 0x96, 0x91, 0x9a, 0xa6, 0xa4, 0xa6, 0xa4, 0xa6, 0xa4, 0xa4, 0xad, 0x9b, 0x75, 0x79, 0x7b, 0x7b, 0x7b, 0x7f, 0x7b, 0x81, 0x7f, 0x7b, 0x85, 0x87, 0x85, 0x87, 0x87, 0x85, 0x81, 0x92, 0xa4, 0xa1, 0x52, 0x9d, 0x52, 0x99, 0x52, 0x9a, 0x99, 0x99, 0x99, 0x99, 0x9b, 0x99, 0x99, 0x9b, 0x99, 0x52, 0x99, 0x97, 0x99, 0x97, 0x99, 0x97, 0x9d, 0xf1, 0x0d, 0x14, 0x12, 0x14, 0x17, 0x14, 0x17, 0x14, 0x17, 0x17, 0x17, 0x1e, 0x1e, 0x1e, 0x1d, 0x1e, 0x1e, 0x1e, 0x1d, 0x1e, 0x1e, 0x1e, 0x19, 0x27, 0xa1, 0xa1, 0xa9, 0xa9, 0x68, 0xdf, 0xc3, 0xd5, 0xc4, 0xc4, 0xc4, 0x5f, 0x5f, 0x5f, 0x5f, 0xc4, 0xc5, 0xc6, 0xc6, 0xc7, 0x77, 0x83, 0x89, 0x9a, 0xa1, 0x9d, 0x52, 0x52, 0x52, 0x52, 0x52, 0x52, 0x9b, 0xa2, 0x52, 0xa2, 0x52, 0xa2, 0x52, 0xa2, 0xa6, 0xab, 0x72, 0xe0, 0xe6, 0xe8, 0xe7, 0xe8, 0xe7, 0xe9, 0xe9, 0xe7, 0xe9, 0xe9, 0xea, 0xea, 0xeb, 0x10, 0x11, 0xec, 0xec, 0xec, 0xec, 0xec, 0xed, 0xed, 0xed, 0xd6, 0xc9, 0x7f, 0x8b, 0x4e, 0x89, 0x96, 0x8f, 0x8f, 0x8f, 0x8f, 0x8f, 0x8d, 0x8f, 0x8d, 0x8f, 0x8f, 0x8f, 0x8f, 0x92, 0x8f, 0x92, 0x8f, 0x92, 0x9d, 0x85, 0xe5, 0xe4, 0xeb, 0xeb, 0xc7, 0xc7, 0x6e, 0x75, 0x7e, 0x4f, 0x83, 0x83, 0x7e, 0x7e, 0x81, 0x7a, 0x7a, 0x76, 0x7b, 0x7a, 0x7b, 0x7a, 0x7a, 0x81, 0x7a, 0x81, 0x81, 0x81, 0x8d, 0x76, 0x5c, 0x5c, 0x5c, 0x6c, 0x77, 0x6e, 0x70, 0x6e, 0x70, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x72, 0x6e, 0x6e, 0x72, 0x6e, 0x72, 0x6e, 0x72, 0x0e, 0x0b, 0x0d, 0x0b, 0x0b, 0x0d, 0x0b, 0x0d, 0x0d, 0x0d, 0x0b, 0x08, 0x06, 0x07, 0xe6, 0x6a, 0x6c, 0x66, 0x6c, 0x66, 0x6c, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x67, 0x65, 0xc3, 0x64, 0x6c, 0x6e, 0x70, 0x6e, 0x6e, 0x6e, 0x6e, 0x6a, 0x6e, 0x6e, 0x72, 0x74, 0x74, 0x77, 0x77, 0x79, 0x7c, 0x7c, 0x7f, 0x7c, 0x7f, 0x7b, 0x18, 0x2d, 0xab, 0xa3, 0xa0, 0xa0, 0x9c, 0xa3, 0xa0, 0x9c, 0xa0, 0xa0, 0x9c, 0xa0, 0xa3, 0xa0, 0xa3, 0xa0, 0xa3, 0x9e, 0xfb, 0x28, 0x26, 0x1f, 0x12, 0x09, 0x03, 0xdf, 0xc2, 0x55, 0xd2, 0x55, 0xd2, 0xc2, 0xe0, 0xe0, 0xe0, 0xe0, 0xe0, 0xe0, 0xe0, 0xe0, 0xe0, 0xe2, 0xe0, 0x57, 0x55, 0xd2, 0x57, 0x57, 0x57, 0x55, 0xe0, 0x19, 0x19, 0x16, 0x19, 0x16, 0x19, 0x16, 0x19, 0x18, 0x14, 0x14, 0x18, 0x12, 0xe2, 0xe0, 0xe2, 0xe0, 0xe1, 0xe0, 0x03, 0x09, 0x0c, 0x0c, 0x09, 0x0c, 0x0c, 0x0c, 0x0e, 0x1c, 0x1c, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x1c, 0x19, 0x1c, 0x19, 0x1c, 0x13, 0x0a, 0x0a, 0x08, 0x0a, 0x08, 0x0e, 0x08, 0x08, 0x0a, 0x0f, 0x17, 0x12, 0x0e, 0x0e, 0x12, 0x1a, 0xca, 0x8b, 0x81, 0x82, 0x7c, 0x82, 0x7c, 0x7c, 0x79, 0x7c, 0x77, 0x7d, 0x77, 0x77, 0x77, 0x77, 0xc9, 0x74, 0x70, 0x17, 0x23, 0x1f, 0x1f, 0x1f, 0x1f, 0x1c, 0x23, 0x1f, 0x1f, 0x23, 0x1f, 0x23, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x21, 0x29, 0x27, 0x2d, 0x27, 0x29,
0xaf, 0xaf, 0xb1, 0xaf, 0xb1, 0xb1, 0xb1, 0xb1, 0xb3, 0xb3, 0xb5, 0xb5, 0xaf, 0xaf, 0xad, 0xad, 0xab, 0xa9, 0xa9, 0xa9, 0xa6, 0xa6, 0xa6, 0xa9, 0xa9, 0xa9, 0xa6, 0xa9, 0xab, 0x93, 0x85, 0x8c, 0x8c, 0x92, 0x51, 0x96, 0x96, 0x96, 0x96, 0x91, 0x9a, 0xa6, 0xa4, 0xa4, 0xa4, 0xa6, 0xa6, 0xa6, 0xa6, 0xaf, 0x93, 0x6e, 0x75, 0x7c, 0x79, 0x79, 0x7b, 0x79, 0x7b, 0x7f, 0x81, 0x85, 0x81, 0x7f, 0x81, 0x7f, 0x81, 0x7b, 0x95, 0xa4, 0x52, 0x52, 0x9d, 0x99, 0x99, 0x99, 0x99, 0x99, 0x52, 0x99, 0x99, 0x99, 0x99, 0x99, 0x9b, 0x99, 0x9b, 0x99, 0x97, 0x95, 0x99, 0x99, 0x9d, 0x1b, 0x13, 0x14, 0x14, 0x14, 0x17, 0x14, 0x17, 0x14, 0x17, 0x14, 0x17, 0x17, 0x20, 0x1d, 0x1e, 0x1d, 0x1e, 0x1e, 0x1e, 0x1d, 0x1e, 0x1e, 0x1e, 0xf3, 0x52, 0xa1, 0x9b, 0xa6, 0xad, 0x72, 0xde, 0xc3, 0xd5, 0xc4, 0xd5, 0xc4, 0xc4, 0x61, 0xc4, 0x61, 0x5f, 0x60, 0x66, 0x67, 0x6d, 0x78, 0x4e, 0x4f, 0xa1, 0x9d, 0x9d, 0x99, 0x99, 0x52, 0x52, 0x52, 0x52, 0x52, 0x52, 0x52, 0x52, 0x52, 0xa2, 0x52, 0xa2, 0xa6, 0xad, 0x72, 0xe4, 0xe8, 0xe9, 0xe7, 0xe9, 0xe9, 0xe9, 0xe9, 0xe9, 0xea, 0xe9, 0xea, 0xea, 0xeb, 0xec, 0x10, 0xec, 0xec, 0xec, 0xed, 0xec, 0xed, 0xed, 0xed, 0xc8, 0x80, 0x81, 0x4d, 0x4e, 0x89, 0x96, 0x92, 0x8f, 0x8f, 0x8f, 0x8f, 0x8f, 0x92, 0x8f, 0x8f, 0x92, 0x8f, 0x92, 0x8f, 0x92, 0x8f, 0x92, 0x92, 0xa1, 0x85, 0xe4, 0xe7, 0xeb, 0xeb, 0xc7, 0x72, 0x6e, 0x6c, 0x7e, 0x4f, 0x83, 0x83, 0x7e, 0x83, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x81, 0x81, 0x7e, 0x81, 0x81, 0x81, 0x8d, 0x81, 0x5c, 0x5c, 0x67, 0x77, 0x70, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x72, 0x6e, 0x6e, 0x6e, 0x6e, 0x72, 0x72, 0x6e, 0x72, 0x72, 0x72, 0x72, 0x0a, 0x0d, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0d, 0x0b, 0x0b, 0x0b, 0x0d, 0x0d, 0x0d, 0x0b, 0x0b, 0xe6, 0x59, 0x5a, 0x5f, 0x61, 0x62, 0x62, 0x66, 0x66, 0x66, 0x66, 0x66, 0x6c, 0x66, 0x6c, 0x6c, 0x6c, 0x6d, 0x66, 0x66, 0x6a, 0x6a, 0x6e, 0x70, 0x6e, 0x74, 0x74, 0x77, 0x77, 0x79, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x79, 0x7c, 0x7c, 0x79, 0x7a, 0x1a, 0x1c, 0xf7, 0xa6, 0xa3, 0x9c, 0xa3, 0xa0, 0x9c, 0xa3, 0xa0, 0x9c, 0xa3, 0x9c, 0xa0, 0xa0, 0x9c, 0xa0, 0xa3, 0xf8, 0xdb, 0xf7, 0x23, 0x23, 0x26, 0x1f, 0x12, 0x09, 0xe0, 0xc2, 0x54, 0xd2, 0xc2, 0xd2, 0xdf, 0xe2, 0xe0, 0xe0, 0xe0, 0xe0, 0xe0, 0xe0, 0xe2, 0xe0, 0xe2, 0xe0, 0xd3, 0x55, 0x57, 0xd2, 0x57, 0x55, 0xe0, 0x19, 0x19, 0x19, 0x16, 0x19, 0x16, 0x19, 0x16, 0x19, 0x14, 0x14, 0x14, 0x18, 0x07, 0xd3, 0xe2, 0xe1, 0xe2, 0xe0, 0xe1, 0xe0, 0x07, 0x09, 0x11, 0x0c, 0x0c, 0x0e, 0x09, 0x12, 0x1f, 0x1c, 0x1c, 0x1c, 0x19, 0x1c, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x08, 0x0a, 0x0a, 0x08, 0x0a, 0x08, 0x0a, 0x08, 0x0e, 0x08, 0x08, 0x12, 0x12, 0x15, 0x11, 0x0e, 0x12, 0xed, 0x79, 0x73, 0x71, 0x6d, 0x6c, 0x69, 0x6c, 0x66, 0x67, 0x66, 0x62, 0x62, 0x60, 0x5f, 0x5b, 0x57, 0x53, 0xe0, 0x1f, 0x1c, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x23, 0x1f, 0x1f, 0x1f, 0x23, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x2d, 0x25, 0x27, 0x29, 0xf2,
0xaf, 0xaf, 0xaf, 0xb1, 0xaf, 0xb1, 0xb1, 0xb1, 0xb1, 0xb3, 0xb3, 0xb5, 0xb3, 0xaf, 0xaf, 0xad, 0xad, 0xab, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xab, 0xad, 0x8d, 0x8c, 0x92, 0x51, 0x96, 0x91, 0x96, 0x96, 0x96, 0x91, 0x9d, 0xa4, 0xa4, 0xa4, 0xa4, 0xa6, 0xa4, 0xa6, 0xa6, 0xa9, 0xaf, 0x85, 0x6e, 0x74, 0x79, 0x74, 0x7b, 0x74, 0x7b, 0x7f, 0x7b, 0x7f, 0x7b, 0x7f, 0x7b, 0x7b, 0x7b, 0x7b, 0x75, 0x99, 0xa4, 0x99, 0x52, 0x9d, 0x52, 0x99, 0x99, 0x99, 0x99, 0x99, 0x52, 0x9b, 0x99, 0x52, 0x9b, 0x99, 0x52, 0x9b, 0x99, 0x97, 0x97, 0x9a, 0x97, 0x17, 0x13, 0x17, 0x14, 0x14, 0x14, 0x17, 0x14, 0x17, 0x17, 0x17, 0x17, 0x14, 0x1d, 0x1e, 0x1e, 0x1d, 0x1e, 0x1d, 0x1e, 0x1d, 0x1e, 0x1e, 0x1d, 0xd9, 0xa1, 0x99, 0xa2, 0x9b, 0xa4, 0xa9, 0x72, 0xdf, 0xc3, 0xd5, 0xc4, 0xc5, 0xc4, 0xc4, 0xc4, 0x61, 0x61, 0x61, 0x62, 0x66, 0x67, 0x6d, 0x73, 0x4d, 0x83, 0x9d, 0xa1, 0x9a, 0x52, 0x99, 0x99, 0x99, 0x52, 0x52, 0x52, 0x52, 0x52, 0x52, 0x52, 0x52, 0x52, 0x52, 0xa1, 0x9e, 0x0a, 0xe6, 0xe9, 0xe8, 0xe9, 0xe7, 0xe9, 0xe7, 0xe9, 0xea, 0xea, 0xea, 0xea, 0xed, 0xea, 0xec, 0x11, 0xec, 0xec, 0xec, 0xed, 0xed, 0xed, 0xed, 0xed, 0x7d, 0x7f, 0x71, 0x4d, 0x4e, 0x89, 0x51, 0x92, 0x8f, 0x8d, 0x8f, 0x8f, 0x8d, 0x8f, 0x8f, 0x8f, 0x92, 0x8f, 0x92, 0x8f, 0x92, 0x92, 0x92, 0x8f, 0xa1, 0x82, 0xe4, 0xc6, 0xeb, 0xc7, 0xc7, 0xc8, 0x72, 0x70, 0x78, 0x4f, 0x4f, 0x83, 0x83, 0x7e, 0x76, 0x7a, 0x7e, 0x7a, 0x81, 0x7e, 0x7e, 0x7e, 0x7a, 0x81, 0x81, 0x7e, 0x81, 0x7e, 0x8c, 0x83, 0x5c, 0x63, 0x77, 0x6e, 0x70, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x72, 0x6e, 0x6e, 0x6e, 0x6e, 0x72, 0x6e, 0x72, 0x74, 0x72, 0x0e, 0x0b, 0x0d, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0d, 0x09, 0x4a, 0xd2, 0xc2, 0xd2, 0xd2, 0xd2, 0xd3, 0x57, 0x5a, 0x5a, 0x5b, 0x5a, 0x5f, 0x5f, 0x5b, 0x62, 0x60, 0x60, 0x62, 0x74, 0x7f, 0x7f, 0x79, 0x7f, 0x7c, 0x7f, 0x7f, 0x7c, 0x7c, 0x79, 0x79, 0x7c, 0x79, 0x79, 0x79, 0x79, 0x7c, 0x79, 0x7c, 0x7c, 0x81, 0x1b, 0x19, 0x20, 0xda, 0xa4, 0xa0, 0x9c, 0xa0, 0x9c, 0xa0, 0x9c, 0xa0, 0xa0, 0xa0, 0xa0, 0xa0, 0xa0, 0xa3, 0x9c, 0xf8, 0xf8, 0xa5, 0x31, 0x1f, 0x23, 0x26, 0x26, 0x1c, 0x12, 0x03, 0xd2, 0x54, 0xc2, 0x55, 0xdf, 0xe0, 0xe0, 0xe0, 0xe0, 0xe0, 0xe0, 0xe0, 0xe0, 0xe2, 0x00, 0xe2, 0xe0, 0xd3, 0x57, 0x57, 0xd2, 0x56, 0x00, 0x19, 0x19, 0x19, 0x16, 0x19, 0x16, 0x19, 0x16, 0x19, 0x19, 0x14, 0x14, 0x18, 0x0e, 0xe0, 0xe0, 0xe2, 0xe1, 0xe2, 0xe3, 0xe0, 0xe1, 0xe2, 0x07, 0x0c, 0x11, 0x0c, 0x0c, 0x09, 0x12, 0x1f, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x19, 0x1c, 0x19, 0x1c, 0x0f, 0x08, 0x08, 0x0a, 0x08, 0x08, 0x08, 0x08, 0x08, 0x08, 0x08, 0x08, 0x12, 0x12, 0x15, 0x0e, 0x15, 0x12, 0x12, 0xed, 0x72, 0x67, 0x6c, 0x65, 0x65, 0x65, 0x61, 0xc4, 0x61, 0x5a, 0xd4, 0xd3, 0xd2, 0xdf, 0xdf, 0xd2, 0x0f, 0x23, 0x19, 0x1c, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x23, 0x1f, 0x1f, 0x26, 0x26, 0x26, 0x26, 0x26, 0x23, 0x25, 0x2d, 0x27, 0x29, 0x25,
0xaf, 0xaf, 0xad, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xb1, 0xb1, 0xb1, 0xb3, 0xb5, 0xb3, 0xaf, 0xad, 0xad, 0xab, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xab, 0xa9, 0xab, 0xa9, 0x8d, 0x8d, 0x96, 0x91, 0x96, 0x91, 0x96, 0x91, 0x96, 0x9d, 0xa6, 0xa4, 0xa4, 0xa4, 0xa6, 0xa6, 0xa6, 0xa9, 0xa9, 0xab, 0xab, 0x77, 0x6a, 0x74, 0x74, 0x74, 0x74, 0x79, 0x7b, 0x79, 0x7b, 0x7b, 0x7b, 0x75, 0x7b, 0x75, 0x7b, 0x75, 0x75, 0x99, 0xa4, 0x99, 0x52, 0x99, 0x52, 0x99, 0x99, 0x99, 0x9b, 0x99, 0x99, 0x99, 0x99, 0x9b, 0x99, 0x9b, 0x52, 0x52, 0x97, 0x99, 0x9d, 0xca, 0x13, 0x14, 0x14, 0x14, 0x17, 0x17, 0x14, 0x17, 0x17, 0x17, 0x17, 0x17, 0x17, 0x17, 0x1d, 0x1e, 0x1d, 0x1e, 0x1d, 0x1e, 0x20, 0x1e, 0x1e, 0x22, 0xca, 0xa1, 0x99, 0x9b, 0x52, 0x52, 0xa6, 0xad, 0x77, 0xdf, 0xc3, 0xc5, 0xc4, 0xc4, 0xc5, 0xc4, 0xc5, 0xc4, 0x61, 0x5f, 0x62, 0x66, 0x67, 0x6d, 0x78, 0x73, 0x83, 0xa1, 0x52, 0x99, 0x99, 0x52, 0x99, 0x99, 0x52, 0x99, 0x52, 0x52, 0x52, 0x52, 0x52, 0x99, 0x52, 0x9d, 0xcb, 0x16, 0x0c, 0xc6, 0xe7, 0xe9, 0xe9, 0xe7, 0xe9, 0xea, 0xe9, 0xea, 0xe9, 0xea, 0xeb, 0xed, 0xeb, 0xec, 0xec, 0xec, 0xec, 0xed, 0xec, 0xed, 0xed, 0xed, 0xd7, 0x74, 0x6c, 0x6d, 0x78, 0x4e, 0x89, 0x96, 0x92, 0x92, 0x8f, 0x8f, 0x8f, 0x8f, 0x8f, 0x8f, 0x8f, 0x8f, 0x8f, 0x92, 0x8f, 0x92, 0x92, 0x92, 0x95, 0xa1, 0x7c, 0xe5, 0xc6, 0xeb, 0xc7, 0xc7, 0xc8, 0x72, 0x74, 0x76, 0x83, 0x4f, 0x83, 0x7e, 0x7e, 0x7a, 0x7e, 0x78, 0x7e, 0x7e, 0x81, 0x7e, 0x81, 0x83, 0x7e, 0x86, 0x83, 0x86, 0x7e, 0x8f, 0x86, 0x69, 0x6e, 0x70, 0x6e, 0x6e, 0x6e, 0x6e, 0x6a, 0x72, 0x6e, 0x6e, 0x6e, 0x6e, 0x72, 0x6e, 0x72, 0x6e, 0x72, 0x72, 0x72, 0x0e, 0x0b, 0x0b, 0x0b, 0x0d, 0x0b, 0x0b, 0x0b, 0x0d, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0d, 0x06, 0x6f, 0x69, 0x5b, 0xde, 0xd2, 0xd3, 0x57, 0xd3, 0xd2, 0x57, 0xd2, 0x57, 0xd2, 0xd2, 0x57, 0xd2, 0x57, 0x55, 0x57, 0x62, 0x77, 0x85, 0x8c, 0x7f, 0x7c, 0x79, 0x7c, 0x7c, 0x79, 0x7c, 0x79, 0x7c, 0x79, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x79, 0x7c, 0x7a, 0xee, 0x1c, 0x1c, 0x24, 0xa5, 0xa1, 0x9c, 0xa0, 0x9c, 0xa0, 0x9c, 0xa0, 0x9c, 0xa3, 0x9c, 0xa0, 0x9c, 0xa3, 0xa0, 0xf8, 0xf7, 0xf8, 0xa5, 0x2b, 0x1f, 0x1f, 0x23, 0x26, 0x26, 0x21, 0x0e, 0xe0, 0x54, 0x53, 0xd3, 0xe0, 0xe0, 0xe0, 0xe0, 0xe0, 0xe0, 0xe0, 0xe0, 0xe2, 0xe0, 0xe2, 0xe2, 0xe2, 0xdf, 0x57, 0x57, 0x55, 0xe0, 0x19, 0x19, 0x16, 0x19, 0x16, 0x19, 0x16, 0x19, 0x16, 0x19, 0x19, 0x14, 0x14, 0x14, 0xe2, 0xd4, 0xe0, 0xe2, 0xe0, 0xe2, 0xe1, 0xe2, 0xe1, 0xe0, 0x03, 0x09, 0x11, 0x0e, 0x0c, 0x09, 0x0f, 0x23, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x23, 0x0f, 0x06, 0x0e, 0x08, 0x0a, 0x08, 0x0a, 0x0f, 0x08, 0x08, 0x08, 0x0b, 0x08, 0x0b, 0x0e, 0x15, 0x0e, 0x11, 0x12, 0x12, 0x15, 0xe7, 0x65, 0x60, 0x61, 0x5f, 0xc3, 0x5f, 0xd3, 0xd3, 0xd3, 0xd2, 0xdf, 0xdf, 0xdf, 0x55, 0x02, 0x26, 0x1c, 0x19, 0x19, 0x1c, 0x1f, 0x1f, 0x23, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x26, 0x26, 0x26, 0x26, 0x23, 0x29, 0x27, 0x25, 0x2d, 0x25,
0xad, 0xad, 0xad, 0xaf, 0xad, 0xaf, 0xaf, 0xb1, 0xaf, 0xaf, 0xaf, 0xb1, 0xb3, 0xb3, 0xb3, 0xaf, 0xad, 0xad, 0xab, 0xab, 0xa9, 0xa9, 0xa9, 0xab, 0xab, 0xa9, 0xab, 0xad, 0xa9, 0xab, 0xaf, 0xa7, 0x50, 0x91, 0x96, 0x91, 0x96, 0x91, 0x96, 0x91, 0xa1, 0xa4, 0xa4, 0xa6, 0xa4, 0xa4, 0xa6, 0xa9, 0xa6, 0xa6, 0xa6, 0xb1, 0xa7, 0x6a, 0x6a, 0x74, 0x70, 0x74, 0x75, 0x77, 0x75, 0x77, 0x75, 0x77, 0x75, 0x74, 0x75, 0x75, 0x75, 0x70, 0x7b, 0xa1, 0xa1, 0x99, 0x52, 0x95, 0x52, 0x99, 0x52, 0x9b, 0x99, 0x52, 0x9b, 0x52, 0x99, 0x9b, 0x99, 0x52, 0x99, 0x52, 0x97, 0x9d, 0xef, 0x0d, 0x17, 0x14, 0x17, 0x14, 0x14, 0x17, 0x14, 0x17, 0x17, 0x14, 0x17, 0x17, 0x17, 0x17, 0x20, 0x1e, 0x1d, 0x1e, 0x1e, 0x1d, 0x1e, 0x1d, 0x25, 0x94, 0x9d, 0x52, 0x99, 0x9f, 0x9b, 0x9b, 0xa4, 0xad, 0x7d, 0xd3, 0xe1, 0xc5, 0xc5, 0xc4, 0xc5, 0xc4, 0x61, 0x61, 0x61, 0x5f, 0x62, 0x66, 0x6c, 0x6d, 0x71, 0x6f, 0x83, 0xa1, 0x9d, 0x97, 0x99, 0x9b, 0x99, 0x9b, 0x99, 0x52, 0x99, 0x52, 0x99, 0x52, 0x52, 0x52, 0xa1, 0xca, 0x16, 0x19, 0x11, 0xc6, 0xe7, 0xe7, 0xe9, 0xe9, 0xe9, 0xe7, 0xea, 0xea, 0xea, 0xea, 0xeb, 0xeb, 0xed, 0xec, 0xec, 0xec, 0xec, 0xed, 0xed, 0xed, 0xed, 0xd6, 0x6e, 0x66, 0x6c, 0x71, 0x78, 0x4e, 0x4f, 0x51, 0x51, 0x8f, 0x8f, 0x8f, 0x8f, 0x8f, 0x92, 0x8f, 0x92, 0x8f, 0x92, 0x8f, 0x8f, 0x92, 0x92, 0x92, 0x95, 0x9d, 0x7d, 0xe4, 0xeb, 0xc7, 0xc7, 0x72, 0x77, 0x72, 0x75, 0x78, 0x83, 0x89, 0x83, 0x7e, 0x83, 0x83, 0x83, 0x7e, 0x83, 0x7e, 0x7e, 0x7e, 0x7a, 0x81, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x79, 0x79, 0x6a, 0x70, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x72, 0x72, 0x72, 0x70, 0x72, 0x0e, 0x0b, 0x0d, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x08, 0x67, 0x6f, 0x6b, 0x60, 0xd2, 0xd2, 0x57, 0xd3, 0x57, 0xd3, 0x57, 0xd3, 0x57, 0x5a, 0x57, 0x5a, 0x57, 0x57, 0x5b, 0x5b, 0x5a, 0x64, 0x70, 0x85, 0x8a, 0x7f, 0x7c, 0x7b, 0x7c, 0x79, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x79, 0x7c, 0x79, 0x7c, 0x7c, 0x81, 0xee, 0x19, 0x19, 0x1e, 0x29, 0xa0, 0xa2, 0x9c, 0x9c, 0x9c, 0xa0, 0x9c, 0xa0, 0x9c, 0xa0, 0x9c, 0xa0, 0x9f, 0x9e, 0xf8, 0xf8, 0xf7, 0xdb, 0xdb, 0x21, 0x23, 0x1f, 0x23, 0x1f, 0x26, 0x26, 0x1e, 0x05, 0x54, 0x53, 0xe0, 0xe0, 0xe0, 0xe0, 0xe0, 0xe0, 0xe0, 0xe2, 0xe0, 0xe2, 0xe0, 0x00, 0xe2, 0xe2, 0xe0, 0x57, 0x56, 0x00, 0x1c, 0x19, 0x19, 0x16, 0x19, 0x16, 0x19, 0x16, 0x19, 0x16, 0x19, 0x16, 0x18, 0x18, 0x06, 0xd4, 0xe2, 0xe1, 0xe2, 0xe1, 0xe2, 0xe2, 0xe2, 0xe3, 0xe0, 0xe1, 0x03, 0x0c, 0x0c, 0x11, 0x09, 0x0f, 0x1f, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x23, 0x0e, 0x5d, 0x07, 0x15, 0x0e, 0x0c, 0x0e, 0x0c, 0x0e, 0x0e, 0x0e, 0x0e, 0x08, 0x0e, 0x0f, 0x0e, 0x15, 0x0e, 0x11, 0x11, 0x12, 0x17, 0x11, 0xe5, 0x5a, 0x5b, 0xd4, 0xd3, 0xd3, 0xd3, 0xdf, 0xd3, 0xdf, 0xdf, 0xdf, 0xd2, 0xdf, 0x1c, 0x1f, 0x1c, 0x1c, 0x19, 0x1c, 0x1c, 0x1f, 0x23, 0x23, 0x23, 0x1f, 0x1f, 0x23, 0x26, 0x26, 0x26, 0x23, 0x29, 0x27, 0x29, 0x27, 0x29,
0xad, 0xab, 0xab, 0xad, 0xad, 0xad, 0xad, 0xaf, 0xaf, 0xad, 0xb1, 0xaf, 0xb1, 0xb3, 0xb3, 0xb3, 0xaf, 0xad, 0xad, 0xab, 0xa9, 0xa9, 0xa9, 0xab, 0xab, 0xad, 0xab, 0xab, 0xad, 0xab, 0xab, 0xb1, 0xa1, 0x50, 0x91, 0x91, 0x96, 0x96, 0x91, 0x96, 0xa4, 0xa4, 0xa4, 0xa4, 0xa6, 0xa6, 0xa6, 0xa6, 0xa9, 0xa6, 0xa9, 0xa9, 0xb3, 0x93, 0x65, 0x6a, 0x70, 0x74, 0x79, 0x75, 0x74, 0x75, 0x74, 0x75, 0x74, 0x75, 0x74, 0x74, 0x75, 0x70, 0x6a, 0x7b, 0xa4, 0x52, 0x99, 0x52, 0x99, 0x99, 0x97, 0x9b, 0x99, 0x9b, 0x99, 0x9b, 0x52, 0x52, 0x9b, 0x52, 0x9b, 0x52, 0x52, 0xa1, 0x1a, 0x13, 0x14, 0x14, 0x14, 0x17, 0x17, 0x14, 0x17, 0x17, 0x17, 0x17, 0x17, 0x17, 0x17, 0x17, 0x17, 0x1e, 0x1d, 0x1e, 0x1d, 0x1e, 0x1d, 0x1d, 0x27, 0x8e, 0x9d, 0x99, 0x9b, 0x9b, 0x52, 0x52, 0x52, 0xa1, 0xad, 0x7f, 0xdf, 0xc3, 0xd5, 0xc4, 0xc5, 0xc4, 0xc5, 0x61, 0x61, 0x61, 0x61, 0x62, 0x66, 0x6a, 0x67, 0x71, 0x6b, 0x83, 0xa4, 0x99, 0x9b, 0x99, 0x52, 0x99, 0x9b, 0x99, 0x9b, 0x99, 0x52, 0x52, 0x9b, 0x52, 0xa1, 0xd9, 0x13, 0x19, 0x16, 0x10, 0xc6, 0xe9, 0xe7, 0xea, 0xe9, 0xe9, 0xe9, 0xe9, 0xea, 0xea, 0xea, 0xeb, 0xed, 0xeb, 0xec, 0xec, 0xee, 0xec, 0xed, 0xed, 0xed, 0xee, 0x68, 0x62, 0x66, 0x6c, 0x71, 0x78, 0x4e, 0x4f, 0x95, 0x95, 0x8f, 0x8f, 0x8f, 0x8f, 0x8f, 0x8f, 0x8f, 0x92, 0x8f, 0x8f, 0x92, 0x92, 0x92, 0x92, 0x92, 0x99, 0x9d, 0xc8, 0xe4, 0xc7, 0xc7, 0xc8, 0x72, 0x77, 0x74, 0x75, 0x7e, 0x4f, 0x83, 0x83, 0x78, 0x78, 0x7a, 0x7a, 0x75, 0x7b, 0x75, 0x75, 0x77, 0x74, 0x74, 0x77, 0x74, 0x74, 0x74, 0x77, 0x70, 0x70, 0x70, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x72, 0x6e, 0x72, 0x6e, 0x72, 0x72, 0x72, 0x72, 0x0a, 0x0d, 0x0b, 0x0b, 0x0d, 0x0b, 0x0b, 0x0d, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x08, 0x67, 0x6b, 0x69, 0x6f, 0x63, 0xd2, 0xd2, 0xd3, 0x57, 0xd3, 0x57, 0x5a, 0x57, 0x5a, 0x57, 0x5a, 0x57, 0x59, 0x5a, 0x5f, 0x5f, 0x5b, 0x5a, 0x62, 0x74, 0x82, 0x82, 0x7f, 0x79, 0x79, 0x79, 0x7c, 0x79, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x79, 0x7c, 0x81, 0xd6, 0x1c, 0x1c, 0x1c, 0x20, 0x2d, 0xa3, 0x9f, 0x9c, 0xa0, 0x9c, 0x9c, 0x9c, 0x9c, 0x9c, 0xa0, 0x9c, 0xa3, 0x9e, 0xf7, 0xf8, 0xf7, 0xf8, 0xdb, 0xf5, 0x1f, 0x23, 0x1f, 0x1f, 0x23, 0x23, 0x26, 0x2e, 0x18, 0xe0, 0xde, 0x00, 0xe0, 0xe0, 0xe0, 0xe0, 0xe0, 0xe0, 0xe0, 0xe0, 0xe0, 0xe2, 0xe0, 0xe0, 0xe2, 0xe0, 0x54, 0xe0, 0x1c, 0x19, 0x16, 0x19, 0x16, 0x19, 0x16, 0x19, 0x16, 0x19, 0x19, 0x19, 0x16, 0x18, 0x0e, 0xe0, 0xe0, 0xe0, 0xe1, 0xe2, 0xe0, 0xe3, 0xe2, 0xe2, 0xe2, 0xe3, 0xe0, 0xe1, 0x07, 0x0c, 0x11, 0x09, 0x14, 0x1f, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1f, 0x13, 0x58, 0x5c, 0xe4, 0x0e, 0x11, 0x0c, 0x0c, 0x0c, 0x11, 0x0c, 0x11, 0x11, 0x11, 0x0a, 0x0e, 0x14, 0x17, 0x12, 0x12, 0x11, 0x0e, 0x12, 0x17, 0x0c, 0xe2, 0x55, 0x57, 0xdf, 0xdf, 0xd3, 0xdf, 0xdf, 0xdf, 0xdf, 0xdf, 0xc2, 0x0e, 0x26, 0x1c, 0x1c, 0x19, 0x1c, 0x19, 0x1c, 0x1c, 0x1f, 0x23, 0x1f, 0x1f, 0x1f, 0x26, 0x26, 0x26, 0x23, 0x29, 0x27, 0x2d, 0x25, 0x27,
0xab, 0xab, 0xab, 0xad, 0xab, 0xad, 0xad, 0xad, 0xad, 0xad, 0xaf, 0xaf, 0xaf, 0xaf, 0xb3, 0xb3, 0xaf, 0xaf, 0xad, 0xab, 0xab, 0xab, 0xa9, 0xab, 0xab, 0xad, 0xad, 0xad, 0xad, 0xad, 0xad, 0xaf, 0xb3, 0x9d, 0x50, 0x91, 0x91, 0x91, 0x91, 0x9a, 0xa4, 0xa4, 0xa4, 0xa4, 0xa6, 0xa6, 0xa6, 0xa9, 0xa6, 0xa9, 0xa9, 0xa9, 0xab, 0xb5, 0x8a, 0x65, 0x70, 0x74, 0x70, 0x74, 0x74, 0x74, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x6c, 0x66, 0x81, 0xa6, 0x99, 0x9b, 0x99, 0x99, 0x97, 0x99, 0x9b, 0x97, 0x9b, 0x52, 0x99, 0x9b, 0x9b, 0x52, 0xa1, 0xa2, 0xa4, 0x90, 0x0e, 0x16, 0x14, 0x14, 0x17, 0x14, 0x17, 0x17, 0x17, 0x17, 0x17, 0x17, 0x17, 0x17, 0x1a, 0x17, 0x1a, 0x1d, 0x20, 0x1d, 0x1e, 0x20, 0x1d, 0x22, 0xf0, 0x98, 0x9d, 0x99, 0x9b, 0x99, 0x9b, 0x9b, 0x99, 0x52, 0x52, 0xab, 0x8a, 0xd4, 0xd4, 0xc5, 0xc5, 0xc5, 0xc5, 0x61, 0xc5, 0x61, 0xc5, 0x61, 0x62, 0x62, 0x66, 0x6c, 0x6d, 0x6b, 0x86, 0xa4, 0x99, 0x97, 0x9b, 0x99, 0x9b, 0x99, 0x52, 0x99, 0x9b, 0x99, 0x9b, 0x52, 0x9d, 0xca, 0x13, 0x16, 0x16, 0x19, 0x10, 0xc6, 0xe7, 0xea, 0xe7, 0xea, 0xea, 0xea, 0xea, 0xea, 0xea, 0xed, 0xeb, 0xd6, 0xed, 0xec, 0xec, 0xec, 0xee, 0xed, 0xed, 0xed, 0xc5, 0x5f, 0x65, 0x6a, 0x6c, 0x71, 0x78, 0x4e, 0x4f, 0x51, 0x95, 0x8f, 0x8f, 0x8f, 0x8f, 0x8f, 0x8f, 0x8f, 0x92, 0x8f, 0x92, 0x8f, 0x92, 0x92, 0x92, 0x92, 0x99, 0x9d, 0xc8, 0xe6, 0xc7, 0xc7, 0xc8, 0x72, 0x74, 0x75, 0x76, 0x83, 0x83, 0x76, 0x75, 0x74, 0x70, 0x74, 0x75, 0x70, 0x74, 0x74, 0x75, 0x74, 0x75, 0x74, 0x74, 0x74, 0x74, 0x77, 0x74, 0x6a, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x72, 0x72, 0x6e, 0x72, 0x74, 0x74, 0x0f, 0x0b, 0x0d, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x66, 0x6b, 0x69, 0x6b, 0x71, 0x69, 0x5a, 0xd2, 0xd2, 0x5a, 0xd3, 0x57, 0x57, 0x5a, 0x57, 0x5a, 0x57, 0x57, 0x59, 0x5f, 0x5f, 0x5f, 0x5f, 0x5a, 0x5b, 0x61, 0x70, 0x82, 0x82, 0x7c, 0x7c, 0x7b, 0x7c, 0x7c, 0x7c, 0x79, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x80, 0x19, 0x1c, 0x19, 0x1c, 0x20, 0x31, 0x9f, 0x9f, 0x9c, 0x9c, 0x9c, 0x9c, 0x9c, 0xa0, 0x9c, 0xa0, 0x9c, 0x9e, 0xf8, 0xf7, 0xf8, 0xf7, 0xf8, 0xdb, 0x2c, 0x1f, 0x23, 0x23, 0x1f, 0x1f, 0x1f, 0x1f, 0x26, 0x23, 0xea, 0xc4, 0x02, 0x03, 0xe3, 0x03, 0xe2, 0x03, 0xe2, 0x03, 0xe2, 0x03, 0xe2, 0x03, 0xe2, 0x03, 0xd4, 0x02, 0x1c, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x14, 0xe2, 0xd4, 0xe2, 0xe0, 0xe2, 0xe3, 0xe0, 0xe3, 0xe0, 0xe3, 0xe2, 0xe3, 0xe2, 0xe1, 0xe2, 0x07, 0x11, 0x0c, 0x14, 0x1f, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x16, 0x5b, 0x58, 0x58, 0xc4, 0x0e, 0x12, 0x0a, 0x11, 0x0a, 0x11, 0x0e, 0x0c, 0x0e, 0x11, 0x0c, 0x14, 0x18, 0x18, 0x14, 0x18, 0x12, 0x17, 0x0e, 0x17, 0x15, 0x06, 0xe0, 0x55, 0x57, 0xdf, 0xd3, 0xdf, 0xdf, 0xdf, 0xdf, 0xd2, 0x00, 0x1f, 0x1f, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x19, 0x1f, 0x1f, 0x23, 0x1f, 0x1f, 0x26, 0x26, 0x23, 0x29, 0x27, 0x29, 0x27, 0x29,
0xa9, 0xa9, 0xab, 0xab, 0xab, 0xab, 0xad, 0xab, 0xad, 0xad, 0xad, 0xad, 0xaf, 0xaf, 0xb1, 0xb3, 0xb3, 0xb1, 0xad, 0xad, 0xab, 0xab, 0xab, 0xab, 0xad, 0xad, 0xad, 0xad, 0xaf, 0xaf, 0xad, 0xad, 0xaf, 0xb3, 0x95, 0x50, 0x91, 0x96, 0x91, 0x9a, 0xa6, 0xa4, 0xa4, 0xa6, 0xa6, 0xa9, 0xa9, 0xa9, 0xa9, 0xab, 0xab, 0xab, 0xad, 0xb1, 0xaf, 0x77, 0x6a, 0x74, 0x70, 0x6e, 0x6a, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x6a, 0x6a, 0x6a, 0x66, 0x8d, 0xa4, 0x99, 0x9b, 0x97, 0x97, 0x97, 0x97, 0x99, 0x9b, 0x99, 0x52, 0x52, 0x52, 0x97, 0x97, 0x92, 0x92, 0x64, 0xe0, 0xec, 0x12, 0x17, 0x18, 0x14, 0x17, 0x12, 0x17, 0x17, 0x17, 0x17, 0x17, 0x17, 0x17, 0x17, 0x1a, 0x17, 0x1d, 0x20, 0x1d, 0x1d, 0x1d, 0x25, 0xf0, 0x9c, 0x9a, 0x99, 0x9b, 0x99, 0x9b, 0x99, 0x9b, 0x99, 0x52, 0x9d, 0xab, 0x8a, 0xd4, 0xe1, 0xc5, 0xc5, 0xc4, 0xc5, 0xc4, 0xc5, 0x61, 0xc4, 0x64, 0x61, 0x62, 0x62, 0x67, 0x6c, 0x6b, 0x8b, 0xa2, 0x99, 0x99, 0x9b, 0x99, 0x9b, 0x9b, 0x9b, 0x52, 0x9b, 0x99, 0x52, 0xa1, 0xd9, 0x13, 0x16, 0x16, 0x16, 0x19, 0x10, 0xc6, 0xe7, 0xea, 0xea, 0xea, 0xe9, 0xea, 0xea, 0xea, 0xeb, 0xeb, 0xed, 0xd6, 0xed, 0xec, 0xec, 0xed, 0xed, 0xee, 0xed, 0xd5, 0x5f, 0xc5, 0x62, 0x6a, 0x6c, 0x76, 0x78, 0x4e, 0x4f, 0x91, 0x97, 0x8f, 0x8f, 0x8f, 0x8f, 0x8f, 0x92, 0x8f, 0x8f, 0x8f, 0x92, 0x92, 0x95, 0x92, 0x95, 0x92, 0x9a, 0x99, 0xc7, 0xe7, 0x72, 0xc7, 0x77, 0x74, 0x74, 0x75, 0x78, 0x76, 0x6d, 0x75, 0x6d, 0x74, 0x70, 0x74, 0x75, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x77, 0x70, 0x70, 0x6e, 0x6e, 0x6e, 0x6a, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x72, 0x6e, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x0e, 0x0b, 0x0b, 0x0b, 0x0d, 0x0b, 0x0d, 0x0b, 0x0d, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0xc6, 0x6b, 0x6b, 0x69, 0x69, 0x6f, 0x6b, 0x5f, 0xd2, 0xd2, 0x5a, 0xd3, 0x5a, 0x57, 0x5a, 0x57, 0x5a, 0x57, 0x5a, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5a, 0x5b, 0x62, 0x74, 0x7f, 0x85, 0x7c, 0x79, 0x7f, 0x79, 0x7f, 0x7c, 0x7c, 0x7c, 0x7c, 0x7f, 0x7c, 0x18, 0x1c, 0x19, 0x1c, 0x1c, 0x20, 0xf5, 0xa3, 0x9f, 0x9c, 0x9c, 0xa0, 0x9c, 0xa0, 0x9c, 0x9c, 0x9c, 0x9e, 0xf7, 0xf8, 0xf7, 0xf8, 0xf7, 0xdb, 0xdb, 0x28, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x26, 0x88, 0x4e, 0xc6, 0x06, 0x07, 0xe5, 0xe5, 0xe5, 0xe8, 0xe5, 0x09, 0xe5, 0x09, 0xe5, 0x09, 0x07, 0x09, 0x09, 0x0c, 0x14, 0x14, 0x14, 0x13, 0x18, 0x16, 0x16, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x1c, 0x0a, 0x5a, 0xe0, 0xe3, 0xe2, 0xe0, 0xe3, 0xe2, 0xe2, 0xe2, 0xe2, 0xe1, 0xe2, 0xe2, 0xe1, 0xe0, 0x03, 0x09, 0x10, 0x19, 0x1f, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x19, 0x1c, 0x16, 0xc3, 0x5c, 0x5c, 0x58, 0x5d, 0x09, 0x12, 0x0c, 0x11, 0x0c, 0x0e, 0x11, 0x0e, 0x11, 0x0c, 0x0e, 0x18, 0x14, 0x18, 0x18, 0x18, 0x18, 0x18, 0x14, 0x17, 0x1d, 0x12, 0x03, 0xdf, 0x55, 0xdf, 0xdf, 0xdf, 0xdf, 0xdf, 0xdf, 0xd2, 0x18, 0x23, 0x1f, 0x1c, 0x1c, 0x19, 0x1c, 0x1c, 0x19, 0x16, 0x1c, 0x1c, 0x23, 0x1c, 0x23, 0x26, 0x26, 0x22, 0x2d, 0x25, 0x29, 0x27,
0xa9, 0xa9, 0xa9, 0xa9, 0xab, 0xa9, 0xab, 0xab, 0xad, 0xab, 0xad, 0xad, 0xaf, 0xad, 0xaf, 0xaf, 0xb3, 0xb3, 0xb1, 0xad, 0xad, 0xab, 0xad, 0xad, 0xad, 0xad, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xad, 0xb3, 0xaf, 0x91, 0x50, 0x91, 0x91, 0x9d, 0xa4, 0xa4, 0xa6, 0xa6, 0xa6, 0xa9, 0xa9, 0xa9, 0xab, 0xaf, 0xad, 0xab, 0xa7, 0x99, 0x93, 0x87, 0x77, 0x75, 0x77, 0x75, 0x74, 0x70, 0x70, 0x6a, 0x6a, 0x6a, 0x6a, 0x6a, 0x66, 0x6a, 0x6a, 0x6a, 0x66, 0x66, 0x93, 0xa4, 0x97, 0x97, 0x97, 0x9b, 0x97, 0x9b, 0x99, 0x9b, 0x97, 0x92, 0x8d, 0x8c, 0x85, 0x97, 0x72, 0xd2, 0xc3, 0xc5, 0xea, 0xe8, 0x11, 0x14, 0x18, 0x14, 0x17, 0x12, 0x17, 0x17, 0x17, 0x17, 0x1a, 0x17, 0x15, 0x1a, 0x1a, 0x1d, 0x20, 0x1d, 0x22, 0x25, 0xf1, 0x93, 0x9d, 0x97, 0x97, 0x97, 0x99, 0x97, 0x99, 0x99, 0x99, 0x9b, 0x52, 0xa9, 0x93, 0xd4, 0xd4, 0xc5, 0xc5, 0xc5, 0xc5, 0xc5, 0xc5, 0xc5, 0x61, 0x5f, 0x5f, 0x62, 0x62, 0x67, 0x67, 0x69, 0x51, 0xa6, 0x97, 0x97, 0x9b, 0x9b, 0x99, 0x9b, 0x9b, 0x52, 0x9b, 0x99, 0xa1, 0xf1, 0x16, 0x13, 0x18, 0x16, 0x16, 0x19, 0x10, 0xc6, 0xe7, 0xea, 0xe7, 0xeb, 0xea, 0xea, 0xea, 0xed, 0xeb, 0xed, 0xeb, 0xd6, 0xed, 0xec, 0xec, 0xee, 0xed, 0xed, 0xd4, 0xd4, 0xc4, 0xc5, 0x65, 0x66, 0x6c, 0x71, 0x78, 0x4e, 0x4f, 0x91, 0x92, 0x51, 0x8f, 0x92, 0x8f, 0x8f, 0x8f, 0x92, 0x8f, 0x92, 0x8f, 0x92, 0x92, 0x92, 0x95, 0x92, 0x9d, 0x97, 0xc7, 0xc6, 0xc7, 0x72, 0x77, 0x75, 0x75, 0x75, 0x6d, 0x70, 0x6d, 0x6c, 0x6c, 0x74, 0x75, 0x70, 0x75, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x77, 0x70, 0x6e, 0x6a, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x68, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x72, 0x72, 0x6e, 0x72, 0x74, 0x72, 0x08, 0x0d, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0xe6, 0x6b, 0x69, 0x69, 0x6b, 0x69, 0x6b, 0x6f, 0x63, 0xd2, 0xd2, 0x5a, 0x57, 0x5a, 0x57, 0x5a, 0x57, 0x57, 0x59, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x59, 0x5a, 0x61, 0x74, 0x85, 0x82, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7f, 0x1d, 0x1c, 0x19, 0x1c, 0x1c, 0x21, 0x20, 0xf5, 0xa1, 0x9c, 0x9c, 0x9c, 0x9c, 0x9c, 0xa0, 0x9c, 0x9c, 0xcc, 0xf7, 0xf8, 0xf7, 0xf7, 0xf8, 0xf7, 0xdb, 0xf6, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x23, 0xd7, 0x4e, 0x4f, 0x74, 0x02, 0x06, 0xe5, 0x07, 0xe5, 0x09, 0xe5, 0x09, 0xe5, 0x09, 0x09, 0xe5, 0x0c, 0xe5, 0xe5, 0xe5, 0x11, 0x12, 0x0e, 0x12, 0x0e, 0x12, 0x12, 0x0f, 0x14, 0x14, 0x16, 0x16, 0x1c, 0x14, 0xd4, 0xd4, 0xe0, 0xe0, 0xe2, 0xe0, 0xe2, 0xe0, 0xe2, 0xe0, 0xe2, 0xe0, 0xe2, 0xe2, 0xe2, 0xe1, 0xe0, 0xe2, 0x09, 0x19, 0x1f, 0x1c, 0x1c, 0x1c, 0x1c, 0x19, 0x19, 0x1c, 0xe1, 0x58, 0x5d, 0x5d, 0x5c, 0x58, 0xe5, 0x0e, 0x12, 0x0c, 0x11, 0x0a, 0x11, 0x0e, 0x0e, 0x11, 0x14, 0x16, 0x14, 0x18, 0x14, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x1e, 0x17, 0x02, 0xd2, 0x54, 0xdf, 0xdf, 0xdf, 0xdf, 0xc2, 0x06, 0x26, 0x1f, 0x1c, 0x1f, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x16, 0x19, 0x1c, 0x1f, 0x1f, 0x23, 0x26, 0x29, 0x27, 0x25, 0x29, 0x25,
0xad, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xab, 0xab, 0xab, 0xab, 0xad, 0xad, 0xaf, 0xaf, 0xb1, 0xb3, 0xb5, 0xaf, 0xad, 0xad, 0xad, 0xad, 0xaf, 0xaf, 0xaf, 0xaf, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xaf, 0xb3, 0xab, 0x50, 0x50, 0x91, 0xa1, 0xa4, 0xa6, 0xa6, 0xa6, 0xa9, 0xad, 0xaf, 0xab, 0xa9, 0xa4, 0x9b, 0x92, 0x8d, 0x85, 0x85, 0x82, 0x7f, 0x77, 0x79, 0x7b, 0x79, 0x7b, 0x77, 0x75, 0x74, 0x74, 0x70, 0x70, 0x6a, 0x6a, 0x66, 0x66, 0x65, 0x62, 0x66, 0x9b, 0x52, 0x92, 0x97, 0x97, 0x97, 0x92, 0x92, 0x8c, 0x8c, 0x85, 0x8c, 0x85, 0x93, 0x82, 0xd4, 0xd4, 0xc3, 0xe1, 0xe7, 0xe7, 0xe7, 0xe8, 0x11, 0x17, 0x14, 0x17, 0x17, 0x12, 0x17, 0x1a, 0x17, 0x1a, 0x17, 0x1a, 0x15, 0x1d, 0x1d, 0x1d, 0x22, 0xef, 0xf3, 0x93, 0x9d, 0x97, 0x97, 0x99, 0x97, 0x99, 0x97, 0x99, 0x99, 0x99, 0x99, 0x52, 0xa6, 0x93, 0xc4, 0xd4, 0xd5, 0xc5, 0xd5, 0xc4, 0xc5, 0xc5, 0xc5, 0xc3, 0x5f, 0x5f, 0x62, 0x62, 0x66, 0x67, 0x69, 0x51, 0xa1, 0x99, 0x99, 0x9b, 0x99, 0x9b, 0x52, 0x9b, 0x99, 0x9b, 0xa1, 0xd9, 0x13, 0x16, 0x16, 0x18, 0x16, 0x16, 0x16, 0x10, 0xc6, 0xea, 0xea, 0xe7, 0xeb, 0xea, 0xeb, 0xea, 0xeb, 0xed, 0xd6, 0xd6, 0xd6, 0xed, 0xed, 0xec, 0xee, 0xea, 0xd4, 0xd4, 0xc3, 0xc4, 0x64, 0x65, 0x6a, 0x6a, 0x76, 0x78, 0x4e, 0x4f, 0x91, 0x95, 0x8f, 0x51, 0x8f, 0x8f, 0x92, 0x8f, 0x92, 0x8f, 0x92, 0x51, 0x92, 0x95, 0x92, 0x95, 0x92, 0x9d, 0x92, 0xeb, 0xc6, 0x72, 0x72, 0x77, 0x75, 0x75, 0x66, 0x66, 0x6c, 0x6c, 0x6c, 0x6c, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x77, 0x74, 0x70, 0x6a, 0x70, 0x6e, 0x6a, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x72, 0x6e, 0x72, 0x72, 0x72, 0x72, 0x74, 0x72, 0x0e, 0x0d, 0x0b, 0x0d, 0x0b, 0x0d, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x09, 0x6b, 0x6b, 0x69, 0x69, 0x69, 0x69, 0x6b, 0x6f, 0x67, 0x5a, 0xd2, 0xd3, 0x57, 0x5a, 0x57, 0x5a, 0x57, 0x5a, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5b, 0x5a, 0x62, 0x70, 0x82, 0x85, 0x7f, 0x7c, 0x7f, 0x7c, 0x7c, 0x7f, 0x7f, 0x1a, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1f, 0x24, 0xf7, 0x52, 0x9c, 0x9c, 0x9c, 0x9c, 0x98, 0x9c, 0x9c, 0xda, 0xf8, 0xf7, 0xf8, 0xda, 0xf7, 0xf8, 0xf7, 0xa5, 0x2d, 0x1f, 0x23, 0x1f, 0x1f, 0x1f, 0x1f, 0x23, 0xee, 0x4e, 0x4e, 0x4f, 0x76, 0xe5, 0x06, 0xe5, 0xe5, 0xe5, 0x07, 0xe8, 0x07, 0xe5, 0x09, 0x07, 0x07, 0x09, 0xe5, 0xe5, 0x09, 0x0c, 0x12, 0x12, 0x0e, 0x12, 0x11, 0x12, 0x0e, 0x12, 0x0e, 0x12, 0x12, 0x13, 0x09, 0xc5, 0xc5, 0xc5, 0xd5, 0xd5, 0xe4, 0xd5, 0xd5, 0xe3, 0xe4, 0xe3, 0xe3, 0xe3, 0xe3, 0xe3, 0xe3, 0xe2, 0xe1, 0x03, 0x18, 0x1f, 0x1c, 0x1c, 0x19, 0x19, 0x19, 0x1c, 0x03, 0x5c, 0x58, 0x5d, 0x5d, 0x5c, 0x58, 0x61, 0x0c, 0x12, 0x0e, 0x11, 0x0e, 0x11, 0x0e, 0x0c, 0x12, 0x16, 0x18, 0x13, 0x18, 0x18, 0x14, 0x18, 0x18, 0x18, 0x18, 0x18, 0x19, 0x23, 0x18, 0x02, 0xc2, 0xc2, 0xdf, 0xdf, 0xd2, 0xe0, 0x1c, 0x1f, 0x1f, 0x1c, 0x1f, 0x19, 0x1c, 0x1c, 0x1c, 0x19, 0x19, 0x16, 0x19, 0x1c, 0x1f, 0x26, 0x29, 0x27, 0x29, 0x27, 0x2d,
0xab, 0xaf, 0xab, 0xad, 0xab, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xab, 0xab, 0xad, 0xad, 0xad, 0xad, 0xad, 0xaf, 0xb3, 0xb3, 0xaf, 0xad, 0xaf, 0xad, 0xaf, 0xb1, 0xb1, 0xb3, 0xb1, 0xb3, 0xb3, 0xb3, 0xb1, 0xb1, 0xb1, 0xb5, 0xa4, 0x50, 0x91, 0xa1, 0xa6, 0xa9, 0xab, 0xad, 0xab, 0xa9, 0xa1, 0x9a, 0x51, 0x8b, 0x8b, 0x87, 0x87, 0x82, 0x82, 0x85, 0x82, 0x77, 0x77, 0x77, 0x79, 0x74, 0x7b, 0x77, 0x7b, 0x79, 0x7b, 0x7b, 0x75, 0x75, 0x74, 0x70, 0x6c, 0x6a, 0x62, 0x70, 0x99, 0x97, 0x8d, 0x8d, 0x8c, 0x87, 0x8c, 0x87, 0x8c, 0x8c, 0x87, 0x90, 0x8d, 0xc4, 0xdf, 0xc4, 0xc3, 0xd4, 0xd5, 0xe9, 0xe7, 0xe6, 0xe6, 0xe9, 0x11, 0x17, 0x17, 0x17, 0x1a, 0x17, 0x1a, 0x17, 0x1a, 0x1a, 0x1a, 0x15, 0x1d, 0x1d, 0x25, 0x27, 0xd9, 0x9b, 0x9a, 0x97, 0x99, 0x92, 0x97, 0x95, 0x97, 0x99, 0x99, 0x99, 0x99, 0x52, 0x99, 0xa9, 0x93, 0xc4, 0xe0, 0xc5, 0xc5, 0xc5, 0xc5, 0xc5, 0xc4, 0x5f, 0x5f, 0x5f, 0x5f, 0x61, 0x62, 0x66, 0x67, 0x69, 0x95, 0xa6, 0x97, 0x97, 0x9b, 0x99, 0x9b, 0x99, 0x9b, 0x9b, 0x9d, 0xf1, 0x13, 0x18, 0x16, 0x16, 0x16, 0x16, 0x19, 0x16, 0x10, 0x68, 0xe7, 0xea, 0xe7, 0xea, 0xea, 0xeb, 0xeb, 0xeb, 0xeb, 0xed, 0xd6, 0xd6, 0xee, 0xec, 0xee, 0xe7, 0xd4, 0xd4, 0xd4, 0xc3, 0xc4, 0x61, 0x65, 0x66, 0x6c, 0x76, 0x78, 0x4e, 0x4f, 0x50, 0x95, 0x51, 0x8f, 0x8f, 0x92, 0x8f, 0x92, 0x8f, 0x92, 0x92, 0x92, 0x97, 0x92, 0x92, 0x95, 0x92, 0xa1, 0x92, 0xc6, 0xc7, 0x72, 0x74, 0x75, 0x75, 0x66, 0x66, 0x66, 0x66, 0x66, 0x67, 0x66, 0x74, 0x75, 0x70, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x70, 0x6e, 0x6a, 0x6e, 0x6e, 0x6e, 0x6a, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x72, 0x72, 0x72, 0x72, 0x74, 0x72, 0x08, 0x0d, 0x0d, 0x0d, 0x0b, 0x0d, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0a, 0x6b, 0x69, 0x6b, 0x69, 0x6b, 0x69, 0x6b, 0x69, 0x6f, 0x6b, 0x5b, 0xd2, 0x57, 0x5a, 0x5a, 0x5a, 0x57, 0x59, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5b, 0x5f, 0x5f, 0x5f, 0x5a, 0x5b, 0x61, 0x74, 0x82, 0x82, 0x7f, 0x79, 0x7f, 0x79, 0x81, 0x1b, 0x1c, 0x19, 0x19, 0x1c, 0x1c, 0x1f, 0x1f, 0x28, 0xcc, 0xa2, 0x9c, 0x98, 0x9c, 0x9c, 0x9c, 0x9c, 0xda, 0xf7, 0xf7, 0xf8, 0xf7, 0xf8, 0xf7, 0xf7, 0xf8, 0xa5, 0x28, 0x1f, 0x23, 0x1f, 0x1f, 0x1f, 0x1f, 0xf0, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0xc6, 0x06, 0x06, 0xe5, 0xe5, 0x07, 0xe5, 0x09, 0x09, 0xe8, 0x09, 0x09, 0x09, 0xe5, 0xe5, 0xe5, 0x09, 0x12, 0x12, 0x12, 0x0e, 0x12, 0x12, 0x0e, 0x12, 0x12, 0x0e, 0x12, 0x14, 0x11, 0x65, 0x66, 0x68, 0x68, 0xc6, 0x68, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0xe6, 0xc6, 0xc6, 0x64, 0xe6, 0x1c, 0x1c, 0x19, 0x1c, 0x19, 0x19, 0x1c, 0x07, 0x58, 0x5d, 0x58, 0x5d, 0x5d, 0x5d, 0x5c, 0x5d, 0x0c, 0x12, 0x0e, 0x0c, 0x0e, 0x0e, 0x0e, 0x0e, 0x14, 0x16, 0x18, 0x13, 0x18, 0x18, 0x18, 0x18, 0x14, 0x18, 0x18, 0x18, 0x18, 0x2e, 0x2e, 0x14, 0xe0, 0x53, 0xd2, 0xdf, 0xc2, 0x0f, 0x26, 0x1f, 0x1f, 0x1f, 0x1f, 0x1c, 0x1c, 0x1c, 0x1c, 0x19, 0x1c, 0x19, 0x16, 0x16, 0x1f, 0x24, 0x27, 0x25, 0x2d, 0x27,
0xab, 0xa9, 0xad, 0xab, 0xab, 0xad, 0xad, 0xab, 0xab, 0xa9, 0xa9, 0xab, 0xa9, 0xab, 0xad, 0xad, 0xaf, 0xaf, 0xaf, 0xb3, 0xb3, 0xaf, 0xad, 0xaf, 0xaf, 0xb1, 0xb1, 0xb3, 0xb3, 0xb5, 0xb3, 0xb5, 0xb3, 0xb3, 0xb1, 0xb3, 0xb5, 0x9d, 0x51, 0xa9, 0xad, 0xa9, 0xa4, 0x9d, 0x96, 0x91, 0x50, 0x8b, 0x8d, 0x8d, 0x8d, 0x85, 0x82, 0x85, 0x82, 0x82, 0x85, 0x7c, 0x72, 0x77, 0x74, 0x77, 0x77, 0x74, 0x75, 0x74, 0x75, 0x77, 0x75, 0x77, 0x7b, 0x75, 0x79, 0x75, 0x75, 0x70, 0x81, 0x8d, 0x87, 0x8c, 0x87, 0x8c, 0x8c, 0x8c, 0x8c, 0x87, 0x8c, 0x97, 0x68, 0xdf, 0xc4, 0xe1, 0xc3, 0xe1, 0xd4, 0xd5, 0xe9, 0xe7, 0xe7, 0xe7, 0xe7, 0xe7, 0x10, 0x17, 0x17, 0x17, 0x1a, 0x17, 0x1a, 0x1a, 0x15, 0x1a, 0x15, 0x22, 0xef, 0x27, 0xca, 0x93, 0x9a, 0x92, 0x97, 0x95, 0x95, 0x97, 0x95, 0x95, 0x97, 0x95, 0x99, 0x99, 0x99, 0x99, 0xa6, 0x9b, 0xc5, 0xd4, 0xd5, 0xc5, 0xc5, 0xc5, 0xc5, 0xc3, 0xc3, 0xc3, 0x5f, 0x5f, 0x5f, 0x62, 0x66, 0x67, 0x6d, 0x95, 0xa4, 0x97, 0x9b, 0x97, 0x9b, 0x9b, 0x99, 0x9b, 0x9d, 0xf1, 0x16, 0x16, 0x16, 0x18, 0x16, 0x18, 0x16, 0x16, 0x19, 0x10, 0xc6, 0xea, 0xea, 0xea, 0xea, 0xeb, 0xea, 0xeb, 0xeb, 0xc7, 0xd6, 0xd6, 0xc8, 0xed, 0xee, 0xe7, 0xd4, 0xd4, 0xe1, 0xd4, 0xc3, 0xd5, 0x61, 0x65, 0x6a, 0x6c, 0x75, 0x78, 0x4e, 0x4f, 0x50, 0x95, 0x51, 0x8f, 0x51, 0x92, 0x51, 0x92, 0x8f, 0x92, 0x95, 0x92, 0x95, 0x95, 0x92, 0x95, 0x97, 0xa1, 0x8c, 0xc6, 0x6e, 0x72, 0x75, 0x6c, 0x66, 0x6a, 0x66, 0x6a, 0x66, 0x66, 0x66, 0x66, 0x6c, 0x74, 0x74, 0x70, 0x74, 0x74, 0x74, 0x74, 0x77, 0x74, 0x6e, 0x6a, 0x70, 0x6e, 0x70, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x72, 0x6e, 0x72, 0x6e, 0x72, 0x74, 0x72, 0x72, 0x6e, 0xe5, 0x05, 0x05, 0x08, 0x08, 0x0b, 0x0b, 0x0d, 0x0d, 0x0b, 0x0d, 0x0b, 0x0b, 0x0b, 0x0b, 0x08, 0x0b, 0x0a, 0x67, 0x6b, 0x69, 0x6b, 0x69, 0x6b, 0x69, 0x6b, 0x69, 0x6f, 0x6f, 0x60, 0xd2, 0xd2, 0x5a, 0x57, 0x5a, 0x57, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5b, 0x5b, 0x5b, 0x62, 0x74, 0x82, 0x85, 0x7f, 0x7c, 0x81, 0x1b, 0x1c, 0x1c, 0x1c, 0x19, 0x1c, 0x1c, 0x1f, 0x1f, 0x2b, 0x94, 0xa2, 0x9c, 0x98, 0x9c, 0x98, 0x9c, 0xda, 0xf7, 0xf7, 0xf7, 0xf8, 0xf7, 0xf8, 0xf8, 0xf7, 0xdb, 0xf7, 0x21, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0xef, 0x4e, 0x4e, 0x4f, 0x4e, 0x4f, 0x4f, 0x74, 0x07, 0x06, 0xe5, 0xe5, 0x09, 0xe8, 0x09, 0xe5, 0x09, 0x09, 0xe8, 0xe5, 0xe8, 0xe5, 0xe5, 0x09, 0x11, 0x12, 0x12, 0x12, 0x12, 0x12, 0x12, 0x12, 0x12, 0x12, 0x12, 0x0f, 0x12, 0xe5, 0x66, 0x64, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0x1d, 0x1f, 0x19, 0x19, 0x19, 0x16, 0x19, 0x0a, 0x58, 0x5e, 0x5d, 0x5d, 0x5d, 0x5d, 0x5d, 0x5c, 0x5c, 0xe4, 0x12, 0x12, 0x0e, 0x11, 0x0e, 0x11, 0x12, 0x18, 0x13, 0x18, 0x13, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x14, 0x19, 0x26, 0x2e, 0x26, 0x14, 0x00, 0x53, 0x54, 0x00, 0x23, 0x1f, 0x1f, 0x1c, 0x1f, 0x1f, 0x1c, 0x1c, 0x1c, 0x19, 0x19, 0x1c, 0x19, 0x19, 0x16, 0x18, 0x08, 0x0f, 0x0f, 0x0f,
0x9f, 0xa3, 0xa9, 0xab, 0xa9, 0xab, 0xad, 0xad, 0xad, 0xaf, 0xab, 0xab, 0xa9, 0xab, 0xab, 0xab, 0xab, 0xaf, 0xad, 0xb1, 0xb5, 0xb3, 0xaf, 0xaf, 0xb1, 0xb3, 0xb3, 0xb5, 0xb5, 0xb5, 0xb5, 0xb3, 0xb6, 0xb5, 0xb7, 0xb9, 0xba, 0xb4, 0x9d, 0xa1, 0x9a, 0x96, 0x50, 0x50, 0x50, 0x8b, 0x86, 0x8d, 0x86, 0x8b, 0x85, 0x82, 0x85, 0x82, 0x82, 0x82, 0x82, 0x82, 0x77, 0x72, 0x74, 0x77, 0x74, 0x77, 0x74, 0x77, 0x74, 0x75, 0x74, 0x75, 0x74, 0x75, 0x74, 0x75, 0x7b, 0x7b, 0x7b, 0x87, 0x8c, 0x87, 0x8c, 0x8c, 0x87, 0x8c, 0x8c, 0x8c, 0x93, 0x7c, 0xd3, 0xd4, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xe7, 0xe9, 0xe7, 0xe7, 0xe9, 0xe7, 0xc6, 0xea, 0x10, 0x15, 0x17, 0x17, 0x1a, 0x1a, 0x1a, 0x15, 0x1b, 0x1b, 0x25, 0xf0, 0xd9, 0x99, 0x9a, 0x97, 0x92, 0x92, 0x95, 0x92, 0x95, 0x92, 0x95, 0x95, 0x95, 0x99, 0x99, 0x99, 0x99, 0xa9, 0x52, 0xc5, 0xe0, 0xc5, 0xd5, 0xc5, 0xc4, 0xc3, 0x5f, 0xc3, 0xc3, 0x5f, 0x5f, 0x5f, 0x62, 0x66, 0x60, 0x71, 0x99, 0xa4, 0x97, 0x99, 0x9b, 0x52, 0x9b, 0x99, 0xa1, 0xf0, 0x13, 0x18, 0x16, 0x16, 0x16, 0x16, 0x16, 0x16, 0x16, 0x19, 0x10, 0xc6, 0xe7, 0xea, 0xea, 0xea, 0xeb, 0xea, 0xeb, 0xeb, 0xd6, 0xeb, 0xd6, 0xd6, 0xee, 0xe4, 0x57, 0xd4, 0xd4, 0xc3, 0xd4, 0xc3, 0xc4, 0x64, 0x64, 0x6a, 0x6c, 0x6d, 0x78, 0x4e, 0x4f, 0x50, 0x99, 0x8f, 0x92, 0x8f, 0x8f, 0x92, 0x92, 0x92, 0x8f, 0x95, 0x92, 0x97, 0x92, 0x95, 0x97, 0x95, 0xa1, 0x8c, 0xc6, 0x6e, 0x74, 0x6a, 0x6a, 0x66, 0x6a, 0x66, 0x66, 0x66, 0x66, 0x62, 0x60, 0x6a, 0x74, 0x77, 0x70, 0x74, 0x74, 0x74, 0x77, 0x74, 0x70, 0x6a, 0x6a, 0x6a, 0x6a, 0x6e, 0x6a, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x72, 0x70, 0x72, 0x6e, 0x72, 0x68, 0x6a, 0x6a, 0xe5, 0xe5, 0x03, 0xe4, 0x07, 0x07, 0x06, 0x0a, 0x08, 0x08, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x08, 0x0b, 0x66, 0x6f, 0x6b, 0x69, 0x6b, 0x69, 0x6b, 0x69, 0x6b, 0x69, 0x6b, 0x73, 0x63, 0x57, 0xd2, 0x5b, 0x57, 0x59, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5b, 0x5f, 0x5f, 0x5f, 0x5b, 0x5b, 0x57, 0x62, 0x74, 0x82, 0x85, 0x7e, 0xef, 0x1c, 0x19, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1f, 0x1f, 0x2b, 0x9c, 0x9c, 0x9c, 0x98, 0x9c, 0x9e, 0xda, 0xf7, 0xda, 0xf7, 0xf7, 0xf7, 0xda, 0xf8, 0xf7, 0xf7, 0xa5, 0x31, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0xef, 0x4e, 0x4e, 0x4e, 0x4f, 0x4e, 0x4e, 0x4f, 0x7e, 0xe5, 0x06, 0x09, 0xe5, 0x09, 0xe5, 0x09, 0x09, 0x09, 0x09, 0xe5, 0x09, 0xe5, 0x09, 0xe5, 0x07, 0x11, 0x12, 0x12, 0x12, 0x12, 0x0e, 0x12, 0x12, 0x12, 0x12, 0x12, 0x12, 0x0f, 0x0c, 0x65, 0x66, 0xc6, 0x65, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0x20, 0x21, 0x19, 0x19, 0x19, 0x19, 0x1c, 0x08, 0x5d, 0x58, 0x5d, 0x5d, 0x5d, 0x5d, 0x5d, 0x5d, 0x5c, 0x5c, 0xd5, 0x11, 0x12, 0x0e, 0x0e, 0x0e, 0x12, 0x14, 0x16, 0x18, 0x16, 0x16, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x14, 0x1f, 0x26, 0x26, 0x2e, 0x26, 0x0e, 0xdf, 0x53, 0x14, 0x26, 0x1f, 0x1f, 0x1c, 0x1f, 0x1c, 0x1c, 0x1c, 0x1c, 0x19, 0x1c, 0x19, 0x1c, 0x19, 0x19, 0x0d, 0x04, 0x04, 0x04,
0x98, 0x9c, 0x9c, 0xa7, 0xa6, 0xa9, 0xa9, 0xa9, 0xa9, 0xab, 0xab, 0xad, 0xaf, 0xad, 0xad, 0xad, 0xad, 0xad, 0xad, 0xad, 0xb1, 0xb3, 0xb3, 0xb1, 0xb3, 0xb3, 0xb5, 0xb6, 0xb6, 0xb7, 0xbb, 0xbb, 0xbd, 0xb7, 0xae, 0xa7, 0x52, 0x96, 0x96, 0x50, 0x50, 0x50, 0x50, 0x8b, 0x8b, 0x8b, 0x8b, 0x8b, 0x87, 0x85, 0x82, 0x85, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x7c, 0x72, 0x72, 0x72, 0x77, 0x72, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x75, 0x79, 0x77, 0x7b, 0x74, 0x7f, 0x8d, 0x8c, 0x87, 0x8c, 0x8c, 0x8c, 0x8c, 0x93, 0x8c, 0xd4, 0xd4, 0xc3, 0xc3, 0xe1, 0xc3, 0xc3, 0xe1, 0xc3, 0xc3, 0xe7, 0xe9, 0xe7, 0xe7, 0xea, 0xe7, 0xe7, 0xe7, 0xeb, 0xe8, 0x15, 0x1a, 0x17, 0x1a, 0x15, 0x15, 0xee, 0xf0, 0xf2, 0xca, 0x99, 0x95, 0x95, 0x92, 0x51, 0x92, 0x92, 0x95, 0x92, 0x95, 0x92, 0x99, 0x97, 0x99, 0x99, 0x99, 0x99, 0xa6, 0xa4, 0x68, 0xdf, 0xd5, 0xc5, 0xd5, 0x5f, 0xc3, 0xc4, 0x5f, 0xc3, 0x5f, 0x5b, 0x5f, 0x62, 0x62, 0x63, 0x71, 0x9d, 0xa2, 0x97, 0x9b, 0x97, 0x99, 0x52, 0x9d, 0xf0, 0x16, 0x16, 0x18, 0x16, 0x16, 0x16, 0x16, 0x16, 0x16, 0x19, 0x16, 0x10, 0xc6, 0xea, 0xea, 0xea, 0xea, 0xeb, 0xeb, 0xeb, 0xeb, 0xd6, 0xc7, 0xc8, 0xc8, 0xe9, 0xe2, 0xe1, 0xe1, 0xd4, 0xd4, 0x5a, 0x5a, 0x5f, 0x5f, 0x62, 0x66, 0x6c, 0x6d, 0x78, 0x4e, 0x4e, 0x50, 0x95, 0x92, 0x51, 0x92, 0x8f, 0x92, 0x51, 0x97, 0x92, 0x95, 0x92, 0x95, 0x97, 0x95, 0x97, 0x97, 0xa4, 0x85, 0x68, 0x6a, 0x6a, 0x66, 0x6a, 0x6a, 0x66, 0x6a, 0x66, 0x66, 0x66, 0x62, 0x60, 0x62, 0x74, 0x77, 0x74, 0x74, 0x74, 0x75, 0x74, 0x6a, 0x6a, 0x6e, 0x6a, 0x6e, 0x6a, 0x6e, 0x6a, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6a, 0x6e, 0x68, 0x6e, 0x6a, 0x6e, 0xe5, 0x09, 0x07, 0x07, 0x03, 0xe5, 0xe4, 0xe5, 0xe4, 0x07, 0x07, 0x09, 0x06, 0x0a, 0x08, 0x08, 0x0b, 0x0d, 0xc6, 0x4b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x69, 0x73, 0x69, 0x5b, 0xd2, 0x57, 0x5a, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5b, 0x5b, 0x57, 0x62, 0x70, 0x81, 0xee, 0x1f, 0x19, 0x1c, 0x19, 0x1c, 0x1c, 0x1f, 0x1f, 0x1f, 0x1f, 0x29, 0x9f, 0x9b, 0x98, 0x9c, 0x98, 0xf8, 0xf7, 0xf7, 0xf7, 0xf7, 0xf7, 0xf8, 0xf7, 0xf7, 0xf7, 0xf8, 0xa5, 0x2b, 0x1c, 0x1f, 0x1f, 0x1f, 0x1a, 0x4f, 0x4e, 0x4f, 0x4f, 0x4e, 0x4f, 0x4e, 0x4f, 0x4f, 0x72, 0x06, 0x06, 0xe8, 0x09, 0xe5, 0x09, 0xe5, 0x0c, 0xe8, 0xe5, 0xe8, 0xe5, 0xe8, 0x09, 0xe5, 0x09, 0x0e, 0x14, 0x12, 0x12, 0x12, 0x12, 0x12, 0x12, 0x12, 0x0e, 0x12, 0x0f, 0x0e, 0xe6, 0x66, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0x65, 0x1d, 0x26, 0x1d, 0x19, 0x19, 0x16, 0x19, 0x0d, 0x5b, 0x5c, 0x5d, 0x5d, 0x5d, 0x5e, 0x5d, 0x5e, 0x5d, 0x5c, 0x5c, 0x5d, 0x0c, 0x12, 0x0e, 0x11, 0x0c, 0x14, 0x16, 0x14, 0x16, 0x14, 0x16, 0x16, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x23, 0x26, 0x23, 0x26, 0x2e, 0x23, 0x06, 0x05, 0x1f, 0x1c, 0x1c, 0x1f, 0x1f, 0x1f, 0x1f, 0x1c, 0x1c, 0x19, 0x19, 0x1c, 0x19, 0x19, 0x19, 0x19, 0x16, 0x0b, 0x04,
0x90, 0x98, 0x98, 0x98, 0x9f, 0xa2, 0xa6, 0xa9, 0xa9, 0xab, 0xa9, 0xab, 0xab, 0xad, 0xad, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xb1, 0xb3, 0xb1, 0xb5, 0xb7, 0xbd, 0xbd, 0xba, 0xb5, 0xaa, 0xa3, 0x93, 0x8c, 0x81, 0x7e, 0x83, 0x83, 0x8b, 0x91, 0x50, 0x50, 0x8b, 0x8b, 0x8b, 0x86, 0x87, 0x87, 0x85, 0x82, 0x85, 0x82, 0x82, 0x82, 0x82, 0x82, 0x7f, 0x82, 0x82, 0x77, 0x72, 0x72, 0x72, 0x77, 0x72, 0x72, 0x72, 0x74, 0x70, 0x74, 0x74, 0x77, 0x79, 0x77, 0x75, 0x77, 0x75, 0x79, 0x87, 0x8c, 0x8c, 0x85, 0x8c, 0x8c, 0x8c, 0x93, 0x65, 0xdf, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xd4, 0xd5, 0xea, 0xea, 0xe7, 0xe9, 0xe7, 0xea, 0xe7, 0xea, 0xc6, 0xeb, 0xe9, 0xec, 0x17, 0x1a, 0x1a, 0xee, 0xd7, 0xf1, 0xca, 0x99, 0x96, 0x51, 0x92, 0x8f, 0x92, 0x51, 0x92, 0x92, 0x95, 0x95, 0x95, 0x95, 0x99, 0x95, 0x99, 0x99, 0x99, 0xa6, 0xa2, 0x68, 0xe0, 0xd5, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0x5f, 0xc3, 0x5f, 0x5f, 0x61, 0x66, 0x60, 0x71, 0xa4, 0x52, 0x99, 0x9b, 0x9b, 0x99, 0xa1, 0xf0, 0x13, 0x16, 0x18, 0x16, 0x16, 0x16, 0x16, 0x16, 0x16, 0x16, 0x16, 0x19, 0xe8, 0xeb, 0xc6, 0xea, 0xea, 0xeb, 0xeb, 0xeb, 0xd6, 0xeb, 0xd6, 0xc7, 0xc8, 0xed, 0x22, 0x15, 0x1b, 0xec, 0xec, 0xec, 0xe8, 0xe9, 0xe7, 0xeb, 0xc6, 0x68, 0x70, 0x75, 0x78, 0x4e, 0x4e, 0x50, 0x51, 0x92, 0x95, 0x92, 0x95, 0x92, 0x95, 0x95, 0x97, 0x95, 0x97, 0x99, 0x97, 0x99, 0x99, 0x52, 0xa4, 0x7f, 0x68, 0x65, 0x68, 0x68, 0x66, 0x6a, 0x66, 0x6a, 0x66, 0x66, 0x66, 0x65, 0x60, 0x62, 0x70, 0x77, 0x74, 0x74, 0x77, 0x74, 0x6a, 0x6a, 0x6a, 0x6e, 0x6a, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6a, 0x6e, 0x68, 0x6e, 0x6a, 0x6e, 0x6a, 0x6e, 0xe5, 0x09, 0xe5, 0x07, 0x07, 0x07, 0x07, 0x03, 0xe5, 0x03, 0xe5, 0xe4, 0xe4, 0xe4, 0xe4, 0xe5, 0x07, 0x06, 0xe6, 0x63, 0x67, 0x69, 0x69, 0x6b, 0x6b, 0x6b, 0x6f, 0x6b, 0x6f, 0x6f, 0x6b, 0x6f, 0x6f, 0x5d, 0xd2, 0x57, 0x5f, 0x61, 0x5f, 0x5f, 0x5f, 0x5f, 0x5b, 0x5f, 0x5b, 0x5b, 0x5a, 0x5b, 0x57, 0x5a, 0x57, 0x57, 0x57, 0x57, 0x5a, 0x59, 0x57, 0x57, 0x67, 0xd6, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1f, 0x1c, 0x1f, 0x1c, 0x23, 0x1f, 0x2c, 0x9f, 0x9c, 0x98, 0xcc, 0xda, 0xf7, 0xf7, 0xda, 0xf7, 0xda, 0xf7, 0xf7, 0xf8, 0xf7, 0xf7, 0xda, 0xdb, 0x21, 0x1f, 0x1f, 0x1c, 0x22, 0x4f, 0x4e, 0x4f, 0x4e, 0x4f, 0x4e, 0x4f, 0x4e, 0x4f, 0x4f, 0x75, 0xe5, 0x05, 0xe8, 0x09, 0xe8, 0x09, 0x09, 0x09, 0xe8, 0x09, 0xe8, 0x09, 0xe8, 0x09, 0xe8, 0x09, 0x11, 0x12, 0x12, 0x12, 0x12, 0x12, 0x12, 0x12, 0x12, 0x0e, 0x12, 0x0f, 0x0e, 0xe7, 0x65, 0x68, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0x68, 0x1a, 0x26, 0x20, 0x18, 0x19, 0x19, 0x16, 0x16, 0xc3, 0x5c, 0x5d, 0x5d, 0x5d, 0x5d, 0x5d, 0x5e, 0x5d, 0x5d, 0x5e, 0x5c, 0x5c, 0xe5, 0x12, 0x12, 0x0e, 0x12, 0x18, 0x16, 0x18, 0x16, 0x13, 0x16, 0x16, 0x18, 0x18, 0x18, 0x18, 0x18, 0x14, 0x1c, 0x26, 0x26, 0x23, 0x26, 0x26, 0x2e, 0x1f, 0x23, 0x23, 0x1f, 0x1c, 0x1c, 0x1c, 0x1f, 0x1f, 0x1c, 0x1c, 0x1c, 0x19, 0x1c, 0x1c, 0x1c, 0x19, 0x19, 0x16, 0x13,
0x8e, 0x90, 0x90, 0x98, 0x98, 0x9c, 0x9c, 0xa2, 0xa6, 0xa9, 0xa9, 0xa9, 0xab, 0xab, 0xab, 0xab, 0xad, 0xaf, 0xaf, 0xaf, 0xb3, 0xb5, 0xb7, 0xb9, 0xb9, 0xb9, 0xae, 0x98, 0x8c, 0x82, 0x79, 0x75, 0x7b, 0x7b, 0x81, 0x7f, 0x81, 0x81, 0x81, 0x8b, 0x8b, 0x8b, 0x86, 0x86, 0x86, 0x86, 0x87, 0x85, 0x7f, 0x85, 0x82, 0x82, 0x82, 0x7f, 0x82, 0x7f, 0x82, 0x7f, 0x82, 0x7c, 0xc7, 0x72, 0x72, 0x72, 0x72, 0x74, 0x72, 0x72, 0x72, 0x77, 0x77, 0x77, 0x74, 0x77, 0x74, 0x77, 0x74, 0x70, 0x7f, 0x8c, 0x8c, 0x8c, 0x8c, 0x85, 0x9b, 0x72, 0xdf, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xe1, 0xc3, 0xc3, 0xd4, 0xe6, 0xea, 0xe7, 0xe7, 0xea, 0xe7, 0xeb, 0xe7, 0xea, 0xea, 0xc7, 0xc7, 0xeb, 0xec, 0x11, 0xef, 0xd7, 0x84, 0x8e, 0x9a, 0x96, 0x8f, 0x51, 0x8f, 0x51, 0x92, 0x8f, 0x95, 0x92, 0x95, 0x92, 0x95, 0x95, 0x99, 0x95, 0x99, 0x99, 0x99, 0xa4, 0xa6, 0x6e, 0xd4, 0xd5, 0xc3, 0xc4, 0xc3, 0xc4, 0xc3, 0xc3, 0xc3, 0xc3, 0x5a, 0x5f, 0x5f, 0x62, 0x60, 0x76, 0xa4, 0x52, 0x97, 0x99, 0x97, 0x9d, 0xef, 0x16, 0x16, 0x16, 0x18, 0x16, 0x16, 0x16, 0x16, 0x16, 0x16, 0x16, 0x16, 0x19, 0xe8, 0xc7, 0xea, 0xea, 0xeb, 0xeb, 0xeb, 0xeb, 0xeb, 0xd6, 0xc7, 0xd6, 0xd6, 0xec, 0x22, 0x22, 0x1b, 0x22, 0xef, 0x25, 0xef, 0x27, 0xef, 0xf0, 0xf0, 0xf1, 0xd7, 0x88, 0x8c, 0x50, 0x91, 0x51, 0x8b, 0x8b, 0x8b, 0x8f, 0x8b, 0x8f, 0x8f, 0x8f, 0x8f, 0x51, 0x92, 0x92, 0x95, 0x92, 0x95, 0x99, 0xa6, 0x7b, 0x5f, 0x65, 0x66, 0x68, 0x66, 0x68, 0x66, 0x68, 0x66, 0x66, 0x62, 0x66, 0x5f, 0x60, 0x6a, 0x77, 0x77, 0x75, 0x70, 0x6a, 0x6a, 0x6a, 0x6a, 0x6a, 0x6a, 0x6e, 0x6a, 0x6e, 0x6a, 0x6e, 0x6a, 0x6e, 0x6e, 0x6e, 0x6a, 0x6e, 0x6e, 0x6e, 0x6e, 0xe5, 0x07, 0x09, 0xe5, 0x07, 0x07, 0x07, 0x07, 0x07, 0xe5, 0x07, 0xe5, 0xe5, 0xe4, 0xe5, 0xe4, 0xe6, 0xd5, 0xc3, 0x57, 0x5f, 0x5f, 0x5f, 0x61, 0x60, 0x62, 0x63, 0x67, 0x69, 0x69, 0x6b, 0x6b, 0x6f, 0x73, 0x67, 0x59, 0xd3, 0x5a, 0x57, 0x5a, 0x57, 0x5b, 0x5a, 0x5b, 0x5f, 0x5f, 0x61, 0x61, 0x62, 0x66, 0x6a, 0x70, 0x74, 0x79, 0x7b, 0x7f, 0x82, 0x85, 0x7f, 0x8d, 0x1a, 0x19, 0x19, 0x19, 0x1c, 0x1c, 0x1f, 0x1c, 0x1f, 0x1c, 0x23, 0x1f, 0x2d, 0x52, 0x9c, 0x98, 0xf7, 0xf7, 0xda, 0xf7, 0xf7, 0xf7, 0xf7, 0xf7, 0xda, 0xf7, 0xf7, 0xf7, 0xdb, 0xf6, 0x1c, 0x1c, 0x1f, 0x1a, 0x4f, 0x4e, 0x4f, 0x4e, 0x4f, 0x4f, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x83, 0xe7, 0x05, 0x09, 0x09, 0xe8, 0x09, 0xe8, 0xe5, 0xe8, 0xe8, 0xe8, 0x09, 0xe8, 0x09, 0xe8, 0xe5, 0x0c, 0x12, 0x12, 0x12, 0x12, 0x12, 0x12, 0x12, 0x12, 0x0e, 0x12, 0x0f, 0x0d, 0x0c, 0x68, 0x68, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0x65, 0x15, 0x26, 0x21, 0x1a, 0x17, 0x16, 0x16, 0x16, 0x03, 0x5c, 0x58, 0x5d, 0x5d, 0x5d, 0x5d, 0x5d, 0x5d, 0x5e, 0x5d, 0x5d, 0x5e, 0x5c, 0x61, 0x0e, 0x14, 0x0e, 0x14, 0x16, 0x16, 0x18, 0x16, 0x18, 0x16, 0x16, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x1f, 0x26, 0x23, 0x26, 0x23, 0x26, 0x26, 0x2e, 0x2e, 0x26, 0x26, 0x1f, 0x1f, 0x1c, 0x1c, 0x1f, 0x1c, 0x19, 0x1c, 0x19, 0x19, 0x1c, 0x1c, 0x19, 0x19, 0x16,
0x8e, 0x8e, 0x8e, 0x8e, 0x90, 0x90, 0x93, 0x98, 0x9f, 0xa2, 0xa4, 0xa6, 0xa6, 0xa9, 0xa9, 0xa9, 0xab, 0xaf, 0xb3, 0xb5, 0xaf, 0xaa, 0x9c, 0x98, 0x8a, 0x7c, 0x74, 0x74, 0x74, 0x77, 0x7b, 0x7c, 0x7b, 0x79, 0x7b, 0x7f, 0x7b, 0x7f, 0x7b, 0x87, 0x8f, 0x86, 0x86, 0x86, 0x86, 0x87, 0x85, 0x7f, 0x82, 0x85, 0x82, 0x85, 0x82, 0x82, 0x82, 0x82, 0x7f, 0x82, 0x82, 0x82, 0x77, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x77, 0x77, 0x77, 0x77, 0x77, 0x74, 0x77, 0x74, 0x77, 0x74, 0x77, 0x87, 0x8c, 0x8c, 0x8c, 0x93, 0x85, 0xd3, 0xd4, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xe7, 0xe7, 0xeb, 0xe7, 0xeb, 0xe7, 0xeb, 0xeb, 0xeb, 0xeb, 0xc7, 0xc7, 0x72, 0xc7, 0xed, 0xd7, 0x88, 0x90, 0x99, 0x91, 0x51, 0x51, 0x8f, 0x51, 0x51, 0x8f, 0x95, 0x51, 0x95, 0x95, 0x99, 0x99, 0x9a, 0x52, 0xa1, 0x9d, 0xa1, 0x9d, 0xa6, 0xa9, 0x72, 0xd4, 0xc3, 0xc3, 0xc4, 0xc3, 0xc3, 0xc3, 0x5f, 0xc3, 0x5f, 0xd4, 0x5f, 0x5f, 0x62, 0x60, 0x7a, 0xa6, 0x52, 0x9b, 0x97, 0xa1, 0xef, 0x16, 0x18, 0x18, 0x16, 0x16, 0x16, 0x16, 0x16, 0x16, 0x16, 0x16, 0x16, 0x19, 0x16, 0x10, 0xc6, 0xeb, 0xea, 0xeb, 0xeb, 0xeb, 0xeb, 0xeb, 0xd6, 0xc7, 0xd6, 0xed, 0xec, 0x1b, 0x1b, 0xef, 0x1b, 0xef, 0xef, 0xef, 0xee, 0xf0, 0xd7, 0xd8, 0xd8, 0x88, 0x90, 0x99, 0x9a, 0x51, 0x86, 0x86, 0x81, 0x83, 0x86, 0x83, 0x86, 0x83, 0x86, 0x83, 0x86, 0x83, 0x86, 0x83, 0x86, 0x86, 0x86, 0x87, 0x70, 0x64, 0x65, 0x68, 0x65, 0x66, 0x65, 0x66, 0x66, 0x65, 0x66, 0x62, 0x66, 0x62, 0x5d, 0x66, 0x75, 0x79, 0x70, 0x6a, 0x6a, 0x6a, 0x6a, 0x6e, 0x6a, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x68, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0xe5, 0x09, 0xe5, 0x09, 0x07, 0xe5, 0x03, 0x07, 0x07, 0x07, 0x03, 0xe5, 0x03, 0xe5, 0xe5, 0xe4, 0xe4, 0xe5, 0xd5, 0x5b, 0x5b, 0x5f, 0x5f, 0xc3, 0x5f, 0xd4, 0x5f, 0xc3, 0x5f, 0x5f, 0x61, 0x60, 0x62, 0x63, 0x67, 0x60, 0x66, 0x75, 0x6c, 0x75, 0x75, 0x7a, 0x7f, 0x81, 0x87, 0x87, 0x8d, 0x8d, 0x92, 0x93, 0x9b, 0x52, 0x9b, 0x9b, 0x9b, 0x97, 0x9b, 0x92, 0x93, 0x95, 0x97, 0x1a, 0x16, 0x19, 0x19, 0x19, 0x1c, 0x1c, 0x1f, 0x1f, 0x1f, 0x23, 0x1f, 0x2d, 0x52, 0xcc, 0xf7, 0xf7, 0xda, 0xf7, 0xda, 0xf7, 0xda, 0xf7, 0xf7, 0xf7, 0xda, 0xf7, 0xda, 0xdb, 0x29, 0x1f, 0x1c, 0x20, 0x4f, 0x4e, 0x4f, 0x4f, 0x4e, 0x4f, 0x4f, 0x4f, 0x4e, 0x4f, 0x4e, 0x4f, 0x4f, 0x74, 0x06, 0x0c, 0x09, 0x10, 0x09, 0xe8, 0xe5, 0xe8, 0x09, 0xe8, 0x09, 0xe8, 0x09, 0x10, 0xe5, 0x10, 0x12, 0x12, 0x12, 0x12, 0x12, 0x12, 0x12, 0x12, 0x12, 0x12, 0x12, 0x0f, 0x0e, 0xe6, 0x6a, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0x65, 0x1b, 0x26, 0x21, 0x1e, 0x1a, 0x17, 0x13, 0x1c, 0x03, 0x5c, 0x5d, 0x5d, 0x5d, 0x5d, 0x5d, 0x5e, 0x5d, 0x5e, 0x5d, 0x5e, 0x5d, 0x5e, 0x5c, 0x60, 0x09, 0x12, 0x14, 0x16, 0x13, 0x18, 0x13, 0x16, 0x16, 0x16, 0x16, 0x16, 0x18, 0x18, 0x18, 0x18, 0x18, 0x26, 0x26, 0x26, 0x23, 0x26, 0x26, 0x23, 0x2e, 0x2e, 0x2e, 0x2e, 0x26, 0x26, 0x1f, 0x1f, 0x1c, 0x19, 0x19, 0x19, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x19,
0x88, 0x8a, 0x8e, 0x8a, 0x8e, 0x90, 0x8e, 0x90, 0x93, 0x93, 0x9b, 0xa2, 0xa4, 0xa4, 0xa1, 0xa4, 0xa4, 0x9f, 0x90, 0x8a, 0x77, 0x72, 0x72, 0x6e, 0x72, 0x74, 0x77, 0x77, 0x79, 0x79, 0x77, 0x79, 0x79, 0x79, 0x79, 0x7b, 0x7b, 0x7b, 0x7b, 0x7f, 0x86, 0x87, 0x86, 0x87, 0x85, 0x7f, 0x7f, 0x85, 0x82, 0x7f, 0x82, 0x7f, 0x82, 0x82, 0x82, 0x7f, 0x82, 0x82, 0x7f, 0x82, 0x7d, 0x72, 0x72, 0x72, 0xc7, 0x72, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x74, 0x77, 0x74, 0x77, 0x74, 0x74, 0x70, 0x7f, 0x8d, 0x8c, 0x8c, 0x93, 0xc5, 0xdf, 0xc4, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xe1, 0xc3, 0xd4, 0xc4, 0xea, 0xe7, 0xeb, 0xe7, 0xeb, 0xe7, 0xeb, 0xeb, 0xeb, 0xc7, 0xc7, 0xc7, 0x72, 0x70, 0x74, 0x7f, 0x51, 0x9a, 0x96, 0x91, 0x51, 0x51, 0x8f, 0x8f, 0x51, 0x8f, 0x92, 0x8f, 0x8f, 0x8f, 0x8d, 0x8f, 0x8d, 0x8d, 0x87, 0x85, 0x7f, 0x7b, 0x7f, 0x6a, 0xd3, 0xd4, 0xc3, 0xc3, 0xc3, 0xc4, 0xc4, 0xc3, 0xc3, 0x5f, 0xc3, 0x5b, 0xc3, 0x5f, 0x61, 0x60, 0x81, 0xa4, 0x9b, 0x99, 0x9d, 0xef, 0x16, 0x16, 0x18, 0x16, 0x18, 0x16, 0x16, 0x16, 0x16, 0x16, 0x16, 0x16, 0x16, 0x19, 0x16, 0xe9, 0xc7, 0xea, 0xea, 0xeb, 0xeb, 0xeb, 0xeb, 0xc7, 0xd6, 0xd6, 0xd6, 0xed, 0x1b, 0x1b, 0xef, 0x1b, 0xee, 0xef, 0xee, 0xf0, 0xd7, 0xf1, 0xd7, 0x88, 0x88, 0x8a, 0x92, 0x96, 0x96, 0x8b, 0x86, 0x86, 0x81, 0x86, 0x81, 0x86, 0x81, 0x86, 0x81, 0x83, 0x81, 0x7e, 0x81, 0x81, 0x7e, 0x76, 0x7e, 0x85, 0x74, 0x61, 0x62, 0x65, 0x65, 0x65, 0x65, 0x66, 0x66, 0x65, 0x66, 0x62, 0x65, 0x62, 0x61, 0x60, 0x74, 0x74, 0x6a, 0x6a, 0x6a, 0x6e, 0x6e, 0x6e, 0x6e, 0x6a, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0xe5, 0x06, 0x07, 0x09, 0xe5, 0x09, 0xe5, 0x07, 0x07, 0xe5, 0x07, 0xe5, 0x07, 0xe4, 0x03, 0xe5, 0xe4, 0xe7, 0xe4, 0x5b, 0x5b, 0x5f, 0x5f, 0xc4, 0x5f, 0x61, 0x5f, 0xc4, 0x5f, 0xc3, 0x5f, 0xc3, 0x5f, 0xd4, 0x5f, 0x5a, 0x75, 0x9a, 0x96, 0x96, 0x96, 0x9a, 0x96, 0x9a, 0x51, 0x95, 0x51, 0x92, 0x92, 0x8f, 0x8d, 0x8d, 0x8d, 0x8d, 0x8c, 0x8d, 0x8c, 0x8c, 0x8d, 0x8c, 0x95, 0x93, 0x1d, 0x19, 0x16, 0x19, 0x19, 0x19, 0x1c, 0x1c, 0x1f, 0x1f, 0x23, 0x1f, 0xf3, 0xa3, 0xf8, 0xda, 0xf7, 0xda, 0xf7, 0xda, 0xf7, 0xf7, 0xda, 0xf7, 0xf7, 0xf7, 0xf7, 0xf8, 0xdb, 0x20, 0x1c, 0x20, 0x83, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x7a, 0xe5, 0x0a, 0x09, 0x10, 0x09, 0xe8, 0xe8, 0xe8, 0x09, 0xe8, 0x09, 0xe8, 0x09, 0x10, 0x09, 0xe8, 0x0c, 0x14, 0x12, 0x12, 0x12, 0x12, 0x0e, 0x12, 0x12, 0x12, 0x12, 0x0d, 0x0f, 0xe5, 0x68, 0x68, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0x68, 0x10, 0x21, 0x21, 0x20, 0x1d, 0x15, 0x17, 0x19, 0x0a, 0x5c, 0x58, 0x5d, 0x5d, 0x5d, 0x5d, 0x5d, 0x5e, 0x5d, 0x60, 0x5d, 0x5e, 0x5d, 0x5e, 0x5c, 0x5c, 0xe4, 0x14, 0x19, 0x16, 0x16, 0x16, 0x16, 0x16, 0x16, 0x16, 0x16, 0x16, 0x18, 0x18, 0x18, 0x18, 0x1c, 0x26, 0x26, 0x23, 0x26, 0x26, 0x23, 0x26, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x26, 0x23, 0x1c, 0x19, 0x1e, 0x19, 0x1e, 0x19, 0x1e, 0x1c,
0x88, 0x88, 0x8a, 0x8e, 0x8a, 0x8a, 0x90, 0x8c, 0x90, 0x8a, 0x8c, 0x8c, 0x97, 0xa7, 0xaf, 0xb9, 0xaa, 0x8d, 0x85, 0x7f, 0x7c, 0x7f, 0x7c, 0x77, 0x77, 0x72, 0x72, 0x72, 0x72, 0x72, 0x77, 0x72, 0x77, 0x77, 0x77, 0x77, 0x79, 0x77, 0x79, 0x7b, 0x87, 0x8d, 0x87, 0x81, 0x85, 0x7f, 0x85, 0x7f, 0x82, 0x85, 0x7f, 0x82, 0x7f, 0x82, 0x7f, 0x82, 0x7f, 0x7c, 0x82, 0x7c, 0x82, 0x72, 0xc6, 0x6e, 0x72, 0x72, 0x77, 0x72, 0x77, 0xc8, 0x77, 0x77, 0x77, 0x72, 0x77, 0x72, 0x77, 0x77, 0x74, 0x77, 0x8c, 0x8c, 0x9b, 0x68, 0xdf, 0xc3, 0xd4, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc4, 0xd4, 0xe6, 0xea, 0xc6, 0xea, 0xc6, 0xeb, 0xc6, 0xc7, 0xeb, 0xc7, 0xc7, 0x72, 0x72, 0x72, 0x74, 0x75, 0x7e, 0x50, 0x50, 0x89, 0x8b, 0x83, 0x81, 0x7e, 0x81, 0x81, 0x7a, 0x7a, 0x7b, 0x75, 0x7b, 0x75, 0x75, 0x70, 0x6e, 0x6a, 0x68, 0x68, 0x68, 0x5b, 0x55, 0xd4, 0xd4, 0xd4, 0xc3, 0xd4, 0xc3, 0xc3, 0xc4, 0xc3, 0xc3, 0xc3, 0x5f, 0xd4, 0x5f, 0x5f, 0x60, 0x86, 0xa6, 0x9b, 0x9a, 0x25, 0x16, 0x18, 0x16, 0x18, 0x16, 0x16, 0x16, 0x16, 0x16, 0x16, 0x16, 0x16, 0x16, 0x16, 0x19, 0x16, 0x10, 0x68, 0xea, 0xea, 0xeb, 0xeb, 0xc7, 0xed, 0xc7, 0xed, 0xd6, 0xeb, 0xed, 0x1b, 0xef, 0xee, 0xef, 0xee, 0xf0, 0xee, 0xf1, 0xd7, 0xd8, 0x84, 0x88, 0x8c, 0x92, 0x91, 0x51, 0x8b, 0x8f, 0x86, 0x86, 0x81, 0x86, 0x81, 0x86, 0x81, 0x81, 0x81, 0x81, 0x81, 0x7a, 0x81, 0x7a, 0x7a, 0x7a, 0x7f, 0x87, 0x75, 0x64, 0x64, 0x65, 0x66, 0x65, 0x65, 0x65, 0x62, 0x65, 0x65, 0x62, 0x62, 0x62, 0x61, 0x62, 0x6a, 0x70, 0x6a, 0x6e, 0x6a, 0x6e, 0x6e, 0x6e, 0x6e, 0x6a, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0xe5, 0x09, 0xe5, 0x09, 0xe5, 0x09, 0xe5, 0x07, 0x07, 0x03, 0xe5, 0x07, 0xe4, 0x07, 0xe5, 0xe4, 0xe5, 0xe4, 0xe4, 0xc3, 0x5b, 0x5f, 0x5f, 0x5f, 0x5f, 0xc3, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x61, 0x5f, 0x5f, 0xc4, 0x7b, 0x91, 0x50, 0x50, 0x50, 0x50, 0x8b, 0x51, 0x8b, 0x8b, 0x8f, 0x8b, 0x8d, 0x8d, 0x8d, 0x8d, 0x8d, 0x8d, 0x8c, 0x8d, 0x8d, 0x87, 0x8c, 0x8c, 0x51, 0x8d, 0x18, 0x19, 0x19, 0x19, 0x19, 0x19, 0x1c, 0x1c, 0x1c, 0x1f, 0x1f, 0x23, 0xf2, 0xf7, 0xf7, 0xf8, 0xf8, 0xdb, 0xda, 0xf8, 0xf7, 0xda, 0xf7, 0xda, 0xf7, 0xf7, 0xda, 0xdb, 0xf7, 0x1c, 0x1c, 0x83, 0x4e, 0x4f, 0x4f, 0x4f, 0x4e, 0x4f, 0x4f, 0x4e, 0x4f, 0x4e, 0x4f, 0x4e, 0x4f, 0x4f, 0x4f, 0xeb, 0x06, 0x0a, 0xe8, 0xe8, 0x09, 0xe8, 0xe8, 0xe8, 0x10, 0x09, 0xe8, 0x10, 0x10, 0x09, 0x10, 0x09, 0x12, 0x14, 0x12, 0x12, 0x12, 0x12, 0x12, 0x12, 0x0f, 0x12, 0x0f, 0x0d, 0x0c, 0xc6, 0x68, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0x65, 0xed, 0x21, 0x21, 0x21, 0x1d, 0x17, 0x15, 0x14, 0x0a, 0x5c, 0x5d, 0x5d, 0x5d, 0x5d, 0x5d, 0x5e, 0x5d, 0x5d, 0x5e, 0x5d, 0x5e, 0x5d, 0x5e, 0x60, 0x5e, 0x5c, 0x61, 0x12, 0x16, 0x13, 0x13, 0x18, 0x16, 0x16, 0x16, 0x16, 0x16, 0x16, 0x16, 0x18, 0x18, 0x19, 0x1f, 0x26, 0x26, 0x26, 0x23, 0x26, 0x26, 0x26, 0x2e, 0x26, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x21, 0x1c, 0x1c, 0x1c, 0x19, 0x1e, 0x1c, 0x1e,
0x82, 0x88, 0x82, 0x88, 0x8a, 0x7c, 0x82, 0x82, 0x8a, 0x98, 0xa0, 0xae, 0xb4, 0xbe, 0xbf, 0xc0, 0xbe, 0xa9, 0x9a, 0x9d, 0xa1, 0x9d, 0x9d, 0x99, 0x92, 0x8d, 0x8d, 0x85, 0x82, 0x7f, 0x7c, 0x77, 0x77, 0x72, 0x77, 0x72, 0x72, 0x72, 0x72, 0x72, 0x85, 0x86, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x75, 0x7b, 0x79, 0x7b, 0x79, 0x79, 0x7c, 0x79, 0x7c, 0x82, 0x7c, 0x82, 0x8a, 0x82, 0x7d, 0x77, 0xc9, 0x74, 0x72, 0x72, 0x6e, 0x6e, 0x68, 0x6e, 0x68, 0x6e, 0x6e, 0x72, 0x72, 0x72, 0x74, 0x6e, 0x7f, 0x52, 0x7c, 0xd3, 0xd4, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xe1, 0xc3, 0xc3, 0xc3, 0xc3, 0xe1, 0xd4, 0xc6, 0xea, 0xc6, 0xea, 0xeb, 0xeb, 0xeb, 0xc7, 0xc7, 0xc7, 0xc7, 0xc8, 0x72, 0x72, 0x74, 0x75, 0x78, 0x83, 0x4d, 0x78, 0x78, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x75, 0x75, 0x70, 0x74, 0x6e, 0x6e, 0x6a, 0x6a, 0x6a, 0x6e, 0x66, 0x57, 0x55, 0x5a, 0xd4, 0xd4, 0xd4, 0xd4, 0xd3, 0xd4, 0xd4, 0xc3, 0xc3, 0xc3, 0xc3, 0x5f, 0xd4, 0x5f, 0xd4, 0x60, 0x8f, 0xa4, 0x9d, 0xef, 0x16, 0x16, 0x19, 0x18, 0x16, 0x18, 0x16, 0x16, 0x16, 0x16, 0x16, 0x16, 0x16, 0x16, 0x16, 0x19, 0x16, 0xec, 0xc7, 0xea, 0xeb, 0xeb, 0xed, 0xeb, 0xd6, 0xc7, 0xd6, 0xee, 0xeb, 0xed, 0xee, 0xef, 0xee, 0xf0, 0xee, 0xf1, 0xd7, 0xd8, 0x84, 0x84, 0x8a, 0x8c, 0x8f, 0x96, 0x91, 0x8f, 0x8b, 0x8d, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x7e, 0x81, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7f, 0x7b, 0x87, 0x7b, 0x65, 0x61, 0x65, 0x65, 0x65, 0x65, 0x65, 0x62, 0x62, 0x62, 0x62, 0x62, 0x62, 0x62, 0x6a, 0x6e, 0x6e, 0x6a, 0x6e, 0x6e, 0x6a, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0xe5, 0x09, 0x07, 0x07, 0x07, 0xe5, 0x09, 0xe5, 0x07, 0x07, 0x07, 0x03, 0xe5, 0x07, 0xe4, 0x07, 0xe4, 0xe5, 0xe4, 0x5f, 0x5b, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0xc3, 0x5f, 0x5f, 0x5f, 0xc4, 0x5f, 0xc4, 0x5f, 0xc4, 0x5b, 0xc6, 0x87, 0x91, 0x50, 0x50, 0x50, 0x50, 0x50, 0x8b, 0x51, 0x8b, 0x8f, 0x8b, 0x8f, 0x86, 0x8d, 0x87, 0x8d, 0x87, 0x8d, 0x87, 0x87, 0x8c, 0x90, 0x8c, 0x51, 0x8e, 0x16, 0x19, 0x19, 0x19, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1f, 0x1f, 0x1e, 0xef, 0x24, 0x2d, 0x27, 0x31, 0xf5, 0xf6, 0xda, 0xf8, 0xdb, 0xf8, 0xdb, 0xda, 0xf7, 0xda, 0xa5, 0x2d, 0x19, 0x87, 0x4e, 0x4f, 0x4f, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x77, 0x09, 0x0a, 0xe8, 0xe8, 0xe8, 0x09, 0xe8, 0xe8, 0xe8, 0x10, 0x09, 0x10, 0x09, 0x10, 0x10, 0xe8, 0x0e, 0x12, 0x14, 0x12, 0x12, 0x12, 0x12, 0x12, 0x0f, 0x12, 0x0f, 0x0d, 0x0f, 0xc6, 0x68, 0x68, 0xe7, 0xc6, 0xeb, 0x68, 0xe9, 0x21, 0x21, 0x20, 0x20, 0x17, 0x15, 0x12, 0x0c, 0x5d, 0x5e, 0x5e, 0x5d, 0x5e, 0x60, 0x5e, 0x60, 0x5e, 0x60, 0x5e, 0x60, 0x5e, 0x60, 0x5e, 0x60, 0x5e, 0x4a, 0x64, 0x23, 0x1c, 0x19, 0x13, 0x16, 0x13, 0x16, 0x13, 0x16, 0x16, 0x16, 0x19, 0x18, 0x18, 0x1c, 0x26, 0x23, 0x26, 0x26, 0x26, 0x26, 0x26, 0x2e, 0x2e, 0x2e, 0x26, 0x2e, 0x2e, 0x2e, 0x2e, 0x28, 0x20, 0x23, 0x1f, 0x1f, 0x1c, 0x1e, 0x1c,
0x77, 0x7d, 0x77, 0x77, 0x82, 0x8e, 0xa0, 0xac, 0xb8, 0xbe, 0xc0, 0xc0, 0xc0, 0xbe, 0xbe, 0xbd, 0xbb, 0xb9, 0xa4, 0x96, 0x9d, 0x9d, 0x9d, 0x9d, 0xa1, 0xa1, 0xa1, 0xa1, 0x9d, 0x9d, 0x9a, 0x9a, 0x95, 0x92, 0x8d, 0x8c, 0x87, 0x85, 0x7f, 0x79, 0x82, 0x8c, 0x85, 0x8a, 0x90, 0x90, 0x93, 0x98, 0x9c, 0xa0, 0xa0, 0xa0, 0xa8, 0xac, 0xae, 0xb2, 0xb2, 0xb4, 0xb7, 0xb8, 0xba, 0xbd, 0xbd, 0xb8, 0xb4, 0xb2, 0xac, 0xa8, 0xa0, 0x9e, 0x98, 0x8e, 0x8e, 0x88, 0x7d, 0x77, 0x72, 0x72, 0x6e, 0x68, 0x70, 0x77, 0xd2, 0xd2, 0xd4, 0xd4, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xe1, 0xc6, 0xeb, 0xc6, 0xc7, 0xc6, 0xc7, 0xc6, 0xc7, 0xc7, 0xc7, 0x72, 0xc8, 0x72, 0x6e, 0x6e, 0x6e, 0x75, 0x7a, 0x78, 0x76, 0x76, 0x6d, 0x75, 0x75, 0x75, 0x70, 0x70, 0x70, 0x70, 0x6e, 0x6a, 0x6a, 0x6e, 0x6a, 0x6e, 0x70, 0xc3, 0x55, 0x57, 0x57, 0x5a, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xd3, 0xd4, 0x5a, 0xd4, 0xd4, 0xc3, 0xc3, 0xc3, 0x5b, 0x5f, 0x51, 0xa9, 0x22, 0x16, 0x16, 0x18, 0x16, 0x16, 0x16, 0x16, 0x16, 0x16, 0x16, 0x16, 0x16, 0x16, 0x16, 0x16, 0x16, 0x19, 0x16, 0xe8, 0xc7, 0xea, 0xeb, 0xeb, 0xeb, 0xeb, 0xd6, 0xeb, 0xd6, 0xd6, 0xed, 0xed, 0xee, 0xef, 0xd7, 0xf0, 0xd7, 0xd8, 0xd7, 0x84, 0x88, 0x8a, 0x8c, 0x8f, 0x91, 0x51, 0x8b, 0x8d, 0x8b, 0x8d, 0x86, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x7a, 0x81, 0x7a, 0x81, 0x7a, 0x7e, 0x7b, 0x81, 0x7b, 0x7f, 0x81, 0x7f, 0x65, 0x61, 0x65, 0x62, 0x65, 0x62, 0x65, 0x65, 0x62, 0x65, 0x62, 0x62, 0x62, 0x6a, 0x70, 0x6a, 0x6a, 0x6a, 0x6a, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0xe5, 0x09, 0x07, 0x09, 0xe5, 0x07, 0xe5, 0x09, 0xe5, 0xe5, 0x07, 0xe5, 0x07, 0xe5, 0x07, 0xe4, 0xe5, 0xe4, 0xe5, 0xc3, 0x5b, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0xc3, 0x5f, 0xc4, 0x5f, 0xc4, 0x5f, 0xc4, 0x5f, 0x5f, 0x61, 0x72, 0x81, 0x91, 0x91, 0x50, 0x50, 0x50, 0x50, 0x8b, 0x51, 0x8b, 0x8b, 0x8b, 0x8d, 0x8b, 0x8d, 0x87, 0x8d, 0x87, 0x87, 0x87, 0x87, 0x8c, 0x8c, 0x8c, 0x50, 0x88, 0x19, 0x19, 0x1c, 0x19, 0x1c, 0x19, 0x1c, 0x1f, 0x1c, 0x23, 0x1e, 0xec, 0x1a, 0x19, 0x18, 0x1d, 0x20, 0x1d, 0x24, 0x25, 0x2d, 0xf2, 0xf5, 0xf7, 0xdb, 0xdb, 0xdb, 0xac, 0x2c, 0x7d, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x89, 0x4f, 0x4f, 0x4f, 0x4f, 0x86, 0xea, 0x06, 0x03, 0x07, 0x07, 0x06, 0x07, 0x06, 0x07, 0x09, 0x09, 0x09, 0x09, 0x0c, 0x09, 0x09, 0x0c, 0x12, 0x14, 0x12, 0x12, 0x12, 0x12, 0x12, 0x12, 0x12, 0x12, 0x0f, 0x0d, 0xe8, 0x68, 0x68, 0xc6, 0xc6, 0x68, 0xeb, 0x20, 0x21, 0x20, 0x20, 0x1d, 0x17, 0x12, 0x0e, 0xd4, 0x58, 0x63, 0x63, 0x60, 0x5e, 0x60, 0x63, 0x60, 0x63, 0x63, 0x63, 0x63, 0x63, 0x63, 0x63, 0x63, 0x4a, 0x60, 0x1f, 0x2e, 0x26, 0x23, 0x1f, 0x1c, 0x19, 0x16, 0x16, 0x13, 0x16, 0x16, 0x16, 0x18, 0x18, 0x1f, 0x26, 0x26, 0x23, 0x26, 0x26, 0x26, 0x26, 0x2e, 0x2e, 0x2e, 0x2e, 0x26, 0x2e, 0x26, 0x28, 0x25, 0x21, 0x1f, 0x1f, 0x23, 0x1f, 0x1f,
0x77, 0x88, 0x9e, 0xac, 0xb4, 0xbf, 0xc1, 0xc1, 0xc0, 0xbf, 0xbe, 0xbd, 0xbd, 0xbe, 0xbe, 0xbe, 0xb7, 0xba, 0xba, 0xa2, 0x96, 0x9d, 0x9d, 0x9a, 0x9d, 0x9a, 0x9d, 0x9a, 0x9a, 0x9a, 0x9d, 0x9d, 0x9d, 0x9d, 0x9d, 0x9d, 0x9d, 0x9d, 0x9d, 0x96, 0x51, 0xaa, 0xbd, 0xb9, 0xbb, 0xbe, 0xbf, 0xbf, 0xbf, 0xbf, 0xc0, 0xc0, 0xc0, 0xbf, 0xc0, 0xbf, 0xbf, 0xbf, 0xbf, 0xbe, 0xbf, 0xbe, 0xbe, 0xbe, 0xbf, 0xc0, 0xc0, 0xc0, 0xc1, 0xc0, 0xc1, 0xc0, 0xc0, 0xbe, 0xbd, 0xb4, 0xb4, 0xb2, 0xac, 0xa8, 0xa0, 0xca, 0xc6, 0xc6, 0xc3, 0xd3, 0xd2, 0xd2, 0x57, 0xd4, 0xc3, 0xd4, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xe1, 0xc3, 0xc3, 0xd4, 0xc5, 0xeb, 0xeb, 0xc6, 0xeb, 0xc7, 0xc7, 0xc7, 0x68, 0xc7, 0x72, 0x6e, 0xc7, 0x6e, 0x72, 0x6e, 0x6e, 0x70, 0x70, 0x71, 0x6c, 0x75, 0x6c, 0x6c, 0x70, 0x6c, 0x70, 0x6a, 0x6a, 0x6a, 0x6a, 0x6e, 0x6e, 0x6a, 0x6e, 0x6a, 0x57, 0x57, 0x57, 0x57, 0x57, 0x5a, 0xe0, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xd3, 0xd4, 0xd4, 0xd4, 0xd4, 0x5a, 0x5d, 0x95, 0x27, 0x16, 0x19, 0x18, 0x16, 0x18, 0x16, 0x18, 0x16, 0x16, 0x16, 0x16, 0x16, 0x16, 0x16, 0x16, 0x16, 0x16, 0x19, 0x16, 0xe9, 0xc7, 0xea, 0xeb, 0xeb, 0xd6, 0xeb, 0xd6, 0xd6, 0xd6, 0xd6, 0xeb, 0xed, 0xf0, 0xee, 0xd7, 0xd7, 0xd7, 0x84, 0x84, 0x82, 0x8a, 0x8c, 0x8f, 0x91, 0x51, 0x8b, 0x8f, 0x86, 0x8d, 0x86, 0x81, 0x81, 0x7a, 0x81, 0x7a, 0x81, 0x81, 0x7a, 0x81, 0x7a, 0x7a, 0x7e, 0x7a, 0x7f, 0x7f, 0x7a, 0x7f, 0x85, 0x7f, 0x6a, 0x61, 0x62, 0x65, 0x62, 0x65, 0x62, 0x62, 0x62, 0x65, 0x62, 0x66, 0x6a, 0x6a, 0x6e, 0x6a, 0x6a, 0x6a, 0x68, 0x6a, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0xe5, 0x09, 0x07, 0x09, 0x07, 0x09, 0x07, 0x09, 0xe5, 0x07, 0xe5, 0x07, 0x03, 0xe5, 0x03, 0xe5, 0x03, 0xe4, 0xe5, 0xc4, 0x5b, 0x5b, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0xc4, 0x5f, 0x5f, 0x5f, 0x5f, 0xc4, 0x5f, 0xc4, 0x5b, 0xc6, 0x7c, 0x81, 0x91, 0x91, 0x50, 0x50, 0x50, 0x50, 0x50, 0x8b, 0x51, 0x8b, 0x8b, 0x8d, 0x8b, 0x8d, 0x86, 0x87, 0x86, 0x87, 0x8c, 0x8c, 0x8c, 0x8c, 0x87, 0x50, 0xd8, 0x19, 0x19, 0x1c, 0x19, 0x1c, 0x1c, 0x1c, 0x1c, 0x1f, 0x1c, 0xec, 0xec, 0x15, 0x18, 0x19, 0x18, 0x18, 0x16, 0x16, 0x16, 0x16, 0x19, 0x1d, 0x24, 0x22, 0xf2, 0xf5, 0x31, 0x85, 0x4e, 0x4e, 0x4f, 0x4e, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4d, 0xee, 0xf0, 0xef, 0xee, 0xee, 0xee, 0xec, 0xec, 0xec, 0xec, 0x10, 0x10, 0x10, 0x10, 0x0c, 0x09, 0x0c, 0x08, 0x0f, 0x08, 0x0f, 0x0f, 0x12, 0x0f, 0x12, 0x0f, 0x12, 0x0f, 0x0d, 0x0c, 0xc6, 0x6e, 0xc6, 0xeb, 0xc6, 0x1d, 0x21, 0x20, 0x20, 0x20, 0x15, 0x12, 0x12, 0xe2, 0x55, 0x5b, 0x5e, 0x63, 0x60, 0x63, 0x60, 0x63, 0x60, 0x63, 0x60, 0x63, 0x60, 0x63, 0x63, 0x63, 0x63, 0x63, 0x1d, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x23, 0x1f, 0x1c, 0x19, 0x16, 0x16, 0x13, 0x16, 0x19, 0x23, 0x26, 0x26, 0x23, 0x26, 0x26, 0x26, 0x2e, 0x26, 0x2e, 0x26, 0x2e, 0x26, 0x2e, 0x21, 0x24, 0x24, 0x21, 0x1f, 0x1f, 0x23, 0x1f,
0xbc, 0xbe, 0xc1, 0xd1, 0xc0, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbd, 0xbd, 0xbd, 0xbe, 0xbd, 0xb7, 0xb6, 0xbb, 0xb9, 0x52, 0x96, 0x9a, 0x9d, 0x9d, 0x9d, 0x9d, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x9d, 0x50, 0x50, 0xb7, 0xbf, 0xb9, 0xb9, 0xb7, 0xb9, 0xb9, 0xba, 0xbb, 0xba, 0xba, 0xba, 0xba, 0xba, 0xbb, 0xbb, 0xbb, 0xbb, 0xba, 0xbb, 0xbb, 0xbb, 0xba, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xba, 0xbb, 0xbd, 0xbd, 0xbf, 0xbf, 0xc0, 0xc0, 0xc1, 0xc1, 0xbe, 0xbc, 0xb4, 0xac, 0xcc, 0x88, 0xc9, 0xc6, 0xd4, 0xd3, 0xd2, 0xd2, 0xd3, 0xd4, 0xd4, 0xc3, 0xc3, 0xe1, 0xc3, 0xc3, 0xc3, 0xc3, 0xc5, 0xeb, 0xc7, 0xc6, 0xeb, 0xc6, 0xc7, 0xc7, 0xc7, 0xc7, 0xc6, 0x6e, 0x72, 0x6e, 0x72, 0x6e, 0x6e, 0x70, 0x6a, 0x6d, 0x6c, 0x6c, 0x6c, 0x70, 0x6a, 0x6a, 0x70, 0x6a, 0x70, 0x6a, 0x6e, 0x6a, 0x6e, 0x70, 0x64, 0x55, 0x5a, 0x57, 0x5a, 0x57, 0x57, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xd2, 0x5f, 0x15, 0x16, 0x18, 0x16, 0x1e, 0x19, 0x19, 0x16, 0x16, 0x16, 0x16, 0x16, 0x16, 0x16, 0x16, 0x16, 0x16, 0x16, 0x16, 0x16, 0x19, 0xe8, 0xc7, 0xeb, 0xed, 0xea, 0xd6, 0xeb, 0xd6, 0xd6, 0xd6, 0xd6, 0xc7, 0xed, 0xf1, 0xd7, 0xd7, 0xd8, 0x84, 0x88, 0x82, 0x8a, 0x8c, 0x8f, 0x91, 0x51, 0x8b, 0x86, 0x8b, 0x86, 0x8d, 0x86, 0x81, 0x7a, 0x81, 0x7a, 0x81, 0x7a, 0x81, 0x7a, 0x81, 0x7a, 0x7a, 0x81, 0x7b, 0x7b, 0x7f, 0x7b, 0x7b, 0x7f, 0x85, 0x70, 0x61, 0x61, 0x65, 0x62, 0x65, 0x62, 0x65, 0x62, 0x62, 0x62, 0x6a, 0x6e, 0x6a, 0x6a, 0x68, 0x6a, 0x6a, 0x6a, 0x68, 0x6e, 0x6e, 0x72, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x72, 0x6e, 0x72, 0xe5, 0x09, 0x09, 0xe5, 0x07, 0xe5, 0x07, 0xe5, 0x07, 0xe5, 0xe5, 0xe5, 0x07, 0x07, 0xe5, 0x03, 0xe5, 0xe4, 0xe5, 0xd5, 0x5b, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0xc3, 0xc4, 0x5f, 0xc4, 0x5f, 0xc3, 0x5f, 0xc5, 0xc8, 0x77, 0x81, 0x91, 0x91, 0x50, 0x50, 0x50, 0x50, 0x50, 0x8b, 0x51, 0x8b, 0x8b, 0x8b, 0x87, 0x8b, 0x86, 0x87, 0x86, 0x87, 0x8c, 0x8c, 0x87, 0x8c, 0x86, 0x50, 0xd8, 0x19, 0x1c, 0x19, 0x1c, 0x19, 0x1c, 0x1c, 0x1f, 0x1c, 0x15, 0x10, 0x10, 0x0e, 0x14, 0x13, 0x14, 0x13, 0x14, 0x13, 0x13, 0x13, 0x13, 0x0d, 0x0d, 0x0d, 0x0f, 0x0e, 0xe8, 0x4b, 0x4c, 0x4b, 0x4b, 0x4b, 0x4b, 0x4b, 0x4b, 0x4b, 0x4b, 0x4b, 0x4b, 0x4b, 0x4b, 0x4b, 0x4b, 0x4b, 0x4b, 0x4b, 0x27, 0x43, 0xfb, 0xfa, 0xf8, 0xfa, 0xf8, 0xf9, 0xf8, 0xf7, 0xf7, 0xf6, 0xf6, 0xf3, 0xf6, 0xf3, 0xf3, 0xf4, 0x27, 0x1d, 0x1a, 0x12, 0x0f, 0x0f, 0x0f, 0x0f, 0x0f, 0x12, 0x0f, 0x13, 0x0f, 0xe7, 0x6a, 0xc6, 0x68, 0x1a, 0x21, 0x20, 0x20, 0x1e, 0x1d, 0x12, 0x17, 0x06, 0x55, 0xd2, 0x5a, 0x60, 0x63, 0x63, 0x60, 0x63, 0x60, 0x63, 0x63, 0x63, 0x63, 0x63, 0x63, 0x63, 0x5e, 0x4a, 0x17, 0x26, 0x23, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x1f, 0x1f, 0x19, 0x16, 0x1c, 0x23, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x2e, 0x26, 0x2e, 0x26, 0x2e, 0x26, 0x28, 0x24, 0x24, 0x22, 0x21, 0x1f, 0x1f, 0x23,
0xd1, 0xbf, 0xbd, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbd, 0xb7, 0xb7, 0xb7, 0xbb, 0xb7, 0x9a, 0x9a, 0x9d, 0x9d, 0x9a, 0x9a, 0x9d, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x9d, 0x91, 0x4f, 0x91, 0xb4, 0xbe, 0xb7, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xba, 0xba, 0xba, 0xbb, 0xba, 0xba, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xba, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbd, 0xbb, 0xbb, 0xba, 0xbb, 0xbb, 0xbd, 0xbd, 0xce, 0xcd, 0xce, 0xb8, 0xbe, 0xbf, 0xbf, 0xb4, 0xa5, 0x94, 0x80, 0xc8, 0xc6, 0xc3, 0x5a, 0xd2, 0xd2, 0xd3, 0xd4, 0xc3, 0xc3, 0xc3, 0xc3, 0xc6, 0xeb, 0xc6, 0xc7, 0xc7, 0xc7, 0xc6, 0xc7, 0x68, 0xc7, 0x6e, 0xc7, 0x6e, 0x72, 0x6e, 0x72, 0x6e, 0x6e, 0x6a, 0x6c, 0x6c, 0x6a, 0x6c, 0x6a, 0x6a, 0x6a, 0x70, 0x6a, 0x6e, 0x6a, 0x6e, 0x6a, 0x6e, 0x5a, 0x57, 0x57, 0x5a, 0x57, 0x5a, 0x57, 0x57, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xd3, 0xd4, 0xe0, 0xd4, 0xe0, 0xd4, 0xdf, 0x06, 0x04, 0x08, 0x08, 0x0f, 0x0f, 0x14, 0x13, 0x18, 0x16, 0x19, 0x16, 0x19, 0x16, 0x19, 0x16, 0x16, 0x16, 0x16, 0x16, 0x19, 0x16, 0xe9, 0xeb, 0xeb, 0xeb, 0xed, 0xd6, 0xd6, 0xd6, 0xd6, 0xc8, 0xd6, 0xc7, 0xd6, 0xd8, 0xd7, 0x84, 0x80, 0x88, 0x8a, 0x8a, 0x8d, 0x8f, 0x91, 0x8b, 0x8b, 0x8b, 0x8b, 0x86, 0x86, 0x86, 0x8d, 0x81, 0x7a, 0x81, 0x7a, 0x81, 0x7a, 0x7a, 0x7a, 0x7e, 0x7a, 0x7a, 0x7f, 0x81, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x85, 0x74, 0x62, 0x61, 0x62, 0x65, 0x62, 0x62, 0x62, 0x65, 0x65, 0x6a, 0x68, 0x6a, 0x6a, 0x68, 0x6a, 0x6a, 0x68, 0x6a, 0x68, 0x6a, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x72, 0x6e, 0xe5, 0x09, 0x07, 0x09, 0x07, 0x09, 0x07, 0x07, 0xe5, 0x07, 0xe5, 0xe5, 0x03, 0x07, 0x03, 0xe5, 0x03, 0xe5, 0xe5, 0xe3, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0xc3, 0xc3, 0x5f, 0xc4, 0x5f, 0xc3, 0xeb, 0xc8, 0x77, 0x81, 0x51, 0x96, 0x91, 0x50, 0x50, 0x50, 0x50, 0x50, 0x8b, 0x8b, 0x8b, 0x8b, 0x86, 0x86, 0x87, 0x86, 0x87, 0x8c, 0x87, 0x87, 0x87, 0x87, 0x86, 0x89, 0xf0, 0x19, 0x1c, 0x19, 0x1c, 0x1c, 0x1c, 0x1c, 0x1f, 0x15, 0xe8, 0x10, 0xe8, 0x11, 0x0f, 0x13, 0x0f, 0x14, 0x0f, 0x0f, 0x0f, 0x0f, 0x0f, 0x0f, 0x08, 0x08, 0x08, 0x0a, 0x07, 0x73, 0x4c, 0x4c, 0x4b, 0x4b, 0x4b, 0x4b, 0x4b, 0x4b, 0x4b, 0x4b, 0x4b, 0x4b, 0x4b, 0x4b, 0x73, 0x4b, 0x4c, 0x1d, 0x34, 0xdb, 0xf6, 0xf8, 0xf6, 0xf8, 0xf7, 0xf9, 0xf8, 0xf9, 0xf8, 0xfa, 0xf8, 0xfa, 0xfa, 0xfa, 0xfb, 0x3e, 0x32, 0x2c, 0x2c, 0x29, 0x22, 0x1a, 0x17, 0x12, 0x0f, 0x0f, 0x0b, 0x0d, 0x0d, 0x10, 0x68, 0x68, 0x1b, 0x23, 0x20, 0x20, 0x20, 0x1d, 0x1a, 0x12, 0x0e, 0x5a, 0x57, 0x57, 0xd2, 0x5d, 0x63, 0x63, 0x60, 0x63, 0x60, 0x63, 0x60, 0x63, 0x60, 0x63, 0x63, 0x63, 0x4a, 0x10, 0x26, 0x1f, 0x23, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x23, 0x1f, 0x1f, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x2e, 0x2e, 0x26, 0x2e, 0x26, 0x28, 0x24, 0x24, 0x2b, 0x24, 0x21, 0x1f, 0x1f,
0xc1, 0xbf, 0xbd, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbd, 0xbe, 0xbd, 0xb7, 0xb6, 0xb7, 0xb6, 0xbd, 0xb5, 0x9a, 0x9a, 0x9d, 0x9d, 0x9d, 0x9a, 0x9d, 0x9a, 0x9d, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x50, 0x50, 0x89, 0x50, 0xb7, 0xbe, 0xb9, 0xb7, 0xb9, 0xb9, 0xb9, 0xb9, 0xba, 0xba, 0xba, 0xbb, 0xba, 0xba, 0xba, 0xbb, 0xbb, 0xba, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xba, 0xbb, 0xbb, 0xba, 0xba, 0xbb, 0xbb, 0xba, 0xba, 0xba, 0xbb, 0xbb, 0xba, 0xbd, 0xb8, 0xcd, 0xcd, 0xb0, 0xb0, 0xb0, 0xb0, 0xce, 0xb8, 0xcf, 0xbf, 0xbc, 0xb4, 0xac, 0xcc, 0x88, 0xc8, 0xc5, 0xc3, 0xd3, 0xd2, 0xd2, 0xd2, 0xd4, 0xeb, 0xc7, 0xc6, 0xc7, 0xc6, 0x68, 0xc6, 0xc7, 0x68, 0xc7, 0x6e, 0x6e, 0xc7, 0x6e, 0xc7, 0x72, 0x6e, 0x68, 0x6a, 0x66, 0x6c, 0x6a, 0x70, 0x6a, 0x6a, 0x6e, 0x6a, 0x6a, 0x6a, 0x6e, 0x74, 0x64, 0x55, 0x57, 0x5a, 0x57, 0x5a, 0x57, 0x5a, 0x57, 0xd3, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xd3, 0xe2, 0x11, 0x0c, 0x04, 0x05, 0x05, 0x05, 0x04, 0x05, 0x08, 0x08, 0x0b, 0x0d, 0x13, 0x13, 0x16, 0x16, 0x19, 0x19, 0x19, 0x19, 0x16, 0x19, 0x16, 0xe9, 0xc7, 0xeb, 0xeb, 0xd6, 0xeb, 0xc8, 0xd6, 0xc8, 0xc8, 0xc8, 0xc7, 0xd7, 0xd8, 0x84, 0x88, 0x82, 0x8a, 0x8a, 0x8c, 0x8f, 0x91, 0x8b, 0x8b, 0x8b, 0x86, 0x8b, 0x86, 0x86, 0x86, 0x87, 0x81, 0x7a, 0x81, 0x7a, 0x81, 0x7a, 0x81, 0x7a, 0x81, 0x7a, 0x7f, 0x7b, 0x7f, 0x7b, 0x7f, 0x7b, 0x7b, 0x79, 0x81, 0x79, 0x62, 0x61, 0x62, 0x62, 0x65, 0x62, 0x62, 0x62, 0x6a, 0x6a, 0x6a, 0x6a, 0x6a, 0x6a, 0x68, 0x6a, 0x68, 0x6a, 0x68, 0x68, 0x68, 0x6e, 0x6e, 0x72, 0x72, 0x72, 0x6e, 0x6e, 0x72, 0xe5, 0x06, 0xe5, 0x09, 0xe5, 0x07, 0xe5, 0x09, 0x07, 0x07, 0x07, 0xe5, 0xe5, 0xe5, 0x07, 0x03, 0xe5, 0x03, 0xe5, 0xe4, 0x5f, 0x5b, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0xc4, 0xc3, 0xc3, 0x5b, 0xd5, 0xeb, 0xc8, 0x77, 0x81, 0x50, 0x91, 0x91, 0x50, 0x50, 0x50, 0x50, 0x50, 0x8b, 0x8b, 0x86, 0x8b, 0x86, 0x86, 0x86, 0x87, 0x8c, 0x87, 0x87, 0x87, 0x87, 0x87, 0x8b, 0x89, 0xef, 0x1c, 0x19, 0x1c, 0x19, 0x1c, 0x19, 0x1f, 0x12, 0xe8, 0x0c, 0x10, 0x09, 0x0c, 0x0f, 0x0d, 0x0f, 0x0f, 0x0f, 0x0f, 0x0f, 0x0b, 0x0f, 0x08, 0x0b, 0x08, 0x0a, 0x01, 0x06, 0x71, 0x4c, 0x4c, 0x4b, 0x4b, 0x4b, 0x4b, 0x4b, 0x4b, 0x4b, 0x4b, 0x4b, 0x4b, 0x4b, 0x4b, 0x4c, 0x4b, 0x1d, 0x2e, 0xf7, 0xf8, 0xf6, 0xf6, 0xf7, 0xf6, 0xf7, 0xf7, 0xf7, 0xf7, 0xf6, 0xf7, 0xf9, 0xf7, 0xf7, 0xf8, 0x3c, 0x35, 0x2b, 0x2c, 0x32, 0x2c, 0x35, 0x2c, 0x2d, 0x29, 0x22, 0x1a, 0x17, 0x14, 0x0d, 0x0a, 0xc5, 0xec, 0x21, 0x20, 0x20, 0x1d, 0x1d, 0x1d, 0x12, 0x14, 0xe1, 0x55, 0x5a, 0x57, 0x57, 0x57, 0x63, 0x63, 0x60, 0x63, 0x63, 0x63, 0x63, 0x63, 0x63, 0x63, 0x5e, 0x4a, 0xe7, 0x2e, 0x1f, 0x1f, 0x23, 0x23, 0x26, 0x23, 0x26, 0x23, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x2e, 0x23, 0x1f, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x2e, 0x26, 0x2e, 0x26, 0x2e, 0x20, 0x2b, 0x24, 0x24, 0x24, 0x24, 0x21, 0x23,
0xc1, 0xc1, 0xbf, 0xbd, 0xbe, 0xbd, 0xbf, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbd, 0xbe, 0xbb, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xbd, 0xb3, 0x95, 0x9a, 0x9d, 0x9a, 0x9d, 0x9a, 0x9d, 0x9a, 0x9d, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x50, 0x50, 0x50, 0x89, 0x96, 0xb6, 0xbd, 0xb7, 0xb9, 0xb7, 0xb9, 0xb9, 0xba, 0xb9, 0xba, 0xba, 0xba, 0xba, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xba, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xba, 0xba, 0xba, 0xba, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xcd, 0xcd, 0xcd, 0xb0, 0xb4, 0xb0, 0xb0, 0xb4, 0xb0, 0xb0, 0xb2, 0xce, 0xb8, 0xbc, 0xbf, 0xbc, 0xb0, 0xa5, 0x94, 0x84, 0xc8, 0xc6, 0xc3, 0xd4, 0xe6, 0xc6, 0xc6, 0xc6, 0xc7, 0x68, 0xc7, 0x68, 0x6e, 0xc7, 0x6e, 0x6e, 0xc7, 0x6e, 0x72, 0x6e, 0x72, 0x6e, 0x68, 0x6a, 0x6c, 0x6a, 0x6a, 0x70, 0x6a, 0x6e, 0x6a, 0x6e, 0x6a, 0x6e, 0x5f, 0x55, 0x5a, 0x57, 0x5a, 0x57, 0x5a, 0x57, 0x5a, 0x57, 0x5a, 0xe0, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xe0, 0xd4, 0xd3, 0x03, 0x11, 0x0c, 0x0a, 0x04, 0x08, 0x04, 0x08, 0x04, 0x0a, 0x04, 0x05, 0x04, 0x05, 0x08, 0x08, 0x0b, 0x0f, 0x0d, 0x0d, 0x13, 0x16, 0x16, 0x19, 0x19, 0xec, 0xc7, 0xed, 0xc7, 0xd6, 0xc7, 0xd6, 0xc8, 0xc8, 0xc8, 0xc8, 0xc8, 0x80, 0x84, 0x82, 0x88, 0x85, 0x8c, 0x8d, 0x51, 0x91, 0x8b, 0x8b, 0x8b, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x87, 0x81, 0x7a, 0x81, 0x7a, 0x7a, 0x7a, 0x81, 0x7a, 0x7f, 0x7a, 0x7f, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x79, 0x7f, 0x7b, 0x65, 0x5f, 0x65, 0x62, 0x65, 0x62, 0x65, 0x6a, 0x6e, 0x68, 0x6e, 0x68, 0x6a, 0x68, 0x6a, 0x68, 0x6a, 0x68, 0x6a, 0x68, 0x6a, 0x68, 0x6e, 0x6e, 0x6e, 0x72, 0x72, 0x6e, 0xe5, 0x09, 0x09, 0x07, 0x07, 0x09, 0x07, 0xe5, 0x07, 0xe5, 0x07, 0xe5, 0x07, 0xe5, 0x03, 0xe5, 0x03, 0xe5, 0xe5, 0xe4, 0x5f, 0x5b, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0xc3, 0x5f, 0xc3, 0xc3, 0xea, 0xeb, 0xc8, 0x77, 0x7f, 0x50, 0x96, 0x91, 0x50, 0x50, 0x50, 0x50, 0x50, 0x8b, 0x8b, 0x8b, 0x86, 0x86, 0x86, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x86, 0x86, 0x8b, 0x89, 0x1b, 0x1c, 0x19, 0x1c, 0x19, 0x1c, 0x1c, 0x18, 0x09, 0x10, 0x09, 0x0c, 0x09, 0x0c, 0x0f, 0x0f, 0x0b, 0x0f, 0x0b, 0x0f, 0x08, 0x0f, 0x08, 0x0b, 0x0b, 0x08, 0x06, 0x05, 0x01, 0x70, 0x4c, 0x4c, 0x4b, 0x4b, 0x4b, 0x4b, 0x4b, 0x4b, 0x4b, 0x4b, 0x4b, 0x4b, 0x4b, 0x4c, 0x4b, 0x20, 0x26, 0x32, 0xdb, 0xf6, 0xf7, 0xf6, 0xf7, 0xf6, 0xf9, 0xf6, 0xf7, 0xf9, 0xf7, 0xf6, 0xf8, 0xf9, 0xf6, 0x3c, 0x37, 0x2b, 0x2c, 0x2c, 0x2c, 0x29, 0x2c, 0x2d, 0x35, 0x37, 0x37, 0x31, 0x2d, 0x2d, 0x20, 0x1b, 0x1b, 0x21, 0x20, 0x20, 0x20, 0x1d, 0x1d, 0x17, 0x14, 0x03, 0x59, 0x57, 0x5a, 0x57, 0xd3, 0x57, 0x60, 0x63, 0x63, 0x60, 0x63, 0x60, 0x63, 0x63, 0x63, 0x63, 0x4a, 0xc6, 0x23, 0x23, 0x23, 0x1f, 0x23, 0x26, 0x26, 0x26, 0x26, 0x26, 0x23, 0x26, 0x26, 0x26, 0x23, 0x2e, 0x2e, 0x1f, 0x23, 0x26, 0x26, 0x26, 0x26, 0x23, 0x26, 0x2e, 0x26, 0x2e, 0x26, 0x28, 0x24, 0x24, 0x28, 0x24, 0x24, 0x24, 0x1f,
0xc1, 0xd0, 0xc1, 0xbd, 0xbd, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbd, 0xb6, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xbd, 0xb1, 0x96, 0x9a, 0x9d, 0x9a, 0x9d, 0x9d, 0x9a, 0x9a, 0x9a, 0x9a, 0x9d, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x50, 0x89, 0x50, 0x91, 0x89, 0x51, 0xb7, 0xbe, 0xb7, 0xb7, 0xba, 0xb7, 0xb9, 0xbb, 0xb9, 0xba, 0xb9, 0xba, 0xbb, 0xbb, 0xbb, 0xba, 0xba, 0xba, 0xba, 0xba, 0xba, 0xba, 0xba, 0xba, 0xba, 0xbb, 0xba, 0xba, 0xba, 0xbb, 0xbb, 0xba, 0xba, 0xbb, 0xb9, 0xbe, 0xb0, 0xcd, 0xcd, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb4, 0xbc, 0xbd, 0xcf, 0xbd, 0xce, 0xac, 0xcc, 0x80, 0xd6, 0xc6, 0x65, 0xc5, 0x64, 0xc6, 0x68, 0xc7, 0x68, 0x6e, 0xc7, 0x6e, 0xc7, 0x6e, 0x72, 0x6e, 0x6e, 0x68, 0x68, 0x6a, 0x6a, 0x70, 0x6a, 0x6e, 0x6a, 0x6e, 0x6a, 0x72, 0x66, 0x57, 0x57, 0x57, 0x5a, 0x57, 0x5a, 0x57, 0x5a, 0x57, 0x5a, 0x57, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0x09, 0x0c, 0x0c, 0x0c, 0x0a, 0x08, 0x08, 0x05, 0x08, 0x08, 0x08, 0x08, 0x08, 0x04, 0x08, 0x04, 0x04, 0x04, 0x04, 0x04, 0x08, 0x08, 0x0b, 0x0b, 0x13, 0x0d, 0xed, 0xc7, 0xd6, 0xeb, 0xd6, 0xc8, 0xc8, 0xc8, 0xc8, 0x77, 0x72, 0xc8, 0x84, 0x8a, 0x82, 0x8a, 0x8c, 0x8d, 0x51, 0x91, 0x8b, 0x8b, 0x86, 0x8b, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x87, 0x81, 0x7a, 0x81, 0x7a, 0x81, 0x7a, 0x81, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x79, 0x7b, 0x7f, 0x7f, 0x6a, 0x5f, 0x64, 0x62, 0x65, 0x62, 0x68, 0x6a, 0x6a, 0x6a, 0x6a, 0x6e, 0x68, 0x6e, 0x68, 0x6a, 0x68, 0x6a, 0x68, 0x6a, 0x68, 0x6a, 0x68, 0x6e, 0x6e, 0x72, 0x72, 0xe5, 0x09, 0xe5, 0x09, 0x07, 0xe5, 0x09, 0x07, 0x07, 0x07, 0x07, 0xe5, 0x07, 0xe5, 0xe5, 0x03, 0x07, 0x03, 0xe4, 0xe5, 0xc3, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0xc3, 0xc3, 0x5f, 0xe6, 0xec, 0xeb, 0xd6, 0x77, 0x7f, 0x8b, 0x91, 0x91, 0x91, 0x50, 0x50, 0x50, 0x50, 0x8b, 0x8b, 0x8b, 0x8b, 0x83, 0x87, 0x87, 0x87, 0x86, 0x87, 0x86, 0x86, 0x86, 0x86, 0x8b, 0x89, 0x1a, 0x1c, 0x19, 0x19, 0x19, 0x1c, 0x19, 0x09, 0x09, 0x0c, 0x09, 0x0c, 0x09, 0x0c, 0x08, 0x0f, 0x08, 0x0f, 0x08, 0x0f, 0x0b, 0x0f, 0x08, 0x0b, 0x0b, 0x05, 0x06, 0x05, 0x01, 0x68, 0x4c, 0x4c, 0x4b, 0x4b, 0x4b, 0x4b, 0x4b, 0x4b, 0x4b, 0x4b, 0x4b, 0x4b, 0x4c, 0x4b, 0x20, 0x26, 0x2a, 0xf5, 0xf8, 0xf6, 0xf6, 0xf6, 0xf6, 0xf6, 0xf6, 0xf6, 0xf6, 0xf6, 0xf7, 0xf6, 0xf7, 0xf9, 0x35, 0x3c, 0x2c, 0x24, 0x2b, 0x2c, 0x2c, 0x2d, 0x2c, 0x2d, 0x2d, 0x2d, 0x31, 0x37, 0xf5, 0xf9, 0xf9, 0x31, 0x21, 0x1e, 0x20, 0x1d, 0x1d, 0x1e, 0x17, 0x18, 0x05, 0x59, 0x57, 0x5a, 0x57, 0x5a, 0x57, 0xd3, 0x5b, 0x63, 0x63, 0x63, 0x63, 0x63, 0x63, 0x63, 0x63, 0x4a, 0x66, 0x1f, 0x23, 0x23, 0x1f, 0x1f, 0x26, 0x26, 0x26, 0x23, 0x26, 0x26, 0x26, 0x26, 0x26, 0x23, 0x2e, 0x2e, 0x26, 0x1f, 0x23, 0x26, 0x26, 0x26, 0x26, 0x26, 0x2e, 0x2e, 0x26, 0x26, 0x21, 0x2c, 0x24, 0x24, 0x28, 0x24, 0x2b, 0x24,
0xc0, 0xc1, 0xc1, 0xbf, 0xbd, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbd, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xbd, 0xaf, 0x96, 0x9a, 0x9d, 0x9d, 0x9a, 0x9d, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x9d, 0x9a, 0x50, 0x50, 0x50, 0x50, 0x50, 0x50, 0x96, 0xb7, 0xbd, 0xb9, 0xb7, 0xb7, 0xba, 0xb9, 0xb9, 0xb9, 0xba, 0xba, 0xbb, 0xbb, 0xbb, 0xba, 0xba, 0xba, 0xba, 0xba, 0xbb, 0xbb, 0xba, 0xba, 0xba, 0xbb, 0xbb, 0xba, 0xba, 0xba, 0xba, 0xba, 0xba, 0xbb, 0xbb, 0xbd, 0xb4, 0xcd, 0xcd, 0xcd, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb4, 0xce, 0xbd, 0xbe, 0xfb, 0xf7, 0xf4, 0xd8, 0xc9, 0xc7, 0x64, 0x64, 0x65, 0x68, 0x68, 0xc7, 0x68, 0x72, 0x68, 0xc7, 0x6e, 0xc7, 0x68, 0x68, 0x6a, 0x70, 0x6a, 0x70, 0x6a, 0x6a, 0x6a, 0x72, 0x61, 0x55, 0x5a, 0x57, 0x5a, 0x57, 0x5a, 0x5a, 0x5a, 0x5a, 0x57, 0x5a, 0x57, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xe0, 0xd4, 0xe0, 0xd3, 0xe2, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x04, 0x08, 0x04, 0x08, 0x04, 0x08, 0x04, 0x08, 0x04, 0x08, 0x08, 0x08, 0x08, 0x08, 0x08, 0x04, 0x08, 0x04, 0x08, 0x04, 0x04, 0x11, 0xd6, 0xeb, 0xd6, 0xc7, 0xd6, 0xc8, 0xc8, 0xc8, 0x77, 0xc8, 0x74, 0x7d, 0x88, 0x8a, 0x85, 0x8c, 0x8d, 0x91, 0x50, 0x8b, 0x8b, 0x86, 0x83, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x87, 0x86, 0x81, 0x7a, 0x7e, 0x7a, 0x81, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x79, 0x7b, 0x79, 0x7b, 0x7f, 0x7f, 0x70, 0x61, 0x61, 0x62, 0x65, 0x6a, 0x68, 0x6e, 0x68, 0x6a, 0x68, 0x6a, 0x68, 0x6a, 0x68, 0x6e, 0x68, 0x6a, 0x68, 0x68, 0x68, 0x65, 0x68, 0x68, 0x6a, 0x6e, 0x06, 0x06, 0xe5, 0xe5, 0xe5, 0x07, 0xe5, 0x09, 0xe5, 0x07, 0x07, 0x07, 0xe5, 0x07, 0xe5, 0xe5, 0x07, 0xe5, 0x07, 0xe4, 0xc4, 0x5b, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0xc3, 0xd4, 0xc4, 0xed, 0xe9, 0xed, 0xd6, 0xc9, 0x7f, 0x8b, 0x96, 0x91, 0x91, 0x50, 0x50, 0x50, 0x50, 0x8b, 0x8b, 0x83, 0x86, 0x87, 0x87, 0x87, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x89, 0x8b, 0x1a, 0x1c, 0x19, 0x19, 0x1c, 0x19, 0x0c, 0x09, 0x09, 0x09, 0x0c, 0x09, 0x09, 0x09, 0x08, 0x0d, 0x0b, 0x0f, 0x0b, 0x08, 0x0b, 0x0b, 0x0b, 0x0b, 0x05, 0x06, 0x05, 0x05, 0x04, 0xe6, 0x4c, 0x4c, 0x4b, 0x4b, 0x4b, 0x4b, 0x4b, 0x4b, 0x4b, 0x4b, 0x4d, 0x4b, 0x4b, 0x20, 0x26, 0x26, 0x2b, 0xf8, 0xf6, 0xf6, 0xf6, 0xf6, 0xf6, 0xf6, 0xf6, 0xf6, 0xf9, 0xf6, 0xf9, 0xf7, 0x37, 0x37, 0x3c, 0x35, 0x24, 0x2c, 0x29, 0x2c, 0x2c, 0x2d, 0x2c, 0x2d, 0x2d, 0x2d, 0x31, 0x31, 0x31, 0xf5, 0xf5, 0x2c, 0x21, 0x20, 0x1e, 0x1d, 0x1d, 0x1d, 0x16, 0x0e, 0xd3, 0x59, 0x5a, 0x5a, 0x5a, 0x5a, 0x5a, 0xd3, 0x5a, 0x60, 0x63, 0x63, 0x63, 0x63, 0x63, 0x63, 0x63, 0x63, 0x1e, 0x26, 0x23, 0x1f, 0x1f, 0x1f, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x2e, 0x2e, 0x2e, 0x26, 0x1f, 0x26, 0x26, 0x26, 0x26, 0x23, 0x26, 0x2e, 0x26, 0x2e, 0x20, 0x29, 0x24, 0x2b, 0x24, 0x24, 0x20, 0x24,
0xc1, 0xc0, 0xbf, 0xc1, 0xbf, 0xbd, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbf, 0xbb, 0xb7, 0xb7, 0xb9, 0xb6, 0xb9, 0xb6, 0xb9, 0xb7, 0xbd, 0xa7, 0x96, 0x9a, 0x9d, 0x9d, 0x9d, 0x9a, 0x9d, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x9d, 0x96, 0x50, 0x89, 0x50, 0x50, 0x50, 0x91, 0x89, 0x95, 0xb9, 0xbb, 0xb7, 0xb7, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xba, 0xba, 0xb9, 0xba, 0xb9, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xba, 0xba, 0xba, 0xba, 0xba, 0xba, 0xba, 0xba, 0xba, 0xbb, 0xba, 0xbd, 0xb4, 0xcd, 0xcd, 0xcd, 0xcd, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xcd, 0xb6, 0xb0, 0xfb, 0xfa, 0xfb, 0xfa, 0xf8, 0xd9, 0xd7, 0xd6, 0x68, 0x68, 0x65, 0x68, 0x68, 0xc7, 0x6e, 0x6e, 0x68, 0x6e, 0xc6, 0x68, 0x6a, 0x70, 0x6a, 0x6e, 0x6a, 0x70, 0x6a, 0x57, 0x57, 0x57, 0x5a, 0x57, 0x5a, 0x57, 0x5a, 0x57, 0x5a, 0x5a, 0x5a, 0x57, 0x5a, 0xd4, 0xd4, 0xe0, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0x5a, 0x03, 0x11, 0x09, 0x0c, 0x0c, 0x0c, 0x0c, 0x08, 0x04, 0x0a, 0x08, 0x08, 0x08, 0x08, 0x08, 0x04, 0x08, 0x04, 0x08, 0x04, 0x08, 0x08, 0x08, 0x08, 0x04, 0x0b, 0x08, 0xec, 0xea, 0xc8, 0xeb, 0xd6, 0xc7, 0xc7, 0xc8, 0x77, 0xc8, 0x77, 0x77, 0x74, 0x7f, 0x8c, 0x8c, 0x87, 0x8f, 0x51, 0x50, 0x8b, 0x83, 0x8b, 0x86, 0x86, 0x86, 0x81, 0x86, 0x86, 0x86, 0x81, 0x8d, 0x81, 0x81, 0x7a, 0x81, 0x7a, 0x81, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x79, 0x7b, 0x79, 0x7b, 0x7f, 0x7f, 0x74, 0x61, 0x61, 0x65, 0x6a, 0x6e, 0x68, 0x6e, 0x68, 0x6a, 0x6e, 0x68, 0x6a, 0x68, 0x68, 0x68, 0x6a, 0x68, 0x6a, 0x6e, 0x72, 0x74, 0x74, 0x74, 0x85, 0xd7, 0x0b, 0x0a, 0x0a, 0x09, 0x09, 0x07, 0xe5, 0x07, 0xe5, 0xe5, 0xe5, 0x07, 0x07, 0xe5, 0x07, 0xe4, 0x07, 0xe4, 0x09, 0xc4, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5b, 0x5f, 0x5f, 0x5b, 0x5f, 0x5f, 0xc3, 0xe7, 0xec, 0xe9, 0xed, 0xc7, 0xc9, 0x7c, 0x8b, 0x91, 0x96, 0x91, 0x50, 0x50, 0x50, 0x50, 0x50, 0x8b, 0x8b, 0x87, 0x87, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x87, 0x89, 0x87, 0x18, 0x1c, 0x1c, 0x19, 0x1c, 0x11, 0x07, 0x09, 0x09, 0x09, 0x09, 0x0c, 0x09, 0x09, 0x08, 0x0f, 0x0b, 0x0f, 0x0b, 0x0f, 0x0b, 0x0b, 0x0b, 0x0a, 0x05, 0x05, 0x05, 0x05, 0x04, 0xe5, 0x4b, 0x4c, 0x4b, 0x4b, 0x4b, 0x4b, 0x4b, 0x4b, 0x4b, 0x4b, 0x4c, 0x73, 0x21, 0x26, 0x23, 0x26, 0x31, 0xf7, 0xf6, 0xf6, 0xf6, 0xf6, 0xf6, 0xf6, 0xf6, 0xf6, 0xf6, 0xf6, 0xf6, 0x37, 0x39, 0x37, 0x37, 0x2b, 0x2b, 0x2b, 0x2c, 0x29, 0x2c, 0x2d, 0x2d, 0x2d, 0x31, 0x2d, 0x31, 0x31, 0x31, 0xf5, 0x27, 0x28, 0x21, 0x20, 0x1d, 0x1d, 0x18, 0x18, 0x14, 0xe0, 0x59, 0x5a, 0x5a, 0x5a, 0x5a, 0x5a, 0x5a, 0x57, 0xd3, 0x5d, 0x63, 0x63, 0x63, 0x63, 0x63, 0x63, 0x4a, 0x1a, 0x26, 0x23, 0x23, 0x23, 0x1f, 0x1f, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x2e, 0x2e, 0x2e, 0x2e, 0x23, 0x23, 0x26, 0x26, 0x26, 0x23, 0x26, 0x26, 0x26, 0x26, 0x28, 0x24, 0x2b, 0x24, 0x24, 0x2b, 0x24, 0x28,
0xc0, 0xc1, 0xc0, 0xc0, 0xc1, 0xbd, 0xbe, 0xbd, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbd, 0xb6, 0xb7, 0xb7, 0xb9, 0xb7, 0xb7, 0xb7, 0xb6, 0xb9, 0xbd, 0xa6, 0x96, 0x9a, 0x9d, 0x9a, 0x9d, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x9d, 0x96, 0x50, 0x50, 0x50, 0x50, 0x91, 0x50, 0x91, 0x89, 0x9a, 0xb7, 0xbb, 0xb7, 0xb7, 0xb9, 0xb7, 0xb9, 0xb9, 0xb9, 0xb9, 0xba, 0xb9, 0xba, 0xb9, 0xba, 0xba, 0xba, 0xba, 0xba, 0xbb, 0xba, 0xbb, 0xba, 0xba, 0xba, 0xba, 0xba, 0xba, 0xba, 0xba, 0xba, 0xba, 0xbb, 0xb8, 0xcd, 0xcd, 0xcd, 0xcd, 0xcd, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb6, 0xb0, 0xf8, 0xf8, 0xf8, 0xfb, 0xfb, 0xfb, 0xfb, 0xf7, 0xd9, 0xd8, 0xc8, 0x68, 0x65, 0x65, 0x68, 0x68, 0xc7, 0x68, 0x68, 0x68, 0x6a, 0x70, 0x6a, 0x6e, 0x74, 0x61, 0x55, 0x5a, 0x5a, 0x57, 0x5a, 0x57, 0x5a, 0x57, 0x5a, 0x57, 0x5a, 0x57, 0x5a, 0x57, 0x5a, 0xe0, 0xd4, 0xd4, 0xe0, 0xd4, 0xe0, 0xd4, 0xd4, 0xd3, 0x07, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0a, 0x04, 0x04, 0x08, 0x04, 0x08, 0x04, 0x08, 0x08, 0x08, 0x08, 0x08, 0x08, 0x04, 0x0b, 0x04, 0x0b, 0x08, 0x04, 0x0e, 0xed, 0xec, 0xeb, 0xd6, 0xc7, 0xc8, 0xc8, 0xc8, 0x72, 0x77, 0x72, 0x77, 0x75, 0x77, 0x7f, 0x8c, 0x8d, 0x8b, 0x91, 0x50, 0x8b, 0x8b, 0x86, 0x83, 0x86, 0x86, 0x86, 0x86, 0x87, 0x86, 0x87, 0x86, 0x87, 0x87, 0x7a, 0x7a, 0x81, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x79, 0x7b, 0x79, 0x7b, 0x79, 0x7f, 0x79, 0x62, 0x61, 0x6e, 0x68, 0x6a, 0x68, 0x68, 0x68, 0x6a, 0x6e, 0x6e, 0x6e, 0x74, 0x72, 0x77, 0x77, 0x77, 0x7c, 0x7c, 0x7c, 0x7f, 0x77, 0x85, 0xa6, 0x1b, 0x0d, 0x13, 0x0d, 0x0d, 0x08, 0x08, 0x0c, 0x06, 0x07, 0x07, 0xe4, 0xe5, 0xe4, 0xe5, 0xe5, 0xe4, 0x07, 0xe5, 0xd5, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5b, 0x5b, 0xc4, 0xee, 0xec, 0xed, 0xed, 0xed, 0xc9, 0x7d, 0x87, 0x51, 0x91, 0x91, 0x91, 0x91, 0x50, 0x50, 0x89, 0x8b, 0x86, 0x8d, 0x86, 0x86, 0x83, 0x86, 0x8b, 0x86, 0x86, 0x86, 0x86, 0x86, 0x89, 0x87, 0x18, 0x19, 0x19, 0x1c, 0x12, 0x07, 0x09, 0x09, 0x0c, 0x06, 0x09, 0x0c, 0x09, 0x0c, 0x0a, 0x0d, 0x08, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x08, 0x06, 0x05, 0x05, 0x05, 0x05, 0x04, 0x06, 0x73, 0x4c, 0x4b, 0x4b, 0x4b, 0x4b, 0x4b, 0x4d, 0x4b, 0x4c, 0x73, 0x21, 0x26, 0x26, 0x26, 0x2f, 0xf7, 0xf6, 0xf6, 0xf6, 0xf6, 0xf5, 0xf6, 0xf6, 0xf6, 0xf6, 0xf6, 0xf6, 0x35, 0x37, 0x35, 0x3c, 0x2c, 0x24, 0x2c, 0x24, 0x2c, 0x29, 0x2c, 0x2d, 0x2d, 0x2d, 0x31, 0x2d, 0xf5, 0x31, 0xf3, 0xf5, 0x24, 0x21, 0x28, 0x20, 0x1e, 0x17, 0x19, 0x16, 0x03, 0x56, 0xd4, 0x5a, 0x5a, 0x5a, 0x5a, 0x5a, 0x5a, 0x5a, 0xd3, 0x5a, 0x63, 0x67, 0x63, 0x63, 0x63, 0x4a, 0x10, 0x26, 0x23, 0x1f, 0x23, 0x1f, 0x23, 0x1f, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x23, 0x26, 0x26, 0x26, 0x23, 0x23, 0x26, 0x2e, 0x26, 0x28, 0x29, 0x24, 0x2b, 0x24, 0x24, 0x28, 0x24,
0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xbd, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbf, 0xbb, 0xb7, 0xb7, 0xb7, 0xb7, 0xb6, 0xb7, 0xb7, 0xb7, 0xb7, 0xb9, 0xb9, 0xa2, 0x96, 0x9a, 0x9d, 0x9a, 0x9d, 0x9a, 0x9d, 0x9a, 0x9a, 0x9a, 0x9d, 0x96, 0x89, 0x50, 0x50, 0x50, 0x50, 0x91, 0x91, 0x91, 0x89, 0x99, 0xba, 0xbb, 0xb6, 0xb9, 0xb9, 0xb7, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xba, 0xb9, 0xba, 0xba, 0xba, 0xba, 0xba, 0xba, 0xba, 0xbb, 0xbb, 0xba, 0xba, 0xba, 0xba, 0xba, 0xba, 0xba, 0xbb, 0xb9, 0xcd, 0xcd, 0xb0, 0xcd, 0xcd, 0xcd, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb2, 0xb0, 0xb5, 0xcd, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xfa, 0xfb, 0xfb, 0xfb, 0xcb, 0xd9, 0xd7, 0xc8, 0x68, 0x65, 0x65, 0xc6, 0x68, 0xc6, 0x6a, 0x70, 0x6e, 0x6e, 0x5f, 0x55, 0x5a, 0x5a, 0x5a, 0x57, 0x5a, 0x57, 0x5a, 0x5a, 0x5a, 0x5a, 0x5a, 0x57, 0x5a, 0x57, 0x5a, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xe0, 0xd4, 0xe0, 0x0c, 0x0c, 0x0c, 0x0c, 0x09, 0x0c, 0x09, 0x10, 0x0a, 0x08, 0x04, 0x0a, 0x04, 0x08, 0x08, 0x08, 0x08, 0x04, 0x08, 0x04, 0x08, 0x08, 0x08, 0x08, 0x04, 0x0b, 0x10, 0xed, 0x10, 0xed, 0xeb, 0xc8, 0xc7, 0xc8, 0xc8, 0x77, 0xc8, 0x77, 0x74, 0x77, 0x75, 0x7b, 0x85, 0x8d, 0x8f, 0x91, 0x50, 0x8b, 0x83, 0x83, 0x86, 0x86, 0x86, 0x81, 0x86, 0x81, 0x86, 0x81, 0x87, 0x87, 0x87, 0x87, 0x81, 0x7a, 0x81, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x75, 0x79, 0x7b, 0x79, 0x7b, 0x7f, 0x7b, 0x7f, 0x7f, 0x79, 0x66, 0x6e, 0x6e, 0x6e, 0x70, 0x74, 0x74, 0x77, 0x74, 0x79, 0x79, 0x79, 0x7c, 0x79, 0x7c, 0x79, 0x79, 0x7c, 0x7c, 0x7c, 0x77, 0x8a, 0xa4, 0x52, 0x12, 0x0d, 0x0d, 0x0d, 0x13, 0x0d, 0x0d, 0x0d, 0x0f, 0x08, 0x0a, 0x0a, 0x07, 0x07, 0xe4, 0xe4, 0xe4, 0xe5, 0xd5, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5b, 0x5f, 0xd5, 0xeb, 0xec, 0xed, 0xec, 0xed, 0xd6, 0x7d, 0x85, 0x51, 0x96, 0x91, 0x50, 0x50, 0x50, 0x50, 0x8b, 0x8b, 0x86, 0x8b, 0x83, 0x8b, 0x8b, 0x86, 0x8b, 0x86, 0x8b, 0x86, 0x86, 0x87, 0x89, 0x82, 0x19, 0x19, 0x1c, 0x12, 0x07, 0x09, 0x09, 0x09, 0x0c, 0x06, 0x0c, 0x06, 0x09, 0x09, 0x0a, 0x0d, 0x0b, 0x0f, 0x0b, 0x0b, 0x0b, 0x08, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x04, 0x05, 0x71, 0x4c, 0x4b, 0x4b, 0x4d, 0x4b, 0x4b, 0x4b, 0x4c, 0x78, 0x21, 0x26, 0x23, 0x23, 0x26, 0x2d, 0xf7, 0xf5, 0xf5, 0xf5, 0xf6, 0xf6, 0xf5, 0xf6, 0xf6, 0xf6, 0xf9, 0x35, 0x39, 0x37, 0x37, 0x35, 0x24, 0x2b, 0x2b, 0x2c, 0x2c, 0x29, 0x2d, 0x2d, 0x2d, 0x2d, 0x31, 0xf2, 0x31, 0xf2, 0xf4, 0x2d, 0x21, 0x28, 0x21, 0x20, 0x1e, 0x18, 0x19, 0x0a, 0x59, 0x5a, 0x5a, 0x5a, 0x5a, 0x5a, 0x5a, 0x5a, 0x5a, 0x5a, 0x5a, 0xd3, 0x60, 0x63, 0x63, 0x63, 0x4a, 0xc6, 0x26, 0x23, 0x1f, 0x23, 0x23, 0x23, 0x1f, 0x23, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x26, 0x26, 0x26, 0x26, 0x26, 0x23, 0x23, 0x26, 0x26, 0x28, 0x24, 0x2b, 0x24, 0x24, 0x2b, 0x24, 0x28,
0xc0, 0xc0, 0xbf, 0xc0, 0xbf, 0xc1, 0xbf, 0xbd, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbd, 0xb6, 0xb9, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb6, 0xbd, 0xb9, 0xa1, 0x96, 0x9d, 0x9d, 0x9d, 0x9a, 0x9a, 0x9a, 0x9d, 0x9a, 0x9d, 0x91, 0x50, 0x50, 0x50, 0x50, 0x50, 0x91, 0x50, 0x91, 0x91, 0x50, 0x95, 0xbb, 0xbb, 0xb7, 0xb7, 0xb9, 0xb7, 0xb9, 0xb7, 0xb9, 0xb9, 0xb9, 0xb9, 0xba, 0xb9, 0xba, 0xb9, 0xba, 0xb9, 0xba, 0xba, 0xba, 0xba, 0xbb, 0xba, 0xba, 0xba, 0xba, 0xba, 0xba, 0xbb, 0xbb, 0xba, 0xb0, 0xcd, 0xcd, 0xcd, 0xcd, 0xcd, 0xcd, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb2, 0xb4, 0xb4, 0xdb, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xfa, 0xfb, 0xfb, 0xf8, 0xda, 0xd9, 0xd7, 0x6e, 0xc6, 0x64, 0xc5, 0x66, 0x70, 0x65, 0x55, 0x5a, 0x59, 0x5a, 0x57, 0x5a, 0x5a, 0x5a, 0x57, 0x5a, 0x57, 0x5a, 0x57, 0x5a, 0x5a, 0x5a, 0x57, 0xd4, 0xe0, 0xd4, 0xe0, 0xd4, 0xd4, 0xd3, 0xe2, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x09, 0x0c, 0x08, 0x08, 0x08, 0x08, 0x08, 0x08, 0x08, 0x08, 0x08, 0x08, 0x0b, 0x08, 0x04, 0x08, 0x0b, 0x04, 0x08, 0xec, 0xe9, 0xed, 0xe9, 0xed, 0x72, 0xc8, 0xc8, 0xc8, 0x77, 0x77, 0x77, 0x77, 0x75, 0x77, 0x76, 0x7a, 0x8d, 0x91, 0x91, 0x50, 0x83, 0x8b, 0x83, 0x83, 0x81, 0x86, 0x81, 0x86, 0x81, 0x86, 0x86, 0x81, 0x87, 0x87, 0x87, 0x87, 0x7e, 0x7a, 0x7b, 0x7b, 0x7b, 0x76, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x79, 0x7b, 0x77, 0x75, 0x77, 0x74, 0x74, 0x77, 0x6a, 0x6a, 0x7f, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x77, 0x79, 0x77, 0x79, 0x77, 0x79, 0x77, 0x7d, 0x79, 0x79, 0x7c, 0x77, 0x8c, 0x9d, 0xa1, 0x93, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0b, 0x0b, 0x08, 0x08, 0x05, 0x09, 0x07, 0xe4, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x61, 0xc6, 0xed, 0xeb, 0xed, 0xed, 0xed, 0xc9, 0x82, 0x8f, 0x91, 0x96, 0x50, 0x91, 0x50, 0x50, 0x8b, 0x89, 0x89, 0x8b, 0x8b, 0x8b, 0x8b, 0x8b, 0x86, 0x8b, 0x86, 0x8b, 0x87, 0x86, 0x50, 0x80, 0x19, 0x1f, 0x14, 0x07, 0x09, 0x09, 0x0c, 0x09, 0x09, 0x0c, 0x06, 0x0c, 0x06, 0x0c, 0x0a, 0x0d, 0x0b, 0x0b, 0x0b, 0x0d, 0x08, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x04, 0x04, 0x6c, 0x4c, 0x4c, 0x4b, 0x4b, 0x4b, 0x4d, 0x4c, 0x73, 0x23, 0x26, 0x26, 0x26, 0x26, 0x2a, 0xf6, 0xf7, 0xf5, 0xf6, 0xf5, 0xf5, 0xf6, 0xf5, 0xf5, 0xf6, 0x31, 0x39, 0x35, 0x35, 0x37, 0x37, 0x2b, 0x24, 0x2c, 0x24, 0x2c, 0x29, 0x2c, 0x2d, 0x2d, 0xf2, 0x31, 0x31, 0xf2, 0xf3, 0xf3, 0xf3, 0x28, 0x21, 0x20, 0x21, 0x20, 0x1c, 0x19, 0x0f, 0xd4, 0x59, 0x5a, 0x5a, 0x5a, 0x5a, 0x5a, 0x5a, 0x5a, 0x5a, 0x5a, 0x5a, 0xd3, 0x5b, 0x63, 0x69, 0x4a, 0x68, 0x23, 0x23, 0x23, 0x1f, 0x23, 0x1f, 0x23, 0x1f, 0x23, 0x26, 0x26, 0x26, 0x26, 0x26, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x26, 0x26, 0x2e, 0x26, 0x23, 0x23, 0x23, 0x2e, 0x20, 0x2c, 0x24, 0x2b, 0x24, 0x24, 0x2b, 0x24,
0xbf, 0xc0, 0xbf, 0xc0, 0xbf, 0xc0, 0xbf, 0xbe, 0xbd, 0xbe, 0xbe, 0xbe, 0xbf, 0xbd, 0xbf, 0xbb, 0xb7, 0xb7, 0xb9, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xbb, 0xb7, 0x9d, 0x96, 0x9d, 0x9d, 0x9d, 0x9d, 0x9a, 0x9d, 0x9d, 0x9d, 0x91, 0x89, 0x50, 0x50, 0x50, 0x91, 0x50, 0x91, 0x91, 0x91, 0x91, 0x50, 0x99, 0xba, 0xb9, 0xb7, 0xb7, 0xb7, 0xb6, 0xb9, 0xb7, 0xb7, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xba, 0xb9, 0xba, 0xb9, 0xba, 0xba, 0xba, 0xba, 0xba, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xb0, 0xfb, 0xb0, 0xcd, 0xb0, 0xcd, 0xcd, 0xcd, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb4, 0xb2, 0xb4, 0xb6, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xfb, 0xfa, 0xfb, 0xf8, 0xcb, 0xd8, 0xd7, 0xc7, 0x6a, 0x55, 0x53, 0xc2, 0x57, 0x57, 0x5a, 0x57, 0x5a, 0x5a, 0x5a, 0x5a, 0x5a, 0x5a, 0x5a, 0x57, 0x5a, 0x57, 0x5a, 0x57, 0xd4, 0xe0, 0xd4, 0xd4, 0xe0, 0xd3, 0x07, 0x0c, 0x0c, 0x09, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x08, 0x04, 0x08, 0x08, 0x08, 0x08, 0x04, 0x08, 0x0b, 0x08, 0x08, 0x0b, 0x08, 0x04, 0x0b, 0x0c, 0xed, 0xe9, 0xec, 0xe9, 0xed, 0xc7, 0xc7, 0xc8, 0x72, 0xc8, 0x77, 0x79, 0x7b, 0x7b, 0x7b, 0x75, 0x76, 0x7a, 0x51, 0x91, 0x89, 0x89, 0x83, 0x86, 0x83, 0x86, 0x83, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x87, 0x87, 0x86, 0x8d, 0x87, 0x7b, 0x76, 0x75, 0x7b, 0x75, 0x79, 0x75, 0x77, 0x75, 0x77, 0x74, 0x74, 0x70, 0x74, 0x6e, 0x6e, 0x6e, 0x6a, 0x72, 0x65, 0x5b, 0x6e, 0x7f, 0x79, 0x77, 0x77, 0x77, 0x77, 0x77, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x7c, 0x7c, 0x77, 0x92, 0xa1, 0x9d, 0xa1, 0xf1, 0x0b, 0x0d, 0x0d, 0x0d, 0x0b, 0x0d, 0x0d, 0x0b, 0x0d, 0x0b, 0x0d, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x09, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5b, 0x5f, 0x5f, 0x61, 0x5f, 0x5f, 0x64, 0xeb, 0xeb, 0xeb, 0xeb, 0xed, 0xd6, 0x80, 0x8d, 0x96, 0x96, 0x91, 0x50, 0x50, 0x50, 0x89, 0x50, 0x89, 0x50, 0x8b, 0x50, 0x8b, 0x8b, 0x8b, 0x8b, 0x8d, 0x86, 0x86, 0x86, 0x50, 0xd7, 0x19, 0x16, 0x09, 0x09, 0x09, 0x09, 0x0c, 0x06, 0x09, 0x0c, 0x09, 0x0c, 0x0c, 0x09, 0x0a, 0x0d, 0x0b, 0x0b, 0x0b, 0x0b, 0x0a, 0x05, 0x0a, 0x05, 0x0a, 0x05, 0x05, 0x05, 0x04, 0x04, 0x6a, 0x4c, 0x4c, 0x4b, 0x4b, 0x4b, 0x4c, 0x78, 0x23, 0x26, 0x23, 0x26, 0x26, 0x26, 0x2c, 0xf7, 0xf5, 0xf5, 0xf5, 0xf5, 0xf5, 0xf5, 0xf6, 0xf6, 0x35, 0x35, 0x35, 0x35, 0x35, 0x3c, 0x2c, 0x28, 0x2b, 0x2c, 0x2c, 0x29, 0x29, 0x2d, 0x2d, 0x2d, 0xf2, 0x31, 0xf2, 0xf2, 0xf3, 0xd9, 0x2d, 0x21, 0x21, 0x20, 0x21, 0x1e, 0x1c, 0x19, 0xe0, 0x54, 0x55, 0xd2, 0x55, 0x57, 0x57, 0x57, 0x57, 0x5a, 0x5a, 0x5a, 0x5a, 0xd3, 0x5a, 0x60, 0x4a, 0x67, 0x1e, 0x26, 0x1f, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x26, 0x26, 0x26, 0x26, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x26, 0x26, 0x2e, 0x26, 0x23, 0x23, 0x26, 0x28, 0x24, 0x2b, 0x24, 0x24, 0x2b, 0x24, 0x2b,
0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xbf, 0xc1, 0xbf, 0xbd, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbb, 0xb6, 0xb9, 0xb7, 0xb7, 0xb9, 0xb7, 0xb9, 0xb7, 0xb7, 0xb6, 0xb7, 0xb7, 0xbb, 0xb6, 0x9a, 0x96, 0x9d, 0x9a, 0x9d, 0x9a, 0x9d, 0x9d, 0x9d, 0x91, 0x50, 0x50, 0x50, 0x50, 0x50, 0x91, 0x50, 0x50, 0x91, 0x91, 0x91, 0x89, 0x9d, 0xbb, 0xba, 0xb6, 0xb7, 0xb7, 0xb7, 0xb9, 0xb9, 0xb7, 0xb7, 0xba, 0xb9, 0xb9, 0xb9, 0xba, 0xba, 0xb9, 0xba, 0xb9, 0xba, 0xba, 0xba, 0xba, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbd, 0xb4, 0xcd, 0xcd, 0xcd, 0xcd, 0xcd, 0xcd, 0xcd, 0xcd, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb2, 0xb2, 0xb0, 0xb2, 0xb4, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xfa, 0xfb, 0xfb, 0xf8, 0xda, 0x7c, 0x6a, 0x61, 0x5a, 0xc2, 0x53, 0xc2, 0xc2, 0x57, 0x5a, 0x5a, 0x57, 0x5a, 0x57, 0x5a, 0x5a, 0x5a, 0x57, 0x5a, 0xd3, 0xe1, 0xd4, 0xe0, 0x5a, 0xe1, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x10, 0x0a, 0x08, 0x08, 0x08, 0x08, 0x0b, 0x08, 0x08, 0x08, 0x08, 0x0b, 0x08, 0x08, 0x0b, 0x04, 0x10, 0xed, 0xec, 0xea, 0xed, 0xea, 0xed, 0xc8, 0x72, 0xc8, 0x77, 0x77, 0x77, 0x79, 0x7b, 0x7b, 0x7e, 0x81, 0x78, 0x83, 0x96, 0x50, 0x83, 0x83, 0x83, 0x86, 0x83, 0x81, 0x86, 0x81, 0x81, 0x81, 0x81, 0x81, 0x7b, 0x81, 0x7b, 0x75, 0x79, 0x76, 0x77, 0x75, 0x77, 0x75, 0x77, 0x74, 0x77, 0x74, 0x74, 0x74, 0x74, 0x6e, 0x70, 0x72, 0x72, 0x6e, 0x72, 0x72, 0x6a, 0x5b, 0x5f, 0x6a, 0x7f, 0x7c, 0x77, 0x79, 0x79, 0x77, 0x7c, 0x79, 0x7c, 0x77, 0x79, 0x79, 0x79, 0x7c, 0x7c, 0x77, 0x7c, 0x95, 0x9d, 0x9d, 0x9d, 0xa1, 0xef, 0x0b, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0b, 0x0d, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x06, 0x62, 0x60, 0xc3, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x61, 0x5f, 0x61, 0x5b, 0x5f, 0xc6, 0xed, 0xd6, 0xeb, 0xeb, 0xeb, 0xc9, 0x82, 0x51, 0x96, 0x91, 0x50, 0x50, 0x50, 0x50, 0x50, 0x50, 0x91, 0x50, 0x50, 0x91, 0x50, 0x51, 0x50, 0x8b, 0x8b, 0x87, 0x8b, 0x89, 0xf0, 0x19, 0x0a, 0x07, 0x0c, 0x09, 0x09, 0x0c, 0x09, 0x0a, 0x09, 0x0a, 0x09, 0x0a, 0x09, 0x0a, 0x0b, 0x0d, 0x0d, 0x0b, 0x08, 0x05, 0x0a, 0x05, 0x08, 0x05, 0x08, 0x05, 0x04, 0x04, 0x04, 0xe7, 0x4c, 0x4c, 0x4b, 0x4b, 0x4c, 0x76, 0x23, 0x26, 0x23, 0x26, 0x26, 0x26, 0x26, 0x31, 0xf6, 0xf5, 0xf5, 0xf5, 0xf5, 0xf5, 0xf5, 0xf5, 0x35, 0x32, 0x35, 0x35, 0x35, 0x37, 0x35, 0x2b, 0x24, 0x2b, 0x29, 0x2c, 0x29, 0x2d, 0x2d, 0xf2, 0x31, 0xf2, 0xf2, 0xf3, 0xf3, 0xf3, 0xf4, 0x28, 0x21, 0x20, 0x21, 0x1e, 0x1c, 0x1c, 0x11, 0x66, 0xc5, 0x64, 0xc4, 0xc4, 0x5f, 0x5a, 0x5a, 0x5a, 0x57, 0x57, 0x57, 0x55, 0xd2, 0xc2, 0x55, 0x5c, 0x14, 0x26, 0x1f, 0x23, 0x1f, 0x23, 0x1f, 0x23, 0x1f, 0x1f, 0x26, 0x26, 0x26, 0x26, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x26, 0x26, 0x26, 0x2e, 0x23, 0x23, 0x28, 0x2c, 0x24, 0x2c, 0x2b, 0x24, 0x2b, 0x24,
0xbe, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc1, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xba, 0xb7, 0xb7, 0xb9, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xbd, 0xb2, 0x9a, 0x96, 0x9d, 0x9d, 0x9d, 0x9a, 0x9d, 0x9d, 0x50, 0x50, 0x50, 0x91, 0x50, 0x91, 0x50, 0x91, 0x91, 0x50, 0x91, 0x91, 0x91, 0x50, 0xa1, 0xb8, 0xba, 0xb6, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb9, 0xb7, 0xb9, 0xb7, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xba, 0xb9, 0xba, 0xb9, 0xba, 0xbb, 0xbb, 0xbb, 0xba, 0xbb, 0xbb, 0xbb, 0xce, 0xcd, 0xcd, 0xcd, 0xcd, 0xcd, 0xcd, 0xcd, 0xcd, 0xac, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb2, 0xb2, 0xb2, 0xb4, 0xb2, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xfb, 0xb8, 0xb6, 0xaa, 0x9c, 0x8e, 0x79, 0x68, 0x61, 0x55, 0x53, 0x53, 0xc2, 0x57, 0x5a, 0x57, 0x5a, 0x5a, 0x5a, 0x57, 0x5a, 0xd3, 0xe0, 0xd4, 0xd3, 0xe2, 0x0c, 0x0c, 0x0c, 0x0c, 0x09, 0x0c, 0x0c, 0x0c, 0x09, 0x0c, 0x0c, 0x0c, 0x0a, 0x0b, 0x08, 0x08, 0x08, 0x08, 0x0b, 0x08, 0x0b, 0x04, 0x08, 0x04, 0x0b, 0x08, 0xec, 0xe8, 0xed, 0xe9, 0xea, 0xed, 0xea, 0xc8, 0x72, 0xc8, 0x72, 0x77, 0x77, 0x79, 0x7b, 0x7a, 0x7a, 0x7e, 0x7e, 0x83, 0x4e, 0x83, 0x83, 0x78, 0x7e, 0x76, 0x7a, 0x76, 0x76, 0x75, 0x76, 0x75, 0x75, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x75, 0x7a, 0x75, 0x74, 0x77, 0x74, 0x75, 0x74, 0x74, 0x74, 0x74, 0x72, 0x74, 0x72, 0x70, 0x72, 0x70, 0x6e, 0x74, 0x65, 0x5f, 0x5f, 0x5f, 0x66, 0x7c, 0x79, 0x79, 0x77, 0x79, 0x77, 0x77, 0x79, 0x79, 0x79, 0x79, 0x7c, 0x79, 0x7c, 0x7d, 0x7c, 0x9d, 0x9d, 0x9d, 0x9d, 0x9d, 0xa1, 0x12, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0b, 0x0d, 0x0b, 0x0b, 0x0b, 0x0b, 0x04, 0x0b, 0x0b, 0x03, 0x62, 0x62, 0x61, 0x5f, 0x5f, 0x61, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x61, 0x61, 0x5f, 0x61, 0x61, 0x5f, 0x5b, 0x64, 0xea, 0xd6, 0xed, 0xeb, 0xeb, 0xeb, 0xc9, 0x82, 0x51, 0x91, 0x50, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x50, 0x50, 0xef, 0x0f, 0x06, 0x09, 0x06, 0x0c, 0x09, 0x0a, 0x09, 0x0a, 0x09, 0x0a, 0x09, 0x0a, 0x09, 0x0a, 0x0b, 0x0b, 0x0d, 0x08, 0x05, 0x05, 0x0a, 0x05, 0x08, 0x05, 0x04, 0x0a, 0x05, 0x04, 0x04, 0xe5, 0x4c, 0x4c, 0x4b, 0x4c, 0x7b, 0x23, 0x26, 0x23, 0x23, 0x26, 0x26, 0x26, 0x2b, 0xf7, 0xf5, 0xf5, 0xf5, 0xf5, 0xf5, 0xf6, 0x31, 0x32, 0x35, 0x32, 0x35, 0x35, 0x35, 0x35, 0x2c, 0x28, 0x29, 0x2b, 0x29, 0x2d, 0x29, 0x2d, 0x2d, 0xf2, 0xf2, 0xf2, 0xf3, 0xf3, 0xf3, 0xcb, 0x29, 0x23, 0x21, 0x20, 0x1f, 0x21, 0x21, 0x2b, 0xdb, 0xa8, 0x9e, 0x9e, 0x98, 0x98, 0x94, 0x94, 0x8e, 0xca, 0x88, 0x84, 0x84, 0x80, 0x7d, 0x77, 0x75, 0x27, 0x30, 0x2a, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x23, 0x1f, 0x23, 0x23, 0x26, 0x26, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x26, 0x26, 0x26, 0x26, 0x23, 0x20, 0x1e, 0x21, 0x20, 0x20, 0x28, 0x24, 0x2b,
0xbf, 0xbf, 0xc0, 0xbf, 0xbf, 0xc0, 0xc0, 0xc0, 0xc0, 0xbd, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbb, 0xb6, 0xb9, 0xb7, 0xb7, 0xb9, 0xb7, 0xb9, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb6, 0xb7, 0xbd, 0xb3, 0x96, 0x9a, 0x9d, 0x9d, 0x9d, 0x9a, 0x9a, 0x91, 0x50, 0x50, 0x50, 0x50, 0x50, 0x91, 0x50, 0x91, 0x50, 0x91, 0x91, 0x91, 0x91, 0x89, 0xa1, 0xbb, 0xba, 0xb5, 0xb7, 0xb6, 0xb7, 0xb7, 0xb7, 0xb9, 0xb7, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xba, 0xba, 0xba, 0xba, 0xba, 0xba, 0xba, 0xba, 0xba, 0xbb, 0xb7, 0xcd, 0xcd, 0xcd, 0xcd, 0xcd, 0xcd, 0xcd, 0xcd, 0xcd, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xac, 0xb0, 0xb0, 0xb0, 0xb2, 0xb0, 0xb2, 0xb0, 0xb2, 0xb4, 0xac, 0xf7, 0xf8, 0xf8, 0xf8, 0xdb, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xdb, 0xac, 0xaf, 0xb1, 0xb6, 0xb7, 0xb5, 0xae, 0x90, 0x80, 0x6e, 0xc5, 0x5a, 0xc2, 0xc2, 0x53, 0xd2, 0x57, 0x5a, 0x5a, 0x57, 0xd4, 0xe0, 0x5a, 0x03, 0x11, 0x0c, 0x0c, 0x09, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x10, 0x0a, 0x04, 0x0b, 0x08, 0x08, 0x08, 0x08, 0x08, 0x0b, 0x08, 0x0b, 0x04, 0x0e, 0xea, 0xec, 0xe9, 0xed, 0xea, 0xeb, 0xed, 0xeb, 0xc8, 0x72, 0x77, 0x74, 0x77, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7e, 0x7e, 0x69, 0x67, 0x71, 0x76, 0x71, 0x76, 0x71, 0x75, 0x75, 0x75, 0x75, 0x70, 0x75, 0x70, 0x75, 0x70, 0x75, 0x70, 0x74, 0x76, 0x7a, 0x76, 0x75, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x72, 0x74, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x65, 0x5f, 0x61, 0x61, 0x5b, 0x65, 0x79, 0x7c, 0x79, 0x77, 0x7c, 0x7c, 0x77, 0x79, 0x79, 0x7c, 0x79, 0x7c, 0x7c, 0x7d, 0x85, 0x9d, 0x9d, 0x9d, 0x9d, 0x9d, 0x9d, 0x9c, 0x0b, 0x0d, 0x0d, 0x0d, 0x0b, 0x0d, 0x0b, 0x0d, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0xe4, 0x60, 0x64, 0x62, 0x64, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x61, 0x5f, 0x61, 0x61, 0x5f, 0x61, 0x5f, 0x5f, 0x5f, 0xc6, 0xed, 0xed, 0xc7, 0xeb, 0xea, 0xeb, 0xd6, 0x82, 0x8f, 0x51, 0x50, 0x91, 0x91, 0x91, 0x51, 0x91, 0x51, 0x96, 0x51, 0x91, 0x51, 0x51, 0x51, 0x8b, 0x8f, 0x50, 0x8d, 0xe9, 0x06, 0xe5, 0x0c, 0x09, 0x0a, 0x09, 0x0a, 0x0c, 0x0a, 0x0a, 0x0a, 0x0c, 0x0a, 0x0c, 0x0a, 0x0d, 0x0b, 0x08, 0x05, 0x0a, 0x05, 0x0a, 0x05, 0x08, 0x05, 0x04, 0x0a, 0x08, 0x08, 0x04, 0x06, 0x4d, 0x4c, 0x4c, 0x76, 0x26, 0x26, 0x23, 0x26, 0x23, 0x26, 0x26, 0x26, 0x31, 0xf6, 0xf5, 0xf5, 0xf5, 0xf5, 0xf5, 0x31, 0x32, 0x32, 0x35, 0x35, 0x35, 0x35, 0x37, 0x32, 0x24, 0x2b, 0x24, 0x2c, 0x29, 0x2d, 0x27, 0x31, 0xf2, 0xf2, 0xf2, 0xf3, 0xf3, 0xd9, 0xd9, 0xf3, 0x21, 0x28, 0x21, 0x28, 0x21, 0x2b, 0x23, 0x24, 0xa0, 0x9c, 0x9e, 0x9e, 0xa5, 0xa0, 0xa8, 0xa5, 0xa8, 0xac, 0xac, 0xac, 0xac, 0xb2, 0xb0, 0xae, 0x3e, 0x40, 0x40, 0x39, 0x36, 0x32, 0x2f, 0x21, 0x23, 0x1f, 0x1f, 0x1f, 0x1f, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x23, 0x26, 0x26, 0x26, 0x27, 0xef, 0x16, 0x19, 0x19, 0x19, 0x19, 0x1e,
0xbf, 0xbf, 0xbf, 0xbf, 0xc0, 0xbf, 0xc0, 0xbf, 0xc0, 0xbf, 0xbd, 0xbe, 0xbe, 0xbe, 0xbe, 0xba, 0xb7, 0xb7, 0xb9, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb9, 0xbb, 0xaf, 0x96, 0x9a, 0x9d, 0x9d, 0x9d, 0x9d, 0x50, 0x50, 0x50, 0x50, 0x91, 0x50, 0x91, 0x91, 0x91, 0x50, 0x91, 0x91, 0x91, 0x91, 0x91, 0x50, 0xa2, 0xbb, 0xb9, 0xb6, 0xb7, 0xb7, 0xb7, 0xb7, 0xb6, 0xb9, 0xb9, 0xb7, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xba, 0xb9, 0xba, 0xba, 0xbb, 0xb9, 0xba, 0xb9, 0xba, 0xba, 0xba, 0xcd, 0xcd, 0xcd, 0xcd, 0xcd, 0xb0, 0xcd, 0xcd, 0xcd, 0xcd, 0xac, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb2, 0xb0, 0xb0, 0xb2, 0xb2, 0xb2, 0xb2, 0xb2, 0xb2, 0xb5, 0xcd, 0xf7, 0xdb, 0xf8, 0xf8, 0xf8, 0xdb, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xa5, 0xa5, 0xac, 0xaa, 0xaa, 0xaa, 0xaa, 0xae, 0xb3, 0xb6, 0xb5, 0xae, 0xa0, 0x8e, 0x7d, 0x68, 0x5f, 0xc2, 0xc2, 0x53, 0xc2, 0x55, 0xd3, 0xd4, 0x09, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x09, 0x0c, 0x0c, 0x0c, 0x0c, 0x08, 0x08, 0x0b, 0x08, 0x0b, 0x08, 0x0b, 0x08, 0x08, 0x0b, 0x0b, 0x10, 0xed, 0xe9, 0xed, 0xea, 0xed, 0xeb, 0xeb, 0xc7, 0xc7, 0x72, 0x72, 0x77, 0x75, 0x75, 0x7b, 0x76, 0x7a, 0x76, 0x76, 0x76, 0x6c, 0x5d, 0x66, 0x71, 0x76, 0x6d, 0x75, 0x75, 0x6d, 0x75, 0x75, 0x75, 0x70, 0x75, 0x70, 0x74, 0x70, 0x74, 0x74, 0x75, 0x76, 0x76, 0x75, 0x75, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x70, 0x74, 0x6e, 0x74, 0x6e, 0x74, 0x72, 0x74, 0x62, 0x5f, 0x61, 0x5f, 0x61, 0x5f, 0x62, 0x79, 0x7c, 0x79, 0x79, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x79, 0x7c, 0x7c, 0x77, 0x8c, 0xa4, 0x9d, 0x9d, 0x9a, 0x9d, 0x9a, 0xa1, 0xca, 0x0b, 0x0d, 0x0d, 0x0d, 0x0d, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x08, 0xd5, 0x60, 0x61, 0x62, 0x64, 0x62, 0x61, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x61, 0x61, 0x61, 0x61, 0x61, 0x61, 0x61, 0x61, 0x5f, 0x5f, 0x61, 0xeb, 0xee, 0xd6, 0xed, 0xeb, 0xed, 0xea, 0xd6, 0x77, 0x79, 0x7f, 0x7f, 0x7b, 0x7f, 0x7b, 0x7f, 0x79, 0x7b, 0x77, 0x77, 0x77, 0x74, 0xc8, 0xc7, 0xc7, 0xc7, 0xc6, 0xe7, 0xe7, 0xe9, 0xe7, 0xe5, 0xe8, 0xe8, 0x09, 0x09, 0x0c, 0x09, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0d, 0x0b, 0x05, 0x0a, 0x08, 0x05, 0x08, 0x0a, 0x08, 0x0a, 0x04, 0x0a, 0x04, 0x08, 0x04, 0x05, 0x6f, 0x4c, 0x79, 0x26, 0x26, 0x23, 0x23, 0x26, 0x26, 0x26, 0x26, 0x2a, 0xf5, 0xf5, 0xf5, 0xf5, 0xf5, 0xf5, 0x2c, 0x32, 0x32, 0x32, 0x32, 0x32, 0x35, 0x35, 0x35, 0x28, 0x2b, 0x2b, 0x2c, 0x29, 0x29, 0x2d, 0x2d, 0xf2, 0xf2, 0xf2, 0xf3, 0xf3, 0xf3, 0xf3, 0xcb, 0x29, 0x26, 0x28, 0x28, 0x28, 0x2c, 0x21, 0x1f, 0x31, 0xa3, 0x9c, 0xcc, 0x98, 0xcc, 0x9e, 0x9e, 0x9c, 0x9e, 0x9e, 0x9e, 0x9e, 0xa0, 0xa0, 0xa0, 0x39, 0x3f, 0x42, 0x42, 0x44, 0x44, 0x41, 0x41, 0x40, 0x39, 0x3b, 0x32, 0x2f, 0x26, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x26, 0x26, 0x26, 0x26, 0x25, 0x8c, 0xf0, 0x18, 0x19, 0x19, 0x19, 0x19,
0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xd0, 0xbf, 0xbf, 0xbf, 0xd0, 0xbf, 0xbd, 0xbe, 0xbe, 0xbe, 0xba, 0xb7, 0xb7, 0xb7, 0xb7, 0xb9, 0xb7, 0xb9, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb9, 0xb7, 0xb7, 0xbd, 0xab, 0x51, 0x9d, 0x9a, 0xa1, 0x9a, 0x50, 0x50, 0x50, 0x91, 0x50, 0x91, 0x50, 0x91, 0x50, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x50, 0xa1, 0xbd, 0xb7, 0xb7, 0xb6, 0xb6, 0xb7, 0xb7, 0xb7, 0xb7, 0xb9, 0xb7, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xba, 0xba, 0xb9, 0xba, 0xb9, 0xba, 0xba, 0xba, 0xba, 0xbb, 0xb0, 0xcd, 0xac, 0xcd, 0xcd, 0xcd, 0xcd, 0xcd, 0xac, 0xcd, 0xcd, 0xb0, 0xb0, 0xb0, 0xac, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb2, 0xb0, 0xb2, 0xb0, 0xb2, 0xb2, 0xb5, 0xdb, 0xf8, 0xf8, 0xdb, 0xf8, 0xf8, 0xf8, 0xdb, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xdb, 0xf8, 0xdb, 0xa5, 0xa5, 0xa8, 0xaa, 0xa8, 0xaa, 0xa3, 0xaa, 0xa8, 0xaa, 0xa8, 0xb1, 0xb5, 0xb7, 0xb6, 0xa5, 0x8e, 0x80, 0x72, 0x64, 0x5a, 0x55, 0xde, 0x05, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x10, 0x0c, 0x08, 0x04, 0x08, 0x08, 0x08, 0x08, 0x0b, 0x04, 0x0b, 0x08, 0xed, 0xe9, 0xe9, 0xe9, 0xed, 0xea, 0xeb, 0xeb, 0xd6, 0xc7, 0xc8, 0x74, 0x77, 0x74, 0x75, 0x75, 0x76, 0x75, 0x76, 0x71, 0x75, 0x66, 0x5d, 0x5d, 0x62, 0x6d, 0x76, 0x6d, 0x75, 0x75, 0x6c, 0x75, 0x70, 0x75, 0x70, 0x75, 0x74, 0x75, 0x74, 0x74, 0x76, 0x76, 0x75, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x70, 0x74, 0x70, 0x72, 0x72, 0x70, 0x72, 0x65, 0x5f, 0x5f, 0x61, 0x61, 0x61, 0x5f, 0x61, 0x77, 0x7f, 0x7d, 0x79, 0x7c, 0x7c, 0x79, 0x7c, 0x7c, 0x7c, 0x7c, 0x77, 0x97, 0xa1, 0x9d, 0x9d, 0x9d, 0x9d, 0x9d, 0x9a, 0xa1, 0xee, 0x0d, 0x0d, 0x0d, 0x0b, 0x0d, 0x0b, 0x0d, 0x0b, 0x0b, 0x0b, 0x0b, 0x0a, 0xc4, 0x62, 0x62, 0x64, 0x62, 0x61, 0x62, 0x61, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x61, 0x61, 0x61, 0x5f, 0x61, 0x5f, 0x61, 0x5f, 0x61, 0x5f, 0x5f, 0x5f, 0xc6, 0xed, 0xed, 0xed, 0xed, 0xeb, 0xed, 0xc7, 0xc7, 0xc7, 0xc7, 0x72, 0x72, 0x72, 0x6e, 0x72, 0x72, 0x6e, 0x72, 0xc7, 0x6e, 0xc7, 0xc7, 0xc6, 0xe7, 0xc6, 0xe9, 0xe9, 0xe7, 0xea, 0xe7, 0xea, 0xe6, 0xea, 0xe7, 0xe7, 0xe7, 0xe8, 0xe5, 0xe8, 0x09, 0x09, 0x0c, 0x08, 0x05, 0x05, 0x05, 0x08, 0x05, 0x08, 0x04, 0x08, 0x08, 0x08, 0x04, 0x08, 0x04, 0x0b, 0x04, 0x71, 0x7a, 0x26, 0x26, 0x23, 0x26, 0x23, 0x26, 0x26, 0x26, 0x26, 0x35, 0xf4, 0x31, 0xf5, 0xf5, 0xf5, 0x32, 0x2b, 0x32, 0x32, 0x32, 0x32, 0x35, 0x32, 0x37, 0x2b, 0x24, 0x2b, 0x29, 0x2c, 0x27, 0x2d, 0xf2, 0xf2, 0xf2, 0xf3, 0xf3, 0xf3, 0xd9, 0xd9, 0xd9, 0xf3, 0x2a, 0x28, 0x28, 0x28, 0x2b, 0x21, 0x1f, 0x28, 0xf4, 0xa0, 0x98, 0x9e, 0x98, 0x9e, 0x94, 0x9e, 0x9e, 0x98, 0x9e, 0x9e, 0x9e, 0xa0, 0xa0, 0x36, 0x3a, 0x41, 0x40, 0x40, 0x41, 0x41, 0x41, 0x41, 0x42, 0x41, 0x44, 0x44, 0x40, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x26, 0x23, 0x26, 0x24, 0x84, 0xca, 0xf1, 0x1d, 0x19, 0x19, 0x19,
0xbe, 0xbe, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xc0, 0xc0, 0xc0, 0xbe, 0xbe, 0xbe, 0xbe, 0xba, 0xb7, 0xb7, 0xb9, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb6, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xbd, 0xa9, 0x96, 0x9d, 0x9d, 0x9a, 0x50, 0x50, 0x91, 0x50, 0x91, 0x50, 0x91, 0x91, 0x50, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x50, 0xa2, 0xbd, 0xb7, 0xb6, 0xb6, 0xb7, 0xb6, 0xb7, 0xb7, 0xb7, 0xb9, 0xb9, 0xb7, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xba, 0xba, 0xba, 0xba, 0xba, 0xba, 0xb9, 0xbd, 0xb0, 0xcd, 0xcd, 0xcd, 0xac, 0xcd, 0xac, 0xcd, 0xcd, 0xcd, 0xcd, 0xcd, 0xb0, 0xb0, 0xb0, 0xac, 0xb0, 0xb0, 0xac, 0xb0, 0xac, 0xb0, 0xb0, 0xb2, 0xb0, 0xb2, 0xb2, 0xb2, 0xb2, 0xb2, 0xb2, 0xb4, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xdb, 0xdb, 0xdb, 0xac, 0xa5, 0xae, 0xa3, 0xaa, 0xa8, 0xa8, 0xa8, 0xa8, 0xa8, 0xa8, 0xa8, 0xa8, 0xa8, 0xae, 0xb4, 0xb7, 0xb6, 0xac, 0xa0, 0x8a, 0xf1, 0xec, 0x05, 0x05, 0x05, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x10, 0x0a, 0x08, 0x0b, 0x0b, 0x08, 0x0b, 0x08, 0x0b, 0x08, 0x0e, 0xea, 0xec, 0xe9, 0xed, 0xea, 0xed, 0xeb, 0xeb, 0xc7, 0xc7, 0x72, 0x72, 0x74, 0x74, 0x75, 0x75, 0x75, 0x75, 0x71, 0x70, 0x6d, 0x62, 0x5d, 0x60, 0x5b, 0x60, 0x6d, 0x75, 0x6d, 0x6c, 0x75, 0x70, 0x6d, 0x70, 0x75, 0x74, 0x70, 0x74, 0x70, 0x74, 0x75, 0x76, 0x75, 0x75, 0x70, 0x75, 0x75, 0x74, 0x72, 0x74, 0x70, 0x74, 0x72, 0x70, 0x72, 0x74, 0x72, 0x74, 0x6e, 0x62, 0x5f, 0x62, 0x5f, 0x62, 0x5f, 0x62, 0x5f, 0x5f, 0x74, 0x82, 0x7d, 0x7c, 0x79, 0x7c, 0x7d, 0x82, 0x7c, 0x7c, 0x7c, 0x99, 0xa1, 0x9d, 0x9d, 0x9d, 0x9a, 0x9d, 0x9d, 0x9d, 0xa1, 0x15, 0x0b, 0x0d, 0x0d, 0x0b, 0x0d, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x06, 0x61, 0x62, 0x64, 0x62, 0x64, 0x62, 0x65, 0x61, 0x62, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x61, 0x61, 0x61, 0x61, 0x61, 0x61, 0x61, 0x61, 0x61, 0x5f, 0x61, 0x5f, 0x5f, 0x5b, 0x61, 0xea, 0xed, 0xee, 0xeb, 0xed, 0xeb, 0xc7, 0xc7, 0xc7, 0xc7, 0xc7, 0xc7, 0x6e, 0x6e, 0x6e, 0xc7, 0x6e, 0x72, 0x68, 0xc7, 0xc6, 0xeb, 0xc6, 0xeb, 0xc6, 0xe8, 0xe9, 0xe9, 0xe7, 0xe7, 0xea, 0xe7, 0xe7, 0xe9, 0xc6, 0xe7, 0xc6, 0xe7, 0xc6, 0xe7, 0xe6, 0xe7, 0xe8, 0xe5, 0xe5, 0xe5, 0xe5, 0x07, 0xe5, 0x07, 0x07, 0x09, 0x09, 0x06, 0x06, 0x06, 0x04, 0x02, 0xec, 0x26, 0x26, 0x26, 0x23, 0x26, 0x26, 0x26, 0x26, 0x26, 0x2a, 0xf5, 0xf5, 0x31, 0xf5, 0x31, 0x2b, 0x2b, 0x32, 0x2b, 0x32, 0x32, 0x32, 0x32, 0x35, 0x32, 0x28, 0x2b, 0x2c, 0x29, 0x29, 0x2d, 0x2d, 0xf2, 0xf2, 0xf2, 0xf3, 0xf3, 0xd9, 0xf3, 0xd9, 0xd9, 0x2b, 0x2a, 0x28, 0x28, 0x2b, 0x21, 0x1f, 0x20, 0x2b, 0xcc, 0xa0, 0x98, 0x9e, 0xcc, 0x9e, 0x9e, 0x9e, 0x9e, 0x9e, 0xa0, 0x9e, 0xa0, 0x9e, 0x3a, 0x38, 0x41, 0x41, 0x40, 0x41, 0x40, 0x40, 0x41, 0x40, 0x41, 0x40, 0x41, 0xdd, 0x36, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x26, 0x26, 0x20, 0xd8, 0xd9, 0x84, 0xca, 0x1a, 0x19, 0x19,
0xbe, 0xbe, 0xbe, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xc0, 0xbf, 0xd0, 0xbf, 0xbd, 0xbd, 0xbe, 0xba, 0xb6, 0xb9, 0xb7, 0xb7, 0xb9, 0xb7, 0xb9, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb6, 0xb7, 0xb9, 0xba, 0xa6, 0x96, 0xa1, 0x9a, 0x50, 0x50, 0x50, 0x91, 0x50, 0x91, 0x50, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x96, 0x91, 0x50, 0xa2, 0xbb, 0xb7, 0xb6, 0xb6, 0xb7, 0xb7, 0xb7, 0xb9, 0xb7, 0xb7, 0xb9, 0xb7, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xba, 0xb9, 0xba, 0xb9, 0xbb, 0xb9, 0xb9, 0xbb, 0xb4, 0xcd, 0xcd, 0xcd, 0xcd, 0xcd, 0xcd, 0xcd, 0xcd, 0xac, 0xcd, 0xac, 0xcd, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb2, 0xb0, 0xb0, 0xb0, 0xac, 0xb4, 0xb2, 0xb0, 0xb2, 0xb0, 0xb2, 0xb2, 0xb2, 0xb2, 0xf8, 0xf8, 0xf8, 0xdb, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xdb, 0xf8, 0xdb, 0xa5, 0xa5, 0xa5, 0xa8, 0xa8, 0xaa, 0xa3, 0xa8, 0xaa, 0xa8, 0xa3, 0xa8, 0xa8, 0xa8, 0xa8, 0xa8, 0xa8, 0xa8, 0xa8, 0xa8, 0xb2, 0xb4, 0xb6, 0xa5, 0xd9, 0xf0, 0xec, 0x0c, 0x05, 0x05, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x10, 0x0a, 0x0b, 0x08, 0x0b, 0x08, 0x08, 0x0b, 0x0b, 0x10, 0xed, 0xe9, 0xed, 0xe9, 0xeb, 0xea, 0xeb, 0xeb, 0xd6, 0xc7, 0xc8, 0x72, 0x74, 0x74, 0x74, 0x75, 0x75, 0x6c, 0x75, 0x6c, 0x70, 0x5d, 0x5d, 0x5f, 0x60, 0x5b, 0x5d, 0x70, 0x75, 0x70, 0x6c, 0x75, 0x70, 0x70, 0x70, 0x70, 0x75, 0x70, 0x74, 0x74, 0x75, 0x75, 0x75, 0x75, 0x75, 0x70, 0x75, 0x74, 0x75, 0x74, 0x74, 0x72, 0x74, 0x72, 0x74, 0x6e, 0x74, 0x72, 0x70, 0x61, 0x61, 0x5f, 0x61, 0x5f, 0x62, 0x5f, 0x62, 0x5f, 0x5f, 0x70, 0x82, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7c, 0x82, 0x52, 0x9d, 0x9d, 0x9d, 0x9d, 0x9d, 0x9a, 0x9d, 0x9d, 0x9d, 0x9b, 0x0f, 0x0b, 0x0d, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x07, 0x60, 0x61, 0x62, 0x64, 0x62, 0x61, 0x62, 0x64, 0x62, 0x64, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x61, 0x61, 0x61, 0x61, 0x61, 0x5f, 0x61, 0x5f, 0x61, 0x5f, 0x61, 0x5f, 0x61, 0x5f, 0x5f, 0x5f, 0xe6, 0xed, 0xee, 0xed, 0xed, 0xeb, 0xc7, 0xc7, 0xc7, 0xc7, 0xc7, 0xc7, 0xc7, 0x6e, 0x6e, 0xc7, 0xc7, 0xc7, 0xc6, 0xc7, 0xc6, 0xeb, 0xc6, 0xeb, 0xe7, 0xe9, 0xe8, 0xe9, 0xe7, 0xe7, 0xe7, 0xea, 0xe7, 0xe7, 0xe7, 0xe7, 0xe6, 0xe7, 0xc6, 0xe7, 0xc6, 0xe8, 0xe8, 0xe6, 0xe6, 0xe6, 0xe7, 0xe6, 0xe6, 0xe6, 0xe5, 0xe6, 0xe6, 0xe5, 0xe6, 0xe6, 0xe5, 0x09, 0x1a, 0x1e, 0x23, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x2b, 0xf7, 0x31, 0xf5, 0x2d, 0x2f, 0x2b, 0x2b, 0x2b, 0x32, 0x2b, 0x32, 0x32, 0x2c, 0x35, 0x2b, 0x24, 0x2b, 0x2c, 0x2d, 0x2d, 0xf2, 0x2d, 0xf3, 0xf3, 0xf3, 0xd9, 0xd9, 0xd9, 0xd9, 0xca, 0x31, 0x2a, 0x28, 0x28, 0x2b, 0x21, 0x1f, 0x1f, 0x28, 0x2d, 0xcc, 0x9c, 0xcc, 0x9c, 0xcc, 0x98, 0x9e, 0x9e, 0x9e, 0x9e, 0x9e, 0xa0, 0x9e, 0x36, 0x33, 0x3f, 0x3e, 0x40, 0x3c, 0x41, 0x41, 0x40, 0x41, 0x40, 0x40, 0x41, 0xdc, 0x43, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x30, 0x23, 0x21, 0xd8, 0xd8, 0xf1, 0xca, 0xca, 0x25, 0x16,
0xbb, 0xbd, 0xbe, 0xbe, 0xbf, 0xbf, 0xbf, 0xbf, 0xd0, 0xc0, 0xc0, 0xc1, 0xbe, 0xbd, 0xbe, 0xba, 0xb7, 0xb9, 0xb7, 0xb9, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb6, 0xb6, 0xb7, 0xba, 0xba, 0x52, 0x9a, 0x96, 0x50, 0x91, 0x50, 0x50, 0x91, 0x50, 0x91, 0x91, 0x50, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x96, 0x91, 0x50, 0xa7, 0xbd, 0xb6, 0xb6, 0xb7, 0xb7, 0xb6, 0xb7, 0xb7, 0xb7, 0xb9, 0xb7, 0xb9, 0xb7, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xba, 0xb9, 0xba, 0xb9, 0xbd, 0xb4, 0xcd, 0xcd, 0xcd, 0xcd, 0xcd, 0xcd, 0xcd, 0xac, 0xcd, 0xcd, 0xcd, 0xcd, 0xac, 0xb0, 0xac, 0xb0, 0xb0, 0xac, 0xb0, 0xac, 0xb0, 0xb0, 0xb0, 0xb2, 0xb2, 0xb2, 0xb2, 0xb2, 0xb2, 0xb0, 0xb2, 0xb2, 0xb0, 0xf8, 0xf8, 0xf8, 0xdb, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xdb, 0xf8, 0xf8, 0xdb, 0xdb, 0xdb, 0xa5, 0xa5, 0xa5, 0xac, 0xa8, 0xa8, 0xa3, 0xa8, 0xa8, 0xa8, 0xa8, 0xa8, 0xa8, 0xa8, 0xa8, 0xa8, 0xa8, 0xa8, 0xa8, 0xa0, 0xa8, 0xa8, 0xac, 0xa5, 0xa8, 0xa5, 0xcb, 0xf0, 0x10, 0x0a, 0x05, 0x05, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x10, 0x08, 0x0b, 0x0b, 0x08, 0x0b, 0x0b, 0x08, 0xed, 0xe9, 0xe9, 0xe9, 0xed, 0xea, 0xeb, 0xeb, 0xeb, 0xc7, 0xc7, 0xc7, 0x72, 0x74, 0x70, 0x75, 0x70, 0x70, 0x70, 0x6c, 0x70, 0x6a, 0x5b, 0x5d, 0x5d, 0x5f, 0x5d, 0x5b, 0x5b, 0x6c, 0x75, 0x70, 0x70, 0x6c, 0x70, 0x70, 0x74, 0x70, 0x74, 0x70, 0x74, 0x6d, 0x75, 0x70, 0x75, 0x70, 0x75, 0x70, 0x74, 0x70, 0x70, 0x70, 0x74, 0x72, 0x74, 0x72, 0x74, 0x6e, 0x74, 0x6e, 0x61, 0x5f, 0x61, 0x61, 0x61, 0x61, 0x61, 0x5f, 0x62, 0x5f, 0x5f, 0x6a, 0x82, 0x82, 0x7c, 0x7c, 0x7d, 0x7f, 0x7d, 0x82, 0xa1, 0x9d, 0x9d, 0x9d, 0x9d, 0x9a, 0x9d, 0x9a, 0x9d, 0x9a, 0xa1, 0x8e, 0x0b, 0x0b, 0x0d, 0x0b, 0x0b, 0x0b, 0x0b, 0x08, 0x0b, 0xe5, 0x5d, 0x62, 0x64, 0x62, 0x64, 0x62, 0x65, 0x61, 0x62, 0x64, 0x62, 0x61, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x61, 0x61, 0x61, 0x61, 0x61, 0x61, 0x61, 0x61, 0x5f, 0x61, 0x5f, 0x61, 0x5f, 0x61, 0x5f, 0x5f, 0x5b, 0x5f, 0xea, 0xec, 0xed, 0xed, 0xeb, 0xc7, 0xeb, 0xc7, 0xeb, 0xeb, 0xeb, 0xeb, 0xeb, 0x68, 0xc7, 0xc6, 0xeb, 0xc6, 0xeb, 0xc6, 0xeb, 0xc6, 0xeb, 0xe8, 0xe9, 0xe9, 0xe8, 0xe9, 0xe7, 0xe7, 0xe7, 0xe7, 0xe7, 0xe7, 0xe7, 0xe7, 0xe7, 0xe7, 0xe6, 0xe7, 0x10, 0x10, 0xe7, 0xe4, 0xe6, 0xe5, 0xe7, 0xe5, 0xe7, 0xe5, 0xe7, 0xe5, 0xe7, 0xe5, 0xe8, 0xe8, 0xe8, 0x11, 0x1a, 0x1e, 0x23, 0x26, 0x26, 0x26, 0x26, 0x2e, 0x26, 0x31, 0xf6, 0xf5, 0x2c, 0x28, 0x2f, 0x2b, 0x2f, 0x2b, 0x32, 0x2b, 0x2b, 0x32, 0x35, 0x2b, 0x28, 0x2b, 0x2c, 0x29, 0x2d, 0x2d, 0xf2, 0xf2, 0xf3, 0xd9, 0xf3, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0x2b, 0x2a, 0x28, 0x28, 0x21, 0x1f, 0x23, 0x1e, 0x2b, 0x31, 0x9e, 0x9c, 0xcc, 0xcc, 0x9e, 0xcc, 0x9e, 0x9e, 0x9e, 0x9e, 0xa0, 0xdb, 0x3a, 0x33, 0x3d, 0x41, 0x41, 0x40, 0x41, 0x40, 0x41, 0x40, 0x41, 0x40, 0x42, 0x43, 0xdc, 0x3c, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x30, 0x23, 0x21, 0xf1, 0xca, 0xd8, 0xf1, 0xd8, 0xca, 0xf0,
0xbd, 0xbd, 0xbe, 0xbe, 0xbf, 0xbe, 0xbf, 0xbf, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xbe, 0xbd, 0xba, 0xb6, 0xb7, 0xb7, 0xb7, 0xb9, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb6, 0xbb, 0xb9, 0xa2, 0x91, 0x50, 0x50, 0x91, 0x91, 0x50, 0x91, 0x50, 0x91, 0x91, 0x91, 0x91, 0x50, 0x91, 0x96, 0x91, 0x91, 0x91, 0x91, 0x96, 0x91, 0x50, 0xa7, 0xbd, 0xb7, 0xb6, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb9, 0xb9, 0xb9, 0xb7, 0xb9, 0xb9, 0xb9, 0xbb, 0xba, 0xba, 0xba, 0xba, 0xbb, 0xb8, 0xcd, 0xcd, 0xcd, 0xcd, 0xcd, 0xcd, 0xac, 0xcd, 0xcd, 0xac, 0xcd, 0xcd, 0xcd, 0xcd, 0xb0, 0xb0, 0xac, 0xb0, 0xac, 0xb0, 0xb0, 0xac, 0xb2, 0xb0, 0xb2, 0xb0, 0xae, 0xb0, 0xb2, 0xb2, 0xb2, 0xb2, 0xb3, 0xac, 0xf7, 0xf8, 0xf8, 0xf8, 0xf8, 0xdb, 0xf8, 0xf8, 0xdb, 0xf8, 0xf8, 0xf8, 0xdb, 0xf8, 0xdb, 0xdb, 0xa5, 0xa5, 0xa5, 0xa8, 0xac, 0xa8, 0xa8, 0xa8, 0xa8, 0xa8, 0xa8, 0xa8, 0xa8, 0xa8, 0xa0, 0xa8, 0xa5, 0xa8, 0xa8, 0xa8, 0xa8, 0xa0, 0xa8, 0xa5, 0xcc, 0x9e, 0xa5, 0xa8, 0x9e, 0xcb, 0xf0, 0xec, 0x0a, 0x05, 0x05, 0x0c, 0x0c, 0x0c, 0x0c, 0x09, 0x0c, 0x08, 0x0b, 0x08, 0x0b, 0x04, 0x0e, 0xea, 0xec, 0xea, 0xed, 0xea, 0xea, 0xeb, 0xeb, 0xc7, 0xc7, 0xc7, 0x72, 0xc8, 0x70, 0x72, 0x6c, 0x70, 0x6c, 0x70, 0x6c, 0x70, 0x66, 0x59, 0x5b, 0x5d, 0x5b, 0x5d, 0x5b, 0x5b, 0x59, 0x66, 0x75, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x75, 0x70, 0x74, 0x75, 0x70, 0x75, 0x70, 0x75, 0x70, 0x74, 0x70, 0x70, 0x74, 0x74, 0x70, 0x74, 0x6e, 0x74, 0x6e, 0x74, 0x74, 0x6e, 0x61, 0x5f, 0x61, 0x61, 0x5f, 0x62, 0x5f, 0x62, 0x5f, 0x62, 0x61, 0x5b, 0x6a, 0x82, 0x88, 0x7c, 0x7c, 0x82, 0x7d, 0x8c, 0xa1, 0x9d, 0x9d, 0x9d, 0x9d, 0x9a, 0x9d, 0x9a, 0x9d, 0x9a, 0x9a, 0xa1, 0xf1, 0x0b, 0x0b, 0x0b, 0x0d, 0x0b, 0x0b, 0x0b, 0x08, 0xe4, 0x5d, 0x62, 0x61, 0x65, 0x62, 0x64, 0x62, 0x64, 0x62, 0x61, 0x65, 0x61, 0x61, 0x5f, 0x5f, 0x61, 0x5f, 0x5f, 0x5f, 0x5f, 0x62, 0x61, 0x61, 0x61, 0x61, 0x5f, 0x61, 0x61, 0x61, 0x5f, 0x61, 0x5f, 0x61, 0x5f, 0x61, 0x5f, 0x61, 0x5d, 0x5f, 0xc5, 0xed, 0xec, 0xed, 0xeb, 0xeb, 0xeb, 0xeb, 0xeb, 0xeb, 0xea, 0xeb, 0xeb, 0xeb, 0xc7, 0xeb, 0xeb, 0xeb, 0xc6, 0xeb, 0xc6, 0xeb, 0xe7, 0xe9, 0xe8, 0xe9, 0xe7, 0xe9, 0xe9, 0xe7, 0xe7, 0xe7, 0xe7, 0xe6, 0xe7, 0xe6, 0xe7, 0xe6, 0xe7, 0xe9, 0x10, 0x10, 0xe8, 0xe5, 0xe6, 0xe5, 0xe7, 0xe5, 0xe7, 0xe5, 0xe7, 0xe8, 0xe9, 0xe8, 0xe8, 0xec, 0x15, 0xec, 0x15, 0x1a, 0x1d, 0x21, 0x26, 0x26, 0x26, 0x2e, 0x28, 0xf6, 0xf5, 0x2b, 0x28, 0x2b, 0x2b, 0x28, 0x2b, 0x2b, 0x2b, 0x32, 0x2c, 0x32, 0x2c, 0x2b, 0x2b, 0x2c, 0x29, 0x2d, 0xf2, 0x31, 0xf3, 0xf3, 0xf3, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xca, 0x2d, 0x2a, 0x2a, 0x28, 0x21, 0x1f, 0x1f, 0x1f, 0x28, 0x24, 0xf5, 0x9c, 0x9e, 0x9e, 0xcc, 0x9e, 0xcc, 0x9e, 0x9e, 0x9e, 0x9c, 0xdb, 0x38, 0x38, 0x38, 0x41, 0x3c, 0x40, 0x41, 0x40, 0x41, 0x40, 0x41, 0x40, 0x42, 0xfb, 0xfc, 0xfc, 0x33, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x33, 0x26, 0x23, 0xf0, 0xd8, 0xf1, 0xd9, 0xd8, 0xd8, 0xca,
0xbb, 0xbd, 0xbd, 0xbe, 0xbd, 0xbf, 0xbe, 0xbf, 0xbf, 0xbf, 0xd0, 0xbf, 0xc1, 0xbf, 0xbd, 0xb9, 0xb7, 0xb7, 0xb9, 0xb7, 0xb7, 0xb7, 0xb9, 0xb7, 0xb9, 0xb7, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xb7, 0xb7, 0xb9, 0xb7, 0xb7, 0xba, 0xb7, 0x96, 0x50, 0x50, 0x91, 0x50, 0x91, 0x50, 0x91, 0x91, 0x50, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x96, 0x91, 0x91, 0x50, 0xa7, 0xbd, 0xb7, 0xb6, 0xb6, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xba, 0xba, 0xba, 0xba, 0xb9, 0xcd, 0xcd, 0xcd, 0xcd, 0xcd, 0xcd, 0xcd, 0xcd, 0xcd, 0xcd, 0xcd, 0xac, 0xcd, 0xac, 0xcd, 0xac, 0xb0, 0xac, 0xb0, 0xb0, 0xac, 0xb0, 0xac, 0xb2, 0xae, 0xb2, 0xb2, 0xb2, 0xb2, 0xb2, 0xb2, 0xb2, 0xb2, 0xb4, 0xa5, 0xf8, 0xf8, 0xdb, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xdb, 0xf8, 0xdb, 0xdb, 0xdb, 0xa5, 0xdb, 0xa5, 0xa5, 0xa5, 0xa8, 0xa8, 0xa8, 0xa8, 0xa0, 0xa8, 0xa8, 0xa8, 0xa0, 0xa8, 0xa8, 0xa0, 0xa8, 0xa0, 0xa5, 0xa8, 0xa0, 0xa5, 0xa5, 0xa8, 0xa5, 0xcc, 0xcc, 0xcc, 0x9e, 0xa0, 0xa8, 0x9e, 0xd9, 0xee, 0xec, 0x0a, 0x05, 0x05, 0x0c, 0x0c, 0x10, 0x0c, 0x0b, 0x0b, 0x0b, 0x0b, 0x10, 0xed, 0xe9, 0xe9, 0xe9, 0xea, 0xeb, 0xeb, 0xeb, 0xeb, 0xc7, 0xc7, 0x72, 0x72, 0x72, 0x70, 0x70, 0x6c, 0x70, 0x6c, 0x6c, 0x70, 0x62, 0x59, 0x5b, 0x5b, 0x5d, 0x5b, 0x5b, 0x5b, 0x5b, 0x59, 0x66, 0x75, 0x70, 0x70, 0x70, 0x70, 0x70, 0x74, 0x70, 0x74, 0x70, 0x75, 0x70, 0x74, 0x70, 0x74, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x74, 0x72, 0x74, 0x72, 0x77, 0x6e, 0x5f, 0x61, 0x5f, 0x61, 0x61, 0x61, 0x61, 0x61, 0x61, 0x61, 0x61, 0x62, 0x5b, 0x65, 0x7f, 0x8a, 0x7d, 0x7c, 0x7c, 0x93, 0xa1, 0x9d, 0x9d, 0x9d, 0x9d, 0x9d, 0x9a, 0x9a, 0x9d, 0x9a, 0x99, 0x9a, 0xa1, 0xec, 0x0b, 0x0d, 0x0b, 0x0b, 0x0b, 0x08, 0x0e, 0xd5, 0x60, 0x61, 0x62, 0x62, 0x64, 0x62, 0x64, 0x62, 0x65, 0x61, 0x62, 0x65, 0x62, 0x62, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x61, 0x61, 0x61, 0x61, 0x61, 0x61, 0x61, 0x61, 0x61, 0x61, 0x5f, 0x61, 0x5f, 0x61, 0x5f, 0x5f, 0x61, 0x5f, 0x5f, 0x5f, 0x5b, 0x5f, 0xe7, 0xec, 0xea, 0xeb, 0xeb, 0xeb, 0xea, 0xeb, 0xea, 0xea, 0xea, 0xe9, 0xea, 0xeb, 0xeb, 0xc6, 0xeb, 0xc6, 0xea, 0xc6, 0xe7, 0xe9, 0xe9, 0xe7, 0xe9, 0xe9, 0xe7, 0xe9, 0xe7, 0xe7, 0xe7, 0xe7, 0xe7, 0xe7, 0xe7, 0xe7, 0xe6, 0xe5, 0xec, 0xe8, 0x10, 0xe8, 0xe5, 0xe5, 0xe5, 0xe7, 0xe5, 0xe7, 0xe8, 0xe5, 0xe8, 0xe8, 0xe8, 0xe8, 0xec, 0x15, 0x15, 0x15, 0x15, 0x1a, 0x24, 0x28, 0x26, 0x2e, 0x26, 0x35, 0xf5, 0x28, 0x2f, 0x28, 0x28, 0x2f, 0x28, 0x2f, 0x2b, 0x2f, 0x2b, 0x2c, 0x32, 0x2b, 0x2b, 0x2c, 0x2d, 0x2d, 0x31, 0xf2, 0xf3, 0xf4, 0xd9, 0xf4, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0x28, 0x2a, 0x28, 0x23, 0x1f, 0x1f, 0x1f, 0x21, 0x28, 0x2b, 0xf6, 0x9c, 0x98, 0x9e, 0x98, 0x9e, 0x9e, 0x9e, 0x9e, 0x9c, 0xf8, 0x38, 0x38, 0x33, 0x3f, 0x41, 0x40, 0x41, 0x40, 0x41, 0x40, 0x41, 0x40, 0x43, 0x43, 0x43, 0xfd, 0x3c, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x33, 0x2e, 0x1f, 0xf2, 0xca, 0xd8, 0xf1, 0xd9, 0xf1, 0xd8,
0xbe, 0xbb, 0xbd, 0xbd, 0xbe, 0xbe, 0xbf, 0xbf, 0xbf, 0xbf, 0xd0, 0xbf, 0xc0, 0xc1, 0xbf, 0xb9, 0xb9, 0xb9, 0xb9, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb6, 0xb6, 0xb6, 0xb5, 0xb6, 0xb5, 0xb5, 0xb5, 0xb3, 0xb5, 0xb3, 0xb1, 0xaf, 0xb5, 0x99, 0x89, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x96, 0x91, 0x50, 0xaa, 0xba, 0xb7, 0xb6, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb9, 0xb7, 0xb9, 0xb7, 0xb9, 0xb9, 0xb9, 0xb9, 0xba, 0xba, 0xb9, 0xb9, 0xb9, 0xb0, 0xcd, 0xcd, 0xcd, 0xcd, 0xcd, 0xcd, 0xcd, 0xcd, 0xac, 0xcd, 0xcd, 0xcd, 0xcd, 0xcd, 0xb0, 0xac, 0xb2, 0xac, 0xac, 0xb0, 0xac, 0xb2, 0xb2, 0xb0, 0xb2, 0xb0, 0xb2, 0xb2, 0xb2, 0xb2, 0xb0, 0xae, 0xb2, 0xb2, 0xdb, 0xf8, 0xf8, 0xf8, 0xdb, 0xf8, 0xdb, 0xf8, 0xf8, 0xf8, 0xdb, 0xf8, 0xdb, 0xdb, 0xdb, 0xa5, 0xa5, 0xa5, 0xa5, 0xa5, 0xac, 0xa8, 0xa8, 0xa8, 0xa8, 0xa0, 0xa5, 0xa8, 0xa8, 0xa8, 0xa5, 0xa8, 0xa0, 0xa5, 0xa0, 0xa5, 0xa8, 0xa5, 0xa5, 0xa8, 0x9e, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0x9e, 0xa0, 0xa8, 0x9e, 0xca, 0xf0, 0xec, 0x06, 0x05, 0x05, 0x09, 0x0e, 0x0b, 0x0b, 0x0a, 0xe9, 0xe9, 0xec, 0xe9, 0xed, 0xea, 0xeb, 0xeb, 0xeb, 0xc7, 0xc7, 0x72, 0xc7, 0x72, 0x72, 0x74, 0x6a, 0x6a, 0x6c, 0x6a, 0x6c, 0x70, 0x62, 0x55, 0x5b, 0x5b, 0x5b, 0x5b, 0x5b, 0x5b, 0x5b, 0x5b, 0x59, 0x62, 0x75, 0x74, 0x70, 0x70, 0x74, 0x70, 0x74, 0x70, 0x75, 0x70, 0x70, 0x70, 0x74, 0x70, 0x74, 0x74, 0x74, 0x74, 0x72, 0x74, 0x74, 0x70, 0x70, 0x72, 0x70, 0x74, 0x6a, 0x5f, 0x61, 0x62, 0x61, 0x5f, 0x62, 0x5f, 0x61, 0x61, 0x62, 0x61, 0x61, 0x61, 0x5f, 0x62, 0x7c, 0x8a, 0x82, 0x7d, 0x92, 0xa4, 0x9d, 0x9a, 0x9d, 0x9a, 0x9d, 0x9d, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0xa1, 0x0e, 0x0b, 0x0b, 0x0b, 0x0b, 0x08, 0x0a, 0x61, 0x60, 0x61, 0x62, 0x64, 0x62, 0x65, 0x62, 0x64, 0x62, 0x64, 0x62, 0x64, 0x62, 0x64, 0x62, 0x5f, 0x5f, 0x5f, 0x5f, 0x61, 0x61, 0x61, 0x61, 0x61, 0x61, 0x61, 0x5f, 0x62, 0x5f, 0x61, 0x5f, 0x61, 0x61, 0x5f, 0x61, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5b, 0x59, 0xe1, 0xe5, 0xe7, 0xe6, 0xe7, 0xea, 0xe7, 0xea, 0xea, 0xea, 0xe9, 0xea, 0xe9, 0xea, 0xeb, 0xc6, 0xeb, 0xc6, 0xea, 0xc6, 0xe9, 0xe5, 0xe9, 0xe7, 0xe9, 0xe9, 0xe9, 0xe7, 0xe7, 0xe7, 0xe7, 0xe6, 0xe7, 0xe7, 0xe7, 0xe6, 0xe7, 0x10, 0xec, 0x10, 0xe8, 0x10, 0xe7, 0xe5, 0xe7, 0xe5, 0xe5, 0xe8, 0xe7, 0xe8, 0xe8, 0xe8, 0xe9, 0x10, 0x1b, 0x15, 0x1b, 0x15, 0x15, 0x1a, 0x1a, 0x22, 0x2b, 0x2a, 0x2f, 0x2c, 0x28, 0x28, 0x28, 0x2f, 0x28, 0x28, 0x28, 0x28, 0x2b, 0x2b, 0x2b, 0x32, 0x2b, 0x2b, 0x2c, 0x2c, 0x31, 0xf2, 0xf5, 0xf3, 0xf4, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xca, 0x29, 0x26, 0x2a, 0x1f, 0x23, 0x1f, 0x1f, 0x1f, 0x21, 0x20, 0x2c, 0xf7, 0x9c, 0xcc, 0x9e, 0xcc, 0x9e, 0xcc, 0x9e, 0xa0, 0xf7, 0x38, 0x38, 0x38, 0x3b, 0x41, 0x3c, 0x40, 0x41, 0x40, 0x40, 0x41, 0x41, 0x43, 0x43, 0x43, 0x43, 0xfd, 0x36, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x33, 0x30, 0x23, 0x27, 0x84, 0xd9, 0xf1, 0xd8, 0xf1, 0xd9,
0xbe, 0xbb, 0xbb, 0xbd, 0xbd, 0xbd, 0xbe, 0xbe, 0xbf, 0xbf, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xb7, 0xb3, 0xb6, 0xb5, 0xb5, 0xb5, 0xb3, 0xb3, 0xb3, 0xb1, 0xb1, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xad, 0xad, 0xad, 0xad, 0xad, 0x91, 0x89, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x96, 0x91, 0x96, 0x96, 0x96, 0x96, 0x91, 0x50, 0xab, 0xb9, 0xb6, 0xb7, 0xb7, 0xb7, 0xb9, 0xb7, 0xb9, 0xb7, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xba, 0xb9, 0xba, 0xb0, 0xcd, 0xcd, 0xac, 0xcd, 0xcd, 0xcd, 0xcd, 0xac, 0xcd, 0xac, 0xcd, 0xac, 0xcd, 0xac, 0xcd, 0xb0, 0xac, 0xb0, 0xac, 0xb0, 0xac, 0xb2, 0xac, 0xb2, 0xac, 0xb2, 0xae, 0xb2, 0xb2, 0xb2, 0xb2, 0xb2, 0xb2, 0xb2, 0xb2, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xdb, 0xf8, 0xdb, 0xdb, 0xdb, 0xa5, 0xdb, 0xa5, 0xdb, 0xa5, 0xa5, 0xa5, 0xa8, 0xa8, 0xa8, 0xa8, 0xa8, 0xa8, 0xa8, 0xa5, 0xa8, 0xa0, 0xa5, 0xa8, 0xa5, 0xa0, 0xa8, 0xa0, 0xa5, 0xa5, 0xa5, 0xa8, 0xcc, 0xcc, 0xcc, 0x9e, 0xcc, 0xcc, 0x98, 0xcc, 0x98, 0xa0, 0xa3, 0x98, 0xd9, 0xee, 0xec, 0x0c, 0x06, 0x04, 0x0b, 0x0e, 0xed, 0xe9, 0xe9, 0xed, 0xea, 0xea, 0xeb, 0xeb, 0xeb, 0xc7, 0xc7, 0xc7, 0x72, 0x72, 0x72, 0x74, 0x70, 0x6a, 0x6a, 0x6c, 0x6a, 0x70, 0x5b, 0x59, 0x5b, 0x5b, 0x5b, 0x5b, 0x5b, 0x5b, 0x5b, 0x5b, 0x5b, 0x59, 0x62, 0x75, 0x74, 0x70, 0x70, 0x74, 0x70, 0x70, 0x70, 0x70, 0x75, 0x70, 0x70, 0x74, 0x70, 0x70, 0x70, 0x70, 0x70, 0x72, 0x70, 0x74, 0x70, 0x74, 0x72, 0x74, 0x6a, 0x5f, 0x61, 0x5f, 0x62, 0x61, 0x61, 0x61, 0x5f, 0x61, 0x61, 0x5f, 0x62, 0x5f, 0x62, 0x5b, 0x61, 0x79, 0x8a, 0x7f, 0x99, 0xa1, 0x9d, 0x9d, 0x9a, 0x9d, 0x9a, 0x9d, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x9d, 0x90, 0x0b, 0x0b, 0x0b, 0x08, 0x0f, 0x0a, 0x62, 0x5f, 0x62, 0x64, 0x62, 0x64, 0x65, 0x65, 0x62, 0x64, 0x62, 0x64, 0x62, 0x64, 0x62, 0x64, 0x62, 0x61, 0x5f, 0x5f, 0x61, 0x61, 0x61, 0x5f, 0x61, 0x5f, 0x5f, 0xc3, 0x5b, 0x5a, 0x5b, 0x5a, 0x5b, 0x5a, 0x5b, 0x5a, 0x5b, 0x5f, 0x5f, 0x61, 0x5f, 0x64, 0x62, 0x62, 0x66, 0xd6, 0xd6, 0xea, 0xea, 0xe7, 0xe6, 0xe7, 0xe7, 0xe7, 0xe7, 0xe9, 0xe7, 0xe9, 0xea, 0xe7, 0xeb, 0xc6, 0xc6, 0xe7, 0xe9, 0xe7, 0xe9, 0xe7, 0xe7, 0xe7, 0xe7, 0xe9, 0xe7, 0xe7, 0xe7, 0xe6, 0xe7, 0xe7, 0xe7, 0xe7, 0xe9, 0x10, 0xec, 0xe8, 0xec, 0x10, 0xe8, 0xe5, 0xe7, 0xe5, 0xe8, 0xe5, 0xe8, 0xe8, 0xe8, 0xe8, 0xe9, 0x11, 0x1b, 0x11, 0x1b, 0x15, 0x15, 0x1a, 0x1a, 0x22, 0x24, 0x28, 0x2f, 0x28, 0x2f, 0x2f, 0x28, 0x28, 0x28, 0x28, 0x28, 0x28, 0x2b, 0x28, 0x2b, 0x2b, 0x2b, 0x2b, 0x2d, 0x2d, 0xf5, 0xf3, 0xf4, 0xf4, 0xf4, 0xcb, 0xd9, 0xcb, 0xd9, 0xd9, 0xd9, 0xca, 0xf3, 0x2a, 0x23, 0x23, 0x1f, 0x1f, 0x1f, 0x1f, 0x23, 0x21, 0x28, 0x2c, 0xcc, 0xa0, 0xcc, 0xcc, 0x9e, 0xcc, 0x9e, 0x9c, 0xf9, 0x38, 0x38, 0x38, 0x38, 0x40, 0x41, 0x41, 0x40, 0x41, 0x40, 0x40, 0x3e, 0x43, 0xfa, 0x43, 0x43, 0xdc, 0x43, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x33, 0x33, 0x26, 0x22, 0xca, 0xf1, 0xd8, 0xd9, 0xd8, 0xd8,
0xbf, 0xbd, 0xbd, 0xbb, 0xbd, 0xbe, 0xbe, 0xbe, 0xbf, 0xbf, 0xbf, 0xc0, 0xbf, 0xc1, 0xc0, 0xb7, 0xaf, 0xaf, 0xb1, 0xb1, 0xaf, 0xb1, 0xaf, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xaf, 0xb1, 0xaf, 0xaf, 0xad, 0xaf, 0xad, 0xab, 0xad, 0xad, 0x50, 0x89, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x96, 0x91, 0x96, 0x91, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x91, 0x9d, 0xb5, 0xb1, 0xb3, 0xb3, 0xb5, 0xb5, 0xb6, 0xb6, 0xb7, 0xb7, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xb7, 0xb9, 0xb9, 0xb9, 0xb4, 0xfb, 0xcd, 0xcd, 0xac, 0xcd, 0xac, 0xcd, 0xcd, 0xcd, 0xcd, 0xac, 0xcd, 0xcd, 0xcd, 0xcd, 0xcd, 0xac, 0xb2, 0xac, 0xb0, 0xac, 0xb0, 0xae, 0xb0, 0xb2, 0xb2, 0xac, 0xb2, 0xac, 0xb2, 0xae, 0xac, 0xb2, 0xae, 0xb2, 0xb2, 0xf8, 0xf8, 0xdb, 0xf8, 0xdb, 0xf8, 0xdb, 0xf8, 0xdb, 0xdb, 0xdb, 0xdb, 0xdb, 0xdb, 0xdb, 0xa5, 0xa5, 0xa5, 0xa5, 0xa5, 0xa8, 0xa8, 0xa8, 0xa8, 0xa0, 0xa5, 0xa0, 0xa8, 0xa5, 0xa8, 0xa5, 0xa0, 0xa5, 0xa0, 0xa5, 0xa0, 0xa5, 0xa0, 0xa5, 0xa5, 0xcc, 0xcc, 0xcc, 0xcc, 0x9e, 0xcc, 0xcc, 0x94, 0x98, 0xcc, 0x98, 0xa3, 0xa3, 0x98, 0xca, 0xd7, 0xec, 0x04, 0x0c, 0xe8, 0xe8, 0xe9, 0xe9, 0xea, 0xea, 0xeb, 0xeb, 0xc7, 0xeb, 0xc7, 0x72, 0xc7, 0x74, 0x72, 0x74, 0x74, 0x70, 0x6a, 0x6a, 0x6a, 0x6a, 0x5f, 0x59, 0x5a, 0x5b, 0x5b, 0x5b, 0x5b, 0x5b, 0x5b, 0x5b, 0x5b, 0x5b, 0x57, 0x62, 0x74, 0x75, 0x70, 0x70, 0x74, 0x70, 0x74, 0x70, 0x70, 0x74, 0x70, 0x70, 0x70, 0x70, 0x70, 0x74, 0x70, 0x74, 0x70, 0x72, 0x74, 0x72, 0x70, 0x72, 0x61, 0x59, 0x5a, 0x5f, 0x5a, 0x5b, 0x5a, 0x5b, 0x5a, 0x5b, 0x5b, 0x5b, 0x5a, 0x5b, 0x5b, 0x5f, 0x57, 0x59, 0x68, 0x8a, 0xa4, 0x9d, 0x9a, 0x9a, 0x9a, 0x9d, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x96, 0x9a, 0x9d, 0x88, 0x04, 0x0b, 0x0b, 0x08, 0x09, 0x5d, 0x62, 0x61, 0x62, 0x65, 0x62, 0x65, 0x62, 0x64, 0x62, 0x64, 0x62, 0x64, 0x62, 0x64, 0x62, 0x64, 0x62, 0x61, 0x5f, 0x61, 0x5f, 0x5f, 0x61, 0x61, 0x62, 0x62, 0x66, 0x6a, 0x6a, 0x70, 0x74, 0x75, 0x75, 0x7b, 0x7b, 0x81, 0x85, 0x81, 0x87, 0x8d, 0x8f, 0x8d, 0x92, 0x91, 0xca, 0x25, 0xf4, 0xf1, 0xf1, 0xf0, 0xee, 0xee, 0xed, 0xe9, 0xe7, 0xe7, 0xe5, 0xe4, 0xe7, 0xe4, 0xe7, 0xc6, 0xe6, 0xe7, 0xe8, 0xe7, 0xe9, 0xe7, 0xe8, 0xe7, 0xe7, 0xe9, 0xe7, 0xe7, 0xe7, 0xe7, 0xe6, 0xe7, 0xe6, 0xe8, 0xec, 0x10, 0xec, 0x10, 0xec, 0xec, 0x10, 0xe8, 0xe5, 0xe5, 0xe8, 0xe8, 0xe8, 0xe8, 0xe8, 0xe8, 0xec, 0x15, 0x15, 0x15, 0x15, 0x15, 0x1a, 0x1a, 0x17, 0x17, 0x20, 0x20, 0x28, 0x28, 0x28, 0x2f, 0x2a, 0x28, 0x2a, 0x28, 0x28, 0x28, 0x2f, 0x2b, 0x2b, 0x2b, 0x32, 0x2d, 0x31, 0xf5, 0xf4, 0xf4, 0xcb, 0xf4, 0xcb, 0xf4, 0xd9, 0xcb, 0xd9, 0xd9, 0xd9, 0xca, 0x29, 0x26, 0x1f, 0x23, 0x1f, 0x23, 0x1f, 0x1f, 0x1f, 0x21, 0x28, 0x2d, 0xcc, 0xa0, 0xcc, 0xcc, 0x9e, 0x9e, 0x9c, 0xf9, 0x33, 0x38, 0x38, 0x38, 0x3d, 0x41, 0x3c, 0x40, 0x41, 0x40, 0x41, 0x42, 0x43, 0x43, 0x43, 0xfa, 0x43, 0xfd, 0x39, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x33, 0x33, 0x2e, 0x24, 0x84, 0xd8, 0xd9, 0xf1, 0xf1, 0xd9,
0xbf, 0xbe, 0xbd, 0xbd, 0xbd, 0xbd, 0xbe, 0xbe, 0xbe, 0xbf, 0xbf, 0xc0, 0xc0, 0xc0, 0xc0, 0xb9, 0xb5, 0xb1, 0xb1, 0xb1, 0xb3, 0xb1, 0xb3, 0xb1, 0xaf, 0xb1, 0xaf, 0xb1, 0xaf, 0xaf, 0xaf, 0xad, 0xaf, 0xad, 0xab, 0xad, 0xaf, 0xa6, 0x50, 0x50, 0x50, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x96, 0x91, 0x91, 0x91, 0x91, 0x96, 0x91, 0x96, 0x91, 0x96, 0x96, 0x96, 0x96, 0x91, 0xa6, 0xb7, 0xb1, 0xaf, 0xaf, 0xaf, 0xaf, 0xb1, 0xaf, 0xb1, 0xb3, 0xb3, 0xb5, 0xb5, 0xb6, 0xb6, 0xb7, 0xb7, 0xb9, 0xb9, 0xba, 0xbb, 0xb7, 0xcd, 0xac, 0xcd, 0xcd, 0xcd, 0xcd, 0xcd, 0xac, 0xcd, 0xac, 0xcd, 0xac, 0xcd, 0xac, 0xcd, 0xac, 0xcd, 0xac, 0xac, 0xac, 0xac, 0xb2, 0xac, 0xb2, 0xac, 0xb2, 0xb2, 0xb2, 0xae, 0xb2, 0xb2, 0xb2, 0xb2, 0xb2, 0xb2, 0xb3, 0xac, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xdb, 0xdb, 0xdb, 0xdb, 0xdb, 0xdb, 0xa5, 0xdb, 0xa5, 0xdb, 0xa5, 0xa5, 0xa5, 0xa5, 0xa8, 0xa8, 0xa8, 0xa8, 0xa8, 0xa5, 0xa5, 0xa5, 0xa0, 0xa5, 0xa8, 0xa5, 0xa5, 0xa0, 0xa5, 0xa5, 0xa5, 0xa5, 0xa0, 0xa5, 0xcc, 0x94, 0x9e, 0x94, 0xcc, 0x98, 0xcc, 0x98, 0x94, 0x98, 0x94, 0x98, 0x98, 0xa0, 0xa3, 0x9c, 0xd8, 0xd7, 0xd6, 0xed, 0xe9, 0xe8, 0xe7, 0xe9, 0xeb, 0xeb, 0xc7, 0xc7, 0xc7, 0xc7, 0x72, 0x72, 0x72, 0x74, 0x74, 0x70, 0x6a, 0x6a, 0x6e, 0x6a, 0x59, 0x59, 0x5b, 0x5b, 0x5b, 0x5b, 0x5b, 0x5b, 0x5b, 0x5b, 0x5b, 0x5b, 0x5b, 0x59, 0x5f, 0x74, 0x74, 0x70, 0x74, 0x74, 0x70, 0x70, 0x70, 0x70, 0x74, 0x70, 0x70, 0x70, 0x72, 0x70, 0x72, 0x6e, 0x6e, 0x6a, 0x6e, 0x6e, 0x77, 0x79, 0x77, 0x70, 0x74, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x6c, 0x70, 0x6a, 0x66, 0x85, 0x95, 0x9a, 0x9d, 0x9d, 0x9d, 0x9a, 0x9a, 0x9a, 0x96, 0x9a, 0x96, 0x9a, 0x96, 0x9a, 0x96, 0x9a, 0x9a, 0xef, 0x04, 0x08, 0x12, 0x07, 0x60, 0x61, 0x62, 0x65, 0x62, 0x65, 0x64, 0x65, 0x65, 0x64, 0x62, 0x64, 0x62, 0x64, 0x62, 0x61, 0x62, 0x64, 0x62, 0x64, 0x7b, 0x85, 0x85, 0x85, 0x87, 0x8c, 0x8d, 0x8f, 0x97, 0x95, 0x95, 0x99, 0x99, 0x99, 0x99, 0x95, 0x99, 0x95, 0x97, 0x95, 0x92, 0x8f, 0x8f, 0x8f, 0x91, 0xd8, 0x20, 0xf3, 0xf4, 0xf3, 0xf3, 0xf6, 0xf3, 0xf3, 0xf3, 0xf0, 0xf0, 0xee, 0xee, 0xed, 0xed, 0xe9, 0xe7, 0xe6, 0xe6, 0xe5, 0xe9, 0xe7, 0xe7, 0xe7, 0xe7, 0xe7, 0xe9, 0xe7, 0xe9, 0xe7, 0xe7, 0xe6, 0xe7, 0xe6, 0xe7, 0x10, 0x10, 0xec, 0x10, 0xec, 0x10, 0xec, 0xec, 0xe8, 0xe8, 0xe5, 0xe8, 0xe8, 0xe8, 0xe8, 0xe8, 0xe8, 0x1b, 0x15, 0x1b, 0x15, 0x15, 0x15, 0x1a, 0x1a, 0x1a, 0x17, 0x1d, 0x21, 0x20, 0x28, 0x28, 0x28, 0x2f, 0x28, 0x2a, 0x2f, 0x2a, 0x28, 0x28, 0x32, 0x2b, 0x2c, 0x35, 0x31, 0xf6, 0xf4, 0xcb, 0xcb, 0xcb, 0xcb, 0xcb, 0xcb, 0xd9, 0xd9, 0xca, 0xd9, 0xca, 0xf2, 0x26, 0x23, 0x1f, 0x23, 0x1f, 0x1f, 0x23, 0x1f, 0x23, 0x1f, 0x28, 0x2d, 0x9c, 0x9e, 0xcc, 0x9e, 0xcc, 0x9f, 0x37, 0x38, 0x38, 0x38, 0x38, 0x3b, 0x41, 0x40, 0x41, 0x40, 0x3c, 0x40, 0x3e, 0x43, 0xfa, 0x43, 0x43, 0x43, 0xfc, 0xfc, 0x33, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x33, 0x33, 0x2e, 0x28, 0xd8, 0xd9, 0xf1, 0xf1, 0xd8, 0xf1,
0xbf, 0xbf, 0xbe, 0xbd, 0xbd, 0xbd, 0xbe, 0xbe, 0xbe, 0xbf, 0xcf, 0xc0, 0xc0, 0xc0, 0xd0, 0xb7, 0xb7, 0xb5, 0xb1, 0xaf, 0xb1, 0xaf, 0xb1, 0xaf, 0xaf, 0xb1, 0xaf, 0xb1, 0xad, 0xad, 0xaf, 0xad, 0xad, 0xad, 0xab, 0xad, 0xaf, 0xa4, 0x89, 0x50, 0x50, 0x50, 0x91, 0x96, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x96, 0x91, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x91, 0xa9, 0xba, 0xb1, 0xaf, 0xb1, 0xb1, 0xaf, 0xb1, 0xaf, 0xaf, 0xaf, 0xad, 0xad, 0xaf, 0xaf, 0xaf, 0xaf, 0xb1, 0xb1, 0xb3, 0xb5, 0xb6, 0xb7, 0xb0, 0xcd, 0xcd, 0xcd, 0xcd, 0xac, 0xcd, 0xcd, 0xac, 0xcd, 0xcd, 0xcd, 0xac, 0xcd, 0xac, 0xcd, 0xcd, 0xac, 0xb0, 0xac, 0xb0, 0xac, 0xb2, 0xac, 0xb2, 0xae, 0xb2, 0xac, 0xae, 0xb0, 0xae, 0xb2, 0xae, 0xb2, 0xae, 0xb2, 0xb3, 0xcd, 0xf7, 0xf8, 0xdb, 0xf8, 0xdb, 0xf8, 0xdb, 0xf8, 0xdb, 0xdb, 0xdb, 0xdb, 0xdb, 0xdb, 0xa5, 0xa5, 0xa5, 0xa5, 0xa5, 0xa5, 0xa0, 0xa8, 0xa8, 0xa5, 0xa8, 0xa5, 0xa5, 0xa5, 0xa8, 0xa5, 0xa5, 0xa0, 0xa5, 0xa5, 0xa5, 0xa5, 0xa5, 0xa5, 0xa5, 0x9e, 0xcc, 0xcc, 0xcc, 0x98, 0xcc, 0xcc, 0x98, 0xcc, 0x98, 0x94, 0x98, 0x98, 0x98, 0x98, 0x98, 0x9f, 0x90, 0x93, 0x8e, 0x8e, 0x84, 0xc9, 0xeb, 0xeb, 0xe7, 0xea, 0xc6, 0xc7, 0x72, 0x72, 0x72, 0x74, 0x70, 0x74, 0x74, 0x70, 0x6a, 0x6a, 0x66, 0x5a, 0x59, 0x5a, 0x5b, 0x5b, 0x5b, 0x5b, 0x5b, 0x5b, 0x5b, 0x5b, 0x5b, 0x5b, 0x5b, 0x59, 0x5f, 0x70, 0x77, 0x70, 0x70, 0x70, 0x74, 0x70, 0x70, 0x70, 0x70, 0x6e, 0x70, 0x6a, 0x6e, 0x6a, 0x74, 0x74, 0x7c, 0x82, 0x8a, 0x8c, 0x93, 0x9f, 0xa1, 0x9d, 0x52, 0x9d, 0x52, 0xa1, 0x9d, 0xa1, 0x9d, 0x9d, 0x9d, 0x9d, 0x9d, 0x9d, 0x9d, 0x9d, 0x9d, 0x9d, 0x8c, 0x7b, 0x76, 0x7e, 0x8b, 0x51, 0x9a, 0x9a, 0x9a, 0x9d, 0x9d, 0x9a, 0x9a, 0x9a, 0x96, 0x9a, 0x96, 0x9a, 0x9a, 0x11, 0x04, 0x0e, 0xe4, 0x60, 0x61, 0x62, 0x61, 0x65, 0x62, 0x65, 0x62, 0x65, 0x62, 0x65, 0x62, 0x65, 0x62, 0x64, 0x65, 0x64, 0x65, 0x64, 0x64, 0x6a, 0x8f, 0xa1, 0x95, 0x92, 0x95, 0x92, 0x8f, 0x8d, 0x8f, 0x8d, 0x8f, 0x8d, 0x8f, 0x8d, 0x8f, 0x8d, 0x8f, 0x8f, 0x8d, 0x8f, 0x8f, 0x8f, 0x8d, 0x91, 0xca, 0x1e, 0x22, 0xf3, 0xd9, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf5, 0xf5, 0xf3, 0xf5, 0xf2, 0xf2, 0xf0, 0xf0, 0xf0, 0xea, 0x06, 0xe8, 0xe7, 0xe9, 0xe7, 0xea, 0xe7, 0xe7, 0xe7, 0xe7, 0xe8, 0xe7, 0xe7, 0xe6, 0xe6, 0xe8, 0xec, 0x10, 0xec, 0x10, 0xec, 0xec, 0x15, 0xec, 0xec, 0xe8, 0xe5, 0xe8, 0xe8, 0xe8, 0xe8, 0xe8, 0x11, 0x15, 0x11, 0x15, 0x15, 0x15, 0x15, 0x15, 0x1a, 0x1a, 0x1a, 0x17, 0x1d, 0x20, 0x24, 0x28, 0x28, 0x2f, 0x28, 0x2a, 0x28, 0x2f, 0x28, 0x2f, 0x2b, 0x32, 0x31, 0xf5, 0xda, 0xda, 0xcb, 0xcb, 0xcb, 0xda, 0xcb, 0xcb, 0xcb, 0xf4, 0xf4, 0xd9, 0xca, 0xd9, 0x20, 0x26, 0x1f, 0x23, 0x1f, 0x23, 0x1f, 0x23, 0x1f, 0x23, 0x23, 0x21, 0xf5, 0xa0, 0x9e, 0xcc, 0x9e, 0x9c, 0x37, 0x38, 0x38, 0x3a, 0x38, 0x38, 0x40, 0x40, 0x3c, 0x41, 0x40, 0x41, 0x43, 0x43, 0x43, 0x43, 0x43, 0x43, 0xfa, 0xfd, 0x3e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x30, 0x33, 0x30, 0x21, 0xf1, 0xd8, 0xd8, 0xd8, 0xf1, 0xf1,
0xbf, 0xbf, 0xbf, 0xbd, 0xbd, 0xbd, 0xbd, 0xbe, 0xbe, 0xbf, 0xbf, 0xbf, 0xc0, 0xc0, 0xc0, 0xb9, 0xb5, 0xb7, 0xb5, 0xaf, 0xb1, 0xaf, 0xaf, 0xb1, 0xaf, 0xaf, 0xad, 0xaf, 0xad, 0xaf, 0xad, 0xad, 0xad, 0xab, 0xad, 0xad, 0xb1, 0x99, 0x89, 0x50, 0x50, 0x50, 0x50, 0x91, 0x96, 0x91, 0x91, 0x91, 0x96, 0x91, 0x96, 0x96, 0x91, 0x96, 0x91, 0x96, 0x91, 0x96, 0x96, 0x96, 0x96, 0x96, 0x91, 0xad, 0xb7, 0xb5, 0xb1, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xad, 0xaf, 0xad, 0xaf, 0xad, 0xab, 0xad, 0x9e, 0x31, 0xb0, 0xac, 0xcd, 0xcd, 0xcd, 0xac, 0xcd, 0xcd, 0xac, 0xcd, 0xac, 0xcd, 0xac, 0xcd, 0xac, 0xcd, 0xac, 0xcd, 0xac, 0xac, 0xae, 0xac, 0xb2, 0xac, 0xb2, 0xae, 0xb2, 0xae, 0xb2, 0xae, 0xb2, 0xae, 0xb2, 0xb2, 0xae, 0xb2, 0xb2, 0xa5, 0xf8, 0xf8, 0xdb, 0xf8, 0xdb, 0xf8, 0xdb, 0xdb, 0xdb, 0xdb, 0xa5, 0xdb, 0xdb, 0xa5, 0xdb, 0xa5, 0xdb, 0xa5, 0xa5, 0xa5, 0xa5, 0xa8, 0xa8, 0xa5, 0xa5, 0xa8, 0xa5, 0xa5, 0xa5, 0xa5, 0xa5, 0xa5, 0x9e, 0xa5, 0x9e, 0xa5, 0x9e, 0xa5, 0xa5, 0x9e, 0xcc, 0x98, 0xcc, 0x98, 0x9e, 0x94, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x94, 0x8a, 0x8e, 0x90, 0x93, 0x93, 0x9b, 0x90, 0x8e, 0x88, 0x7d, 0xc9, 0xc7, 0xc7, 0x68, 0x6e, 0x72, 0x72, 0x74, 0x74, 0x74, 0x6a, 0x70, 0x65, 0x59, 0x5b, 0x59, 0x5b, 0x5b, 0x5b, 0x5b, 0x5b, 0x5b, 0x5f, 0x5b, 0x5f, 0x5b, 0x5b, 0x5b, 0x59, 0x5f, 0x70, 0x77, 0x74, 0x6e, 0x70, 0x70, 0x6a, 0x6a, 0x6e, 0x6e, 0x74, 0x79, 0x7f, 0x82, 0x8c, 0x90, 0x93, 0x93, 0x93, 0x93, 0x90, 0x9b, 0x9b, 0x97, 0x92, 0x95, 0x97, 0x95, 0x97, 0x95, 0x97, 0x95, 0x95, 0x95, 0x97, 0x95, 0x95, 0x95, 0x95, 0x9a, 0x8d, 0x7d, 0x79, 0x75, 0x67, 0x6d, 0x76, 0x7e, 0x86, 0x8b, 0x51, 0x96, 0x96, 0x9a, 0x9d, 0x9a, 0x9a, 0x96, 0x9a, 0x92, 0x08, 0x0b, 0xe6, 0x5d, 0x62, 0x64, 0x62, 0x62, 0x62, 0x65, 0x65, 0x65, 0x65, 0x65, 0x64, 0x65, 0x64, 0x65, 0x65, 0x64, 0x65, 0x64, 0x65, 0xd5, 0x65, 0x7a, 0x99, 0x8d, 0x8d, 0x8d, 0x8d, 0x92, 0x8d, 0x8f, 0x8d, 0x8f, 0x8d, 0x8f, 0x8d, 0x8f, 0x8d, 0x8f, 0x8f, 0x8d, 0x8f, 0x8d, 0x51, 0x51, 0x84, 0x20, 0x1d, 0x22, 0xf4, 0xf1, 0xf3, 0xf3, 0xf1, 0xf3, 0xf3, 0xf2, 0xf3, 0xf3, 0xf3, 0xf2, 0xf3, 0xf2, 0x31, 0xf7, 0x8b, 0xeb, 0x04, 0x0a, 0x0c, 0x0c, 0x09, 0x10, 0xe7, 0xe8, 0xe7, 0xe7, 0xe7, 0xe7, 0xe7, 0xe6, 0xe8, 0xec, 0x10, 0xec, 0x11, 0xec, 0x11, 0xec, 0xec, 0x15, 0xec, 0x10, 0xe5, 0xe8, 0xe8, 0xe9, 0xe8, 0xe8, 0x15, 0x15, 0x1b, 0x15, 0x15, 0x15, 0x1b, 0x15, 0x1a, 0x1a, 0x1a, 0x1a, 0x1a, 0x1a, 0x1a, 0x24, 0x24, 0x2f, 0x28, 0x2f, 0x2a, 0x2f, 0x28, 0x32, 0x2c, 0x37, 0xf7, 0xda, 0x94, 0xcc, 0xcc, 0x94, 0xcc, 0xcb, 0xcc, 0xcb, 0xcc, 0xcb, 0xcb, 0xcb, 0x94, 0xf2, 0x23, 0x23, 0x23, 0x1f, 0x23, 0x1f, 0x23, 0x1f, 0x23, 0x1f, 0x23, 0x21, 0xf6, 0x9c, 0xcc, 0xcc, 0x9c, 0x3c, 0x33, 0x3a, 0x38, 0x38, 0x38, 0x3d, 0x41, 0x40, 0x3c, 0x41, 0x3c, 0x43, 0xfa, 0x43, 0xfa, 0x43, 0x43, 0x43, 0xfc, 0xfd, 0x38, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x30, 0x38, 0x30, 0x2f, 0xf2, 0xd9, 0xf3, 0xd9, 0xd9, 0xd9,
0xbf, 0xbf, 0xbf, 0xbd, 0xbe, 0xbd, 0xbd, 0xbe, 0xbe, 0xbf, 0xbf, 0xc0, 0xc0, 0xc0, 0xd0, 0xb9, 0xb6, 0xb6, 0xb7, 0xb5, 0xaf, 0xad, 0xb1, 0xad, 0xaf, 0xaf, 0xad, 0xad, 0xad, 0xad, 0xaf, 0xad, 0xad, 0xad, 0xab, 0xad, 0xaf, 0x9a, 0x89, 0x50, 0x50, 0x50, 0x50, 0x91, 0x91, 0x96, 0x91, 0x96, 0x91, 0x91, 0x96, 0x91, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x91, 0x96, 0xb3, 0xb6, 0xb5, 0xb6, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xad, 0xaf, 0xad, 0xaf, 0xad, 0xad, 0xab, 0xad, 0xf4, 0x19, 0x31, 0xb4, 0xac, 0xcd, 0xac, 0xcd, 0xac, 0xcd, 0xac, 0xcd, 0xcd, 0xcd, 0xcd, 0xac, 0xcd, 0xac, 0xcd, 0xac, 0xac, 0xac, 0xac, 0xae, 0xae, 0xac, 0xae, 0xac, 0xae, 0xac, 0xae, 0xb2, 0xae, 0xb2, 0xae, 0xae, 0xb2, 0xae, 0xae, 0xb2, 0xdb, 0xf8, 0xf8, 0xdb, 0xdb, 0xdb, 0xdb, 0xdb, 0xdb, 0xdb, 0xdb, 0xdb, 0xa5, 0xdb, 0xa5, 0xdb, 0xa5, 0xa5, 0xa5, 0xa5, 0xa5, 0xa0, 0xa8, 0xa8, 0xa5, 0xa5, 0xa5, 0xa8, 0xa5, 0xa5, 0xa5, 0xa0, 0xa5, 0x9e, 0xa5, 0x9e, 0xa5, 0x9e, 0xa5, 0xa5, 0xcc, 0x94, 0xcc, 0x98, 0x94, 0x98, 0xcc, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x90, 0x88, 0x8a, 0x90, 0x90, 0x90, 0x90, 0x93, 0x93, 0x9b, 0x9b, 0x93, 0x93, 0x8a, 0x82, 0x77, 0x74, 0x6e, 0x6e, 0x6a, 0x74, 0x70, 0x6e, 0x62, 0x57, 0x59, 0x5a, 0x5b, 0x5b, 0x5b, 0x5b, 0x5b, 0x5b, 0x5b, 0x5b, 0x5a, 0x5b, 0x5a, 0x5b, 0x5a, 0x55, 0x5b, 0x6a, 0x74, 0x6a, 0x6a, 0x74, 0x74, 0x79, 0x7f, 0x8c, 0x8c, 0x93, 0x93, 0x97, 0x93, 0x93, 0x90, 0x93, 0x90, 0x90, 0x8d, 0x93, 0x9b, 0x9c, 0x95, 0x92, 0x92, 0x92, 0x95, 0x92, 0x95, 0x92, 0x92, 0x95, 0x95, 0x92, 0x95, 0x95, 0x92, 0x9a, 0x8c, 0x7c, 0x82, 0x82, 0x77, 0x66, 0x6c, 0x67, 0x6c, 0x6c, 0x6d, 0x76, 0x78, 0x81, 0x8b, 0x51, 0x96, 0x9a, 0x9a, 0xa1, 0x90, 0x08, 0xc4, 0x60, 0x61, 0x62, 0x64, 0x65, 0x65, 0x65, 0x65, 0x65, 0x65, 0x65, 0x65, 0x65, 0x65, 0x64, 0x64, 0x64, 0x65, 0x64, 0x65, 0xc6, 0xe6, 0x62, 0x76, 0x95, 0x8f, 0x8d, 0x8d, 0x8d, 0x8d, 0x8f, 0x8d, 0x8f, 0x8d, 0x8f, 0x8f, 0x8f, 0x8f, 0x8f, 0x8d, 0x8f, 0x8f, 0x8f, 0x8f, 0x50, 0xca, 0x1d, 0x24, 0x1d, 0x25, 0xd9, 0xf3, 0xf1, 0xf3, 0xf3, 0xf1, 0xf3, 0xf3, 0xf2, 0xf3, 0xf2, 0xf3, 0xf2, 0xf2, 0xf4, 0x89, 0x89, 0xeb, 0x0b, 0x08, 0x0e, 0x0e, 0x08, 0x0e, 0x0e, 0x0c, 0x0c, 0x10, 0xe8, 0xe8, 0xe7, 0xe7, 0xe9, 0xec, 0x10, 0xec, 0x10, 0xec, 0x15, 0xec, 0xec, 0x1b, 0x1b, 0x10, 0xe8, 0xe5, 0xe8, 0xe8, 0xe8, 0xec, 0x15, 0x15, 0x15, 0x15, 0x15, 0x15, 0x15, 0x15, 0x1a, 0x1a, 0x1a, 0x1a, 0x1a, 0x1a, 0x1b, 0x22, 0x22, 0x2b, 0x2b, 0x2b, 0x2b, 0x2f, 0x2b, 0x32, 0x31, 0x9e, 0x98, 0x9e, 0x98, 0x9e, 0x9e, 0x9c, 0x9e, 0x9c, 0x9e, 0x9c, 0x9e, 0x9e, 0x9e, 0x9e, 0xcb, 0x1e, 0x1f, 0x23, 0x23, 0x23, 0x23, 0x1f, 0x23, 0x1f, 0x23, 0x23, 0x23, 0x21, 0xda, 0xa3, 0xcc, 0x9e, 0x35, 0x38, 0x38, 0x3a, 0x3a, 0x38, 0x3a, 0x3c, 0x40, 0x3c, 0x40, 0x41, 0x43, 0x43, 0x43, 0x43, 0x43, 0x43, 0x43, 0xfa, 0xfd, 0x43, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x33, 0x33, 0x33, 0x2f, 0xf9, 0xf8, 0xf8, 0xf9, 0xf8, 0xf7,
0xbf, 0xbf, 0xbf, 0xbf, 0xbe, 0xbe, 0xbd, 0xbe, 0xbe, 0xbe, 0xbf, 0xbf, 0xc0, 0xc0, 0xc0, 0xba, 0xb5, 0xb7, 0xb6, 0xb9, 0xb5, 0xad, 0xaf, 0xaf, 0xaf, 0xad, 0xaf, 0xad, 0xad, 0xad, 0xad, 0xab, 0xad, 0xab, 0xad, 0xab, 0xb1, 0x51, 0x89, 0x50, 0x50, 0x50, 0x50, 0x50, 0x91, 0x96, 0x91, 0x96, 0x91, 0x96, 0x91, 0x96, 0x96, 0x91, 0x96, 0x91, 0x96, 0x96, 0x96, 0x96, 0x96, 0x91, 0x95, 0xb5, 0xb5, 0xb5, 0xb6, 0xb3, 0xad, 0xad, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xad, 0xaf, 0xad, 0xaf, 0xad, 0xad, 0xab, 0xad, 0xab, 0xa9, 0x2d, 0x1e, 0x20, 0x31, 0xb4, 0xac, 0xcd, 0xac, 0xcd, 0xac, 0xcd, 0xac, 0xac, 0xcd, 0xac, 0xcd, 0xac, 0xcd, 0xac, 0xcd, 0xcd, 0xac, 0xac, 0xae, 0xac, 0xb2, 0xae, 0xb2, 0xae, 0xae, 0xac, 0xae, 0xae, 0xae, 0xb2, 0xae, 0xae, 0xae, 0xb2, 0xb2, 0xae, 0xf8, 0xf8, 0xdb, 0xf8, 0xdb, 0xdb, 0xdb, 0xdb, 0xdb, 0xdb, 0xdb, 0xdb, 0xdb, 0xdb, 0xdb, 0xa5, 0xdb, 0xa5, 0xa5, 0xa5, 0xa5, 0xa8, 0xa8, 0xa8, 0xa5, 0xa8, 0xa5, 0xa5, 0xa5, 0xa5, 0xa5, 0x9e, 0xa5, 0x9e, 0xa5, 0xa5, 0xa5, 0x9e, 0xa5, 0xa5, 0xcc, 0x98, 0xcc, 0x94, 0x98, 0x98, 0x98, 0x94, 0x98, 0x98, 0x98, 0x90, 0x98, 0x8e, 0x8a, 0x8e, 0x8a, 0x90, 0x90, 0x90, 0x93, 0x90, 0x93, 0x90, 0x9b, 0x93, 0x52, 0x9b, 0x9b, 0x93, 0x8c, 0x85, 0x7b, 0x77, 0x74, 0x6a, 0x5a, 0x55, 0x59, 0x57, 0x59, 0x57, 0x5b, 0x5a, 0x5b, 0x5b, 0x5b, 0x5b, 0x5f, 0x5d, 0x5f, 0x5d, 0x5f, 0x60, 0x5d, 0x5d, 0x75, 0x85, 0x85, 0x8c, 0x8d, 0x93, 0x92, 0x93, 0x8d, 0x93, 0x8d, 0x93, 0x8c, 0x93, 0x90, 0x8d, 0x90, 0x93, 0x90, 0x93, 0x9b, 0x9b, 0x9b, 0x95, 0x92, 0x97, 0x92, 0x95, 0x92, 0x95, 0x97, 0x95, 0x97, 0x95, 0x95, 0x97, 0x95, 0x9a, 0x8c, 0x7c, 0x82, 0x82, 0x82, 0x7c, 0x6a, 0x66, 0x6a, 0x6c, 0x6a, 0x6c, 0x66, 0x6c, 0x6c, 0x6c, 0x71, 0x76, 0x81, 0x83, 0x96, 0x7d, 0xc3, 0x5f, 0x64, 0x62, 0x65, 0x64, 0x65, 0x65, 0x64, 0x65, 0x64, 0x65, 0x64, 0x65, 0x64, 0x65, 0x64, 0x65, 0x65, 0x64, 0x64, 0x64, 0xc6, 0x64, 0x62, 0x6d, 0x8f, 0x95, 0x8d, 0x8f, 0x8d, 0x8d, 0x8d, 0x8f, 0x8f, 0x8f, 0x8d, 0x8f, 0x8d, 0x8f, 0x8f, 0x8d, 0x8f, 0x8f, 0x8f, 0x51, 0x88, 0x20, 0x22, 0x24, 0x1d, 0x27, 0xd9, 0xf3, 0xf3, 0xf3, 0xf2, 0xf3, 0xf2, 0xf3, 0xf2, 0xf3, 0xf2, 0xf3, 0xf2, 0xcb, 0x89, 0x4f, 0x89, 0x77, 0x08, 0x08, 0x0e, 0x0e, 0x0e, 0x08, 0x12, 0x08, 0x0f, 0x08, 0x0e, 0x0e, 0x0c, 0x12, 0x1a, 0x11, 0x10, 0xec, 0x10, 0xec, 0x15, 0xec, 0x15, 0xec, 0x1b, 0xec, 0xe8, 0xe8, 0xe8, 0xe9, 0x11, 0x15, 0x15, 0x15, 0x15, 0x15, 0x15, 0x15, 0x15, 0x15, 0x1b, 0x1a, 0x1a, 0x1a, 0x1b, 0x1a, 0x1b, 0x1b, 0x1a, 0x22, 0x2b, 0x2c, 0x2c, 0x32, 0x32, 0xf8, 0xa7, 0x9c, 0xa0, 0xa3, 0x9c, 0xa0, 0xa0, 0x9e, 0x9e, 0x9e, 0xcc, 0xdb, 0xda, 0xf7, 0xf4, 0xd6, 0x15, 0x19, 0x16, 0x1c, 0x1c, 0x1f, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x28, 0xda, 0xa3, 0x98, 0x39, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x3f, 0x3c, 0x41, 0x3c, 0x42, 0xfa, 0x43, 0xfa, 0x43, 0xfa, 0x43, 0x43, 0x43, 0x43, 0xdd, 0x39, 0x2e, 0x2e, 0x2e, 0x2e, 0x33, 0x33, 0x33, 0x34, 0xf9, 0xf8, 0xf9, 0xf8, 0xf9, 0xf8,
0xbf, 0xbf, 0xc0, 0xbf, 0xbf, 0xbe, 0xbe, 0xbd, 0xbe, 0xbf, 0xbf, 0xbf, 0xbf, 0xc0, 0xc0, 0xba, 0xb6, 0xb6, 0xb7, 0xb6, 0xb7, 0xb5, 0xad, 0xad, 0xaf, 0xad, 0xaf, 0xad, 0xaf, 0xad, 0xad, 0xad, 0xab, 0xad, 0xab, 0xad, 0xad, 0x51, 0x89, 0x50, 0x50, 0x91, 0x50, 0x91, 0x50, 0x91, 0x96, 0x91, 0x96, 0x91, 0x96, 0x96, 0x91, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x91, 0x9d, 0xb6, 0xb5, 0xb5, 0xb5, 0xb6, 0xb1, 0xad, 0xad, 0xaf, 0xad, 0xaf, 0xad, 0xad, 0xad, 0xad, 0xab, 0xad, 0xab, 0xad, 0xab, 0xab, 0xaa, 0x24, 0x24, 0x24, 0x20, 0xf5, 0xb4, 0xac, 0xcd, 0xac, 0xcd, 0xac, 0xcd, 0xac, 0xcd, 0xac, 0xac, 0xac, 0xac, 0xcd, 0xac, 0xac, 0xcd, 0xac, 0xae, 0xae, 0xac, 0xae, 0xac, 0xae, 0xac, 0xae, 0xae, 0xae, 0xae, 0xae, 0xae, 0xae, 0xb2, 0xb2, 0xae, 0xb3, 0xac, 0xdb, 0xf8, 0xdb, 0xf8, 0xdb, 0xdb, 0xdb, 0xdb, 0xdb, 0xdb, 0xdb, 0xdb, 0xa5, 0xdb, 0xdb, 0xa5, 0xa5, 0x9e, 0xa5, 0x9e, 0xa5, 0xa0, 0xa8, 0xa5, 0xa8, 0xa5, 0xa5, 0xa0, 0xa5, 0xa0, 0xa5, 0x9e, 0xa5, 0x9e, 0xa5, 0x9e, 0xa5, 0x9e, 0xa5, 0x9e, 0x94, 0x98, 0x94, 0x98, 0x94, 0x98, 0x98, 0x94, 0x98, 0x98, 0x98, 0x98, 0x90, 0x8a, 0x8e, 0x8a, 0x8e, 0x90, 0x90, 0x93, 0x90, 0x93, 0x93, 0x93, 0x93, 0x93, 0x9b, 0x97, 0x9b, 0x52, 0xa2, 0xa2, 0x97, 0x92, 0x8a, 0x66, 0x5d, 0x60, 0x62, 0x63, 0x66, 0x63, 0x67, 0x67, 0x67, 0x67, 0x67, 0x6d, 0x69, 0x6d, 0x69, 0x71, 0x6d, 0x71, 0x69, 0x75, 0x8d, 0x97, 0x92, 0x8c, 0x93, 0x8d, 0x8d, 0x93, 0x8d, 0x93, 0x8c, 0x93, 0x8c, 0x93, 0x8c, 0x93, 0x90, 0x93, 0x9b, 0x9b, 0x9b, 0x9c, 0x93, 0x95, 0x92, 0x95, 0x97, 0x95, 0x92, 0x95, 0x92, 0x95, 0x95, 0x97, 0x51, 0x95, 0x95, 0x8c, 0x82, 0x7c, 0x82, 0x7f, 0x8a, 0x82, 0x74, 0x66, 0x6a, 0x6a, 0x6a, 0x6a, 0x6a, 0x6a, 0x6a, 0x68, 0x66, 0x65, 0x65, 0x68, 0x66, 0x64, 0x64, 0x64, 0x64, 0x64, 0x65, 0x64, 0x65, 0x65, 0x65, 0x65, 0x65, 0x64, 0x65, 0x65, 0x64, 0x65, 0x64, 0x65, 0x64, 0x64, 0x64, 0xe6, 0xc6, 0x68, 0x61, 0x67, 0x86, 0x95, 0x8d, 0x8d, 0x8d, 0x8f, 0x8d, 0x8d, 0x8d, 0x8d, 0x8d, 0x8f, 0x8f, 0x8d, 0x8f, 0x8f, 0x8d, 0x8f, 0x91, 0xca, 0x20, 0x22, 0x24, 0x24, 0x1d, 0xf2, 0xd9, 0xf3, 0xf3, 0xf3, 0xf1, 0xf3, 0xf2, 0xf3, 0xf2, 0xf3, 0xf3, 0xf3, 0xcb, 0x50, 0x4f, 0x4f, 0x89, 0x7c, 0x08, 0x0b, 0x0e, 0x0a, 0x0e, 0x0e, 0x0e, 0x12, 0x0e, 0x0f, 0x0f, 0x08, 0x14, 0x1f, 0x1f, 0x1e, 0x17, 0x15, 0x15, 0xec, 0xec, 0xec, 0xec, 0x15, 0x1b, 0x15, 0xe9, 0xe8, 0xe8, 0xe8, 0x15, 0x15, 0x15, 0x15, 0x15, 0x15, 0x15, 0x15, 0x15, 0x15, 0x15, 0x1a, 0x1a, 0x1a, 0x1b, 0x1b, 0x1b, 0x1b, 0x1b, 0x1a, 0x22, 0x2c, 0x29, 0x2c, 0xf5, 0xdb, 0xa0, 0x9e, 0x9e, 0xcc, 0xda, 0xcc, 0xda, 0xf7, 0xf6, 0xf4, 0xf5, 0xf3, 0xf0, 0xd7, 0xec, 0xec, 0x18, 0x16, 0x13, 0x14, 0x18, 0x18, 0x1c, 0x21, 0x1f, 0x23, 0x23, 0x26, 0x23, 0x28, 0xa0, 0xa0, 0x39, 0x33, 0x3a, 0x38, 0x3a, 0x38, 0x38, 0x3b, 0x41, 0x3c, 0x40, 0x3e, 0x43, 0x43, 0x43, 0x43, 0x43, 0x43, 0x43, 0x43, 0xfa, 0xfc, 0xdc, 0x30, 0x2e, 0x2e, 0x2e, 0x33, 0x33, 0x33, 0x32, 0xfa, 0xf9, 0xf7, 0xf9, 0xf8, 0xf9,
0xbf, 0xbf, 0xc0, 0xbf, 0xbf, 0xbf, 0xbe, 0xbd, 0xbf, 0xbf, 0xc0, 0xbf, 0xc0, 0xc0, 0xc0, 0xba, 0xb5, 0xb7, 0xb6, 0xb6, 0xb6, 0xb9, 0xb5, 0xad, 0xab, 0xaf, 0xad, 0xad, 0xaf, 0xad, 0xad, 0xad, 0xab, 0xad, 0xab, 0xaf, 0xab, 0x8b, 0x89, 0x50, 0x50, 0x50, 0x50, 0x50, 0x91, 0x91, 0x91, 0x96, 0x96, 0x96, 0x91, 0x96, 0x96, 0x91, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x91, 0xa2, 0xb6, 0xb5, 0xb5, 0xb3, 0xb5, 0xb5, 0xad, 0xad, 0xad, 0xaf, 0xad, 0xad, 0xad, 0xad, 0xad, 0xad, 0xab, 0xab, 0xab, 0xab, 0xab, 0xda, 0x20, 0x24, 0x24, 0x24, 0x20, 0xf6, 0xb4, 0xac, 0xcd, 0xac, 0xcd, 0xac, 0xcd, 0xac, 0xac, 0xcd, 0xac, 0xcd, 0xac, 0xcd, 0xac, 0xb0, 0xac, 0xac, 0xaa, 0xae, 0xb2, 0xae, 0xac, 0xb2, 0xae, 0xae, 0xae, 0xae, 0xae, 0xae, 0xae, 0xae, 0xae, 0xae, 0xb2, 0xb3, 0xac, 0xf8, 0xdb, 0xdb, 0xdb, 0xdb, 0xdb, 0xdb, 0xdb, 0xdb, 0xdb, 0xdb, 0xdb, 0xa5, 0xdb, 0xdb, 0xa5, 0xa5, 0xa5, 0xa5, 0xa5, 0xa5, 0xa8, 0xa8, 0xa8, 0xa5, 0xa5, 0xa5, 0xa5, 0xa5, 0xa5, 0x9e, 0xa5, 0x9e, 0xa5, 0xa5, 0x9e, 0xa5, 0xa5, 0xa5, 0x9e, 0x94, 0x98, 0x98, 0x98, 0x94, 0x98, 0x98, 0x98, 0x98, 0x90, 0x98, 0x8e, 0x8a, 0x8e, 0x90, 0x8a, 0x90, 0x90, 0x90, 0x93, 0x93, 0x93, 0x93, 0x93, 0x97, 0x93, 0x97, 0x9b, 0x97, 0x9b, 0x9b, 0x52, 0xa2, 0xaf, 0xa6, 0x71, 0x69, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x6d, 0x71, 0x6d, 0x71, 0x6d, 0x71, 0x6d, 0x6b, 0x70, 0x77, 0x87, 0x97, 0x8d, 0x93, 0x8d, 0x93, 0x8d, 0x93, 0x8d, 0x93, 0x8d, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x92, 0x95, 0x92, 0x95, 0x92, 0x95, 0x92, 0x95, 0x97, 0x95, 0x95, 0x95, 0x99, 0x8d, 0x80, 0x82, 0x82, 0x82, 0x82, 0x82, 0x8a, 0x79, 0x68, 0x66, 0x68, 0x6a, 0x68, 0x68, 0x68, 0x65, 0x68, 0x65, 0x65, 0xc5, 0xc5, 0x64, 0x64, 0x64, 0x64, 0x65, 0x65, 0x65, 0x65, 0x65, 0x65, 0x65, 0x65, 0x65, 0x65, 0x64, 0x65, 0x65, 0x64, 0x65, 0x64, 0x65, 0x64, 0xc6, 0xe6, 0x68, 0x68, 0x62, 0x63, 0x81, 0x95, 0x8f, 0x8f, 0x8d, 0x8f, 0x8d, 0x8f, 0x8f, 0x8f, 0x8d, 0x8d, 0x8f, 0x8f, 0x8f, 0x8f, 0x8f, 0x51, 0x88, 0x20, 0x24, 0x22, 0x22, 0x24, 0x1d, 0xf2, 0xf4, 0xf1, 0xf3, 0xf3, 0xf2, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0x94, 0x50, 0x4f, 0x89, 0x4f, 0x89, 0x81, 0x0a, 0x0b, 0x0e, 0x0e, 0x0e, 0x0e, 0x08, 0x0e, 0x0e, 0x0e, 0x0e, 0x0f, 0x1e, 0x1f, 0x1f, 0x23, 0x1f, 0x1c, 0x1e, 0x17, 0x1a, 0x11, 0xec, 0xec, 0xec, 0x1b, 0xec, 0xe8, 0xe5, 0x10, 0x15, 0x15, 0x15, 0x15, 0x15, 0x15, 0x15, 0x15, 0x15, 0x15, 0x15, 0x1b, 0x1a, 0x1b, 0x1b, 0x1b, 0x1b, 0x1b, 0x1b, 0x1b, 0x1a, 0x22, 0x29, 0x2c, 0x2c, 0x31, 0xf7, 0xda, 0xda, 0xf7, 0xf4, 0xf5, 0xf4, 0xf3, 0xf3, 0xf1, 0xf1, 0xd7, 0xee, 0xec, 0xec, 0xec, 0x19, 0x16, 0x16, 0x16, 0x16, 0x13, 0x16, 0x18, 0x1c, 0x1c, 0x23, 0x23, 0x23, 0x2b, 0xa0, 0x39, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x3a, 0x3c, 0x40, 0x3c, 0x42, 0xfa, 0x42, 0xfa, 0x43, 0xfa, 0x43, 0xfa, 0x43, 0x43, 0x43, 0xdc, 0x41, 0x2e, 0x2e, 0x2e, 0x33, 0x34, 0x30, 0x39, 0xf9, 0xf9, 0xf9, 0xf8, 0xf9, 0xf8,
0xc0, 0xbf, 0xbf, 0xc0, 0xc0, 0xbf, 0xbf, 0xbd, 0xbf, 0xbf, 0xc0, 0xbf, 0xc0, 0xbf, 0xc1, 0xba, 0xb5, 0xb6, 0xb7, 0xb6, 0xb7, 0xb6, 0xb7, 0xb3, 0xad, 0xad, 0xad, 0xad, 0xad, 0xad, 0xab, 0xad, 0xad, 0xab, 0xad, 0xaf, 0xa7, 0x8b, 0x8b, 0x8b, 0x50, 0x50, 0x91, 0x91, 0x50, 0x91, 0x91, 0x91, 0x96, 0x96, 0x96, 0x96, 0x91, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x91, 0x91, 0xa9, 0xb7, 0xb3, 0xb5, 0xb5, 0xb5, 0xb6, 0xb5, 0xad, 0xab, 0xad, 0xad, 0xab, 0xad, 0xab, 0xad, 0xab, 0xab, 0xab, 0xab, 0xab, 0xab, 0xf3, 0x20, 0x24, 0x29, 0x24, 0x24, 0x20, 0xf9, 0xb2, 0xac, 0xcd, 0xac, 0xcd, 0xac, 0xcd, 0xac, 0xcd, 0xac, 0xac, 0xac, 0xac, 0xac, 0xac, 0xcd, 0xac, 0xa8, 0xa7, 0xa3, 0xaa, 0xaa, 0xae, 0xae, 0xae, 0xae, 0xae, 0xae, 0xae, 0xae, 0xae, 0xae, 0xae, 0xb2, 0xae, 0xae, 0xac, 0xf7, 0xdb, 0xdb, 0xdb, 0xdb, 0xdb, 0xdb, 0xdb, 0xdb, 0xdb, 0xdb, 0xdb, 0xdb, 0xa5, 0xdb, 0xdb, 0xa5, 0x9e, 0xa5, 0x9e, 0xa0, 0xa0, 0xa8, 0xa5, 0xa8, 0xa5, 0xa0, 0xa5, 0x9e, 0xa5, 0x9e, 0xa5, 0x9e, 0xa5, 0x9e, 0xa5, 0x9e, 0xa5, 0xa5, 0x9e, 0x94, 0x98, 0x94, 0x98, 0x98, 0x98, 0x90, 0x98, 0x98, 0x98, 0x90, 0x8e, 0x8a, 0x8e, 0x90, 0x8a, 0x90, 0x93, 0x93, 0x93, 0x93, 0x93, 0x97, 0x9b, 0x97, 0x9b, 0x9b, 0x9b, 0x9b, 0x52, 0x9b, 0xa2, 0xa4, 0xb1, 0x97, 0x67, 0x69, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x71, 0x69, 0x71, 0x69, 0x6b, 0x6d, 0x75, 0x75, 0x75, 0x8d, 0x97, 0x8d, 0x93, 0x8d, 0x93, 0x92, 0x90, 0x93, 0x93, 0x8d, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x9f, 0x97, 0x9b, 0x9b, 0x9b, 0x9b, 0x92, 0x95, 0x95, 0x95, 0x95, 0x92, 0x95, 0x92, 0x95, 0x92, 0x95, 0x96, 0x8c, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x8a, 0x82, 0x6e, 0x64, 0x65, 0x68, 0x68, 0x65, 0xc6, 0x65, 0xe6, 0x64, 0xe6, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x65, 0x65, 0x65, 0x65, 0x64, 0x65, 0x64, 0x65, 0x65, 0x65, 0x65, 0x64, 0x64, 0x65, 0x64, 0x65, 0x64, 0xe6, 0xc6, 0xc6, 0x68, 0x68, 0x62, 0x62, 0x7a, 0x95, 0x8f, 0x8f, 0x8d, 0x8d, 0x8f, 0x8d, 0x8f, 0x8f, 0x8f, 0x8f, 0x8d, 0x8f, 0x8d, 0x8f, 0x91, 0xca, 0x20, 0x22, 0x24, 0x22, 0x24, 0x24, 0x24, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf2, 0xf3, 0xf3, 0xf3, 0xd9, 0xcb, 0x50, 0x4f, 0x4f, 0x89, 0x4f, 0x89, 0x86, 0x0c, 0x0b, 0x0e, 0x0e, 0x0e, 0x0e, 0x0e, 0x0f, 0x0e, 0x0f, 0x0a, 0x18, 0x21, 0x1c, 0x1f, 0x1f, 0x1f, 0x23, 0x23, 0x1f, 0x1c, 0x1e, 0x17, 0x1a, 0x15, 0xec, 0xec, 0xe8, 0xe8, 0x15, 0x15, 0x15, 0x15, 0x15, 0x15, 0x15, 0x15, 0x15, 0x15, 0x15, 0x15, 0x1a, 0x1a, 0x1b, 0x1b, 0x1b, 0x1b, 0x1b, 0x1b, 0x1b, 0x1b, 0x1a, 0x22, 0x24, 0x2c, 0x29, 0x31, 0xf5, 0xf4, 0xf5, 0xf4, 0xf2, 0xf3, 0xf1, 0xf1, 0xf0, 0xee, 0xee, 0xec, 0xe9, 0xe9, 0x1a, 0x19, 0x16, 0x16, 0x16, 0x16, 0x16, 0x16, 0x16, 0x19, 0x19, 0x1c, 0x1f, 0x1f, 0x2c, 0x39, 0x38, 0x3a, 0x38, 0x38, 0x38, 0x38, 0x38, 0x3d, 0x3c, 0x3c, 0x42, 0xfa, 0x43, 0x43, 0xfa, 0x43, 0xfa, 0x43, 0x43, 0x43, 0x43, 0xfc, 0xdc, 0x38, 0x2e, 0x2e, 0x33, 0x33, 0x33, 0x39, 0xfa, 0xf9, 0xf7, 0xf9, 0xf8, 0xf9,
0xc0, 0xbf, 0xc0, 0xc0, 0xc1, 0xbf, 0xd0, 0xbe, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xc0, 0xbb, 0xb5, 0xb7, 0xb6, 0xb7, 0xb6, 0xb7, 0xb6, 0xb7, 0xb3, 0xab, 0xad, 0xaf, 0xab, 0xad, 0xad, 0xad, 0xad, 0xab, 0xad, 0xaf, 0xa2, 0x83, 0x8b, 0x50, 0x8b, 0x50, 0x91, 0x50, 0x91, 0x91, 0x91, 0x91, 0x96, 0x91, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x91, 0x96, 0x96, 0x96, 0x91, 0xad, 0xb6, 0xb3, 0xb3, 0xb5, 0xb5, 0xb5, 0xb6, 0xb1, 0xab, 0xab, 0xad, 0xad, 0xab, 0xad, 0xab, 0xab, 0xa9, 0xab, 0xab, 0xa9, 0xad, 0x27, 0x20, 0x24, 0x24, 0x24, 0x29, 0x24, 0x20, 0xf9, 0xb2, 0xcd, 0xa5, 0xac, 0xac, 0xac, 0xcd, 0xac, 0xcd, 0xac, 0xac, 0xcd, 0xac, 0xac, 0xac, 0xcd, 0xac, 0xa8, 0xa7, 0xa7, 0xa7, 0xa7, 0xa7, 0xaa, 0xaa, 0xae, 0xb2, 0xae, 0xb2, 0xae, 0xae, 0xae, 0xae, 0xb2, 0xae, 0xb3, 0xdb, 0xf8, 0xdb, 0xf8, 0xdb, 0xdb, 0xdb, 0xdb, 0xdb, 0xdb, 0xdb, 0xdb, 0xa5, 0xdb, 0xdb, 0xdb, 0xa5, 0xdb, 0xa5, 0xa5, 0xa5, 0xa5, 0xa0, 0xa8, 0xa8, 0xa5, 0xa5, 0xa0, 0xa5, 0x9e, 0xa5, 0x9e, 0xa5, 0x9e, 0xa5, 0x9e, 0xa5, 0xa5, 0xa0, 0xa5, 0x98, 0x94, 0x98, 0x98, 0x98, 0x98, 0x98, 0x90, 0x98, 0x90, 0x8e, 0x8a, 0x90, 0x8e, 0x90, 0x90, 0x90, 0x90, 0x93, 0x93, 0x93, 0x97, 0x97, 0x97, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x52, 0xa2, 0xa4, 0xa4, 0xa4, 0xaf, 0x92, 0x63, 0x69, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x71, 0x6d, 0x6d, 0x71, 0x6d, 0x79, 0x74, 0x75, 0x75, 0x8d, 0x9b, 0x8d, 0x92, 0x92, 0x93, 0x8d, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x90, 0x93, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x95, 0x92, 0x95, 0x92, 0x95, 0x95, 0x95, 0x97, 0x95, 0x95, 0x9a, 0x8c, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x8a, 0x8a, 0x72, 0xc5, 0xc5, 0xc6, 0xc6, 0x64, 0xc6, 0xc5, 0xc6, 0xc5, 0x64, 0xc5, 0x65, 0x64, 0x64, 0x64, 0x64, 0x64, 0x65, 0x65, 0x65, 0x65, 0x64, 0x65, 0x64, 0x65, 0x64, 0x65, 0x64, 0x65, 0x64, 0x65, 0x62, 0xc6, 0xe6, 0xe6, 0xc6, 0x68, 0x68, 0x66, 0x60, 0x71, 0x92, 0x51, 0x8d, 0x8f, 0x8d, 0x8f, 0x8f, 0x8d, 0x8f, 0x8f, 0x8f, 0x8f, 0x8f, 0x8f, 0x51, 0xca, 0x1d, 0x24, 0x22, 0x24, 0x22, 0x24, 0x1d, 0x22, 0xf3, 0xf1, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xd9, 0xf3, 0xf4, 0x94, 0x50, 0x4f, 0x89, 0x4f, 0x89, 0x4f, 0x89, 0x89, 0x10, 0x0b, 0x0f, 0x0e, 0x0e, 0x0f, 0x0a, 0x12, 0x08, 0x0e, 0x18, 0x1e, 0x1e, 0x1c, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x23, 0x23, 0x1f, 0x1c, 0x1e, 0x1d, 0x1a, 0x10, 0x10, 0x0e, 0x11, 0x11, 0x11, 0x15, 0x15, 0x15, 0x15, 0x15, 0x15, 0x15, 0x15, 0x15, 0x1a, 0x1b, 0x1b, 0x1b, 0x1b, 0x1b, 0xec, 0x1b, 0x1b, 0x1b, 0x1a, 0x22, 0x29, 0x25, 0x29, 0x27, 0xf3, 0xf3, 0xf3, 0xf1, 0xf1, 0xf0, 0xd6, 0xee, 0xed, 0xec, 0xec, 0xe9, 0xe9, 0x1e, 0x1e, 0x16, 0x16, 0x16, 0x16, 0x16, 0x19, 0x19, 0x19, 0x19, 0x19, 0x1c, 0x1c, 0x2e, 0x33, 0x38, 0x3a, 0x38, 0x38, 0x38, 0x38, 0x3b, 0x3c, 0x3c, 0x43, 0x3e, 0xfa, 0x43, 0xfa, 0x43, 0x43, 0xfa, 0x43, 0xfa, 0x43, 0x43, 0xdc, 0x43, 0x2e, 0x2e, 0x33, 0x33, 0x2f, 0x3c, 0xf9, 0xf9, 0xf9, 0xf7, 0xf9, 0xf8,
0xc0, 0xc0, 0xc0, 0xd0, 0xc1, 0xd0, 0xc0, 0xbe, 0xbf, 0xbf, 0xc0, 0xbf, 0xbf, 0xbf, 0xc1, 0xbb, 0xb5, 0xb6, 0xb7, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb7, 0xb3, 0xad, 0xab, 0xaf, 0xad, 0xab, 0xad, 0xad, 0xad, 0xab, 0xb1, 0x52, 0x86, 0x8b, 0x8b, 0x8b, 0x51, 0x8b, 0x91, 0x50, 0x91, 0x91, 0x91, 0x91, 0x96, 0x96, 0x91, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x91, 0x96, 0xb1, 0xb5, 0xb3, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb6, 0xaf, 0xab, 0xab, 0xad, 0xab, 0xab, 0xab, 0xab, 0xab, 0xa9, 0xab, 0xa9, 0x9e, 0x24, 0x24, 0x22, 0x29, 0x24, 0x29, 0x24, 0x24, 0x24, 0xf7, 0xb4, 0xac, 0xcd, 0xac, 0xcd, 0xac, 0xcd, 0xac, 0xac, 0xac, 0xac, 0xac, 0xcd, 0xac, 0xac, 0xcd, 0xac, 0xaa, 0xa3, 0xa7, 0xa7, 0xa7, 0xa9, 0xa7, 0xab, 0xa7, 0xaa, 0xaa, 0xae, 0xae, 0xb2, 0xae, 0xae, 0xb2, 0xae, 0xb2, 0xdb, 0xf8, 0xdb, 0xdb, 0xdb, 0xdb, 0xdb, 0xdb, 0xdb, 0xdb, 0xdb, 0xdb, 0x9e, 0xdb, 0x9e, 0xdb, 0x9e, 0xa5, 0x9e, 0xa5, 0x9e, 0xa5, 0xa0, 0xa8, 0xa5, 0xa8, 0xa5, 0xa0, 0xa5, 0x9e, 0xa5, 0x9e, 0xa5, 0x9e, 0xa5, 0x9e, 0xa5, 0x9e, 0xa5, 0xa5, 0x98, 0x94, 0x98, 0x98, 0x90, 0x98, 0x98, 0x90, 0x90, 0x8e, 0x8a, 0x8e, 0x90, 0x8e, 0x90, 0x90, 0x90, 0x93, 0x93, 0x97, 0x97, 0x97, 0x9b, 0x99, 0x9b, 0x52, 0x9b, 0x52, 0xa2, 0xa1, 0xa4, 0xa4, 0xa6, 0xa4, 0xad, 0x87, 0x67, 0x69, 0x71, 0x6d, 0x71, 0x6d, 0x6d, 0x71, 0x6d, 0x71, 0x69, 0x71, 0x6d, 0x71, 0x6b, 0x75, 0x75, 0x75, 0x7b, 0x75, 0x75, 0x8d, 0x97, 0x93, 0x8d, 0x93, 0x93, 0x92, 0x93, 0x93, 0x92, 0x93, 0x93, 0x92, 0x93, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9f, 0x9b, 0x97, 0x95, 0x97, 0x95, 0x97, 0x95, 0x95, 0x95, 0x95, 0x95, 0x8c, 0x82, 0x82, 0x82, 0x8a, 0x82, 0x82, 0x82, 0x82, 0x82, 0x8a, 0x8c, 0x7c, 0x65, 0xd5, 0x64, 0xc6, 0xc5, 0xc6, 0xc5, 0xc5, 0xe6, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x65, 0x64, 0x65, 0x65, 0x64, 0x65, 0x64, 0x65, 0x64, 0x65, 0x64, 0x65, 0x64, 0x65, 0xc5, 0xe7, 0xc6, 0xc6, 0xc6, 0x68, 0x68, 0x66, 0x62, 0x6d, 0x8b, 0x95, 0x8d, 0x8f, 0x8d, 0x8d, 0x8f, 0x8d, 0x8f, 0x8f, 0x8d, 0x8f, 0x8f, 0x91, 0x88, 0x20, 0x22, 0x24, 0x22, 0x24, 0x24, 0x24, 0x20, 0x25, 0xf4, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xd9, 0xf4, 0x94, 0x50, 0x4f, 0x89, 0x4f, 0x89, 0x4f, 0x89, 0x4f, 0x89, 0xed, 0x0b, 0x08, 0x12, 0x0e, 0x12, 0x08, 0x12, 0x08, 0x14, 0x20, 0x1e, 0x1e, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x23, 0x1f, 0x1f, 0x1c, 0x24, 0x27, 0xef, 0x1b, 0x1b, 0x15, 0x15, 0x15, 0x0e, 0x0e, 0x0e, 0x15, 0x0e, 0x15, 0x15, 0x1a, 0x1b, 0x1b, 0x1b, 0x1b, 0x1b, 0x1b, 0xec, 0x1b, 0x1b, 0x1b, 0x1a, 0x25, 0xef, 0x25, 0x27, 0x27, 0xf1, 0xf1, 0xd7, 0xee, 0xee, 0xed, 0xed, 0xec, 0xe9, 0xe9, 0xe9, 0x15, 0x1e, 0x1e, 0x16, 0x19, 0x16, 0x19, 0x16, 0x19, 0x19, 0x1c, 0x1c, 0x1c, 0x1f, 0x1f, 0x2e, 0x2e, 0x30, 0x33, 0x38, 0x38, 0x38, 0x36, 0x3d, 0x3e, 0x3e, 0x43, 0xfa, 0x43, 0xfa, 0x43, 0xfa, 0x43, 0xfa, 0x43, 0xfa, 0x43, 0xfa, 0xdd, 0x39, 0x2e, 0x30, 0x33, 0x33, 0x3c, 0xf9, 0xf9, 0xf9, 0xf9, 0xf6, 0xf9,
0xbf, 0xc0, 0xc0, 0xc1, 0xc1, 0xc1, 0xd0, 0xbf, 0xbe, 0xbf, 0xc0, 0xbf, 0xbf, 0xc0, 0xd0, 0xbb, 0xb6, 0xb6, 0xb6, 0xb7, 0xb6, 0xb6, 0xb6, 0xb6, 0xb7, 0xb7, 0xb3, 0xa9, 0xab, 0xad, 0xad, 0xab, 0xad, 0xad, 0xab, 0xb3, 0x97, 0x81, 0x8b, 0x8b, 0x8f, 0x8b, 0x51, 0x8b, 0x51, 0x91, 0x50, 0x91, 0x91, 0x91, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x91, 0x9a, 0xb3, 0xb3, 0xb3, 0xb5, 0xb3, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xad, 0xab, 0xad, 0xab, 0xab, 0xab, 0xab, 0xab, 0xab, 0xa9, 0xab, 0xf4, 0x1d, 0x22, 0x24, 0x22, 0x29, 0x24, 0x29, 0x29, 0x24, 0x24, 0xf8, 0xb2, 0xa5, 0xcd, 0xa5, 0xac, 0xac, 0xac, 0xcd, 0xac, 0xcd, 0xac, 0xac, 0xac, 0xac, 0xac, 0xcd, 0xac, 0xaa, 0xa7, 0xa7, 0xa7, 0xa7, 0xa9, 0xa7, 0xab, 0xa6, 0xa9, 0xa9, 0xa9, 0xad, 0xaa, 0xae, 0xb2, 0xae, 0xb3, 0xb2, 0xf8, 0xf8, 0xdb, 0xdb, 0xf8, 0xdb, 0xf8, 0xdb, 0xdb, 0xdb, 0xdb, 0xdb, 0xdb, 0xdb, 0x9e, 0xdb, 0x9e, 0xa5, 0x9e, 0xa5, 0x9e, 0xa5, 0xa0, 0xa8, 0xa8, 0xa5, 0xa8, 0x9e, 0xa5, 0x9e, 0xa5, 0x9e, 0xa5, 0x9e, 0xa5, 0x9e, 0xa5, 0xa0, 0xa0, 0xa0, 0x94, 0x98, 0x94, 0x98, 0x90, 0x98, 0x90, 0x98, 0x8a, 0x8e, 0x8a, 0x8e, 0x90, 0x90, 0x90, 0x90, 0x93, 0x93, 0x97, 0x97, 0x99, 0x97, 0x9b, 0x99, 0x52, 0x52, 0x52, 0x52, 0xa1, 0xa1, 0xa4, 0xa6, 0xa2, 0xa4, 0xad, 0x7e, 0x67, 0x6d, 0x6d, 0x6d, 0x6d, 0x71, 0x6d, 0x71, 0x6d, 0x71, 0x6d, 0x71, 0x6d, 0x71, 0x75, 0x77, 0x75, 0x75, 0x7b, 0x75, 0x75, 0x8d, 0x9b, 0x92, 0x93, 0x92, 0x93, 0x93, 0x92, 0x90, 0x93, 0x93, 0x93, 0x93, 0x93, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9c, 0x9b, 0x95, 0x97, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x9a, 0x8c, 0x82, 0x8a, 0x82, 0x82, 0x82, 0x82, 0x82, 0x8a, 0x82, 0x8a, 0x82, 0x90, 0x8a, 0x6e, 0xe1, 0xc5, 0xc6, 0xc5, 0xe6, 0x64, 0xc5, 0xc5, 0x64, 0x64, 0xc5, 0x65, 0x64, 0x64, 0x64, 0x64, 0x64, 0x65, 0x65, 0x65, 0x64, 0x65, 0x65, 0x65, 0x64, 0x65, 0x64, 0x65, 0x65, 0x64, 0xe6, 0xe6, 0xe6, 0xc6, 0xc6, 0x68, 0x68, 0x66, 0x60, 0x67, 0x86, 0x95, 0x8f, 0x8d, 0x8f, 0x8d, 0x8f, 0x8d, 0x8f, 0x8f, 0x8f, 0x8f, 0x91, 0xca, 0x24, 0x24, 0x22, 0x24, 0x22, 0x24, 0x22, 0x24, 0x20, 0x27, 0xd9, 0xf3, 0xf3, 0xf1, 0xf3, 0xd9, 0xf3, 0xcb, 0xcc, 0x50, 0x4f, 0x89, 0x89, 0x4f, 0x89, 0x89, 0x89, 0x4f, 0x89, 0xed, 0x0d, 0x08, 0x0f, 0x0e, 0x0f, 0x12, 0x08, 0x12, 0x1e, 0x1e, 0x1e, 0x1c, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x23, 0x3e, 0xf9, 0xf9, 0xf9, 0xf6, 0xf5, 0x31, 0xf2, 0x27, 0xef, 0x1b, 0x1b, 0x15, 0x15, 0x0e, 0x0e, 0xec, 0xec, 0x1b, 0xec, 0x1b, 0x1b, 0xec, 0x11, 0x1b, 0x15, 0x1b, 0x1b, 0xef, 0x1b, 0xef, 0x1b, 0xf0, 0xee, 0xd7, 0xed, 0xee, 0xea, 0xec, 0xe9, 0xec, 0xe7, 0xe9, 0x1d, 0x1e, 0x18, 0x16, 0x16, 0x19, 0x16, 0x19, 0x19, 0x19, 0x1c, 0x1c, 0x1c, 0x1f, 0x26, 0x26, 0x2e, 0x2e, 0x2e, 0x33, 0x38, 0x38, 0x39, 0x3e, 0x43, 0xfa, 0x43, 0xfa, 0x43, 0xfa, 0x43, 0xfa, 0x43, 0xfa, 0xfc, 0xfa, 0xfc, 0xdc, 0xfd, 0x38, 0x2e, 0x33, 0x34, 0x3c, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf7,
0xc0, 0xc0, 0xd0, 0xc0, 0xc1, 0xd1, 0xc1, 0xbe, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xc0, 0xc0, 0xbd, 0xb5, 0xb6, 0xb7, 0xb6, 0xb7, 0xb6, 0xb6, 0xb5, 0xb6, 0xb6, 0xb6, 0xb5, 0xab, 0xad, 0xad, 0xad, 0xad, 0xab, 0xad, 0xaf, 0x92, 0x81, 0x8b, 0x87, 0x8b, 0x8f, 0x8b, 0x8f, 0x50, 0x51, 0x91, 0x91, 0x91, 0x91, 0x91, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x91, 0x9d, 0xb5, 0xb3, 0xb3, 0xb5, 0xb3, 0xb5, 0xb5, 0xb5, 0xb5, 0xb6, 0xb3, 0xa9, 0xab, 0xab, 0xab, 0xa9, 0xab, 0xab, 0xa9, 0xa9, 0xab, 0xf2, 0x20, 0x22, 0x29, 0x22, 0x22, 0x29, 0x22, 0x29, 0x29, 0x24, 0x24, 0xf8, 0xb4, 0xac, 0xac, 0xac, 0xac, 0xcd, 0xac, 0xac, 0xac, 0xac, 0xac, 0xac, 0xac, 0xac, 0xa5, 0xb0, 0xac, 0xaa, 0xa7, 0xa7, 0xa9, 0xa7, 0xab, 0xa7, 0xa9, 0xab, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xab, 0xad, 0xaa, 0xb1, 0xae, 0xf8, 0xf8, 0xdb, 0xdb, 0xdb, 0xdb, 0xdb, 0xdb, 0xdb, 0xdb, 0xdb, 0x9e, 0xdb, 0x9e, 0x9e, 0xdb, 0x9e, 0xa5, 0x9e, 0xa0, 0xa0, 0xa5, 0xa0, 0xa8, 0xa8, 0xa8, 0xa0, 0xa5, 0xa5, 0x9e, 0xa5, 0xa5, 0xa5, 0x9e, 0xa5, 0xa0, 0xa5, 0xa0, 0xa5, 0x9c, 0x8e, 0x98, 0x90, 0x94, 0x90, 0x98, 0x90, 0x8e, 0x8a, 0x8e, 0x90, 0x8a, 0x90, 0x90, 0x93, 0x90, 0x93, 0x97, 0x97, 0x97, 0x52, 0x99, 0x52, 0x52, 0x52, 0xa1, 0xa2, 0xa1, 0xa4, 0xa4, 0xa4, 0xa4, 0xa1, 0xa6, 0xa9, 0x76, 0x69, 0x6d, 0x71, 0x71, 0x6d, 0x71, 0x6d, 0x71, 0x6d, 0x71, 0x69, 0x71, 0x71, 0x75, 0x75, 0x75, 0x75, 0x7b, 0x75, 0x7b, 0x75, 0x8c, 0x97, 0x97, 0x93, 0x93, 0x92, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9f, 0x9b, 0x95, 0x95, 0x97, 0x95, 0x95, 0x95, 0x95, 0x95, 0x8c, 0x82, 0x82, 0x8a, 0x82, 0x8a, 0x82, 0x8a, 0x82, 0x8a, 0x82, 0x8a, 0x82, 0x8c, 0x8a, 0x77, 0xd5, 0xe1, 0xc5, 0xc6, 0xc5, 0xc6, 0xc5, 0x64, 0x64, 0x64, 0xc5, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x65, 0x65, 0x64, 0x65, 0x64, 0x65, 0x64, 0x65, 0x64, 0x65, 0x64, 0xe7, 0xe6, 0xe6, 0xe6, 0xc6, 0xc6, 0x68, 0x65, 0x6a, 0x62, 0x63, 0x7a, 0x95, 0x8f, 0x8d, 0x8f, 0x8d, 0x8f, 0x8d, 0x8f, 0x8d, 0x8f, 0x51, 0x88, 0x24, 0x24, 0x22, 0x24, 0x22, 0x24, 0x22, 0x24, 0x22, 0x20, 0x27, 0xd9, 0xf3, 0xf3, 0xf3, 0xf4, 0xd9, 0xcb, 0x98, 0x50, 0x4f, 0x89, 0x4f, 0x89, 0x89, 0x89, 0x4f, 0x89, 0x4f, 0x89, 0xc8, 0x0b, 0x0b, 0x12, 0x0e, 0x0f, 0x0e, 0x0f, 0x18, 0x21, 0x1e, 0x1e, 0x1e, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x35, 0xf6, 0xf5, 0x37, 0xf6, 0xf9, 0xf9, 0xfa, 0xfa, 0xfa, 0xf9, 0xf8, 0xf9, 0xf6, 0xf5, 0xf5, 0x22, 0x17, 0x15, 0xec, 0xec, 0xec, 0x15, 0x1b, 0xec, 0x15, 0x15, 0x15, 0x1b, 0x1b, 0x1b, 0x1b, 0x1b, 0x1b, 0xee, 0xed, 0xed, 0xec, 0xe9, 0xe9, 0xe9, 0xe8, 0xe7, 0x15, 0x20, 0x1e, 0x1e, 0x19, 0x16, 0x19, 0x19, 0x19, 0x19, 0x1c, 0x19, 0x1c, 0x1c, 0x26, 0x26, 0x2e, 0x26, 0x2e, 0x2e, 0x2e, 0x30, 0x38, 0x43, 0xfa, 0x43, 0xfa, 0x43, 0xfa, 0x43, 0xfa, 0x43, 0xfa, 0x43, 0xfa, 0x43, 0xfa, 0x43, 0xfb, 0x41, 0x2e, 0x30, 0x36, 0x3e, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9,
0xbf, 0xc0, 0xc0, 0xc0, 0xc1, 0xd1, 0xbf, 0xbe, 0xbf, 0xbe, 0xbf, 0xbf, 0xbf, 0xbf, 0xc1, 0xbd, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb5, 0xb6, 0xb6, 0xb7, 0xb3, 0xab, 0xab, 0xad, 0xab, 0xad, 0xad, 0xaf, 0x8d, 0x81, 0x86, 0x8d, 0x87, 0x8b, 0x8d, 0x8b, 0x8f, 0x8b, 0x51, 0x51, 0x91, 0x91, 0x91, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x91, 0xa1, 0xb6, 0xb3, 0xb3, 0xb3, 0xb3, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb6, 0xaf, 0xa9, 0xab, 0xab, 0xa9, 0xab, 0xa9, 0xab, 0xa9, 0xa3, 0x22, 0x24, 0x22, 0x22, 0x24, 0x25, 0x24, 0x29, 0x22, 0x29, 0x29, 0x24, 0x24, 0xdb, 0xb2, 0xa5, 0xcd, 0xac, 0xac, 0xac, 0xac, 0xac, 0xac, 0xac, 0xac, 0xac, 0xac, 0xac, 0xac, 0xcd, 0xb0, 0xaa, 0xa6, 0xa7, 0xab, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xab, 0xa9, 0xab, 0xab, 0xab, 0xab, 0xad, 0xaf, 0xa8, 0xf5, 0xf4, 0xf8, 0xda, 0xf8, 0xda, 0xdb, 0x9e, 0xdb, 0xdb, 0xdb, 0xa5, 0xdb, 0xa5, 0x9e, 0xa5, 0x9e, 0xa5, 0xa5, 0x9e, 0xa0, 0xa0, 0xa0, 0xa3, 0xa8, 0x9e, 0xa5, 0x9e, 0xa5, 0x9e, 0xa5, 0x9e, 0xa5, 0xa0, 0xa0, 0xa0, 0xa5, 0xa0, 0xa5, 0x98, 0x8e, 0x98, 0x90, 0x90, 0x90, 0x90, 0x8e, 0x8a, 0x8a, 0x8c, 0x90, 0x90, 0x90, 0x93, 0x93, 0x93, 0x97, 0x97, 0x99, 0x99, 0x99, 0x9d, 0x52, 0xa1, 0xa1, 0xa1, 0xa4, 0xa4, 0xa4, 0xa4, 0xa4, 0xa1, 0xa1, 0xa4, 0xa4, 0x71, 0x69, 0x71, 0x6d, 0x71, 0x6d, 0x71, 0x71, 0x71, 0x71, 0x71, 0x6b, 0x71, 0x79, 0x74, 0x7b, 0x75, 0x7b, 0x75, 0x7b, 0x75, 0x7b, 0x8d, 0x97, 0x93, 0x92, 0x93, 0x8d, 0x93, 0x93, 0x8d, 0x93, 0x93, 0x9b, 0x97, 0x9b, 0x97, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9f, 0x9b, 0x95, 0x95, 0x99, 0x95, 0x95, 0x95, 0x96, 0x8c, 0x8a, 0x82, 0x8a, 0x82, 0x8a, 0x82, 0x8a, 0x85, 0x8a, 0x8a, 0x85, 0x8a, 0x82, 0x8c, 0x90, 0x82, 0xc6, 0xe1, 0xd5, 0x64, 0xc5, 0xc5, 0xc5, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x65, 0x64, 0x65, 0x65, 0x65, 0x65, 0x64, 0x65, 0x64, 0x65, 0xe6, 0xe7, 0xe6, 0xe6, 0xe6, 0xc6, 0xc6, 0x68, 0x65, 0x66, 0x66, 0x63, 0x76, 0x51, 0x95, 0x8d, 0x8f, 0x8d, 0x8f, 0x8f, 0x8f, 0x8f, 0x50, 0xca, 0x1d, 0x24, 0x22, 0x24, 0x22, 0x24, 0x22, 0x24, 0x22, 0x1d, 0x24, 0xf2, 0xd9, 0xf3, 0xd9, 0xf4, 0xd9, 0xcb, 0x98, 0x50, 0x4f, 0x89, 0x89, 0x89, 0x89, 0x89, 0x4f, 0x89, 0x4f, 0x89, 0x4f, 0x7d, 0x0b, 0x0b, 0x0f, 0x0e, 0x0f, 0x08, 0x18, 0x1e, 0x1e, 0x1e, 0x1e, 0x1e, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x2b, 0xf9, 0xf5, 0xf5, 0xf9, 0xf5, 0xf6, 0xf6, 0xf6, 0xf7, 0xf7, 0xfa, 0xf8, 0xfa, 0xfb, 0xb0, 0xf6, 0x23, 0x23, 0x1e, 0x1d, 0x15, 0xec, 0xec, 0xec, 0xec, 0xec, 0x15, 0x15, 0x15, 0xec, 0x1b, 0x15, 0x1b, 0x15, 0x1b, 0xed, 0xea, 0xe9, 0xe9, 0xe9, 0xe9, 0xe7, 0xe7, 0x1a, 0x1e, 0x1e, 0x18, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x1c, 0x19, 0x1c, 0x21, 0x2a, 0x26, 0x2e, 0x26, 0x2e, 0x2e, 0x2e, 0x30, 0x2f, 0x32, 0x34, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x28, 0x30, 0x30, 0x36, 0x3e, 0xf9, 0xf9, 0xf9, 0xf6, 0xf9, 0xf7,
0xc0, 0xbf, 0xbf, 0xc0, 0xc0, 0xc0, 0xbf, 0xbe, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xc1, 0xbd, 0xb5, 0xb7, 0xb6, 0xb7, 0xb6, 0xb7, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb7, 0xb3, 0xab, 0xab, 0xaf, 0xab, 0xad, 0xab, 0x87, 0x87, 0x87, 0x87, 0x8d, 0x87, 0x8d, 0x8d, 0x8b, 0x8f, 0x8f, 0x51, 0x51, 0x91, 0x91, 0x91, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x91, 0xa6, 0xb6, 0xb3, 0xb3, 0xb3, 0xb3, 0xb3, 0xb5, 0xb3, 0xb5, 0xb5, 0xb5, 0xb5, 0xab, 0xa9, 0xab, 0xa9, 0xab, 0xa9, 0xa9, 0xab, 0x9e, 0x1d, 0x22, 0x22, 0x22, 0x25, 0x24, 0x29, 0x22, 0x29, 0x29, 0x24, 0x29, 0x24, 0x24, 0xdb, 0xb4, 0xa5, 0xcd, 0xac, 0xcd, 0xac, 0xac, 0xac, 0xac, 0xac, 0xac, 0xac, 0xac, 0xac, 0xac, 0xac, 0xb0, 0xaa, 0xa9, 0xa9, 0xa9, 0xab, 0xa9, 0xab, 0xab, 0xab, 0xab, 0xab, 0xab, 0xab, 0xab, 0xad, 0xab, 0xab, 0xad, 0xa5, 0xf2, 0x27, 0xf3, 0xf2, 0xf3, 0xf5, 0xf4, 0xf6, 0xf4, 0xf7, 0xda, 0xda, 0xda, 0xdb, 0xdb, 0x9e, 0xdb, 0xa5, 0xa5, 0xa0, 0xa8, 0x9e, 0xa3, 0xa8, 0xaa, 0xa5, 0xa5, 0xa5, 0xa5, 0xa5, 0xa5, 0xa0, 0xa5, 0xa5, 0xa5, 0xa0, 0xa0, 0xa8, 0xa8, 0x98, 0x8e, 0x98, 0x90, 0x90, 0x8e, 0x8a, 0x8a, 0x90, 0x8a, 0x90, 0x8c, 0x93, 0x90, 0x92, 0x93, 0x97, 0x97, 0x99, 0x99, 0x52, 0x52, 0xa1, 0x52, 0xa1, 0xa1, 0xa4, 0xa4, 0xa4, 0xa4, 0xa1, 0xa1, 0xa1, 0x9d, 0xa4, 0x52, 0x6d, 0x69, 0x71, 0x71, 0x71, 0x71, 0x71, 0x6d, 0x71, 0x71, 0x71, 0x71, 0x77, 0x75, 0x7b, 0x75, 0x7b, 0x75, 0x7b, 0x7b, 0x7b, 0x75, 0x8c, 0x9b, 0x92, 0x93, 0x93, 0x93, 0x93, 0x93, 0x90, 0x93, 0x97, 0x9b, 0x97, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x95, 0x95, 0x97, 0x95, 0x95, 0x95, 0x8c, 0x82, 0x8a, 0x85, 0x8a, 0x8a, 0x8a, 0x82, 0x8a, 0x82, 0x8a, 0x8a, 0x82, 0x8a, 0x8a, 0x85, 0x90, 0x8c, 0x72, 0xe1, 0xd5, 0xe6, 0xc5, 0xe6, 0x65, 0x64, 0xc5, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0xc5, 0x64, 0x64, 0x64, 0x65, 0x65, 0x65, 0x65, 0x65, 0x64, 0xc6, 0xe5, 0xe7, 0xe6, 0xe6, 0xe6, 0xc6, 0xc6, 0xc6, 0x68, 0x65, 0x66, 0x63, 0x6d, 0x8f, 0x95, 0x8d, 0x8f, 0x8f, 0x8d, 0x8f, 0x8f, 0x91, 0x88, 0x24, 0x24, 0x22, 0x22, 0x24, 0x22, 0x24, 0x22, 0x24, 0x22, 0x24, 0x22, 0xf3, 0xd9, 0xf4, 0xd9, 0xf4, 0xcb, 0x98, 0x50, 0x4f, 0x89, 0x4f, 0x89, 0x89, 0x4f, 0x89, 0x4f, 0x89, 0x89, 0x4f, 0x89, 0x81, 0x0f, 0x0b, 0x0f, 0x0e, 0x0f, 0x12, 0x21, 0x1e, 0x1e, 0x1e, 0x1e, 0x1c, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x28, 0x37, 0xf5, 0xf5, 0xf5, 0xf5, 0xf6, 0xf9, 0xf6, 0xf9, 0xf7, 0xf8, 0xf9, 0xf8, 0xdb, 0xf8, 0xf7, 0x2d, 0x26, 0x26, 0x26, 0x23, 0x21, 0x1e, 0x1a, 0x15, 0xec, 0x10, 0xec, 0x15, 0xec, 0x15, 0xec, 0x15, 0x15, 0x15, 0x15, 0xec, 0xe9, 0xe9, 0xe9, 0xe8, 0xe9, 0xe6, 0xec, 0x21, 0x1d, 0x1e, 0x1e, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x1c, 0x19, 0x1f, 0x2a, 0x26, 0x26, 0x2e, 0x26, 0x2e, 0x2e, 0x2e, 0x26, 0x26, 0x23, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x23, 0x23, 0x1c, 0x2a, 0x30, 0x36, 0xf9, 0x3c, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9,
0xbf, 0xc0, 0xc0, 0xbf, 0xc0, 0xbf, 0xbf, 0xbe, 0xbf, 0xbf, 0xbe, 0xbf, 0xbe, 0xc0, 0xc0, 0xbe, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb5, 0xb6, 0xb6, 0xb3, 0xab, 0xab, 0xad, 0xaf, 0xa2, 0x85, 0x81, 0x87, 0x87, 0x87, 0x8d, 0x86, 0x8d, 0x8d, 0x8f, 0x8f, 0x51, 0x8f, 0x51, 0x51, 0x91, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x91, 0xab, 0xb5, 0xb3, 0xb3, 0xb3, 0xb5, 0xb3, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb6, 0xb3, 0xa9, 0xa9, 0xab, 0xa9, 0xa9, 0xa9, 0xab, 0xf3, 0x20, 0x22, 0x22, 0x22, 0x25, 0x22, 0x29, 0x22, 0x29, 0x22, 0x29, 0x29, 0x29, 0x24, 0x29, 0xdb, 0xb2, 0xac, 0xac, 0xac, 0xac, 0xac, 0xac, 0xac, 0xac, 0xac, 0xac, 0xac, 0xac, 0xac, 0xac, 0xac, 0xb0, 0xaa, 0xa6, 0xab, 0xa9, 0xab, 0xab, 0xa9, 0xab, 0xa9, 0xab, 0xab, 0xab, 0xab, 0xab, 0xad, 0xab, 0xaf, 0xb5, 0xa8, 0xf3, 0x27, 0xf3, 0xf3, 0xf3, 0xf2, 0xf3, 0xf3, 0xf3, 0xf3, 0xf4, 0xf6, 0xf4, 0xf6, 0xda, 0xda, 0xda, 0xcc, 0xdb, 0x9e, 0xa5, 0x9e, 0xa0, 0xaa, 0xa8, 0xac, 0xac, 0xa5, 0xa8, 0xa5, 0xa5, 0xa8, 0xa0, 0xa8, 0xa0, 0xa5, 0xa0, 0xa8, 0x9c, 0x94, 0x90, 0x8e, 0x90, 0x90, 0x8a, 0x8a, 0x8a, 0x90, 0x8c, 0x90, 0x8d, 0x93, 0x93, 0x97, 0x97, 0x9b, 0x99, 0x9a, 0x9d, 0xa1, 0x9d, 0xa1, 0xa1, 0xa1, 0xa4, 0xa1, 0xa4, 0xa4, 0xa4, 0xa1, 0xa1, 0x52, 0x9d, 0xa1, 0x95, 0x69, 0x6d, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x6d, 0x76, 0x75, 0x79, 0x75, 0x7b, 0x75, 0x7b, 0x75, 0x7b, 0x7b, 0x7b, 0x7b, 0x8c, 0x9b, 0x92, 0x93, 0x8d, 0x93, 0x93, 0x93, 0x93, 0x9b, 0x97, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x99, 0x95, 0x95, 0x95, 0x95, 0x95, 0x90, 0x82, 0x8a, 0x8a, 0x8a, 0x82, 0x8a, 0x8a, 0x85, 0x8a, 0x8a, 0x85, 0x8a, 0x8a, 0x8a, 0x8a, 0x8a, 0x8c, 0x90, 0x7c, 0xd5, 0xc4, 0xd5, 0x64, 0xc5, 0x65, 0x64, 0x64, 0x64, 0x64, 0x64, 0xc5, 0x64, 0x64, 0x64, 0x64, 0x65, 0x64, 0x64, 0x64, 0x65, 0x65, 0x64, 0x65, 0x65, 0xc5, 0xe7, 0xe6, 0xe7, 0xe6, 0xe6, 0xe6, 0xe6, 0xc6, 0xc6, 0x68, 0x65, 0x66, 0x66, 0x67, 0x86, 0x95, 0x8f, 0x8d, 0x8f, 0x8f, 0x8f, 0x91, 0x88, 0x24, 0x24, 0x22, 0x24, 0x22, 0x24, 0x22, 0x24, 0x22, 0x24, 0x22, 0x24, 0x25, 0xf4, 0xd9, 0xf4, 0xd9, 0xcb, 0x98, 0x50, 0x4f, 0x89, 0x89, 0x4f, 0x89, 0x89, 0x89, 0x89, 0x89, 0x4f, 0x89, 0x89, 0x89, 0x86, 0x0e, 0x0d, 0x0f, 0x0e, 0x0f, 0x1e, 0x1e, 0x1e, 0x1e, 0x1e, 0x1e, 0x1c, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x28, 0x35, 0xf6, 0xf5, 0xf5, 0xf6, 0xf5, 0xf6, 0xf6, 0xf7, 0xf7, 0xf7, 0xf8, 0xdb, 0xdb, 0xf7, 0xf3, 0xf4, 0x29, 0x26, 0x23, 0x26, 0x26, 0x26, 0x26, 0x23, 0x1c, 0x1d, 0x15, 0x15, 0x11, 0x10, 0xec, 0x11, 0xec, 0x11, 0x15, 0x15, 0x15, 0xe8, 0xe9, 0xe7, 0xe9, 0xe7, 0xe6, 0x1a, 0x21, 0x1e, 0x1e, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x1c, 0x21, 0x2a, 0x26, 0x2e, 0x26, 0x2e, 0x26, 0x2e, 0x2e, 0x2e, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x23, 0x26, 0x23, 0x23, 0x1f, 0x1f, 0x2e, 0x30, 0x39, 0x3e, 0xf9, 0x37, 0xf9, 0xf9, 0xf9, 0xf6,
0xbf, 0xc0, 0xbf, 0xbf, 0xbf, 0xc0, 0xbf, 0xbf, 0xbf, 0xbe, 0xbf, 0xbf, 0xbf, 0xbe, 0xc0, 0xbf, 0xb6, 0xb6, 0xb7, 0xb6, 0xb7, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb5, 0xb6, 0xb6, 0xb7, 0xb1, 0xab, 0xab, 0xb1, 0xa2, 0x7f, 0x87, 0x85, 0x87, 0x87, 0x87, 0x8d, 0x87, 0x8d, 0x8d, 0x8d, 0x8f, 0x8f, 0x51, 0x51, 0x51, 0x91, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0xad, 0xb5, 0xb3, 0xb3, 0xb3, 0xb3, 0xb5, 0xb3, 0xb5, 0xb3, 0xb5, 0xb5, 0xb5, 0xb6, 0xb1, 0xa6, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0x27, 0x1d, 0x25, 0x22, 0x22, 0x22, 0x25, 0x22, 0x29, 0x22, 0x29, 0x22, 0x29, 0x29, 0x29, 0x24, 0x29, 0xcd, 0xae, 0xac, 0xa5, 0xac, 0xac, 0xac, 0xac, 0xac, 0xac, 0xac, 0xac, 0xac, 0xac, 0xac, 0xac, 0xac, 0xb0, 0xaa, 0xa9, 0xa9, 0xab, 0xa9, 0xab, 0xab, 0xab, 0xab, 0xab, 0xad, 0xa9, 0xad, 0xad, 0xab, 0xad, 0xaf, 0xb5, 0xb1, 0xf4, 0xef, 0xf3, 0xf3, 0xf3, 0xf3, 0xf5, 0xf4, 0xf6, 0xf3, 0xf6, 0xf4, 0xf7, 0xf4, 0xf7, 0xda, 0xda, 0xda, 0xdb, 0xcc, 0xa5, 0xa5, 0xa8, 0xa3, 0xa8, 0xaa, 0xac, 0xac, 0xa8, 0xa8, 0xa5, 0xa8, 0xa0, 0xa8, 0xa0, 0xa8, 0xa0, 0xa8, 0x9c, 0x8e, 0x90, 0x8e, 0x8c, 0x8a, 0x8a, 0x8a, 0x8c, 0x8c, 0x8c, 0x93, 0x8d, 0x97, 0x92, 0x97, 0x99, 0x9b, 0x9d, 0x99, 0x9d, 0xa1, 0xa1, 0xa1, 0xa1, 0xa4, 0xa4, 0xa4, 0xa4, 0xa1, 0xa1, 0xa1, 0xa1, 0x9d, 0x99, 0xa6, 0x8d, 0x69, 0x6d, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x75, 0x75, 0x7b, 0x75, 0x7b, 0x75, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x75, 0x7b, 0x87, 0x9b, 0x93, 0x93, 0x8d, 0x93, 0x8d, 0x93, 0x9b, 0x97, 0x93, 0x9b, 0x93, 0x9b, 0x97, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9f, 0x97, 0x95, 0x95, 0x95, 0x95, 0x8c, 0x8a, 0x8a, 0x8a, 0x8a, 0x8a, 0x8a, 0x8a, 0x8a, 0x8a, 0x8a, 0x8a, 0x8a, 0x8a, 0x8a, 0x8a, 0x85, 0x8a, 0x8a, 0x93, 0x8a, 0x68, 0xe1, 0xd5, 0x64, 0x64, 0x64, 0xc5, 0x65, 0xc5, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x65, 0x65, 0x62, 0xc6, 0xe6, 0xe5, 0xe6, 0xe7, 0xe6, 0xe6, 0xe6, 0xe6, 0xe6, 0x64, 0xc6, 0x64, 0x65, 0x66, 0x67, 0x7e, 0x95, 0x8f, 0x8f, 0x8d, 0x8f, 0x51, 0x8a, 0x24, 0x24, 0x22, 0x22, 0x22, 0x22, 0x24, 0x22, 0x24, 0x22, 0x22, 0x22, 0x22, 0x27, 0xf4, 0xcb, 0xd9, 0xcb, 0x98, 0x50, 0x4f, 0x89, 0x89, 0x89, 0x89, 0x4f, 0x89, 0x4f, 0x89, 0x4f, 0x89, 0x4f, 0x89, 0x4f, 0x89, 0x11, 0x0b, 0x0f, 0x0f, 0x1e, 0x1e, 0x1e, 0x1e, 0x1e, 0x1e, 0x1e, 0x1c, 0x23, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x28, 0x2b, 0x31, 0xf5, 0xf5, 0xf5, 0xf6, 0xf6, 0xf6, 0xf7, 0xf7, 0xf8, 0xf8, 0xdb, 0xdb, 0xf6, 0x31, 0xf4, 0xf4, 0x28, 0x23, 0x23, 0x23, 0x26, 0x23, 0x26, 0x26, 0x26, 0x26, 0x21, 0x21, 0x17, 0x15, 0x11, 0x11, 0x10, 0x10, 0x11, 0x1b, 0x15, 0x15, 0xe9, 0xe7, 0xe7, 0xe7, 0xe8, 0x20, 0x1e, 0x20, 0x1e, 0x1e, 0x19, 0x19, 0x19, 0x19, 0x1c, 0x19, 0x19, 0x23, 0x2a, 0x23, 0x26, 0x26, 0x2e, 0x26, 0x2e, 0x26, 0x2e, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x23, 0x26, 0x23, 0x23, 0x23, 0x1f, 0x1f, 0x1f, 0x2a, 0x2e, 0x39, 0xf9, 0x37, 0xf9, 0xf9, 0xf9, 0xf6, 0xf9,
0xbf, 0xbf, 0xbf, 0xbf, 0xd0, 0xbe, 0xbf, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbf, 0xbe, 0xc0, 0xbe, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb7, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb7, 0xb1, 0xab, 0xaf, 0x9f, 0x7b, 0x85, 0x8c, 0x85, 0x87, 0x8c, 0x87, 0x8d, 0x8d, 0x8d, 0x8d, 0x8d, 0x8f, 0x8f, 0x51, 0x51, 0x91, 0x91, 0x96, 0x96, 0x9a, 0x96, 0x96, 0x91, 0x95, 0xb1, 0xb3, 0xb3, 0xb3, 0xb3, 0xb3, 0xb3, 0xb3, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb6, 0xab, 0xa6, 0xa9, 0xa9, 0xa9, 0x9e, 0x1a, 0x22, 0x22, 0x22, 0x29, 0x25, 0x22, 0x25, 0x22, 0x25, 0x29, 0x29, 0x25, 0x29, 0x29, 0x29, 0x24, 0x29, 0xa5, 0xb2, 0xac, 0xac, 0xac, 0xac, 0xac, 0xac, 0xac, 0xac, 0xac, 0xac, 0xac, 0xac, 0xac, 0xac, 0xac, 0xac, 0xaf, 0xa9, 0xa9, 0xab, 0xab, 0xab, 0xab, 0xab, 0xab, 0xab, 0xab, 0xad, 0xab, 0xad, 0xad, 0xb1, 0xb1, 0xb3, 0xb3, 0xf4, 0xf0, 0xf2, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf4, 0xf5, 0xf4, 0xf6, 0xf4, 0xf6, 0xf4, 0xf7, 0xda, 0xcc, 0xdb, 0x9e, 0xa5, 0x9e, 0xdb, 0x94, 0x9c, 0xa0, 0xa8, 0xa8, 0xaa, 0xa8, 0xa8, 0xa8, 0xa8, 0xa0, 0xa8, 0xa0, 0xa8, 0xa8, 0x98, 0x8e, 0x90, 0x8e, 0x8a, 0x8a, 0x8a, 0x8c, 0x90, 0x8c, 0x8d, 0x93, 0x92, 0x97, 0x97, 0x99, 0x99, 0x52, 0x9d, 0x9d, 0xa1, 0x52, 0xa1, 0xa1, 0xa1, 0xa6, 0xa4, 0xa4, 0xa1, 0xa1, 0xa1, 0x52, 0x9d, 0x9d, 0x9a, 0x52, 0x86, 0x69, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x75, 0x7b, 0x75, 0x7b, 0x79, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x8c, 0x92, 0x93, 0x93, 0x93, 0x93, 0x93, 0x9b, 0x97, 0x9b, 0x97, 0x9b, 0x97, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9f, 0x99, 0x95, 0x95, 0x9a, 0x8c, 0x8a, 0x8a, 0x8a, 0x8a, 0x8a, 0x8a, 0x8a, 0x8a, 0x8a, 0x8a, 0x8a, 0x8a, 0x8c, 0x8a, 0x8a, 0x8a, 0x8a, 0x8c, 0x8a, 0x93, 0x8c, 0xc8, 0xc4, 0xd5, 0x64, 0xc5, 0xc5, 0xc5, 0xc5, 0x64, 0xc5, 0x64, 0xc5, 0x64, 0xc5, 0x64, 0xc5, 0x64, 0xc5, 0x64, 0xc5, 0x64, 0x64, 0x64, 0x64, 0xe6, 0xe6, 0xe7, 0xe6, 0xe7, 0xe6, 0xe6, 0xc6, 0xe6, 0xe6, 0xe6, 0xc5, 0xc6, 0x65, 0x62, 0x67, 0x7a, 0x51, 0x92, 0x8f, 0x8f, 0x91, 0x88, 0x24, 0x24, 0x22, 0x22, 0x24, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0xf2, 0xcb, 0xcb, 0x94, 0x98, 0x50, 0x4f, 0x89, 0x89, 0x89, 0x89, 0x89, 0x89, 0x89, 0x89, 0x89, 0x89, 0x89, 0x4f, 0x89, 0x4f, 0x89, 0xec, 0x0b, 0x0f, 0x14, 0x21, 0x1e, 0x1e, 0x1e, 0x1e, 0x1e, 0x1e, 0x1c, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x28, 0x2f, 0x35, 0xf6, 0xf5, 0xf5, 0xf6, 0xf6, 0xf7, 0xf7, 0xf7, 0xf8, 0xda, 0xa5, 0xda, 0xf5, 0xf3, 0xf3, 0xf4, 0xf3, 0x23, 0x26, 0x23, 0x23, 0x23, 0x23, 0x26, 0x23, 0x26, 0x26, 0x26, 0x26, 0x23, 0x1e, 0x1e, 0x17, 0x1a, 0x15, 0x11, 0xec, 0x11, 0xec, 0x10, 0xe8, 0xe6, 0xe6, 0x15, 0x21, 0x1e, 0x1e, 0x1e, 0x1e, 0x19, 0x19, 0x19, 0x19, 0x1c, 0x16, 0x21, 0x21, 0x2a, 0x26, 0x26, 0x26, 0x2e, 0x26, 0x2e, 0x26, 0x2e, 0x26, 0x26, 0x23, 0x26, 0x23, 0x26, 0x23, 0x23, 0x23, 0x1f, 0x23, 0x1f, 0x1f, 0x1f, 0x30, 0x2e, 0x37, 0x3e, 0x3e, 0x37, 0xf9, 0xf9, 0xf9, 0xf9,
0xbf, 0xbe, 0xbe, 0xbf, 0xbe, 0xbf, 0xbf, 0xbe, 0xbe, 0xbf, 0xbe, 0xbe, 0xbe, 0xbd, 0xbf, 0xbe, 0xb6, 0xb6, 0xb6, 0xb7, 0xb6, 0xb7, 0xb6, 0xb6, 0xb5, 0xb6, 0xb6, 0xb6, 0xb5, 0xb6, 0xb5, 0xb6, 0xb7, 0xb1, 0xaf, 0x93, 0x7b, 0x85, 0x85, 0x85, 0x8c, 0x85, 0x8c, 0x87, 0x8c, 0x8d, 0x8d, 0x8d, 0x8d, 0x8f, 0x8f, 0x8f, 0x96, 0x91, 0x96, 0x96, 0x96, 0x9a, 0x96, 0x91, 0x9d, 0xb3, 0xb3, 0xb1, 0xb3, 0xb3, 0xb3, 0xb3, 0xb5, 0xb3, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb6, 0xb3, 0xa9, 0xa9, 0xa6, 0xa9, 0xcb, 0x1d, 0x25, 0x22, 0x25, 0x22, 0x22, 0x25, 0x29, 0x25, 0x29, 0x25, 0x29, 0x25, 0x29, 0x29, 0x29, 0x2d, 0x24, 0x2d, 0xac, 0xae, 0xac, 0xa5, 0xac, 0xa8, 0xac, 0xac, 0xac, 0xac, 0xac, 0xac, 0xac, 0xac, 0xac, 0xb2, 0xb0, 0xb2, 0xad, 0xa9, 0xab, 0xab, 0xad, 0xab, 0xab, 0xad, 0xad, 0xab, 0xad, 0xad, 0xaf, 0xad, 0xaf, 0xb1, 0xb1, 0xb1, 0xb5, 0xcc, 0xf0, 0xf2, 0xf2, 0xf3, 0xf3, 0xf2, 0xf3, 0xf3, 0xf3, 0xf3, 0xf5, 0xf4, 0xf6, 0xf6, 0xf4, 0xf6, 0xf7, 0xda, 0xf8, 0xda, 0xf7, 0xdb, 0xcb, 0x94, 0x94, 0x98, 0x9c, 0xa0, 0xa3, 0xa8, 0xaa, 0xa8, 0xaa, 0xa8, 0xa8, 0xa8, 0xa8, 0x90, 0x8e, 0x8a, 0x8a, 0x8a, 0x8a, 0x8c, 0x8c, 0x8c, 0x92, 0x8d, 0x97, 0x92, 0x95, 0x99, 0x9a, 0x9d, 0x9d, 0x9a, 0xa1, 0xa1, 0xa1, 0xa4, 0xa4, 0xa4, 0xa4, 0xa4, 0xa1, 0xa1, 0xa1, 0x9d, 0x9a, 0x9a, 0x99, 0x99, 0x52, 0x7e, 0x69, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x79, 0x75, 0x7b, 0x75, 0x7b, 0x75, 0x7b, 0x79, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x8c, 0x97, 0x93, 0x8d, 0x90, 0x8d, 0x9b, 0x93, 0x97, 0x93, 0x9b, 0x97, 0x9b, 0x9b, 0x97, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9f, 0x99, 0x95, 0x95, 0x8c, 0x8a, 0x85, 0x8a, 0x8a, 0x8a, 0x8c, 0x8a, 0x8a, 0x8a, 0x8c, 0x8a, 0x8c, 0x8a, 0x8c, 0x8c, 0x8c, 0x90, 0x90, 0x8c, 0x8c, 0x90, 0x9b, 0x82, 0x64, 0x64, 0x64, 0x64, 0x64, 0xc5, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0xc6, 0xe6, 0xe4, 0xc5, 0xe6, 0xc5, 0xe6, 0xe6, 0xe6, 0xc6, 0xe6, 0xc6, 0xe6, 0xc5, 0xc6, 0x64, 0x62, 0x71, 0x51, 0x95, 0x8f, 0x51, 0x8a, 0x24, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x25, 0x25, 0x22, 0xf3, 0x94, 0xcb, 0x9c, 0x50, 0x4f, 0x89, 0x89, 0x89, 0x89, 0x4f, 0x89, 0x4f, 0x89, 0x89, 0x89, 0x89, 0x89, 0x89, 0x89, 0x4f, 0x89, 0xed, 0x0b, 0x13, 0x20, 0x1e, 0x1e, 0x1e, 0x1e, 0x1e, 0x1e, 0x1e, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x28, 0x2b, 0x2c, 0xf5, 0xf3, 0xf6, 0xf5, 0xf6, 0xf4, 0xf7, 0xda, 0xf8, 0x9e, 0xa5, 0xda, 0x31, 0xf3, 0xf5, 0xf3, 0xf4, 0x2d, 0x23, 0x26, 0x23, 0x23, 0x26, 0x23, 0x23, 0x23, 0x26, 0x26, 0x23, 0x23, 0x23, 0x1f, 0x1f, 0x1f, 0x1c, 0x1e, 0x18, 0x1a, 0x15, 0x15, 0x15, 0xe9, 0xe6, 0xe6, 0x1d, 0x20, 0x1e, 0x20, 0x1e, 0x1e, 0x19, 0x1c, 0x19, 0x19, 0x19, 0x1c, 0x2a, 0x21, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x2e, 0x26, 0x26, 0x26, 0x23, 0x26, 0x23, 0x23, 0x23, 0x23, 0x1f, 0x23, 0x1f, 0x1f, 0x1f, 0x1f, 0x2a, 0x2e, 0x34, 0xf5, 0x37, 0xf9, 0xf9, 0xf9, 0xf9, 0xfa,
0xbe, 0xbe, 0xbe, 0xbf, 0xbf, 0xbf, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbd, 0xbd, 0xb5, 0xb6, 0xb5, 0xb5, 0xb6, 0xb6, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb6, 0xb3, 0x85, 0x7b, 0x85, 0x85, 0x85, 0x85, 0x8a, 0x87, 0x8c, 0x8c, 0x8c, 0x8d, 0x8d, 0x8d, 0x8d, 0x8f, 0x8f, 0x51, 0x96, 0x91, 0x91, 0x96, 0x96, 0x96, 0x91, 0xa2, 0xb5, 0xb1, 0xb3, 0xb1, 0xb3, 0xb3, 0xb3, 0xb3, 0xb3, 0xb5, 0xb5, 0xb5, 0xb5, 0xb3, 0xb5, 0xb7, 0xb1, 0xa4, 0xa9, 0xa9, 0xf2, 0x1d, 0x22, 0x22, 0x22, 0x25, 0x22, 0x25, 0x22, 0x25, 0x22, 0x29, 0x25, 0x29, 0x29, 0x25, 0x29, 0x29, 0x29, 0x24, 0x2d, 0xac, 0xae, 0xac, 0xac, 0xac, 0xac, 0xa8, 0xac, 0xac, 0xac, 0xac, 0xac, 0xac, 0xae, 0xac, 0xae, 0xae, 0xb3, 0xaf, 0xab, 0xab, 0xab, 0xad, 0xab, 0xad, 0xad, 0xad, 0xab, 0xaf, 0xad, 0xad, 0xaf, 0xb1, 0xb1, 0xaf, 0xaf, 0xb5, 0x9e, 0xf0, 0xf0, 0xf3, 0xf1, 0xf3, 0xf3, 0xf2, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf5, 0xf4, 0xf5, 0xf4, 0x31, 0xf5, 0xf6, 0xda, 0xcb, 0xf4, 0xcb, 0xcb, 0xcb, 0xcb, 0x94, 0xcc, 0xa0, 0xa8, 0xa8, 0xaa, 0xa7, 0xae, 0xa3, 0x90, 0x8a, 0x82, 0x85, 0x8a, 0x8c, 0x8c, 0x8d, 0x8c, 0x92, 0x92, 0x95, 0x97, 0x99, 0x99, 0x9d, 0x9d, 0x9d, 0x9d, 0xa1, 0xa1, 0xa1, 0xa1, 0xa6, 0xa4, 0xa4, 0xa1, 0xa1, 0x9d, 0x9d, 0x9d, 0x9d, 0x9a, 0x95, 0x99, 0x97, 0x7a, 0x6b, 0x71, 0x71, 0x71, 0x71, 0x76, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x76, 0x8c, 0x93, 0x93, 0x8d, 0x93, 0x97, 0x97, 0x97, 0x9b, 0x9b, 0x97, 0x9b, 0x97, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9f, 0x9b, 0x9b, 0x9f, 0x95, 0x9a, 0x8a, 0x8a, 0x8c, 0x8a, 0x8a, 0x8c, 0x8a, 0x8c, 0x8c, 0x8c, 0x8c, 0x8a, 0x8c, 0x8a, 0x8a, 0x8a, 0x8a, 0x82, 0x82, 0x82, 0x82, 0x7f, 0x7c, 0x8a, 0x74, 0x60, 0x6c, 0x67, 0x67, 0x67, 0x67, 0x67, 0x67, 0x67, 0x67, 0x67, 0x67, 0x67, 0x67, 0x67, 0x67, 0x67, 0x67, 0x67, 0x67, 0x69, 0x11, 0x24, 0x1b, 0xec, 0xec, 0xe9, 0xe7, 0xe6, 0xe6, 0xe6, 0x64, 0xe6, 0x64, 0xe6, 0xc5, 0xe6, 0x64, 0x61, 0x6c, 0x8b, 0x95, 0x91, 0x8e, 0x24, 0x24, 0x22, 0x22, 0x22, 0x24, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x25, 0x25, 0x25, 0x27, 0xf4, 0x98, 0x98, 0x50, 0x4f, 0x89, 0x89, 0x89, 0x89, 0x89, 0x89, 0x89, 0x89, 0x4f, 0x89, 0x4f, 0x89, 0x4f, 0x89, 0x89, 0x89, 0x89, 0xc9, 0x13, 0x1c, 0x1e, 0x1e, 0x1e, 0x1e, 0x1e, 0x1e, 0x1e, 0x1e, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x28, 0x2b, 0x32, 0x31, 0xf6, 0xf3, 0xf6, 0xf4, 0xf7, 0xda, 0xf8, 0xcc, 0xcc, 0xdb, 0xf4, 0xf5, 0xf3, 0xf3, 0xf3, 0xf3, 0xca, 0x2b, 0x23, 0x26, 0x23, 0x23, 0x26, 0x23, 0x26, 0x23, 0x23, 0x26, 0x1f, 0x21, 0x1f, 0x1f, 0x1f, 0x1f, 0x23, 0x23, 0x1f, 0x1c, 0x1c, 0x1d, 0x1e, 0x15, 0xe8, 0x10, 0x1e, 0x1e, 0x1e, 0x20, 0x1e, 0x1e, 0x19, 0x1c, 0x19, 0x19, 0x1c, 0x21, 0x23, 0x23, 0x23, 0x26, 0x26, 0x2e, 0x26, 0x26, 0x26, 0x2e, 0x26, 0x26, 0x23, 0x23, 0x23, 0x23, 0x23, 0x1f, 0x23, 0x1f, 0x1f, 0x1f, 0x1f, 0x30, 0x30, 0x30, 0x1d, 0x1a, 0x1a, 0x1a, 0x22, 0x1b, 0x25,
0xbd, 0xbe, 0xbe, 0xbe, 0xbf, 0xbf, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbd, 0xbb, 0xbe, 0xbd, 0xba, 0xbb, 0xbd, 0xba, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbd, 0xba, 0xbb, 0xbd, 0xbd, 0xbd, 0xc0, 0x9c, 0x79, 0x85, 0x8a, 0x82, 0x8a, 0x85, 0x8a, 0x87, 0x85, 0x8c, 0x8c, 0x8d, 0x8d, 0x8d, 0x8f, 0x8f, 0x51, 0x96, 0x91, 0x96, 0x91, 0x96, 0x9a, 0x91, 0xa7, 0xb5, 0xb1, 0xb3, 0xb3, 0xb3, 0xb3, 0xb3, 0xb3, 0xb5, 0xb3, 0xb5, 0xb5, 0xb3, 0xb5, 0xb5, 0xb5, 0xb6, 0xad, 0xa4, 0xa7, 0x25, 0x22, 0x22, 0x25, 0x22, 0x25, 0x25, 0x25, 0x25, 0x25, 0x25, 0x25, 0x29, 0x25, 0x29, 0x29, 0x29, 0x29, 0x2d, 0x29, 0x2b, 0x2d, 0xac, 0xae, 0xa8, 0xac, 0xa8, 0xac, 0xac, 0xa8, 0xac, 0xac, 0xac, 0xac, 0xac, 0xae, 0xae, 0xb3, 0xb3, 0xb3, 0xaf, 0xab, 0xab, 0xad, 0xad, 0xad, 0xab, 0xaf, 0xad, 0xad, 0xaf, 0xad, 0xaf, 0xb1, 0xb3, 0xaf, 0xb1, 0xaf, 0xb3, 0xa8, 0xf1, 0xee, 0xf0, 0xf1, 0xf1, 0xf1, 0xf1, 0xf2, 0xf1, 0xf3, 0xf2, 0xf3, 0xf3, 0xf3, 0xf2, 0xf3, 0xf2, 0xf2, 0x2d, 0xf2, 0xf5, 0xf6, 0xd9, 0xf4, 0xf3, 0xf4, 0xf4, 0xf4, 0xf4, 0xcb, 0xcb, 0x94, 0x9e, 0xa5, 0xa0, 0xae, 0xa3, 0x8a, 0x82, 0x8a, 0x8a, 0x8c, 0x8c, 0x8d, 0x92, 0x8d, 0x92, 0x95, 0x95, 0x99, 0x9a, 0x9a, 0x9d, 0x9d, 0x9d, 0x9d, 0xa1, 0xa1, 0xa4, 0xa4, 0xa6, 0xa4, 0xa1, 0x9d, 0xa1, 0x9d, 0x9d, 0x9a, 0x9a, 0x95, 0x8f, 0x97, 0x92, 0x76, 0x6b, 0x71, 0x71, 0x6f, 0x75, 0x7b, 0x75, 0x7b, 0x75, 0x7b, 0x79, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7f, 0x7b, 0x7b, 0x7a, 0x8c, 0x97, 0x90, 0x92, 0x97, 0x97, 0x97, 0x97, 0x97, 0x9b, 0x97, 0x9b, 0x9b, 0x9b, 0x9b, 0x52, 0x9f, 0x52, 0xa2, 0xa2, 0xa7, 0xa6, 0x52, 0x8c, 0x8a, 0x8a, 0x8a, 0x8a, 0x8a, 0x82, 0x8a, 0x82, 0x82, 0x7c, 0x7f, 0x7c, 0x79, 0x79, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7c, 0x70, 0x58, 0x67, 0x69, 0x67, 0x69, 0x67, 0x69, 0x67, 0x69, 0x67, 0x69, 0x67, 0x69, 0x69, 0x69, 0x69, 0x69, 0x69, 0x69, 0x69, 0x4a, 0x12, 0x23, 0x2c, 0x2c, 0x24, 0x24, 0x24, 0x1a, 0x1b, 0x1b, 0xec, 0xe9, 0xe7, 0xe6, 0xc6, 0xc5, 0xc5, 0xc5, 0x5f, 0x62, 0x83, 0x95, 0x90, 0x1d, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x25, 0x25, 0x27, 0x27, 0xf2, 0x94, 0x9c, 0x50, 0x4f, 0x89, 0x89, 0x89, 0x89, 0x89, 0x89, 0x89, 0x89, 0x50, 0x50, 0x50, 0x50, 0x50, 0x91, 0x50, 0x50, 0x50, 0x89, 0x7d, 0x16, 0x1c, 0x1e, 0x1e, 0x1e, 0x1e, 0x1e, 0x1e, 0x1e, 0x1e, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x21, 0x2c, 0x28, 0x37, 0xf3, 0xf6, 0xf4, 0xf6, 0xda, 0xda, 0xda, 0xcc, 0x9e, 0xcc, 0xf6, 0xf3, 0xf6, 0xf3, 0xf4, 0xf3, 0xf4, 0xd9, 0x21, 0x26, 0x23, 0x26, 0x23, 0x23, 0x23, 0x23, 0x26, 0x23, 0x21, 0x21, 0x23, 0x1f, 0x1f, 0x1c, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x23, 0x23, 0x23, 0x1c, 0x1d, 0x20, 0x20, 0x18, 0x1e, 0x20, 0x1e, 0x1e, 0x19, 0x19, 0x19, 0x19, 0x1f, 0x2a, 0x23, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x23, 0x1f, 0x23, 0x23, 0x1f, 0x23, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x30, 0x30, 0x30, 0x23, 0x12, 0x14, 0x17, 0x12, 0x0f, 0x12,
0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbb, 0xbe, 0xc0, 0xd1, 0xc1, 0xc0, 0xbf, 0xc0, 0xbf, 0xc0, 0xc0, 0xc0, 0xbf, 0xc0, 0xc0, 0xc0, 0xbf, 0xc0, 0xc0, 0xc0, 0xc0, 0xbf, 0xc0, 0xc1, 0xa0, 0x82, 0x8a, 0x8e, 0x8a, 0x8e, 0x8c, 0x8a, 0x90, 0x8a, 0x8c, 0x8c, 0x8c, 0x8d, 0x8d, 0x8f, 0x8f, 0x96, 0x91, 0x91, 0x96, 0x91, 0x96, 0x96, 0xab, 0xb3, 0xb1, 0xb1, 0xb3, 0xb1, 0xb3, 0xb3, 0xb3, 0xb5, 0xb3, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xad, 0x98, 0x1d, 0x22, 0x25, 0x22, 0x25, 0x22, 0x25, 0x22, 0x25, 0x25, 0x29, 0x25, 0x25, 0x29, 0x25, 0x29, 0x29, 0x29, 0x29, 0x2d, 0x29, 0x2c, 0x2d, 0xac, 0xb2, 0xa8, 0xac, 0xac, 0xa8, 0xac, 0xac, 0xa8, 0xac, 0xac, 0xae, 0xae, 0xae, 0xb1, 0xb1, 0xb3, 0xb3, 0xaf, 0xab, 0xad, 0xad, 0xad, 0xaf, 0xaf, 0xad, 0xad, 0xad, 0xaf, 0xaf, 0xb1, 0xb3, 0xb1, 0xaf, 0xb1, 0xaf, 0xb1, 0xaf, 0xf1, 0xee, 0xf0, 0xf0, 0xf1, 0xf0, 0xf1, 0xf0, 0xf1, 0xf1, 0xf0, 0xf1, 0xf0, 0xf1, 0xf3, 0xf0, 0x27, 0x27, 0x2d, 0x27, 0x31, 0x31, 0xf1, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf2, 0xf3, 0xf3, 0xf2, 0xf3, 0xf3, 0xd9, 0xf4, 0xca, 0x7c, 0x84, 0x8c, 0x87, 0x8c, 0x8c, 0x8d, 0x8f, 0x92, 0x92, 0x95, 0x95, 0x9a, 0x9a, 0x9d, 0x9d, 0xa1, 0x9d, 0xa1, 0xa1, 0xa1, 0xa4, 0xa6, 0xa1, 0xa1, 0xa1, 0x9d, 0x9d, 0x9d, 0x9a, 0x95, 0x95, 0x92, 0x8f, 0x93, 0x8d, 0x71, 0x71, 0x71, 0x71, 0x76, 0x79, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7f, 0x7b, 0x7b, 0x7a, 0x8c, 0x93, 0x97, 0x9b, 0x97, 0x97, 0x9b, 0x52, 0x52, 0x9f, 0xa2, 0x52, 0xa2, 0x9b, 0x9b, 0x97, 0x93, 0x92, 0x90, 0x8c, 0x8a, 0x85, 0x7c, 0x7c, 0x79, 0x79, 0x77, 0x77, 0x77, 0x74, 0x77, 0x74, 0x77, 0x77, 0x77, 0x77, 0x77, 0x79, 0x77, 0x79, 0x79, 0x79, 0x79, 0x79, 0x7c, 0x7c, 0x77, 0x59, 0x59, 0x67, 0x6d, 0x67, 0x69, 0x67, 0x69, 0x67, 0x69, 0x67, 0x69, 0x67, 0x67, 0x67, 0x67, 0x67, 0x69, 0x67, 0x69, 0x69, 0x15, 0x1c, 0x1e, 0x22, 0x29, 0x24, 0x24, 0x2b, 0x24, 0x2b, 0x24, 0x24, 0x24, 0x22, 0x1a, 0x1b, 0xec, 0x10, 0xe9, 0xe4, 0xc4, 0x73, 0x8a, 0x2b, 0x24, 0x29, 0x24, 0x29, 0x24, 0x29, 0x24, 0x29, 0x29, 0x29, 0x29, 0x25, 0x29, 0x27, 0x27, 0x27, 0xf3, 0x9c, 0x91, 0x89, 0x50, 0x50, 0x91, 0x50, 0x91, 0x50, 0x50, 0x50, 0x4e, 0x83, 0x4d, 0x78, 0x6f, 0x6d, 0x69, 0x67, 0x63, 0x5e, 0x5c, 0xec, 0x33, 0x1e, 0x19, 0x19, 0x1e, 0x1e, 0x1e, 0x1e, 0x1e, 0x1c, 0x1f, 0x23, 0x1f, 0x1f, 0x1f, 0x21, 0x2b, 0x2b, 0x2c, 0xf6, 0xf4, 0xf6, 0xf4, 0xda, 0xda, 0xcc, 0xcc, 0x9e, 0xda, 0xf5, 0xf4, 0xf3, 0xf4, 0xf3, 0xf3, 0xf3, 0xd9, 0xf3, 0x23, 0x26, 0x23, 0x23, 0x26, 0x23, 0x26, 0x23, 0x26, 0x1f, 0x21, 0x1f, 0x21, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x3a, 0x40, 0x2b, 0x20, 0x18, 0x1e, 0x20, 0x1e, 0x19, 0x19, 0x19, 0x1f, 0x23, 0x23, 0x23, 0x23, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x23, 0x1f, 0x1f, 0x23, 0x1f, 0x23, 0x1f, 0x1f, 0x1f, 0x1f, 0x2e, 0x30, 0x30, 0x30, 0x1c, 0x12, 0x12, 0x17, 0x17, 0x12,
0xbd, 0xbd, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbf, 0xbe, 0xbe, 0xbd, 0xbd, 0xc0, 0xd1, 0xd1, 0xd1, 0xd1, 0xc0, 0xbe, 0xbe, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbe, 0xbf, 0xbf, 0xc0, 0xa0, 0x82, 0x8e, 0x8e, 0x90, 0x8e, 0x90, 0x8e, 0x90, 0x90, 0x90, 0x93, 0x90, 0x92, 0x8d, 0x51, 0x96, 0x91, 0x96, 0x91, 0x91, 0x91, 0x96, 0xad, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb3, 0xb3, 0xb3, 0xb5, 0xb3, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb6, 0xb3, 0xf2, 0x17, 0x22, 0x22, 0x25, 0x25, 0x22, 0x25, 0x25, 0x25, 0x25, 0x25, 0x29, 0x25, 0x25, 0x29, 0x29, 0x29, 0x2d, 0x29, 0x2d, 0x29, 0x2d, 0x2b, 0x31, 0xac, 0xae, 0xa8, 0xac, 0xa8, 0xac, 0xac, 0xac, 0xac, 0xae, 0xae, 0xae, 0xb1, 0xb1, 0xb3, 0xb1, 0xb3, 0xb3, 0xb1, 0xab, 0xad, 0xaf, 0xad, 0xad, 0xad, 0xaf, 0xaf, 0xaf, 0xaf, 0xb1, 0xb3, 0xb1, 0xb1, 0xaf, 0xaf, 0xaf, 0xb3, 0xb1, 0xd9, 0xec, 0xee, 0xf0, 0xf0, 0xd7, 0xf0, 0xf0, 0xf0, 0xf0, 0xf0, 0xf0, 0xf0, 0xf0, 0xf0, 0xef, 0x27, 0xf0, 0x27, 0x27, 0xf2, 0xf2, 0xf2, 0xf0, 0xf2, 0xf0, 0xf2, 0xf0, 0xf2, 0xf0, 0xf0, 0xf0, 0xef, 0xf0, 0x1b, 0x82, 0x83, 0xd7, 0x80, 0x88, 0x8c, 0x8c, 0x92, 0x92, 0x51, 0x95, 0x95, 0x9a, 0x9a, 0x99, 0x9a, 0x9d, 0x9d, 0xa1, 0xa1, 0xa1, 0xa4, 0xa4, 0xa6, 0xa4, 0xa1, 0x9d, 0xa1, 0x9d, 0x9d, 0x9a, 0x9a, 0x95, 0x95, 0x92, 0x8d, 0x92, 0x8c, 0x6b, 0x71, 0x71, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7f, 0x7a, 0x85, 0x81, 0x7f, 0x7a, 0x8c, 0x9b, 0x9b, 0x97, 0x97, 0x93, 0x8d, 0x8c, 0x8c, 0x8c, 0x85, 0x85, 0x7f, 0x79, 0x79, 0x79, 0x77, 0x74, 0x74, 0x70, 0x74, 0x77, 0x74, 0x77, 0x77, 0x79, 0x77, 0x77, 0x79, 0x77, 0x79, 0x77, 0x77, 0x79, 0x77, 0x79, 0x77, 0x79, 0x77, 0x79, 0x79, 0x79, 0x79, 0x7c, 0x7c, 0x77, 0x5d, 0x59, 0x58, 0x67, 0x6d, 0x67, 0x67, 0x67, 0x69, 0x67, 0x69, 0x67, 0x69, 0x67, 0x69, 0x67, 0x69, 0x67, 0x69, 0x69, 0x63, 0x15, 0x1f, 0x19, 0x1e, 0x25, 0x22, 0x24, 0x22, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x28, 0x2b, 0x28, 0x24, 0x24, 0x24, 0x1a, 0x0e, 0xf0, 0xec, 0x0e, 0x1b, 0x15, 0x1b, 0x15, 0x1b, 0x1a, 0x1b, 0x1a, 0x1b, 0x1b, 0x25, 0xef, 0xef, 0xf0, 0xf0, 0xf0, 0xcb, 0x89, 0x4e, 0x78, 0x78, 0x71, 0x71, 0x69, 0x67, 0x63, 0x5e, 0x59, 0x59, 0x59, 0x54, 0x55, 0x54, 0xc2, 0x55, 0x55, 0x55, 0x54, 0xe6, 0x3f, 0x39, 0x2b, 0x20, 0x19, 0x19, 0x1e, 0x1c, 0x1e, 0x1e, 0x1c, 0x1f, 0x23, 0x1f, 0x1f, 0x21, 0x2c, 0x2b, 0x32, 0xf5, 0xf4, 0xf4, 0xf7, 0xda, 0xcc, 0xcc, 0x9e, 0x9e, 0xf7, 0xf3, 0xf4, 0xf3, 0xf3, 0xf4, 0xd9, 0xf3, 0xd9, 0xca, 0x27, 0x26, 0x26, 0x26, 0x23, 0x23, 0x23, 0x23, 0x23, 0x21, 0x21, 0x21, 0x23, 0x21, 0x1f, 0x1f, 0x1c, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x1c, 0x2a, 0x40, 0x40, 0x3f, 0x2b, 0x20, 0x18, 0x1e, 0x1e, 0x1c, 0x19, 0x1c, 0x23, 0x23, 0x23, 0x26, 0x23, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x23, 0x23, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x30, 0x30, 0x30, 0x33, 0x26, 0x16, 0x12, 0x17, 0x0f, 0x12,
0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbe, 0xbe, 0xbd, 0xbd, 0xbd, 0xbf, 0xd1, 0xd1, 0xc1, 0xd1, 0xc1, 0xd1, 0xd1, 0xc1, 0xbe, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbe, 0xbf, 0xbf, 0xbd, 0xbe, 0xd0, 0x9c, 0x82, 0x8a, 0x8e, 0x90, 0x8e, 0x90, 0x90, 0x90, 0x90, 0x90, 0x93, 0x93, 0x9b, 0x97, 0x9a, 0x9a, 0x96, 0x9a, 0x96, 0x91, 0x95, 0xb1, 0xb3, 0xb1, 0xb3, 0xb3, 0xb3, 0xb3, 0xb2, 0xb5, 0xb2, 0xb3, 0xb2, 0xb2, 0xb2, 0xb2, 0xb2, 0xb0, 0xb2, 0xb0, 0xb2, 0xf8, 0x27, 0x27, 0x25, 0x1a, 0x22, 0x22, 0x22, 0x25, 0x25, 0x25, 0x25, 0x25, 0x29, 0x25, 0x29, 0x25, 0x29, 0x29, 0x2d, 0x29, 0x2d, 0x2d, 0x2d, 0x2b, 0x31, 0xae, 0xae, 0xa8, 0xac, 0xac, 0xac, 0xac, 0xac, 0xae, 0xae, 0xae, 0xb1, 0xaf, 0xb1, 0xb3, 0xaf, 0xb3, 0xb3, 0xaf, 0xad, 0xad, 0xaf, 0xad, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xb1, 0xb3, 0xb1, 0xb1, 0xaf, 0xaf, 0xaf, 0xab, 0xb1, 0xaf, 0x94, 0xed, 0xee, 0xee, 0xee, 0xee, 0xee, 0xf0, 0xee, 0xf0, 0xee, 0xf0, 0xee, 0xef, 0xef, 0xef, 0xef, 0x27, 0xef, 0x27, 0x25, 0xf0, 0xf2, 0xf0, 0xf2, 0xf0, 0xf0, 0xf0, 0xf0, 0xf0, 0xf0, 0xf0, 0xf0, 0xef, 0xd7, 0x4f, 0x81, 0xd6, 0xd7, 0x80, 0x88, 0x8a, 0x8c, 0x8f, 0x95, 0x96, 0x96, 0x9a, 0x9a, 0x9d, 0x9a, 0x9d, 0xa1, 0xa1, 0xa1, 0xa1, 0xa6, 0xa6, 0xa1, 0xa1, 0xa1, 0x9d, 0x9d, 0x9d, 0x9a, 0x9a, 0x95, 0x95, 0x51, 0x8f, 0x8d, 0x93, 0x81, 0x71, 0x71, 0x7b, 0x7b, 0x7b, 0x7f, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7f, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x75, 0x75, 0x75, 0x75, 0x7f, 0x7f, 0x79, 0x79, 0x77, 0x77, 0x77, 0x74, 0x74, 0x74, 0x74, 0x77, 0x74, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x79, 0x77, 0x79, 0x77, 0x7c, 0x77, 0x79, 0x77, 0x7c, 0x79, 0x79, 0x79, 0x79, 0x77, 0x79, 0x79, 0x7d, 0x7c, 0x79, 0x5d, 0x5d, 0x59, 0x5d, 0x63, 0x71, 0x67, 0x69, 0x67, 0x69, 0x67, 0x69, 0x67, 0x69, 0x67, 0x69, 0x67, 0x69, 0x67, 0x69, 0x69, 0x17, 0x1c, 0x19, 0x19, 0x1e, 0x29, 0x22, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x20, 0x20, 0x28, 0x23, 0xf3, 0x86, 0xe3, 0x00, 0x03, 0xe3, 0x03, 0xe4, 0x03, 0xe4, 0x03, 0xe4, 0xe5, 0xe4, 0xe5, 0xe4, 0xe7, 0xc6, 0xc6, 0x6e, 0x62, 0x5d, 0x59, 0x59, 0x55, 0x54, 0x55, 0x54, 0x55, 0x55, 0x57, 0x59, 0x55, 0x5b, 0x59, 0x5b, 0x59, 0x5b, 0x5b, 0x5b, 0x56, 0x5a, 0x32, 0x3d, 0x39, 0x39, 0x32, 0x28, 0x1c, 0x18, 0x1c, 0x1e, 0x20, 0x1f, 0x1f, 0x1f, 0x1f, 0x21, 0x2b, 0x24, 0x2b, 0xf5, 0xf4, 0xda, 0xcb, 0xda, 0xcc, 0xcc, 0x9e, 0x9e, 0xf4, 0xf6, 0xf4, 0xf4, 0xf4, 0xd9, 0xf4, 0xd9, 0xd9, 0xd9, 0x8e, 0x24, 0x23, 0x26, 0x23, 0x26, 0x23, 0x26, 0x23, 0x21, 0x21, 0x21, 0x1f, 0x21, 0x23, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x1c, 0x1f, 0x3f, 0x3f, 0x3f, 0x40, 0x3f, 0x36, 0x20, 0x18, 0x16, 0x19, 0x19, 0x21, 0x23, 0x23, 0x23, 0x23, 0x23, 0x26, 0x26, 0x26, 0x23, 0x26, 0x23, 0x26, 0x26, 0x23, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x30, 0x30, 0x30, 0x30, 0x30, 0x1f, 0x16, 0x12, 0x14, 0x14,
0xbd, 0xbb, 0xbd, 0xbb, 0xbb, 0xbd, 0xbe, 0xbe, 0xbf, 0xc1, 0xd1, 0xd1, 0xc1, 0xd1, 0xc1, 0xc1, 0xc1, 0xc1, 0xd1, 0xc0, 0xbe, 0xbf, 0xbe, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbe, 0xbf, 0xbe, 0xbb, 0xc0, 0xc0, 0x98, 0x88, 0x8e, 0x8e, 0x8e, 0x90, 0x8e, 0x90, 0x90, 0x90, 0x93, 0x93, 0x97, 0x99, 0x9a, 0x9a, 0x9a, 0x9d, 0x9a, 0x9a, 0x9d, 0xb6, 0xb7, 0xb5, 0xb3, 0xb5, 0xb2, 0xb4, 0xb2, 0xb2, 0xb2, 0xb0, 0xb0, 0xb0, 0xac, 0xb0, 0xcd, 0xac, 0xcd, 0xac, 0xcd, 0xb3, 0xa5, 0xf6, 0xf4, 0xf5, 0xf2, 0x27, 0x25, 0x22, 0x22, 0x22, 0x25, 0x25, 0x25, 0x29, 0x27, 0x29, 0x25, 0x29, 0x29, 0x2d, 0x29, 0x2d, 0x2c, 0x2d, 0x2b, 0xf5, 0xac, 0xae, 0xac, 0xae, 0xaa, 0xac, 0xae, 0xaa, 0xae, 0xb1, 0xb1, 0xb1, 0xb1, 0xaf, 0xb3, 0xb1, 0xb1, 0xb3, 0xb1, 0xad, 0xaf, 0xaf, 0xaf, 0xaf, 0xb1, 0xaf, 0xaf, 0xb1, 0xb1, 0xb3, 0xb1, 0xaf, 0xaf, 0xaf, 0xaf, 0xad, 0xaf, 0xb3, 0x94, 0xe9, 0xec, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xef, 0xef, 0xef, 0xef, 0xef, 0xf0, 0xef, 0x27, 0xef, 0xf1, 0xf0, 0xf0, 0xf0, 0xf0, 0xf0, 0xf0, 0xf0, 0xf0, 0xf0, 0xf0, 0xd7, 0x4f, 0x4f, 0x83, 0xc9, 0xd7, 0x80, 0x88, 0x82, 0x8e, 0x8c, 0x97, 0x95, 0x9a, 0x9a, 0x9a, 0x9a, 0x9d, 0xa1, 0xa1, 0xa1, 0xa4, 0xa6, 0xa6, 0xa1, 0xa1, 0x9d, 0xa1, 0x9d, 0x9a, 0x9a, 0x9a, 0x96, 0x95, 0x51, 0x92, 0x8d, 0x8d, 0x8c, 0x7e, 0x7a, 0x7f, 0x7b, 0x7b, 0x7b, 0x75, 0x79, 0x75, 0x75, 0x75, 0x75, 0x70, 0x75, 0x70, 0x70, 0x6a, 0x70, 0x6a, 0x70, 0x6a, 0x6c, 0x6a, 0x70, 0x77, 0x74, 0x77, 0x77, 0x77, 0x75, 0x77, 0x77, 0x77, 0x77, 0x74, 0x77, 0x77, 0x74, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7c, 0x77, 0x79, 0x77, 0x79, 0x77, 0x7c, 0x79, 0x7c, 0x77, 0x79, 0x77, 0x7c, 0x7d, 0x79, 0x79, 0x7c, 0x7c, 0x60, 0x59, 0x5e, 0x59, 0x5d, 0x67, 0x6d, 0x69, 0x67, 0x69, 0x67, 0x69, 0x67, 0x69, 0x69, 0x69, 0x69, 0x69, 0x69, 0x69, 0x69, 0x12, 0x1f, 0x19, 0x19, 0x19, 0x1e, 0x29, 0x22, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x20, 0x24, 0x24, 0x24, 0x20, 0x24, 0x8e, 0x96, 0x8f, 0xe7, 0x02, 0x03, 0xe5, 0x03, 0xe5, 0x03, 0xe5, 0x07, 0xe4, 0xe5, 0xe4, 0xe6, 0xd5, 0xe6, 0xc5, 0x68, 0x62, 0x5b, 0x59, 0x59, 0x59, 0x59, 0x59, 0x59, 0x59, 0x59, 0x59, 0x59, 0x5b, 0x59, 0x5b, 0x59, 0x5b, 0x59, 0x5b, 0x5a, 0x59, 0x59, 0x1a, 0x3d, 0x39, 0x39, 0x39, 0x39, 0x32, 0x28, 0x20, 0x19, 0x19, 0x1e, 0x1c, 0x23, 0x1f, 0x21, 0x2b, 0x2b, 0x2b, 0x37, 0xda, 0xda, 0xda, 0xcc, 0xcc, 0x9e, 0x9c, 0xcc, 0xf6, 0xf4, 0xf4, 0xf4, 0xf4, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xca, 0xca, 0x21, 0x26, 0x23, 0x23, 0x26, 0x23, 0x23, 0x21, 0x21, 0x21, 0x23, 0x21, 0x1f, 0x21, 0x23, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x1c, 0x34, 0x3f, 0x3f, 0x3f, 0x3f, 0x40, 0x3f, 0x36, 0x24, 0x19, 0x13, 0x1f, 0x26, 0x23, 0x23, 0x23, 0x23, 0x26, 0x26, 0x26, 0x26, 0x23, 0x26, 0x23, 0x26, 0x23, 0x23, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x30, 0x30, 0x30, 0x30, 0x30, 0x26, 0x1c, 0x13, 0x12, 0x0f,
0xbb, 0xba, 0xba, 0xbb, 0xba, 0xbb, 0xbf, 0xc0, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xd1, 0xc1, 0xc1, 0xd1, 0xd1, 0xc0, 0xbe, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbe, 0xbe, 0xbb, 0xbf, 0xc0, 0x98, 0x82, 0x8e, 0x90, 0x8e, 0x90, 0x90, 0x90, 0x90, 0x93, 0x93, 0x97, 0x99, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x9d, 0xb3, 0xb7, 0xb6, 0xb3, 0xb5, 0xb5, 0xb3, 0xb4, 0xb2, 0xb2, 0xb0, 0xb2, 0xb0, 0xb2, 0xb0, 0xac, 0xb0, 0xac, 0xb0, 0xcd, 0xac, 0xae, 0xa5, 0xf3, 0xf7, 0xda, 0xf7, 0xf6, 0xf3, 0xf2, 0x27, 0x25, 0x22, 0x25, 0x22, 0x29, 0x25, 0x2d, 0x25, 0x2d, 0x29, 0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x2c, 0xf5, 0xae, 0xaa, 0xa8, 0xac, 0xaa, 0xae, 0xae, 0xb1, 0xaf, 0xb1, 0xaf, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb3, 0xb1, 0xad, 0xb1, 0xaf, 0xb1, 0xaf, 0xaf, 0xb1, 0xb1, 0xb3, 0xb1, 0xaf, 0xb1, 0xaf, 0xad, 0xad, 0xaf, 0xad, 0xad, 0xb5, 0xa3, 0xea, 0xe8, 0xed, 0xed, 0xed, 0xed, 0xed, 0xed, 0xed, 0xed, 0x1b, 0x1b, 0xef, 0x1b, 0xef, 0xef, 0xef, 0xef, 0xef, 0xef, 0xf0, 0xf0, 0xf0, 0xf0, 0xf0, 0xf0, 0xf0, 0xf0, 0xf0, 0xf1, 0xef, 0xf1, 0x83, 0x4f, 0x4f, 0x83, 0xc9, 0x80, 0x7c, 0x88, 0x82, 0x8e, 0x8a, 0x90, 0x97, 0x9d, 0x9d, 0x9d, 0x9d, 0x9d, 0xa1, 0xa1, 0xa2, 0xa9, 0xa6, 0xa1, 0xa1, 0xa1, 0x9d, 0x9d, 0x9d, 0x9a, 0x9a, 0x99, 0x96, 0x95, 0x92, 0x92, 0x8f, 0x99, 0x8c, 0x6c, 0x70, 0x74, 0x6a, 0x70, 0x6a, 0x6a, 0x6a, 0x6a, 0x6a, 0x6a, 0x6a, 0x6a, 0x6a, 0x6a, 0x70, 0x6a, 0x70, 0x70, 0x70, 0x70, 0x70, 0x79, 0x77, 0x79, 0x77, 0x74, 0x77, 0x77, 0x74, 0x77, 0x77, 0x74, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x74, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x79, 0x79, 0x79, 0x77, 0x7c, 0x79, 0x77, 0x79, 0x79, 0x7c, 0x7c, 0x79, 0x79, 0x79, 0x7c, 0x79, 0x7f, 0x62, 0x59, 0x5d, 0x5d, 0x5d, 0x59, 0x67, 0x6d, 0x69, 0x67, 0x69, 0x67, 0x69, 0x69, 0x67, 0x69, 0x69, 0x67, 0x69, 0x69, 0x69, 0x17, 0x1c, 0x19, 0x19, 0x19, 0x19, 0x1e, 0x29, 0x22, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x20, 0x24, 0x20, 0x24, 0x25, 0x93, 0x50, 0x96, 0x96, 0xc7, 0x02, 0x03, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe6, 0xe5, 0xe6, 0xe6, 0xe6, 0xc6, 0xc5, 0x5b, 0x5f, 0x59, 0x59, 0x59, 0x5b, 0x59, 0x5b, 0x59, 0x5b, 0x59, 0x5b, 0x59, 0x5b, 0x5b, 0x5b, 0x5b, 0x59, 0x5b, 0x59, 0x56, 0x10, 0x3a, 0x39, 0x39, 0x39, 0x39, 0x39, 0x39, 0x39, 0x2b, 0x20, 0x19, 0x19, 0x1c, 0x1f, 0x1f, 0x2b, 0x24, 0x2b, 0x2d, 0xf7, 0xcb, 0xcc, 0xcc, 0x9e, 0x9e, 0xa0, 0xcc, 0xf4, 0xda, 0xf4, 0xf4, 0xcb, 0xf4, 0xcb, 0xd9, 0xd9, 0xca, 0xd8, 0x90, 0xf1, 0x26, 0x26, 0x23, 0x23, 0x26, 0x23, 0x21, 0x21, 0x21, 0x21, 0x23, 0x21, 0x1f, 0x23, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x1c, 0x2a, 0x3f, 0x3f, 0x3f, 0x3f, 0x3f, 0x3f, 0x3f, 0x3f, 0x39, 0x20, 0x19, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x26, 0x26, 0x23, 0x26, 0x23, 0x26, 0x23, 0x23, 0x26, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x30, 0x30, 0x30, 0x30, 0x33, 0x30, 0x1f, 0x1c, 0x13, 0x12,
0xc0, 0xc0, 0xc0, 0xbf, 0xbf, 0xc0, 0xc1, 0xc1, 0xd1, 0xc1, 0xc1, 0xc1, 0xd1, 0xc1, 0xd1, 0xc1, 0xd1, 0xc1, 0xc1, 0xd1, 0xd1, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbb, 0xbd, 0xbd, 0xbf, 0xbf, 0x98, 0x88, 0x8e, 0x90, 0x8e, 0x90, 0x90, 0x93, 0x90, 0x93, 0x97, 0x99, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x9d, 0xad, 0xb5, 0xb8, 0xb5, 0xb5, 0xb5, 0xb2, 0xb3, 0xb2, 0xb2, 0xb2, 0xb2, 0xb0, 0xb2, 0xac, 0xb0, 0xac, 0xcd, 0xac, 0xac, 0xcd, 0xac, 0xaa, 0xdb, 0xf6, 0xf4, 0xf6, 0xf7, 0xf7, 0xf7, 0xf7, 0xf6, 0xf2, 0x31, 0x27, 0x25, 0x29, 0x22, 0x29, 0x29, 0x2d, 0x29, 0x2d, 0x2c, 0x2d, 0x35, 0x2d, 0x35, 0xf6, 0xae, 0xaf, 0xaa, 0xae, 0xaa, 0xae, 0xaf, 0xb1, 0xaf, 0xb1, 0xaf, 0xb3, 0xb1, 0xb1, 0xb1, 0xb3, 0xb3, 0xb3, 0xaf, 0xaf, 0xaf, 0xaf, 0xb1, 0xaf, 0xb1, 0xaf, 0xb3, 0xb3, 0xb1, 0xb1, 0xaf, 0xaf, 0xad, 0xaf, 0xad, 0xad, 0xab, 0xb1, 0xaa, 0xd6, 0x07, 0xed, 0xed, 0xe9, 0xed, 0xed, 0xe9, 0xec, 0xec, 0x1b, 0xec, 0x1b, 0xee, 0x1b, 0xef, 0x1b, 0xef, 0x1b, 0xef, 0xf0, 0xf0, 0xf0, 0xf0, 0xf0, 0xf0, 0xf0, 0xf0, 0xf0, 0xf0, 0xee, 0x8b, 0x4f, 0x4f, 0x4f, 0x83, 0xc9, 0x80, 0x7d, 0x82, 0x82, 0x8c, 0x8a, 0x90, 0x92, 0x9d, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa4, 0xa9, 0xa6, 0xa4, 0xa1, 0xa1, 0xa1, 0x9d, 0xa1, 0x9d, 0x9d, 0x9a, 0x9d, 0x99, 0x99, 0x99, 0x97, 0x93, 0x8c, 0x5b, 0x5f, 0x70, 0x70, 0x6a, 0x6c, 0x70, 0x6a, 0x70, 0x6a, 0x70, 0x6c, 0x70, 0x6a, 0x70, 0x6a, 0x70, 0x6a, 0x70, 0x70, 0x6c, 0x70, 0x79, 0x77, 0x77, 0x79, 0x77, 0x74, 0x77, 0x77, 0x74, 0x77, 0x77, 0x74, 0x77, 0x74, 0x77, 0x74, 0x77, 0x77, 0x77, 0x77, 0x74, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7c, 0x77, 0x7c, 0x79, 0x7c, 0x79, 0x79, 0x7c, 0x7c, 0x79, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x66, 0x58, 0x5d, 0x5d, 0x5d, 0x5d, 0x5d, 0x63, 0x6d, 0x69, 0x69, 0x69, 0x69, 0x69, 0x69, 0x69, 0x67, 0x69, 0x69, 0x69, 0x69, 0x14, 0x1c, 0x19, 0x19, 0x19, 0x19, 0x19, 0x20, 0x29, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0xf2, 0x95, 0x51, 0x8f, 0x96, 0x96, 0xc9, 0x03, 0x07, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe6, 0xe5, 0xe6, 0xe6, 0xe6, 0xc5, 0x5f, 0x5a, 0x5f, 0x5b, 0x59, 0x59, 0x59, 0x59, 0x5b, 0x59, 0x5b, 0x59, 0x5b, 0x5b, 0x59, 0x5b, 0x5b, 0x5b, 0x5b, 0x59, 0x56, 0xe1, 0x2f, 0x39, 0x39, 0x36, 0x35, 0x39, 0x39, 0x39, 0x39, 0x39, 0x2b, 0x28, 0x1e, 0x1c, 0x1f, 0x2b, 0x29, 0x2b, 0x2c, 0xf7, 0xcc, 0xcc, 0x9e, 0x9c, 0x9c, 0xa0, 0xda, 0xda, 0xcb, 0xcb, 0xcb, 0xcb, 0xd9, 0xca, 0xd9, 0xca, 0xca, 0xca, 0xca, 0x8c, 0x27, 0x26, 0x26, 0x23, 0x26, 0x23, 0x21, 0x21, 0x21, 0x1f, 0x21, 0x1f, 0x23, 0x21, 0x23, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x1c, 0x23, 0x3b, 0x40, 0x3f, 0x3f, 0x3f, 0x3f, 0x3f, 0x3f, 0x3f, 0x40, 0x3b, 0x21, 0x23, 0x1f, 0x23, 0x23, 0x23, 0x23, 0x26, 0x26, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x30, 0x30, 0x30, 0x30, 0x30, 0x33, 0x23, 0x1c, 0x1c, 0x13,
0xc0, 0xc0, 0xc0, 0xc1, 0xc1, 0xc1, 0xd1, 0xc1, 0xc0, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xd1, 0xc1, 0xc1, 0xd1, 0xd1, 0xbf, 0xbe, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbe, 0xbd, 0xbd, 0xbd, 0xbd, 0xbf, 0xbf, 0x98, 0x82, 0x8e, 0x90, 0x90, 0x90, 0x90, 0x93, 0x93, 0x97, 0x99, 0x9a, 0x9a, 0x9d, 0x9a, 0x9d, 0x9a, 0x9d, 0xad, 0xb1, 0xb5, 0xb7, 0xb4, 0xb5, 0xb2, 0xb5, 0xb2, 0xb2, 0xb2, 0xac, 0xb2, 0xb0, 0xb0, 0xac, 0xb0, 0xac, 0xcd, 0xac, 0xcd, 0xac, 0xa8, 0xaa, 0xa5, 0xf3, 0xf6, 0xf4, 0xf7, 0xf4, 0xf7, 0xf7, 0xda, 0xf7, 0xf7, 0xf7, 0xf5, 0xf2, 0x2d, 0x29, 0x29, 0x29, 0x2c, 0x2d, 0x2d, 0x2d, 0x35, 0x2d, 0x35, 0xf8, 0xaf, 0xae, 0xaa, 0xae, 0xb1, 0xaf, 0xaf, 0xaf, 0xb1, 0xaf, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb3, 0xb3, 0xb1, 0xaf, 0xb1, 0xaf, 0xb1, 0xb1, 0xb1, 0xb3, 0xb3, 0xb1, 0xb1, 0xaf, 0xaf, 0xad, 0xad, 0xad, 0xad, 0xad, 0xab, 0xb1, 0xaf, 0xc9, 0x07, 0xe8, 0xed, 0xe9, 0xe9, 0xe9, 0xe9, 0x1b, 0x1b, 0xec, 0x1b, 0xec, 0xee, 0xec, 0xee, 0xec, 0xee, 0x1b, 0xec, 0xf0, 0xf1, 0xf0, 0xf0, 0xf0, 0xf1, 0xf0, 0xd7, 0xf0, 0xf0, 0x81, 0x4f, 0x4f, 0x4f, 0x4f, 0x83, 0xc9, 0xc9, 0x82, 0x82, 0x82, 0x8a, 0x8c, 0x8c, 0x97, 0x9a, 0xa1, 0xa1, 0xa1, 0xa4, 0xa4, 0xa6, 0xa9, 0xa4, 0xa6, 0xa4, 0xa1, 0xa4, 0xa1, 0x9d, 0xa1, 0x52, 0x9d, 0x99, 0x97, 0x92, 0x8c, 0x8c, 0x7f, 0x5f, 0x59, 0x61, 0x70, 0x74, 0x6a, 0x70, 0x6a, 0x70, 0x6a, 0x70, 0x6a, 0x70, 0x6a, 0x70, 0x70, 0x70, 0x70, 0x6c, 0x70, 0x6a, 0x70, 0x79, 0x77, 0x77, 0x79, 0x77, 0x79, 0x74, 0x74, 0x77, 0x74, 0x77, 0x74, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x79, 0x79, 0x79, 0x79, 0x77, 0x7c, 0x77, 0x7c, 0x79, 0x7c, 0x79, 0x7c, 0x7c, 0x7c, 0x82, 0x66, 0x58, 0x5d, 0x5d, 0x5d, 0x5d, 0x5d, 0x5d, 0x67, 0x6d, 0x69, 0x67, 0x69, 0x69, 0x69, 0x69, 0x69, 0x69, 0x69, 0x69, 0x69, 0x18, 0x1f, 0x19, 0x1c, 0x19, 0x19, 0x19, 0x19, 0x20, 0x29, 0x22, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x22, 0x25, 0xd9, 0x95, 0x50, 0x8f, 0x8f, 0x91, 0x9a, 0x7c, 0x02, 0x03, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe6, 0xe5, 0xe6, 0xe6, 0xe6, 0xe6, 0xe6, 0xc3, 0x5b, 0x5a, 0x5f, 0x5b, 0x59, 0x59, 0x5b, 0x59, 0x5b, 0x59, 0x5b, 0x5b, 0x5b, 0x5b, 0x59, 0x5b, 0x5b, 0x5b, 0x5b, 0x59, 0x5b, 0x1a, 0x3a, 0x39, 0x39, 0x39, 0x39, 0x32, 0x39, 0x39, 0x39, 0x39, 0x39, 0x35, 0x28, 0x1f, 0x21, 0x2b, 0x24, 0x2b, 0xf6, 0xa0, 0x9e, 0x98, 0xa0, 0x9f, 0x9e, 0xcc, 0xcc, 0xcc, 0xcb, 0x94, 0xcb, 0xcb, 0x94, 0xca, 0xca, 0xca, 0x88, 0xca, 0x8a, 0x8c, 0x24, 0x26, 0x23, 0x26, 0x23, 0x21, 0x21, 0x21, 0x21, 0x21, 0x23, 0x21, 0x23, 0x1f, 0x23, 0x23, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x1c, 0x38, 0x3f, 0x3f, 0x3f, 0x3f, 0x3d, 0x3f, 0x3f, 0x3f, 0x3f, 0x41, 0x3a, 0x30, 0x23, 0x23, 0x1f, 0x23, 0x23, 0x26, 0x23, 0x23, 0x23, 0x23, 0x26, 0x23, 0x23, 0x23, 0x23, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x1c, 0x1f, 0x19,
0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xd1, 0xc1, 0xc1, 0xd1, 0xd1, 0xc1, 0xd1, 0xc1, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbf, 0xbe, 0x98, 0x8a, 0x8e, 0x90, 0x90, 0x90, 0x93, 0x93, 0x97, 0x99, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0xa1, 0xab, 0xb1, 0xb3, 0xb5, 0xb6, 0xb4, 0xb6, 0xb2, 0xb5, 0xb2, 0xb2, 0xb2, 0xb0, 0xac, 0xac, 0xac, 0xac, 0xac, 0xac, 0xac, 0xac, 0xac, 0xa8, 0xa8, 0xaa, 0xdb, 0xf6, 0xf6, 0xf6, 0xf7, 0xf6, 0xf7, 0xf7, 0xf6, 0xf7, 0xf7, 0xf7, 0xf7, 0xf7, 0xf6, 0xf5, 0x31, 0x2d, 0x2d, 0x2c, 0x2d, 0x2c, 0x37, 0x31, 0x31, 0xdb, 0xaf, 0xaf, 0xaf, 0xaf, 0xb1, 0xaf, 0xb1, 0xaf, 0xb1, 0xaf, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb3, 0xb1, 0xb1, 0xb1, 0xaf, 0xaf, 0xaf, 0xad, 0xad, 0xab, 0xab, 0xab, 0xaf, 0xb3, 0x84, 0x07, 0xe5, 0xe9, 0xe9, 0xe9, 0xec, 0xec, 0xec, 0xec, 0xec, 0xec, 0x1b, 0xec, 0xec, 0xec, 0xec, 0xed, 0xec, 0xec, 0xee, 0xf1, 0xf0, 0xf0, 0xd7, 0xf0, 0xf0, 0xd7, 0xef, 0x85, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x83, 0x77, 0xc9, 0x82, 0x82, 0x82, 0x8a, 0x8c, 0x8c, 0x92, 0x9a, 0x9d, 0xa1, 0xa1, 0xa1, 0xa4, 0xa4, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0x9d, 0x9d, 0x9a, 0x99, 0x95, 0x92, 0x8f, 0x8c, 0x8c, 0x8d, 0x79, 0x5b, 0x5b, 0x5b, 0x5f, 0x70, 0x75, 0x6a, 0x70, 0x6a, 0x70, 0x70, 0x70, 0x70, 0x6a, 0x70, 0x6a, 0x70, 0x6a, 0x70, 0x6a, 0x6c, 0x74, 0x79, 0x79, 0x79, 0x77, 0x77, 0x79, 0x77, 0x77, 0x74, 0x77, 0x77, 0x77, 0x74, 0x77, 0x77, 0x74, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7c, 0x7c, 0x79, 0x79, 0x7c, 0x79, 0x7d, 0x79, 0x7c, 0x79, 0x79, 0x7c, 0x82, 0x6a, 0x58, 0x5d, 0x5d, 0x5d, 0x5d, 0x5d, 0x5d, 0x58, 0x67, 0x6d, 0x69, 0x69, 0x6d, 0x69, 0x69, 0x69, 0x67, 0x69, 0x6b, 0x67, 0x18, 0x1c, 0x19, 0x19, 0x19, 0x19, 0x1c, 0x19, 0x19, 0x20, 0x29, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x22, 0x27, 0xd9, 0x9a, 0x50, 0x8f, 0x51, 0x8f, 0x51, 0x9a, 0x87, 0xe5, 0x03, 0xe5, 0xe7, 0xe5, 0xe7, 0xe5, 0xe6, 0xe5, 0xe6, 0xe6, 0xe6, 0xe6, 0xc4, 0x5b, 0x5f, 0x5a, 0x5f, 0x5a, 0x5b, 0x59, 0x5b, 0x59, 0x5b, 0x5b, 0x59, 0x5b, 0x59, 0x5b, 0x5b, 0x5b, 0x59, 0x5b, 0x59, 0x56, 0x15, 0x34, 0x39, 0x39, 0x35, 0x39, 0x39, 0x39, 0x35, 0x39, 0x39, 0x39, 0x39, 0x39, 0x37, 0xf3, 0x20, 0x28, 0x2c, 0x31, 0x9e, 0x9c, 0xa0, 0x9c, 0x9f, 0xa0, 0x9e, 0xcc, 0xcc, 0x94, 0x94, 0x94, 0x8e, 0xca, 0x8e, 0x8e, 0x8e, 0x88, 0x8e, 0x88, 0x8c, 0x88, 0x23, 0x26, 0x23, 0x23, 0x21, 0x21, 0x21, 0x21, 0x1f, 0x21, 0x21, 0x1f, 0x21, 0x23, 0x1f, 0x23, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x2a, 0x3f, 0x3f, 0x3f, 0x3f, 0x3f, 0x3f, 0x3d, 0x3f, 0x3d, 0x40, 0x40, 0x33, 0x33, 0x30, 0x2a, 0x23, 0x1f, 0x23, 0x26, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x1f, 0x1f, 0x1c, 0x1f, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x23, 0x1c, 0x1f,
0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc1, 0xd1, 0xd1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xd1, 0xc1, 0xc1, 0xc1, 0xc1, 0xd1, 0xd1, 0xc1, 0xbe, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbe, 0xbe, 0xbd, 0xbd, 0xbd, 0xbd, 0xbb, 0xc0, 0xbe, 0x98, 0x82, 0x98, 0x90, 0x90, 0x93, 0x93, 0x97, 0x99, 0x9a, 0x9a, 0x9d, 0x9a, 0x9d, 0x9a, 0x9d, 0xad, 0xb1, 0xb1, 0xb2, 0xb5, 0xb6, 0xb4, 0xb5, 0xb2, 0xb5, 0xb2, 0xb2, 0xb2, 0xb2, 0xb2, 0xac, 0xac, 0xac, 0xac, 0xcd, 0xac, 0xcd, 0xac, 0xa8, 0xac, 0xaa, 0xdb, 0xf4, 0xf4, 0xf7, 0xf4, 0xf6, 0xda, 0xf6, 0xda, 0xf7, 0xf7, 0xf7, 0xf7, 0xf7, 0xda, 0xf8, 0xf7, 0xf6, 0xf5, 0x31, 0x31, 0x2d, 0x31, 0x37, 0xf5, 0xa5, 0xad, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xb1, 0xaf, 0xb1, 0xaf, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb3, 0xb1, 0xb3, 0xb1, 0xb1, 0xb1, 0xb1, 0xb3, 0xb1, 0xb1, 0xaf, 0xaf, 0xaf, 0xaf, 0xad, 0xad, 0xad, 0xab, 0xad, 0xa9, 0xad, 0xb3, 0x94, 0x03, 0x07, 0xe9, 0xe8, 0xe8, 0x1b, 0xec, 0xec, 0xec, 0xec, 0xec, 0xec, 0xec, 0xec, 0xed, 0xec, 0xec, 0xed, 0xec, 0xf0, 0xf1, 0xf0, 0xf0, 0xf0, 0xd7, 0xf0, 0xf0, 0x82, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x83, 0x77, 0xc9, 0x82, 0x7f, 0x8a, 0x85, 0x8a, 0x8d, 0x92, 0x9a, 0x9d, 0xa1, 0x9d, 0xa1, 0xa1, 0xa1, 0xa1, 0x9d, 0x9d, 0x9d, 0x9a, 0x9a, 0x95, 0x95, 0x92, 0x8d, 0x8c, 0x8c, 0x85, 0x93, 0x75, 0x5a, 0x5f, 0x5f, 0x5b, 0x5b, 0x6a, 0x74, 0x70, 0x70, 0x70, 0x70, 0x6a, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x6c, 0x70, 0x6a, 0x74, 0x79, 0x77, 0x79, 0x77, 0x79, 0x77, 0x79, 0x77, 0x77, 0x77, 0x74, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x79, 0x77, 0x79, 0x7c, 0x7c, 0x79, 0x7c, 0x7c, 0x79, 0x7c, 0x7c, 0x7c, 0x82, 0x70, 0x5d, 0x5d, 0x5d, 0x5d, 0x5d, 0x5e, 0x5d, 0x5d, 0x5d, 0x63, 0x6d, 0x6d, 0x69, 0x69, 0x69, 0x69, 0x69, 0x69, 0x6b, 0x6c, 0x18, 0x1c, 0x1c, 0x19, 0x1c, 0x19, 0x19, 0x1c, 0x19, 0x19, 0x20, 0x29, 0x24, 0x24, 0x24, 0x24, 0x22, 0x24, 0x22, 0x25, 0x27, 0x94, 0x96, 0x51, 0x8f, 0x51, 0x8f, 0x51, 0x51, 0x9a, 0x8d, 0xe5, 0x03, 0xe5, 0xe7, 0xe5, 0xe7, 0xe5, 0xe7, 0xe5, 0xe6, 0xe5, 0xe7, 0xe4, 0x5b, 0xd4, 0x5f, 0xd4, 0x5f, 0xc3, 0x5b, 0x59, 0x5b, 0x5b, 0x5b, 0x5b, 0x5b, 0x5b, 0x5b, 0x5b, 0x5b, 0x5b, 0x5b, 0x5b, 0x56, 0xe7, 0x2a, 0x35, 0x39, 0x39, 0x39, 0x35, 0x39, 0x35, 0x39, 0x35, 0x35, 0x35, 0x32, 0xdb, 0x9a, 0xf4, 0x24, 0x28, 0x2d, 0xa5, 0xa3, 0x9f, 0xa3, 0xa2, 0xa3, 0xa0, 0x9e, 0x9c, 0x98, 0x98, 0x98, 0x90, 0x90, 0x8e, 0x8e, 0x8e, 0x8e, 0x8a, 0x8e, 0x88, 0x8b, 0xf1, 0x26, 0x26, 0x23, 0x21, 0x21, 0x21, 0x21, 0x21, 0x21, 0x23, 0x21, 0x23, 0x1f, 0x23, 0x23, 0x23, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x23, 0x3a, 0x40, 0x3f, 0x3f, 0x3f, 0x3f, 0x3f, 0x3f, 0x3f, 0x3f, 0x42, 0x38, 0x30, 0x33, 0x33, 0x30, 0x2a, 0x1f, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x1c, 0x1f, 0x1f, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x33, 0x2a, 0x1f, 0x1f,
0xc0, 0xc0, 0xbf, 0xc0, 0xc0, 0xc0, 0xc1, 0xc1, 0xd1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xd1, 0xc1, 0xc1, 0xd1, 0xc1, 0xc1, 0xd1, 0xc1, 0xc1, 0xd1, 0xc1, 0xbe, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xc0, 0xbd, 0x98, 0x82, 0x90, 0x90, 0x93, 0x93, 0x93, 0x99, 0x9a, 0x9a, 0x9d, 0x9a, 0x9d, 0x9a, 0x9d, 0xad, 0xaf, 0xb1, 0xb3, 0xb3, 0xb6, 0xb6, 0xb4, 0xb5, 0xb2, 0xb4, 0xb2, 0xb2, 0xac, 0xb0, 0xac, 0xb0, 0xac, 0xcd, 0xac, 0xac, 0xac, 0xa5, 0xac, 0xa0, 0xac, 0xaa, 0xdb, 0xf6, 0xf6, 0xf7, 0xf7, 0xf6, 0xf7, 0xf6, 0xf7, 0xf4, 0xf7, 0xf7, 0xf7, 0xf7, 0xf7, 0xf8, 0xf8, 0xf8, 0xf8, 0xf7, 0xf9, 0xf7, 0xf9, 0xf6, 0xf9, 0xa8, 0xaf, 0xaf, 0xb1, 0xaf, 0xb1, 0xaf, 0xaf, 0xb1, 0xaf, 0xb1, 0xaf, 0xb1, 0xaf, 0xb1, 0xb1, 0xb1, 0xb1, 0xb3, 0xb1, 0xb3, 0xb1, 0xb1, 0xb1, 0xb3, 0xb3, 0xb1, 0xb1, 0xaf, 0xaf, 0xaf, 0xad, 0xad, 0xad, 0xab, 0xad, 0xab, 0xad, 0xab, 0xb3, 0x9c, 0xe5, 0x03, 0xe8, 0xec, 0xec, 0xec, 0xec, 0xec, 0xec, 0xec, 0xec, 0xec, 0xed, 0xec, 0xed, 0xec, 0xed, 0xec, 0xed, 0xf0, 0xf1, 0xf0, 0xd7, 0xf0, 0xf1, 0xee, 0x84, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x77, 0xc9, 0x7f, 0x82, 0x85, 0x8a, 0x87, 0x8c, 0x51, 0x9a, 0x9a, 0x9a, 0x9d, 0x9d, 0xa1, 0x9d, 0x9d, 0x9d, 0x9a, 0x9a, 0x9a, 0x95, 0x8f, 0x8d, 0x8c, 0x8d, 0x8c, 0x8c, 0x93, 0x6a, 0x59, 0x5f, 0x5f, 0x5f, 0x5f, 0x5b, 0x6a, 0x74, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x6a, 0x70, 0x70, 0x70, 0x77, 0x7c, 0x79, 0x79, 0x79, 0x77, 0x79, 0x77, 0x79, 0x79, 0x77, 0x77, 0x74, 0x74, 0x77, 0x77, 0x74, 0x77, 0x74, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x79, 0x79, 0x7c, 0x7c, 0x7c, 0x79, 0x7c, 0x7c, 0x7c, 0x7c, 0x82, 0x74, 0x5d, 0x5d, 0x5d, 0x5d, 0x5d, 0x5d, 0x5d, 0x5d, 0x5d, 0x58, 0x67, 0x6d, 0x6d, 0x69, 0x69, 0x69, 0x6d, 0x69, 0x6b, 0x67, 0x19, 0x1c, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x24, 0x29, 0x24, 0x24, 0x24, 0x22, 0x22, 0x25, 0x27, 0xf3, 0x98, 0x96, 0x51, 0x8b, 0x51, 0x8f, 0x51, 0x51, 0x51, 0x96, 0x95, 0xeb, 0x03, 0xe5, 0xe7, 0xe5, 0xe7, 0xe5, 0xe6, 0xe5, 0xe6, 0xe7, 0xe6, 0xd4, 0x5f, 0xd4, 0x5f, 0xc3, 0x5f, 0xc3, 0x5b, 0x5b, 0x59, 0x5b, 0x5b, 0x5b, 0x5b, 0x5b, 0x5b, 0x5b, 0x59, 0x5b, 0x5b, 0x56, 0xc4, 0x28, 0x32, 0x39, 0x35, 0x35, 0x39, 0x35, 0x39, 0x35, 0x35, 0x35, 0x35, 0x31, 0xa3, 0x9a, 0x9a, 0x98, 0x22, 0x2b, 0xda, 0xa7, 0xa4, 0xa4, 0xa2, 0xa8, 0x9f, 0x9f, 0x9c, 0x9c, 0x93, 0x93, 0x90, 0x90, 0x90, 0x8c, 0x8e, 0x8c, 0x8a, 0x8c, 0x8a, 0x8a, 0x8b, 0x25, 0x26, 0x23, 0x21, 0x21, 0x21, 0x21, 0x21, 0x21, 0x23, 0x21, 0x23, 0x21, 0x23, 0x1f, 0x23, 0x23, 0x1f, 0x1f, 0x1f, 0x1f, 0x23, 0x34, 0x3f, 0x3f, 0x3f, 0x3f, 0x3f, 0x3f, 0x3d, 0x3f, 0x40, 0x41, 0x40, 0x30, 0x30, 0x33, 0x33, 0x33, 0x30, 0x2a, 0x23, 0x1f, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x1c, 0x1f, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x33, 0x23, 0x1f,
0xbf, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc1, 0xc1, 0xd1, 0xd1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xd1, 0xc1, 0xd1, 0xc1, 0xc1, 0xc1, 0xd1, 0xc1, 0xd1, 0xc0, 0xbf, 0xbe, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbe, 0xbf, 0xbf, 0xbe, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbf, 0xbd, 0x90, 0x8a, 0x90, 0x90, 0x93, 0x93, 0x97, 0x99, 0x9a, 0x9a, 0x9d, 0x9a, 0x9d, 0x9d, 0xaa, 0xaf, 0xb1, 0xb1, 0xb3, 0xb3, 0xb5, 0xb5, 0xb4, 0xb5, 0xb3, 0xb2, 0xb2, 0xb2, 0xac, 0xb2, 0xac, 0xac, 0xac, 0xac, 0xac, 0xcd, 0xac, 0xa5, 0xa8, 0xa8, 0xa8, 0xae, 0x9e, 0xf6, 0xf6, 0xf7, 0xda, 0xf7, 0xf7, 0xf7, 0xf7, 0xf7, 0xf7, 0xf7, 0xf7, 0xf7, 0xf7, 0xf7, 0xf7, 0xf8, 0xf8, 0xdb, 0xdb, 0xdb, 0xa5, 0xdb, 0xa5, 0xaa, 0xaf, 0xaf, 0xb1, 0xb1, 0xb1, 0xb1, 0xaf, 0xaf, 0xaf, 0xb1, 0xaf, 0xaf, 0xb1, 0xb1, 0xb1, 0xb1, 0xb3, 0xb3, 0xb1, 0xb3, 0xb1, 0xb1, 0xb5, 0xb3, 0xb3, 0xb1, 0xaf, 0xaf, 0xad, 0xaf, 0xad, 0xab, 0xad, 0xad, 0xab, 0xad, 0xab, 0xab, 0xb5, 0xa3, 0xe9, 0x02, 0xec, 0xec, 0xec, 0xec, 0xec, 0xec, 0xec, 0xe9, 0xec, 0xed, 0xec, 0xed, 0xe9, 0xed, 0xec, 0xe9, 0xec, 0xd8, 0xf0, 0xf1, 0xf0, 0xd7, 0xf0, 0xd8, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x79, 0xc9, 0x7f, 0x82, 0x85, 0x85, 0x85, 0x8c, 0x51, 0x96, 0x9a, 0x9d, 0x9d, 0x9d, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x95, 0x8d, 0x8d, 0x8d, 0x8c, 0x8c, 0x8c, 0x85, 0x90, 0x66, 0x57, 0x5f, 0x5f, 0x5f, 0x5b, 0x5f, 0x5b, 0x66, 0x74, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x6a, 0x70, 0x77, 0x79, 0x79, 0x79, 0x79, 0x79, 0x77, 0x79, 0x77, 0x79, 0x79, 0x79, 0x77, 0x77, 0x74, 0x77, 0x77, 0x77, 0x77, 0x77, 0x74, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x79, 0x77, 0x79, 0x77, 0x79, 0x77, 0x7d, 0x79, 0x77, 0x79, 0x7c, 0x79, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x82, 0x77, 0x5d, 0x5d, 0x5d, 0x5e, 0x5d, 0x5e, 0x5d, 0x5e, 0x5d, 0x5d, 0x5d, 0x63, 0x6d, 0x6d, 0x69, 0x69, 0x69, 0x69, 0x6b, 0x6c, 0x19, 0x1c, 0x1c, 0x19, 0x1c, 0x19, 0x1c, 0x19, 0x19, 0x1c, 0x19, 0x19, 0x24, 0x29, 0x24, 0x22, 0x22, 0x29, 0x25, 0x27, 0xf3, 0x93, 0x9a, 0x8b, 0x51, 0x8f, 0x51, 0x8f, 0x51, 0x8f, 0x51, 0x96, 0x96, 0xc8, 0x02, 0xe5, 0xe7, 0xe7, 0xe7, 0xe5, 0xe7, 0xe5, 0xe7, 0xe7, 0xc3, 0x5b, 0xc3, 0x5f, 0xc3, 0xc3, 0xc3, 0xc3, 0x5f, 0x5b, 0x59, 0x5b, 0x5b, 0x5b, 0x5b, 0x5b, 0x5b, 0x5b, 0x5b, 0x5b, 0x59, 0x5b, 0x22, 0x28, 0x35, 0x39, 0x35, 0x35, 0x35, 0x35, 0x35, 0x35, 0x2d, 0x35, 0xf8, 0xa6, 0x9b, 0x9b, 0x9a, 0x9b, 0x27, 0xf5, 0xaa, 0xa4, 0xa6, 0xa6, 0xa7, 0xa2, 0xa2, 0x99, 0x9b, 0x97, 0x93, 0x93, 0x93, 0x8d, 0x90, 0x8d, 0x8c, 0x8c, 0x8c, 0x8a, 0x8a, 0x8c, 0x87, 0x28, 0x26, 0x21, 0x21, 0x21, 0x21, 0x21, 0x21, 0x21, 0x23, 0x21, 0x23, 0x21, 0x23, 0x23, 0x23, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x30, 0x3d, 0x3f, 0x3f, 0x3f, 0x3f, 0x3f, 0x3f, 0x3f, 0x41, 0x40, 0x41, 0x36, 0x30, 0x33, 0x2f, 0x33, 0x33, 0x33, 0x2a, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x1f, 0x1f, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x33, 0x2a, 0x1f,
0xbf, 0xc0, 0xbf, 0xc0, 0xc0, 0xc1, 0xc0, 0xc1, 0xc1, 0xd1, 0xd1, 0xd1, 0xc1, 0xc1, 0xc1, 0xd1, 0xc1, 0xd1, 0xc1, 0xc1, 0xc1, 0xc1, 0xd1, 0xc1, 0xc1, 0xd1, 0xc0, 0xbe, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbe, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbf, 0xbc, 0x90, 0x8a, 0x93, 0x90, 0x9b, 0x93, 0x99, 0x9d, 0x9a, 0x9d, 0x9d, 0x9d, 0x9d, 0xaa, 0xae, 0xaf, 0xb1, 0xb1, 0xb3, 0xb3, 0xb5, 0xb6, 0xb4, 0xb5, 0xb2, 0xb2, 0xb2, 0xb2, 0xac, 0xb0, 0xac, 0xac, 0xac, 0xac, 0xac, 0xcd, 0xa8, 0xa8, 0xa8, 0xa8, 0xa8, 0xaa, 0x9e, 0xf6, 0xf6, 0xf7, 0xf7, 0xf4, 0xf7, 0xf7, 0xf7, 0xf7, 0xf7, 0xf7, 0xda, 0xf7, 0xf8, 0xf7, 0xf8, 0xf7, 0xdb, 0xdb, 0xdb, 0xa5, 0xac, 0xae, 0xae, 0xaf, 0xad, 0xad, 0xad, 0xaf, 0xaf, 0xaf, 0xb1, 0xb1, 0xb1, 0xaf, 0xb1, 0xb1, 0xaf, 0xb1, 0xb1, 0xb1, 0xb3, 0xb3, 0xb3, 0xb3, 0xb1, 0xb5, 0xb5, 0xb3, 0xb1, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xad, 0xad, 0xad, 0xad, 0xab, 0xad, 0xad, 0xad, 0xb3, 0xaf, 0xd6, 0x05, 0xec, 0x10, 0xec, 0xe8, 0xec, 0xe8, 0xec, 0xe9, 0xec, 0xe9, 0xec, 0xe9, 0xed, 0xe9, 0xed, 0xe9, 0xec, 0xf1, 0xd7, 0xf1, 0xf0, 0xd7, 0xf1, 0x83, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x79, 0xc9, 0x7f, 0x82, 0x85, 0x85, 0x85, 0x87, 0x51, 0x9a, 0x96, 0x9a, 0x96, 0x95, 0x95, 0x8f, 0x8f, 0x8f, 0x8f, 0x92, 0x8c, 0x8c, 0x87, 0x8c, 0x8c, 0x8c, 0x8c, 0x62, 0x5b, 0x5f, 0x5d, 0x5f, 0x5f, 0x5f, 0x5b, 0x5b, 0x65, 0x75, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x6c, 0x70, 0x79, 0x7c, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x77, 0x79, 0x79, 0x79, 0x77, 0x77, 0x74, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x79, 0x77, 0x77, 0x77, 0x79, 0x77, 0x77, 0x77, 0x79, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x82, 0x79, 0x60, 0x5d, 0x5d, 0x5d, 0x5d, 0x5d, 0x5e, 0x5d, 0x5d, 0x5d, 0x5d, 0x5d, 0x63, 0x71, 0x69, 0x6d, 0x69, 0x6d, 0x6b, 0x6c, 0x19, 0x1c, 0x1c, 0x19, 0x19, 0x1c, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x24, 0x29, 0x22, 0x29, 0x25, 0x27, 0xf2, 0xd9, 0x9c, 0x96, 0x51, 0x51, 0x8f, 0x51, 0x51, 0x51, 0x8f, 0x51, 0x51, 0x96, 0x9a, 0x7c, 0x03, 0x07, 0xe7, 0xe5, 0xe7, 0xe7, 0xe7, 0xe7, 0xe7, 0xd5, 0x5a, 0xc3, 0xc3, 0x5f, 0xd4, 0x5f, 0xc3, 0xc3, 0xc3, 0x5b, 0x5b, 0x5b, 0x5b, 0x5b, 0x5b, 0x5b, 0x5b, 0x5b, 0x5b, 0x5b, 0x56, 0xec, 0x28, 0x2b, 0x3c, 0x35, 0x35, 0x37, 0x35, 0x37, 0x35, 0x37, 0x31, 0xac, 0xa4, 0x97, 0x9b, 0x93, 0x99, 0x97, 0xcb, 0xa0, 0xa9, 0xa4, 0xa9, 0xa6, 0xa1, 0x9d, 0x9d, 0x9a, 0x95, 0x96, 0x92, 0x92, 0x92, 0x8d, 0x8d, 0x8c, 0x8c, 0x8c, 0x8a, 0x8c, 0x8a, 0x8b, 0xca, 0x26, 0x23, 0x1f, 0x1f, 0x1f, 0x23, 0x21, 0x23, 0x21, 0x23, 0x21, 0x23, 0x23, 0x1f, 0x23, 0x23, 0x23, 0x1f, 0x1f, 0x1f, 0x2a, 0x38, 0x40, 0x3f, 0x3f, 0x3f, 0x3f, 0x3d, 0x40, 0x40, 0x3c, 0x41, 0x40, 0x30, 0x33, 0x33, 0x30, 0x33, 0x33, 0x30, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x23, 0x26, 0x23, 0x26, 0x23, 0x30, 0x33, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x23,
0xbf, 0xbf, 0xc0, 0xc0, 0xc0, 0xc0, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xd1, 0xc1, 0xc1, 0xc1, 0xc1, 0xd1, 0xc1, 0xc1, 0xd1, 0xd1, 0xc1, 0xc1, 0xc1, 0xc1, 0xd1, 0xc1, 0xc0, 0xbe, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbe, 0xbd, 0xbe, 0xbd, 0xbd, 0xbd, 0xbe, 0xbd, 0xbd, 0xbb, 0xc0, 0xb8, 0x90, 0x8a, 0x93, 0x93, 0x93, 0x97, 0x99, 0x9d, 0x9d, 0x9d, 0x9d, 0x9d, 0xa0, 0xa5, 0xae, 0xaa, 0xb3, 0xb3, 0xb3, 0xb3, 0xb4, 0xb5, 0xb5, 0xb5, 0xb2, 0xb2, 0xae, 0xb2, 0xac, 0xb0, 0xac, 0xac, 0xb0, 0xa5, 0xcd, 0xac, 0xa8, 0xa8, 0xa8, 0xa8, 0xa8, 0xaa, 0x9e, 0xf4, 0xf6, 0xda, 0xf7, 0xf7, 0xf7, 0xf7, 0xf7, 0xf7, 0xf7, 0xf7, 0xf7, 0xf8, 0xf7, 0xf8, 0xf8, 0xf8, 0xdb, 0xa5, 0xa5, 0xa8, 0xac, 0xb3, 0xb3, 0xab, 0xad, 0xad, 0xad, 0xad, 0xad, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xb1, 0xb1, 0xaf, 0xb3, 0xb1, 0xb3, 0xb3, 0xb3, 0xb5, 0xb3, 0xb3, 0xb5, 0xb3, 0xb1, 0xb1, 0xaf, 0xaf, 0xaf, 0xad, 0xad, 0xad, 0xad, 0xad, 0xad, 0xab, 0xab, 0xab, 0xa9, 0xaf, 0xaf, 0xee, 0x09, 0xec, 0x10, 0xec, 0x10, 0xec, 0xec, 0xe9, 0xec, 0xe9, 0xed, 0xe9, 0xed, 0xe9, 0xed, 0xe9, 0xed, 0xed, 0xf1, 0xf1, 0xd7, 0xf0, 0xf1, 0x83, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x79, 0x77, 0x7c, 0x7f, 0x85, 0x85, 0x87, 0x87, 0x51, 0x95, 0x51, 0x8f, 0x8d, 0x8d, 0x87, 0x85, 0x85, 0x85, 0x8d, 0x8d, 0x87, 0x8c, 0x8c, 0x8c, 0x8c, 0x85, 0x5f, 0x5b, 0x5f, 0x5f, 0x5f, 0x5f, 0x5d, 0x5f, 0x5f, 0x5b, 0x62, 0x70, 0x75, 0x6a, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x6a, 0x70, 0x79, 0x7c, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x77, 0x7c, 0x79, 0x79, 0x79, 0x77, 0x74, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x79, 0x77, 0x79, 0x77, 0x79, 0x77, 0x79, 0x77, 0x79, 0x77, 0x79, 0x7c, 0x79, 0x77, 0x7c, 0x79, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x60, 0x58, 0x5d, 0x60, 0x5d, 0x5e, 0x5d, 0x5e, 0x5d, 0x60, 0x5d, 0x5d, 0x5d, 0x63, 0x71, 0x6d, 0x69, 0x69, 0x6b, 0x6a, 0x19, 0x1c, 0x19, 0x19, 0x1c, 0x19, 0x1c, 0x19, 0x19, 0x1c, 0x19, 0x19, 0x16, 0x1e, 0x22, 0x29, 0x22, 0x27, 0x27, 0xf3, 0xcb, 0x9b, 0x9a, 0x8b, 0x51, 0x8f, 0x51, 0x8f, 0x51, 0x51, 0x51, 0x51, 0x51, 0x51, 0x9a, 0x82, 0xe5, 0x03, 0xe7, 0xe7, 0xe5, 0xe5, 0xe5, 0xe9, 0xe4, 0x5b, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0x5b, 0x5b, 0x5b, 0x5b, 0x5b, 0x5b, 0x5b, 0x5b, 0x59, 0x5b, 0x56, 0xe4, 0x2f, 0x24, 0x35, 0x37, 0x35, 0x35, 0x37, 0x35, 0x2d, 0x37, 0xf6, 0xaa, 0xa1, 0x9b, 0x93, 0x9b, 0x93, 0x97, 0x97, 0x9c, 0xa6, 0xa6, 0xa9, 0xa1, 0x9a, 0x9d, 0x96, 0x9a, 0x96, 0x9a, 0x95, 0x96, 0x8f, 0x92, 0x8f, 0x8d, 0x8d, 0x8d, 0x8d, 0x8d, 0x8d, 0x8f, 0x50, 0xee, 0x2f, 0x2c, 0x28, 0x28, 0x21, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x23, 0x23, 0x23, 0x23, 0x23, 0x1f, 0x1f, 0x21, 0x33, 0x3f, 0x40, 0x3d, 0x3f, 0x3f, 0x3d, 0x40, 0x40, 0x41, 0x40, 0x41, 0x36, 0x30, 0x33, 0x33, 0x30, 0x33, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x38, 0x3a, 0x38, 0x38, 0x33, 0x33, 0x33, 0x30, 0x33, 0x2a,
0xbf, 0xc0, 0xbf, 0xc0, 0xc0, 0xc0, 0xc1, 0xc1, 0xc1, 0xd1, 0xc1, 0xd1, 0xd1, 0xd1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xd1, 0xc1, 0xc1, 0xd1, 0xc1, 0xbf, 0xbe, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbe, 0xbd, 0xbd, 0xbe, 0xbb, 0xbe, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xc0, 0xbd, 0x8e, 0x8c, 0x98, 0x93, 0x9b, 0x9b, 0x99, 0x9d, 0x52, 0x9a, 0x9d, 0xa0, 0xdb, 0xa8, 0xac, 0xae, 0xb1, 0xb3, 0xb5, 0xb3, 0xb3, 0xb4, 0xb4, 0xb5, 0xb2, 0xb2, 0xb2, 0xb2, 0xac, 0xac, 0xac, 0xac, 0xac, 0xac, 0xcd, 0xa5, 0xac, 0xa8, 0xa8, 0xa8, 0xa8, 0xaa, 0xa5, 0xf6, 0xf4, 0xf7, 0xf7, 0xf7, 0xda, 0xf7, 0xf7, 0xf7, 0xf8, 0xf7, 0xf8, 0xf7, 0xf8, 0xda, 0xdb, 0xdb, 0xdb, 0xa5, 0xac, 0xae, 0xb1, 0xb1, 0xb1, 0xad, 0xab, 0xad, 0xad, 0xad, 0xad, 0xad, 0xaf, 0xad, 0xaf, 0xb1, 0xaf, 0xb1, 0xaf, 0xb3, 0xb1, 0xb3, 0xb3, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb3, 0xb1, 0xb1, 0xaf, 0xaf, 0xaf, 0xad, 0xab, 0xab, 0xa9, 0xa9, 0xa9, 0xa9, 0xa6, 0xa9, 0xa6, 0xb1, 0xa9, 0xed, 0xe8, 0xed, 0xec, 0xe9, 0xec, 0xe9, 0xec, 0xe9, 0xec, 0xe9, 0xec, 0xea, 0xe9, 0xed, 0xea, 0xed, 0xe8, 0xee, 0xf1, 0xd8, 0xd7, 0xf0, 0x81, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x7b, 0xc9, 0x7f, 0x7f, 0x85, 0x85, 0x85, 0x86, 0x8d, 0x87, 0x87, 0x85, 0x85, 0x7f, 0x7f, 0x7f, 0x7b, 0x7f, 0x8c, 0x8c, 0x8c, 0x85, 0x8a, 0x8d, 0x7f, 0x5b, 0x5f, 0x5b, 0x5f, 0x5d, 0x5f, 0x5f, 0x5f, 0x5d, 0x5f, 0x5b, 0x61, 0x70, 0x75, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x6c, 0x74, 0x7f, 0x7c, 0x7c, 0x7c, 0x79, 0x79, 0x79, 0x7c, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x77, 0x79, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x79, 0x77, 0x77, 0x77, 0x79, 0x77, 0x77, 0x77, 0x79, 0x77, 0x79, 0x79, 0x77, 0x79, 0x79, 0x79, 0x79, 0x79, 0x7c, 0x7f, 0x7c, 0x7f, 0x82, 0x62, 0x5d, 0x5d, 0x5d, 0x5e, 0x5d, 0x60, 0x5d, 0x60, 0x5d, 0x5e, 0x5d, 0x5d, 0x5d, 0x63, 0x71, 0x69, 0x6d, 0x6b, 0x6c, 0x1c, 0x1c, 0x19, 0x1c, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x18, 0x29, 0x27, 0x27, 0x27, 0xd9, 0xca, 0x9b, 0x96, 0x51, 0x51, 0x8f, 0x51, 0x51, 0x51, 0x8f, 0x51, 0x51, 0x51, 0x51, 0x51, 0x9a, 0x8d, 0xe5, 0x03, 0xe5, 0xe7, 0xe5, 0xe7, 0xe5, 0xe6, 0xd4, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0x5b, 0x5b, 0x59, 0x5b, 0x5b, 0x5b, 0x5b, 0x5b, 0x5b, 0x59, 0x5f, 0x22, 0x28, 0x2c, 0x3c, 0x35, 0x37, 0x35, 0x37, 0x37, 0xf5, 0xf8, 0xab, 0x9d, 0x9b, 0x9b, 0x93, 0x93, 0x93, 0x93, 0x92, 0x93, 0xa6, 0xa1, 0x9a, 0x9a, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x91, 0x96, 0x51, 0x91, 0x51, 0x91, 0x91, 0x96, 0x91, 0x91, 0x50, 0x78, 0x60, 0x27, 0x44, 0xf9, 0x3e, 0x37, 0x37, 0x35, 0x2c, 0x2b, 0x28, 0x28, 0x23, 0x1f, 0x1f, 0x1f, 0x1f, 0x23, 0x1f, 0x1f, 0x23, 0x2a, 0x3b, 0x3f, 0x3f, 0x3f, 0x3f, 0x3f, 0x40, 0x3c, 0x40, 0x3c, 0x41, 0x40, 0x30, 0x30, 0x33, 0x33, 0x33, 0x30, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x23, 0x30, 0x3a, 0x3a, 0x38, 0x3a, 0x3a, 0x3a, 0x38, 0x38, 0x3a,
0xbf, 0xbf, 0xbf, 0xc0, 0xc0, 0xc0, 0xc0, 0xc1, 0xc1, 0xd1, 0xc1, 0xd1, 0xc1, 0xd1, 0xc1, 0xd1, 0xc1, 0xd1, 0xc1, 0xd1, 0xc1, 0xd1, 0xc1, 0xc1, 0xd1, 0xc1, 0xc1, 0xd1, 0xc1, 0xbf, 0xbe, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbe, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xc0, 0xb8, 0x90, 0x90, 0x93, 0x93, 0x97, 0x9b, 0x99, 0x9b, 0x99, 0x9b, 0x9e, 0xdb, 0xa5, 0xa8, 0xac, 0xae, 0xb3, 0xb2, 0xb3, 0xb3, 0xb5, 0xb4, 0xb5, 0xb2, 0xb2, 0xb0, 0xae, 0xb2, 0xac, 0xac, 0xac, 0xac, 0xac, 0xac, 0xac, 0xa8, 0xa8, 0xa8, 0xa8, 0xa8, 0xa8, 0xaa, 0xa5, 0xf6, 0xf7, 0xda, 0xf7, 0xf7, 0xf7, 0xda, 0xf7, 0xda, 0xf8, 0xf7, 0xf8, 0xf8, 0xdb, 0xdb, 0xdb, 0xa5, 0xa5, 0xa8, 0xac, 0xaf, 0xb3, 0xb3, 0xaf, 0xab, 0xad, 0xad, 0xad, 0xad, 0xad, 0xad, 0xaf, 0xad, 0xaf, 0xaf, 0xb1, 0xb1, 0xb1, 0xb3, 0xb3, 0xb3, 0xb5, 0xb5, 0xb6, 0xb7, 0xb3, 0xb1, 0xb1, 0xad, 0xad, 0xab, 0xab, 0xa9, 0xa9, 0xa6, 0xa6, 0xa6, 0xa6, 0xa6, 0xa9, 0xa9, 0xa6, 0xa9, 0xb3, 0x98, 0x09, 0xe9, 0xed, 0xed, 0xe9, 0xed, 0xe9, 0xec, 0xe9, 0xe9, 0xe9, 0xe9, 0xed, 0xe9, 0xed, 0xea, 0xed, 0xe9, 0xee, 0xf1, 0xf1, 0xf0, 0x87, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x7b, 0x77, 0x7f, 0x7f, 0x7f, 0x85, 0x85, 0x85, 0x85, 0x7f, 0x85, 0x7f, 0x7f, 0x7f, 0x7f, 0x7c, 0x75, 0x79, 0x85, 0x8c, 0x8c, 0x87, 0x90, 0x77, 0x59, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5b, 0x5f, 0x6a, 0x75, 0x70, 0x70, 0x70, 0x70, 0x70, 0x6a, 0x74, 0x7f, 0x7c, 0x7c, 0x7c, 0x7c, 0x79, 0x7c, 0x79, 0x7c, 0x79, 0x7c, 0x79, 0x7c, 0x79, 0x7c, 0x7c, 0x7c, 0x77, 0x77, 0x77, 0x77, 0x77, 0x79, 0x77, 0x77, 0x77, 0x77, 0x79, 0x79, 0x7c, 0x77, 0x7c, 0x77, 0x79, 0x79, 0x77, 0x7c, 0x77, 0x79, 0x79, 0x7c, 0x79, 0x7d, 0x7c, 0x7c, 0x7c, 0x82, 0x66, 0x58, 0x60, 0x5d, 0x60, 0x5d, 0x5d, 0x60, 0x5d, 0x5e, 0x60, 0x5e, 0x60, 0x5d, 0x5d, 0x63, 0x71, 0x6b, 0x6b, 0x6a, 0x19, 0x1c, 0x1c, 0x19, 0x1c, 0x19, 0x1c, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x16, 0x16, 0x18, 0x2d, 0xf2, 0xf2, 0xd9, 0x94, 0x9b, 0x96, 0x8b, 0x51, 0x8f, 0x51, 0x8f, 0x51, 0x51, 0x51, 0x51, 0x8f, 0x51, 0x51, 0x51, 0x9a, 0x8f, 0xeb, 0x02, 0xe5, 0xe7, 0xe5, 0xe8, 0xe5, 0xc3, 0x5f, 0xc3, 0xc3, 0xc3, 0xd4, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xd4, 0x5f, 0x5b, 0x59, 0x5b, 0x5b, 0x5b, 0x5b, 0x5b, 0x59, 0x59, 0x1a, 0x2b, 0x24, 0x35, 0x35, 0x37, 0x35, 0x31, 0x37, 0xf6, 0xa5, 0xa9, 0x99, 0x9b, 0x93, 0x9b, 0x93, 0x93, 0x9b, 0x93, 0x93, 0x93, 0x95, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x91, 0x96, 0x91, 0x91, 0x96, 0x91, 0x91, 0x91, 0x51, 0x89, 0x86, 0x75, 0x66, 0x63, 0x07, 0x34, 0xfa, 0x3e, 0xf9, 0xfa, 0x3e, 0xfa, 0x3e, 0x3e, 0x3e, 0x37, 0x37, 0x35, 0x32, 0x32, 0x2b, 0x28, 0x21, 0x21, 0x2a, 0x38, 0x3f, 0x3f, 0x3d, 0x3f, 0x3d, 0x40, 0x41, 0x40, 0x40, 0x40, 0x41, 0x3a, 0x30, 0x33, 0x33, 0x30, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x23, 0x30, 0x3a, 0x38, 0x3a, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38,
0xbf, 0xc0, 0xbf, 0xc0, 0xc0, 0xc0, 0xc1, 0xc1, 0xc1, 0xd1, 0xc1, 0xc1, 0xd1, 0xd1, 0xd1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xd1, 0xc1, 0xd1, 0xc1, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbe, 0xbd, 0xbd, 0xbe, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbb, 0xbd, 0xc0, 0xb8, 0x90, 0x8c, 0x9c, 0x93, 0x9b, 0x93, 0x9b, 0x9b, 0x99, 0xcc, 0xf8, 0xdb, 0xdb, 0xac, 0xac, 0xae, 0xb1, 0xb3, 0xb3, 0xb2, 0xb3, 0xb4, 0xb5, 0xb2, 0xb3, 0xb2, 0xac, 0xb2, 0xac, 0xae, 0xac, 0xcd, 0xac, 0xa5, 0xa8, 0xa8, 0xa8, 0xa8, 0xa8, 0xa8, 0xaa, 0xaa, 0x9e, 0xf6, 0xf7, 0xf7, 0xda, 0xf7, 0xda, 0xf7, 0xf8, 0xf7, 0xf8, 0xda, 0xf8, 0xdb, 0xdb, 0xdb, 0xa5, 0xac, 0xa8, 0xae, 0xaf, 0xb1, 0xb3, 0xb1, 0xad, 0xab, 0xad, 0xab, 0xad, 0xad, 0xad, 0xad, 0xaf, 0xaf, 0xaf, 0xb1, 0xaf, 0xb1, 0xb1, 0xb3, 0xb3, 0xb5, 0xb5, 0xb6, 0xb5, 0xaf, 0xad, 0xab, 0xab, 0xa9, 0xa9, 0xa9, 0xa9, 0xa6, 0xa6, 0xa6, 0xa6, 0xa6, 0xa6, 0xa4, 0xa6, 0xa6, 0xa9, 0xab, 0xb3, 0x88, 0x09, 0xea, 0xea, 0xed, 0xea, 0xed, 0xeb, 0xea, 0xed, 0xe9, 0xea, 0xe9, 0xe9, 0xed, 0xea, 0xed, 0xea, 0xed, 0xd6, 0xd8, 0xf0, 0x85, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x7b, 0x77, 0x7f, 0x7f, 0x81, 0x7f, 0x81, 0x7f, 0x81, 0x7f, 0x7b, 0x7f, 0x7b, 0x7c, 0x7b, 0x79, 0x79, 0x74, 0x7f, 0x8c, 0x8c, 0x93, 0x6a, 0x57, 0x5f, 0x5b, 0x5f, 0x5b, 0x5f, 0x5f, 0x5b, 0x5f, 0x5f, 0x5f, 0x5f, 0x5d, 0x5f, 0x6a, 0x75, 0x70, 0x70, 0x70, 0x70, 0x6c, 0x77, 0x7f, 0x7f, 0x7c, 0x79, 0x7c, 0x7c, 0x7c, 0x7c, 0x79, 0x7c, 0x79, 0x79, 0x7c, 0x79, 0x79, 0x7c, 0x79, 0x7c, 0x79, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7c, 0x77, 0x79, 0x77, 0x77, 0x77, 0x77, 0x79, 0x77, 0x7c, 0x77, 0x7c, 0x77, 0x7c, 0x79, 0x77, 0x79, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7c, 0x60, 0x56, 0x58, 0x5d, 0x5d, 0x5e, 0x5d, 0x60, 0x5d, 0x60, 0x5d, 0x60, 0x5d, 0x5e, 0x5d, 0x58, 0x63, 0x71, 0x6f, 0x6a, 0x1c, 0x1c, 0x19, 0x1c, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x16, 0x19, 0x13, 0x1d, 0xf2, 0xf3, 0xd9, 0x98, 0x52, 0x96, 0x51, 0x51, 0x51, 0x8f, 0x51, 0x51, 0x51, 0x51, 0x51, 0x51, 0x51, 0x51, 0x51, 0x51, 0x96, 0x96, 0xc7, 0x02, 0xe5, 0xe7, 0xe5, 0xe9, 0xd5, 0x5a, 0xc3, 0xd4, 0xc3, 0x5f, 0xd4, 0xc3, 0xc3, 0xc3, 0xd4, 0xc3, 0xc3, 0xc3, 0x5b, 0x5b, 0x59, 0x5b, 0x5b, 0x5b, 0x5b, 0x56, 0xec, 0x2b, 0x24, 0x2c, 0x37, 0x37, 0x2d, 0x37, 0xf5, 0xf8, 0xaa, 0xa9, 0x99, 0x9b, 0x93, 0x97, 0x93, 0x93, 0x93, 0x93, 0x9b, 0x93, 0x93, 0x97, 0x96, 0x96, 0x96, 0x91, 0x96, 0x91, 0x96, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x50, 0x86, 0x81, 0x75, 0x6c, 0x6a, 0x63, 0x5f, 0x13, 0x36, 0xfa, 0x3e, 0xf9, 0x3e, 0xf9, 0x3e, 0xf9, 0x3e, 0xf9, 0x3e, 0xfa, 0x3e, 0xfa, 0x3e, 0x3e, 0x3e, 0x39, 0x2a, 0x2a, 0x3f, 0x3f, 0x3f, 0x3d, 0x3f, 0x3c, 0x40, 0x3c, 0x40, 0x40, 0x41, 0x40, 0x30, 0x33, 0x2f, 0x30, 0x2e, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x23, 0x26, 0x38, 0x3a, 0x38, 0x3a, 0x38, 0x3a, 0x38, 0x38, 0x38,
0xbf, 0xbf, 0xc0, 0xc0, 0xc0, 0xc1, 0xc0, 0xc1, 0xc1, 0xc1, 0xc1, 0xd1, 0xc1, 0xd1, 0xd1, 0xc1, 0xd1, 0xc1, 0xd1, 0xd1, 0xc1, 0xd1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xd1, 0xc1, 0xbf, 0xbe, 0xbf, 0xbf, 0xbf, 0xbe, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbb, 0xbd, 0xc0, 0xb4, 0x90, 0x8c, 0x9c, 0x93, 0x93, 0x9c, 0x93, 0x9b, 0xda, 0xf6, 0xf8, 0xdb, 0xdb, 0xa5, 0xac, 0xae, 0xae, 0xae, 0xb3, 0xb3, 0xb2, 0xb5, 0xb5, 0xb2, 0xae, 0xb2, 0xac, 0xae, 0xac, 0xac, 0xac, 0xac, 0xac, 0xac, 0xa8, 0xa8, 0xa8, 0xa8, 0xa8, 0xa8, 0xa3, 0xaf, 0x9e, 0xf7, 0xf7, 0xf7, 0xda, 0xf7, 0xda, 0xf8, 0xda, 0xf8, 0xf8, 0xf8, 0xdb, 0xdb, 0xa5, 0xa5, 0xa5, 0xae, 0xae, 0xb1, 0xb3, 0xb1, 0xb1, 0xb1, 0xad, 0xab, 0xad, 0xad, 0xab, 0xad, 0xad, 0xad, 0xad, 0xaf, 0xaf, 0xb1, 0xaf, 0xb1, 0xb1, 0xb3, 0xb3, 0xb5, 0xb3, 0xb3, 0xb1, 0xad, 0xab, 0xab, 0xab, 0xa6, 0xa9, 0xa6, 0xa6, 0xa6, 0xa6, 0xa6, 0xa6, 0xa6, 0xa4, 0xa9, 0xa6, 0xa6, 0xab, 0xad, 0xb3, 0xc9, 0x07, 0xed, 0xea, 0xea, 0xea, 0xea, 0xea, 0xea, 0xeb, 0xea, 0xea, 0xea, 0xea, 0xed, 0xeb, 0xea, 0xed, 0xec, 0xd7, 0xf1, 0x84, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x89, 0x7b, 0x77, 0x7f, 0x7b, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x79, 0x7f, 0x79, 0x7b, 0x79, 0x77, 0x7b, 0x77, 0x74, 0x79, 0x8a, 0x8c, 0x65, 0x59, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5f, 0x5b, 0x5b, 0x66, 0x75, 0x70, 0x70, 0x70, 0x70, 0x74, 0x82, 0x7f, 0x7c, 0x7f, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x79, 0x7c, 0x7c, 0x7c, 0x7c, 0x79, 0x7c, 0x7c, 0x77, 0x74, 0x77, 0x77, 0x72, 0x77, 0x74, 0x72, 0x77, 0x74, 0x74, 0x72, 0x74, 0x72, 0x74, 0x72, 0x74, 0x74, 0x77, 0x77, 0x77, 0x79, 0x79, 0x7c, 0x7c, 0x82, 0x8e, 0x7f, 0x66, 0x60, 0x5d, 0x58, 0x56, 0x58, 0x56, 0x56, 0x56, 0x56, 0x58, 0x58, 0x5d, 0x58, 0x60, 0x59, 0x63, 0x6f, 0x6e, 0x1c, 0x1c, 0x1c, 0x19, 0x19, 0x1c, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x16, 0x16, 0x13, 0x1a, 0xf4, 0xcb, 0x98, 0x52, 0x96, 0x50, 0x51, 0x8b, 0x51, 0x8f, 0x51, 0x51, 0x51, 0x51, 0x51, 0x51, 0x51, 0x51, 0x51, 0x51, 0x96, 0x96, 0x7c, 0x02, 0x07, 0xe8, 0xe8, 0xe4, 0x5a, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xd4, 0xc3, 0xc3, 0x5b, 0x5b, 0x5b, 0x5b, 0x5b, 0x59, 0x58, 0xe4, 0x32, 0x24, 0x29, 0x35, 0x37, 0x37, 0xf5, 0xf6, 0xdb, 0xad, 0xa4, 0x97, 0x9b, 0x93, 0x9b, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x9c, 0x97, 0x9a, 0x96, 0x96, 0x91, 0x96, 0x91, 0x91, 0x91, 0x91, 0x91, 0x50, 0x8b, 0x81, 0x81, 0x76, 0x75, 0x6c, 0x66, 0x66, 0x5e, 0xe5, 0x1f, 0x35, 0xfa, 0x3c, 0xf9, 0x3c, 0xf9, 0x3e, 0xf9, 0x3e, 0xf9, 0x3e, 0x3e, 0x3e, 0xf9, 0x3e, 0x3e, 0x3e, 0x30, 0x2a, 0x3a, 0x40, 0x3f, 0x3d, 0x40, 0x40, 0x41, 0x40, 0x40, 0x40, 0x3c, 0x41, 0x36, 0x30, 0x30, 0x33, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x38, 0x3a, 0x3a, 0x38, 0x3a, 0x38, 0x3a, 0x38, 0x38,
0xbe, 0xc0, 0xbf, 0xc0, 0xbf, 0xc0, 0xc1, 0xc0, 0xc1, 0xc1, 0xd1, 0xc1, 0xc1, 0xd1, 0xc1, 0xd1, 0xc1, 0xd1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xd1, 0xc0, 0xbf, 0xbe, 0xbf, 0xbf, 0xbe, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xc0, 0xb8, 0x8e, 0x90, 0x93, 0x9c, 0x90, 0x9c, 0x93, 0xda, 0xf6, 0xf7, 0xf8, 0xdb, 0xdb, 0xa5, 0xac, 0xac, 0xae, 0xb1, 0xb3, 0xb3, 0xb3, 0xb5, 0xb5, 0xb3, 0xae, 0xb2, 0xae, 0xac, 0xae, 0xac, 0xac, 0xac, 0xac, 0xa8, 0xa8, 0xa8, 0xa8, 0xa8, 0xaa, 0xa8, 0xaa, 0xaa, 0xa5, 0xf4, 0xf7, 0xf7, 0xda, 0xf8, 0xf7, 0xf8, 0xf8, 0xda, 0xdb, 0xdb, 0xdb, 0xa5, 0xa5, 0xac, 0xa8, 0xaf, 0xaf, 0xb3, 0xaf, 0xb3, 0xb1, 0xb1, 0xab, 0xad, 0xab, 0xad, 0xab, 0xad, 0xad, 0xad, 0xad, 0xad, 0xaf, 0xaf, 0xb1, 0xaf, 0xb1, 0xb3, 0xb3, 0xb1, 0xaf, 0xb3, 0xb1, 0xab, 0xa9, 0xa9, 0xa6, 0xa9, 0xa4, 0xa4, 0xa4, 0xa6, 0xa4, 0xa6, 0xa6, 0xa6, 0xa6, 0xa6, 0xa9, 0xab, 0xa9, 0xaf, 0xaa, 0xea, 0xe8, 0xea, 0xea, 0xea, 0xea, 0xeb, 0xea, 0xeb, 0xeb, 0xeb, 0xeb, 0xeb, 0xeb, 0xea, 0xeb, 0xeb, 0xed, 0xed, 0xf0, 0x84, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x81, 0x77, 0x79, 0x7b, 0x7c, 0x7f, 0x79, 0x7b, 0x79, 0x7b, 0x79, 0x79, 0x77, 0x77, 0x74, 0x74, 0x70, 0x6a, 0x70, 0x7f, 0x61, 0x55, 0xd3, 0x57, 0x5a, 0x5b, 0x5b, 0x5f, 0x5b, 0x5f, 0x5b, 0x5f, 0x5b, 0x5f, 0x5f, 0x5d, 0x5a, 0x66, 0x74, 0x75, 0x6a, 0x70, 0x79, 0x82, 0x7c, 0x7f, 0x7c, 0x7f, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x79, 0x7c, 0x7c, 0x79, 0x79, 0x79, 0x77, 0x77, 0x77, 0x77, 0x79, 0x77, 0x77, 0x79, 0x7f, 0x7c, 0x82, 0x82, 0x82, 0x8a, 0x8a, 0x8c, 0x90, 0x90, 0x93, 0x98, 0x9c, 0x9c, 0x9f, 0xa3, 0xa3, 0xa7, 0xaa, 0xaa, 0xaf, 0xb3, 0xb3, 0xb7, 0xba, 0xb2, 0xae, 0xa3, 0x9c, 0x90, 0x85, 0x82, 0x7b, 0x70, 0x6c, 0x66, 0x60, 0x60, 0x5d, 0x58, 0x56, 0x5c, 0x62, 0x1f, 0x1c, 0x1c, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x16, 0x19, 0x13, 0x16, 0x17, 0xf0, 0x94, 0x9c, 0x52, 0x96, 0x51, 0x51, 0x51, 0x8f, 0x51, 0x51, 0x51, 0x51, 0x51, 0x51, 0x51, 0x51, 0x51, 0x51, 0x51, 0x51, 0x96, 0x96, 0x82, 0x07, 0x07, 0xe8, 0xe4, 0xc3, 0xd4, 0x5f, 0xd4, 0xc3, 0xc3, 0xc3, 0xc3, 0xd4, 0xc3, 0xc3, 0xc3, 0xd4, 0xe1, 0xc3, 0x5b, 0x5b, 0x59, 0x5b, 0x5b, 0x59, 0x5f, 0x24, 0x2c, 0x22, 0x2d, 0x37, 0xf5, 0xf5, 0xf8, 0xa5, 0xad, 0xa1, 0x97, 0x9b, 0x93, 0x9b, 0x93, 0x97, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x9b, 0x93, 0x92, 0x96, 0x91, 0x91, 0x91, 0x91, 0x50, 0x50, 0x86, 0x83, 0x81, 0x7a, 0x75, 0x6c, 0x6a, 0x66, 0x66, 0x60, 0x60, 0x18, 0x23, 0x37, 0xfa, 0xf9, 0x3e, 0xf9, 0x3e, 0x37, 0x3e, 0x3e, 0xf9, 0x3e, 0x3e, 0x3e, 0x3e, 0xf9, 0x3c, 0x33, 0x2a, 0x33, 0x3f, 0x3d, 0x3f, 0x40, 0x3c, 0x40, 0x3c, 0x40, 0x3c, 0x40, 0x41, 0x3f, 0x30, 0x30, 0x30, 0x2a, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x23, 0x26, 0x30, 0x3a, 0x3a, 0x38, 0x3a, 0x38, 0x38, 0x3a, 0x38,
0xbd, 0xbf, 0xc0, 0xbf, 0xc0, 0xc0, 0xc0, 0xc1, 0xd1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xd1, 0xd1, 0xc1, 0xd1, 0xc1, 0xd1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xd1, 0xc0, 0xbe, 0xbf, 0xbf, 0xbf, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbb, 0xbd, 0xbf, 0xb4, 0x8e, 0x90, 0x98, 0x90, 0x9c, 0x93, 0xda, 0xf5, 0xf7, 0xf7, 0xf8, 0xdb, 0xdb, 0xdb, 0xac, 0xac, 0xae, 0xb3, 0xb3, 0xb3, 0xb2, 0xb5, 0xb5, 0xb2, 0xb2, 0xb2, 0xb2, 0xac, 0xac, 0xac, 0xac, 0xac, 0xa8, 0xa8, 0xa8, 0xa8, 0xa8, 0xa8, 0xa3, 0xa8, 0xaa, 0xad, 0xa5, 0xf7, 0xda, 0xf8, 0xda, 0xf8, 0xda, 0xdb, 0xf8, 0xdb, 0xdb, 0xdb, 0xa5, 0xa5, 0xac, 0xaa, 0xae, 0xaf, 0xb1, 0xb1, 0xb1, 0xb1, 0xb3, 0xaf, 0xab, 0xad, 0xab, 0xad, 0xab, 0xad, 0xad, 0xad, 0xad, 0xaf, 0xaf, 0xaf, 0xb1, 0xb1, 0xb1, 0xb1, 0xaf, 0xad, 0xb1, 0xb1, 0xaf, 0xa9, 0xa9, 0xa9, 0xa6, 0xa6, 0xa4, 0xa6, 0xa4, 0xa4, 0xa4, 0xa4, 0xa6, 0xa4, 0xa4, 0xa6, 0xab, 0xa9, 0xa9, 0xb1, 0xa3, 0xe5, 0xe9, 0xea, 0xea, 0xea, 0xea, 0xeb, 0xea, 0xeb, 0xeb, 0xeb, 0xeb, 0xeb, 0xeb, 0xeb, 0xeb, 0xc7, 0xed, 0xed, 0xd7, 0x4f, 0x4e, 0x4e, 0x4e, 0x4f, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x7a, 0x77, 0x79, 0x7b, 0x79, 0x79, 0x77, 0x74, 0x74, 0x70, 0x74, 0x70, 0x77, 0x79, 0x7c, 0x82, 0x8c, 0x90, 0xa3, 0x81, 0x6f, 0x6d, 0x67, 0x62, 0x5f, 0x5f, 0x5a, 0x5a, 0x57, 0x5a, 0x5a, 0x5a, 0x5b, 0x5b, 0x5f, 0x5f, 0x5b, 0x62, 0x70, 0x75, 0x70, 0x79, 0x82, 0x7f, 0x7c, 0x7f, 0x7c, 0x7c, 0x7c, 0x79, 0x79, 0x77, 0x77, 0x77, 0x74, 0x7c, 0x7c, 0x7c, 0x82, 0x82, 0x90, 0x93, 0x9c, 0x9f, 0xaa, 0xab, 0xaa, 0xad, 0xaf, 0xb1, 0xb3, 0xb1, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb6, 0xb5, 0xb5, 0xb5, 0xb5, 0xb3, 0xb5, 0xb3, 0xb3, 0xb3, 0xaf, 0xb7, 0xbf, 0xbe, 0xc0, 0xc0, 0xc1, 0xd1, 0xc1, 0xc0, 0xbf, 0xbd, 0xb9, 0xb6, 0xb2, 0xa3, 0xa0, 0x90, 0x87, 0xd8, 0x16, 0x16, 0x19, 0x1c, 0x19, 0x1c, 0x1c, 0x1c, 0x19, 0x1c, 0x19, 0x19, 0x19, 0x19, 0x16, 0x16, 0x13, 0x1a, 0x1b, 0xd8, 0x9f, 0x52, 0x96, 0x50, 0x51, 0x51, 0x51, 0x51, 0x51, 0x51, 0x8f, 0x51, 0x51, 0x51, 0x51, 0x51, 0x51, 0x51, 0x51, 0x51, 0x96, 0x9a, 0x85, 0x07, 0x06, 0xe5, 0xc3, 0x5a, 0xc3, 0xc3, 0xc3, 0xc3, 0xd4, 0xc3, 0xc3, 0xd4, 0xc3, 0xd4, 0xc3, 0xd4, 0xc3, 0xe1, 0x5f, 0x5b, 0x5b, 0x5b, 0x5b, 0x56, 0x1b, 0x2b, 0x22, 0x25, 0x37, 0xf9, 0xf7, 0xf8, 0xa8, 0xab, 0x52, 0x97, 0x9b, 0x97, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x9b, 0x93, 0x9b, 0x93, 0x8e, 0xd8, 0x8d, 0x91, 0x50, 0x50, 0x50, 0x8b, 0x81, 0x81, 0x7a, 0x75, 0x70, 0x6c, 0x66, 0x66, 0x62, 0x62, 0x5e, 0xe5, 0x26, 0x1c, 0x3e, 0x3e, 0xf9, 0x3e, 0x3e, 0x3e, 0xf9, 0x3e, 0x3e, 0xf9, 0x3e, 0x3e, 0x3e, 0xf9, 0x3c, 0x33, 0x30, 0x2a, 0x3b, 0x40, 0x3d, 0x3c, 0x40, 0x40, 0x40, 0x3c, 0x40, 0x40, 0x3c, 0x41, 0x36, 0x30, 0x30, 0x2e, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x30, 0x38, 0x3a, 0x3a, 0x38, 0x3a, 0x38, 0x3a, 0x38,
0xbd, 0xbe, 0xbf, 0xc0, 0xc0, 0xc0, 0xc0, 0xc1, 0xc0, 0xc1, 0xd1, 0xc1, 0xd1, 0xc1, 0xd1, 0xc1, 0xd1, 0xd1, 0xc1, 0xd1, 0xc1, 0xc1, 0xd1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xd1, 0xc0, 0xbe, 0xbf, 0xbe, 0xbd, 0xbd, 0xbe, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbb, 0xc0, 0xb4, 0x8e, 0x90, 0x98, 0x98, 0x9c, 0xf4, 0xf5, 0xf6, 0xf7, 0xf7, 0xf8, 0xdb, 0xdb, 0xdb, 0xac, 0xac, 0xae, 0xb3, 0xb3, 0xb3, 0xb3, 0xb4, 0xb3, 0xb2, 0xb2, 0xae, 0xb2, 0xae, 0xac, 0xac, 0xac, 0xa5, 0xa8, 0xa8, 0xa8, 0xa8, 0xaa, 0xaa, 0xaa, 0xa8, 0xaa, 0xab, 0x9e, 0xf7, 0xda, 0xf8, 0xda, 0xf8, 0xda, 0xdb, 0xcc, 0xdb, 0xa5, 0xa5, 0xa8, 0xa8, 0xaa, 0xaf, 0xaf, 0xb1, 0xaf, 0xb1, 0xb1, 0xb1, 0xb1, 0xad, 0xab, 0xab, 0xad, 0xab, 0xad, 0xab, 0xad, 0xad, 0xad, 0xaf, 0xaf, 0xb1, 0xaf, 0xb1, 0xaf, 0xad, 0xad, 0xaf, 0xb1, 0xb1, 0xad, 0xa9, 0xa9, 0xa6, 0xa6, 0xa6, 0xa4, 0xa4, 0xa4, 0xa4, 0xa4, 0xa4, 0xa4, 0xa6, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xb1, 0x8e, 0x07, 0xe9, 0xea, 0xea, 0xea, 0xea, 0xeb, 0xea, 0xeb, 0xeb, 0xeb, 0xeb, 0xc7, 0xeb, 0xc7, 0xeb, 0xc8, 0xeb, 0xd6, 0x8d, 0x96, 0x91, 0x50, 0x50, 0x89, 0x89, 0x89, 0x89, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4f, 0x4e, 0x76, 0x70, 0x74, 0x77, 0x7c, 0x7f, 0x82, 0x8a, 0x90, 0x93, 0x9f, 0x9f, 0xa7, 0xad, 0xb1, 0xb5, 0xb5, 0xb3, 0xaf, 0x91, 0x4f, 0x4f, 0x4f, 0x4e, 0x4d, 0x4d, 0x71, 0x71, 0x67, 0x67, 0x62, 0x62, 0x5f, 0x5b, 0x5a, 0x59, 0x57, 0x5b, 0x6a, 0x70, 0x7c, 0x7f, 0x79, 0x79, 0x79, 0x79, 0x7c, 0x7c, 0x82, 0x82, 0x8a, 0x8c, 0x90, 0x93, 0x9b, 0x9f, 0xa2, 0xab, 0xab, 0xad, 0xaf, 0xad, 0xab, 0xb6, 0xb5, 0xad, 0xaf, 0xaf, 0xaf, 0xad, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xb1, 0xaf, 0xb3, 0xaf, 0xaf, 0xb1, 0xae, 0xaf, 0xaf, 0xb7, 0xbb, 0xb7, 0xb9, 0xb7, 0xb9, 0xb9, 0xb9, 0xb9, 0xba, 0xbd, 0xbd, 0xbe, 0xc0, 0xc0, 0xc1, 0xd1, 0xc1, 0xf6, 0x0d, 0x0d, 0x16, 0x13, 0x16, 0x16, 0x16, 0x19, 0x16, 0x19, 0x19, 0x19, 0x16, 0x19, 0x16, 0x16, 0x17, 0x1b, 0xd7, 0x90, 0xa1, 0x96, 0x8b, 0x51, 0x8b, 0x51, 0x8f, 0x51, 0x51, 0x51, 0x51, 0x51, 0x51, 0x51, 0x51, 0x51, 0x51, 0x51, 0x51, 0x51, 0x51, 0x9a, 0x8f, 0xe7, 0x06, 0xe1, 0x5f, 0xd4, 0xc3, 0xd4, 0xc3, 0xc3, 0xd4, 0xc3, 0xc3, 0xd4, 0xc3, 0xc3, 0xc3, 0xd4, 0xc3, 0xe1, 0x5f, 0x5b, 0x59, 0x5b, 0x56, 0xe7, 0x32, 0x25, 0x25, 0x31, 0xf9, 0xf7, 0xdb, 0xaa, 0xab, 0x99, 0x9b, 0x93, 0x93, 0x93, 0x97, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x9b, 0x9b, 0xca, 0xee, 0xd7, 0x8c, 0x50, 0x89, 0x86, 0x7e, 0x7a, 0x75, 0x75, 0x6c, 0x6c, 0x66, 0x66, 0x62, 0x62, 0x60, 0x60, 0x17, 0x23, 0x21, 0x3e, 0x3e, 0xf9, 0xf9, 0xf9, 0x3e, 0xf9, 0x3e, 0x3e, 0x3e, 0xf9, 0x3c, 0xfa, 0x3c, 0x33, 0x33, 0x30, 0x34, 0x3f, 0x3f, 0x3c, 0x40, 0x3c, 0x40, 0x40, 0x3c, 0x40, 0x40, 0x41, 0x3c, 0x30, 0x30, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x23, 0x30, 0x33, 0x3a, 0x3a, 0x38, 0x3a, 0x3a, 0x38, 0x3a,
0xbd, 0xbb, 0xbf, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc1, 0xc1, 0xc1, 0xc1, 0xd1, 0xc1, 0xc1, 0xc1, 0xc1, 0xd1, 0xd1, 0xc1, 0xd1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc0, 0xbe, 0xbf, 0xbd, 0xbd, 0xbe, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbb, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xc0, 0xb2, 0x8e, 0x94, 0x90, 0x98, 0xf4, 0xf5, 0xf5, 0xf6, 0xf6, 0xf7, 0xf8, 0xf8, 0xdb, 0xdb, 0xac, 0xac, 0xae, 0xae, 0xb1, 0xb3, 0xb3, 0xb5, 0xb2, 0xb3, 0xae, 0xb2, 0xae, 0xac, 0xac, 0xac, 0xac, 0xa8, 0xac, 0xa8, 0xaa, 0xa8, 0xa8, 0xaa, 0xa8, 0xaa, 0xaa, 0xad, 0xa5, 0xf4, 0xf8, 0xda, 0xf8, 0xcc, 0xdb, 0xdb, 0x9e, 0xa5, 0xa8, 0xa5, 0xaa, 0xaa, 0xaf, 0xaf, 0xb1, 0xaf, 0xb1, 0xb1, 0xb1, 0xb1, 0xaf, 0xab, 0xab, 0xab, 0xab, 0xab, 0xad, 0xab, 0xad, 0xaf, 0xad, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xab, 0xab, 0xad, 0xad, 0xb1, 0xaf, 0xad, 0xa9, 0xa9, 0xa6, 0xa6, 0xa6, 0xa4, 0xa4, 0xa4, 0xa4, 0xa6, 0xa6, 0xa4, 0xa9, 0xab, 0xa9, 0xa9, 0xa9, 0xab, 0xb3, 0x80, 0x07, 0xea, 0xea, 0xeb, 0xea, 0xea, 0xeb, 0xeb, 0xeb, 0xeb, 0xc7, 0xeb, 0xc7, 0xeb, 0xc7, 0xc7, 0xc7, 0xeb, 0xca, 0xb1, 0xaf, 0xad, 0xad, 0xad, 0xad, 0xab, 0xab, 0xa9, 0xa6, 0xa7, 0xa4, 0xa4, 0xa1, 0x9d, 0x9a, 0x96, 0x90, 0x93, 0xa3, 0xa7, 0xad, 0xaf, 0xb1, 0xb3, 0xb3, 0xb1, 0xb1, 0xaf, 0xaf, 0xab, 0xab, 0xad, 0xab, 0xab, 0xa7, 0x89, 0x4e, 0x4f, 0x4f, 0x89, 0x4f, 0x89, 0x4f, 0x89, 0x4f, 0x4f, 0x4e, 0x4d, 0x4d, 0x71, 0x69, 0x67, 0x60, 0x60, 0x70, 0x8a, 0x85, 0x8a, 0x8c, 0x90, 0x93, 0x9b, 0xa2, 0xa2, 0xa6, 0xa9, 0xab, 0xab, 0xab, 0xad, 0xa9, 0xa9, 0xa7, 0xa7, 0xa7, 0xa7, 0xa7, 0xa7, 0xb5, 0xb9, 0xb1, 0xad, 0xad, 0xad, 0xaf, 0xaf, 0xad, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xb1, 0xaf, 0xb1, 0xaf, 0xb1, 0xaf, 0xae, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xaa, 0xb3, 0xb9, 0xb9, 0xb7, 0xb7, 0xb7, 0xb7, 0xb9, 0xb9, 0xb9, 0xb7, 0xb9, 0xb9, 0xb7, 0xb9, 0xb7, 0xb9, 0xb6, 0xbf, 0xf7, 0x0b, 0x0d, 0x13, 0x13, 0x13, 0x0d, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x14, 0x17, 0xef, 0xee, 0x8a, 0x9d, 0x96, 0x50, 0x8b, 0x51, 0x8b, 0x8b, 0x8f, 0x8b, 0x51, 0x8b, 0x51, 0x8b, 0x51, 0x51, 0x51, 0x51, 0x50, 0x51, 0x51, 0x50, 0x51, 0x91, 0x51, 0xeb, 0x00, 0xc2, 0xd4, 0xd3, 0xc3, 0xd4, 0xd4, 0xc3, 0xc3, 0xd4, 0xc3, 0xd4, 0xc3, 0xd4, 0xc3, 0xc3, 0xc3, 0xe1, 0xe1, 0x5b, 0x59, 0x58, 0xd5, 0x2b, 0x22, 0x22, 0x2d, 0xf7, 0xf8, 0xa5, 0xaf, 0xa9, 0x97, 0x9b, 0x93, 0x9b, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x9d, 0x98, 0xee, 0x11, 0xee, 0x82, 0x7e, 0x7e, 0x76, 0x76, 0x70, 0x6c, 0x66, 0x66, 0x66, 0x62, 0x62, 0x62, 0x5c, 0xe7, 0x23, 0x1c, 0x28, 0x3e, 0x3e, 0x3e, 0x3e, 0x3e, 0x3e, 0x3e, 0xf9, 0x3e, 0x3e, 0x3e, 0xf9, 0x3c, 0x38, 0x33, 0x33, 0x33, 0x3d, 0x39, 0x40, 0x3c, 0x40, 0x3c, 0x40, 0x3c, 0x40, 0x3c, 0x40, 0x41, 0x34, 0x2e, 0x2e, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x23, 0x26, 0x26, 0x26, 0x2a, 0x33, 0x3a, 0x3a, 0x3a, 0x38, 0x3a, 0x38, 0x3a,
0xbd, 0xbe, 0xbd, 0xbf, 0xc0, 0xc0, 0xc0, 0xc0, 0xc1, 0xc1, 0xc1, 0xd1, 0xc1, 0xd1, 0xc1, 0xd1, 0xc1, 0xc1, 0xd1, 0xc1, 0xc1, 0xc1, 0xd1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc0, 0xbe, 0xbe, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbe, 0xbb, 0xbd, 0xbd, 0xbd, 0xbb, 0xbd, 0xc0, 0xb2, 0x8e, 0x8e, 0x98, 0xf4, 0x31, 0xf5, 0xf6, 0xf6, 0xf7, 0xf7, 0xf8, 0xf8, 0xdb, 0xa5, 0xa5, 0xac, 0xae, 0xae, 0xb3, 0xb1, 0xb3, 0xb5, 0xb2, 0xb3, 0xae, 0xae, 0xac, 0xae, 0xac, 0xac, 0xa8, 0xa8, 0xaa, 0xa8, 0xaa, 0xa8, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xad, 0xa8, 0xf7, 0xda, 0xdb, 0xda, 0xdb, 0x9e, 0xdb, 0xa5, 0xa5, 0xa8, 0xa8, 0xaf, 0xad, 0xaf, 0xb1, 0xb1, 0xaf, 0xb1, 0xb1, 0xaf, 0xb1, 0xaf, 0xab, 0xab, 0xab, 0xab, 0xab, 0xad, 0xad, 0xad, 0xad, 0xad, 0xad, 0xaf, 0xad, 0xad, 0xa9, 0xa9, 0xab, 0xad, 0xad, 0xaf, 0xb1, 0xab, 0xa9, 0xa6, 0xa6, 0xa4, 0xa4, 0xa4, 0xa4, 0xa4, 0xa4, 0xa4, 0xa4, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xab, 0xab, 0xad, 0xeb, 0xe5, 0xea, 0xea, 0xea, 0xeb, 0xea, 0xeb, 0xeb, 0xeb, 0xeb, 0xc7, 0xeb, 0xc7, 0xc7, 0xc7, 0xc7, 0xc8, 0xd7, 0x98, 0xad, 0xab, 0xab, 0xab, 0xad, 0xad, 0xaf, 0xaf, 0xb1, 0xb1, 0xb3, 0xb1, 0xb3, 0xb3, 0xb5, 0xb3, 0xb5, 0xb1, 0xaf, 0xaf, 0xad, 0xad, 0xab, 0xad, 0xab, 0xad, 0xab, 0xad, 0xab, 0xab, 0xab, 0xad, 0xab, 0xa6, 0xa6, 0xa7, 0x89, 0x4e, 0x4f, 0x4e, 0x4f, 0x4f, 0x4e, 0x4f, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x89, 0x4f, 0x4f, 0x4f, 0x4d, 0x4d, 0x52, 0xa7, 0xa6, 0xa6, 0xa6, 0xa9, 0xa6, 0xa6, 0xa6, 0xa2, 0xa6, 0xa2, 0xa6, 0xa6, 0xa7, 0xa7, 0xa7, 0xa6, 0xa7, 0xa9, 0xa7, 0xa7, 0xa7, 0xb5, 0xb7, 0xb7, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xb1, 0xaf, 0xaf, 0xb1, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xae, 0xb1, 0xaf, 0xaf, 0xaf, 0xaf, 0xb5, 0xba, 0xb7, 0xb7, 0xb9, 0xb7, 0xb9, 0xb7, 0xb7, 0xb9, 0xb9, 0xb7, 0xb9, 0xb9, 0xb7, 0xb9, 0xb7, 0xb6, 0xbe, 0xf8, 0x0d, 0x0d, 0x13, 0x13, 0x13, 0x13, 0x13, 0x0d, 0x13, 0x0d, 0x0d, 0x0f, 0x12, 0x0e, 0x11, 0xec, 0xd6, 0x7d, 0x7e, 0x96, 0x95, 0x96, 0x95, 0x95, 0x99, 0x95, 0x99, 0x99, 0x99, 0x99, 0x9a, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x9d, 0xa1, 0xc9, 0x61, 0xc5, 0xc3, 0xd3, 0xd3, 0xd2, 0xde, 0xd2, 0xdf, 0xdf, 0xd3, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xe1, 0xc3, 0xe1, 0x5f, 0x58, 0x5b, 0x22, 0x2c, 0x25, 0xef, 0xf9, 0xa5, 0xa8, 0xaf, 0xa4, 0x9b, 0x97, 0x9b, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x9b, 0x93, 0x93, 0x52, 0x52, 0xd8, 0x11, 0xec, 0xed, 0x77, 0x75, 0x71, 0x6c, 0x6c, 0x66, 0x66, 0x62, 0x66, 0x62, 0x62, 0x60, 0x5d, 0x1d, 0x26, 0x19, 0x2b, 0xfa, 0x3e, 0xf9, 0xf9, 0x3e, 0x3e, 0x3e, 0x3e, 0x3e, 0x3e, 0x3e, 0x3c, 0x33, 0x33, 0x2f, 0x33, 0x38, 0x40, 0x3c, 0x3f, 0x3c, 0x40, 0x3c, 0x40, 0x3c, 0x40, 0x3c, 0x41, 0x40, 0x30, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x23, 0x30, 0x30, 0x38, 0x3a, 0x3a, 0x3a, 0x3a, 0x3a, 0x38,
0xbd, 0xbd, 0xbd, 0xbe, 0xc0, 0xc0, 0xc0, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xd1, 0xc1, 0xc1, 0xc1, 0xd1, 0xc1, 0xd1, 0xd1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xd1, 0xc1, 0xbf, 0xbd, 0xbd, 0xbd, 0xbe, 0xbd, 0xbe, 0xbb, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbb, 0xbd, 0xbd, 0xbb, 0xbd, 0xc0, 0xb2, 0xca, 0x8e, 0xf4, 0x31, 0xf5, 0xf5, 0xf6, 0xf5, 0xf6, 0xf7, 0xf8, 0xf8, 0xdb, 0xdb, 0xa5, 0xac, 0xac, 0xb1, 0xae, 0xb1, 0xb1, 0xb6, 0xb2, 0xb3, 0xae, 0xae, 0xae, 0xac, 0xac, 0xa8, 0xae, 0xa8, 0xaa, 0xa8, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xab, 0xa7, 0xab, 0xa5, 0xda, 0xda, 0xdb, 0x9e, 0xdb, 0xa5, 0xa5, 0xa8, 0xa8, 0xaa, 0xaa, 0xad, 0xaf, 0xb1, 0xaf, 0xb1, 0xaf, 0xb1, 0xaf, 0xaf, 0xb1, 0xad, 0xab, 0xab, 0xad, 0xab, 0xab, 0xab, 0xad, 0xad, 0xad, 0xad, 0xad, 0xad, 0xab, 0xa6, 0xa9, 0xab, 0xab, 0xab, 0xad, 0xad, 0xad, 0xab, 0xa9, 0xa6, 0xa6, 0xa4, 0xa4, 0xa4, 0xa4, 0xa4, 0xa4, 0xa4, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa6, 0xb3, 0xa3, 0xe7, 0xe5, 0xea, 0xea, 0xea, 0xeb, 0xea, 0xeb, 0xeb, 0xeb, 0xeb, 0xc7, 0xeb, 0xc7, 0xc7, 0xc7, 0xc9, 0x80, 0x84, 0x9f, 0xad, 0xa9, 0xab, 0xab, 0xab, 0xab, 0xab, 0xad, 0xad, 0xad, 0xad, 0xaf, 0xaf, 0xad, 0xaf, 0xaf, 0xb1, 0xab, 0xab, 0xad, 0xab, 0xad, 0xab, 0xab, 0xab, 0xab, 0xab, 0xab, 0xab, 0xad, 0xab, 0xad, 0xa6, 0xa4, 0xa9, 0xa7, 0x4f, 0x4e, 0x4f, 0x4f, 0x4e, 0x4f, 0x4e, 0x4f, 0x4f, 0x4e, 0x4f, 0x4e, 0x4f, 0x4e, 0x4f, 0x4e, 0x4f, 0x4e, 0x89, 0xa6, 0xa9, 0xa2, 0xa2, 0xa1, 0xa2, 0xa4, 0xa2, 0xa2, 0xa7, 0xa2, 0xa7, 0xa7, 0xa2, 0xa6, 0xa7, 0xa7, 0xa7, 0xa7, 0xa7, 0xa7, 0xab, 0xb5, 0xb6, 0xb8, 0xb5, 0xad, 0xaf, 0xaf, 0xaf, 0xb1, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xb1, 0xaf, 0xaf, 0xaf, 0xaf, 0xb1, 0xaf, 0xaf, 0xaf, 0xb1, 0xaf, 0xaf, 0xaa, 0xb1, 0xb7, 0xb9, 0xb7, 0xb7, 0xb7, 0xb7, 0xb9, 0xb7, 0xb7, 0xb7, 0xb9, 0xb7, 0xb7, 0xb9, 0xb9, 0xb7, 0xb6, 0xb7, 0xbf, 0xf9, 0x0d, 0x0d, 0x16, 0x13, 0x13, 0x13, 0x13, 0x13, 0x0d, 0x13, 0x0f, 0x0f, 0x12, 0x11, 0x10, 0xed, 0xc8, 0x79, 0x8b, 0xa4, 0xa4, 0xa1, 0xa4, 0xa4, 0xa4, 0xa6, 0xa6, 0xa9, 0xa6, 0xa9, 0xa9, 0xab, 0xab, 0xad, 0xaf, 0xaf, 0xaf, 0xb1, 0xb1, 0xb1, 0xb1, 0xb3, 0xb6, 0xab, 0x9a, 0x97, 0x87, 0x85, 0x7b, 0x77, 0x6e, 0x6e, 0x65, 0xc5, 0xc4, 0xd4, 0xd4, 0xdf, 0xdf, 0xd2, 0xde, 0xdf, 0xde, 0x57, 0x54, 0xec, 0x32, 0x25, 0x22, 0xf3, 0xa5, 0xaa, 0xad, 0xa2, 0x95, 0x97, 0x97, 0x97, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x9b, 0x93, 0x93, 0x52, 0xa1, 0xca, 0x11, 0x11, 0xec, 0xea, 0xc7, 0x6c, 0x67, 0x66, 0x66, 0x66, 0x62, 0x62, 0x60, 0x62, 0x5c, 0xe8, 0x26, 0x1f, 0x1c, 0x32, 0xfa, 0x3e, 0x3e, 0x3e, 0xf9, 0x3e, 0x3e, 0xf9, 0x3e, 0xf9, 0x3c, 0x38, 0x38, 0x33, 0x33, 0x33, 0x3f, 0x3c, 0x41, 0x3c, 0x40, 0x3c, 0x3c, 0x40, 0x3c, 0x40, 0x3c, 0x41, 0x38, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x23, 0x26, 0x26, 0x26, 0x2f, 0x33, 0x3a, 0x3a, 0x38, 0x3a, 0x3a, 0x3a,
0xbd, 0xbd, 0xbd, 0xbd, 0xbe, 0xc0, 0xc0, 0xc0, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xd1, 0xc1, 0xd1, 0xc1, 0xc1, 0xc1, 0xc1, 0xd1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc0, 0xc1, 0xc1, 0xbe, 0xba, 0xbd, 0xbb, 0xbd, 0xbd, 0xbe, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbb, 0xbd, 0xbd, 0xbd, 0xbb, 0xbd, 0xbb, 0xbd, 0xc0, 0xac, 0x8e, 0xf3, 0x31, 0xf5, 0xf5, 0xf5, 0xf6, 0xf6, 0xf6, 0xf7, 0xf8, 0xf8, 0xdb, 0xdb, 0xa5, 0xac, 0xac, 0xae, 0xb3, 0xb1, 0xb3, 0xb5, 0xb3, 0xb2, 0xae, 0xae, 0xae, 0xac, 0xac, 0xa8, 0xae, 0xa8, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xa9, 0xaa, 0xaa, 0xab, 0xab, 0xa8, 0xda, 0xdb, 0xcc, 0xa5, 0x9e, 0xa8, 0xa5, 0xaa, 0xa8, 0xad, 0xad, 0xaf, 0xaf, 0xb1, 0xaf, 0xb1, 0xaf, 0xaf, 0xb1, 0xaf, 0xaf, 0xad, 0xab, 0xab, 0xab, 0xab, 0xad, 0xab, 0xad, 0xab, 0xab, 0xad, 0xad, 0xa9, 0xa4, 0xa6, 0xa9, 0xa9, 0xab, 0xab, 0xab, 0xad, 0xab, 0xa9, 0xa6, 0xa6, 0xa6, 0xa4, 0xa6, 0xa4, 0xa4, 0xa6, 0xa4, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xb1, 0x98, 0xe4, 0xe7, 0xea, 0xeb, 0xea, 0xeb, 0xeb, 0xc6, 0xeb, 0xc7, 0xeb, 0xc7, 0xc7, 0xc7, 0xc7, 0xc9, 0x84, 0x80, 0x88, 0xa7, 0xad, 0xa9, 0xab, 0xab, 0xab, 0xad, 0xab, 0xad, 0xad, 0xad, 0xad, 0xad, 0xad, 0xad, 0xaf, 0xb1, 0xaf, 0xab, 0xab, 0xad, 0xa9, 0xab, 0xab, 0xab, 0xab, 0xab, 0xab, 0xab, 0xab, 0xab, 0xab, 0xa6, 0xa4, 0xa4, 0xa9, 0xa7, 0x4f, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4f, 0x4e, 0x4f, 0x4e, 0x4f, 0x4e, 0x4f, 0x4e, 0x4e, 0x4e, 0x89, 0xa1, 0xab, 0xa2, 0xa4, 0xa2, 0xa2, 0xa6, 0xa2, 0xa6, 0xa6, 0xa7, 0xa6, 0xa7, 0xa7, 0xa7, 0xa7, 0xa9, 0xa7, 0xa7, 0xa6, 0xaa, 0xb6, 0xb6, 0xb6, 0xb9, 0xb3, 0xaf, 0xaf, 0xb1, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xb1, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaa, 0xb5, 0xba, 0xb9, 0xb7, 0xb9, 0xb7, 0xb7, 0xb9, 0xb9, 0xb9, 0xb7, 0xb9, 0xb9, 0xb9, 0xb7, 0xb7, 0xb7, 0xb7, 0xb6, 0xbe, 0xfb, 0x0d, 0x0d, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x0d, 0x0d, 0x0f, 0x12, 0x0e, 0x15, 0xed, 0xd6, 0x7d, 0x7f, 0x96, 0xa1, 0xa1, 0x9d, 0xa1, 0xa1, 0xa1, 0xa2, 0xa4, 0xa6, 0xa6, 0xa6, 0xa9, 0xa9, 0xa9, 0xab, 0xab, 0xad, 0xad, 0xad, 0xaf, 0xaf, 0xaf, 0xb3, 0xb5, 0xab, 0x9d, 0xa6, 0xa9, 0xa9, 0xab, 0xa6, 0xa6, 0xa4, 0xa1, 0x9d, 0x97, 0x8d, 0x8c, 0x7f, 0x7f, 0x74, 0x72, 0x6e, 0xc6, 0x5d, 0xe9, 0x2b, 0x25, 0x25, 0xf0, 0xa5, 0xaf, 0xab, 0xa1, 0x99, 0x97, 0x97, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x9b, 0x93, 0x9b, 0xa1, 0x98, 0xec, 0x0e, 0x11, 0x10, 0xe8, 0xc6, 0x66, 0x63, 0x62, 0x62, 0x62, 0x62, 0x5f, 0x60, 0x5d, 0x1a, 0x26, 0x1c, 0x1c, 0x32, 0xfa, 0xf9, 0x3e, 0x3e, 0xf9, 0x3e, 0x3e, 0x3e, 0xf9, 0x3c, 0x33, 0x38, 0x33, 0x30, 0x36, 0x34, 0x33, 0x38, 0x39, 0x39, 0x40, 0x40, 0x3c, 0x41, 0x3c, 0x41, 0x42, 0x3c, 0x2e, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x23, 0x26, 0x33, 0x30, 0x3a, 0x3a, 0x3a, 0x3a, 0x38, 0x3a,
0xbd, 0xbb, 0xbe, 0xbd, 0xbe, 0xbf, 0xc1, 0xc0, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xd1, 0xc1, 0xd1, 0xc1, 0xc1, 0xd1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc0, 0xc1, 0xc0, 0xc1, 0xc0, 0xc1, 0xc1, 0xd1, 0xc0, 0xbb, 0xbd, 0xbb, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbb, 0xbd, 0xbd, 0xbb, 0xbd, 0xb9, 0xbd, 0xbf, 0xb2, 0xf1, 0x2d, 0x31, 0xf5, 0xf5, 0xf5, 0xf5, 0xf6, 0xf6, 0xf7, 0xf7, 0xdb, 0xdb, 0xdb, 0xa5, 0xac, 0xac, 0xae, 0xb1, 0xb3, 0xb1, 0xb5, 0xb3, 0xb3, 0xae, 0xae, 0xae, 0xae, 0xac, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xad, 0xaa, 0xab, 0xaa, 0xab, 0xa9, 0xab, 0xa3, 0xcc, 0xdb, 0x9e, 0xa5, 0xa5, 0xa8, 0xa3, 0xaa, 0xad, 0xad, 0xad, 0xb1, 0xaf, 0xb1, 0xaf, 0xb1, 0xaf, 0xaf, 0xaf, 0xb1, 0xaf, 0xab, 0xa9, 0xab, 0xab, 0xab, 0xab, 0xab, 0xab, 0xab, 0xab, 0xad, 0xa6, 0xa1, 0xa6, 0xa6, 0xa6, 0xa9, 0xab, 0xab, 0xab, 0xad, 0xad, 0xab, 0xa6, 0xa6, 0xa4, 0xa4, 0xa4, 0xa4, 0xa4, 0xa6, 0xa6, 0xa9, 0xa9, 0xa9, 0xa9, 0xa6, 0xa9, 0xa9, 0xa9, 0xb1, 0x84, 0xe5, 0xea, 0xea, 0xeb, 0xea, 0xeb, 0xeb, 0xeb, 0xeb, 0xc7, 0xeb, 0xc7, 0xc7, 0xc7, 0xd7, 0x80, 0x84, 0x88, 0x8e, 0xab, 0xab, 0xab, 0xab, 0xab, 0xad, 0xad, 0xab, 0xad, 0xad, 0xad, 0xad, 0xad, 0xaf, 0xaf, 0xb1, 0xb1, 0xad, 0xab, 0xa9, 0xab, 0xab, 0xab, 0xa9, 0xab, 0xa9, 0xab, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa6, 0xa2, 0xa4, 0xa6, 0xa7, 0x4f, 0x4e, 0x4f, 0x4f, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4f, 0x4e, 0x4f, 0x4e, 0x4f, 0x4f, 0x4f, 0x89, 0xa2, 0xa9, 0xa2, 0xa6, 0xa6, 0xa2, 0xa7, 0xa2, 0xa6, 0xa2, 0xa6, 0xa7, 0xa7, 0xa7, 0xa7, 0xa7, 0xa7, 0xa9, 0xa7, 0xaf, 0xb7, 0xb6, 0xb6, 0xb7, 0xb7, 0xb1, 0xaf, 0xb1, 0xb1, 0xaf, 0xb1, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xad, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xad, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xb7, 0xb9, 0xb7, 0xb7, 0xb9, 0xb9, 0xb7, 0xb9, 0xb7, 0xb7, 0xb7, 0xb7, 0xb9, 0xb7, 0xb7, 0xb6, 0xb6, 0xb7, 0xb6, 0xbd, 0xfa, 0x0d, 0x0d, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x14, 0x0f, 0x0f, 0x0e, 0x11, 0xec, 0xed, 0xd6, 0x82, 0x8d, 0x96, 0xa1, 0xa1, 0xa1, 0xa1, 0xa4, 0xa1, 0xa4, 0xa4, 0xa6, 0xa6, 0xa6, 0xa9, 0xa9, 0xab, 0xab, 0xab, 0xad, 0xaf, 0xaf, 0xaf, 0xaf, 0xb1, 0xb1, 0xb5, 0xa9, 0x9a, 0x9d, 0xa1, 0x9d, 0xa1, 0xa1, 0xa1, 0xa4, 0xa1, 0xa4, 0xa9, 0xa9, 0xab, 0xab, 0xa9, 0xa9, 0xa4, 0xa4, 0x9d, 0xcb, 0x24, 0x25, 0x25, 0x25, 0xcc, 0xb1, 0xa9, 0x9a, 0x99, 0x97, 0x97, 0x97, 0x93, 0x92, 0x93, 0x93, 0x93, 0x90, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x97, 0x93, 0x9b, 0x9b, 0x97, 0xa1, 0x52, 0xee, 0x0a, 0x11, 0x11, 0x0c, 0xe8, 0xe6, 0x62, 0x60, 0x60, 0x62, 0x60, 0x62, 0x5c, 0xe7, 0x26, 0x21, 0x1c, 0x1f, 0x35, 0xfa, 0xf9, 0x3e, 0x3e, 0x3e, 0x3e, 0xf9, 0x3e, 0x3c, 0x38, 0x38, 0x33, 0x30, 0x32, 0xcb, 0x21, 0x2e, 0x26, 0x2e, 0x2a, 0x33, 0x38, 0x36, 0x3b, 0x39, 0x40, 0x41, 0x36, 0x23, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x23, 0x30, 0x33, 0x38, 0x3a, 0x38, 0x3a, 0x38, 0x3a,
0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbe, 0xc0, 0xc1, 0xc0, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xd1, 0xc1, 0xd1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc0, 0xc0, 0xc1, 0xc0, 0xc1, 0xc1, 0xc0, 0xc1, 0xc1, 0xc0, 0xc1, 0xc0, 0xbd, 0xbb, 0xbd, 0xbd, 0xbd, 0xbb, 0xbd, 0xbb, 0xbd, 0xbb, 0xbb, 0xbd, 0xbd, 0xbb, 0xbb, 0xbd, 0xbb, 0xbd, 0xba, 0xba, 0xbf, 0xfb, 0x27, 0x31, 0x31, 0xf5, 0xf5, 0xf5, 0xf5, 0xf6, 0xf7, 0xf7, 0xf7, 0xdb, 0xdb, 0xdb, 0xac, 0xa5, 0xae, 0xae, 0xb1, 0xb1, 0xb1, 0xb3, 0xb3, 0xb3, 0xae, 0xae, 0xac, 0xae, 0xaa, 0xae, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xad, 0xad, 0xaa, 0xab, 0xa9, 0xab, 0xab, 0xa3, 0xdb, 0x9e, 0xa5, 0xa8, 0xa8, 0xaa, 0xaa, 0xab, 0xad, 0xaf, 0xaf, 0xb1, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xa9, 0xa9, 0xab, 0xa9, 0xab, 0xab, 0xa9, 0xab, 0xab, 0xa9, 0xa4, 0xa1, 0xa4, 0xa6, 0xa6, 0xa6, 0xa9, 0xa9, 0xa9, 0xa9, 0xab, 0xa9, 0xa9, 0xa6, 0xa6, 0xa4, 0xa6, 0xa4, 0xa4, 0xa6, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa6, 0xab, 0xab, 0xb1, 0xd6, 0x03, 0xeb, 0xeb, 0xeb, 0xeb, 0xeb, 0xeb, 0xeb, 0xeb, 0xc7, 0xc7, 0xeb, 0xc9, 0xc9, 0x80, 0x80, 0x88, 0x88, 0x93, 0xad, 0xab, 0xab, 0xab, 0xab, 0xad, 0xab, 0xad, 0xad, 0xad, 0xad, 0xad, 0xad, 0xaf, 0xaf, 0xaf, 0xb3, 0xad, 0xab, 0xa9, 0xab, 0xa9, 0xab, 0xa9, 0xab, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa6, 0xa4, 0xa6, 0xa4, 0xa4, 0xab, 0xa6, 0x4f, 0x4e, 0x4e, 0x4f, 0x4f, 0x4e, 0x4f, 0x4e, 0x4e, 0x4f, 0x4e, 0x4f, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x89, 0xa6, 0xa9, 0xa7, 0xa4, 0xa2, 0xa6, 0xa6, 0xa7, 0xa6, 0xa7, 0xa6, 0xa6, 0xa7, 0xa9, 0xa7, 0xab, 0xa7, 0xa2, 0xaf, 0xb6, 0xb6, 0xb5, 0xb6, 0xb9, 0xb6, 0xaf, 0xaf, 0xb1, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xad, 0xad, 0xad, 0xaf, 0xad, 0xaf, 0xaf, 0xaf, 0xaf, 0xad, 0xaf, 0xaa, 0xaf, 0xaf, 0xad, 0xb1, 0xb9, 0xb9, 0xb7, 0xb7, 0xb7, 0xb9, 0xb7, 0xb9, 0xb9, 0xb9, 0xb9, 0xb7, 0xb9, 0xb7, 0xb6, 0xb7, 0xb6, 0xb6, 0xb7, 0xbd, 0xfb, 0x0d, 0x0d, 0x13, 0x13, 0x13, 0x13, 0x13, 0x0d, 0x13, 0x0f, 0x12, 0x12, 0x11, 0xec, 0xee, 0x80, 0x82, 0x51, 0x9a, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa4, 0xa4, 0xa6, 0xa6, 0xa9, 0xa6, 0xa9, 0xab, 0xab, 0xab, 0xad, 0xad, 0xaf, 0xaf, 0xaf, 0xaf, 0xb1, 0xb3, 0xa9, 0x9a, 0x9d, 0xa1, 0x9d, 0xa1, 0x9d, 0xa1, 0x9d, 0xa1, 0xa1, 0x9d, 0xa1, 0x9d, 0xa1, 0xa1, 0xa1, 0xa4, 0xa1, 0xa5, 0x28, 0x22, 0x25, 0x1b, 0xd9, 0xaf, 0xa9, 0x9a, 0x9a, 0x95, 0x97, 0x92, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x92, 0x93, 0x93, 0x93, 0x97, 0x9d, 0xa1, 0xd8, 0x0e, 0x0c, 0x10, 0x0c, 0x0c, 0xe5, 0xe6, 0x62, 0x60, 0x60, 0x5f, 0x60, 0x5d, 0x1d, 0x2a, 0x1f, 0x1c, 0x1f, 0x35, 0x43, 0xf9, 0x3e, 0x3e, 0x3e, 0x3e, 0xf9, 0x3c, 0x38, 0x38, 0x33, 0x30, 0x2f, 0x9b, 0x97, 0x2a, 0x2e, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x2a, 0x2f, 0x2f, 0x36, 0x34, 0x2a, 0x26, 0x26, 0x23, 0x26, 0x23, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x2f, 0x30, 0x34, 0x3a, 0x3a, 0x3a, 0x3a, 0x3a,
0xbb, 0xbd, 0xbd, 0xbd, 0xbe, 0xbd, 0xbf, 0xc0, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xd1, 0xc1, 0xd1, 0xc1, 0xc1, 0xd1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc0, 0xc1, 0xc0, 0xc1, 0xc0, 0xc1, 0xc1, 0xc0, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbb, 0xbb, 0xba, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xba, 0xbb, 0xbd, 0xf8, 0x2d, 0xf5, 0x31, 0xf5, 0xf5, 0xf5, 0xf5, 0xf6, 0xf6, 0xf7, 0xf8, 0xf8, 0xdb, 0xdb, 0xac, 0xa8, 0xac, 0xae, 0xae, 0xb1, 0xb1, 0xb5, 0xb3, 0xb3, 0xae, 0xb2, 0xae, 0xae, 0xaa, 0xad, 0xaa, 0xaf, 0xaa, 0xaf, 0xad, 0xad, 0xab, 0xab, 0xab, 0xa6, 0xa9, 0xa9, 0xa3, 0xa5, 0xa5, 0xa3, 0xa8, 0xaa, 0xad, 0xab, 0xad, 0xaf, 0xaf, 0xaf, 0xaf, 0xb1, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xad, 0xa9, 0xab, 0xa9, 0xab, 0xa9, 0xab, 0xa9, 0xa9, 0xa9, 0x9d, 0xa1, 0xa1, 0xa4, 0xa6, 0xa4, 0xa6, 0xa9, 0xa6, 0xa9, 0xa9, 0xab, 0xab, 0xa9, 0xa6, 0xa6, 0xa4, 0xa6, 0xa4, 0xa6, 0xa6, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xaf, 0xa7, 0xeb, 0xe5, 0xeb, 0xea, 0xeb, 0xeb, 0xeb, 0xeb, 0xc7, 0xeb, 0xc7, 0xc7, 0x80, 0xc9, 0x80, 0x80, 0x84, 0x88, 0x88, 0x9f, 0xab, 0xab, 0xa9, 0xab, 0xab, 0xab, 0xad, 0xad, 0xad, 0xaf, 0xad, 0xaf, 0xaf, 0xaf, 0xaf, 0xb1, 0xb1, 0xad, 0xa9, 0xab, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa6, 0xa9, 0xa9, 0xa9, 0xa9, 0xa6, 0xa6, 0xa4, 0xa6, 0xa4, 0xab, 0x52, 0x4f, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4f, 0x4f, 0x4e, 0x4f, 0x4f, 0x4f, 0x89, 0x4f, 0x4f, 0x50, 0xa7, 0xa7, 0xa6, 0xa7, 0xa6, 0xa7, 0xa6, 0xa7, 0xa6, 0xa7, 0xa7, 0xa9, 0xa7, 0xa9, 0xa7, 0xa9, 0xa7, 0xb1, 0xb7, 0xb6, 0xb6, 0xb5, 0xb7, 0xb6, 0xb5, 0xaf, 0xb1, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xad, 0xaf, 0xaf, 0xaf, 0xaf, 0xad, 0xaf, 0xad, 0xad, 0xad, 0xaf, 0xad, 0xaf, 0xad, 0xad, 0xaa, 0xb5, 0xba, 0xb7, 0xb7, 0xb7, 0xb9, 0xb7, 0xb9, 0xb7, 0xb7, 0xb9, 0xb7, 0xb7, 0xb7, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb7, 0xbe, 0xfb, 0x0d, 0x0d, 0x13, 0x13, 0x13, 0x13, 0x0f, 0x13, 0x0f, 0x0f, 0x0e, 0x15, 0xec, 0xee, 0xd7, 0x84, 0x8d, 0x96, 0x9a, 0xa1, 0xa1, 0xa1, 0xa1, 0xa4, 0xa1, 0xa4, 0xa4, 0xa6, 0xa6, 0xa9, 0xa9, 0xa9, 0xab, 0xab, 0xad, 0xad, 0xad, 0xaf, 0xaf, 0xb1, 0xb3, 0xb3, 0xb5, 0xa7, 0x9a, 0x9d, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa4, 0x9d, 0xa1, 0x9d, 0x9d, 0x9d, 0xa0, 0x33, 0x2b, 0x1b, 0x25, 0xef, 0xa7, 0xa9, 0x96, 0x96, 0x96, 0x92, 0x92, 0x92, 0x8d, 0x92, 0x8d, 0x93, 0x8d, 0x93, 0x93, 0x93, 0x93, 0x93, 0x9c, 0x93, 0x9c, 0x9c, 0x9c, 0x9c, 0xa0, 0xa0, 0xa0, 0xa8, 0xb3, 0xf5, 0x19, 0x18, 0x15, 0x15, 0x0c, 0x09, 0xe5, 0xc5, 0x61, 0x60, 0x60, 0x5c, 0xe7, 0x2a, 0x21, 0x21, 0x1f, 0x1c, 0x3c, 0xfa, 0x3e, 0xf9, 0x3e, 0xf9, 0x3e, 0x3c, 0x34, 0x38, 0x34, 0x33, 0x2f, 0xcc, 0x96, 0x93, 0x28, 0x2e, 0x26, 0x26, 0x26, 0x23, 0x26, 0x23, 0x23, 0x1f, 0x1c, 0x3c, 0x46, 0x42, 0x3c, 0x3c, 0x39, 0x36, 0x34, 0x2a, 0x2a, 0x26, 0x26, 0x23, 0x23, 0x2a, 0x33, 0x33, 0x3a, 0x3a, 0x3a, 0x3a, 0x38,
0xbb, 0xbb, 0xbb, 0xbd, 0xbd, 0xbd, 0xbd, 0xbf, 0xc1, 0xc1, 0xc0, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xd1, 0xc1, 0xc1, 0xc1, 0xd1, 0xc1, 0xc1, 0xc1, 0xd1, 0xc1, 0xc1, 0xc0, 0xc1, 0xc0, 0xc1, 0xc0, 0xc1, 0xc0, 0xc1, 0xc0, 0xc1, 0xd0, 0xc0, 0xc1, 0xc0, 0xba, 0xbd, 0xbd, 0xbd, 0xbb, 0xbd, 0xbb, 0xbd, 0xbb, 0xbb, 0xbd, 0xba, 0xbb, 0xbb, 0xba, 0xbb, 0xbb, 0xbb, 0xbb, 0xb7, 0xb6, 0xf6, 0xf2, 0xf5, 0xf5, 0xf5, 0xf5, 0xf5, 0xf5, 0xf6, 0xf6, 0xf7, 0xf8, 0xf8, 0xdb, 0xdb, 0xa5, 0xac, 0xa8, 0xb2, 0xaf, 0xb1, 0xb3, 0xb5, 0xb3, 0xb1, 0xae, 0xae, 0xae, 0xaa, 0xae, 0xad, 0xaf, 0xad, 0xad, 0xad, 0xad, 0xab, 0xad, 0xab, 0xab, 0xa9, 0xa9, 0xa9, 0xa7, 0x9e, 0xa8, 0xa3, 0xaa, 0xab, 0xad, 0xab, 0xaf, 0xaf, 0xb1, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xad, 0xad, 0xaf, 0xad, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xab, 0xa4, 0x9d, 0xa1, 0xa1, 0xa4, 0xa1, 0xa4, 0xa4, 0xa4, 0xa6, 0xa6, 0xa4, 0xa9, 0xa9, 0xab, 0xa6, 0xa9, 0xa4, 0xa6, 0xa6, 0xa6, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa6, 0xb3, 0x9c, 0xe5, 0xe7, 0xeb, 0xeb, 0xc6, 0xeb, 0xeb, 0xc7, 0xeb, 0xc7, 0xc7, 0xd7, 0xc9, 0x7d, 0x80, 0x84, 0x88, 0x8a, 0x8e, 0xa6, 0xab, 0xa9, 0xab, 0xab, 0xab, 0xad, 0xad, 0xad, 0xaf, 0xad, 0xad, 0xaf, 0xb1, 0xaf, 0xb1, 0xb1, 0xb1, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa6, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa6, 0xa6, 0xa4, 0xa4, 0xa4, 0xa4, 0xab, 0xa2, 0x4e, 0x4e, 0x4f, 0x4e, 0x4f, 0x4e, 0x4f, 0x4f, 0x4e, 0x4f, 0x4f, 0x4e, 0x4e, 0x4f, 0x4f, 0x89, 0x4f, 0x4f, 0x50, 0xab, 0xa9, 0xa6, 0xa7, 0xa6, 0xa7, 0xa9, 0xa7, 0xa9, 0xa9, 0xa7, 0xa9, 0xa9, 0xa7, 0xa9, 0xa7, 0xb3, 0xb6, 0xb5, 0xb6, 0xb6, 0xb5, 0xb7, 0xb6, 0xb3, 0xaf, 0xb1, 0xaf, 0xaf, 0xad, 0xaf, 0xaf, 0xad, 0xad, 0xad, 0xaf, 0xad, 0xad, 0xad, 0xad, 0xaf, 0xad, 0xad, 0xad, 0xaf, 0xad, 0xad, 0xab, 0xaf, 0xb9, 0xb9, 0xb7, 0xb7, 0xb7, 0xb9, 0xb7, 0xb7, 0xb9, 0xb7, 0xb9, 0xb6, 0xb6, 0xb7, 0xb6, 0xb6, 0xb7, 0xb7, 0xb6, 0xb6, 0xbe, 0xdc, 0x0d, 0x0d, 0x13, 0x13, 0x13, 0x13, 0x0d, 0x14, 0x0f, 0x12, 0x12, 0x15, 0xec, 0xee, 0x80, 0x8a, 0x51, 0x96, 0x9a, 0xa4, 0xa1, 0xa1, 0xa4, 0xa1, 0xa4, 0xa4, 0xa4, 0xa6, 0xa9, 0xa9, 0xa9, 0xab, 0xab, 0xad, 0xad, 0xad, 0xaf, 0xb1, 0xb1, 0xaf, 0xb3, 0xb3, 0xb5, 0xa9, 0x9a, 0x9d, 0xa1, 0xa1, 0xa1, 0x9d, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0x9d, 0x9c, 0x33, 0x2f, 0x22, 0x1b, 0xef, 0x8e, 0xa1, 0x9a, 0x9a, 0x99, 0x97, 0x93, 0x9c, 0x93, 0x98, 0x9c, 0x98, 0x9e, 0x9e, 0x98, 0x9e, 0x9e, 0xdb, 0x9e, 0xdb, 0xa5, 0xdb, 0xa5, 0xa5, 0xa5, 0xa5, 0xac, 0xa5, 0xac, 0xbd, 0x36, 0x26, 0x26, 0x23, 0x1e, 0x1d, 0x17, 0x11, 0x07, 0xc5, 0x5d, 0x5c, 0x5c, 0x1a, 0x2a, 0x21, 0x1e, 0x1f, 0x1f, 0x3e, 0x3e, 0x3e, 0x3e, 0x3e, 0xf9, 0x3c, 0x38, 0x38, 0x38, 0x30, 0x2f, 0xcc, 0x93, 0x9a, 0x92, 0x28, 0x26, 0x26, 0x23, 0x26, 0x1f, 0x23, 0x1f, 0x23, 0x1c, 0x28, 0xfc, 0x43, 0xfc, 0xfc, 0xfd, 0xfc, 0xfc, 0x43, 0x42, 0x3e, 0x3c, 0x39, 0x34, 0x2f, 0x30, 0x2f, 0x38, 0x3a, 0x3a, 0x3a, 0x3a,
0xbf, 0xbf, 0xbf, 0xbf, 0xbe, 0xbe, 0xbd, 0xbe, 0xc0, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xd1, 0xc1, 0xc1, 0xc1, 0xd1, 0xc1, 0xd1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc0, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc0, 0xc1, 0xc1, 0xc0, 0xc1, 0xbf, 0xbb, 0xbb, 0xbd, 0xbd, 0xbb, 0xbd, 0xbd, 0xbd, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xba, 0xbb, 0xbb, 0xba, 0xbb, 0xb8, 0xb3, 0xb4, 0xf5, 0x2d, 0xf5, 0xf6, 0xf5, 0xf6, 0xf6, 0xf9, 0xf6, 0xf6, 0xf7, 0xf7, 0xf8, 0xdb, 0xdb, 0xa5, 0xac, 0xaa, 0xae, 0xae, 0xb1, 0xb1, 0xb3, 0xb5, 0xb1, 0xb2, 0xae, 0xaf, 0xaf, 0xaf, 0xad, 0xaf, 0xad, 0xad, 0xad, 0xab, 0xab, 0xab, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa7, 0xa0, 0xaa, 0xaa, 0xad, 0xad, 0xab, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xad, 0xad, 0xaf, 0xad, 0xad, 0xaf, 0xad, 0xab, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa4, 0x9a, 0x9d, 0xa1, 0xa1, 0xa1, 0xa1, 0xa4, 0xa4, 0xa4, 0xa4, 0xa4, 0xa4, 0xa9, 0xa9, 0xab, 0xa6, 0xa6, 0xa6, 0xa6, 0xa6, 0xa9, 0xa6, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xab, 0xa9, 0xa9, 0xa9, 0xa9, 0xb1, 0x8e, 0xe4, 0xea, 0xeb, 0xeb, 0xeb, 0xeb, 0xeb, 0xc7, 0xeb, 0xc8, 0xc9, 0xc9, 0x80, 0x80, 0x80, 0x88, 0x88, 0x8e, 0x90, 0xa9, 0xab, 0xab, 0xab, 0xab, 0xad, 0xad, 0xad, 0xad, 0xad, 0xaf, 0xaf, 0xb1, 0xaf, 0xb1, 0xaf, 0xb1, 0xaf, 0xa6, 0xa9, 0xa6, 0xa9, 0xa6, 0xa6, 0xa6, 0xa9, 0xa6, 0xa6, 0xa6, 0xa6, 0xa6, 0xa6, 0xa6, 0xa4, 0xa4, 0xa4, 0xa9, 0xa1, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4e, 0x4f, 0x4f, 0x4f, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x89, 0x4f, 0x4e, 0x51, 0xab, 0xab, 0xa7, 0xa9, 0xa9, 0xa7, 0xa9, 0xa7, 0xa9, 0xa7, 0xa9, 0xa7, 0xab, 0xa9, 0xa9, 0xb3, 0xb6, 0xb5, 0xb6, 0xb6, 0xb5, 0xb6, 0xb6, 0xb5, 0xb1, 0xaf, 0xaf, 0xaf, 0xad, 0xaf, 0xad, 0xad, 0xad, 0xad, 0xad, 0xad, 0xad, 0xab, 0xad, 0xad, 0xad, 0xad, 0xad, 0xad, 0xaf, 0xaa, 0xad, 0xaa, 0xb3, 0xba, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb9, 0xb6, 0xb6, 0xb6, 0xb7, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xbd, 0xfb, 0x14, 0x0d, 0x13, 0x13, 0x0d, 0x13, 0x0d, 0x0f, 0x12, 0x12, 0x15, 0x1b, 0xee, 0xd7, 0x88, 0x8d, 0x91, 0x9a, 0x9d, 0xa4, 0xa4, 0xa1, 0xa4, 0xa4, 0xa4, 0xa4, 0xa6, 0xa9, 0xa6, 0xa9, 0xa9, 0xab, 0xab, 0xad, 0xad, 0xaf, 0xaf, 0xb1, 0xb1, 0xb3, 0xb1, 0xb3, 0xb5, 0xa9, 0x9d, 0x9d, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0x9d, 0xa1, 0xa1, 0xa1, 0xa1, 0x9d, 0xa3, 0x34, 0x33, 0x2b, 0xef, 0x22, 0xf0, 0x9a, 0xa1, 0xa1, 0xa2, 0x9f, 0xa3, 0xa0, 0xa0, 0x9e, 0x9e, 0x9e, 0x9e, 0x9e, 0x9e, 0xa5, 0x9e, 0xa5, 0x9e, 0xa5, 0x9e, 0xa5, 0xa5, 0xa5, 0xa5, 0xa5, 0xa5, 0xa5, 0xac, 0xb7, 0xb8, 0x21, 0x26, 0x26, 0x26, 0x2e, 0x26, 0x23, 0x21, 0x1e, 0x15, 0xe5, 0x5c, 0x64, 0x21, 0x28, 0x21, 0x21, 0x1f, 0x21, 0xfa, 0xf9, 0x3e, 0xf9, 0x3e, 0x3c, 0x34, 0x38, 0x36, 0x2f, 0x34, 0xcb, 0x9b, 0x93, 0x9a, 0x92, 0x28, 0x26, 0x23, 0x23, 0x23, 0x23, 0x23, 0x1f, 0x1f, 0x1f, 0x3c, 0xfc, 0x42, 0x43, 0x43, 0x43, 0x43, 0x43, 0xfc, 0xfc, 0x46, 0x46, 0x46, 0x3e, 0x30, 0x30, 0x33, 0x3a, 0x3a, 0x38, 0x3a,
0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xbf, 0xd0, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xd1, 0xc1, 0xc1, 0xc0, 0xc1, 0xc1, 0xc0, 0xc1, 0xc1, 0xc0, 0xc1, 0xc1, 0xc1, 0xc0, 0xc1, 0xc0, 0xc1, 0xbf, 0xba, 0xbb, 0xbd, 0xbd, 0xbb, 0xbd, 0xbd, 0xbd, 0xbd, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xba, 0xbb, 0xb9, 0xb2, 0xb6, 0xb2, 0x31, 0x31, 0x31, 0xf5, 0xf5, 0xf6, 0xf6, 0xf6, 0xf7, 0xf9, 0xf7, 0xf8, 0xf8, 0xdb, 0xa5, 0xa5, 0xac, 0xa8, 0xb1, 0xaf, 0xb1, 0xb3, 0xb5, 0xb3, 0xb3, 0xb1, 0xae, 0xb1, 0xad, 0xb1, 0xaf, 0xad, 0xad, 0xad, 0xad, 0xad, 0xab, 0xab, 0xad, 0xa9, 0xa9, 0xa9, 0xa6, 0xa7, 0xa8, 0xa9, 0xad, 0xab, 0xad, 0xad, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xad, 0xaf, 0xad, 0xad, 0xad, 0xad, 0xad, 0xad, 0xab, 0xa9, 0xa9, 0xa9, 0xa9, 0xa6, 0xa9, 0xa1, 0x9a, 0x9d, 0x9d, 0x9d, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa4, 0xa4, 0xa4, 0xa4, 0xa6, 0xab, 0xa9, 0xa6, 0xa9, 0xa6, 0xa6, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xad, 0xb1, 0xd7, 0xe4, 0xeb, 0xeb, 0xeb, 0xeb, 0xeb, 0xeb, 0xc7, 0xc9, 0xc9, 0x80, 0xc9, 0x80, 0x80, 0x88, 0x88, 0x8e, 0x8e, 0x9c, 0xa9, 0xad, 0xab, 0xab, 0xad, 0xad, 0xad, 0xad, 0xad, 0xad, 0xb1, 0xaf, 0xb1, 0xaf, 0xaf, 0xaf, 0xb1, 0xad, 0xa6, 0xa9, 0xa6, 0xa6, 0xa6, 0xa6, 0xa6, 0xa6, 0xa6, 0xa9, 0xa9, 0xa4, 0xa6, 0xa6, 0xa4, 0xa4, 0xa4, 0xa4, 0xab, 0x52, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4f, 0x4f, 0x4f, 0x89, 0x4f, 0x89, 0x89, 0x4f, 0x51, 0xad, 0xa9, 0xa9, 0xa7, 0xa9, 0xa9, 0xa7, 0xa9, 0xa9, 0xa9, 0xa7, 0xab, 0xa9, 0xa7, 0xb5, 0xb6, 0xb5, 0xb5, 0xb6, 0xb6, 0xb5, 0xb6, 0xb6, 0xb3, 0xaf, 0xaf, 0xaf, 0xaf, 0xad, 0xad, 0xad, 0xad, 0xab, 0xab, 0xab, 0xab, 0xad, 0xad, 0xab, 0xab, 0xab, 0xaa, 0xad, 0xad, 0xad, 0xad, 0xab, 0xad, 0xb6, 0xb9, 0xb7, 0xb6, 0xb9, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb7, 0xb6, 0xb6, 0xbf, 0xcd, 0x0d, 0x0d, 0x13, 0x13, 0x0d, 0x13, 0x0f, 0x14, 0x12, 0x15, 0x15, 0xee, 0xee, 0x84, 0x8a, 0x8f, 0x96, 0x9a, 0x9d, 0xa1, 0xa4, 0xa1, 0xa4, 0xa4, 0xa4, 0xa6, 0xa6, 0xa6, 0xa9, 0xab, 0xab, 0xab, 0xad, 0xad, 0xaf, 0xaf, 0xaf, 0xb1, 0xb3, 0xb1, 0xb3, 0xb5, 0xb6, 0xa9, 0x9a, 0xa1, 0xa1, 0xa1, 0xa1, 0x9d, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0x9d, 0xa1, 0x9d, 0x9f, 0x36, 0x33, 0x34, 0x24, 0x1b, 0x1b, 0x8e, 0x9d, 0xa1, 0xa1, 0xa2, 0x52, 0xa3, 0x9c, 0x9c, 0xa0, 0x9e, 0x9e, 0x9e, 0x9e, 0x9e, 0x9e, 0x9e, 0x9e, 0x9e, 0xa5, 0x9e, 0xa5, 0xa5, 0xa5, 0xa5, 0xa8, 0xa5, 0xac, 0xb6, 0xba, 0xfa, 0x23, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x2e, 0x26, 0x26, 0x1e, 0x10, 0x20, 0x21, 0x20, 0x21, 0x20, 0x1f, 0x28, 0x3e, 0xfa, 0x3c, 0xfa, 0x3c, 0x38, 0x38, 0x38, 0x34, 0x2f, 0xda, 0x97, 0x93, 0x93, 0x96, 0x97, 0x20, 0x26, 0x23, 0x1f, 0x23, 0x1f, 0x23, 0x23, 0x1f, 0x2f, 0x43, 0x43, 0x42, 0x43, 0x43, 0x43, 0x43, 0x43, 0x43, 0x43, 0x43, 0xfc, 0x43, 0x34, 0x2a, 0x33, 0x3a, 0x3a, 0x3a, 0x38,
0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xd1, 0xc1, 0xd1, 0xc1, 0xc1, 0xd1, 0xc1, 0xc1, 0xc1, 0xc0, 0xc1, 0xc0, 0xc1, 0xc0, 0xc0, 0xc0, 0xc1, 0xc0, 0xc1, 0xc0, 0xc1, 0xc1, 0xbf, 0xbb, 0xbb, 0xbd, 0xbe, 0xbb, 0xbd, 0xbd, 0xbb, 0xbb, 0xbb, 0xba, 0xbb, 0xbb, 0xba, 0xbb, 0xbb, 0xb8, 0xb2, 0xb2, 0xb6, 0xac, 0x2d, 0x31, 0xf5, 0xf5, 0xf5, 0xf5, 0xf6, 0xf9, 0xf7, 0xf8, 0xf8, 0xf8, 0xdb, 0xdb, 0xa5, 0xa5, 0xac, 0xa8, 0xae, 0xb1, 0xb3, 0xb1, 0xb5, 0xb3, 0xb3, 0xb1, 0xaf, 0xb1, 0xaf, 0xaf, 0xb1, 0xaf, 0xad, 0xad, 0xad, 0xad, 0xab, 0xab, 0xab, 0xa9, 0xa9, 0xa9, 0xa6, 0xa6, 0xa9, 0xab, 0xa9, 0xab, 0xaf, 0xaf, 0xaf, 0xad, 0xad, 0xad, 0xad, 0xad, 0xad, 0xad, 0xad, 0xad, 0xad, 0xad, 0xad, 0xab, 0xa6, 0xa9, 0xa9, 0xa6, 0xa9, 0x9a, 0x9a, 0x9a, 0x9d, 0x9d, 0x9d, 0xa1, 0x9d, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa4, 0xa9, 0xab, 0xa9, 0xa6, 0xa6, 0xa9, 0xa9, 0xa9, 0xa6, 0xa9, 0xa9, 0xa9, 0xa9, 0xa6, 0xab, 0xa9, 0xa9, 0xa9, 0xa9, 0xaf, 0xab, 0xeb, 0xe5, 0xeb, 0xeb, 0xeb, 0xeb, 0xeb, 0xc7, 0xc9, 0xd7, 0xc9, 0x80, 0x80, 0x80, 0x88, 0x88, 0x8e, 0x8e, 0x90, 0xa2, 0xad, 0xab, 0xad, 0xab, 0xaf, 0xad, 0xad, 0xad, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xb1, 0xab, 0xa4, 0xa6, 0xa6, 0xa6, 0xa6, 0xa6, 0xa6, 0xa4, 0xa6, 0xa6, 0xa6, 0xa6, 0xa4, 0xa4, 0xa4, 0xa4, 0xa4, 0xa1, 0xa9, 0x52, 0x4e, 0x4e, 0x4f, 0x4e, 0x4f, 0x4f, 0x4e, 0x4f, 0x4f, 0x4e, 0x4f, 0x89, 0x4f, 0x89, 0x4f, 0x89, 0x4f, 0x4f, 0x96, 0xaf, 0xa9, 0xa7, 0xa9, 0xa7, 0xa9, 0xa7, 0xa9, 0xa9, 0xa7, 0xa9, 0xa7, 0xab, 0xb5, 0xb6, 0xb5, 0xb6, 0xb5, 0xb5, 0xb5, 0xb6, 0xb6, 0xb6, 0xaf, 0xaf, 0xad, 0xad, 0xad, 0xad, 0xab, 0xab, 0xab, 0xab, 0xad, 0xab, 0xad, 0xab, 0xab, 0xab, 0xab, 0xab, 0xab, 0xaa, 0xab, 0xad, 0xaa, 0xab, 0xaf, 0xb9, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb9, 0xb7, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb7, 0xb6, 0xb7, 0xb6, 0xb6, 0xbe, 0xcd, 0x14, 0x0d, 0x13, 0x13, 0x13, 0x0f, 0x13, 0x12, 0x17, 0x15, 0x1b, 0xef, 0xd7, 0x88, 0x8d, 0x51, 0x96, 0x9a, 0x9d, 0xa1, 0xa4, 0xa4, 0xa4, 0xa4, 0xa4, 0xa4, 0xa9, 0xa6, 0xa9, 0xab, 0xab, 0xab, 0xad, 0xaf, 0xb1, 0xaf, 0xb1, 0xb1, 0xb3, 0xb3, 0xb3, 0xb5, 0xb6, 0xab, 0x9a, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0x9d, 0xa2, 0x32, 0x33, 0x33, 0x32, 0x25, 0x22, 0xf0, 0x99, 0x9a, 0x9d, 0xa1, 0xa1, 0x9b, 0x9f, 0x9c, 0x9c, 0x9c, 0x9c, 0x9e, 0x9c, 0x9e, 0xa0, 0x9e, 0xa0, 0x9e, 0xa0, 0xa5, 0xa0, 0xa5, 0xa5, 0xa8, 0xa5, 0xa5, 0xb2, 0xb7, 0xb6, 0xb9, 0x35, 0x23, 0x26, 0x23, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x2e, 0x2e, 0x2a, 0x28, 0x28, 0x21, 0x20, 0x21, 0x1f, 0x2f, 0xfa, 0x3e, 0xf9, 0x3c, 0x38, 0x36, 0x36, 0x34, 0x34, 0xf4, 0x99, 0x98, 0x93, 0x93, 0x96, 0x97, 0x24, 0x23, 0x23, 0x23, 0x1f, 0x23, 0x1f, 0x1f, 0x1f, 0x41, 0x43, 0x43, 0x43, 0x42, 0x43, 0x43, 0x43, 0x43, 0x43, 0x43, 0x42, 0x43, 0x40, 0x2a, 0x30, 0x38, 0x3a, 0x38, 0x3a,
0xc0, 0xbf, 0xc0, 0xc0, 0xbf, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc0, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xd1, 0xc1, 0xd1, 0xc1, 0xc1, 0xc0, 0xc1, 0xc0, 0xc1, 0xc0, 0xc1, 0xc0, 0xc1, 0xc0, 0xc1, 0xc0, 0xd0, 0xc0, 0xc1, 0xbe, 0xbb, 0xbd, 0xbb, 0xbd, 0xbb, 0xbd, 0xbd, 0xbb, 0xbb, 0xba, 0xbb, 0xba, 0xbb, 0xba, 0xbb, 0xba, 0xb2, 0xb2, 0xb2, 0xb6, 0xcd, 0x27, 0x31, 0x31, 0xf5, 0xf5, 0xf5, 0xf6, 0xf6, 0xf6, 0xf8, 0xf8, 0xdb, 0xdb, 0xdb, 0xac, 0xa5, 0xac, 0xae, 0xae, 0xb1, 0xb1, 0xb3, 0xb5, 0xb5, 0xb3, 0xb1, 0xb1, 0xb1, 0xb1, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xad, 0xaf, 0xab, 0xab, 0xab, 0xa9, 0xa9, 0xa6, 0xa9, 0xa9, 0xab, 0xad, 0xad, 0xaf, 0xaf, 0xad, 0xad, 0xad, 0xad, 0xad, 0xad, 0xad, 0xad, 0xab, 0xad, 0xad, 0xad, 0xad, 0xa9, 0xa6, 0xa6, 0xa9, 0xa4, 0x9a, 0x9a, 0x9a, 0x9d, 0x9a, 0x9d, 0x9d, 0x9d, 0x9d, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa9, 0xad, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xb1, 0xa3, 0xe6, 0xe7, 0xeb, 0xeb, 0xeb, 0xeb, 0xd6, 0xc9, 0xc9, 0xd7, 0x80, 0x80, 0x84, 0x84, 0x8a, 0x8e, 0x8e, 0x90, 0x90, 0xa6, 0xab, 0xad, 0xad, 0xad, 0xad, 0xad, 0xad, 0xad, 0xaf, 0xaf, 0xb1, 0xaf, 0xaf, 0xaf, 0xaf, 0xb1, 0xaf, 0xa9, 0xa4, 0xa6, 0xa4, 0xa6, 0xa6, 0xa6, 0xa6, 0xa6, 0xa6, 0xa6, 0xa6, 0xa4, 0xa4, 0xa4, 0xa4, 0xa1, 0xa4, 0xa4, 0xa9, 0x9a, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x89, 0x89, 0x89, 0x4e, 0x95, 0xaf, 0xab, 0xa9, 0xa9, 0xa7, 0xa9, 0xa7, 0xa9, 0xa9, 0xa9, 0xa9, 0xaa, 0xb5, 0xb6, 0xb5, 0xb5, 0xb5, 0xb6, 0xb5, 0xb5, 0xb5, 0xb6, 0xb5, 0xab, 0xad, 0xab, 0xad, 0xab, 0xab, 0xab, 0xab, 0xab, 0xa9, 0xab, 0xab, 0xa9, 0xad, 0xab, 0xab, 0xab, 0xad, 0xa9, 0xad, 0xab, 0xad, 0xab, 0xa7, 0xb3, 0xba, 0xb6, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb7, 0xb6, 0xb7, 0xb6, 0xb7, 0xb7, 0xb6, 0xbe, 0xdc, 0x0f, 0x0d, 0x13, 0x13, 0x0d, 0x14, 0x0f, 0x17, 0x12, 0x1b, 0x1b, 0xd7, 0x84, 0x8a, 0x51, 0x96, 0x9a, 0x9a, 0x9d, 0xa4, 0xa4, 0xa4, 0xa4, 0xa4, 0xa6, 0xa6, 0xa9, 0xa9, 0xa9, 0xab, 0xad, 0xad, 0xad, 0xb1, 0xaf, 0xb1, 0xb1, 0xb3, 0xb3, 0xb3, 0xb5, 0xb5, 0xb6, 0xa7, 0x9a, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa4, 0xa1, 0xa1, 0xa1, 0xa1, 0x32, 0x33, 0x34, 0x38, 0x2b, 0x1b, 0x22, 0xca, 0x9d, 0x9a, 0xa1, 0x9d, 0xa1, 0x52, 0x9f, 0x9f, 0x9c, 0xa0, 0xa0, 0x9c, 0xa0, 0x9e, 0xa0, 0xa0, 0x9e, 0xa0, 0x9e, 0xa0, 0xa5, 0xa0, 0xa5, 0xa8, 0xa5, 0xb2, 0xb9, 0xb6, 0xb7, 0xba, 0x21, 0x23, 0x26, 0x26, 0x23, 0x26, 0x23, 0x26, 0x26, 0x26, 0x26, 0x2a, 0x2f, 0x30, 0x28, 0x28, 0x20, 0x21, 0x1c, 0x32, 0xfa, 0xfa, 0x3c, 0x36, 0x38, 0x36, 0x36, 0x2f, 0xf4, 0x9b, 0x93, 0x9c, 0x93, 0x93, 0x96, 0x92, 0x24, 0x23, 0x1f, 0x23, 0x1f, 0x23, 0x1f, 0x1f, 0x34, 0xfc, 0x42, 0x43, 0x43, 0x43, 0x43, 0x43, 0x43, 0x43, 0x43, 0x43, 0x42, 0x44, 0x34, 0x26, 0x33, 0x3a, 0x3a, 0x38,
0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc1, 0xc0, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc0, 0xc1, 0xc0, 0xc1, 0xc0, 0xc1, 0xc0, 0xc1, 0xc0, 0xc1, 0xc1, 0xc0, 0xd0, 0xc1, 0xbe, 0xba, 0xbb, 0xbb, 0xbd, 0xbd, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xba, 0xbb, 0xb9, 0xb2, 0xb2, 0xb2, 0xb2, 0xb5, 0xf8, 0x2d, 0x31, 0x31, 0x31, 0xf5, 0xf5, 0xf6, 0xf6, 0xf9, 0xf7, 0xf8, 0xf8, 0xa5, 0xdb, 0xac, 0xa8, 0xac, 0xaa, 0xae, 0xb1, 0xb1, 0xb3, 0xb5, 0xb5, 0xb3, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xaf, 0xb1, 0xaf, 0xb1, 0xad, 0xaf, 0xad, 0xad, 0xad, 0xab, 0xa9, 0xa9, 0xa6, 0xab, 0xab, 0xad, 0xaf, 0xad, 0xad, 0xab, 0xab, 0xad, 0xab, 0xad, 0xab, 0xad, 0xad, 0xab, 0xad, 0xab, 0xad, 0xab, 0xa9, 0xa4, 0xa9, 0xa1, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x9d, 0x9d, 0x9d, 0x9d, 0x9d, 0x9d, 0xa1, 0x9d, 0x9d, 0xa1, 0xab, 0xab, 0xa9, 0xa9, 0xa9, 0xa9, 0xa6, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xab, 0xa9, 0xa9, 0xa9, 0xab, 0xa9, 0xa9, 0xb1, 0x98, 0xe4, 0xea, 0xeb, 0xeb, 0xeb, 0xc8, 0xd7, 0xc9, 0xd7, 0x80, 0x80, 0x80, 0x88, 0x88, 0x8a, 0x8e, 0x8e, 0x90, 0x9b, 0xa9, 0xad, 0xab, 0xad, 0xaf, 0xad, 0xad, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xb1, 0xaf, 0xa6, 0xa4, 0xa6, 0xa6, 0xa6, 0xa4, 0xa6, 0xa6, 0xa6, 0xa6, 0xa4, 0xa4, 0xa4, 0xa4, 0xa4, 0xa4, 0xa1, 0xa4, 0xa1, 0xa9, 0x9a, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4f, 0x89, 0x4f, 0x89, 0x4f, 0x89, 0x4f, 0x89, 0x4f, 0x4f, 0x99, 0xaf, 0xab, 0xa7, 0xa9, 0xa9, 0xab, 0xab, 0xa7, 0xab, 0xa9, 0xad, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb6, 0xaf, 0xab, 0xab, 0xab, 0xa9, 0xab, 0xa9, 0xab, 0xa9, 0xab, 0xa9, 0xab, 0xab, 0xa9, 0xab, 0xa7, 0xab, 0xab, 0xad, 0xab, 0xab, 0xad, 0xab, 0xab, 0xad, 0xb6, 0xb9, 0xb7, 0xb6, 0xb6, 0xb7, 0xb7, 0xb7, 0xb7, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb7, 0xb6, 0xb6, 0xb7, 0xb5, 0xbe, 0xce, 0x14, 0x0b, 0x13, 0x13, 0x13, 0x14, 0x12, 0x17, 0x1a, 0x1b, 0xef, 0xd7, 0x88, 0x8d, 0x51, 0x96, 0x9a, 0x9a, 0xa1, 0xa6, 0xa4, 0xa4, 0xa4, 0xa4, 0xa4, 0xa6, 0xa9, 0xa9, 0xab, 0xad, 0xad, 0xaf, 0xaf, 0xaf, 0xb1, 0xb1, 0xb3, 0xb3, 0xb3, 0xb3, 0xb5, 0xb6, 0xb6, 0xab, 0x9a, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa4, 0x35, 0x33, 0x34, 0x34, 0x34, 0x29, 0x1b, 0x27, 0x97, 0x9a, 0x9d, 0x9d, 0xa1, 0xa1, 0x52, 0x9f, 0x9b, 0x9c, 0x9c, 0x9c, 0xa0, 0x9c, 0xa0, 0xa0, 0xa0, 0xa0, 0xa5, 0xa0, 0xa0, 0xa5, 0xa8, 0xa5, 0xa8, 0xb4, 0xb7, 0xb6, 0xb6, 0xb9, 0xdc, 0x23, 0x23, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x2f, 0x2f, 0x30, 0x2f, 0x2f, 0x28, 0x21, 0x1f, 0x36, 0xfb, 0x3c, 0x38, 0x36, 0x36, 0x36, 0x34, 0xf4, 0x9b, 0x93, 0x93, 0x93, 0x97, 0x93, 0x96, 0x97, 0x24, 0x23, 0x23, 0x1f, 0x1f, 0x1f, 0x1f, 0x23, 0x3c, 0xfc, 0x42, 0x43, 0x42, 0x43, 0x43, 0x43, 0x43, 0x43, 0x42, 0x42, 0x47, 0x39, 0x2a, 0x30, 0x38, 0x3a, 0x3a,
0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xbf, 0xc0, 0xc1, 0xc0, 0xc1, 0xc0, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xd1, 0xc1, 0xc0, 0xc0, 0xc0, 0xc0, 0xc1, 0xc0, 0xc1, 0xc0, 0xc1, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc1, 0xbb, 0xba, 0xbd, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xba, 0xba, 0xbb, 0xbb, 0xb9, 0xb2, 0xb2, 0xb0, 0xb2, 0xb2, 0xb6, 0xf7, 0x2d, 0x31, 0xf5, 0x31, 0xf5, 0xf5, 0xf5, 0xf6, 0xf6, 0xf7, 0xf8, 0xf8, 0xdb, 0xa5, 0xac, 0xac, 0xae, 0xae, 0xb1, 0xb1, 0xb1, 0xb3, 0xb6, 0xb5, 0xb3, 0xb3, 0xb3, 0xb1, 0xb1, 0xb1, 0xb3, 0xb1, 0xb1, 0xb3, 0xaf, 0xb1, 0xaf, 0xb1, 0xad, 0xad, 0xad, 0xab, 0xa9, 0xa6, 0xab, 0xaf, 0xaf, 0xad, 0xad, 0xad, 0xab, 0xad, 0xab, 0xad, 0xab, 0xab, 0xab, 0xad, 0xab, 0xad, 0xad, 0xaf, 0xab, 0xa4, 0xa9, 0x9d, 0x96, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x9d, 0x9a, 0x9d, 0x9d, 0x9d, 0x9d, 0x9d, 0x9d, 0x9d, 0xa1, 0xa1, 0xab, 0xab, 0xa9, 0xa9, 0xa9, 0xab, 0xa9, 0xa6, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xab, 0xa9, 0xa9, 0xa9, 0xab, 0xb1, 0x84, 0xe5, 0xeb, 0xea, 0xd6, 0xd6, 0xc9, 0xd7, 0xc9, 0x80, 0x80, 0x84, 0x88, 0x88, 0x8e, 0x8e, 0x90, 0x90, 0x93, 0x9d, 0xab, 0xad, 0xab, 0xad, 0xad, 0xad, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xb1, 0xad, 0xa4, 0xa4, 0xa6, 0xa6, 0xa4, 0xa6, 0xa6, 0xa9, 0xa4, 0xa4, 0xa4, 0xa4, 0xa4, 0xa4, 0xa1, 0xa4, 0xa1, 0xa1, 0xa1, 0xa7, 0x96, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x89, 0x4f, 0x89, 0x89, 0x89, 0x4f, 0x4f, 0x9d, 0xaf, 0xad, 0xa9, 0xab, 0xab, 0xa7, 0xa9, 0xa7, 0xa9, 0xaa, 0xb6, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xad, 0xa9, 0xab, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xab, 0xa9, 0xab, 0xa9, 0xab, 0xab, 0xad, 0xa9, 0xab, 0xab, 0xab, 0xab, 0xab, 0xab, 0xa7, 0xb1, 0xb9, 0xb7, 0xb6, 0xb7, 0xb6, 0xb6, 0xb7, 0xb6, 0xb6, 0xb6, 0xb6, 0xb5, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb7, 0xb7, 0xb6, 0xb7, 0xb6, 0xbd, 0xce, 0x17, 0x0d, 0x13, 0x13, 0x13, 0x14, 0x17, 0x15, 0x1a, 0xee, 0xf0, 0x84, 0x8a, 0x8f, 0x96, 0x9a, 0x9a, 0x9a, 0xa1, 0xa4, 0xa4, 0xa4, 0xa4, 0xa6, 0xa6, 0xa6, 0xa9, 0xab, 0xab, 0xad, 0xaf, 0xaf, 0xb1, 0xb1, 0xb3, 0xb1, 0xb3, 0xb5, 0xb5, 0xb5, 0xb3, 0xb5, 0xb7, 0xa9, 0x9d, 0xa1, 0xa4, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0x9d, 0x35, 0x30, 0x34, 0x34, 0x34, 0x32, 0x22, 0x25, 0xd8, 0x99, 0x9a, 0x9d, 0xa1, 0x9d, 0xa1, 0x52, 0x9f, 0x9b, 0x9f, 0x9c, 0x9c, 0xa0, 0x9c, 0xa0, 0xa0, 0xa0, 0xa0, 0xa0, 0xa8, 0xa5, 0xa8, 0xa8, 0xa8, 0xb6, 0xb6, 0xb6, 0xb7, 0xb6, 0xba, 0x37, 0x23, 0x26, 0x26, 0x23, 0x26, 0x26, 0x23, 0x26, 0x23, 0x26, 0x2f, 0x2a, 0x2f, 0x30, 0x2f, 0x30, 0x28, 0x28, 0x1f, 0x37, 0x3e, 0x3a, 0x36, 0x39, 0x36, 0x32, 0xf5, 0x9b, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x96, 0x97, 0x24, 0x23, 0x1f, 0x23, 0x23, 0x1f, 0x1f, 0x36, 0x43, 0x43, 0x42, 0x43, 0x43, 0x43, 0x43, 0x43, 0x43, 0x42, 0x42, 0x42, 0x42, 0x2f, 0x2a, 0x30, 0x30, 0x33,
0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc1, 0xc0, 0xc1, 0xc1, 0xc1, 0xc1, 0xc0, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc0, 0xc1, 0xc0, 0xc0, 0xc1, 0xc0, 0xc1, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xbd, 0xba, 0xbd, 0xbb, 0xbb, 0xbb, 0xbb, 0xba, 0xbb, 0xba, 0xba, 0xbb, 0xba, 0xbb, 0xb2, 0xb2, 0xb2, 0xb2, 0xb2, 0xb3, 0xb5, 0xf6, 0x2d, 0x31, 0x31, 0x31, 0xf5, 0xf5, 0xf5, 0xf6, 0xf6, 0xf7, 0xf8, 0xf8, 0xdb, 0xdb, 0xac, 0xa8, 0xae, 0xae, 0xb3, 0xb3, 0xb3, 0xb5, 0xb6, 0xb5, 0xb6, 0xb5, 0xb5, 0xb5, 0xb6, 0xb5, 0xb5, 0xb5, 0xb5, 0xb3, 0xb5, 0xb5, 0xb5, 0xb5, 0xb3, 0xb5, 0xb3, 0xb3, 0xaf, 0xab, 0xab, 0xab, 0xab, 0xad, 0xaf, 0xad, 0xaf, 0xad, 0xaf, 0xaf, 0xaf, 0xad, 0xad, 0xad, 0xad, 0xab, 0xad, 0xab, 0xab, 0xa4, 0x9d, 0x91, 0x9a, 0x96, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x9d, 0x9d, 0x9a, 0x9a, 0xa1, 0xad, 0xa9, 0xab, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xab, 0xb1, 0xc8, 0xe5, 0xeb, 0xd6, 0xc9, 0xd7, 0xd6, 0x80, 0xd7, 0x80, 0x84, 0x88, 0x88, 0x88, 0x8e, 0x8e, 0x90, 0x90, 0x9b, 0xa4, 0xad, 0xad, 0xab, 0xad, 0xad, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xb1, 0xab, 0xa4, 0xa6, 0xa4, 0xa6, 0xa4, 0xa6, 0xa6, 0xa6, 0xa4, 0xa4, 0xa1, 0xa4, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa9, 0x96, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x89, 0x4f, 0x89, 0x4f, 0x4f, 0x4f, 0x4f, 0x89, 0x89, 0x4f, 0x4f, 0x52, 0xb3, 0xad, 0xa7, 0xa9, 0xab, 0xab, 0xab, 0xa9, 0xaf, 0xb6, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb3, 0xa9, 0xa9, 0xab, 0xa9, 0xa9, 0xa6, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xab, 0xa9, 0xa9, 0xab, 0xa9, 0xad, 0xa9, 0xab, 0xa7, 0xab, 0xab, 0xa7, 0xb6, 0xb7, 0xb7, 0xb6, 0xb7, 0xb6, 0xb7, 0xb6, 0xb6, 0xb5, 0xb5, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb7, 0xb6, 0xb5, 0xb7, 0xb6, 0xb7, 0xb6, 0xbe, 0xb8, 0x14, 0x0d, 0x13, 0x13, 0x14, 0x14, 0x17, 0x1a, 0x1b, 0xef, 0xd8, 0x88, 0x8d, 0x95, 0x96, 0x9a, 0x9a, 0x9a, 0xa1, 0xa6, 0xa4, 0xa4, 0xa6, 0xa6, 0xa9, 0xa9, 0xab, 0xab, 0xad, 0xaf, 0xaf, 0xb1, 0xb1, 0xb1, 0xb3, 0xb5, 0xb3, 0xb5, 0xb5, 0xb5, 0xb5, 0xb6, 0xb7, 0xab, 0x9a, 0xa1, 0xa1, 0xa4, 0xa1, 0xa4, 0xa1, 0xa4, 0xa1, 0xa4, 0x35, 0x33, 0x34, 0x34, 0x34, 0x38, 0x29, 0x1a, 0x27, 0x8e, 0x95, 0x9a, 0x9a, 0xa1, 0xa1, 0xa1, 0x52, 0x9f, 0x9f, 0x9c, 0x9f, 0x9c, 0xa0, 0x9c, 0xa0, 0xa0, 0xa0, 0xa0, 0xa0, 0xa8, 0xa8, 0xa5, 0xa8, 0xb6, 0xb7, 0xb7, 0xb6, 0xb7, 0xb6, 0xbd, 0x28, 0x23, 0x26, 0x26, 0x26, 0x23, 0x26, 0x26, 0x26, 0x23, 0x2f, 0x2f, 0x2f, 0x2a, 0x2f, 0x2f, 0x30, 0x2f, 0x2a, 0x2a, 0x35, 0x3b, 0x36, 0x36, 0x39, 0x34, 0xf5, 0x9b, 0x93, 0x9c, 0x93, 0x93, 0x92, 0x97, 0x97, 0x96, 0x95, 0x24, 0x23, 0x1f, 0x1f, 0x1f, 0x1f, 0x2a, 0x41, 0x43, 0x43, 0x42, 0x43, 0x42, 0x43, 0x43, 0x43, 0x42, 0x42, 0x42, 0x45, 0x39, 0x30, 0x2a, 0x26, 0x26,
0xbf, 0xc0, 0xbf, 0xc0, 0xbf, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc1, 0xc1, 0xc1, 0xc0, 0xc1, 0xc1, 0xc1, 0xc0, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xd1, 0xc0, 0xc0, 0xc0, 0xc1, 0xc0, 0xc0, 0xc0, 0xc1, 0xc0, 0xc1, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xbd, 0xba, 0xbb, 0xbd, 0xbb, 0xbb, 0xbb, 0xba, 0xbb, 0xbb, 0xba, 0xba, 0xbb, 0xb4, 0xae, 0xb2, 0xb2, 0xae, 0xb2, 0xb3, 0xb2, 0xf5, 0x2d, 0x31, 0x31, 0x31, 0xf5, 0xf5, 0xf5, 0xf9, 0xf6, 0xf7, 0xf8, 0xf8, 0xa5, 0xdb, 0xa8, 0xac, 0xae, 0xae, 0xb1, 0xb3, 0xb3, 0xb5, 0xb6, 0xb5, 0xb6, 0xb6, 0xb5, 0xb6, 0xb6, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb3, 0xb3, 0xb3, 0xaf, 0xa6, 0x96, 0x96, 0x9a, 0x9a, 0x9d, 0x9d, 0x9d, 0xa1, 0xa1, 0xa4, 0xa4, 0xa6, 0xa9, 0xa9, 0xa9, 0xad, 0xab, 0xad, 0xaf, 0xab, 0x96, 0x96, 0x96, 0x9a, 0x96, 0x9a, 0x96, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x9d, 0x9a, 0x9a, 0xa6, 0xab, 0xa9, 0xa9, 0xa9, 0xa9, 0xab, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa7, 0xa9, 0xa9, 0xaf, 0xa3, 0xeb, 0xe7, 0xd6, 0xd7, 0xc9, 0xd7, 0xd7, 0x80, 0x80, 0x84, 0x84, 0x88, 0x8e, 0x8e, 0x8e, 0x90, 0x90, 0x93, 0x9d, 0xa4, 0xad, 0xad, 0xad, 0xaf, 0xaf, 0xb1, 0xad, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xad, 0xaf, 0xad, 0xaf, 0xaf, 0xa9, 0xa1, 0xa6, 0xa4, 0xa6, 0xa6, 0xa6, 0xa6, 0xa4, 0xa4, 0xa4, 0xa1, 0xa1, 0xa4, 0x9d, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa6, 0x51, 0x4e, 0x4e, 0x4f, 0x4f, 0x4e, 0x4f, 0x4f, 0x89, 0x4f, 0x89, 0x4f, 0x89, 0x89, 0x89, 0x4f, 0x89, 0x4f, 0x4f, 0xa2, 0xb1, 0xab, 0xab, 0xa9, 0xad, 0xab, 0xa7, 0xaf, 0xb6, 0xb5, 0xb3, 0xb5, 0xb3, 0xb5, 0xb5, 0xb5, 0xb3, 0xb5, 0xb3, 0xb3, 0xb5, 0xaf, 0xa9, 0xa6, 0xa9, 0xa6, 0xa9, 0xa9, 0xa6, 0xa9, 0xa9, 0xa6, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xab, 0xa9, 0xab, 0xab, 0xa9, 0xa9, 0xad, 0xb7, 0xb7, 0xb6, 0xb6, 0xb6, 0xb7, 0xb6, 0xb5, 0xb5, 0xb6, 0xb5, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb7, 0xb6, 0xb6, 0xb6, 0xb7, 0xb6, 0xbd, 0xce, 0x1a, 0x0d, 0x13, 0x16, 0x14, 0x17, 0x1a, 0x1b, 0xef, 0xf0, 0xd8, 0x8a, 0x92, 0x96, 0x96, 0x9a, 0x9d, 0x9a, 0xa4, 0xa4, 0xa4, 0xa6, 0xa6, 0xa9, 0xa9, 0xa9, 0xab, 0xaf, 0xad, 0xb1, 0xb1, 0xb1, 0xb3, 0xb3, 0xb3, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb6, 0xb7, 0xaa, 0x9d, 0xa1, 0xa4, 0xa1, 0xa1, 0xa4, 0xa1, 0xa1, 0xa1, 0x37, 0x30, 0x34, 0x34, 0x34, 0x34, 0x34, 0x25, 0x25, 0xf1, 0x90, 0x97, 0x9a, 0x9d, 0x9d, 0xa1, 0xa1, 0x52, 0x9f, 0x9b, 0x9f, 0x9c, 0x9f, 0x9f, 0xa0, 0xa3, 0xa0, 0xa3, 0xa8, 0xa0, 0xa8, 0xa0, 0xae, 0xb7, 0xb7, 0xb6, 0xb6, 0xb6, 0xb7, 0xb7, 0xce, 0x23, 0x23, 0x26, 0x26, 0x26, 0x26, 0x26, 0x23, 0x26, 0x2a, 0x2f, 0x2a, 0x2f, 0x30, 0x2f, 0x2f, 0x2f, 0x2f, 0x30, 0x2f, 0x36, 0x39, 0x39, 0x36, 0x32, 0x31, 0x9b, 0x98, 0x93, 0x93, 0x93, 0x97, 0x93, 0x92, 0x93, 0x96, 0x95, 0x24, 0x23, 0x1f, 0x23, 0x1f, 0x23, 0x36, 0x43, 0x43, 0x43, 0x43, 0x43, 0x43, 0x43, 0x42, 0x42, 0x42, 0x42, 0x42, 0x42, 0x2f, 0x30, 0x26, 0x26,
0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc1, 0xc1, 0xc0, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc0, 0xc0, 0xc1, 0xc0, 0xc1, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc1, 0xc0, 0xc0, 0xbd, 0xba, 0xbd, 0xbb, 0xbb, 0xbb, 0xba, 0xba, 0xbb, 0xbb, 0xba, 0xbb, 0xb2, 0xb2, 0xae, 0xb2, 0xb2, 0xae, 0xb2, 0xb3, 0xb2, 0xf2, 0x31, 0x31, 0xf5, 0x31, 0xf5, 0xf5, 0xf5, 0xf6, 0xf6, 0xf7, 0xf8, 0xf8, 0xa5, 0xdb, 0xa8, 0xa8, 0xae, 0xaf, 0xb1, 0xb3, 0xb5, 0xb5, 0xb5, 0xb3, 0xb1, 0xb5, 0xb3, 0xb3, 0xb3, 0xb3, 0xb1, 0xb3, 0xb1, 0xb1, 0xaf, 0xb1, 0xad, 0xad, 0xab, 0xa6, 0xa6, 0x9d, 0x96, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x96, 0x91, 0x96, 0x96, 0x9a, 0x95, 0x9a, 0xa1, 0xa1, 0x9a, 0x96, 0x9a, 0x96, 0x9a, 0x96, 0x9a, 0x96, 0x9a, 0x96, 0x9a, 0x96, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x95, 0xab, 0xab, 0xab, 0xa9, 0xad, 0xa9, 0xab, 0xa9, 0xab, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xb1, 0x9c, 0xe7, 0xeb, 0xd6, 0xd6, 0xd6, 0x80, 0xd7, 0x84, 0x84, 0x84, 0xca, 0x88, 0x8e, 0x90, 0x8e, 0x90, 0x90, 0x9b, 0xa1, 0xa9, 0xaf, 0xad, 0xad, 0xaf, 0xad, 0xaf, 0xaf, 0xaf, 0xaf, 0xad, 0xad, 0xaf, 0xaf, 0xaf, 0xab, 0xb1, 0xaf, 0xa4, 0xa4, 0xa4, 0xa4, 0xa6, 0xa6, 0xa6, 0xa4, 0xa4, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xab, 0x50, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x89, 0x89, 0x4f, 0x89, 0x89, 0x89, 0x89, 0x4f, 0x4f, 0xa2, 0xb3, 0xad, 0xa9, 0xab, 0xa9, 0xa9, 0xb1, 0xb6, 0xb3, 0xb5, 0xb5, 0xb5, 0xb3, 0xb3, 0xb3, 0xb3, 0xb3, 0xb3, 0xb1, 0xb3, 0xb3, 0xab, 0xa6, 0xa9, 0xa9, 0xa9, 0xa6, 0xa6, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xab, 0xa9, 0xab, 0xa9, 0xa9, 0xa6, 0xb1, 0xb7, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb5, 0xb6, 0xb5, 0xb6, 0xb5, 0xb6, 0xb6, 0xb6, 0xb7, 0xb6, 0xb7, 0xb6, 0xb9, 0xb6, 0xb7, 0xb6, 0xb6, 0xbe, 0xb8, 0x17, 0x0d, 0x13, 0x18, 0x14, 0x17, 0x1a, 0x1b, 0xee, 0xf0, 0x88, 0x8d, 0x95, 0x96, 0x9a, 0x9a, 0x9d, 0x9d, 0xa1, 0xa6, 0xa4, 0xa6, 0xa6, 0xa6, 0xa9, 0xab, 0xad, 0xaf, 0xaf, 0xb1, 0xb1, 0xb1, 0xb3, 0xb5, 0xb3, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb6, 0xb9, 0xa9, 0x9d, 0x9d, 0xa4, 0xa1, 0xa4, 0xa1, 0xa1, 0xa1, 0x37, 0x33, 0x34, 0x34, 0x34, 0x36, 0x34, 0x32, 0x1a, 0x27, 0xca, 0x8e, 0x99, 0x9a, 0x9d, 0x9d, 0xa1, 0xa1, 0xa1, 0xa2, 0x9f, 0x9f, 0x9f, 0x9c, 0xa3, 0x9c, 0xa3, 0xa0, 0xa3, 0xa8, 0xa0, 0xa8, 0xae, 0xb7, 0xb6, 0xb7, 0xb6, 0xb7, 0xb7, 0xb6, 0xb9, 0x3e, 0x23, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x2a, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x30, 0x2f, 0x2f, 0x30, 0x2f, 0x2f, 0x36, 0x39, 0x35, 0x36, 0x31, 0x97, 0x9c, 0x93, 0x9c, 0x93, 0x93, 0x97, 0x93, 0x97, 0x92, 0x96, 0x95, 0x24, 0x23, 0x1f, 0x1f, 0x21, 0x2a, 0x41, 0x43, 0x43, 0x42, 0x43, 0x43, 0x43, 0x42, 0x41, 0x42, 0x42, 0x42, 0x45, 0x39, 0x26, 0x26, 0x26,
0xbf, 0xc0, 0xc0, 0xc0, 0xc0, 0xbf, 0xc0, 0xc0, 0xc0, 0xbf, 0xc0, 0xc0, 0xc1, 0xc0, 0xc0, 0xc0, 0xc1, 0xc0, 0xc1, 0xc0, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xd1, 0xc1, 0xc0, 0xc1, 0xc0, 0xc1, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xbf, 0xbf, 0xc0, 0xbf, 0xbd, 0xba, 0xbb, 0xbb, 0xbb, 0xba, 0xbb, 0xbb, 0xba, 0xba, 0xbb, 0xb4, 0xae, 0xb2, 0xae, 0xb2, 0xae, 0xae, 0xae, 0xb3, 0xac, 0x2d, 0xf2, 0x31, 0x31, 0x31, 0xf5, 0xf5, 0xf5, 0xf6, 0xf6, 0xf7, 0xf8, 0xdb, 0xdb, 0xa5, 0xac, 0xa8, 0xae, 0xaf, 0xb3, 0xb3, 0xb5, 0xb1, 0xb3, 0xb3, 0xb1, 0xb1, 0xb1, 0xb1, 0xaf, 0xaf, 0xb1, 0xad, 0xaf, 0xad, 0xab, 0xa9, 0xa9, 0xa6, 0xa6, 0xa4, 0x9d, 0x96, 0x96, 0x96, 0x91, 0x96, 0x96, 0x96, 0x91, 0x96, 0x91, 0x96, 0x91, 0x96, 0x91, 0x91, 0x91, 0x91, 0x96, 0x91, 0x9a, 0x96, 0x96, 0x96, 0x96, 0x96, 0x9a, 0x96, 0x9a, 0x9a, 0x96, 0x9a, 0x9a, 0x9a, 0x96, 0x9a, 0x96, 0x9a, 0x9a, 0x9a, 0x9a, 0x96, 0xa9, 0xb6, 0xad, 0xaf, 0xaf, 0xaf, 0xaf, 0xad, 0xaf, 0xaf, 0xaf, 0xaf, 0xad, 0xad, 0xaf, 0xaf, 0xad, 0xaf, 0xad, 0xad, 0xb1, 0x98, 0xf1, 0xd8, 0xd7, 0xd7, 0xc9, 0xd7, 0xc9, 0x84, 0x84, 0x88, 0xca, 0x8e, 0x8e, 0x90, 0x90, 0x90, 0x93, 0x52, 0xa1, 0xad, 0xaf, 0xad, 0xaf, 0xad, 0xad, 0xad, 0xaf, 0xad, 0xaf, 0xaf, 0xad, 0xad, 0xad, 0xad, 0xad, 0xaf, 0xad, 0xa4, 0xa1, 0xa4, 0xa4, 0xa6, 0xa6, 0xa4, 0xa4, 0xa4, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0x9d, 0xa1, 0xa7, 0x50, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x89, 0x4f, 0x89, 0x4f, 0x89, 0x89, 0x4f, 0x89, 0x4f, 0x89, 0x89, 0x4f, 0x89, 0xa6, 0xb3, 0xab, 0xab, 0xab, 0xab, 0xaf, 0xb6, 0xb5, 0xb5, 0xb3, 0xb5, 0xb3, 0xb3, 0xb3, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa6, 0xa9, 0xa6, 0xa9, 0xa9, 0xa9, 0xa9, 0xa6, 0xa6, 0xa9, 0xa6, 0xa9, 0xa9, 0xab, 0xa9, 0xa9, 0xab, 0xa6, 0xa9, 0xb6, 0xb7, 0xb5, 0xb7, 0xb6, 0xb6, 0xb5, 0xb5, 0xb5, 0xb6, 0xb5, 0xb6, 0xb5, 0xb6, 0xb5, 0xb7, 0xb6, 0xb6, 0xb6, 0xb7, 0xb7, 0xb6, 0xb7, 0xb7, 0xbd, 0xb8, 0x1a, 0x0d, 0x13, 0x18, 0x17, 0x1a, 0x1a, 0xef, 0xf0, 0xd7, 0xca, 0x8f, 0x95, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0xa4, 0xa6, 0xa6, 0xa6, 0xa6, 0xa9, 0xab, 0xad, 0xad, 0xb1, 0xb1, 0xb1, 0xb3, 0xb3, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb6, 0xb6, 0xb5, 0xb5, 0xb7, 0xb7, 0xab, 0x9d, 0xa1, 0xa1, 0xa1, 0xa4, 0xa1, 0xa1, 0x37, 0x30, 0x36, 0x34, 0x34, 0x34, 0x36, 0x34, 0x29, 0x25, 0xf0, 0xca, 0x8e, 0x97, 0x9a, 0x9d, 0xa1, 0xa1, 0xa1, 0xa1, 0xa2, 0x9f, 0x9f, 0x9f, 0xa3, 0xa3, 0xa3, 0xa3, 0xa8, 0xa3, 0xa8, 0xa3, 0xb2, 0xb7, 0xb6, 0xb6, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xba, 0x32, 0x1f, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x2a, 0x2f, 0x2f, 0x2a, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x32, 0x39, 0x32, 0x37, 0x9c, 0x93, 0x93, 0x93, 0x93, 0x97, 0x93, 0x97, 0x97, 0x97, 0x93, 0x96, 0x9a, 0x22, 0x23, 0x1f, 0x23, 0x2a, 0x32, 0x43, 0x42, 0x43, 0x42, 0x43, 0x43, 0x42, 0x42, 0x42, 0x42, 0x42, 0x42, 0x41, 0x2a, 0x30, 0x26,
0xc0, 0xbf, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc1, 0xc0, 0xc1, 0xc0, 0xc1, 0xc1, 0xc0, 0xc1, 0xc0, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xd1, 0xd1, 0xc0, 0xc1, 0xc0, 0xc1, 0xc1, 0xc0, 0xc1, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xbf, 0xc1, 0xbf, 0xba, 0xba, 0xbb, 0xbb, 0xbb, 0xbb, 0xba, 0xbb, 0xbb, 0xba, 0xb4, 0xae, 0xae, 0xb2, 0xae, 0xb2, 0xae, 0xae, 0xae, 0xb5, 0xa5, 0x2d, 0x31, 0xf5, 0x31, 0xf5, 0x31, 0xf5, 0xf5, 0xf6, 0xf7, 0xf7, 0xf8, 0xdb, 0xdb, 0xa5, 0xac, 0xa8, 0xae, 0xb1, 0xb3, 0xb3, 0xb3, 0xb1, 0xb1, 0xb1, 0xaf, 0xaf, 0xaf, 0xad, 0xad, 0xad, 0xad, 0xa9, 0xa9, 0xa9, 0xa9, 0xa6, 0xa6, 0xa4, 0xa1, 0x9d, 0x96, 0x9a, 0x96, 0x96, 0x91, 0x96, 0x91, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x9a, 0x9a, 0x9a, 0x96, 0x9a, 0x96, 0x9a, 0x96, 0x9a, 0x96, 0x96, 0x96, 0x9a, 0x96, 0x9a, 0x96, 0x9a, 0x96, 0x9a, 0x96, 0x9a, 0x96, 0x96, 0xa4, 0xb5, 0xb6, 0xb1, 0xaf, 0xb1, 0xaf, 0xb1, 0xaf, 0xaf, 0xb1, 0xaf, 0xb1, 0xaf, 0xb1, 0xaf, 0xb1, 0xaf, 0xb1, 0xb1, 0xb3, 0xb7, 0xac, 0xcc, 0x9e, 0x94, 0x94, 0xca, 0xca, 0xca, 0x88, 0x88, 0x88, 0x88, 0x88, 0x8e, 0x8e, 0x90, 0x90, 0x9b, 0x9d, 0xa4, 0xad, 0xaf, 0xaf, 0xad, 0xaf, 0xaf, 0xad, 0xad, 0xad, 0xad, 0xad, 0xad, 0xad, 0xad, 0xad, 0xad, 0xaf, 0xab, 0xa1, 0xa4, 0xa4, 0xa6, 0xa6, 0xa4, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa7, 0x50, 0x4e, 0x4f, 0x4f, 0x89, 0x4f, 0x4f, 0x89, 0x4f, 0x89, 0x4f, 0x89, 0x89, 0x89, 0x89, 0x89, 0x89, 0x4f, 0x89, 0xa6, 0xb3, 0xab, 0xab, 0xab, 0xb3, 0xb5, 0xb5, 0xb3, 0xb3, 0xb3, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xaf, 0xaf, 0xaf, 0xaf, 0xb1, 0xaf, 0xa6, 0xab, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa6, 0xa9, 0xa9, 0xa6, 0xa9, 0xa6, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa6, 0xa9, 0xa6, 0xa9, 0xa6, 0xaf, 0xb7, 0xb6, 0xb6, 0xb6, 0xb5, 0xb5, 0xb5, 0xb6, 0xb5, 0xb6, 0xb5, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb6, 0xbe, 0xba, 0x1d, 0x0d, 0x18, 0x18, 0x17, 0x1a, 0x1b, 0xef, 0xf0, 0xd8, 0x8a, 0x95, 0x96, 0x9a, 0x9a, 0x9d, 0x9d, 0x9a, 0xa4, 0xa6, 0xa6, 0xa6, 0xa9, 0xab, 0xad, 0xaf, 0xaf, 0xb1, 0xb3, 0xb3, 0xb3, 0xb3, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb6, 0xb5, 0xb6, 0xb6, 0xb7, 0xad, 0x9d, 0xa1, 0xa4, 0xa1, 0xa4, 0x9d, 0x37, 0x33, 0x36, 0x34, 0x36, 0x34, 0x32, 0x38, 0x32, 0x22, 0x25, 0xf1, 0xd8, 0x90, 0x97, 0x9a, 0x9d, 0xa1, 0xa1, 0xa4, 0xa1, 0xa1, 0x9f, 0x9f, 0x9f, 0x9f, 0xa3, 0xa3, 0xa3, 0xa8, 0xa3, 0xa8, 0xb3, 0xb7, 0xb6, 0xb6, 0xb6, 0xb7, 0xb7, 0xb7, 0xb7, 0xb9, 0xb8, 0x2a, 0x23, 0x26, 0x26, 0x26, 0x26, 0x26, 0x2a, 0x2f, 0x2f, 0x2f, 0x2f, 0x30, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x34, 0x2f, 0x2b, 0x32, 0x32, 0x37, 0x93, 0x9c, 0x90, 0x9c, 0x93, 0x93, 0x93, 0x97, 0x93, 0x97, 0x92, 0x97, 0x96, 0x9a, 0x24, 0x23, 0x1f, 0x28, 0x2a, 0x41, 0x43, 0x42, 0x43, 0x42, 0x43, 0x42, 0x41, 0x42, 0x42, 0x42, 0x42, 0x45, 0x36, 0x26, 0x26,
0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xbf, 0xc0, 0xbf, 0xc0, 0xbf, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc1, 0xc0, 0xc1, 0xc0, 0xc1, 0xc1, 0xc0, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xd1, 0xc1, 0xc1, 0xc1, 0xc0, 0xc1, 0xc0, 0xc1, 0xc0, 0xc1, 0xc0, 0xc1, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xbf, 0xc0, 0xbf, 0xbb, 0xb9, 0xbb, 0xbb, 0xbb, 0xba, 0xba, 0xb9, 0xbb, 0xb4, 0xae, 0xae, 0xae, 0xae, 0xae, 0xae, 0xb2, 0xae, 0xae, 0xb3, 0xdb, 0x27, 0x31, 0xf5, 0x31, 0xf5, 0x31, 0xf5, 0xf6, 0xf6, 0xf7, 0xf7, 0xf8, 0xdb, 0xa5, 0xa5, 0xa8, 0xaa, 0xaf, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xaf, 0xaf, 0xaa, 0xad, 0xad, 0xab, 0xa9, 0xa9, 0xa9, 0xa9, 0xa6, 0xa6, 0xa6, 0xa4, 0xa1, 0xa1, 0x9a, 0x96, 0x96, 0x9a, 0x96, 0x96, 0x91, 0x96, 0x91, 0x96, 0x91, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x9a, 0x96, 0x9a, 0x96, 0x9a, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x9a, 0x96, 0x96, 0x96, 0x9a, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0xa4, 0xb1, 0xb5, 0xb7, 0xb1, 0xb1, 0xaf, 0xb1, 0xaf, 0xb1, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xb1, 0xaf, 0xaf, 0xaf, 0xb1, 0xaf, 0xb3, 0xb5, 0xa0, 0xcc, 0x9e, 0xa8, 0xa8, 0xa0, 0xa0, 0xa0, 0xa0, 0x98, 0x9c, 0x98, 0x90, 0x98, 0x8e, 0x90, 0x90, 0x52, 0x9d, 0xa6, 0xaf, 0xaf, 0xaf, 0xaf, 0xad, 0xad, 0xab, 0xad, 0xab, 0xad, 0xad, 0xad, 0xad, 0xad, 0xad, 0xad, 0xb1, 0xa9, 0xa1, 0xa4, 0xa9, 0xa4, 0xa4, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0x52, 0xa1, 0x52, 0xa1, 0xa1, 0xa1, 0xa6, 0x50, 0x4e, 0x4f, 0x4f, 0x89, 0x4f, 0x89, 0x4f, 0x89, 0x89, 0x89, 0x4f, 0x89, 0x4f, 0x89, 0x89, 0x89, 0x4f, 0x89, 0xaa, 0xb3, 0xab, 0xab, 0xb3, 0xb5, 0xb5, 0xb3, 0xb1, 0xb3, 0xb1, 0xb1, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xab, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa6, 0xa9, 0xa9, 0xa9, 0xa9, 0xa6, 0xa9, 0xa6, 0xa9, 0xa9, 0xa6, 0xa6, 0xa9, 0xa6, 0xa6, 0xb3, 0xb6, 0xb6, 0xb5, 0xb5, 0xb3, 0xb5, 0xb5, 0xb5, 0xb6, 0xb5, 0xb6, 0xb5, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb7, 0xb7, 0xb7, 0xb6, 0xbd, 0xbe, 0x1a, 0x0d, 0x18, 0x17, 0x1a, 0x1a, 0xef, 0xef, 0xd8, 0xd8, 0x8c, 0x96, 0x9a, 0x9a, 0x9a, 0x9d, 0x9d, 0x9a, 0xa4, 0xa6, 0xa9, 0xa9, 0xab, 0xab, 0xaf, 0xb1, 0xb1, 0xb3, 0xb3, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb6, 0xb5, 0xb5, 0xb6, 0xb5, 0xb6, 0xb7, 0xb9, 0xa9, 0xa1, 0xa1, 0xa4, 0xa1, 0xa1, 0xf5, 0x33, 0x34, 0x36, 0x34, 0x36, 0x34, 0x36, 0x38, 0x2c, 0x22, 0xf0, 0xf0, 0xd9, 0x8e, 0x97, 0x9d, 0x9d, 0xa1, 0xa1, 0xa4, 0xa1, 0xa2, 0xa2, 0x9f, 0xa3, 0x9f, 0xa3, 0xa3, 0xa3, 0xa8, 0xa8, 0xb5, 0xb7, 0xb6, 0xb6, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb9, 0xfa, 0x23, 0x26, 0x26, 0x26, 0x26, 0x26, 0x2a, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x30, 0x2f, 0x2f, 0x2f, 0x32, 0x2f, 0x2b, 0x32, 0x35, 0x9b, 0x93, 0x93, 0x93, 0x93, 0x93, 0x97, 0x93, 0x97, 0x93, 0x95, 0x93, 0x97, 0x96, 0x9a, 0x22, 0x1f, 0x2a, 0x28, 0x34, 0x43, 0x43, 0x42, 0x43, 0x42, 0x42, 0x42, 0x42, 0x42, 0x42, 0x42, 0x45, 0x40, 0x2a, 0x26,
0xbf, 0xbf, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc1, 0xc0, 0xc1, 0xc0, 0xc1, 0xc0, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc0, 0xc1, 0xc0, 0xc1, 0xc1, 0xc1, 0xc1, 0xd1, 0xc1, 0xc1, 0xc0, 0xc1, 0xc0, 0xc1, 0xc1, 0xc0, 0xc0, 0xd0, 0xc0, 0xc0, 0xc0, 0xbf, 0xc0, 0xc0, 0xc1, 0xbe, 0xba, 0xba, 0xbb, 0xbb, 0xba, 0xba, 0xba, 0xbb, 0xb4, 0xae, 0xae, 0xb2, 0xae, 0xae, 0xae, 0xae, 0xae, 0xac, 0xaf, 0xb3, 0xf7, 0xf2, 0x31, 0x31, 0xf5, 0xf5, 0xf5, 0xf5, 0xf6, 0xf7, 0xf7, 0xda, 0xf8, 0xdb, 0xdb, 0xac, 0xa8, 0xaf, 0xb1, 0xaf, 0xb1, 0xaf, 0xaf, 0xaf, 0xaa, 0xaa, 0xa9, 0xa7, 0xa9, 0xa6, 0xa9, 0xa6, 0xa6, 0xa6, 0xa6, 0xa1, 0xa1, 0xa1, 0x9d, 0x9a, 0x96, 0x9a, 0x96, 0x96, 0x9a, 0x91, 0x91, 0x96, 0x91, 0x96, 0x91, 0x96, 0x91, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x9a, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x91, 0xa4, 0xaf, 0xb1, 0xb6, 0xb7, 0xb3, 0xb1, 0xb1, 0xb1, 0xaf, 0xaf, 0xb1, 0xaf, 0xb1, 0xaf, 0xaf, 0xaf, 0xb1, 0xaf, 0xaf, 0xb1, 0xaf, 0xb5, 0xb3, 0xa0, 0xcc, 0x9e, 0x9e, 0xa0, 0xa0, 0xa3, 0xa3, 0xaa, 0xa7, 0xa7, 0xa7, 0xa2, 0x9f, 0x9f, 0x9f, 0x52, 0xa4, 0xa1, 0xa6, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xad, 0xad, 0xad, 0xad, 0xad, 0xab, 0xad, 0xab, 0xad, 0xad, 0xad, 0xa6, 0xa4, 0xa6, 0xa4, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0x9d, 0xa2, 0xa7, 0x89, 0x4e, 0x89, 0x4f, 0x89, 0x4f, 0x89, 0x4f, 0x89, 0x4f, 0x89, 0x4f, 0x89, 0x4f, 0x89, 0x89, 0x89, 0x4f, 0x89, 0xab, 0xb1, 0xad, 0xb3, 0xb3, 0xb3, 0xb1, 0xb3, 0xaf, 0xaf, 0xad, 0xad, 0xaf, 0xad, 0xad, 0xad, 0xad, 0xaf, 0xad, 0xad, 0xaf, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa6, 0xa9, 0xa6, 0xa9, 0xa9, 0xa6, 0xa9, 0xa9, 0xa9, 0xa9, 0xa6, 0xab, 0xb6, 0xb6, 0xb5, 0xb5, 0xb3, 0xb3, 0xb5, 0xb3, 0xb5, 0xb5, 0xb5, 0xb6, 0xb5, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb9, 0xb6, 0xb7, 0xb7, 0xb9, 0xb7, 0xbd, 0xb8, 0x22, 0x0d, 0x18, 0x17, 0x1a, 0x1a, 0xef, 0xf0, 0xf1, 0xca, 0x8c, 0x96, 0x9a, 0x9a, 0x9d, 0x9d, 0x9d, 0x9d, 0xa4, 0xa9, 0xa6, 0xab, 0xab, 0xaf, 0xb1, 0xb3, 0xb3, 0xb3, 0xb5, 0xb5, 0xb5, 0xb5, 0xb6, 0xb6, 0xb5, 0xb6, 0xb5, 0xb6, 0xb5, 0xb6, 0xb5, 0xb7, 0xb8, 0xab, 0x9d, 0xa4, 0xa4, 0x52, 0xf9, 0x33, 0x34, 0x36, 0x34, 0x36, 0x34, 0x36, 0x34, 0x36, 0x22, 0x25, 0xef, 0xf1, 0xd9, 0x8e, 0x93, 0x52, 0x9d, 0x9d, 0xa1, 0xa4, 0xa1, 0xa2, 0xa2, 0xa2, 0xa3, 0xa7, 0xa3, 0xaa, 0xa3, 0xaa, 0xb6, 0xb6, 0xb6, 0xb7, 0xb6, 0xb7, 0xb7, 0xb9, 0xb7, 0xb7, 0xb7, 0xbd, 0x35, 0x23, 0x26, 0x26, 0x26, 0x26, 0x26, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x34, 0x2b, 0x32, 0x28, 0x2d, 0x9e, 0x9c, 0x98, 0x93, 0x93, 0x93, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x97, 0x97, 0x96, 0x9a, 0x22, 0x23, 0x2f, 0x2a, 0x41, 0x43, 0x42, 0x43, 0x42, 0x41, 0x42, 0x42, 0x42, 0x42, 0x42, 0x42, 0x42, 0x34, 0x26,
0xbf, 0xc0, 0xbf, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc1, 0xc0, 0xc1, 0xc0, 0xc1, 0xc0, 0xc1, 0xc0, 0xc1, 0xc1, 0xc0, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc0, 0xc1, 0xc0, 0xc1, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xbf, 0xc0, 0xc0, 0xbf, 0xba, 0xba, 0xba, 0xba, 0xba, 0xb8, 0xbb, 0xb5, 0xae, 0xae, 0xae, 0xae, 0xae, 0xae, 0xae, 0xae, 0xae, 0xaa, 0xae, 0xb1, 0xf5, 0xf2, 0x31, 0xf3, 0x31, 0xf5, 0xf5, 0xf5, 0xf6, 0xf7, 0xf7, 0xdb, 0xdb, 0xa5, 0xa5, 0xa8, 0xaf, 0xaf, 0xaf, 0xb1, 0xad, 0xaf, 0xad, 0xad, 0xa7, 0xa7, 0xa7, 0xa7, 0xa7, 0xa6, 0xa7, 0xa2, 0xa2, 0xa2, 0xa2, 0x52, 0x52, 0x52, 0x95, 0x95, 0x96, 0x96, 0x9a, 0x96, 0x9a, 0x91, 0x91, 0x91, 0x91, 0x91, 0x96, 0x91, 0x91, 0x91, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x91, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x91, 0xa4, 0xb1, 0xad, 0xb3, 0xb7, 0xb7, 0xb5, 0xb3, 0xb1, 0xb1, 0xb1, 0xaf, 0xb3, 0xaf, 0xb1, 0xaf, 0xb1, 0xaf, 0xb1, 0xaf, 0xb1, 0xb1, 0xb1, 0xb3, 0xb1, 0xa0, 0x98, 0xa0, 0xa0, 0xa0, 0xa0, 0xa3, 0xa3, 0xa3, 0xa3, 0xa7, 0xa7, 0xab, 0xa9, 0xa9, 0xab, 0xa6, 0xa9, 0xab, 0xa2, 0x9a, 0x9d, 0xa1, 0xa4, 0xa4, 0xa9, 0xa6, 0xab, 0xa9, 0xab, 0xab, 0xad, 0xaf, 0xad, 0xad, 0xaf, 0xaf, 0xa9, 0xa4, 0xa4, 0xa4, 0xa4, 0xa4, 0xa4, 0xa4, 0xa1, 0xa4, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa7, 0x89, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x89, 0x4f, 0x89, 0x4f, 0x89, 0x4f, 0x89, 0x89, 0x89, 0x4f, 0x89, 0xad, 0xb3, 0xb5, 0xb3, 0xb3, 0xaf, 0xaf, 0xad, 0xab, 0xab, 0xad, 0xab, 0xab, 0xab, 0xab, 0xad, 0xab, 0xad, 0xad, 0xad, 0xad, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xab, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa6, 0xa9, 0xa6, 0xa9, 0xa6, 0xa6, 0xa9, 0xa9, 0xa9, 0xa4, 0xaf, 0xb6, 0xb5, 0xb3, 0xb5, 0xb3, 0xb3, 0xb5, 0xb5, 0xb5, 0xb6, 0xb5, 0xb6, 0xb5, 0xb6, 0xb6, 0xb6, 0xb6, 0xb7, 0xb6, 0xb6, 0xb7, 0xb6, 0xb7, 0xb7, 0xb6, 0xbd, 0xbe, 0x22, 0x0b, 0x13, 0x14, 0x1a, 0x1b, 0xef, 0xf0, 0xd8, 0xca, 0x93, 0x96, 0x9d, 0x9a, 0x9d, 0x9d, 0x9a, 0xa1, 0xa4, 0xa9, 0xab, 0xab, 0xaf, 0xb1, 0xb3, 0xb3, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb6, 0xb5, 0xb6, 0xb5, 0xb6, 0xb6, 0xb6, 0xb5, 0xb6, 0xb6, 0xb7, 0xb9, 0xad, 0x9d, 0xa1, 0xa4, 0xf6, 0x33, 0x34, 0x36, 0x34, 0x32, 0x36, 0x36, 0x36, 0x36, 0x36, 0x22, 0xef, 0xef, 0xf0, 0xd8, 0x94, 0x90, 0x52, 0x9d, 0xa1, 0xa1, 0xa4, 0xa4, 0xa2, 0xa2, 0xa2, 0xa3, 0xa7, 0xa3, 0xa3, 0xae, 0xb6, 0xb7, 0xb6, 0xb6, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xbb, 0x28, 0x23, 0x26, 0x26, 0x26, 0x26, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x34, 0x32, 0x2b, 0x2c, 0x28, 0x31, 0xa8, 0xa5, 0xdb, 0x9e, 0x9e, 0x9c, 0x9c, 0x9c, 0x93, 0x9b, 0x97, 0x92, 0x92, 0x92, 0x96, 0x96, 0x22, 0x23, 0x2a, 0x36, 0x43, 0x43, 0x42, 0x42, 0x42, 0x42, 0x41, 0x42, 0x42, 0x42, 0x42, 0x45, 0x39, 0x26,
0xbf, 0xc0, 0xbf, 0xc0, 0xbf, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc1, 0xc0, 0xc1, 0xc1, 0xc1, 0xc1, 0xc0, 0xc1, 0xc0, 0xc1, 0xc0, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc0, 0xc1, 0xc0, 0xc1, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xbf, 0xc0, 0xbf, 0xc0, 0xc0, 0xbe, 0xb9, 0xba, 0xb9, 0xba, 0xba, 0xbb, 0xb4, 0xae, 0xae, 0xae, 0xae, 0xae, 0xae, 0xae, 0xae, 0xaa, 0xae, 0xae, 0xaf, 0xae, 0xf5, 0xf2, 0x31, 0xf3, 0xf5, 0xf3, 0xf6, 0xf6, 0xf6, 0xf7, 0xf8, 0xda, 0xf8, 0x9e, 0xa8, 0xad, 0xad, 0xad, 0xaf, 0xaf, 0xad, 0xad, 0xab, 0xab, 0xa7, 0xa3, 0xa7, 0xa3, 0xa2, 0x9f, 0xa2, 0x9f, 0x9f, 0x9f, 0x9b, 0x9f, 0x97, 0x92, 0x95, 0x95, 0x95, 0x96, 0x9a, 0x96, 0x9a, 0x91, 0x50, 0x96, 0x91, 0x91, 0x96, 0x91, 0x96, 0x91, 0x91, 0x91, 0x96, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x96, 0x91, 0x96, 0x91, 0x96, 0x91, 0x96, 0x91, 0x96, 0x91, 0x96, 0x91, 0x91, 0x91, 0x96, 0x50, 0xa1, 0xb1, 0xad, 0xaf, 0xb3, 0xb7, 0xb7, 0xb5, 0xb3, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xaf, 0xb1, 0xaf, 0xb1, 0xb1, 0xb1, 0xb1, 0xaf, 0xb3, 0xb1, 0x9e, 0x9e, 0xa0, 0xa0, 0xa3, 0xa3, 0xa3, 0xa3, 0x9f, 0xa7, 0xa7, 0xa7, 0xa6, 0xa6, 0xa9, 0xa9, 0xab, 0xad, 0xa9, 0x95, 0x50, 0x91, 0x96, 0x96, 0x96, 0x9a, 0x9a, 0x9a, 0x9d, 0x9d, 0x9d, 0xa1, 0xa1, 0xa4, 0xa6, 0xa9, 0xab, 0xa6, 0xa4, 0xa4, 0xa6, 0xa4, 0xa4, 0xa4, 0xa4, 0xa4, 0xa1, 0xa4, 0xa1, 0xa4, 0xa1, 0xa4, 0xa1, 0xa1, 0xa1, 0xa2, 0xa1, 0xa6, 0xa2, 0x50, 0x4f, 0x89, 0x89, 0x89, 0x89, 0x89, 0x89, 0x89, 0x89, 0x89, 0x89, 0x4f, 0x89, 0x4f, 0x89, 0x89, 0x4e, 0x50, 0xad, 0xb6, 0xb3, 0xab, 0xad, 0xab, 0xab, 0xa9, 0xab, 0xa9, 0xa9, 0xab, 0xa9, 0xa9, 0xab, 0xab, 0xab, 0xab, 0xad, 0xaf, 0xa9, 0xab, 0xa9, 0xab, 0xab, 0xab, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa6, 0xa9, 0xa6, 0xa9, 0xb3, 0xb5, 0xb3, 0xb3, 0xb3, 0xb5, 0xb3, 0xb5, 0xb5, 0xb5, 0xb5, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb7, 0xb6, 0xb7, 0xb6, 0xb7, 0xb7, 0xb7, 0xb9, 0xb7, 0xb9, 0xbd, 0xba, 0x2d, 0x22, 0x1d, 0x1a, 0x17, 0x11, 0x1b, 0xee, 0xd7, 0x84, 0x92, 0x9a, 0x9d, 0x9d, 0x9d, 0x9d, 0x9d, 0x9d, 0xa4, 0xa9, 0xad, 0xaf, 0xb1, 0xb3, 0xb3, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb6, 0xb6, 0xb5, 0xb6, 0xb6, 0xb6, 0xb5, 0xb6, 0xb6, 0xb6, 0xb6, 0xb7, 0xb9, 0xad, 0x9d, 0xa4, 0xf6, 0x33, 0x36, 0x34, 0x36, 0x36, 0x34, 0x36, 0x34, 0x36, 0x36, 0x32, 0x1b, 0x22, 0xf0, 0xf0, 0xf1, 0xca, 0x90, 0x9b, 0x9d, 0xa1, 0xa4, 0xa1, 0xa4, 0xa2, 0xa2, 0xa7, 0xa7, 0xa7, 0xa7, 0xae, 0xb7, 0xb6, 0xb6, 0xb7, 0xb7, 0xb7, 0xb7, 0xb9, 0xb7, 0xb7, 0xb9, 0xb7, 0xb9, 0xdc, 0x23, 0x26, 0x26, 0x26, 0x26, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x32, 0x34, 0x2b, 0x32, 0x2b, 0x28, 0xf6, 0xa5, 0xa5, 0xdb, 0xa5, 0xdb, 0xa5, 0xa5, 0xa5, 0xa0, 0xa8, 0xa0, 0xa3, 0x9c, 0x9c, 0xa1, 0x99, 0x2d, 0x2a, 0x30, 0x41, 0x43, 0x42, 0x41, 0x42, 0x41, 0x42, 0x42, 0x41, 0x42, 0x42, 0x43, 0x44, 0x2f,
0xbf, 0xbf, 0xbf, 0xbf, 0xc0, 0xbf, 0xc0, 0xc0, 0xc0, 0xc0, 0xbf, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc1, 0xc0, 0xc1, 0xc0, 0xc1, 0xc1, 0xc1, 0xc1, 0xc0, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc0, 0xc1, 0xc0, 0xc1, 0xc0, 0xc0, 0xc0, 0xc0, 0xbf, 0xc0, 0xbf, 0xc0, 0xbf, 0xc0, 0xbf, 0xbe, 0xb9, 0xba, 0xb9, 0xba, 0xba, 0xb6, 0xac, 0xae, 0xae, 0xae, 0xaa, 0xae, 0xaa, 0xae, 0xae, 0xaa, 0xae, 0xaa, 0xb1, 0xaa, 0xf2, 0xf2, 0xf5, 0xf2, 0xf5, 0xf3, 0xf6, 0xf4, 0xf7, 0xda, 0xf8, 0xda, 0xdb, 0xa7, 0xad, 0xaa, 0xad, 0xad, 0xad, 0xab, 0xaa, 0xab, 0xab, 0xa9, 0xa3, 0x9f, 0xa7, 0xa3, 0x9f, 0x9f, 0x9f, 0x9b, 0x9b, 0x9b, 0x9b, 0x93, 0x93, 0x92, 0x92, 0x97, 0x95, 0x95, 0x96, 0x9a, 0x96, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x50, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x96, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x50, 0xa1, 0xaf, 0xaf, 0xad, 0xb1, 0xb3, 0xb7, 0xb7, 0xb6, 0xb3, 0xb3, 0xb3, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xaf, 0xb1, 0xaf, 0xb1, 0xaf, 0x9e, 0xa0, 0xa3, 0xa3, 0xa3, 0xa3, 0xa3, 0xa7, 0xa7, 0xa7, 0xa6, 0xa7, 0xa9, 0xa9, 0xab, 0xab, 0xa9, 0xab, 0xaf, 0x95, 0x50, 0x91, 0x96, 0x96, 0x96, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x9d, 0x9d, 0xa1, 0xa6, 0xa9, 0xa9, 0xa9, 0xa4, 0xa4, 0xa4, 0xa4, 0xa4, 0xa1, 0xa4, 0xa1, 0xa4, 0xa1, 0xa1, 0xa1, 0xa4, 0xa1, 0xa2, 0xa1, 0xa2, 0xa1, 0xa1, 0xae, 0xa1, 0x50, 0x91, 0x96, 0x96, 0x96, 0x91, 0x96, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x89, 0x9a, 0xa6, 0xa1, 0xa4, 0xa6, 0xa6, 0xa9, 0xa9, 0xab, 0xa9, 0xab, 0xa9, 0xa9, 0xab, 0xab, 0xab, 0xab, 0xab, 0xab, 0xab, 0xad, 0xab, 0xab, 0xab, 0xab, 0xab, 0xa9, 0xab, 0xa9, 0xab, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa6, 0xa9, 0xa6, 0xa9, 0xa6, 0xa9, 0xa6, 0xa9, 0xa4, 0xab, 0xb5, 0xb3, 0xb1, 0xb3, 0xb3, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb6, 0xb5, 0xb6, 0xb6, 0xb6, 0xb7, 0xb6, 0xb7, 0xb9, 0xb7, 0xb9, 0xba, 0xbb, 0xb9, 0xba, 0xbd, 0xc1, 0xcf, 0xbc, 0xfd, 0xfb, 0xf9, 0xf3, 0xf3, 0xf1, 0xf1, 0x88, 0x8c, 0x96, 0x91, 0x9a, 0x9a, 0x9d, 0x9d, 0x9d, 0xa6, 0xab, 0xaf, 0xb3, 0xb5, 0xb3, 0xb5, 0xb5, 0xb6, 0xb5, 0xb6, 0xb5, 0xb6, 0xb6, 0xb5, 0xb6, 0xb5, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb9, 0xab, 0x9d, 0xf7, 0x33, 0x36, 0x36, 0x36, 0x34, 0x36, 0x36, 0x36, 0x32, 0x38, 0x36, 0x22, 0x1a, 0x1b, 0x27, 0xf0, 0xf1, 0xca, 0x8e, 0x9b, 0x9d, 0xa1, 0xa1, 0xa4, 0xa4, 0xa6, 0xa2, 0xa7, 0xa7, 0xa3, 0xb3, 0xb7, 0xb7, 0xb6, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb6, 0xbd, 0x3c, 0x23, 0x26, 0x26, 0x26, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x34, 0x32, 0x32, 0x2b, 0x32, 0x28, 0x24, 0xf8, 0xa8, 0x9e, 0xdb, 0x9e, 0xa5, 0xa5, 0x9e, 0xa5, 0xa5, 0xa8, 0xa5, 0xa8, 0xa8, 0xa5, 0xab, 0xdb, 0x2a, 0x2a, 0x36, 0x43, 0x42, 0x41, 0x42, 0x41, 0x42, 0x42, 0x42, 0x42, 0x42, 0x41, 0x47, 0x39,
0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc1, 0xc0, 0xc1, 0xc0, 0xc1, 0xc1, 0xc1, 0xc0, 0xc1, 0xc0, 0xc1, 0xc1, 0xd1, 0xc1, 0xc1, 0xc1, 0xc0, 0xc1, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xbf, 0xc0, 0xbf, 0xc0, 0xbf, 0xbf, 0xc0, 0xbf, 0xbd, 0xb9, 0xba, 0xba, 0xba, 0xb4, 0xaa, 0xae, 0xac, 0xae, 0xae, 0xac, 0xae, 0xaa, 0xae, 0xaa, 0xae, 0xaa, 0xae, 0xaf, 0xac, 0xf2, 0xf2, 0xf5, 0xf3, 0xf5, 0xf4, 0xf6, 0xf4, 0xf7, 0xda, 0xda, 0xcc, 0xaa, 0xaa, 0xad, 0xaa, 0xab, 0xaa, 0xab, 0xa9, 0xab, 0xa7, 0xa9, 0xa9, 0x9f, 0x9c, 0x9f, 0x9f, 0x9c, 0x9b, 0x9c, 0x93, 0x93, 0x9c, 0x90, 0x8c, 0x90, 0x93, 0x93, 0x93, 0x97, 0x97, 0x95, 0x99, 0x96, 0x91, 0x50, 0x91, 0x50, 0x91, 0x91, 0x91, 0x50, 0x91, 0x50, 0x91, 0x50, 0x50, 0x50, 0x50, 0x50, 0x50, 0x50, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x50, 0x50, 0xa1, 0xb1, 0xad, 0xaf, 0xaf, 0xb3, 0xb5, 0xb9, 0xb7, 0xb6, 0xb5, 0xb3, 0xb1, 0xb3, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xaf, 0xaf, 0xb1, 0xaa, 0xa0, 0x9c, 0xa3, 0xa3, 0xa3, 0xa3, 0xa2, 0xa7, 0xa7, 0xa7, 0xa9, 0xa9, 0xa9, 0xab, 0xab, 0xa9, 0xa9, 0xab, 0xad, 0x99, 0x89, 0x91, 0x96, 0x96, 0x9a, 0x9a, 0x9a, 0x9a, 0x9d, 0x9d, 0xa1, 0xa1, 0xa4, 0xa4, 0xa6, 0xa4, 0xa9, 0xa6, 0xa6, 0xa4, 0xa6, 0xa1, 0xa4, 0xa1, 0xa4, 0xa1, 0xa4, 0xa1, 0xa1, 0xa1, 0xa2, 0xa1, 0xa2, 0x52, 0xa2, 0xa1, 0x52, 0xab, 0xb6, 0xa1, 0x50, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x9a, 0x96, 0x96, 0x52, 0x9a, 0x91, 0x9a, 0x9a, 0x9d, 0xa1, 0xa1, 0xa1, 0xa4, 0xa6, 0xa9, 0xa9, 0xa9, 0xab, 0xab, 0xab, 0xad, 0xad, 0xad, 0xad, 0xab, 0xab, 0xad, 0xad, 0xad, 0xab, 0xab, 0xab, 0xad, 0xa9, 0xab, 0xa9, 0xab, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa6, 0xa9, 0xa6, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb3, 0xb1, 0xb3, 0xb3, 0xb3, 0xb5, 0xb5, 0xb6, 0xb5, 0xb6, 0xb6, 0xb6, 0xb7, 0xb7, 0xb9, 0xb9, 0xb9, 0xba, 0xba, 0xba, 0xba, 0xba, 0xbd, 0xbe, 0xbc, 0xbf, 0xbf, 0xc0, 0xc0, 0xbe, 0xbc, 0xb8, 0xb0, 0xae, 0xaa, 0xab, 0xa2, 0xa1, 0x52, 0x9d, 0x9a, 0x9a, 0xa1, 0xb1, 0xb6, 0xb7, 0xb6, 0xb7, 0xb6, 0xb7, 0xb6, 0xb6, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb6, 0xb9, 0xb7, 0xb9, 0xb7, 0xb9, 0xb9, 0xbb, 0xad, 0xf7, 0x33, 0x34, 0x36, 0x36, 0x36, 0x36, 0x36, 0x34, 0x36, 0x36, 0x36, 0x32, 0x22, 0x1a, 0x22, 0xef, 0x27, 0xf1, 0xd9, 0x8e, 0x9c, 0xa1, 0xa1, 0xa1, 0xa4, 0xa4, 0xa6, 0xa7, 0xa9, 0xa7, 0xb5, 0xb7, 0xb6, 0xb6, 0xb7, 0xb7, 0xb9, 0xb7, 0xb7, 0xb7, 0xb9, 0xb7, 0xb9, 0xba, 0xb7, 0xbd, 0x2b, 0x26, 0x26, 0x26, 0x2a, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x32, 0x2f, 0x32, 0x2c, 0x28, 0x1f, 0x29, 0x9e, 0xa8, 0x9e, 0xa5, 0xa0, 0xa5, 0x9e, 0xa8, 0xa0, 0xa5, 0xa8, 0xa5, 0xa8, 0xa8, 0xa7, 0xfa, 0x34, 0x2a, 0x2a, 0x40, 0x43, 0x41, 0x42, 0x42, 0x42, 0x42, 0x41, 0x42, 0x42, 0x42, 0x42, 0x42,
0xbf, 0xbf, 0xbf, 0xbf, 0xbe, 0xbf, 0xbf, 0xbf, 0xc0, 0xc0, 0xbf, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc1, 0xc0, 0xc1, 0xc0, 0xc1, 0xc1, 0xc1, 0xc0, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc0, 0xc1, 0xc1, 0xc1, 0xc0, 0xc1, 0xc0, 0xc1, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xbf, 0xc0, 0xbf, 0xc0, 0xbf, 0xbf, 0xc0, 0xbf, 0xbd, 0xb9, 0xb9, 0xbd, 0xb7, 0xac, 0xae, 0xae, 0xaa, 0xae, 0xaa, 0xae, 0xae, 0xac, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xb1, 0x9e, 0xf2, 0xf2, 0xf3, 0xf3, 0xf3, 0xf4, 0xf4, 0xda, 0xda, 0xda, 0x9e, 0xa7, 0xaa, 0xa7, 0xaa, 0xab, 0xa7, 0xab, 0xa7, 0xab, 0xa9, 0xa7, 0xa9, 0xa7, 0x9f, 0x9c, 0x9c, 0x9c, 0x9c, 0x93, 0x9c, 0x93, 0x93, 0x90, 0x8e, 0x90, 0x8c, 0x90, 0x8d, 0x93, 0x93, 0x93, 0x95, 0x9b, 0x95, 0x50, 0x50, 0x91, 0x50, 0x50, 0x50, 0x50, 0x50, 0x91, 0x50, 0x50, 0x50, 0x50, 0x50, 0x50, 0x50, 0x50, 0x50, 0x50, 0x91, 0x91, 0x91, 0x91, 0x50, 0x91, 0x50, 0x91, 0x50, 0x50, 0x91, 0x89, 0x9d, 0xaf, 0xad, 0xaf, 0xaf, 0xaf, 0xb3, 0xb5, 0xb9, 0xb7, 0xb6, 0xb5, 0xb3, 0xb3, 0xb3, 0xb3, 0xb3, 0xb3, 0xb3, 0xb3, 0xb1, 0xb1, 0xb3, 0xaf, 0xaf, 0xae, 0xaf, 0xb1, 0xaa, 0xa0, 0xa3, 0xa3, 0xa3, 0xa7, 0xa7, 0xa7, 0xa7, 0xa9, 0xa9, 0xa9, 0xab, 0xad, 0xa9, 0xa9, 0xa9, 0xa9, 0xad, 0xad, 0x99, 0x50, 0x91, 0x96, 0x96, 0x96, 0x9a, 0x9d, 0x9d, 0x9d, 0xa1, 0xa1, 0xa4, 0xa1, 0xa6, 0xa4, 0xa4, 0xa6, 0xa6, 0xa6, 0xa6, 0xa4, 0xa4, 0xa1, 0xa4, 0xa1, 0xa4, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa2, 0xa1, 0xa2, 0xa1, 0x52, 0xa7, 0xb6, 0xb5, 0xa2, 0x50, 0x91, 0x96, 0x96, 0x96, 0x96, 0x91, 0x96, 0x96, 0x96, 0x91, 0x96, 0x96, 0x96, 0x91, 0x96, 0xa4, 0xa2, 0x52, 0x96, 0x96, 0x9a, 0x9a, 0x9d, 0x9d, 0x9d, 0xa1, 0x9d, 0xa1, 0xa4, 0xa4, 0xa6, 0xa6, 0xa9, 0xab, 0xab, 0xab, 0xad, 0xad, 0xaf, 0xad, 0xad, 0xab, 0xad, 0xab, 0xab, 0xab, 0xa9, 0xab, 0xa9, 0xa9, 0xa9, 0xa9, 0xa7, 0xa7, 0xa6, 0xa7, 0xa7, 0xa7, 0xa2, 0xa6, 0xb3, 0xb3, 0xb1, 0xb1, 0xb1, 0xaf, 0xb3, 0xb1, 0xb3, 0xb3, 0xb5, 0xb5, 0xb5, 0xb6, 0xb6, 0xb6, 0xb7, 0xb7, 0xb7, 0xb9, 0xb7, 0xba, 0xb9, 0xba, 0xba, 0xba, 0xbc, 0xbc, 0xcf, 0xdd, 0xbc, 0xbc, 0xbd, 0xbc, 0xbd, 0xbe, 0xbf, 0xbf, 0xbf, 0xbf, 0xbe, 0xba, 0xb6, 0xb3, 0xaf, 0xab, 0xa9, 0xad, 0xb1, 0xb3, 0xb3, 0xb3, 0xb3, 0xb3, 0xb3, 0xb3, 0xb3, 0xb3, 0xb3, 0xb3, 0xb3, 0xb3, 0xb3, 0xb5, 0xb3, 0xb3, 0xb3, 0xb3, 0xb3, 0xb3, 0xb3, 0xb3, 0xf8, 0x38, 0x34, 0x34, 0x34, 0x34, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x2c, 0x17, 0x1d, 0x22, 0x1b, 0x27, 0xf0, 0xf3, 0xca, 0x98, 0x9f, 0xa1, 0xa4, 0xa4, 0xa6, 0xa6, 0xa9, 0xaa, 0xb5, 0xb7, 0xb6, 0xb7, 0xb6, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb9, 0xb7, 0xb7, 0xb9, 0xb9, 0xba, 0xb8, 0x23, 0x26, 0x26, 0x2a, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x34, 0x32, 0x32, 0x32, 0x32, 0x28, 0x1f, 0x28, 0x31, 0xa8, 0xa0, 0xa5, 0x9e, 0xa8, 0x9e, 0xa5, 0xa0, 0xa8, 0xa0, 0xa8, 0xa8, 0xa8, 0xa7, 0xfa, 0x38, 0x2f, 0x2a, 0x36, 0x44, 0x42, 0x42, 0x43, 0x42, 0x43, 0x43, 0x42, 0x43, 0x42, 0x42, 0x45,
0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbe, 0xbe, 0xbf, 0xc0, 0xc0, 0xc0, 0xbf, 0xc0, 0xbf, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc1, 0xc0, 0xc1, 0xc0, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc0, 0xc1, 0xc0, 0xc1, 0xc1, 0xc1, 0xc0, 0xc1, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xbf, 0xc0, 0xbf, 0xc0, 0xbf, 0xbf, 0xbf, 0xc0, 0xbf, 0xbb, 0xb9, 0xb9, 0xb7, 0xaa, 0xae, 0xac, 0xae, 0xa8, 0xae, 0xa8, 0xaa, 0xaa, 0xae, 0xae, 0xaa, 0xae, 0xaa, 0xaa, 0xb1, 0xcc, 0xf2, 0xf2, 0xf3, 0xf3, 0xf4, 0xf4, 0xf4, 0xf4, 0xf4, 0xa0, 0xa3, 0xaa, 0xa3, 0xaa, 0xa7, 0xab, 0xa7, 0xa7, 0xa7, 0xaa, 0xa9, 0xa7, 0xab, 0xa2, 0x9c, 0x9c, 0x9c, 0x93, 0x98, 0x90, 0x98, 0x90, 0x8e, 0x8a, 0x8a, 0x90, 0x90, 0x90, 0x90, 0x93, 0x90, 0x93, 0x93, 0x97, 0x95, 0x50, 0x50, 0x50, 0x91, 0x50, 0x50, 0x50, 0x50, 0x50, 0x89, 0x89, 0x50, 0x89, 0x89, 0x8b, 0x89, 0x89, 0x89, 0x89, 0x50, 0x91, 0x50, 0x50, 0x50, 0x50, 0x50, 0x50, 0x50, 0x50, 0x89, 0x9d, 0xb1, 0xad, 0xaf, 0xaf, 0xaf, 0xb3, 0xb3, 0xb5, 0xb9, 0xb9, 0xb6, 0xb5, 0xb3, 0xb3, 0xb3, 0xb1, 0xb1, 0xb1, 0xb3, 0xb3, 0xb1, 0xb1, 0xaf, 0xaf, 0xaf, 0xaf, 0xad, 0xaf, 0xaa, 0x9c, 0xa3, 0xa7, 0xa3, 0xa7, 0xa7, 0xa7, 0xa9, 0xa9, 0xab, 0xab, 0xa9, 0xab, 0xa9, 0xa9, 0xab, 0xa9, 0xab, 0xaf, 0x95, 0x83, 0x91, 0x91, 0x96, 0x96, 0x9a, 0x9a, 0x9d, 0x9d, 0xa1, 0xa1, 0xa4, 0xa4, 0xa4, 0xa1, 0xa4, 0xa6, 0xa6, 0xa6, 0xa4, 0xa1, 0xa4, 0xa4, 0xa4, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa2, 0xa1, 0xa2, 0xa1, 0x52, 0xa9, 0xb1, 0xb3, 0xb5, 0xa7, 0x50, 0x91, 0x96, 0x96, 0x96, 0x96, 0x96, 0x91, 0x96, 0x96, 0x91, 0x96, 0x96, 0x96, 0x96, 0x9d, 0xa7, 0xa2, 0xa2, 0x95, 0x96, 0x9a, 0x9d, 0x9d, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa4, 0xa6, 0xa6, 0xab, 0xaf, 0xb1, 0xad, 0xab, 0xab, 0xa9, 0xa6, 0xa6, 0xa6, 0xa7, 0xa4, 0xa7, 0xa6, 0xa7, 0xa7, 0xa2, 0xa6, 0xa7, 0xa7, 0xa7, 0xa2, 0xa7, 0xa7, 0xa2, 0xab, 0xb3, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb3, 0xb5, 0xb5, 0xb5, 0xb5, 0xb6, 0xb6, 0xb6, 0xb6, 0xb7, 0xb7, 0xb9, 0xb7, 0xb9, 0xb9, 0xb9, 0xba, 0xbb, 0xba, 0xbd, 0xbc, 0xbe, 0xb8, 0xbc, 0xb8, 0xbc, 0xbb, 0xbd, 0xbb, 0xbb, 0xbb, 0xbb, 0xbd, 0xba, 0xbb, 0xbd, 0xbd, 0xbe, 0xbd, 0xba, 0xb8, 0xa9, 0xa1, 0xa1, 0xa6, 0xa6, 0xa4, 0xa6, 0xa4, 0xa6, 0xa4, 0xa6, 0xa6, 0xa6, 0xa6, 0xa4, 0xa6, 0xa4, 0xa6, 0xa4, 0xa4, 0xa4, 0xa4, 0xa4, 0xa1, 0x9e, 0x3f, 0x41, 0x39, 0x39, 0x36, 0x36, 0x34, 0x34, 0x34, 0x36, 0x36, 0x36, 0x36, 0x22, 0x18, 0x1a, 0x22, 0x1b, 0x27, 0xf0, 0xf1, 0xd9, 0x94, 0x9c, 0xa1, 0xa4, 0xa4, 0xa6, 0xa9, 0xad, 0xb6, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb9, 0xb7, 0xb7, 0xb7, 0xb9, 0xb7, 0xb9, 0xb7, 0xbd, 0xfa, 0x23, 0x26, 0x2a, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x32, 0x34, 0x2b, 0x32, 0x2b, 0x1f, 0x1f, 0x24, 0xf3, 0xa8, 0xa0, 0xa5, 0x9e, 0xa0, 0xa0, 0xa5, 0xa5, 0xa8, 0xa0, 0xa8, 0xa0, 0xa6, 0xf9, 0x3a, 0x34, 0x28, 0x30, 0x30, 0x33, 0x38, 0x38, 0x3b, 0x3d, 0x3d, 0x40, 0x41, 0x42, 0x42, 0x47,
0xbf, 0xbf, 0xbf, 0xbe, 0xbf, 0xbe, 0xbe, 0xbe, 0xbf, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xbf, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc1, 0xc0, 0xc1, 0xc0, 0xc1, 0xc0, 0xc1, 0xc0, 0xc1, 0xc0, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xbf, 0xc0, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xba, 0xb9, 0xb7, 0xa8, 0xae, 0xa8, 0xae, 0xae, 0xa8, 0xaa, 0xac, 0xaa, 0xa8, 0xaa, 0xae, 0xaa, 0xaa, 0xaa, 0xaa, 0xb1, 0xda, 0xf2, 0xf3, 0xf3, 0xf4, 0xf4, 0xd9, 0xf4, 0xcb, 0xa0, 0xa7, 0xa3, 0xaa, 0xa3, 0xaa, 0xa7, 0xa7, 0xab, 0xa7, 0xa7, 0xa7, 0xa7, 0xa7, 0xa7, 0xa7, 0x90, 0x98, 0x90, 0x98, 0x90, 0x98, 0x90, 0x88, 0x8a, 0x8e, 0x8a, 0x8e, 0x8a, 0x90, 0x8a, 0x90, 0x90, 0x93, 0x90, 0x93, 0x92, 0x50, 0x50, 0x50, 0x50, 0x50, 0x50, 0x50, 0x89, 0x8b, 0x83, 0x8b, 0x83, 0x8b, 0x83, 0x89, 0x83, 0x8b, 0x83, 0x89, 0x50, 0x91, 0x50, 0x50, 0x50, 0x50, 0x50, 0x50, 0x50, 0x89, 0x9d, 0xaf, 0xab, 0xad, 0xad, 0xaf, 0xb1, 0xb1, 0xb5, 0xb5, 0xb9, 0xb7, 0xb7, 0xb5, 0xb5, 0xb3, 0xb3, 0xb3, 0xb1, 0xb1, 0xb3, 0xb1, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaa, 0xad, 0xaf, 0xa7, 0xa3, 0xa3, 0xa7, 0xa7, 0xa7, 0xa7, 0xa9, 0xa9, 0xab, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xab, 0xa9, 0xab, 0xad, 0x97, 0x86, 0x51, 0x91, 0x9a, 0x96, 0x9a, 0x9a, 0x9d, 0x9d, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa4, 0xa4, 0xa4, 0xa6, 0xa6, 0xa4, 0xa4, 0xa1, 0xa1, 0xa1, 0xa1, 0xa4, 0xa1, 0xa1, 0xa2, 0xa1, 0xa1, 0xa1, 0xa2, 0x52, 0xa7, 0xb3, 0xaf, 0xb3, 0xb6, 0xa9, 0x91, 0x91, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x91, 0x9d, 0xa2, 0xa1, 0x9f, 0xa2, 0x99, 0x96, 0x9a, 0x9a, 0x9d, 0x9d, 0xa4, 0xa1, 0xa4, 0xa4, 0xa6, 0xa6, 0xa9, 0xa9, 0xad, 0xad, 0xaf, 0xaf, 0xaf, 0xad, 0xa9, 0xab, 0xa9, 0xa6, 0xa6, 0xa6, 0xa6, 0xa6, 0xa6, 0xa7, 0xa6, 0xa7, 0xa6, 0xa7, 0xa2, 0xa7, 0xa6, 0xa7, 0xa2, 0xa6, 0xa7, 0xad, 0xb1, 0xb5, 0xb5, 0xb3, 0xb5, 0xb5, 0xb5, 0xb5, 0xb6, 0xb5, 0xb5, 0xb6, 0xb6, 0xb6, 0xb6, 0xb7, 0xb7, 0xb9, 0xb9, 0xb9, 0xb9, 0xbb, 0xbb, 0xba, 0xbd, 0xbc, 0xcf, 0xbd, 0xbc, 0xbc, 0xbb, 0xbd, 0xbd, 0xbd, 0xbd, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xba, 0xba, 0xb9, 0xba, 0xbb, 0xbd, 0xbb, 0xaf, 0xa4, 0xa1, 0xa6, 0xa6, 0xa6, 0xa6, 0xa6, 0xa4, 0xa6, 0xa6, 0xa6, 0xa4, 0xa6, 0xa6, 0xa6, 0xa6, 0xa6, 0xa4, 0xa4, 0xa6, 0xa4, 0xa1, 0x9f, 0x35, 0x41, 0x41, 0x42, 0x41, 0x40, 0x39, 0x39, 0x39, 0x36, 0x32, 0x34, 0x36, 0x2b, 0x17, 0x1e, 0x1d, 0x1d, 0x22, 0x1b, 0x27, 0xf0, 0xf3, 0xcb, 0x9c, 0xa2, 0xa1, 0xa6, 0xa6, 0xaf, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb9, 0xb7, 0xb9, 0xb9, 0xb9, 0xb7, 0xb9, 0xb9, 0xb7, 0xb9, 0xb9, 0xbd, 0x32, 0x23, 0x26, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x34, 0x32, 0x36, 0x32, 0x32, 0x2b, 0x23, 0x1f, 0x21, 0x29, 0xda, 0xaa, 0x9e, 0xa5, 0xa0, 0xa5, 0xa8, 0xa0, 0xa8, 0xa5, 0xa8, 0xa0, 0xab, 0xf9, 0x3a, 0x3d, 0x2f, 0x28, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x30, 0x38, 0x38,
0xc0, 0xc0, 0xbf, 0xbf, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbf, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xbf, 0xc0, 0xbf, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc1, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc1, 0xc1, 0xc1, 0xc1, 0xc0, 0xc1, 0xc0, 0xc1, 0xc0, 0xc1, 0xc1, 0xc1, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xbf, 0xbf, 0xc0, 0xbf, 0xbf, 0xbb, 0xb6, 0xac, 0xae, 0xa8, 0xae, 0xa8, 0xaa, 0xa8, 0xaa, 0xa8, 0xaa, 0xa8, 0xaa, 0xa8, 0xaa, 0xaa, 0xaa, 0xad, 0xaf, 0xf4, 0xf2, 0xf3, 0xd9, 0xf3, 0xd9, 0xd9, 0xcb, 0x9c, 0xa3, 0xa3, 0xa3, 0xa7, 0xa7, 0xa7, 0xa7, 0xa7, 0xa7, 0xa7, 0xa7, 0xa7, 0xa7, 0xa7, 0xa7, 0xa7, 0x90, 0x90, 0x98, 0x8e, 0x90, 0x8e, 0x88, 0x88, 0x88, 0x88, 0x8e, 0x8a, 0x8e, 0x8c, 0x8e, 0x8c, 0x8e, 0x90, 0x93, 0x90, 0x92, 0x89, 0x89, 0x50, 0x8b, 0x8b, 0x8b, 0x8b, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x89, 0x91, 0x50, 0x50, 0x50, 0x50, 0x50, 0x50, 0x89, 0x99, 0xaf, 0xad, 0xad, 0xaf, 0xaf, 0xaf, 0xb1, 0xb3, 0xb5, 0xb6, 0xb7, 0xb7, 0xb6, 0xb5, 0xb5, 0xb5, 0xb3, 0xb1, 0xb3, 0xb3, 0xb3, 0xb1, 0xaf, 0xaf, 0xaf, 0xaa, 0xad, 0xaa, 0xab, 0xad, 0xa7, 0xa7, 0xa3, 0xa7, 0xa7, 0xa9, 0xa7, 0xa9, 0xa9, 0xab, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xab, 0xab, 0xa9, 0xab, 0xaf, 0x95, 0x81, 0x8f, 0x91, 0x95, 0x96, 0x9a, 0x9a, 0x9a, 0x9d, 0x9d, 0xa1, 0xa1, 0xa1, 0x9d, 0xa1, 0xa4, 0xa1, 0xa4, 0xa6, 0xa4, 0xa4, 0xa4, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa2, 0xa1, 0x52, 0xa6, 0xb3, 0xb3, 0xb1, 0xb1, 0xb5, 0xab, 0x51, 0x91, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x91, 0x99, 0xa6, 0xa2, 0xa2, 0x9f, 0xa2, 0x52, 0x9a, 0x9a, 0x9d, 0x9d, 0x9d, 0xa1, 0xa1, 0xa4, 0xa6, 0xa9, 0xa9, 0xad, 0xad, 0xaf, 0xad, 0xaf, 0xaf, 0xaf, 0xad, 0xa9, 0xa6, 0xa9, 0xa6, 0xa7, 0xa6, 0xa2, 0xa6, 0xa6, 0xa7, 0xa6, 0xa2, 0xa7, 0xa6, 0xa7, 0xa2, 0xa6, 0xa6, 0xa2, 0xa9, 0xab, 0xad, 0xaf, 0xb3, 0xb5, 0xb5, 0xb5, 0xb5, 0xb3, 0xb5, 0xb5, 0xb6, 0xb5, 0xb6, 0xb6, 0xb6, 0xb7, 0xb7, 0xb9, 0xb7, 0xb9, 0xba, 0xbb, 0xba, 0xb9, 0xbb, 0xcf, 0xbc, 0xbe, 0xbd, 0xbd, 0xbb, 0xbb, 0xbd, 0xbd, 0xbd, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xba, 0xb9, 0xb9, 0xbb, 0xb5, 0xa6, 0xa4, 0xa6, 0xa6, 0xa6, 0xa6, 0xa6, 0xa9, 0xa6, 0xa9, 0xa6, 0xa6, 0xa6, 0xa6, 0xa6, 0xa6, 0xa6, 0xa6, 0xa6, 0xa4, 0xa1, 0xa4, 0x2d, 0x3b, 0x42, 0x40, 0x41, 0x41, 0x41, 0x41, 0x41, 0x40, 0x40, 0x39, 0x39, 0x39, 0x20, 0x13, 0x14, 0x13, 0x14, 0x17, 0x17, 0x1b, 0x1b, 0xf0, 0xf1, 0xcb, 0x9b, 0x9d, 0xa1, 0xaf, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb9, 0xb9, 0xb7, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xbb, 0x2a, 0x23, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x2b, 0x2f, 0x2f, 0x2f, 0x2f, 0x34, 0x32, 0x34, 0x32, 0x32, 0x21, 0x1f, 0x23, 0x20, 0x29, 0xcc, 0xaa, 0xa0, 0xa8, 0x9e, 0xa8, 0xa0, 0xa8, 0xa0, 0xa8, 0xa8, 0xa7, 0xf9, 0x3a, 0x3d, 0x36, 0x28, 0x30, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e,
0xd1, 0xc1, 0xc0, 0xbf, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbf, 0xc0, 0xc0, 0xc0, 0xbf, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc1, 0xc0, 0xc0, 0xc0, 0xc0, 0xbf, 0xbf, 0xbf, 0xc0, 0xc0, 0xbf, 0xc0, 0xc0, 0xc1, 0xc0, 0xc1, 0xc1, 0xc0, 0xc1, 0xc1, 0xc0, 0xc0, 0xc0, 0xc0, 0xc1, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xbf, 0xc0, 0xb9, 0xb2, 0xae, 0xac, 0xaa, 0xac, 0xaa, 0xac, 0xaa, 0xa8, 0xaa, 0xaa, 0xa8, 0xaa, 0xaa, 0xaa, 0xaa, 0xa8, 0xad, 0xaf, 0xf3, 0xf0, 0xf3, 0xd9, 0xd9, 0xd9, 0x94, 0x9f, 0xa3, 0xa3, 0xa3, 0xa3, 0xa3, 0xaa, 0xa3, 0xa7, 0xa3, 0xa7, 0xa7, 0xa7, 0xa2, 0xa3, 0xa7, 0xa7, 0x9f, 0x8e, 0x8e, 0x90, 0x98, 0x8a, 0x84, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x8e, 0x8a, 0x8e, 0x8a, 0x8e, 0x8c, 0x90, 0x90, 0x8d, 0x89, 0x8b, 0x8b, 0x83, 0x8b, 0x83, 0x81, 0x83, 0x81, 0x83, 0x81, 0x83, 0x81, 0x83, 0x7e, 0x83, 0x83, 0x7e, 0x83, 0x83, 0x91, 0x89, 0x50, 0x89, 0x89, 0x89, 0x89, 0x9a, 0xb1, 0xab, 0xad, 0xad, 0xaf, 0xaf, 0xb1, 0xb1, 0xb3, 0xb5, 0xb6, 0xb9, 0xb9, 0xb6, 0xb5, 0xb5, 0xb5, 0xb3, 0xb3, 0xb3, 0xb3, 0xaf, 0xaf, 0xaf, 0xaf, 0xad, 0xaa, 0xad, 0xa7, 0xab, 0xab, 0xa7, 0xa7, 0xa7, 0xa7, 0xa9, 0xa7, 0xa9, 0xab, 0xa9, 0xa9, 0xa9, 0xa9, 0xab, 0xa9, 0xa9, 0xab, 0xa9, 0xa9, 0xa9, 0xad, 0x97, 0x81, 0x86, 0x8f, 0x51, 0x95, 0x9a, 0x9a, 0x9a, 0x9a, 0x9d, 0x9d, 0x9a, 0x9d, 0x9d, 0x9d, 0xa1, 0xa1, 0xa1, 0xa4, 0xa4, 0xa4, 0xa1, 0xa4, 0xa1, 0xa1, 0xa1, 0xa2, 0xa1, 0xa1, 0xa1, 0xa2, 0x52, 0xa9, 0xb3, 0xb1, 0xb1, 0xb1, 0xb1, 0xb6, 0xad, 0x51, 0x91, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x91, 0x9a, 0xa2, 0xa2, 0xa2, 0xa1, 0xa2, 0x9f, 0xa2, 0x99, 0x9a, 0x9a, 0xa1, 0xa1, 0xa4, 0xa4, 0xa6, 0xa6, 0xa9, 0xab, 0xad, 0xad, 0xab, 0xaf, 0xad, 0xaf, 0xad, 0xad, 0xa9, 0xa6, 0xa6, 0xa6, 0xa2, 0xa6, 0xa7, 0xa6, 0xa6, 0xa2, 0xa6, 0xa2, 0xa6, 0xa2, 0xa7, 0xa2, 0xa6, 0xa2, 0xa6, 0xab, 0xab, 0xab, 0xb1, 0xb3, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb7, 0xb7, 0xb9, 0xb7, 0xba, 0xb9, 0xba, 0xba, 0xbd, 0xbc, 0xbe, 0xbe, 0xbe, 0xbd, 0xbd, 0xbd, 0xbb, 0xbd, 0xbd, 0xbd, 0xbb, 0xbb, 0xba, 0xbb, 0xbb, 0xbb, 0xba, 0xbb, 0xba, 0xb9, 0xb7, 0xb9, 0xbd, 0xb7, 0xa9, 0xa4, 0xa6, 0xa6, 0xa6, 0xa6, 0xa6, 0xa9, 0xa6, 0xa9, 0xa6, 0xa6, 0xa6, 0xa6, 0xa6, 0xa6, 0xa4, 0xa6, 0xa4, 0xa4, 0xa1, 0xf5, 0x2f, 0x41, 0x41, 0x41, 0x41, 0x41, 0x41, 0x41, 0x41, 0x41, 0x42, 0x41, 0x40, 0x39, 0x35, 0x35, 0x35, 0x32, 0x2d, 0x35, 0x2d, 0x37, 0x31, 0xf5, 0xf6, 0xf8, 0xa5, 0xa7, 0xb5, 0xba, 0xb9, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb6, 0xb9, 0xb7, 0xb7, 0xb7, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xbd, 0xfa, 0x26, 0x2a, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x32, 0x34, 0x32, 0x32, 0x2b, 0x28, 0x23, 0x1f, 0x21, 0x28, 0xf2, 0xa5, 0xa3, 0xa5, 0xa0, 0xa0, 0xa5, 0xa0, 0xa8, 0xa8, 0xa8, 0xa7, 0x3e, 0x38, 0x3b, 0x3d, 0x2f, 0x2a, 0x30, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e,
0xc1, 0xd1, 0xc0, 0xc0, 0xc0, 0xbf, 0xbe, 0xbe, 0xbe, 0xbd, 0xbe, 0xbf, 0xc0, 0xc0, 0xc0, 0xc0, 0xbf, 0xc0, 0xbf, 0xc0, 0xc0, 0xc0, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbe, 0xbe, 0xbe, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xc0, 0xc0, 0xc0, 0xc0, 0xc1, 0xc1, 0xc0, 0xc0, 0xc0, 0xc0, 0xc1, 0xc0, 0xc1, 0xc0, 0xc1, 0xc0, 0xc1, 0xc0, 0xc1, 0xc0, 0xc0, 0xc1, 0xbe, 0xa0, 0xa0, 0xae, 0xae, 0xae, 0xae, 0xae, 0xae, 0xaa, 0xa8, 0xa8, 0xaa, 0xa8, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xad, 0xaa, 0xf3, 0xf1, 0xf3, 0xd9, 0xf1, 0x98, 0x9f, 0x9c, 0xa3, 0xa3, 0xa3, 0xa7, 0xa3, 0xa7, 0xa3, 0xa7, 0xa7, 0xa3, 0xa7, 0xa3, 0xa7, 0xa3, 0xa2, 0xa7, 0x9f, 0x8e, 0x8e, 0x8e, 0x88, 0x84, 0x84, 0x88, 0x84, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x8a, 0x8a, 0x8e, 0x8a, 0x8e, 0x8e, 0x8d, 0x83, 0x83, 0x8b, 0x86, 0x83, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x78, 0x7e, 0x7e, 0x7e, 0x7e, 0x83, 0x50, 0x89, 0x50, 0x89, 0x89, 0x4f, 0x95, 0xaf, 0xab, 0xad, 0xad, 0xad, 0xaf, 0xb1, 0xb1, 0xb3, 0xb5, 0xb5, 0xb6, 0xb9, 0xb7, 0xb6, 0xb5, 0xb5, 0xb5, 0xb3, 0xb3, 0xb3, 0xb1, 0xaf, 0xaf, 0xaf, 0xad, 0xaf, 0xa7, 0xad, 0xa7, 0xab, 0xa9, 0xa7, 0xa7, 0xa7, 0xa7, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa6, 0xab, 0xa9, 0xa9, 0xa9, 0xad, 0x97, 0x81, 0x87, 0x8d, 0x51, 0x51, 0x95, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x9d, 0x9d, 0xa1, 0x9d, 0xa1, 0xa1, 0xa4, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa2, 0x52, 0xa1, 0x52, 0xa7, 0xb3, 0xb1, 0xb3, 0xb1, 0xb1, 0xb1, 0xb6, 0xaf, 0x96, 0x50, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x91, 0x96, 0xa4, 0xa2, 0xa2, 0xa2, 0x52, 0x9f, 0xa2, 0xa2, 0x52, 0x9d, 0x9a, 0xa1, 0xa1, 0xa4, 0xa6, 0xa6, 0xa9, 0xa9, 0xa9, 0xab, 0xab, 0xad, 0xad, 0xad, 0xad, 0xaf, 0xad, 0xab, 0xa9, 0xa6, 0xa9, 0xa6, 0xa6, 0xa2, 0xa6, 0xa4, 0xa6, 0xa2, 0xa6, 0xa2, 0xa6, 0xa6, 0xa4, 0xa7, 0xa2, 0xa9, 0xad, 0xab, 0xab, 0xb1, 0xb1, 0xb5, 0xb3, 0xb5, 0xb5, 0xb5, 0xb5, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb7, 0xb7, 0xb7, 0xb9, 0xb9, 0xb9, 0xba, 0xb9, 0xbb, 0xbe, 0xbd, 0xbe, 0xbd, 0xbe, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbb, 0xbd, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xba, 0xba, 0xba, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xad, 0xa1, 0xa6, 0xa6, 0xa9, 0xa6, 0xa6, 0xa6, 0xa6, 0xa6, 0xa6, 0xa6, 0xa6, 0xa6, 0xa6, 0xa6, 0xa6, 0xa4, 0xa4, 0xa1, 0xda, 0x28, 0x3d, 0x41, 0x41, 0x40, 0x41, 0x41, 0x41, 0x40, 0x41, 0x40, 0x41, 0x41, 0x41, 0x45, 0x45, 0x45, 0x45, 0x44, 0x45, 0x45, 0x44, 0x44, 0x45, 0x45, 0x47, 0x47, 0xfd, 0xbe, 0xbc, 0xbc, 0xbc, 0xbc, 0xbc, 0xbd, 0xb8, 0xbb, 0xbb, 0xbb, 0xb9, 0xba, 0xb9, 0xb7, 0xb9, 0xb9, 0xb9, 0xb9, 0xb7, 0xbd, 0x35, 0x23, 0x32, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x34, 0x32, 0x34, 0x32, 0x32, 0x28, 0x1f, 0x23, 0x1f, 0x21, 0x24, 0x31, 0xa3, 0xaa, 0x9e, 0xa8, 0xa0, 0xa8, 0xa0, 0xa8, 0xa8, 0xa7, 0xf9, 0x3a, 0x3b, 0x3f, 0x36, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e,
0xc1, 0xc1, 0xc1, 0xc0, 0xbf, 0xc0, 0xc0, 0xc0, 0xbf, 0xbf, 0xbf, 0xbf, 0xc0, 0xbf, 0xbf, 0xbf, 0xc0, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xc0, 0xbf, 0xbf, 0xbf, 0xbf, 0xbe, 0xbf, 0xbe, 0xbf, 0xbe, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xc0, 0xbf, 0xc0, 0xc0, 0xc0, 0xc1, 0xc0, 0xc1, 0xc0, 0xc0, 0xc0, 0xc1, 0xc0, 0xc0, 0xc0, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xaf, 0x83, 0x88, 0x8a, 0x8e, 0x98, 0x9c, 0xa0, 0xa8, 0xae, 0xae, 0xb1, 0xae, 0xaa, 0xaa, 0xa8, 0xaa, 0xa8, 0xaa, 0xaa, 0xad, 0xa8, 0xf1, 0xf1, 0xf1, 0xca, 0x98, 0x9f, 0x9c, 0x9f, 0xa3, 0xa3, 0xa3, 0xa3, 0xa3, 0xa7, 0xa3, 0xa7, 0xa3, 0xa7, 0xa3, 0xa3, 0xa2, 0xa3, 0x9f, 0xa7, 0x9c, 0x8e, 0x8e, 0x84, 0x80, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x8a, 0x8a, 0x8a, 0x8e, 0x87, 0x83, 0x83, 0x86, 0x81, 0x7e, 0x7e, 0x7e, 0x7e, 0x7a, 0x7e, 0x7e, 0x78, 0x7a, 0x7e, 0x7e, 0x78, 0x7e, 0x78, 0x7a, 0x83, 0x50, 0x89, 0x8b, 0x89, 0x83, 0x95, 0xaa, 0xad, 0xab, 0xad, 0xad, 0xaf, 0xaf, 0xaf, 0xb1, 0xb3, 0xb5, 0xb5, 0xb6, 0xb9, 0xb7, 0xb6, 0xb5, 0xb5, 0xb3, 0xb5, 0xb3, 0xb1, 0xaf, 0xaf, 0xaf, 0xad, 0xab, 0xab, 0xab, 0xab, 0xa9, 0xa9, 0xa9, 0xa7, 0xa7, 0xab, 0xa9, 0xa9, 0xab, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa6, 0xa9, 0xab, 0x93, 0x7f, 0x87, 0x8d, 0x8f, 0x51, 0x95, 0x96, 0x9a, 0x9a, 0x51, 0x95, 0x96, 0x9a, 0x9a, 0x9a, 0x9d, 0x9d, 0x9d, 0xa1, 0xa4, 0xa4, 0xa1, 0xa1, 0xa1, 0xa1, 0xa2, 0xa1, 0xa2, 0xa1, 0x52, 0xa6, 0xb3, 0xb1, 0xb1, 0xb1, 0xb3, 0xaf, 0xb3, 0xb5, 0xb1, 0x99, 0x50, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0xa1, 0xa2, 0xa2, 0x52, 0xa2, 0x52, 0xa2, 0x9f, 0xa2, 0x52, 0x52, 0x9a, 0xa1, 0xa1, 0xa4, 0xa6, 0xa6, 0xa9, 0xa9, 0xa9, 0xab, 0xab, 0xab, 0xab, 0xad, 0xad, 0xad, 0xad, 0xab, 0xa9, 0xa9, 0xa6, 0xa6, 0xa6, 0xa2, 0xa6, 0xa2, 0xa6, 0xa2, 0xa4, 0xa2, 0xa2, 0xa6, 0xa6, 0xa7, 0xa9, 0xab, 0xad, 0xab, 0xad, 0xaf, 0xb3, 0xb3, 0xb3, 0xb3, 0xb5, 0xb5, 0xb5, 0xb5, 0xb6, 0xb6, 0xb6, 0xb7, 0xb6, 0xb9, 0xb7, 0xb9, 0xb9, 0xba, 0xb9, 0xbd, 0xbe, 0xbe, 0xbd, 0xbe, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbb, 0xbd, 0xbb, 0xba, 0xbb, 0xba, 0xba, 0xb9, 0xb9, 0xb9, 0xb7, 0xb7, 0xb7, 0xb9, 0xb8, 0xb3, 0xa6, 0xa4, 0xa6, 0xa9, 0xa6, 0xa6, 0xa6, 0xa6, 0xa6, 0xa6, 0xa6, 0xa6, 0xa4, 0xa6, 0xa4, 0xa4, 0xa4, 0xa1, 0xa3, 0x2b, 0x32, 0x40, 0x41, 0x41, 0x41, 0x41, 0x41, 0x41, 0x41, 0x41, 0x40, 0x41, 0x40, 0x41, 0x42, 0x42, 0x42, 0x42, 0x44, 0x42, 0x42, 0x43, 0x42, 0xfc, 0x43, 0x46, 0xdd, 0xcf, 0xbe, 0xbc, 0xcf, 0xcf, 0xcf, 0xbc, 0xcf, 0xcf, 0xcf, 0xcf, 0xcf, 0xcf, 0xcf, 0xbc, 0xbd, 0xbc, 0xbd, 0xbd, 0xbd, 0xbb, 0xbe, 0x32, 0x26, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x34, 0x32, 0x36, 0x32, 0x32, 0x28, 0x23, 0x23, 0x23, 0x1f, 0x21, 0x24, 0xf4, 0xa3, 0xa8, 0xa0, 0xa5, 0xa0, 0xa8, 0xa8, 0xa0, 0xaa, 0x3e, 0x3a, 0x3b, 0x3b, 0x3d, 0x2f, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e,
0xc1, 0xc1, 0xc0, 0xc0, 0xbf, 0xbf, 0xbf, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbe, 0xbe, 0xbd, 0xbf, 0xbe, 0xbf, 0xbe, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xc0, 0xc0, 0xc0, 0xbf, 0xc0, 0xc0, 0xc0, 0xbf, 0xbf, 0xbf, 0xbe, 0xbf, 0xbd, 0xbb, 0xb9, 0xbf, 0xa2, 0x4e, 0x81, 0xd7, 0x7d, 0x7d, 0x80, 0x88, 0x88, 0x8e, 0x98, 0x9c, 0xa3, 0xa8, 0xaa, 0xb1, 0xae, 0xb1, 0xaa, 0xaa, 0xa7, 0xaf, 0xa0, 0xf0, 0xf1, 0xca, 0x9b, 0x9c, 0x9c, 0x9f, 0xa0, 0xa3, 0xa3, 0xa7, 0xa3, 0xa3, 0xa7, 0xa3, 0xa7, 0xa3, 0xa2, 0x9f, 0xa7, 0xa3, 0xa2, 0x9f, 0xa2, 0x9c, 0x88, 0x80, 0x80, 0x84, 0x80, 0x84, 0x80, 0x84, 0x84, 0x84, 0x84, 0x84, 0x88, 0x84, 0x88, 0x88, 0x88, 0x8a, 0x88, 0x8e, 0x87, 0x7e, 0x83, 0x7e, 0x7a, 0x7e, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x76, 0x7a, 0x76, 0x7a, 0x76, 0x7a, 0x76, 0x76, 0x7e, 0x50, 0x83, 0x89, 0x83, 0x92, 0xa5, 0xa3, 0xaa, 0xab, 0xad, 0xad, 0xaf, 0xaf, 0xb3, 0xb1, 0xb3, 0xb5, 0xb5, 0xb6, 0xb9, 0xb7, 0xb5, 0xb5, 0xb3, 0xb5, 0xb3, 0xb1, 0xb1, 0xb1, 0xaf, 0xad, 0xad, 0xab, 0xab, 0xa9, 0xa7, 0xa9, 0xa9, 0xa9, 0xa9, 0xa7, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa6, 0xa9, 0xad, 0x97, 0x7b, 0x85, 0x8d, 0x8d, 0x8f, 0x95, 0x96, 0x9a, 0x51, 0x8f, 0x51, 0x95, 0x96, 0x9a, 0x95, 0x9d, 0x9a, 0x9d, 0x9d, 0xa4, 0xa4, 0xa1, 0xa1, 0x52, 0xa1, 0xa2, 0xa1, 0xa2, 0x52, 0xa7, 0xb1, 0xb3, 0xb1, 0xb1, 0xb1, 0xb1, 0xb3, 0xb1, 0xb6, 0xb3, 0x9a, 0x50, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x52, 0xa6, 0xa2, 0xa2, 0xa2, 0xa2, 0xa2, 0xa2, 0xa2, 0x9f, 0xa2, 0x52, 0x9d, 0x9d, 0xa1, 0xa1, 0xa4, 0xa4, 0xa9, 0xa6, 0xa9, 0xa9, 0xa9, 0xab, 0xab, 0xab, 0xab, 0xab, 0xab, 0xab, 0xa6, 0xa9, 0xa6, 0xa2, 0xa4, 0xa6, 0xa6, 0xa4, 0xa6, 0xa2, 0xa2, 0xa9, 0xa2, 0xa6, 0xa2, 0xa7, 0xab, 0xad, 0xad, 0xad, 0xad, 0xaf, 0xb3, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb6, 0xb5, 0xb6, 0xb6, 0xb7, 0xb7, 0xb7, 0xb9, 0xb9, 0xb9, 0xb9, 0xba, 0xbe, 0xbe, 0xbe, 0xbd, 0xbe, 0xbd, 0xbd, 0xbd, 0xbb, 0xbd, 0xbb, 0xbd, 0xbd, 0xbd, 0xbb, 0xbb, 0xbb, 0xba, 0xb9, 0xb9, 0xb9, 0xb7, 0xb7, 0xb7, 0xb7, 0xb6, 0xb7, 0xb9, 0xb5, 0xa6, 0xa6, 0xa4, 0xa6, 0xa6, 0xa6, 0xa6, 0xa6, 0xa6, 0xa4, 0xa6, 0xa6, 0xa4, 0xa6, 0xa4, 0xa4, 0xa4, 0xa1, 0x35, 0x2f, 0x39, 0x42, 0x41, 0x40, 0x41, 0x40, 0x41, 0x40, 0x41, 0x41, 0x41, 0x41, 0x41, 0x42, 0x42, 0x42, 0x42, 0x42, 0x42, 0x44, 0x43, 0x45, 0x43, 0x46, 0xfd, 0xdd, 0xbe, 0xbd, 0xcf, 0xbc, 0xcf, 0xbc, 0xcf, 0xcf, 0xbc, 0xbc, 0xcf, 0xbc, 0xcf, 0xcf, 0xcf, 0xcf, 0xbf, 0xcf, 0xcf, 0xbf, 0xcf, 0xc1, 0x46, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x34, 0x32, 0x36, 0x32, 0x2b, 0x23, 0x1f, 0x1f, 0x1f, 0x1f, 0x21, 0x24, 0xda, 0xa9, 0xa8, 0xa0, 0xa8, 0xa0, 0xa8, 0xa8, 0xa7, 0x3e, 0x3a, 0x3b, 0x3d, 0x3d, 0x39, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e,
0xbf, 0xc1, 0xc1, 0xc0, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xc0, 0xbf, 0xbf, 0xc0, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbe, 0xbf, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbf, 0xbe, 0xbf, 0xc0, 0xbf, 0xc0, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbe, 0xbe, 0xbe, 0xbd, 0xbb, 0xb9, 0xb9, 0xbd, 0x95, 0x4d, 0x89, 0x7f, 0x80, 0x80, 0x7d, 0x7d, 0x7d, 0x7d, 0xc9, 0x7d, 0x80, 0x88, 0x88, 0x94, 0x98, 0xa0, 0xa3, 0xae, 0xaf, 0xaf, 0xb3, 0xa0, 0xf0, 0x8e, 0x9c, 0x93, 0xa0, 0x9c, 0xa3, 0x9f, 0xa3, 0xa3, 0xa3, 0xa3, 0xa3, 0xa3, 0xa3, 0xa7, 0xa3, 0xa2, 0xa3, 0x9f, 0x9f, 0x9f, 0x9f, 0xa7, 0x90, 0x80, 0x80, 0x80, 0x84, 0x80, 0x80, 0x80, 0x84, 0x80, 0x80, 0x84, 0x80, 0x84, 0x80, 0x82, 0x84, 0x82, 0x88, 0x82, 0xca, 0x81, 0x83, 0x7a, 0x7a, 0x76, 0x7a, 0x76, 0x7a, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x71, 0x7e, 0x89, 0x83, 0x4e, 0x90, 0xa5, 0xa0, 0xaa, 0xaa, 0xad, 0xad, 0xaf, 0xaf, 0xb1, 0xb1, 0xb3, 0xb3, 0xb5, 0xb5, 0xb6, 0xb7, 0xb7, 0xb5, 0xb5, 0xb3, 0xb5, 0xb1, 0xaf, 0xaf, 0xaf, 0xad, 0xad, 0xab, 0xab, 0xa9, 0xab, 0xa9, 0xa9, 0xa6, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa6, 0xa9, 0xa6, 0xa6, 0xa6, 0xad, 0x93, 0x7b, 0x81, 0x87, 0x8d, 0x8f, 0x95, 0x95, 0x8b, 0x87, 0x8f, 0x8f, 0x8f, 0x51, 0x96, 0x95, 0x96, 0x9a, 0x99, 0x9a, 0xa4, 0xa4, 0xa1, 0xa1, 0xa1, 0x52, 0xa2, 0xa2, 0x52, 0xa6, 0xb1, 0xb3, 0xb1, 0xb1, 0xb3, 0xb1, 0xb3, 0xb1, 0xb1, 0xb5, 0xb5, 0x52, 0x91, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x91, 0xa1, 0xa4, 0xa2, 0xa2, 0x52, 0xa2, 0x52, 0xa2, 0xa2, 0xa2, 0x9f, 0xa2, 0xa2, 0x99, 0x9d, 0xa1, 0xa4, 0xa4, 0xa4, 0xa4, 0xa6, 0xa9, 0xa9, 0xa9, 0xa9, 0xab, 0xa9, 0xab, 0xab, 0xab, 0xa9, 0xa9, 0xa6, 0xa6, 0xa6, 0xa4, 0xa2, 0xa4, 0xa2, 0xa6, 0xa2, 0xa4, 0xa2, 0xa6, 0xa6, 0xa6, 0xa9, 0xab, 0xad, 0xad, 0xaf, 0xad, 0xaf, 0xb1, 0xb3, 0xb5, 0xb5, 0xb3, 0xb5, 0xb5, 0xb6, 0xb6, 0xb6, 0xb7, 0xb6, 0xb7, 0xb9, 0xb9, 0xb9, 0xb9, 0xbd, 0xbd, 0xbe, 0xbe, 0xbe, 0xbb, 0xbe, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xba, 0xba, 0xbb, 0xbb, 0xbb, 0xba, 0xb9, 0xb9, 0xb7, 0xb6, 0xb7, 0xb6, 0xb6, 0xb6, 0xb6, 0xb7, 0xb6, 0xab, 0xa4, 0xa4, 0xa6, 0xa9, 0xa6, 0xa6, 0xa6, 0xa6, 0xa6, 0xa6, 0xa6, 0xa4, 0xa4, 0xa4, 0xa4, 0xa4, 0x31, 0x2f, 0x32, 0x3f, 0x42, 0x41, 0x41, 0x41, 0x41, 0x41, 0x40, 0x41, 0x40, 0x41, 0x41, 0x41, 0x42, 0x44, 0x42, 0x42, 0x42, 0x43, 0x44, 0x43, 0xfc, 0xfc, 0x46, 0xbc, 0xbd, 0xbe, 0xbd, 0xbc, 0xbc, 0xcf, 0xbc, 0xcf, 0xbc, 0xcf, 0xcf, 0xcf, 0xcf, 0xcf, 0xbf, 0xbc, 0xcf, 0xcf, 0xbf, 0xcf, 0xbf, 0xbf, 0xc0, 0x41, 0x2a, 0x36, 0x34, 0x34, 0x2f, 0x34, 0x2f, 0x2b, 0x2f, 0x2f, 0x36, 0x32, 0x34, 0x32, 0x2f, 0x21, 0x23, 0x1f, 0x23, 0x1f, 0x1f, 0x21, 0x29, 0xcc, 0xaa, 0xa0, 0xa0, 0xa8, 0xa8, 0xa8, 0xa7, 0x3c, 0x3a, 0x3b, 0x3b, 0x3b, 0x3d, 0x2f, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e,
0xc0, 0xbf, 0xc0, 0xc0, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xc0, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbe, 0xbe, 0xbe, 0xbf, 0xbe, 0xbd, 0xbd, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbf, 0xc0, 0xc0, 0xbf, 0xbf, 0xbe, 0xbf, 0xbe, 0xbe, 0xbe, 0xbb, 0xbd, 0xba, 0xb9, 0xb9, 0xba, 0xb9, 0x8b, 0x4e, 0x83, 0x89, 0x7d, 0xd7, 0x7d, 0xc9, 0x7d, 0xc9, 0x7d, 0xc9, 0xc8, 0xc8, 0xc8, 0xc8, 0xc8, 0xc9, 0x7d, 0x84, 0x8e, 0x98, 0x9c, 0xa9, 0xcb, 0x8a, 0x9c, 0x9c, 0x9c, 0xa3, 0x9c, 0xa3, 0xa3, 0xa3, 0xa3, 0xa3, 0xa3, 0xa3, 0xa3, 0xa3, 0x9f, 0xa3, 0x9f, 0x9f, 0x9f, 0x9c, 0x9c, 0x9c, 0x9c, 0x84, 0x80, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x80, 0x84, 0x80, 0x84, 0x80, 0x84, 0x84, 0x80, 0x84, 0x84, 0x88, 0x88, 0x88, 0x81, 0x78, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x71, 0x76, 0x76, 0x76, 0x75, 0x71, 0x7a, 0x89, 0x83, 0x8c, 0xda, 0x9e, 0x9e, 0xa8, 0xaa, 0xab, 0xad, 0xaf, 0xaf, 0xaf, 0xb1, 0xb3, 0xb3, 0xb5, 0xb5, 0xb6, 0xb7, 0xb9, 0xb5, 0xb5, 0xb5, 0xb1, 0xb1, 0xaf, 0xaf, 0xaf, 0xad, 0xad, 0xa9, 0xab, 0xa9, 0xa9, 0xa6, 0xa6, 0xa6, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa6, 0xa9, 0xa6, 0xa6, 0xa6, 0xa6, 0xa6, 0xad, 0x93, 0x7b, 0x7f, 0x87, 0x8d, 0x8d, 0x95, 0x8d, 0x81, 0x87, 0x87, 0x8b, 0x8d, 0x51, 0x92, 0x95, 0x95, 0x96, 0x95, 0x9a, 0xa2, 0xa4, 0xa1, 0xa1, 0xa2, 0xa1, 0xa1, 0x52, 0xa6, 0xb3, 0xb3, 0xb1, 0xb3, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb3, 0xb5, 0xb5, 0x9d, 0x50, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x9d, 0xa6, 0xa2, 0x52, 0xa2, 0xa2, 0x9f, 0xa2, 0xa2, 0xa2, 0xa2, 0xa2, 0xa2, 0xa2, 0x52, 0x9d, 0x9d, 0xa1, 0xa1, 0xa4, 0xa4, 0xa6, 0xa6, 0xa9, 0xa6, 0xa9, 0xa9, 0xab, 0xa9, 0xa9, 0xab, 0xa9, 0xa9, 0xa6, 0xa2, 0xa6, 0xa4, 0xa2, 0xa4, 0xa4, 0xa4, 0xa4, 0xa6, 0xa6, 0xa6, 0xa2, 0xa9, 0xab, 0xab, 0xad, 0xab, 0xad, 0xad, 0xaf, 0xb1, 0xb3, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb6, 0xb7, 0xb7, 0xb7, 0xb9, 0xb9, 0xb9, 0xba, 0xbe, 0xbe, 0xbd, 0xbd, 0xbe, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbb, 0xbd, 0xbb, 0xbd, 0xbb, 0xbb, 0xbb, 0xba, 0xba, 0xb9, 0xb9, 0xb7, 0xb7, 0xb6, 0xb6, 0xb6, 0xb5, 0xb6, 0xb5, 0xb6, 0xb7, 0xad, 0xa6, 0xa4, 0xa6, 0xa6, 0xa6, 0xa6, 0xa6, 0xa4, 0xa6, 0xa4, 0xa6, 0xa6, 0xa4, 0xa4, 0xa1, 0xf6, 0x2f, 0x32, 0x36, 0x41, 0x41, 0x41, 0x41, 0x41, 0x41, 0x41, 0x41, 0x41, 0x41, 0x42, 0x41, 0x42, 0x42, 0x42, 0x42, 0x42, 0x43, 0x43, 0x45, 0xfc, 0x46, 0xfd, 0xbc, 0xbd, 0xbd, 0xbd, 0xbc, 0xcf, 0xbc, 0xbc, 0xbc, 0xcf, 0xbc, 0xcf, 0xcf, 0xcf, 0xcf, 0xbc, 0xcf, 0xcf, 0xbf, 0xcf, 0xbf, 0xcf, 0xcf, 0xc0, 0xcf, 0x34, 0x2f, 0x36, 0x34, 0x36, 0x34, 0x34, 0x34, 0x2f, 0x34, 0x2f, 0x32, 0x34, 0x32, 0x32, 0x2a, 0x1f, 0x23, 0x1f, 0x23, 0x1f, 0x1f, 0x21, 0x29, 0xa0, 0xaa, 0xa0, 0xa8, 0xa0, 0xa8, 0xa3, 0x3e, 0x3a, 0x3d, 0x3b, 0x3d, 0x3d, 0x39, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e,
0xbf, 0xc0, 0xc0, 0xc0, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xc0, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbe, 0xbf, 0xbf, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbd, 0xbe, 0xbd, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbf, 0xbf, 0xbf, 0xbf, 0xbe, 0xbe, 0xbe, 0xbd, 0xbd, 0xbd, 0xbb, 0xb9, 0xb9, 0xb9, 0xb9, 0xbe, 0xaa, 0x4d, 0x83, 0x83, 0x83, 0x83, 0x7d, 0xc9, 0x7d, 0xc8, 0x7d, 0xc9, 0xc9, 0xc9, 0xc9, 0xc8, 0xc8, 0xc8, 0xc8, 0xc8, 0xc7, 0xc7, 0xc7, 0xc8, 0xc8, 0x82, 0x9c, 0x98, 0x9c, 0x9c, 0x9c, 0xa0, 0xa3, 0x9c, 0xa3, 0xa3, 0xa3, 0xa3, 0xa3, 0xa3, 0xa3, 0xa3, 0x9f, 0xa3, 0x9c, 0x9f, 0x9c, 0x9f, 0x9c, 0x8c, 0x8c, 0x80, 0x80, 0x80, 0x84, 0x80, 0x84, 0x80, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x82, 0x84, 0x82, 0x84, 0x82, 0x88, 0x88, 0x7b, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x6d, 0x76, 0x6d, 0x76, 0x6d, 0x75, 0x6d, 0x75, 0x6d, 0x76, 0x6d, 0x6d, 0x76, 0x83, 0x8c, 0xf7, 0xcc, 0xdb, 0x9e, 0xa5, 0xa3, 0xaa, 0xad, 0xaf, 0xaf, 0xaf, 0xb1, 0xb3, 0xb1, 0xb5, 0xb5, 0xb5, 0xb7, 0xb7, 0xb5, 0xb5, 0xb3, 0xb1, 0xaf, 0xaf, 0xaf, 0xad, 0xad, 0xad, 0xab, 0xab, 0xa9, 0xa9, 0xa9, 0xa6, 0xa6, 0xa6, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa6, 0xa9, 0xa6, 0xa6, 0xa6, 0xa6, 0xa6, 0xa6, 0xaf, 0x92, 0x75, 0x7f, 0x87, 0x87, 0x8f, 0x87, 0x7b, 0x85, 0x86, 0x85, 0x86, 0x8d, 0x8b, 0x8f, 0x51, 0x95, 0x51, 0x96, 0x96, 0xa1, 0xa4, 0xa1, 0xa1, 0xa2, 0xa1, 0xa2, 0xa2, 0xb3, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb3, 0xaf, 0xb3, 0xb5, 0xb6, 0xa2, 0x91, 0x91, 0x96, 0x96, 0x96, 0x91, 0x99, 0xa6, 0xa2, 0xa2, 0xa2, 0x52, 0xa2, 0xa2, 0xa2, 0x52, 0xa2, 0xa2, 0xa2, 0xa2, 0x9f, 0x9f, 0x99, 0x9d, 0xa1, 0xa4, 0xa1, 0xa4, 0xa4, 0xa6, 0xa6, 0xa6, 0xa6, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa6, 0xa6, 0xa6, 0xa4, 0xa6, 0xa4, 0xa6, 0xa2, 0xa4, 0xa2, 0xa4, 0xa2, 0xa6, 0xa2, 0xa9, 0xab, 0xab, 0xab, 0xad, 0xad, 0xad, 0xaf, 0xad, 0xb1, 0xb3, 0xb5, 0xb5, 0xb3, 0xb5, 0xb5, 0xb6, 0xb5, 0xb7, 0xb6, 0xb7, 0xb9, 0xb7, 0xb9, 0xba, 0xbe, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbe, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbb, 0xbd, 0xbb, 0xbd, 0xba, 0xba, 0xb9, 0xb7, 0xb6, 0xb7, 0xb6, 0xb6, 0xb5, 0xb6, 0xb5, 0xb6, 0xb5, 0xb5, 0xb6, 0xb3, 0xa6, 0xa4, 0xa6, 0xa6, 0xa6, 0xa6, 0xa6, 0xa6, 0xa6, 0xa6, 0xa4, 0xa6, 0xa4, 0xa4, 0xcc, 0x34, 0x32, 0x2f, 0x40, 0x41, 0x41, 0x41, 0x41, 0x41, 0x40, 0x41, 0x40, 0x41, 0x41, 0x41, 0x41, 0x42, 0x42, 0x44, 0x43, 0x44, 0x43, 0xfc, 0xfc, 0x46, 0xfd, 0xbc, 0xbd, 0xbe, 0xbe, 0xbd, 0xbc, 0xcf, 0xbc, 0xbc, 0xbc, 0xcf, 0xcf, 0xbc, 0xcf, 0xbe, 0xcf, 0xcf, 0xcf, 0xcf, 0xcf, 0xbc, 0xbf, 0xcf, 0xc0, 0xc1, 0x43, 0x2a, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x36, 0x34, 0x36, 0x34, 0x32, 0x34, 0x32, 0x28, 0x23, 0x23, 0x23, 0x1f, 0x23, 0x1f, 0x1f, 0x1c, 0x2d, 0xa3, 0xaa, 0xa0, 0xa8, 0xa8, 0xaa, 0x3c, 0x3a, 0x3b, 0x3d, 0x3b, 0x3d, 0x3f, 0x34, 0x23, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x26,
0xbf, 0xbe, 0xc0, 0xbf, 0xc0, 0xbe, 0xbe, 0xbe, 0xbe, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xc0, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbe, 0xbf, 0xbf, 0xbf, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbe, 0xbf, 0xbf, 0xbf, 0xbe, 0xbd, 0xbd, 0xbb, 0xbb, 0xbb, 0xba, 0xb9, 0xb9, 0xb7, 0xb7, 0xbe, 0x9f, 0x4d, 0x83, 0x83, 0x83, 0x83, 0x7e, 0xc9, 0xc9, 0xc9, 0xc8, 0xc9, 0xc9, 0xc8, 0xc9, 0xc8, 0xc9, 0xc8, 0xc9, 0xd6, 0xc9, 0xc8, 0xc9, 0xc8, 0xc7, 0x8e, 0xab, 0x9c, 0x98, 0x9c, 0x9c, 0xa3, 0x9c, 0xa3, 0xa3, 0x9c, 0xa3, 0xa3, 0x9f, 0xa3, 0x9f, 0xa3, 0x9c, 0x9f, 0x9f, 0x9c, 0x9f, 0x9c, 0x93, 0x85, 0x90, 0x82, 0xd7, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x84, 0x84, 0x84, 0x84, 0x82, 0x84, 0x88, 0x82, 0x79, 0x76, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x6d, 0x75, 0x6d, 0x75, 0x6d, 0x75, 0x6d, 0x75, 0x6d, 0x6d, 0x71, 0x8a, 0xf3, 0xf4, 0xda, 0xda, 0x9e, 0xa5, 0xa0, 0xa8, 0xaa, 0xad, 0xaf, 0xaf, 0xb1, 0xb3, 0xb3, 0xb3, 0xb5, 0xb6, 0xb7, 0xb7, 0xb5, 0xb3, 0xb3, 0xb1, 0xaf, 0xaf, 0xaf, 0xad, 0xaf, 0xab, 0xab, 0xab, 0xa9, 0xa9, 0xa6, 0xa6, 0xa4, 0xa6, 0xa9, 0xa6, 0xa9, 0xa9, 0xab, 0xa9, 0xa9, 0xa9, 0xa6, 0xa6, 0xa6, 0xa6, 0xa6, 0xa6, 0xa6, 0xa6, 0xa6, 0xa4, 0xa6, 0xaf, 0x97, 0x75, 0x7b, 0x85, 0x8d, 0x81, 0x7b, 0x7b, 0x7b, 0x85, 0x81, 0x85, 0x87, 0x86, 0x8d, 0x8f, 0x92, 0x51, 0x95, 0x96, 0x52, 0xa4, 0xa1, 0xa1, 0xa2, 0x52, 0xa6, 0xb1, 0xb1, 0xb3, 0xb1, 0xb3, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb3, 0xb6, 0xa2, 0x91, 0x96, 0x96, 0x96, 0x96, 0x9a, 0xa6, 0xa2, 0xa2, 0x52, 0xa2, 0x52, 0xa2, 0xa2, 0xa2, 0xa2, 0xa2, 0xa2, 0xa2, 0xa2, 0xa2, 0xa2, 0x52, 0x9d, 0x52, 0xa1, 0xa1, 0xa1, 0xa4, 0xa6, 0xa4, 0xa6, 0xa6, 0xa6, 0xa6, 0xa9, 0xa6, 0xa6, 0xa6, 0xa6, 0xa4, 0xa6, 0xa4, 0xa6, 0xa4, 0xa2, 0xa4, 0xa2, 0xa4, 0xa2, 0xa4, 0xa2, 0xab, 0xab, 0xad, 0xab, 0xad, 0xab, 0xaf, 0xaf, 0xaf, 0xaf, 0xb3, 0xb5, 0xb5, 0xb5, 0xb5, 0xb6, 0xb5, 0xb6, 0xb6, 0xb7, 0xb7, 0xb9, 0xb9, 0xbb, 0xbd, 0xbe, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbb, 0xbd, 0xbb, 0xbb, 0xbb, 0xbb, 0xba, 0xba, 0xb9, 0xb7, 0xb7, 0xb6, 0xb6, 0xb6, 0xb6, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb7, 0xb5, 0xab, 0xa1, 0xa6, 0xa6, 0xa6, 0xa4, 0xa6, 0xa4, 0xa6, 0xa6, 0xa6, 0xa4, 0xa1, 0xa3, 0x32, 0x32, 0x32, 0x34, 0x41, 0x41, 0x40, 0x41, 0x41, 0x41, 0x41, 0x41, 0x41, 0x41, 0x42, 0x41, 0x42, 0x42, 0x43, 0x44, 0x43, 0x45, 0x43, 0x46, 0xfd, 0xdd, 0xbc, 0xbe, 0xbd, 0xbe, 0xbe, 0xbd, 0xbc, 0xcf, 0xbc, 0xcf, 0xcf, 0xbc, 0xcf, 0xcf, 0xcf, 0xcf, 0xcf, 0xcf, 0xcf, 0xcf, 0xbe, 0xd0, 0xcf, 0xd0, 0xc0, 0xc0, 0x39, 0x30, 0x36, 0x34, 0x36, 0x34, 0x36, 0x34, 0x34, 0x3b, 0x3d, 0x2f, 0x32, 0x32, 0x28, 0x23, 0x23, 0x23, 0x23, 0x1f, 0x23, 0x1f, 0x1f, 0x1c, 0x31, 0xa3, 0xaa, 0xa0, 0xa8, 0xa3, 0x3c, 0x3a, 0x39, 0x3d, 0x3b, 0x3d, 0x3d, 0x39, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x2e, 0x2e, 0x2e, 0x2e,
0xbd, 0xbe, 0xbf, 0xbf, 0xbf, 0xbf, 0xbe, 0xbe, 0xbe, 0xbe, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbe, 0xbf, 0xbf, 0xbe, 0xbe, 0xbe, 0xbf, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbf, 0xbf, 0xbe, 0xbf, 0xbf, 0xbd, 0xbb, 0xbb, 0xba, 0xb9, 0xb9, 0xb9, 0xb9, 0xb7, 0xb7, 0xbd, 0x51, 0x4d, 0x83, 0x83, 0x83, 0x83, 0x83, 0x7a, 0xd6, 0xc8, 0xc9, 0xc8, 0xc9, 0xc8, 0xc9, 0xc8, 0xc8, 0xc8, 0xc9, 0xc8, 0xc8, 0xc8, 0xc9, 0xc8, 0xc8, 0xa1, 0xab, 0xa3, 0x9c, 0x9c, 0xa0, 0x9c, 0xa3, 0xa0, 0x9f, 0xa0, 0x9f, 0xa0, 0xa3, 0xa3, 0xa0, 0x9f, 0xa3, 0x9c, 0x9c, 0x9c, 0x9f, 0x9c, 0x8c, 0x8a, 0x8c, 0x8a, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x82, 0x80, 0x84, 0x82, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x70, 0x75, 0x74, 0x75, 0x70, 0x75, 0x70, 0x70, 0x70, 0x6c, 0x70, 0x70, 0x67, 0x80, 0xf6, 0xda, 0xf4, 0xda, 0xda, 0xdb, 0x9e, 0xa5, 0xa8, 0xa8, 0xaa, 0xaf, 0xaf, 0xb1, 0xb1, 0xb3, 0xb3, 0xb3, 0xb5, 0xb7, 0xb6, 0xb5, 0xb1, 0xb1, 0xaf, 0xb1, 0xaf, 0xad, 0xad, 0xad, 0xad, 0xab, 0xab, 0xa9, 0xa9, 0xa6, 0xa6, 0xa6, 0xa6, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa6, 0xa6, 0xa6, 0xa6, 0xa4, 0xa6, 0xa4, 0xa6, 0xa4, 0xa6, 0xa6, 0xa4, 0xa6, 0xad, 0x97, 0x75, 0x7b, 0x85, 0x85, 0x75, 0x75, 0x7b, 0x7b, 0x7b, 0x81, 0x81, 0x85, 0x86, 0x87, 0x8b, 0x8f, 0x8f, 0x51, 0x51, 0x9d, 0xa4, 0xa2, 0xa1, 0xa1, 0xa2, 0xb1, 0xb3, 0xb1, 0xb3, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb3, 0xb1, 0xb1, 0xb3, 0xb6, 0xa7, 0x91, 0x96, 0x96, 0x96, 0x96, 0xa1, 0xa6, 0x52, 0xa2, 0x52, 0xa2, 0xa2, 0xa2, 0xa2, 0xa2, 0xa2, 0xa2, 0xa2, 0xa2, 0xa2, 0x9f, 0xa7, 0x52, 0x52, 0x99, 0x9d, 0xa1, 0xa1, 0xa4, 0xa4, 0xa4, 0xa4, 0xa6, 0xa6, 0xa6, 0xa6, 0xa6, 0xa4, 0xa6, 0xa4, 0xa4, 0xa4, 0xa6, 0xa6, 0xa4, 0xa2, 0xa4, 0xa4, 0xa4, 0xa2, 0xa2, 0xa6, 0xad, 0xab, 0xab, 0xad, 0xad, 0xad, 0xad, 0xaf, 0xaf, 0xaf, 0xb3, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb6, 0xb6, 0xb7, 0xb7, 0xb7, 0xb7, 0xbb, 0xbe, 0xbd, 0xbd, 0xbe, 0xbd, 0xbe, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbb, 0xbb, 0xbb, 0xbb, 0xba, 0xba, 0xb9, 0xb7, 0xb6, 0xb6, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb3, 0xb6, 0xb5, 0xad, 0xa4, 0xa4, 0xa6, 0xa6, 0xa6, 0xa6, 0xa6, 0xa6, 0xa4, 0xa6, 0xa4, 0xa2, 0x35, 0x2f, 0x32, 0x32, 0x39, 0x41, 0x41, 0x41, 0x41, 0x41, 0x41, 0x40, 0x41, 0x41, 0x41, 0x41, 0x41, 0x42, 0x43, 0x42, 0x43, 0x43, 0xfc, 0xfc, 0x46, 0xfe, 0xbc, 0xbd, 0xbd, 0xbd, 0xbe, 0xbe, 0xbe, 0xbc, 0xbc, 0xcf, 0xbc, 0xcf, 0xcf, 0xcf, 0xcf, 0xcf, 0xcf, 0xbc, 0xbf, 0xbe, 0xcf, 0xbe, 0xcf, 0xc0, 0xcf, 0xc1, 0xfd, 0x2f, 0x2f, 0x36, 0x34, 0x34, 0x34, 0x36, 0x34, 0x36, 0x3d, 0x3d, 0x36, 0x2f, 0x2f, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x1f, 0x1f, 0x1f, 0x1c, 0xf5, 0xa9, 0xa8, 0xa3, 0xa8, 0x3c, 0x3a, 0x3d, 0x3d, 0x3d, 0x3b, 0x3d, 0x3f, 0x34, 0x21, 0x2a, 0x2a, 0x2a, 0x26, 0x2e, 0x2e, 0x2e,
0xbb, 0xbd, 0xbd, 0xbe, 0xbe, 0xbf, 0xbd, 0xbe, 0xbe, 0xbf, 0xbe, 0xbe, 0xbf, 0xbf, 0xbf, 0xc0, 0xbe, 0xbf, 0xbe, 0xbf, 0xbe, 0xbe, 0xbe, 0xbe, 0xbf, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbb, 0xbe, 0xbb, 0xbe, 0xbe, 0xbf, 0xbe, 0xbf, 0xbe, 0xbd, 0xbb, 0xba, 0xba, 0xb9, 0xb9, 0xb9, 0xb9, 0xb7, 0xbb, 0xb5, 0x86, 0x4d, 0x83, 0x7e, 0x83, 0x7e, 0x83, 0x83, 0x79, 0xc8, 0xc8, 0xc8, 0xc8, 0xc8, 0xc8, 0xc8, 0xc8, 0xc8, 0xc8, 0xc8, 0xc8, 0xc8, 0xc8, 0xc7, 0x82, 0xa9, 0xa7, 0xa7, 0x9c, 0x9c, 0x9c, 0x9c, 0xa3, 0x9c, 0xa3, 0xa3, 0xa3, 0xa3, 0x9f, 0x9c, 0xa3, 0x9c, 0x9f, 0x9c, 0x9f, 0x9c, 0x9c, 0x93, 0x8a, 0x8a, 0x8a, 0x8c, 0x82, 0x80, 0xc9, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x84, 0x7d, 0x6c, 0x75, 0x70, 0x75, 0x70, 0x70, 0x70, 0x70, 0x70, 0x6c, 0x70, 0x6c, 0x70, 0x70, 0x70, 0x70, 0x70, 0x6c, 0x6c, 0xd9, 0xf7, 0xda, 0xcc, 0xdb, 0x9e, 0x9e, 0xa8, 0xa0, 0xa8, 0xa8, 0xae, 0xaa, 0xaf, 0xad, 0xaf, 0xaf, 0xb1, 0xb1, 0xb3, 0xb3, 0xb6, 0xb5, 0xb3, 0xb1, 0xb1, 0xb1, 0xaf, 0xaf, 0xaf, 0xaf, 0xad, 0xad, 0xab, 0xab, 0xa9, 0xa9, 0xa6, 0xa4, 0xa4, 0xa6, 0xa9, 0xa9, 0xa9, 0xa6, 0xa9, 0xa6, 0xa6, 0xa6, 0xa6, 0xa6, 0xa6, 0xa4, 0xa6, 0xa6, 0xa6, 0xa4, 0xa6, 0xa4, 0xa4, 0xad, 0x93, 0x75, 0x79, 0x81, 0x70, 0x74, 0x74, 0x7b, 0x75, 0x7b, 0x7b, 0x7b, 0x85, 0x81, 0x85, 0x87, 0x86, 0x8f, 0x8f, 0x8b, 0x99, 0xa4, 0xa4, 0x52, 0xa6, 0xb1, 0xb3, 0xb3, 0xb1, 0xb3, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb3, 0xb1, 0xb1, 0xb1, 0xb6, 0xab, 0x91, 0x91, 0x96, 0x96, 0xa2, 0xa2, 0xa2, 0x52, 0xa2, 0xa2, 0x52, 0xa2, 0x52, 0xa2, 0xa2, 0xa2, 0xa2, 0xa2, 0xa2, 0xa2, 0xa2, 0xa3, 0xa2, 0x52, 0x99, 0x9d, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa4, 0xa4, 0xa6, 0xa4, 0xa6, 0xa4, 0xa4, 0xa4, 0xa1, 0xa4, 0xa1, 0xa4, 0xa6, 0xa4, 0xa4, 0xa2, 0xa2, 0xa6, 0xa2, 0xa6, 0xab, 0xad, 0xab, 0xad, 0xad, 0xaf, 0xad, 0xaf, 0xaf, 0xaf, 0xaf, 0xb3, 0xb3, 0xb5, 0xb5, 0xb5, 0xb6, 0xb6, 0xb6, 0xb6, 0xb9, 0xb7, 0xba, 0xbe, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbb, 0xbd, 0xbd, 0xbd, 0xbd, 0xbb, 0xbb, 0xbb, 0xbb, 0xba, 0xba, 0xb7, 0xb7, 0xb6, 0xb6, 0xb6, 0xb5, 0xb5, 0xb5, 0xb3, 0xb3, 0xb5, 0xb5, 0xb5, 0xb5, 0xb3, 0xb5, 0xb5, 0xb3, 0xa6, 0xa1, 0xa6, 0xa6, 0xa4, 0xa6, 0xa6, 0xa4, 0xa6, 0xa4, 0xa6, 0xf5, 0x2f, 0x32, 0x32, 0x34, 0x41, 0x41, 0x41, 0x41, 0x40, 0x41, 0x41, 0x41, 0x41, 0x42, 0x41, 0x42, 0x42, 0x43, 0x45, 0x43, 0x47, 0x43, 0x46, 0xfd, 0xdd, 0xbc, 0xbe, 0xbe, 0xbd, 0xbd, 0xbe, 0xbe, 0xbc, 0xbc, 0xcf, 0xcf, 0xcf, 0xcf, 0xcf, 0xcf, 0xcf, 0xcf, 0xcf, 0xcf, 0xcf, 0xcf, 0xcf, 0xbf, 0xcf, 0xd0, 0xbf, 0xc1, 0x3c, 0x2f, 0x34, 0x36, 0x34, 0x36, 0x34, 0x34, 0x36, 0x3b, 0x3d, 0x3d, 0x39, 0x2f, 0x1f, 0x23, 0x23, 0x23, 0x1f, 0x23, 0x23, 0x23, 0x23, 0x1f, 0x1c, 0xf6, 0xa7, 0xaa, 0xa3, 0x3c, 0x3a, 0x3d, 0x3d, 0x3b, 0x3d, 0x3d, 0x3d, 0x3d, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x2e, 0x2e,
0xba, 0xbb, 0xbd, 0xbd, 0xbe, 0xbf, 0xbd, 0xbe, 0xbd, 0xbe, 0xbe, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbb, 0xbd, 0xbb, 0xbd, 0xbb, 0xbb, 0xbb, 0xbd, 0xbf, 0xbf, 0xbe, 0xbe, 0xbe, 0xbe, 0xbb, 0xb9, 0xb9, 0xb9, 0xb9, 0xb6, 0xb7, 0xb7, 0xbd, 0xaf, 0x4d, 0x83, 0x83, 0x83, 0x7e, 0x83, 0x7e, 0x83, 0x78, 0x7d, 0xc7, 0xc8, 0xc8, 0xc8, 0xc8, 0xc8, 0xc8, 0xc8, 0xc8, 0xc8, 0xc8, 0xc8, 0xc8, 0xc7, 0x93, 0xad, 0xa4, 0xa7, 0xa7, 0x9c, 0xa0, 0x9f, 0xa0, 0x9f, 0xa3, 0x9c, 0xa3, 0x9c, 0xa3, 0x9c, 0xa3, 0x9c, 0x9f, 0x9c, 0x9c, 0x9c, 0x9c, 0x8c, 0x8a, 0x8a, 0x8a, 0x8a, 0x8c, 0x80, 0xc9, 0x80, 0xc9, 0x80, 0xc9, 0x80, 0xc9, 0x80, 0x7d, 0x80, 0x80, 0x80, 0x80, 0x80, 0x7d, 0x80, 0x80, 0xd7, 0x80, 0x7d, 0x84, 0x77, 0x6c, 0x70, 0x70, 0x70, 0x6c, 0x70, 0x6c, 0x70, 0x70, 0x6c, 0x70, 0x6c, 0x6a, 0x6c, 0x6a, 0x6c, 0x66, 0x74, 0xf6, 0xcb, 0xda, 0xda, 0xda, 0xdb, 0x9e, 0xa5, 0xa8, 0xa8, 0xa8, 0xaa, 0xaa, 0xaa, 0xaf, 0xad, 0xaf, 0xaf, 0xad, 0xaf, 0xb1, 0xb1, 0xaf, 0xb3, 0xb3, 0xb1, 0xb1, 0xb3, 0xb3, 0xb1, 0xaf, 0xb1, 0xaf, 0xaf, 0xad, 0xad, 0xab, 0xa9, 0xa6, 0xa6, 0xa4, 0xa6, 0xa9, 0xa9, 0xa6, 0xa6, 0xa6, 0xa6, 0xa4, 0xa4, 0xa4, 0xa4, 0xa4, 0xa4, 0xa4, 0xa4, 0xa4, 0xa4, 0xa4, 0xa4, 0xa4, 0xab, 0x9b, 0x75, 0x75, 0x70, 0x70, 0x70, 0x70, 0x75, 0x75, 0x75, 0x7b, 0x7b, 0x7b, 0x81, 0x85, 0x81, 0x87, 0x86, 0x8f, 0x8b, 0x51, 0xa4, 0xa4, 0xa2, 0xb1, 0xb3, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb3, 0xb1, 0xb3, 0xaf, 0xb1, 0xb1, 0xb1, 0xb1, 0xb5, 0xaa, 0x96, 0x91, 0x96, 0x9d, 0xa6, 0xa2, 0xa1, 0xa2, 0x52, 0xa2, 0x52, 0xa2, 0xa2, 0xa2, 0xa2, 0xa7, 0xa2, 0xa2, 0x9f, 0xa2, 0xa2, 0xa2, 0xa7, 0x9b, 0x99, 0x99, 0xa1, 0x9d, 0xa1, 0xa1, 0xa1, 0xa4, 0xa1, 0xa4, 0xa4, 0xa4, 0xa4, 0xa1, 0xa4, 0xa1, 0xa1, 0xa1, 0xa4, 0xa2, 0xa6, 0xa4, 0xa6, 0xa4, 0xa4, 0xa2, 0xaa, 0xab, 0xad, 0xad, 0xab, 0xad, 0xad, 0xaf, 0xaf, 0xaf, 0xaf, 0xb1, 0xb1, 0xb3, 0xb5, 0xb6, 0xb5, 0xb6, 0xb6, 0xb6, 0xb7, 0xb6, 0xba, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xba, 0xb7, 0xb6, 0xb6, 0xb5, 0xb5, 0xb5, 0xb3, 0xb3, 0xb3, 0xb3, 0xb3, 0xb3, 0xb3, 0xb3, 0xb5, 0xb5, 0xb5, 0xb6, 0xb3, 0xa9, 0xa1, 0xa6, 0xa6, 0xa4, 0xa6, 0xa6, 0xa4, 0xa6, 0xa4, 0xf7, 0x2f, 0x32, 0x32, 0x34, 0x36, 0x42, 0x41, 0x41, 0x41, 0x41, 0x41, 0x41, 0x41, 0x41, 0x42, 0x41, 0x42, 0x42, 0x43, 0x43, 0x43, 0xfc, 0xfc, 0xfd, 0xfe, 0xbb, 0xbe, 0xbd, 0xbd, 0xbe, 0xbe, 0xbd, 0xbd, 0xcf, 0xbc, 0xbc, 0xcf, 0xcf, 0xbc, 0xcf, 0xbc, 0xcf, 0xcf, 0xcf, 0xcf, 0xcf, 0xbf, 0xcf, 0xc0, 0xcf, 0xd0, 0xc0, 0xcf, 0x34, 0x2f, 0x34, 0x34, 0x34, 0x34, 0x36, 0x34, 0x3b, 0x3b, 0x3b, 0x3d, 0x36, 0x2f, 0x23, 0x23, 0x1f, 0x1f, 0x1f, 0x1f, 0x23, 0x23, 0x23, 0x1f, 0x1f, 0xcc, 0xab, 0xa8, 0x3c, 0x3a, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3f, 0x34, 0x21, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x2e,
0xba, 0xba, 0xbb, 0xbb, 0xbd, 0xbd, 0xbe, 0xbd, 0xbd, 0xbd, 0xbe, 0xbe, 0xbe, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbd, 0xbe, 0xbd, 0xbd, 0xbd, 0xbe, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbb, 0xbb, 0xbb, 0xbd, 0xbb, 0xbb, 0xbd, 0xbe, 0xbe, 0xbe, 0xbe, 0xbd, 0xbd, 0xbe, 0xb9, 0xb9, 0xb9, 0xb9, 0xb7, 0xb7, 0xb7, 0xbe, 0x9f, 0x73, 0x83, 0x7e, 0x83, 0x7e, 0x7e, 0x7e, 0x7e, 0x83, 0x7e, 0xc8, 0xc8, 0xc8, 0xc8, 0xc8, 0xc8, 0xc8, 0xc7, 0xc8, 0xc8, 0xc8, 0xc7, 0xc7, 0x7d, 0xab, 0xa6, 0xa7, 0xa7, 0xa7, 0xa3, 0x9c, 0xa0, 0x9f, 0xa0, 0x9f, 0xa0, 0x9f, 0xa3, 0x9c, 0xa3, 0x9c, 0x9c, 0x9c, 0x9c, 0x9c, 0x9c, 0x90, 0x8a, 0x8c, 0x8a, 0x8a, 0x8a, 0x82, 0x8a, 0xc9, 0xc9, 0xc9, 0x7d, 0xc9, 0x80, 0xc9, 0x7d, 0xc9, 0x80, 0xc9, 0x7d, 0x80, 0xc9, 0x80, 0x80, 0x80, 0xc9, 0x80, 0xc9, 0x80, 0x80, 0x74, 0x6c, 0x6c, 0x70, 0x70, 0x6c, 0x6a, 0x6c, 0x6a, 0x6c, 0x6a, 0x6a, 0x6a, 0x6a, 0x6a, 0x6a, 0x66, 0xd7, 0xf6, 0xf4, 0xf4, 0xda, 0xcc, 0xdb, 0x9e, 0xa5, 0xa5, 0xa8, 0xa8, 0xa8, 0xaa, 0xaa, 0xaa, 0xad, 0xad, 0xaf, 0xaf, 0xaf, 0xaf, 0xad, 0xa9, 0xaf, 0xb3, 0xb3, 0xb1, 0xb3, 0xb1, 0xb3, 0xb1, 0xb3, 0xb1, 0xb3, 0xb1, 0xb1, 0xaf, 0xaf, 0xab, 0xab, 0xa6, 0xa2, 0xa6, 0xa9, 0xa9, 0xa6, 0xa4, 0xa4, 0xa4, 0xa4, 0xa4, 0xa4, 0xa4, 0xa4, 0xa1, 0xa4, 0xa4, 0xa4, 0xa4, 0xa4, 0xa4, 0xa4, 0xa9, 0x9b, 0x74, 0x66, 0x65, 0x66, 0x6a, 0x6a, 0x6a, 0x70, 0x70, 0x74, 0x75, 0x75, 0x7b, 0x7b, 0x7b, 0x85, 0x81, 0x87, 0x86, 0x8f, 0x52, 0xa9, 0xb1, 0xb3, 0xb3, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xaf, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb5, 0xad, 0x96, 0x50, 0x9d, 0xa2, 0xa1, 0x52, 0xa2, 0x52, 0xa2, 0xa2, 0xa2, 0xa2, 0xa2, 0xa2, 0xa2, 0x9f, 0xa2, 0xa2, 0xa2, 0x9f, 0xa2, 0x9f, 0xa7, 0x9f, 0x99, 0x99, 0x9d, 0x52, 0x9d, 0xa1, 0x9d, 0xa1, 0xa1, 0xa1, 0xa1, 0xa4, 0xa1, 0xa1, 0xa4, 0xa1, 0xa1, 0x9d, 0xa1, 0xa4, 0xa4, 0xa4, 0xa2, 0xa4, 0xa6, 0xa3, 0xa8, 0xaa, 0xaa, 0xad, 0xad, 0xad, 0xaf, 0xad, 0xaf, 0xaf, 0xb1, 0xaf, 0xb1, 0xb5, 0xb5, 0xb6, 0xb5, 0xb6, 0xb6, 0xb6, 0xb7, 0xb9, 0xbe, 0xbb, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xba, 0xbb, 0xbb, 0xbb, 0xba, 0xb7, 0xb6, 0xb5, 0xb5, 0xb5, 0xb3, 0xb3, 0xb3, 0xb1, 0xb3, 0xb3, 0xb1, 0xb3, 0xb3, 0xb3, 0xb3, 0xb3, 0xb5, 0xb6, 0xb6, 0xad, 0xa1, 0xa4, 0xa6, 0xa6, 0xa4, 0xa4, 0xa6, 0xa4, 0x9e, 0x32, 0x32, 0x32, 0x32, 0x2f, 0x3f, 0x41, 0x41, 0x41, 0x41, 0x41, 0x41, 0x41, 0x42, 0x41, 0x42, 0x42, 0x44, 0x43, 0x45, 0xfc, 0xfc, 0xfd, 0x46, 0xdd, 0xbc, 0xbc, 0xbd, 0xbe, 0xbe, 0xbd, 0xbe, 0xbe, 0xbe, 0xbc, 0xcf, 0xcf, 0xbc, 0xcf, 0xcf, 0xcf, 0xbc, 0xbe, 0xcf, 0xbe, 0xcf, 0xcf, 0xd0, 0xcf, 0xcf, 0xcf, 0xbf, 0xd0, 0x43, 0x2a, 0x36, 0x34, 0x36, 0x36, 0x34, 0x32, 0x3a, 0x3d, 0x3b, 0x3b, 0x3b, 0x41, 0x47, 0x41, 0x3c, 0x36, 0x2f, 0x26, 0x1f, 0x1c, 0x1f, 0x1f, 0x1f, 0x1f, 0x9e, 0xad, 0x39, 0x3b, 0x3d, 0x39, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x28, 0x2a, 0x28, 0x2a, 0x2a, 0x2a, 0x26,
0xba, 0xba, 0xba, 0xbb, 0xbb, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbe, 0xbe, 0xbf, 0xbe, 0xbf, 0xbf, 0xc0, 0xbf, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbe, 0xbe, 0xbf, 0xbe, 0xbe, 0xbd, 0xbe, 0xbd, 0xba, 0xb9, 0xb9, 0xb7, 0xb7, 0xb7, 0xb9, 0xbd, 0x8f, 0x4d, 0x7e, 0x83, 0x7e, 0x83, 0x78, 0x83, 0x7e, 0x7e, 0x78, 0x7e, 0xc7, 0xc7, 0xc8, 0xc8, 0xc7, 0xc8, 0xc7, 0xc8, 0xc7, 0xc8, 0xc8, 0xc6, 0x93, 0xab, 0xa2, 0xa7, 0xa6, 0xa3, 0xa7, 0xa3, 0x9c, 0xa0, 0x9c, 0xa0, 0x9f, 0x9c, 0x9f, 0x9c, 0x9c, 0x9c, 0x9f, 0x9c, 0x9c, 0x9c, 0x9c, 0x8c, 0x8a, 0x8a, 0x8a, 0x8a, 0x82, 0x85, 0x8a, 0x82, 0xc9, 0xc9, 0xc9, 0x80, 0xc9, 0x7d, 0xc9, 0x80, 0xc9, 0x7d, 0xc9, 0x7d, 0xc9, 0x7d, 0xc9, 0xc9, 0x80, 0xc9, 0x7d, 0xc9, 0x80, 0x80, 0x70, 0x6a, 0x6c, 0x6a, 0x6a, 0x6a, 0x6a, 0x6a, 0x6a, 0x66, 0x6a, 0x66, 0x6a, 0x66, 0x66, 0x66, 0xf3, 0xf4, 0xf4, 0xcb, 0xda, 0xda, 0x9e, 0xdb, 0x9e, 0xa5, 0xa0, 0xa8, 0xa8, 0xa8, 0xaa, 0xaa, 0xad, 0xad, 0xaf, 0xad, 0xad, 0xad, 0xab, 0xab, 0xa9, 0xad, 0xb1, 0xb1, 0xaf, 0xb1, 0xaf, 0xaf, 0xaf, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xaf, 0xad, 0xab, 0xa6, 0xa4, 0xa1, 0xa4, 0xa1, 0xa4, 0xa1, 0xa1, 0xa4, 0xa1, 0xa1, 0xa4, 0xa1, 0xa4, 0xa1, 0xa1, 0xa4, 0xa1, 0xa4, 0xa4, 0xab, 0x97, 0x6a, 0x66, 0x70, 0x6a, 0x6c, 0x70, 0x6c, 0x70, 0x70, 0x75, 0x74, 0x75, 0x75, 0x7b, 0x7b, 0x7f, 0x81, 0x81, 0x81, 0x86, 0x52, 0xb3, 0xb5, 0xb3, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb6, 0xb5, 0xb6, 0xb5, 0xb5, 0xb5, 0xb3, 0xb3, 0xb1, 0xb6, 0xb1, 0x96, 0x96, 0xa6, 0xa2, 0xa2, 0xa2, 0xa2, 0xa2, 0xa2, 0xa2, 0xa2, 0x9f, 0xa2, 0xa2, 0xa2, 0xa7, 0xa2, 0xa2, 0xa7, 0xa2, 0xa7, 0x9f, 0xa7, 0xa2, 0x52, 0x99, 0x99, 0x9d, 0x9d, 0x9d, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0x9d, 0x9a, 0xa1, 0xa4, 0xa6, 0xa4, 0xa4, 0xa4, 0xa3, 0xa5, 0xa5, 0xa8, 0xaa, 0xaa, 0xaf, 0xad, 0xad, 0xaf, 0xaf, 0xaf, 0xb1, 0xb1, 0xb1, 0xb3, 0xb5, 0xb6, 0xb6, 0xb6, 0xb7, 0xb6, 0xb9, 0xbd, 0xbd, 0xbd, 0xbb, 0xbd, 0xbb, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbb, 0xbb, 0xbb, 0xbb, 0xba, 0xb6, 0xb6, 0xb5, 0xb5, 0xb3, 0xb3, 0xb3, 0xb1, 0xb3, 0xb1, 0xb3, 0xb1, 0xb3, 0xb3, 0xb3, 0xb5, 0xb3, 0xb5, 0xb5, 0xb5, 0xb7, 0xb1, 0xa4, 0xa1, 0xa6, 0xa9, 0xa6, 0xa6, 0xa4, 0xa7, 0x32, 0x32, 0x32, 0x36, 0x32, 0x36, 0x41, 0x41, 0x41, 0x41, 0x41, 0x41, 0x42, 0x41, 0x42, 0x42, 0x42, 0x42, 0x43, 0xfc, 0x43, 0x46, 0xfc, 0xfd, 0xfe, 0xbc, 0xbd, 0xbc, 0xbd, 0xbc, 0xbe, 0xbd, 0xbe, 0xbe, 0xcf, 0xbc, 0xbc, 0xcf, 0xbc, 0xcf, 0xcf, 0xcf, 0xcf, 0xbc, 0xcf, 0xbc, 0xbf, 0xcf, 0xcf, 0xcf, 0xd0, 0xcf, 0xc0, 0xd0, 0x36, 0x2f, 0x36, 0x34, 0x34, 0x36, 0x34, 0x36, 0x3d, 0x3d, 0x3d, 0x3b, 0x3f, 0x47, 0x49, 0x48, 0x49, 0x48, 0x45, 0x41, 0x39, 0x32, 0x2f, 0x21, 0x1f, 0x1c, 0xda, 0x3e, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3f, 0x34, 0x21, 0x2a, 0x28, 0x2a, 0x2a, 0x2a,
0xb9, 0xb9, 0xba, 0xba, 0xba, 0xb9, 0xbd, 0xbd, 0xbd, 0xbe, 0xbe, 0xbe, 0xbe, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbd, 0xbe, 0xbe, 0xbe, 0xbd, 0xbe, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbe, 0xbb, 0xbd, 0xbd, 0xbd, 0xbb, 0xbb, 0xba, 0xbb, 0xba, 0xba, 0xbe, 0xbe, 0xbd, 0xbe, 0xbd, 0xbe, 0xbb, 0xbd, 0xbd, 0xba, 0xb7, 0xb7, 0xb7, 0xb9, 0xbb, 0xb2, 0x83, 0x78, 0x83, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7b, 0xc7, 0xc8, 0xc7, 0xc8, 0xc7, 0xc8, 0xc7, 0xc8, 0xc7, 0xc7, 0x7d, 0xa4, 0xa9, 0xa2, 0xa6, 0xa7, 0xa7, 0xa7, 0xa3, 0xa3, 0x9c, 0xa3, 0x9c, 0xa3, 0x9c, 0xa3, 0x9c, 0xa3, 0x9c, 0x9c, 0x9c, 0x9c, 0x9f, 0x90, 0x8a, 0x8a, 0x8a, 0x8a, 0x82, 0x8a, 0x82, 0x82, 0x8a, 0xc9, 0xc9, 0xc9, 0xc9, 0xc9, 0xc9, 0xc9, 0xc9, 0x7d, 0xc9, 0xc9, 0xc9, 0x7d, 0xc9, 0x80, 0xc9, 0xc9, 0xc9, 0x80, 0xc9, 0xc9, 0x80, 0xc9, 0x6c, 0x6a, 0x6a, 0x6c, 0x6a, 0x6c, 0x66, 0x6a, 0x66, 0x6a, 0x66, 0x6a, 0x66, 0x62, 0xc9, 0xf6, 0xf4, 0xf4, 0xf4, 0xf4, 0xda, 0xda, 0x9e, 0x9e, 0xa5, 0xa8, 0xa5, 0xa3, 0xa8, 0xaa, 0xaa, 0xaa, 0xad, 0xab, 0xad, 0xad, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xab, 0xb1, 0xaf, 0xaf, 0xaf, 0xaf, 0xad, 0xad, 0xad, 0xad, 0xad, 0xab, 0xab, 0xa9, 0xa9, 0xa9, 0xa4, 0x9d, 0x9a, 0xa6, 0x9d, 0x9d, 0xa1, 0x9d, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa4, 0xa1, 0xa1, 0xa1, 0xa1, 0xa6, 0xa4, 0xab, 0xa4, 0x9a, 0x95, 0x9a, 0x99, 0x9a, 0x99, 0x9a, 0x95, 0x95, 0x9a, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x99, 0x95, 0x95, 0x99, 0x93, 0x85, 0x8c, 0x93, 0x92, 0x93, 0x9b, 0x9b, 0x9b, 0x9b, 0x9f, 0x9f, 0xa7, 0xa7, 0xab, 0xad, 0xaf, 0xb1, 0xaf, 0xb6, 0xb3, 0xa4, 0xa4, 0xa2, 0xa1, 0xa2, 0x52, 0xa2, 0xa2, 0xa2, 0xa2, 0xa2, 0xa2, 0xa2, 0xa2, 0xa2, 0xa7, 0xa2, 0xa2, 0xa2, 0xa7, 0xa2, 0xa7, 0xa7, 0xa7, 0xa2, 0x99, 0x95, 0x95, 0x99, 0x9a, 0x9d, 0x9d, 0xa1, 0x9d, 0xa1, 0x9d, 0xa1, 0x9d, 0x9d, 0x9d, 0x9d, 0x9d, 0x9a, 0xa1, 0xa4, 0xa4, 0xa4, 0xa4, 0xda, 0xdb, 0xdb, 0xa5, 0xa5, 0xaa, 0xaa, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xb1, 0xaf, 0xb3, 0xb5, 0xb6, 0xb5, 0xb6, 0xb6, 0xb9, 0xbd, 0xbb, 0xbb, 0xbb, 0xba, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbd, 0xbb, 0xbb, 0xbd, 0xbb, 0xbb, 0xba, 0xbb, 0xb7, 0xb6, 0xb5, 0xb5, 0xb3, 0xb3, 0xb1, 0xb1, 0xaf, 0xb1, 0xb1, 0xb1, 0xb3, 0xb1, 0xb3, 0xb3, 0xb5, 0xb3, 0xb5, 0xb5, 0xb5, 0xb5, 0xb7, 0xb5, 0xa9, 0xa1, 0xa4, 0xa6, 0xa6, 0xa4, 0xa4, 0x37, 0x2f, 0x32, 0x32, 0x32, 0x34, 0x39, 0x41, 0x41, 0x41, 0x41, 0x41, 0x41, 0x42, 0x41, 0x42, 0x42, 0x42, 0x44, 0x43, 0xfc, 0xfc, 0x46, 0xfd, 0xdd, 0xbc, 0xdd, 0xbd, 0xbc, 0xbd, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbc, 0xbc, 0xbc, 0xcf, 0xbc, 0xcf, 0xcf, 0xcf, 0xcf, 0xbe, 0xcf, 0xcf, 0xcf, 0xbf, 0xcf, 0xcf, 0xcf, 0xbf, 0xc0, 0x46, 0x2f, 0x34, 0x36, 0x36, 0x34, 0x36, 0x36, 0x3b, 0x3d, 0x3b, 0x3d, 0x3a, 0x44, 0x47, 0x47, 0x45, 0x47, 0x47, 0x49, 0x48, 0x49, 0x47, 0x45, 0x42, 0x39, 0x3c, 0x39, 0x38, 0x3b, 0x3d, 0x3d, 0x3d, 0x3f, 0x3d, 0x3f, 0x3f, 0x3f, 0x2f, 0x2a, 0x28, 0x2a, 0x2a, 0x2a,
0xb7, 0xb9, 0xb7, 0xb9, 0xb9, 0xb9, 0xba, 0xbd, 0xbd, 0xbd, 0xbe, 0xbe, 0xbe, 0xbf, 0xbe, 0xbf, 0xbf, 0xc0, 0xbf, 0xbf, 0xbe, 0xbe, 0xbe, 0xbf, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbb, 0xbd, 0xbd, 0xbb, 0xbd, 0xba, 0xba, 0xba, 0xba, 0xb9, 0xbb, 0xbe, 0xbe, 0xbe, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xb7, 0xb6, 0xb7, 0xb7, 0xbe, 0xa7, 0x78, 0x78, 0x83, 0x78, 0x83, 0x7e, 0x7e, 0x7e, 0x78, 0x7e, 0x7e, 0x78, 0x83, 0x74, 0xc7, 0xc8, 0xc7, 0xc8, 0xc7, 0xc8, 0xc7, 0xc8, 0xc6, 0x8a, 0xa9, 0xa6, 0xa2, 0xa7, 0xa7, 0xa7, 0xa3, 0xa7, 0xa3, 0x9f, 0x9c, 0xa3, 0x9c, 0xa3, 0x9c, 0xa3, 0x9c, 0x9c, 0x9c, 0x9c, 0x9c, 0x9c, 0x8a, 0x8a, 0x8a, 0x8a, 0x8a, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0xc8, 0xc8, 0xc9, 0xc9, 0xc9, 0xc9, 0xc9, 0xc9, 0xc9, 0x7d, 0xc9, 0xc9, 0xc9, 0xc9, 0xc9, 0x80, 0xc9, 0xc9, 0xc9, 0xc9, 0xc9, 0x80, 0xc8, 0x66, 0x6a, 0x66, 0x6a, 0x66, 0x6a, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x62, 0xd8, 0xf5, 0xd9, 0xf4, 0xf4, 0xcb, 0xda, 0xda, 0x9e, 0xdb, 0x9e, 0xa5, 0xa0, 0xa8, 0xa8, 0xa8, 0xaa, 0xa7, 0xad, 0xab, 0xab, 0xab, 0xa9, 0xa9, 0xa6, 0xab, 0xa6, 0xa9, 0xa7, 0xaa, 0xaa, 0xa9, 0xa9, 0xa7, 0xa9, 0xa6, 0xa6, 0xa1, 0xa4, 0x9d, 0x9d, 0x9a, 0x96, 0x91, 0x50, 0x96, 0xa6, 0xa9, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa4, 0xa1, 0xa4, 0xa4, 0xa4, 0xa6, 0xa6, 0xa6, 0x9d, 0x9d, 0xa1, 0x9d, 0x9d, 0xa1, 0x9d, 0xa1, 0x9d, 0xa1, 0xa1, 0xa1, 0x9d, 0xa1, 0x9d, 0xa1, 0x9d, 0x9d, 0xa1, 0x52, 0x7f, 0x75, 0x75, 0x7b, 0x7b, 0x75, 0x7b, 0x76, 0x7b, 0x76, 0x7b, 0x7b, 0x7b, 0x7b, 0x7f, 0x7f, 0x85, 0x7f, 0x85, 0x85, 0x82, 0x92, 0xa9, 0x52, 0x52, 0xa2, 0x52, 0xa2, 0x52, 0x9f, 0xa2, 0x9f, 0xa2, 0x9f, 0xa2, 0xa2, 0x9f, 0xa2, 0xa2, 0xa2, 0xa3, 0xa2, 0xa3, 0xa2, 0xa7, 0xa3, 0x97, 0x92, 0x92, 0x95, 0x51, 0x95, 0x9a, 0x9a, 0x9a, 0x9d, 0x9d, 0x9d, 0x9d, 0x9d, 0x9d, 0x9a, 0x9d, 0x96, 0x52, 0xa1, 0xa6, 0xa4, 0x9e, 0xf6, 0xf8, 0xdb, 0xdb, 0xa5, 0xa8, 0xaa, 0xaf, 0xaf, 0xaf, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb3, 0xb5, 0xb6, 0xb6, 0xb6, 0xb7, 0xbd, 0xbb, 0xbb, 0xbd, 0xba, 0xbd, 0xbb, 0xbd, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbd, 0xba, 0xbd, 0xba, 0xba, 0xb9, 0xb6, 0xb5, 0xb3, 0xb1, 0xb1, 0xb1, 0xb1, 0xaf, 0xb1, 0xb1, 0xb3, 0xb1, 0xb3, 0xb3, 0xb3, 0xb3, 0xb5, 0xb5, 0xb5, 0xb5, 0xb6, 0xb5, 0xb7, 0xb6, 0xad, 0xa1, 0xa4, 0xa6, 0xa6, 0xa6, 0xf6, 0x2f, 0x35, 0x32, 0x32, 0x36, 0x34, 0x40, 0x41, 0x41, 0x41, 0x41, 0x42, 0x41, 0x42, 0x42, 0x42, 0x42, 0x43, 0x43, 0x47, 0xfc, 0xfc, 0xfd, 0xfe, 0xbc, 0xbc, 0xbc, 0xbc, 0xbc, 0xbc, 0xbd, 0xbe, 0xbd, 0xbe, 0xbe, 0xcf, 0xcf, 0xbc, 0xbc, 0xcf, 0xbc, 0xbe, 0xcf, 0xcf, 0xcf, 0xcf, 0xcf, 0xcf, 0xcf, 0xcf, 0xcf, 0xcf, 0xbf, 0xc0, 0x3c, 0x30, 0x36, 0x34, 0x36, 0x34, 0x36, 0x3b, 0x3d, 0x3d, 0x3d, 0x3b, 0x3f, 0x47, 0x47, 0x47, 0x45, 0x47, 0x45, 0x47, 0x45, 0x47, 0x47, 0x48, 0x49, 0x49, 0x41, 0x26, 0x33, 0x33, 0x33, 0x38, 0x33, 0x36, 0x38, 0x36, 0x3d, 0x34, 0x21, 0x2a, 0x2a, 0x2a, 0x2a,
0xb6, 0xb9, 0xb7, 0xb9, 0xb9, 0xb9, 0xba, 0xbb, 0xbb, 0xbd, 0xbe, 0xbe, 0xbe, 0xbe, 0xbf, 0xbf, 0xbf, 0xbf, 0xc0, 0xbf, 0xbe, 0xbe, 0xbe, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbb, 0xbd, 0xbd, 0xbd, 0xbb, 0xbd, 0xbd, 0xbd, 0xbb, 0xba, 0xba, 0xb9, 0xba, 0xbb, 0xbe, 0xbe, 0xbd, 0xbe, 0xbd, 0xbe, 0xbb, 0xbd, 0xbb, 0xbd, 0xb9, 0xb7, 0xb7, 0xb7, 0xbe, 0x9b, 0x73, 0x7e, 0x7e, 0x7e, 0x7e, 0x78, 0x7e, 0x78, 0x7e, 0x7e, 0x78, 0x7e, 0x78, 0x7e, 0x72, 0xc7, 0xc7, 0xc8, 0xc7, 0xc8, 0xc7, 0xc7, 0x72, 0x52, 0xab, 0xa2, 0xa6, 0xa7, 0xa2, 0xa7, 0xa7, 0xa3, 0xa3, 0xa3, 0xa3, 0x9c, 0xa3, 0x9c, 0x9c, 0x9c, 0x9c, 0x9c, 0x9c, 0x9c, 0x9c, 0x90, 0x8a, 0x8a, 0x8a, 0x8a, 0x82, 0x8a, 0x82, 0x82, 0x82, 0x82, 0x7f, 0x7d, 0xc9, 0xc8, 0xc9, 0xc8, 0xc9, 0xc9, 0xc9, 0xc9, 0xc9, 0xc9, 0xc9, 0xc9, 0xc9, 0xc9, 0xc9, 0xc9, 0xc9, 0xc9, 0xc9, 0xc9, 0xc9, 0xd7, 0x77, 0x66, 0x66, 0x6a, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x62, 0x6a, 0xf3, 0xf3, 0xf4, 0xf4, 0xf4, 0xf4, 0xcb, 0xcc, 0xda, 0x9e, 0xa5, 0xa0, 0xa8, 0xa0, 0xa8, 0xa8, 0xa3, 0xaa, 0xaa, 0xab, 0xa9, 0xa9, 0xa9, 0xa6, 0xa6, 0xa6, 0xa6, 0xa6, 0xa4, 0xa3, 0x9c, 0x9f, 0x9c, 0x9b, 0x9b, 0x93, 0x93, 0x97, 0x92, 0x92, 0x51, 0x51, 0x50, 0x50, 0x91, 0x96, 0xa4, 0xab, 0xa9, 0xa4, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa4, 0xa1, 0xa4, 0xa1, 0xa4, 0xa4, 0xa4, 0xa4, 0xa6, 0xa4, 0xa6, 0xa4, 0x9d, 0x9a, 0x9d, 0x9a, 0x9d, 0x9a, 0x9d, 0x9a, 0x9d, 0x9a, 0x9d, 0x9d, 0x9d, 0x9d, 0x9d, 0x9d, 0x9d, 0x9d, 0xa9, 0xa6, 0x7f, 0x70, 0x79, 0x75, 0x79, 0x7b, 0x77, 0x75, 0x77, 0x75, 0x75, 0x75, 0x70, 0x75, 0x70, 0x70, 0x70, 0x6c, 0x70, 0x6c, 0x70, 0x8d, 0xa9, 0x52, 0x9b, 0x9f, 0x9f, 0x9b, 0xa2, 0x9b, 0x52, 0x9f, 0x52, 0x9f, 0x52, 0x9f, 0x9f, 0x9f, 0x9f, 0xa2, 0x9f, 0x9f, 0x9f, 0x9f, 0x9f, 0xa7, 0xb1, 0xaf, 0xaa, 0xa7, 0xa2, 0x52, 0x99, 0x99, 0x96, 0x95, 0x96, 0x96, 0x96, 0x9a, 0x9a, 0x9a, 0x9a, 0x96, 0x95, 0xa1, 0xa6, 0xa0, 0xf5, 0xf6, 0xf7, 0xda, 0xf8, 0xdb, 0xa5, 0xa8, 0xaf, 0xaf, 0xaf, 0xaf, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb5, 0xb6, 0xb6, 0xb9, 0xbb, 0xbb, 0xbb, 0xba, 0xba, 0xbb, 0xbb, 0xba, 0xba, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xb9, 0xba, 0xb5, 0xb1, 0xb1, 0xaf, 0xaf, 0xaf, 0xb1, 0xaf, 0xb1, 0xb1, 0xb1, 0xb3, 0xb1, 0xb3, 0xb3, 0xb3, 0xb3, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb6, 0xb9, 0xaf, 0xa4, 0xa1, 0xa4, 0xa6, 0xda, 0x34, 0x32, 0x32, 0x32, 0x36, 0x32, 0x39, 0x42, 0x41, 0x41, 0x41, 0x41, 0x42, 0x41, 0x42, 0x42, 0x43, 0x42, 0x43, 0xfc, 0xfc, 0xfd, 0x46, 0xfd, 0xbc, 0xbc, 0xbc, 0xbc, 0xbc, 0xbc, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbc, 0xbc, 0xbc, 0xcf, 0xbc, 0xcf, 0xcf, 0xbc, 0xcf, 0xcf, 0xcf, 0xcf, 0xcf, 0xcf, 0xcf, 0xcf, 0xcf, 0xcf, 0xc0, 0xfe, 0x2f, 0x34, 0x36, 0x34, 0x36, 0x36, 0x3a, 0x3f, 0x3d, 0x3d, 0x3d, 0x3f, 0x44, 0x47, 0x43, 0x47, 0x47, 0x47, 0x47, 0x47, 0x45, 0x47, 0x45, 0x47, 0xfe, 0xcf, 0x3d, 0x2e, 0x33, 0x33, 0x30, 0x33, 0x30, 0x33, 0x30, 0x33, 0x33, 0x2f, 0x2f, 0x2f, 0x2f, 0x2a,
0xb7, 0xb6, 0xb7, 0xb7, 0xb9, 0xb7, 0xb9, 0xb9, 0xbd, 0xbd, 0xbd, 0xbe, 0xbe, 0xbe, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xc0, 0xbf, 0xbd, 0xbe, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbb, 0xbd, 0xbb, 0xba, 0xb9, 0xb9, 0xb9, 0xbd, 0xbe, 0xbd, 0xbe, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xb7, 0xb7, 0xb7, 0xba, 0x86, 0x78, 0x78, 0x7e, 0x78, 0x7e, 0x7e, 0x78, 0x7e, 0x7e, 0x78, 0x7e, 0x78, 0x7e, 0x78, 0x7e, 0xc7, 0xc7, 0xc7, 0xc7, 0xc7, 0x72, 0xc6, 0x82, 0xab, 0xa2, 0xa6, 0xa2, 0xa6, 0xa7, 0xa6, 0xa3, 0xa7, 0xa3, 0xa3, 0xa3, 0x9c, 0x9c, 0x9c, 0xa3, 0x9c, 0x9c, 0x9c, 0x9c, 0x9c, 0x9c, 0x8a, 0x8a, 0x8a, 0x82, 0x82, 0x8a, 0x82, 0x82, 0x82, 0x82, 0x7f, 0x82, 0x7f, 0xc9, 0xc7, 0xc9, 0xc8, 0xc9, 0xc9, 0xc9, 0xc8, 0xc9, 0xc9, 0xc9, 0xc9, 0xc9, 0xc9, 0xc9, 0xc9, 0xc9, 0xc9, 0xc9, 0xc9, 0xc9, 0xc9, 0xc9, 0x72, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x65, 0x66, 0x62, 0x60, 0xd6, 0xf6, 0xd9, 0xf3, 0xd9, 0xf4, 0xcb, 0xcb, 0xcc, 0xcc, 0x9e, 0x9e, 0xa5, 0xa0, 0xa8, 0xa8, 0xa3, 0xaa, 0xa3, 0xaa, 0xa7, 0xa9, 0xa7, 0xa6, 0xa4, 0xa6, 0xa6, 0xa6, 0xa4, 0xa4, 0xa1, 0x90, 0x90, 0x90, 0x90, 0x8c, 0x90, 0x8c, 0x8d, 0x8c, 0x8d, 0x86, 0x8f, 0x8b, 0x51, 0x50, 0x9a, 0xa1, 0xa4, 0xab, 0xab, 0xa4, 0xa4, 0xa1, 0xa1, 0xa1, 0xa4, 0xa1, 0xa1, 0xa1, 0xa4, 0xa4, 0xa4, 0xa1, 0xa1, 0xa4, 0xa4, 0xa6, 0xa4, 0xa4, 0xa9, 0xa4, 0x9d, 0x9a, 0x9d, 0x9d, 0x9d, 0x9d, 0x9d, 0x9d, 0x9d, 0x9d, 0x9d, 0x9d, 0x9d, 0x9d, 0x9d, 0x9a, 0xa1, 0xa4, 0xa4, 0xa6, 0x7f, 0x6c, 0x75, 0x75, 0x74, 0x75, 0x74, 0x74, 0x74, 0x74, 0x70, 0x74, 0x70, 0x75, 0x75, 0x70, 0x75, 0x70, 0x75, 0x70, 0x6c, 0x8c, 0xa6, 0xa2, 0x9b, 0x52, 0x52, 0x9f, 0x52, 0x9f, 0x52, 0x9f, 0x9f, 0x9f, 0x9f, 0xa2, 0x9f, 0xa2, 0x9b, 0xa2, 0x9f, 0x9f, 0xa2, 0x9b, 0xaa, 0xb5, 0xb9, 0xb7, 0xb7, 0xb7, 0xb6, 0xb5, 0xb3, 0xaf, 0xad, 0xa7, 0xa9, 0xa2, 0xa1, 0x99, 0x9d, 0x95, 0x96, 0x51, 0x96, 0x96, 0xa1, 0xf5, 0x31, 0xf6, 0xf6, 0xf7, 0xf7, 0xdb, 0xdb, 0xa8, 0xae, 0xad, 0xaf, 0xb1, 0xaf, 0xb1, 0xb1, 0xb1, 0xb1, 0xb5, 0xb5, 0xb9, 0xba, 0xba, 0xb9, 0xb9, 0xb9, 0xba, 0xba, 0xba, 0xba, 0xba, 0xba, 0xba, 0xba, 0xba, 0xba, 0xbb, 0xbb, 0xbd, 0xb9, 0xb3, 0xb1, 0xaf, 0xaf, 0xad, 0xaf, 0xaf, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb3, 0xb3, 0xb1, 0xb3, 0xb5, 0xb5, 0xb5, 0xb5, 0xb6, 0xb5, 0xb6, 0xb6, 0xb6, 0xb9, 0xb5, 0xa7, 0xa1, 0xa4, 0xa0, 0x32, 0x32, 0x32, 0x32, 0x32, 0x36, 0x34, 0x3d, 0x42, 0x41, 0x41, 0x42, 0x42, 0x42, 0x42, 0x42, 0x42, 0x43, 0x43, 0xfc, 0xfc, 0xfc, 0xfd, 0xdd, 0xbc, 0xdd, 0xbc, 0xbc, 0xbc, 0xbc, 0xbc, 0xbc, 0xbe, 0xbd, 0xbe, 0xbe, 0xbc, 0xbc, 0xbc, 0xcf, 0xbc, 0xbc, 0xcf, 0xcf, 0xbc, 0xcf, 0xcf, 0xbc, 0xcf, 0xcf, 0xcf, 0xcf, 0xcf, 0xcf, 0xc0, 0x42, 0x2f, 0x34, 0x36, 0x36, 0x34, 0x3b, 0x3b, 0x3d, 0x3d, 0x3d, 0x3d, 0x40, 0x47, 0x47, 0x45, 0x47, 0x45, 0x47, 0x45, 0x47, 0x47, 0x47, 0xfe, 0x46, 0x46, 0xdd, 0x36, 0x2e, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x34, 0x2f, 0x2f, 0x2f, 0x2f,
0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb9, 0xb7, 0xb9, 0xba, 0xbd, 0xbd, 0xbe, 0xbe, 0xbd, 0xbf, 0xbf, 0xbf, 0xc0, 0xbf, 0xc0, 0xc0, 0xbe, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbb, 0xbd, 0xbb, 0xbd, 0xbb, 0xbd, 0xbb, 0xbd, 0xbb, 0xbb, 0xbb, 0xba, 0xb9, 0xb7, 0xb9, 0xbd, 0xbe, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbb, 0xbd, 0xbb, 0xbb, 0xbd, 0xb6, 0xba, 0xb5, 0x7e, 0x78, 0x78, 0x7e, 0x7e, 0x78, 0x7e, 0x78, 0x7e, 0x78, 0x7e, 0x7e, 0x78, 0x7e, 0x78, 0x7e, 0x76, 0xc7, 0xc7, 0xc7, 0x72, 0xc7, 0x6e, 0x93, 0xa9, 0xa6, 0xa2, 0xa7, 0xa7, 0xa7, 0xa7, 0xa7, 0xa3, 0xa7, 0xa3, 0xa3, 0xa3, 0x9c, 0x9c, 0x9c, 0x9c, 0x9c, 0x9c, 0x9c, 0x9c, 0x90, 0x8a, 0x82, 0x8a, 0x8a, 0x82, 0x82, 0x82, 0x82, 0x82, 0x7c, 0x82, 0x7c, 0x7f, 0x7c, 0xc8, 0xc8, 0xc8, 0xc8, 0xc8, 0xc8, 0xc8, 0xc9, 0xc8, 0xc9, 0xd6, 0xc9, 0xc9, 0xc9, 0xc9, 0xc9, 0xc9, 0xc9, 0xc9, 0xc9, 0xc9, 0xc9, 0xc9, 0x6a, 0x62, 0x66, 0x66, 0x65, 0x66, 0x66, 0x62, 0x62, 0x65, 0xf1, 0xf4, 0xf3, 0xd9, 0xf4, 0xf4, 0xcb, 0xcb, 0xda, 0xcc, 0xcc, 0x9e, 0xa0, 0xa8, 0xa0, 0xa8, 0xa3, 0xa3, 0xaa, 0xa7, 0xa7, 0xa7, 0xa7, 0xa7, 0xa1, 0xa4, 0xa4, 0xa4, 0xa1, 0xa1, 0x9d, 0x97, 0x8a, 0x82, 0x8a, 0x8a, 0x85, 0x85, 0x85, 0x81, 0x8c, 0x86, 0x87, 0x8b, 0x8b, 0x51, 0x9a, 0xa1, 0xa1, 0xa6, 0xad, 0xab, 0xa6, 0xa4, 0xa4, 0xa4, 0xa4, 0xa4, 0xa4, 0xa4, 0xa1, 0xa4, 0xa4, 0xa1, 0xa4, 0xa4, 0xa6, 0xa6, 0xa6, 0xa4, 0xa6, 0xa9, 0xa6, 0x9d, 0x9a, 0x9d, 0x9d, 0x9a, 0x9d, 0x9d, 0x9d, 0x9d, 0x9d, 0x9a, 0x9d, 0x9d, 0x9d, 0x9d, 0xa1, 0xa2, 0xa1, 0xa4, 0xa9, 0x7b, 0x68, 0x74, 0x70, 0x74, 0x70, 0x70, 0x70, 0x70, 0x70, 0x74, 0x70, 0x74, 0x70, 0x74, 0x70, 0x74, 0x70, 0x75, 0x70, 0x6a, 0x85, 0xa9, 0xa2, 0x9f, 0x52, 0x9b, 0x52, 0x9f, 0x52, 0x9f, 0x52, 0x9f, 0x9f, 0x9f, 0x9f, 0xa2, 0x9f, 0x9f, 0xa2, 0x9f, 0x9f, 0x9f, 0xad, 0xb3, 0xb1, 0xb5, 0xb6, 0xb5, 0xb6, 0xb6, 0xb6, 0xb6, 0xb7, 0xb7, 0xb9, 0xb6, 0xb6, 0xb5, 0xb3, 0xb3, 0xad, 0xa9, 0xa2, 0x9d, 0x9d, 0xda, 0x2d, 0xf5, 0xf5, 0xf6, 0xf7, 0xf7, 0xf8, 0xdb, 0xa5, 0xad, 0xaf, 0xad, 0xaf, 0xaf, 0xaf, 0xaf, 0xb1, 0xaf, 0xb3, 0xb7, 0xbd, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xb7, 0xb7, 0xb7, 0xb9, 0xb7, 0xb9, 0xb7, 0xba, 0xb7, 0xaf, 0xad, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xb1, 0xb1, 0xb1, 0xb1, 0xb3, 0xb3, 0xb3, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb6, 0xb5, 0xb6, 0xb6, 0xba, 0xb7, 0xab, 0x9d, 0xa2, 0x35, 0x34, 0x35, 0x32, 0x35, 0x32, 0x34, 0x36, 0x41, 0x41, 0x42, 0x41, 0x42, 0x42, 0x42, 0x42, 0x43, 0x42, 0x43, 0x43, 0xfc, 0xfd, 0xfc, 0xdd, 0xbc, 0xdd, 0xbc, 0xdd, 0xbc, 0xbc, 0xbc, 0xbc, 0xbc, 0xbe, 0xbe, 0xbd, 0xbe, 0xbc, 0xbc, 0xbc, 0xcf, 0xcf, 0xbc, 0xbc, 0xcf, 0xcf, 0xcf, 0xcf, 0xbc, 0xcf, 0xcf, 0xbc, 0xcf, 0xcf, 0xc0, 0xbf, 0x36, 0x2f, 0x36, 0x36, 0x36, 0x36, 0x3b, 0x3f, 0x3d, 0x3d, 0x3f, 0x3f, 0x44, 0x47, 0x47, 0x45, 0x47, 0x45, 0x47, 0x47, 0x47, 0x47, 0xfe, 0x46, 0xfc, 0x49, 0xfc, 0x33, 0x30, 0x33, 0x33, 0x34, 0x33, 0x33, 0x33, 0x33, 0x33, 0x34, 0x2f, 0x2f, 0x2f,
0xb6, 0xb6, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb9, 0xb9, 0xbd, 0xbd, 0xbe, 0xbe, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xc0, 0xbf, 0xc0, 0xbf, 0xbd, 0xba, 0xbb, 0xbb, 0xbd, 0xbd, 0xbd, 0xbb, 0xbb, 0xbb, 0xbd, 0xba, 0xbb, 0xbd, 0xbb, 0xbd, 0xbb, 0xb9, 0xb9, 0xb9, 0xbd, 0xbe, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbb, 0xbb, 0xbd, 0xbb, 0xbb, 0xbd, 0xb9, 0xbd, 0xaa, 0x78, 0x78, 0x7e, 0x78, 0x78, 0x7e, 0x78, 0x7e, 0x78, 0x7e, 0x78, 0x7e, 0x78, 0x7a, 0x78, 0x7e, 0x78, 0x7b, 0xc6, 0xc7, 0xc7, 0x68, 0x77, 0xa7, 0xa4, 0xa2, 0xa7, 0xa4, 0xa7, 0xa7, 0xa2, 0xa7, 0xa2, 0xa3, 0xa3, 0xa3, 0x9f, 0xa3, 0x9c, 0x9c, 0x9c, 0x9c, 0x9c, 0x9c, 0x9c, 0x8a, 0x8a, 0x8a, 0x82, 0x8a, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x7c, 0x82, 0x7c, 0x7f, 0xc9, 0xc7, 0xc9, 0xc7, 0xc9, 0xc8, 0xc8, 0xc8, 0xc9, 0xc9, 0xc9, 0xc9, 0xd6, 0xc9, 0xc9, 0xc9, 0xc9, 0xc9, 0xc9, 0xc9, 0xc9, 0xc9, 0xc9, 0xc9, 0x66, 0x66, 0x65, 0x66, 0x62, 0x65, 0x66, 0x5d, 0xc7, 0xf6, 0xd9, 0xd9, 0xf4, 0xd9, 0xcb, 0xcb, 0xcb, 0xda, 0xcc, 0x9e, 0x9e, 0x9e, 0xa0, 0xa3, 0xa0, 0xa3, 0xaa, 0x9f, 0xa7, 0xa2, 0xa7, 0xa2, 0xa1, 0xa1, 0xa4, 0xa4, 0xa4, 0xa1, 0xa1, 0x9d, 0x9d, 0x92, 0x82, 0x7c, 0x82, 0x82, 0x82, 0x85, 0x85, 0x85, 0x87, 0x86, 0x87, 0x86, 0x8b, 0x9a, 0x9d, 0xa1, 0xa1, 0xa6, 0xad, 0xab, 0xa6, 0xa6, 0xa4, 0xa4, 0xa4, 0xa4, 0xa1, 0xa4, 0xa4, 0xa4, 0xa4, 0xa4, 0xa4, 0xa6, 0xa6, 0xa4, 0xa6, 0xa6, 0xa9, 0xad, 0xa6, 0x99, 0x9a, 0x9d, 0x9d, 0x9d, 0x9d, 0x9d, 0x9d, 0x9d, 0x9d, 0x9d, 0x9d, 0x9d, 0x9d, 0xa1, 0xa4, 0xa1, 0x52, 0xa4, 0xa6, 0x7f, 0x6a, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x74, 0x70, 0x70, 0x70, 0x75, 0x74, 0x75, 0x70, 0x6c, 0x7f, 0xa4, 0xa4, 0x9b, 0xa2, 0x9b, 0xa2, 0x9b, 0xa2, 0x9b, 0xa2, 0x9b, 0x9f, 0x52, 0x9f, 0xa2, 0x9f, 0x9f, 0x9f, 0x52, 0x9f, 0xb1, 0xb3, 0xb1, 0xb3, 0xb5, 0xb6, 0xb5, 0xb5, 0xb6, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb6, 0xb6, 0xb6, 0xb7, 0xb7, 0xb9, 0xb7, 0xb6, 0xb5, 0xb2, 0xfa, 0xf9, 0xfb, 0xfa, 0xfb, 0xfb, 0xcd, 0xcd, 0xb0, 0xb3, 0xb3, 0xb5, 0xb3, 0xb5, 0xb5, 0xb3, 0xb5, 0xb5, 0xb5, 0xb3, 0xb1, 0xb5, 0xb3, 0xb3, 0xb1, 0xb3, 0xb1, 0xb1, 0xb1, 0xaf, 0xb1, 0xaf, 0xb1, 0xaf, 0xaf, 0xad, 0xaf, 0xad, 0xaf, 0xb6, 0xb6, 0xb5, 0xb5, 0xb5, 0xb3, 0xb5, 0xb3, 0xb5, 0xb3, 0xb5, 0xb3, 0xb5, 0xb3, 0xb5, 0xb3, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb6, 0xb5, 0xb9, 0xb7, 0xaf, 0xa4, 0x31, 0x2f, 0x32, 0x32, 0x32, 0x36, 0x32, 0x34, 0x39, 0x42, 0x41, 0x42, 0x42, 0x42, 0x42, 0x42, 0x42, 0x43, 0x43, 0x43, 0xfc, 0xfc, 0xfd, 0xdd, 0xdd, 0xbc, 0xdd, 0xbc, 0xdd, 0xbc, 0xbc, 0xbc, 0xbc, 0xbc, 0xbe, 0xbe, 0xbe, 0xbc, 0xbc, 0xbc, 0xcf, 0xbc, 0xbc, 0xcf, 0xcf, 0xcf, 0xbc, 0xbc, 0xbc, 0xcf, 0xbc, 0xcf, 0xbc, 0xcf, 0xcf, 0xc0, 0xfc, 0x2f, 0x34, 0x36, 0x36, 0x36, 0x3b, 0x3d, 0x3d, 0x3d, 0x3f, 0x3d, 0x41, 0x47, 0x47, 0x47, 0x45, 0x47, 0x45, 0x47, 0x47, 0x48, 0xfe, 0x46, 0xfd, 0x46, 0xcf, 0x42, 0x30, 0x33, 0x33, 0x33, 0x33, 0x34, 0x33, 0x34, 0x33, 0x34, 0x33, 0x2f, 0x2f,
0xb5, 0xb6, 0xb6, 0xb6, 0xb7, 0xb7, 0xb7, 0xb9, 0xb7, 0xbb, 0xbd, 0xbe, 0xbe, 0xbe, 0xbf, 0xbf, 0xbf, 0xbf, 0xc0, 0xc0, 0xc0, 0xc0, 0xbf, 0xbe, 0xbd, 0xbd, 0xbb, 0xbb, 0xba, 0xb9, 0xba, 0xb9, 0xba, 0xba, 0xbb, 0xbb, 0xbd, 0xbb, 0xbb, 0xba, 0xb7, 0xba, 0xbd, 0xbe, 0xbd, 0xbd, 0xbd, 0xbb, 0xbd, 0xbd, 0xbd, 0xbb, 0xbd, 0xbb, 0xbb, 0xbd, 0xbf, 0x92, 0x6f, 0x78, 0x78, 0x78, 0x7e, 0x78, 0x7e, 0x78, 0x7e, 0x78, 0x7e, 0x78, 0x7a, 0x78, 0x7a, 0x78, 0x7e, 0x78, 0x75, 0xc7, 0xc7, 0x68, 0x90, 0xab, 0xa2, 0xa7, 0xa6, 0xa7, 0xa2, 0xa7, 0xa3, 0xa7, 0xa3, 0xa7, 0xa3, 0x9f, 0xa3, 0x9f, 0x9c, 0x9c, 0x9c, 0x9c, 0x9c, 0x9c, 0x90, 0x82, 0x8a, 0x82, 0x8a, 0x82, 0x82, 0x82, 0x82, 0x82, 0x7f, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0xc8, 0xc7, 0xc9, 0xc7, 0xc8, 0xc7, 0xc8, 0xc8, 0xd6, 0xc8, 0xd6, 0xc9, 0xc8, 0xc9, 0xc9, 0xc9, 0xc9, 0xc9, 0xc9, 0xc9, 0xc9, 0xc9, 0xc9, 0xc8, 0x66, 0x62, 0x62, 0x66, 0x62, 0x62, 0x62, 0xd7, 0xf3, 0xf3, 0xd9, 0xf4, 0xd9, 0xf4, 0xcb, 0xcb, 0xcb, 0xcc, 0xcc, 0x98, 0x9e, 0xa0, 0xa0, 0xa3, 0xa3, 0xa3, 0xa7, 0xa3, 0xa2, 0xa2, 0xa2, 0xa1, 0xa1, 0xa1, 0xa1, 0x9d, 0xa1, 0x9d, 0x9a, 0x9a, 0x9a, 0x8d, 0x7c, 0x7c, 0x7f, 0x7f, 0x7f, 0x7f, 0x81, 0x81, 0x81, 0x86, 0x81, 0x8f, 0x99, 0x9a, 0x9d, 0xa4, 0xa1, 0xa9, 0xaf, 0xad, 0xa6, 0xa6, 0xa6, 0xa4, 0xa4, 0xa6, 0xa4, 0xa4, 0xa4, 0xa4, 0xa6, 0xa4, 0xa6, 0xa6, 0xa6, 0xa4, 0xa6, 0xa9, 0xab, 0xaf, 0xab, 0x9d, 0x9a, 0xa1, 0x9d, 0x9d, 0x9d, 0x9d, 0x9d, 0x9d, 0x9d, 0x9d, 0x9d, 0x9d, 0xa4, 0xa4, 0xa2, 0xa1, 0x52, 0xa6, 0xa6, 0x7f, 0x66, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x75, 0x70, 0x6a, 0x79, 0xa2, 0xa9, 0x9b, 0xa2, 0x9b, 0xa2, 0x9b, 0x9f, 0x52, 0xa2, 0x9f, 0x9f, 0x9f, 0xa2, 0xa2, 0x9f, 0xa2, 0x9f, 0xa7, 0xb5, 0xb1, 0xb3, 0xb1, 0xb5, 0xb5, 0xb6, 0xb6, 0xb5, 0xb6, 0xb5, 0xb5, 0xb6, 0xb5, 0xb5, 0xb5, 0xb6, 0xb5, 0xb5, 0xb5, 0xb5, 0xb6, 0xb5, 0xb9, 0xb4, 0xfa, 0xfb, 0xfb, 0xcd, 0xcd, 0xb0, 0xb0, 0xb5, 0xb5, 0xb5, 0xb5, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb9, 0xad, 0x9a, 0xab, 0xaf, 0xad, 0xad, 0xad, 0xad, 0xad, 0xad, 0xad, 0xab, 0xab, 0xab, 0xab, 0xab, 0xab, 0xab, 0xa9, 0xad, 0xb7, 0xb9, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb9, 0xb7, 0xb9, 0xb7, 0xb9, 0xb7, 0xb7, 0xb9, 0xb9, 0xb9, 0xb9, 0xb7, 0xb9, 0xb9, 0xb7, 0xb9, 0xb7, 0xb9, 0xbd, 0xb5, 0xf7, 0x2f, 0x32, 0x32, 0x32, 0x32, 0x32, 0x34, 0x36, 0x40, 0x42, 0x41, 0x42, 0x42, 0x42, 0x42, 0x42, 0x42, 0x43, 0x43, 0xfc, 0x46, 0xfc, 0xdd, 0xbc, 0xdd, 0xbc, 0xdd, 0xbc, 0xbc, 0xdd, 0xbc, 0xbc, 0xbc, 0xbc, 0xcf, 0xbd, 0xbe, 0xbc, 0xcf, 0xbc, 0xbc, 0xcf, 0xbc, 0xcf, 0xbc, 0xdd, 0xcf, 0xdd, 0xbc, 0xdd, 0xbc, 0xdd, 0xcf, 0xbc, 0xcf, 0xbf, 0x40, 0x2f, 0x36, 0x36, 0x36, 0x3a, 0x3f, 0x3d, 0x3d, 0x3f, 0x3f, 0x3f, 0x45, 0x47, 0x45, 0x47, 0x45, 0x47, 0x47, 0x46, 0xfe, 0xfe, 0x46, 0xfc, 0x46, 0xfd, 0xd0, 0x3c, 0x2e, 0x33, 0x33, 0x33, 0x34, 0x33, 0x33, 0x34, 0x34, 0x38, 0x2f, 0x2f,
0xb6, 0xb5, 0xb6, 0xb5, 0xb6, 0xb6, 0xb7, 0xb7, 0xb7, 0xba, 0xbd, 0xbe, 0xbe, 0xbf, 0xbf, 0xbf, 0xbf, 0xc0, 0xc0, 0xc0, 0xc0, 0xc1, 0xc1, 0xbf, 0xc0, 0xbf, 0xbf, 0xbf, 0xbe, 0xbe, 0xbd, 0xbd, 0xbb, 0xbb, 0xba, 0xbb, 0xba, 0xb9, 0xba, 0xba, 0xb7, 0xba, 0xbd, 0xbd, 0xbe, 0xbd, 0xbe, 0xbd, 0xbd, 0xbb, 0xbd, 0xbb, 0xbb, 0xbb, 0xbb, 0xbd, 0xbb, 0x87, 0x71, 0x7e, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x7a, 0x78, 0x78, 0x72, 0xc6, 0xc8, 0xa4, 0xa6, 0xa2, 0xa4, 0xa2, 0xa7, 0xa7, 0xa6, 0xa7, 0xa2, 0xa7, 0xa3, 0xa3, 0xa3, 0x9f, 0xa3, 0xa3, 0x9c, 0x9c, 0x9c, 0x9c, 0x98, 0x8a, 0x82, 0x8a, 0x8a, 0x82, 0x82, 0x82, 0x82, 0x82, 0x7c, 0x82, 0x7c, 0x82, 0x7c, 0x7c, 0x7c, 0x79, 0x77, 0xc7, 0xc7, 0xc8, 0xc7, 0xc8, 0xc7, 0xc9, 0xc7, 0xc9, 0xc8, 0xd6, 0xc9, 0xc9, 0xd6, 0xc9, 0xc9, 0xc9, 0xc9, 0xc9, 0xc9, 0xc9, 0xc8, 0xc9, 0x72, 0x62, 0x62, 0x62, 0x65, 0x60, 0x65, 0xf3, 0xf3, 0xd9, 0xf3, 0xd9, 0xf4, 0xf4, 0xcb, 0xcb, 0xcc, 0x94, 0xcc, 0x9e, 0x98, 0x9c, 0x9c, 0xa3, 0xa3, 0xa3, 0x9f, 0xa2, 0xa2, 0xa3, 0xa1, 0x9d, 0xa1, 0xa1, 0xa1, 0xa1, 0x9d, 0x9d, 0x9d, 0x9a, 0x9a, 0x96, 0x87, 0x77, 0x7c, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x85, 0x81, 0x81, 0x8f, 0x99, 0x99, 0x9d, 0xa1, 0xa4, 0xa4, 0xab, 0xad, 0xad, 0xa9, 0xa6, 0xa6, 0xa6, 0xa4, 0xa6, 0xa4, 0xa6, 0xa4, 0xa4, 0xa4, 0xa6, 0xa9, 0xa6, 0xa6, 0xa9, 0xa9, 0xab, 0xad, 0xb1, 0xab, 0x9a, 0x9a, 0x9d, 0x9d, 0x9d, 0x9d, 0x9d, 0x9d, 0x9d, 0x9d, 0x9d, 0x9d, 0xa4, 0xa4, 0x52, 0x52, 0xa2, 0x52, 0xa4, 0xa6, 0x7f, 0x66, 0x6e, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x74, 0x70, 0x70, 0x70, 0x75, 0x66, 0x75, 0x9f, 0xa6, 0x52, 0x9f, 0x52, 0x9f, 0x52, 0x9f, 0x9f, 0x9f, 0xa2, 0x9f, 0x9f, 0x9f, 0xa2, 0x9f, 0x9f, 0xaa, 0xb5, 0xb1, 0xb3, 0xb1, 0xb1, 0xb5, 0xb6, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb6, 0xb5, 0xb5, 0xb7, 0xb9, 0xcd, 0xfa, 0xfb, 0xfb, 0xcd, 0xcd, 0xb0, 0xb4, 0xb5, 0xb6, 0xb6, 0xb5, 0xb5, 0xb6, 0xb6, 0xb5, 0xb6, 0xb7, 0xa9, 0x9a, 0xa4, 0xaf, 0xaf, 0xad, 0xad, 0xad, 0xaf, 0xad, 0xad, 0xad, 0xab, 0xad, 0xad, 0xab, 0xab, 0xab, 0xad, 0xaf, 0xb6, 0xb7, 0xb7, 0xb6, 0xb6, 0xb6, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb9, 0xb9, 0xb9, 0xbb, 0xba, 0xba, 0xbb, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbe, 0xbd, 0xbd, 0xbf, 0x46, 0x39, 0x40, 0x39, 0x39, 0x35, 0x39, 0x32, 0x34, 0x36, 0x42, 0x42, 0x42, 0x41, 0x42, 0x42, 0x43, 0x42, 0x43, 0x45, 0x43, 0xfc, 0xfd, 0xdd, 0xfe, 0xdd, 0xdd, 0xdd, 0xdd, 0xbc, 0xdd, 0xbc, 0xbc, 0xdd, 0xbc, 0xbc, 0xbc, 0xbe, 0xbd, 0xbc, 0xcf, 0xbc, 0xbc, 0xcf, 0xbc, 0xbc, 0xbc, 0xdd, 0xbc, 0xdd, 0xbc, 0xdd, 0xcf, 0xdd, 0xcf, 0xdd, 0xc0, 0xfd, 0x34, 0x34, 0x36, 0x36, 0x36, 0x3d, 0x3d, 0x3f, 0x3f, 0x3f, 0x3f, 0x41, 0x47, 0x47, 0x47, 0x47, 0x47, 0x46, 0x48, 0xfe, 0x46, 0xfc, 0x46, 0xfd, 0x46, 0xfe, 0xfe, 0x39, 0x30, 0x34, 0x33, 0x33, 0x34, 0x33, 0x34, 0x33, 0x36, 0x38, 0x2f,
0xbb, 0xb9, 0xb9, 0xb9, 0xb7, 0xb7, 0xb7, 0xb6, 0xb7, 0xb6, 0xbb, 0xbe, 0xbe, 0xbf, 0xbf, 0xbf, 0xc0, 0xc0, 0xc0, 0xc1, 0xc0, 0xc1, 0xc0, 0xc0, 0xbf, 0xbf, 0xc0, 0xbf, 0xc0, 0xc0, 0xc0, 0xbf, 0xbf, 0xbf, 0xbf, 0xbe, 0xbd, 0xbd, 0xbb, 0xbb, 0xb9, 0xba, 0xbe, 0xbd, 0xbd, 0xbb, 0xbb, 0xba, 0xbb, 0xbb, 0xb9, 0xba, 0xb7, 0xb9, 0xb7, 0xb9, 0xb7, 0x9c, 0x88, 0x8a, 0x8a, 0x82, 0x85, 0x85, 0x81, 0x7f, 0x81, 0x7b, 0x7e, 0x7a, 0x78, 0x7a, 0x78, 0x76, 0x78, 0x78, 0x78, 0x78, 0x68, 0x82, 0xa9, 0xa2, 0xa2, 0xa2, 0xa7, 0xa2, 0xa7, 0x9f, 0xa7, 0xa3, 0xa2, 0xa3, 0x9f, 0xa3, 0xa3, 0xa3, 0x9f, 0x9f, 0x98, 0x9c, 0x9c, 0x90, 0x8a, 0x82, 0x8a, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x79, 0xc8, 0xc7, 0xc7, 0xc8, 0xc7, 0xc8, 0xd6, 0xc8, 0xd6, 0xc8, 0xc9, 0xc8, 0xc9, 0xc8, 0xc9, 0xc8, 0xc9, 0xc8, 0xc9, 0xc9, 0xc8, 0xc9, 0xc9, 0xd7, 0x72, 0x60, 0x62, 0x62, 0x5d, 0xc8, 0xf5, 0xd9, 0xf3, 0xd9, 0xd9, 0xf4, 0xd9, 0xcb, 0xcb, 0xcb, 0x94, 0xcc, 0x98, 0x9e, 0x9c, 0x9c, 0x9c, 0xa3, 0xa3, 0xa2, 0xa3, 0x9f, 0xa2, 0x52, 0x9d, 0x9d, 0xa1, 0x9d, 0x9d, 0x9d, 0x9a, 0x9a, 0x9a, 0x96, 0x96, 0x96, 0x85, 0x77, 0x79, 0x7c, 0x7b, 0x7f, 0x7b, 0x7f, 0x81, 0x7f, 0x92, 0x95, 0x99, 0x52, 0x9d, 0xa4, 0xa4, 0xa6, 0xad, 0xad, 0xad, 0xa9, 0xa9, 0xa6, 0xa6, 0xa6, 0xa4, 0xa6, 0xa6, 0xa6, 0xa6, 0xa6, 0xa6, 0xa6, 0xa9, 0xa9, 0xab, 0xab, 0xad, 0xaf, 0xb3, 0xab, 0x9a, 0x9d, 0x9d, 0x9d, 0x9d, 0x9d, 0x9d, 0x9d, 0x9d, 0x9d, 0x9d, 0xa1, 0xa4, 0xa1, 0xa1, 0x52, 0x52, 0x52, 0xa1, 0xa9, 0x7f, 0x66, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x75, 0x70, 0x6a, 0x75, 0x9b, 0xab, 0x52, 0x9f, 0x52, 0x9f, 0x9f, 0x52, 0x9f, 0x9f, 0xa2, 0x9f, 0x9f, 0xa2, 0x9f, 0x9f, 0xb1, 0xb5, 0xb3, 0xb3, 0xb3, 0xb3, 0xb1, 0xb5, 0xb6, 0xb6, 0xb5, 0xb5, 0xb6, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb6, 0xb5, 0xb5, 0xb5, 0xb5, 0xb6, 0xb9, 0xb9, 0xb7, 0xfb, 0xfb, 0xfb, 0xcd, 0xcd, 0xb0, 0xb0, 0xb5, 0xb5, 0xb6, 0xb5, 0xb6, 0xb5, 0xb6, 0xb6, 0xb6, 0xb6, 0xa6, 0x9d, 0x9d, 0xa2, 0xb1, 0xad, 0xaf, 0xad, 0xad, 0xad, 0xad, 0xab, 0xad, 0xad, 0xab, 0xab, 0xab, 0xad, 0xa9, 0xb3, 0xb6, 0xb5, 0xb9, 0xb7, 0xb6, 0xb7, 0xb6, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb9, 0xb7, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xba, 0xba, 0xbb, 0xbb, 0xba, 0xbd, 0xbb, 0xbe, 0xbd, 0xbd, 0xbb, 0xc0, 0x49, 0x41, 0x40, 0x41, 0x41, 0x41, 0x40, 0x40, 0x40, 0x39, 0x42, 0x44, 0x42, 0x42, 0x42, 0x42, 0x43, 0x42, 0x43, 0x43, 0x43, 0xfc, 0xfd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xbc, 0xdd, 0xdd, 0xbc, 0xdd, 0xbc, 0xbc, 0xdd, 0xbc, 0xbc, 0xbf, 0xbe, 0xdd, 0xbe, 0xbc, 0xcf, 0xbc, 0xbc, 0xdd, 0xdd, 0xbc, 0xdd, 0xdd, 0xdd, 0xdd, 0xbc, 0xdd, 0xbc, 0xcf, 0xbf, 0x41, 0x2f, 0x36, 0x3b, 0x36, 0x3d, 0x3d, 0x3d, 0x3f, 0x3f, 0x3f, 0x3f, 0x47, 0x45, 0x47, 0x47, 0x47, 0x48, 0x46, 0x49, 0xfc, 0x46, 0xfc, 0x46, 0x46, 0xfc, 0xcf, 0x46, 0x33, 0x30, 0x34, 0x38, 0x33, 0x34, 0x33, 0x34, 0x34, 0x38, 0x34,
0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbb, 0xbd, 0xbb, 0xba, 0xb9, 0xbb, 0xbf, 0xbf, 0xc0, 0xc0, 0xc0, 0xbf, 0xc1, 0xc0, 0xc0, 0xc1, 0xc0, 0xc1, 0xbf, 0xc0, 0xbf, 0xbf, 0xc0, 0xbf, 0xbf, 0xbf, 0xbf, 0xc0, 0xbf, 0xbf, 0xbf, 0xc0, 0xc0, 0xbf, 0xbf, 0xbf, 0xbd, 0xb9, 0xb9, 0xba, 0xb9, 0xb9, 0xb9, 0xb9, 0xb7, 0xb7, 0xb7, 0xb7, 0xb6, 0xb7, 0xb6, 0xb6, 0xb1, 0x8a, 0x88, 0x8a, 0x8e, 0x8a, 0x88, 0x8e, 0x8a, 0x8e, 0x8a, 0x8e, 0x8a, 0x8e, 0x82, 0x8a, 0x8a, 0x85, 0x82, 0x85, 0x81, 0x7b, 0xa2, 0xab, 0xa2, 0xa2, 0xa7, 0xa2, 0xa2, 0x9f, 0xa2, 0x9f, 0x9f, 0xa3, 0x9f, 0xa3, 0x9f, 0x9f, 0x9f, 0xa3, 0x9f, 0x9c, 0x98, 0x9c, 0x8a, 0x82, 0x8a, 0x82, 0x82, 0x82, 0x82, 0x82, 0x7c, 0x82, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x77, 0x79, 0x77, 0xc7, 0xc7, 0xc7, 0xc7, 0xd6, 0xc7, 0xd6, 0xc7, 0xc9, 0xc7, 0xc9, 0xc7, 0xc9, 0xc8, 0xc9, 0xc8, 0xc9, 0xc8, 0xc9, 0xc8, 0xc9, 0xc8, 0xc8, 0xc9, 0x68, 0x60, 0x62, 0x62, 0xf1, 0xf3, 0xf1, 0xd9, 0xf3, 0xd9, 0xd9, 0xcb, 0xd9, 0xcb, 0x94, 0xcc, 0x94, 0x98, 0x98, 0x9c, 0x9c, 0x9c, 0x9c, 0x9f, 0xa2, 0xa2, 0x9f, 0x9f, 0x9d, 0x9d, 0x9d, 0x9d, 0x9d, 0x9a, 0x9a, 0x9a, 0x9a, 0x96, 0x96, 0x96, 0x96, 0x96, 0x7b, 0x77, 0x79, 0x79, 0x7b, 0x7f, 0x7b, 0x7f, 0x81, 0x93, 0x95, 0x97, 0x99, 0x52, 0xa1, 0xa4, 0xa1, 0xa9, 0xad, 0xad, 0xad, 0xa9, 0xa9, 0xa6, 0xa9, 0xa6, 0xa6, 0xa6, 0xa6, 0xa6, 0xa6, 0xa9, 0xa6, 0xa6, 0xab, 0xab, 0xad, 0xaf, 0xaf, 0xaf, 0xb5, 0xad, 0x99, 0x9d, 0x9d, 0xa1, 0x9d, 0xa1, 0x9d, 0x9d, 0x9d, 0x9d, 0xa6, 0xa1, 0x52, 0xa1, 0x52, 0x52, 0xa2, 0x52, 0x52, 0xa6, 0x82, 0x65, 0x70, 0x6a, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x74, 0x70, 0x6a, 0x6c, 0x93, 0xa9, 0x52, 0x9f, 0x52, 0x9f, 0xa2, 0x52, 0x9f, 0xa2, 0x9f, 0xa2, 0x9f, 0x9f, 0xa2, 0xb3, 0xb3, 0xb3, 0xb3, 0xb3, 0xb3, 0xb3, 0xb3, 0xb5, 0xb5, 0xb5, 0xb6, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb6, 0xb5, 0xb6, 0xb5, 0xb6, 0xb5, 0xb6, 0xb7, 0xb7, 0xb9, 0xb7, 0xfb, 0xfb, 0xcd, 0xcd, 0xb0, 0xb4, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb6, 0xb5, 0xb7, 0xb3, 0xa1, 0xa1, 0xa1, 0x9d, 0xa6, 0xb1, 0xad, 0xad, 0xad, 0xad, 0xad, 0xad, 0xab, 0xad, 0xab, 0xad, 0xab, 0xab, 0xab, 0xb3, 0xb6, 0xb5, 0xb7, 0xb9, 0xb7, 0xb6, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb9, 0xb7, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xba, 0xba, 0xbb, 0xbd, 0xbb, 0xba, 0xbb, 0xbd, 0xbd, 0xbe, 0xbb, 0xbe, 0xff, 0xff, 0x44, 0x3f, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x45, 0x47, 0x47, 0x47, 0x47, 0x43, 0x45, 0x43, 0x45, 0x43, 0x43, 0x43, 0xfc, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xbc, 0xdd, 0xbc, 0xbc, 0xbc, 0xdd, 0xbc, 0xbe, 0xbc, 0xbc, 0xbc, 0xcf, 0xdd, 0xbc, 0xdd, 0xbc, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xbf, 0xbe, 0x36, 0x34, 0x36, 0x36, 0x3b, 0x3d, 0x3f, 0x3f, 0x3f, 0x3f, 0x3f, 0x44, 0x47, 0x47, 0x47, 0x46, 0x46, 0x49, 0xfe, 0xfc, 0x46, 0x46, 0xfd, 0x46, 0x46, 0x46, 0xcf, 0x43, 0x33, 0x30, 0x34, 0x33, 0x34, 0x33, 0x36, 0x34, 0x34, 0x38,
0xbd, 0xbb, 0xbd, 0xbb, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbf, 0xbf, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc1, 0xc0, 0xc1, 0xc0, 0xc1, 0xbf, 0xbf, 0xc0, 0xbf, 0xbf, 0xc0, 0xbf, 0xc0, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xd0, 0xbf, 0xb7, 0xba, 0xb9, 0xba, 0xb9, 0xb9, 0xb9, 0xb9, 0xb7, 0xb9, 0xb7, 0xb7, 0xb6, 0xb7, 0xb3, 0xb5, 0x9c, 0x82, 0x88, 0x8a, 0x8a, 0x8a, 0x8a, 0x88, 0x8a, 0x88, 0x8a, 0x88, 0x8a, 0x8e, 0x8a, 0x88, 0x8e, 0x8e, 0x8e, 0x8e, 0x8e, 0x9b, 0xb1, 0xaf, 0xab, 0xaa, 0xad, 0xad, 0xab, 0xa7, 0xaa, 0xa7, 0xa7, 0xa7, 0xa3, 0xa3, 0xa3, 0x9c, 0x9c, 0x9f, 0x9c, 0x9c, 0x8e, 0x7c, 0x82, 0x82, 0x7c, 0x82, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x79, 0x77, 0x79, 0x77, 0x79, 0xc8, 0xc7, 0xc7, 0xd6, 0xc7, 0xd6, 0xc7, 0xd6, 0xc7, 0xd6, 0xc7, 0xd6, 0xc8, 0xd6, 0xc8, 0xd6, 0xc9, 0xd6, 0xc9, 0xc8, 0xc9, 0xc8, 0xc9, 0xc9, 0xd7, 0x65, 0x5d, 0x68, 0xf5, 0xf1, 0xf3, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xcb, 0xcb, 0xcb, 0x94, 0xcc, 0x98, 0x9e, 0x98, 0x9c, 0x9c, 0x93, 0x9c, 0x9f, 0x9f, 0x9f, 0x9f, 0x9a, 0x9a, 0x9a, 0x9d, 0x9a, 0x9d, 0x9a, 0x9a, 0x96, 0x96, 0x96, 0x96, 0x91, 0x91, 0x51, 0x79, 0x77, 0x7b, 0x79, 0x7b, 0x7f, 0x7b, 0x7f, 0x92, 0x93, 0x95, 0x97, 0x52, 0x9d, 0xa1, 0xa4, 0xa6, 0xa9, 0xad, 0xaf, 0xad, 0xa9, 0xa9, 0xa9, 0xa9, 0xa6, 0xa6, 0xa6, 0xa6, 0xa9, 0xa9, 0xa9, 0xa9, 0xab, 0xad, 0xad, 0xaf, 0xaf, 0xb1, 0xb1, 0xb6, 0xaf, 0x9a, 0x9d, 0xa1, 0x9d, 0x9d, 0xa1, 0x9d, 0x9d, 0xa1, 0xa4, 0xa1, 0xa1, 0x52, 0x52, 0x52, 0x52, 0x52, 0x9b, 0xa4, 0xa6, 0x7f, 0x66, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x6a, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x75, 0x6a, 0x6a, 0x93, 0xa9, 0xa2, 0x9f, 0x52, 0x9f, 0x9f, 0x9f, 0xa2, 0x9f, 0xa2, 0x9f, 0x9f, 0xaa, 0xb5, 0xb3, 0xb3, 0xb3, 0xb3, 0xb3, 0xb3, 0xb1, 0xb3, 0xb6, 0xb6, 0xb5, 0xb5, 0xb6, 0xb5, 0xb6, 0xb5, 0xb5, 0xb6, 0xb5, 0xb5, 0xb5, 0xb6, 0xb7, 0xb9, 0xb7, 0xb7, 0xb9, 0xb4, 0xfb, 0xcd, 0xcd, 0xb0, 0xb2, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb6, 0xb5, 0xb6, 0xb7, 0xaf, 0x9d, 0xa1, 0xa1, 0xa1, 0x9d, 0xa7, 0xaf, 0xad, 0xad, 0xad, 0xad, 0xad, 0xab, 0xad, 0xab, 0xab, 0xab, 0xab, 0xab, 0xb3, 0xb5, 0xb6, 0xb5, 0xb9, 0xb9, 0xb6, 0xb7, 0xb6, 0xb6, 0xb9, 0xb7, 0xb7, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xbb, 0xba, 0xbb, 0xbb, 0xbb, 0xbd, 0xbb, 0xbd, 0xbb, 0xbd, 0xbd, 0xff, 0x49, 0xc1, 0x45, 0x3f, 0x40, 0x40, 0x40, 0x41, 0x40, 0x40, 0x40, 0x42, 0x46, 0x45, 0xfc, 0x47, 0x47, 0x47, 0x46, 0x46, 0x46, 0x46, 0xfc, 0x46, 0xfe, 0xdd, 0xdd, 0xfe, 0xdd, 0xdd, 0xdd, 0xcf, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xbc, 0xdd, 0xbc, 0xbd, 0xbc, 0xcf, 0xbc, 0xbc, 0xdd, 0xbc, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xce, 0xdd, 0xdd, 0xdd, 0xbf, 0x43, 0x2f, 0x3a, 0x36, 0x3b, 0x3d, 0x3d, 0x3f, 0x3f, 0x3f, 0x3f, 0x41, 0x47, 0x47, 0x47, 0x46, 0x48, 0xfe, 0x46, 0x46, 0xfc, 0x46, 0x46, 0xfd, 0x46, 0xfd, 0x46, 0xd0, 0x41, 0x30, 0x33, 0x34, 0x33, 0x34, 0x38, 0x34, 0x34, 0x34,
0xbb, 0xbd, 0xbb, 0xbd, 0xbb, 0xbd, 0xbb, 0xbd, 0xbd, 0xbd, 0xbe, 0xbf, 0xbf, 0xc0, 0xc0, 0xc0, 0xbf, 0xc0, 0xc0, 0xc0, 0xc0, 0xc1, 0xc0, 0xc0, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xc0, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xc0, 0xc0, 0xba, 0xb9, 0xba, 0xb9, 0xb9, 0xb9, 0xb7, 0xb9, 0xb9, 0xb7, 0xb7, 0xb7, 0xb7, 0xb5, 0xb1, 0xb3, 0xaf, 0x88, 0x82, 0x88, 0x82, 0x88, 0x8a, 0x88, 0x8a, 0x88, 0x8a, 0x88, 0x8a, 0x88, 0x88, 0x8a, 0x88, 0x8a, 0x88, 0x8a, 0x88, 0x82, 0xa6, 0xaf, 0xaf, 0xad, 0xaf, 0xaf, 0xaf, 0xb3, 0xaf, 0xb3, 0xb1, 0xb1, 0xaf, 0xaf, 0xaa, 0xaf, 0xaa, 0xaa, 0xa7, 0xa3, 0x98, 0x8e, 0x8a, 0x8e, 0x8a, 0x82, 0x8a, 0x82, 0x82, 0x7c, 0x7c, 0x7c, 0x77, 0x77, 0x77, 0x74, 0x72, 0x74, 0x72, 0x72, 0x6e, 0x70, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0xc7, 0xc6, 0xc7, 0xc6, 0xc7, 0xc6, 0xc7, 0x68, 0xc7, 0xc7, 0xc7, 0xc7, 0x68, 0xc7, 0xc7, 0x6e, 0xeb, 0xc7, 0x5b, 0xd6, 0xf2, 0xf1, 0xf1, 0xf1, 0xf1, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0x94, 0xcb, 0x94, 0x94, 0x98, 0x98, 0x9c, 0x93, 0x9c, 0x93, 0x93, 0x9f, 0x9f, 0x9d, 0x9a, 0x9a, 0x9d, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x96, 0x96, 0x96, 0x96, 0x51, 0x51, 0x51, 0x8f, 0x77, 0x77, 0x79, 0x79, 0x7b, 0x79, 0x85, 0x97, 0x92, 0x97, 0x97, 0x52, 0x52, 0xa1, 0xa1, 0xa4, 0xa6, 0xa9, 0xad, 0xaf, 0xad, 0xa9, 0xa9, 0xa9, 0xa9, 0xa6, 0xa9, 0xa6, 0xa9, 0xa9, 0xa9, 0xa9, 0xab, 0xad, 0xad, 0xb1, 0xb1, 0xb1, 0xaf, 0xb3, 0xb5, 0xad, 0x9d, 0x9a, 0xa1, 0x9d, 0xa1, 0x9d, 0x9d, 0xa1, 0xa1, 0xa1, 0x52, 0x52, 0x52, 0x52, 0x52, 0x52, 0x52, 0x9b, 0xa1, 0xa9, 0x82, 0x66, 0x6a, 0x70, 0x6a, 0x70, 0x6a, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x6c, 0x6a, 0x8c, 0xab, 0xa2, 0x9f, 0x9f, 0x9f, 0x9f, 0xa2, 0x9f, 0xa2, 0x9f, 0x9f, 0xaf, 0xb5, 0xb3, 0xb1, 0xb3, 0xb3, 0xb3, 0xb3, 0xb1, 0xb1, 0xb5, 0xb6, 0xb5, 0xb6, 0xb5, 0xb6, 0xb5, 0xb6, 0xb5, 0xb6, 0xb5, 0xb6, 0xb5, 0xb6, 0xb7, 0xb7, 0xb7, 0xb9, 0xb7, 0xb9, 0xb0, 0xfb, 0xcd, 0xb0, 0xb4, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb7, 0xa9, 0x9d, 0xa1, 0xa1, 0xa1, 0xa1, 0x9d, 0xa9, 0xaf, 0xad, 0xad, 0xab, 0xad, 0xab, 0xab, 0xad, 0xab, 0xab, 0xad, 0xab, 0xb3, 0xb6, 0xb5, 0xb5, 0xb7, 0xb9, 0xb9, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb9, 0xb7, 0xb9, 0xb9, 0xb7, 0xb9, 0xb9, 0xbb, 0xba, 0xba, 0xbb, 0xbd, 0xbb, 0xbd, 0xbb, 0xbd, 0xba, 0xcf, 0x49, 0xff, 0xff, 0x47, 0x40, 0x40, 0x40, 0x41, 0x40, 0x40, 0x40, 0x40, 0x42, 0x45, 0xfc, 0x47, 0xfc, 0x47, 0xfc, 0x47, 0xfc, 0x47, 0x46, 0x46, 0xfe, 0xdd, 0xfe, 0xfe, 0xcf, 0xfe, 0xcf, 0xfe, 0xdd, 0xfe, 0xcf, 0xfe, 0xbc, 0xcf, 0xdd, 0xbc, 0xbc, 0xdd, 0xbc, 0xbc, 0xb8, 0xbd, 0xba, 0xbd, 0xb8, 0xbc, 0xbb, 0xb8, 0xbd, 0xb8, 0xbc, 0xb8, 0xdd, 0xbc, 0xdd, 0xbc, 0xbc, 0xbf, 0x3c, 0x34, 0x36, 0x36, 0x3d, 0x3f, 0x3f, 0x3f, 0x3f, 0x3f, 0x40, 0x45, 0x46, 0x48, 0x46, 0x48, 0xfe, 0x46, 0xfc, 0x46, 0xfc, 0x46, 0x46, 0x46, 0x46, 0x46, 0xdd, 0xfe, 0x39, 0x30, 0x33, 0x34, 0x33, 0x34, 0x38, 0x34, 0x38,
0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbf, 0xbf, 0xc0, 0xbf, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc1, 0xc0, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xc0, 0xc1, 0xbd, 0xb7, 0xba, 0xb9, 0xb9, 0xb9, 0xb9, 0xb7, 0xb7, 0xb7, 0xb6, 0xb6, 0xb6, 0xb3, 0xb1, 0xaf, 0xb6, 0x9c, 0x7d, 0x8a, 0x88, 0x8a, 0x88, 0x88, 0x82, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x8a, 0x84, 0x82, 0x8c, 0xab, 0xad, 0xad, 0xad, 0xad, 0xaf, 0xaf, 0xaf, 0xaf, 0xb1, 0xb1, 0xb1, 0xb1, 0xb3, 0xb1, 0xb3, 0xb3, 0xb5, 0xab, 0xa1, 0xb9, 0xb7, 0xb5, 0xb5, 0xb5, 0xb3, 0xb2, 0xb2, 0xb2, 0xae, 0xae, 0xae, 0xaa, 0xa8, 0xa8, 0xa8, 0x9c, 0xa0, 0x9c, 0x9c, 0x98, 0x94, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xcb, 0xd9, 0xd9, 0xcb, 0xd9, 0xcb, 0xd9, 0xcb, 0xda, 0xda, 0xcb, 0xda, 0xcb, 0xcb, 0xcb, 0xcb, 0xcb, 0x94, 0x94, 0x94, 0x94, 0x98, 0x98, 0x90, 0x98, 0x93, 0x90, 0x93, 0x90, 0x90, 0x93, 0x9a, 0x96, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x96, 0x96, 0x96, 0x51, 0x91, 0x51, 0x51, 0x51, 0x86, 0x77, 0x77, 0x79, 0x79, 0x75, 0x85, 0x93, 0x92, 0x97, 0x97, 0x97, 0x52, 0x52, 0xa1, 0xa1, 0xa6, 0xa9, 0xab, 0xad, 0xaf, 0xad, 0xab, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xab, 0xab, 0xad, 0xb1, 0xaf, 0xb1, 0xaf, 0xb3, 0xb1, 0xb3, 0xb7, 0xaf, 0x9a, 0x9d, 0xa1, 0x9d, 0x9d, 0x9d, 0xa1, 0xa1, 0x52, 0x52, 0x52, 0x52, 0x52, 0x9b, 0x52, 0x52, 0x9b, 0x52, 0xa2, 0xa6, 0x85, 0x66, 0x6a, 0x70, 0x6a, 0x70, 0x70, 0x70, 0x6a, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x6c, 0x6a, 0x85, 0xab, 0xa2, 0xa2, 0x52, 0xa2, 0x9f, 0xa2, 0x9f, 0x9f, 0xa2, 0xb1, 0xb3, 0xb3, 0xb1, 0xb3, 0xb3, 0xb1, 0xb3, 0xb3, 0xb3, 0xb1, 0xb5, 0xb6, 0xb6, 0xb5, 0xb5, 0xb6, 0xb5, 0xb5, 0xb6, 0xb5, 0xb6, 0xb5, 0xb6, 0xb9, 0xb9, 0xb7, 0xb7, 0xb7, 0xb9, 0xb9, 0xb0, 0xcd, 0xb0, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb6, 0xb5, 0xb5, 0xb6, 0xb6, 0xa6, 0x9d, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa9, 0xaf, 0xab, 0xad, 0xab, 0xab, 0xab, 0xab, 0xad, 0xab, 0xab, 0xab, 0xb5, 0xb5, 0xb5, 0xb6, 0xb5, 0xb9, 0xba, 0xb9, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb9, 0xb9, 0xb9, 0xb9, 0xba, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbd, 0xbd, 0xbd, 0xbb, 0xbe, 0x49, 0x49, 0x49, 0xff, 0x49, 0x41, 0x3f, 0x41, 0x40, 0x40, 0x40, 0x41, 0x40, 0x42, 0x45, 0x47, 0x47, 0xfc, 0x47, 0xfc, 0x47, 0x46, 0x46, 0x46, 0xfd, 0xfe, 0xfe, 0xfe, 0xdd, 0xfe, 0xdd, 0xcf, 0xfe, 0xcf, 0xfe, 0xcf, 0xdd, 0xcf, 0xfe, 0xcf, 0xcf, 0xcf, 0xbc, 0xcf, 0xb8, 0xcd, 0xfb, 0xcd, 0xcd, 0xcd, 0xcd, 0xcd, 0xdc, 0xcd, 0xdc, 0xcd, 0xdc, 0xdc, 0xdc, 0xdc, 0xdc, 0xdc, 0xdc, 0x42, 0x34, 0x3a, 0x36, 0x3b, 0x3d, 0x3f, 0x3f, 0x3f, 0x3f, 0x40, 0x44, 0x47, 0x46, 0x48, 0xfe, 0xfe, 0x46, 0xfc, 0x46, 0xfc, 0x46, 0xfd, 0x46, 0xfd, 0x46, 0x46, 0xcf, 0x46, 0x36, 0x30, 0x38, 0x34, 0x34, 0x34, 0x36, 0x34,
0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbb, 0xbd, 0xbf, 0xbf, 0xbf, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc1, 0xc0, 0xc1, 0xc0, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xc0, 0xc0, 0xc1, 0xc0, 0xb7, 0xb9, 0xb9, 0xb7, 0xb9, 0xb9, 0xb7, 0xb7, 0xb7, 0xb6, 0xb6, 0xb5, 0xb3, 0xaf, 0xb1, 0xb3, 0xb1, 0x88, 0x80, 0x82, 0x88, 0x82, 0x88, 0x88, 0x88, 0x82, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x8a, 0x88, 0x84, 0x82, 0x84, 0x7f, 0x92, 0xb1, 0xab, 0xab, 0xaa, 0xaf, 0xad, 0xb1, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xb1, 0xaf, 0xaf, 0xb3, 0xb5, 0xa4, 0x91, 0xab, 0xbd, 0xb7, 0xb7, 0xb7, 0xb9, 0xb9, 0xb9, 0xba, 0xba, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbe, 0xbe, 0xbe, 0xbf, 0xbe, 0xbc, 0x43, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfd, 0xfc, 0xfd, 0xfc, 0xfd, 0xdc, 0xfd, 0xfd, 0xdc, 0xfd, 0xdc, 0xfd, 0xdc, 0xdc, 0xce, 0xdc, 0xce, 0xac, 0xac, 0xac, 0xa8, 0xa8, 0xa8, 0xaa, 0xa8, 0xa7, 0xa8, 0xa7, 0xa8, 0x9f, 0xaa, 0xa3, 0xa7, 0xa7, 0xa2, 0xa3, 0xa4, 0x9f, 0x9f, 0x9b, 0xa3, 0x99, 0x91, 0x9a, 0x96, 0x9a, 0x9a, 0x9a, 0x96, 0x96, 0x96, 0x96, 0x96, 0x91, 0x51, 0x51, 0x51, 0x8b, 0x51, 0x81, 0x77, 0x77, 0x79, 0x79, 0x8c, 0x93, 0x92, 0x93, 0x97, 0x97, 0x9b, 0x52, 0xa1, 0xa4, 0xa4, 0xa6, 0xab, 0xab, 0xaf, 0xaf, 0xad, 0xab, 0xa9, 0xab, 0xa9, 0xab, 0xa9, 0xab, 0xa9, 0xab, 0xad, 0xaf, 0xb1, 0xb1, 0xb1, 0xb3, 0xb3, 0xb3, 0xb5, 0xb3, 0xb7, 0xaf, 0x9a, 0x9d, 0xa1, 0x9d, 0xa1, 0xa1, 0xa1, 0x99, 0x52, 0x52, 0x99, 0x9b, 0x52, 0x9b, 0x52, 0x9b, 0x52, 0x52, 0xa2, 0xa9, 0x82, 0x66, 0x6a, 0x70, 0x70, 0x6a, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x66, 0x7f, 0xab, 0xa6, 0x9f, 0xa2, 0x9f, 0xa2, 0x9f, 0xa2, 0xa7, 0xb5, 0xb3, 0xb1, 0xb3, 0xb3, 0xb3, 0xb1, 0xb3, 0xb3, 0xb1, 0xb3, 0xb1, 0xb5, 0xb6, 0xb5, 0xb6, 0xb5, 0xb6, 0xb6, 0xb5, 0xb6, 0xb5, 0xb5, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb9, 0xb7, 0xb7, 0xb9, 0xcd, 0xb0, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb6, 0xb5, 0xb6, 0xb6, 0xb5, 0xa1, 0x9d, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0x9d, 0xab, 0xad, 0xad, 0xab, 0xab, 0xab, 0xab, 0xab, 0xab, 0xab, 0xad, 0xb5, 0xb5, 0xb5, 0xb6, 0xb6, 0xb6, 0xb9, 0xb9, 0xb9, 0xb7, 0xb7, 0xb9, 0xb7, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xba, 0xba, 0xbb, 0xbb, 0xbb, 0xbb, 0xbd, 0xbb, 0xbb, 0xbb, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x44, 0x3f, 0x40, 0x40, 0x40, 0x40, 0x40, 0x41, 0x41, 0x43, 0x46, 0x43, 0x47, 0xfc, 0x47, 0x46, 0xfc, 0x46, 0xfd, 0x46, 0xdd, 0xfe, 0xdd, 0xfe, 0xdd, 0xfe, 0xfe, 0xbc, 0xfe, 0xcf, 0xfe, 0xcf, 0xbc, 0xbc, 0xcf, 0xdd, 0xbc, 0xbe, 0xbd, 0xb4, 0xb0, 0xfa, 0xf9, 0xfa, 0xfa, 0xf9, 0xfa, 0xf9, 0xf9, 0xf9, 0x3e, 0xf9, 0x37, 0x37, 0x37, 0x35, 0x35, 0x32, 0x2b, 0x3b, 0x36, 0x36, 0x3b, 0x3f, 0x3f, 0x3f, 0x3f, 0x3f, 0x40, 0x42, 0x46, 0x48, 0x46, 0x49, 0xfe, 0xfc, 0x46, 0xfc, 0x46, 0x46, 0xfd, 0x46, 0x46, 0x46, 0xfd, 0x46, 0xd0, 0x43, 0x33, 0x2f, 0x38, 0x34, 0x38, 0x34, 0x38,
0xbd, 0xbb, 0xbd, 0xbb, 0xbd, 0xbb, 0xbd, 0xbb, 0xbd, 0xbb, 0xbe, 0xbe, 0xbf, 0xc0, 0xbf, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc1, 0xc0, 0xc0, 0xbf, 0xbf, 0xbf, 0xc0, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xc0, 0xbf, 0xc0, 0xc1, 0xc1, 0xbb, 0xb6, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xb7, 0xb6, 0xb7, 0xb6, 0xb5, 0xaf, 0xb3, 0xaf, 0xb1, 0xb5, 0x98, 0x7d, 0x84, 0x82, 0x88, 0x82, 0x84, 0x82, 0x84, 0x88, 0x84, 0x88, 0x82, 0x88, 0x82, 0x88, 0x84, 0x82, 0x80, 0x82, 0x82, 0x85, 0xa1, 0xb1, 0xad, 0xaa, 0xaf, 0xaa, 0xaf, 0xaf, 0xaf, 0xb1, 0xaf, 0xb1, 0xaf, 0xb1, 0xaf, 0xb1, 0xb5, 0x52, 0x91, 0x91, 0xaa, 0xbb, 0xb6, 0xb5, 0xb6, 0xb6, 0xb6, 0xb7, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb7, 0xb7, 0xb6, 0xb7, 0xb7, 0xb6, 0xb9, 0xb0, 0xfa, 0xfa, 0xfa, 0xfb, 0xfb, 0xfa, 0xfb, 0xfa, 0xfb, 0xfa, 0xfb, 0xfb, 0xfb, 0xfa, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xcd, 0xdb, 0x9e, 0xa5, 0xa8, 0xac, 0xa8, 0xa8, 0xa8, 0xaa, 0xa8, 0xaa, 0xa8, 0xaa, 0xaa, 0xaa, 0xab, 0xa7, 0xaa, 0xab, 0xab, 0xad, 0xad, 0xaf, 0xb1, 0xb7, 0xb3, 0x51, 0x91, 0x9a, 0x9a, 0x96, 0x96, 0x9a, 0x96, 0x96, 0x96, 0x96, 0x91, 0x51, 0x50, 0x8f, 0x8b, 0x51, 0x8b, 0x85, 0x74, 0x77, 0x7b, 0x8c, 0x93, 0x90, 0x92, 0x93, 0x9b, 0x97, 0x52, 0xa1, 0xa1, 0xa4, 0xa6, 0xa9, 0xa9, 0xad, 0xaf, 0xaf, 0xad, 0xad, 0xab, 0xab, 0xa9, 0xab, 0xab, 0xab, 0xad, 0xad, 0xb1, 0xb1, 0xb1, 0xb3, 0xb3, 0xb5, 0xb3, 0xb3, 0xb5, 0xb3, 0xb9, 0xaf, 0x9a, 0x9a, 0xa1, 0x9d, 0xa1, 0x52, 0x52, 0x99, 0x99, 0x9b, 0x99, 0x52, 0x9b, 0x52, 0x9b, 0x52, 0x9b, 0x52, 0x52, 0xa9, 0x85, 0x66, 0x6a, 0x70, 0x70, 0x70, 0x6a, 0x70, 0x70, 0x70, 0x6c, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x66, 0x7b, 0xa6, 0xa7, 0xa2, 0x9f, 0x9f, 0xa2, 0x9b, 0xaa, 0xb5, 0xb3, 0xb3, 0xb3, 0xb3, 0xb3, 0xb3, 0xb3, 0xb3, 0xb3, 0xb1, 0xb3, 0xb3, 0xb5, 0xb6, 0xb5, 0xb6, 0xb5, 0xb6, 0xb5, 0xb6, 0xb5, 0xb6, 0xb7, 0xb9, 0xb7, 0xb7, 0xb7, 0xb7, 0xb9, 0xb7, 0xb9, 0xb6, 0xb0, 0xb4, 0xb5, 0xb6, 0xb5, 0xb6, 0xb5, 0xb6, 0xb5, 0xb7, 0xb1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xab, 0xad, 0xad, 0xab, 0xab, 0xad, 0xab, 0xab, 0xab, 0xad, 0xb5, 0xb5, 0xb5, 0xb5, 0xb6, 0xb5, 0xb7, 0xba, 0xb9, 0xb9, 0xb9, 0xb7, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xbb, 0xb9, 0xba, 0xbd, 0xbb, 0xbb, 0xbb, 0xbd, 0xcf, 0x49, 0x49, 0x49, 0x49, 0x49, 0xff, 0xfc, 0x3f, 0x41, 0x40, 0x40, 0x40, 0x41, 0x41, 0x42, 0x44, 0xfc, 0x47, 0xfc, 0x47, 0xfc, 0xfc, 0x46, 0x46, 0xfd, 0xfe, 0xfe, 0xdd, 0xfe, 0xbc, 0xfe, 0xcf, 0xdd, 0xfe, 0xbc, 0xfe, 0xbc, 0xcf, 0xbc, 0xfe, 0xbc, 0xbc, 0xbe, 0xbe, 0xb4, 0xb0, 0xb4, 0xb4, 0xf9, 0xf9, 0x3e, 0xf9, 0xf9, 0x3e, 0x37, 0x3c, 0x37, 0x35, 0x3c, 0x35, 0x35, 0x36, 0x32, 0x2b, 0x32, 0x3b, 0x3b, 0x36, 0x3b, 0x3d, 0x3f, 0x3f, 0x3f, 0x3f, 0x40, 0x41, 0x47, 0x48, 0xfe, 0xfe, 0x46, 0xfc, 0xfc, 0x46, 0xfd, 0x46, 0x46, 0x46, 0xfd, 0x46, 0x46, 0x46, 0x46, 0xcf, 0x42, 0x30, 0x33, 0x34, 0x36, 0x34, 0x36,
0xbb, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbf, 0xbf, 0xbf, 0xbf, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc1, 0xc0, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xc0, 0xc0, 0xc1, 0xbf, 0xb7, 0xb9, 0xb9, 0xb7, 0xb7, 0xb7, 0xb7, 0xb6, 0xb6, 0xb7, 0xb3, 0xaf, 0xaf, 0xb1, 0xaf, 0xb3, 0xaf, 0x88, 0x7d, 0x88, 0x80, 0x88, 0x82, 0x84, 0x82, 0x84, 0x82, 0x84, 0x84, 0x84, 0x84, 0x82, 0x84, 0x80, 0x80, 0x80, 0x82, 0x7c, 0x87, 0xab, 0xad, 0xab, 0xad, 0xad, 0xad, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xb1, 0xb1, 0x9a, 0x9a, 0x96, 0x96, 0xb3, 0xb9, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb7, 0xb6, 0xb6, 0xb7, 0xb6, 0xb6, 0xb7, 0xb7, 0xb6, 0xb7, 0xb9, 0xdc, 0xfa, 0xfa, 0xfb, 0xfa, 0xfb, 0xfa, 0xfb, 0xfb, 0xfa, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xcd, 0xfb, 0xcd, 0xfb, 0xcd, 0xa5, 0xa5, 0xa0, 0xa5, 0xac, 0xa8, 0xac, 0xa8, 0xa8, 0xa8, 0xa8, 0xaa, 0xa8, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaf, 0xaa, 0xb1, 0xb1, 0xb5, 0xb5, 0xbb, 0xa6, 0x50, 0x96, 0x96, 0x96, 0x96, 0x91, 0x96, 0x91, 0x51, 0x91, 0x51, 0x91, 0x51, 0x51, 0x8b, 0x8f, 0x8b, 0x8b, 0x7f, 0x74, 0x7c, 0x8c, 0x93, 0x8d, 0x93, 0x92, 0x93, 0x9b, 0x97, 0x52, 0xa1, 0xa4, 0xa4, 0xa6, 0xa9, 0xab, 0xab, 0xb1, 0xaf, 0xad, 0xad, 0xab, 0xab, 0xab, 0xab, 0xab, 0xad, 0xaf, 0xb1, 0xb3, 0xb3, 0xb3, 0xb5, 0xb3, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb7, 0xaf, 0x9d, 0x9d, 0xa1, 0xa1, 0x52, 0x99, 0x9b, 0x99, 0x52, 0x99, 0x52, 0x52, 0x9b, 0x99, 0x9b, 0x52, 0x52, 0x9b, 0xa2, 0xa9, 0x85, 0x66, 0x6a, 0x6a, 0x70, 0x70, 0x70, 0x6e, 0x70, 0x70, 0x70, 0x70, 0x70, 0x6a, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x66, 0x75, 0xa7, 0xa9, 0xa2, 0x9f, 0xa2, 0x9f, 0xaf, 0xb5, 0xb3, 0xb3, 0xb3, 0xb3, 0xb3, 0xb3, 0xb3, 0xb3, 0xb3, 0xb3, 0xb3, 0xb1, 0xb3, 0xb6, 0xb6, 0xb5, 0xb6, 0xb5, 0xb5, 0xb6, 0xb5, 0xb6, 0xb7, 0xb7, 0xb9, 0xb7, 0xb7, 0xb9, 0xb7, 0xb7, 0xb9, 0xb9, 0xb4, 0xb5, 0xb5, 0xb6, 0xb5, 0xb6, 0xb6, 0xb5, 0xb6, 0xb7, 0xaf, 0x9d, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa4, 0xa4, 0xa1, 0xa1, 0xad, 0xad, 0xad, 0xab, 0xab, 0xab, 0xab, 0xab, 0xad, 0xb6, 0xb5, 0xb5, 0xb5, 0xb6, 0xb6, 0xb6, 0xb7, 0xbb, 0xb7, 0xb9, 0xb7, 0xb9, 0xb9, 0xb9, 0xb9, 0xb7, 0xb9, 0xba, 0xba, 0xb9, 0xbb, 0xbd, 0xbc, 0xba, 0xbb, 0xcf, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0xff, 0x48, 0x40, 0x40, 0x40, 0x40, 0x41, 0x41, 0x41, 0x41, 0x43, 0x47, 0xfc, 0x47, 0xfc, 0x47, 0xfc, 0x46, 0xfc, 0x46, 0xfe, 0xdd, 0x46, 0xdd, 0xfe, 0xdd, 0xfe, 0xdd, 0xcf, 0xdd, 0xcf, 0xdd, 0xcf, 0xbc, 0xbc, 0xbc, 0xbe, 0xbe, 0xbd, 0xb4, 0xb2, 0xb4, 0xb4, 0xb6, 0x3e, 0x37, 0x37, 0x3c, 0x37, 0x37, 0x37, 0x35, 0x35, 0x35, 0x35, 0x32, 0x32, 0x32, 0x2c, 0x32, 0x3d, 0x3b, 0x3b, 0x36, 0x3d, 0x3f, 0x3f, 0x3f, 0x40, 0x40, 0x41, 0x43, 0x48, 0xfe, 0x49, 0xfd, 0xfc, 0x46, 0xfd, 0x46, 0xfd, 0x46, 0xfd, 0x46, 0xfd, 0x46, 0x46, 0x46, 0xfe, 0xcf, 0x39, 0x33, 0x34, 0x38, 0x36, 0x38,
0xbb, 0xbb, 0xbb, 0xbb, 0xbd, 0xbd, 0xbd, 0xbd, 0xbb, 0xbd, 0xbd, 0xbe, 0xbf, 0xbf, 0xc0, 0xbf, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc1, 0xc0, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xc0, 0xc0, 0xc0, 0xc0, 0xc1, 0xc0, 0xb8, 0xb7, 0xb9, 0xb9, 0xb7, 0xb7, 0xb6, 0xb6, 0xb6, 0xb6, 0xb1, 0xb1, 0xb1, 0xaf, 0xaf, 0xaf, 0xb5, 0x9c, 0xc9, 0x84, 0x82, 0x80, 0x80, 0x80, 0x84, 0x82, 0x84, 0x82, 0x84, 0x82, 0x84, 0x82, 0x80, 0x80, 0x80, 0x82, 0x80, 0x82, 0x7b, 0x92, 0xb1, 0xaa, 0xab, 0xaa, 0xad, 0xad, 0xad, 0xaf, 0xaf, 0xaf, 0xaf, 0xb1, 0xaf, 0xb5, 0xaa, 0x9a, 0x96, 0x9a, 0x96, 0x9a, 0xb5, 0xba, 0xb5, 0xb6, 0xb6, 0xb6, 0xb7, 0xb6, 0xb6, 0xb7, 0xb6, 0xb6, 0xb7, 0xb6, 0xb7, 0xb7, 0xb6, 0xb9, 0xcd, 0xfa, 0xfb, 0xfa, 0xfb, 0xfa, 0xfb, 0xfa, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xcd, 0xfb, 0xa5, 0x9e, 0xa0, 0x9e, 0xa8, 0xac, 0xac, 0xa8, 0xa8, 0xa8, 0xa8, 0xaa, 0xa8, 0xaa, 0xaa, 0xaa, 0xae, 0xaf, 0xae, 0xaf, 0xaf, 0xb3, 0xb3, 0xb5, 0xb5, 0xb6, 0xb9, 0x52, 0x50, 0x96, 0x91, 0x96, 0x96, 0x51, 0x50, 0x51, 0x51, 0x8b, 0x8f, 0x8b, 0x8b, 0x8f, 0x8b, 0x8b, 0x8b, 0x8b, 0x79, 0x79, 0x93, 0x8c, 0x90, 0x93, 0x93, 0x93, 0x97, 0x97, 0x52, 0x52, 0xa4, 0xa4, 0xa6, 0xa9, 0xa9, 0xad, 0xad, 0xaf, 0xaf, 0xad, 0xab, 0xab, 0xab, 0xad, 0xad, 0xaf, 0xb1, 0xb1, 0xb3, 0xb3, 0xb5, 0xb3, 0xb5, 0xb3, 0xb3, 0xb5, 0xb3, 0xb5, 0xb5, 0xb8, 0xaf, 0x9a, 0x9d, 0x52, 0x9b, 0x97, 0x99, 0x99, 0x9b, 0x99, 0x9b, 0x52, 0x99, 0x9b, 0x52, 0x9b, 0x52, 0x52, 0x52, 0xa2, 0xab, 0x85, 0x62, 0x6a, 0x70, 0x6a, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x74, 0x67, 0x70, 0x9f, 0xab, 0xa2, 0x9f, 0xa2, 0xb5, 0xb3, 0xb3, 0xb3, 0xb3, 0xb3, 0xb3, 0xb3, 0xb3, 0xb3, 0xb3, 0xb3, 0xb3, 0xb3, 0xb3, 0xb3, 0xb6, 0xb6, 0xb5, 0xb6, 0xb6, 0xb6, 0xb5, 0xb6, 0xba, 0xb7, 0xb7, 0xb9, 0xb7, 0xb7, 0xb7, 0xb9, 0xb7, 0xb9, 0xb7, 0xb4, 0xb5, 0xb6, 0xb6, 0xb5, 0xb5, 0xb6, 0xb5, 0xb7, 0xa9, 0x9d, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa4, 0xa1, 0xa1, 0xa4, 0xad, 0xad, 0xab, 0xad, 0xab, 0xab, 0xa9, 0xaf, 0xb6, 0xb5, 0xb5, 0xb5, 0xb6, 0xb6, 0xb6, 0xb7, 0xb9, 0xbb, 0xb9, 0xb9, 0xb7, 0xb9, 0xb7, 0xb9, 0xb9, 0xb9, 0xba, 0xbb, 0xbb, 0xbb, 0xbd, 0xbb, 0xbb, 0xbd, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x41, 0x40, 0x41, 0x40, 0x40, 0x41, 0x42, 0x42, 0x42, 0x47, 0xfc, 0x47, 0xfc, 0x46, 0xfc, 0x46, 0xdd, 0x46, 0xdd, 0xfe, 0xdd, 0xfe, 0xdd, 0xfe, 0xdd, 0xdd, 0xfe, 0xcf, 0xdd, 0xcf, 0xdd, 0xbc, 0xcf, 0xbd, 0xbc, 0xbe, 0xb8, 0xb2, 0xb4, 0xb2, 0xb2, 0xb4, 0xb4, 0x37, 0x35, 0x37, 0x37, 0x35, 0x35, 0x35, 0x35, 0x35, 0x32, 0x32, 0x32, 0x32, 0x2c, 0x32, 0x3b, 0x3b, 0x39, 0x3a, 0x3d, 0x40, 0x3f, 0x3f, 0x3f, 0x40, 0x41, 0x43, 0x46, 0x49, 0xfe, 0xfd, 0xfc, 0x46, 0xfc, 0x46, 0x46, 0xfd, 0x46, 0x46, 0x46, 0xfd, 0x46, 0x46, 0x46, 0xfe, 0xfe, 0x36, 0x30, 0x36, 0x34, 0x36,
0xb9, 0xbd, 0xbb, 0xbd, 0xbb, 0xbb, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbe, 0xc0, 0xbf, 0xbf, 0xbf, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc1, 0xc0, 0xc0, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xc0, 0xc0, 0xc0, 0xc1, 0xbe, 0xb7, 0xb6, 0xb9, 0xb7, 0xb6, 0xb6, 0xb6, 0xb6, 0xb5, 0xaf, 0xaf, 0xaf, 0xb1, 0xaf, 0xaf, 0xb3, 0xae, 0x80, 0x7d, 0x80, 0x84, 0x82, 0x84, 0x80, 0x80, 0x80, 0x84, 0x80, 0x84, 0x80, 0x80, 0x7d, 0x80, 0x80, 0x7d, 0x80, 0x7c, 0x7f, 0x7f, 0x52, 0xaf, 0xad, 0xab, 0xaa, 0xad, 0xad, 0xaf, 0xaf, 0xad, 0xaf, 0xb1, 0xaf, 0xb3, 0xa6, 0x96, 0x9a, 0x9a, 0x9a, 0x96, 0x52, 0xb7, 0xb9, 0xb5, 0xb7, 0xb6, 0xb6, 0xb7, 0xb6, 0xb7, 0xb7, 0xb6, 0xb7, 0xb7, 0xb7, 0xb6, 0xb7, 0xb7, 0xfb, 0xfa, 0xfa, 0xfb, 0xfa, 0xfb, 0xfa, 0xfb, 0xfb, 0xfa, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xcd, 0xfb, 0xcd, 0xfb, 0xcd, 0xa5, 0xa5, 0xa5, 0xa0, 0xa5, 0xa8, 0xac, 0xac, 0xac, 0xaa, 0xac, 0xae, 0xa8, 0xae, 0xae, 0xae, 0xaa, 0xae, 0xaf, 0xae, 0xb3, 0xb3, 0xb5, 0xb5, 0xb5, 0xb6, 0xb7, 0xb6, 0x51, 0x50, 0x96, 0x91, 0x91, 0x51, 0x51, 0x51, 0x8b, 0x8b, 0x8b, 0x86, 0x86, 0x81, 0x86, 0x81, 0x81, 0x86, 0x7e, 0x85, 0x90, 0x8c, 0x8c, 0x8c, 0x90, 0x92, 0x93, 0x97, 0x9b, 0x52, 0xa2, 0xa4, 0xa4, 0xa6, 0xa9, 0xab, 0xab, 0xaf, 0xb1, 0xaf, 0xad, 0xad, 0xab, 0xad, 0xad, 0xaf, 0xb1, 0xb3, 0xb3, 0xb3, 0xb3, 0xb3, 0xb3, 0xb5, 0xb5, 0xb3, 0xb5, 0xb5, 0xb5, 0xb6, 0xba, 0xb3, 0xa1, 0x99, 0x95, 0x95, 0x97, 0x99, 0x99, 0x99, 0x9b, 0x99, 0x9b, 0x52, 0x9b, 0x52, 0x9b, 0xa2, 0x52, 0x52, 0xa2, 0xab, 0x85, 0x66, 0x6a, 0x70, 0x70, 0x6e, 0x70, 0x70, 0x6a, 0x70, 0x70, 0x70, 0x6a, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x66, 0x70, 0x9b, 0xab, 0x9f, 0xaa, 0xb5, 0xb3, 0xb3, 0xb3, 0xb3, 0xb3, 0xb3, 0xb3, 0xb3, 0xb3, 0xb3, 0xb3, 0xb3, 0xb3, 0xb3, 0xb3, 0xb5, 0xb6, 0xb6, 0xb6, 0xb5, 0xb6, 0xb5, 0xb7, 0xb9, 0xb7, 0xb7, 0xb7, 0xb9, 0xb9, 0xb7, 0xb7, 0xb7, 0xb9, 0xb9, 0xb7, 0xb5, 0xb5, 0xb5, 0xb6, 0xb5, 0xb6, 0xb6, 0xb5, 0xa6, 0x9d, 0xa1, 0xa1, 0xa1, 0xa4, 0xa1, 0xa4, 0xa1, 0xa1, 0xa1, 0xa4, 0x9d, 0xa6, 0xad, 0xad, 0xab, 0xab, 0xad, 0xab, 0xaf, 0xb5, 0xb5, 0xb5, 0xb5, 0xb6, 0xb5, 0xb6, 0xb6, 0xb7, 0xba, 0xba, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xba, 0xba, 0xba, 0xbb, 0xb8, 0xbb, 0xbb, 0xfe, 0xff, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0xff, 0x44, 0x3f, 0x40, 0x41, 0x41, 0x41, 0x42, 0x41, 0x42, 0xfc, 0x47, 0xfc, 0x47, 0xfc, 0x46, 0xfc, 0x46, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xfe, 0xdd, 0xbc, 0xbc, 0xbc, 0xbc, 0xcf, 0xbd, 0xbe, 0xbe, 0xbd, 0xb2, 0xb2, 0xb2, 0xb4, 0xb2, 0xb4, 0xb5, 0xb4, 0x37, 0x32, 0x35, 0x35, 0x35, 0x35, 0x32, 0x35, 0x32, 0x35, 0x32, 0x2c, 0x2c, 0x32, 0x3d, 0x3b, 0x3b, 0x3b, 0x3b, 0x3d, 0x3f, 0x40, 0x40, 0x40, 0x41, 0x44, 0x46, 0x49, 0xdd, 0x46, 0xfd, 0xfc, 0x46, 0x46, 0xfd, 0x46, 0x46, 0xfd, 0x46, 0x46, 0x46, 0xfd, 0x46, 0xfd, 0xd0, 0xfc, 0x33, 0x34, 0x38, 0x36,
0xbe, 0xb9, 0xbd, 0xbd, 0xbd, 0xbd, 0xbb, 0xbb, 0xbd, 0xbb, 0xbb, 0xbf, 0xbf, 0xc0, 0xbf, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc1, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xc0, 0xbf, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xb7, 0xb7, 0xb7, 0xb7, 0xb6, 0xb6, 0xb6, 0xb6, 0xb5, 0xaf, 0xb1, 0xaf, 0xaf, 0xaf, 0xaf, 0xad, 0xb5, 0x98, 0xc9, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x82, 0x80, 0x80, 0xc9, 0x7d, 0x7d, 0x80, 0x7c, 0x80, 0x7c, 0x7b, 0x85, 0xa9, 0xad, 0xab, 0xaa, 0xad, 0xaa, 0xad, 0xad, 0xaf, 0xaf, 0xaf, 0xaf, 0xb3, 0xa1, 0x96, 0x9a, 0x9a, 0x9a, 0x9a, 0x96, 0xa1, 0xba, 0xb9, 0xb6, 0xb7, 0xb6, 0xb6, 0xb7, 0xb6, 0xb7, 0xb6, 0xb6, 0xb6, 0xb7, 0xb7, 0xb6, 0xb7, 0xfb, 0xfa, 0xfb, 0xfa, 0xfb, 0xfa, 0xfb, 0xfa, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xcd, 0xfb, 0xcd, 0xfb, 0xa5, 0x9e, 0xa5, 0xa5, 0xa0, 0xa5, 0xa8, 0xac, 0xac, 0xac, 0xae, 0xa8, 0xae, 0xaa, 0xae, 0xae, 0xb1, 0xae, 0xb3, 0xb3, 0xb3, 0xb3, 0xb5, 0xb3, 0xb5, 0xb5, 0xb6, 0xb9, 0xae, 0x50, 0x50, 0x51, 0x50, 0x51, 0x8b, 0x51, 0x8b, 0x8b, 0x8b, 0x86, 0x86, 0x86, 0x81, 0x81, 0x81, 0x7a, 0x76, 0x92, 0xad, 0xa7, 0x9f, 0x9f, 0x93, 0x93, 0x97, 0x93, 0x93, 0x97, 0x52, 0xa1, 0xa4, 0xa4, 0xa6, 0xa9, 0xab, 0xad, 0xad, 0xb1, 0xaf, 0xaf, 0xad, 0xaf, 0xaf, 0xb1, 0xb3, 0xb3, 0xb5, 0xb3, 0xb5, 0xb3, 0xb5, 0xb5, 0xb5, 0xb6, 0xb6, 0xb6, 0xb5, 0xb3, 0xb3, 0xb1, 0x52, 0x52, 0x52, 0x52, 0x52, 0x9b, 0x52, 0x9b, 0x99, 0x9b, 0x52, 0x9b, 0x99, 0x97, 0x52, 0x9b, 0x52, 0x52, 0x9b, 0x52, 0xa9, 0x8c, 0x65, 0x6a, 0x66, 0x6a, 0x66, 0x6a, 0x6a, 0x6a, 0x6a, 0x6a, 0x6a, 0x6c, 0x66, 0x6a, 0x6c, 0x66, 0x6c, 0x66, 0x6c, 0x6a, 0x63, 0x66, 0x8c, 0xa6, 0xaf, 0xb5, 0xb3, 0xb5, 0xb3, 0xb3, 0xb3, 0xb3, 0xb3, 0xb3, 0xb3, 0xb3, 0xb3, 0xb3, 0xb3, 0xb3, 0xb3, 0xb3, 0xb5, 0xb6, 0xb6, 0xb6, 0xb5, 0xb6, 0xb7, 0xb9, 0xb7, 0xb7, 0xb7, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xb7, 0xb9, 0xb9, 0xb7, 0xb6, 0xb5, 0xb6, 0xb5, 0xb5, 0xb6, 0xb3, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa4, 0xa1, 0xa4, 0xa1, 0xa4, 0xa1, 0xa1, 0xa4, 0xaf, 0xad, 0xab, 0xab, 0xab, 0xaf, 0xb6, 0xb5, 0xb6, 0xb5, 0xb6, 0xb5, 0xb6, 0xb6, 0xb6, 0xb9, 0xba, 0xba, 0xb9, 0xb9, 0xb7, 0xb9, 0xb9, 0xb9, 0xbb, 0xba, 0xbb, 0xb8, 0xbd, 0xb9, 0xfe, 0x49, 0x49, 0xfe, 0x49, 0xfe, 0x49, 0x49, 0x49, 0x49, 0xff, 0xfc, 0x3f, 0x41, 0x40, 0x41, 0x41, 0x42, 0x42, 0x42, 0x45, 0xfc, 0xfc, 0xfc, 0x46, 0xfd, 0xfd, 0xfd, 0xdd, 0x46, 0xdd, 0xfe, 0xdd, 0xfe, 0xdd, 0xbc, 0xdd, 0xdd, 0xbc, 0xdd, 0xbe, 0xbc, 0xbd, 0xbd, 0xbc, 0xbd, 0xb8, 0xb3, 0xb2, 0xb3, 0xb2, 0xb4, 0xb2, 0xb2, 0xb5, 0xb0, 0x37, 0x32, 0x35, 0x32, 0x35, 0x32, 0x35, 0x32, 0x32, 0x32, 0x2c, 0x2c, 0x32, 0x3d, 0x3b, 0x3b, 0x3d, 0x38, 0x33, 0x33, 0x3a, 0x3d, 0x3f, 0x44, 0x43, 0x46, 0xcf, 0xfe, 0xfd, 0xfd, 0x46, 0xfd, 0xfd, 0x46, 0xfd, 0x46, 0x46, 0x46, 0xfd, 0x46, 0x46, 0xfe, 0x46, 0x46, 0xc0, 0x42, 0x30, 0x34, 0x38,
0xd1, 0xbe, 0xbb, 0xba, 0xbd, 0xbd, 0xbd, 0xbd, 0xbb, 0xbb, 0xbd, 0xbe, 0xc0, 0xbf, 0xbf, 0xc0, 0xbf, 0xc0, 0xbf, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xc0, 0xbf, 0xc1, 0xc0, 0xc0, 0xc1, 0xbd, 0xb6, 0xb7, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb1, 0xaf, 0xaf, 0xb1, 0xaf, 0xaf, 0xae, 0xaf, 0xaf, 0xaf, 0x80, 0x7d, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x7d, 0xc9, 0x7d, 0xc9, 0x80, 0x7d, 0x7d, 0x7c, 0x7d, 0x7f, 0x7b, 0x8d, 0xad, 0xad, 0xaa, 0xad, 0xaa, 0xaf, 0xaa, 0xad, 0xaf, 0xaf, 0xb1, 0xaf, 0x9d, 0x96, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x96, 0xa9, 0xba, 0xb7, 0xb6, 0xb6, 0xb6, 0xb6, 0xb7, 0xb6, 0xb7, 0xb7, 0xb7, 0xb7, 0xb6, 0xb7, 0xb7, 0xfb, 0xfa, 0xfb, 0xfb, 0xfa, 0xfb, 0xfa, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xcd, 0xfb, 0xcd, 0xfb, 0xcd, 0xcd, 0xa5, 0xa5, 0xa5, 0xa5, 0xa8, 0xa5, 0xa8, 0xac, 0xac, 0xae, 0xac, 0xae, 0xae, 0xae, 0xae, 0xae, 0xae, 0xb3, 0xb1, 0xb3, 0xb3, 0xb5, 0xb5, 0xb5, 0xb5, 0xb6, 0xb5, 0xb5, 0xbb, 0xa7, 0x89, 0x51, 0x51, 0x51, 0x8b, 0x8f, 0x8b, 0x86, 0x8b, 0x86, 0x86, 0x81, 0x86, 0x81, 0x81, 0x7a, 0x76, 0x97, 0xad, 0xab, 0xaf, 0xab, 0xad, 0xa9, 0xa7, 0xa2, 0xa2, 0xa2, 0x52, 0xa2, 0xa4, 0xa4, 0xa6, 0xa9, 0xa9, 0xad, 0xad, 0xaf, 0xb1, 0xaf, 0xaf, 0xab, 0xb1, 0xb3, 0xb5, 0xb3, 0xb3, 0xb5, 0xb5, 0xb6, 0xb5, 0xb5, 0xb1, 0xad, 0xab, 0xa7, 0xa2, 0xa1, 0x52, 0x95, 0x97, 0xa2, 0xa9, 0xa9, 0xa7, 0xa6, 0xa7, 0xa6, 0xa2, 0xa9, 0xa2, 0xa6, 0xa2, 0xa6, 0xa2, 0xa2, 0xa2, 0xa2, 0xa7, 0xa2, 0xa2, 0xab, 0x8c, 0x6a, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x74, 0x70, 0x74, 0x70, 0x74, 0x74, 0x74, 0x74, 0x74, 0x70, 0x6c, 0x93, 0xb5, 0xb5, 0xb3, 0xb3, 0xb3, 0xb3, 0xb3, 0xb3, 0xb3, 0xb3, 0xb3, 0xb3, 0xb3, 0xb3, 0xb3, 0xb3, 0xb5, 0xb3, 0xb3, 0xb6, 0xb6, 0xb6, 0xb5, 0xb7, 0xb7, 0xb9, 0xb7, 0xb9, 0xb9, 0xb7, 0xb9, 0xb7, 0xb9, 0xb7, 0xb9, 0xb7, 0xb9, 0xb9, 0xb6, 0xb5, 0xb5, 0xb6, 0xb5, 0xb7, 0xaf, 0x9d, 0xa1, 0xa1, 0xa1, 0xa1, 0xa4, 0xa4, 0xa1, 0xa4, 0xa1, 0xa4, 0xa4, 0xa4, 0xa1, 0xa1, 0xa6, 0xaf, 0xab, 0xab, 0xab, 0xb3, 0xb6, 0xb5, 0xb5, 0xb6, 0xb5, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xba, 0xbb, 0xba, 0xb9, 0xb9, 0xb9, 0xb9, 0xba, 0xba, 0xbb, 0xba, 0xbd, 0xb8, 0xbc, 0x49, 0x49, 0x49, 0x49, 0x49, 0xfe, 0x49, 0xfe, 0x49, 0xfe, 0x49, 0x48, 0x40, 0x40, 0x41, 0x40, 0x42, 0x41, 0x42, 0x42, 0x43, 0x46, 0xfc, 0x46, 0xfc, 0x46, 0xfd, 0xfe, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xbc, 0xbc, 0xbc, 0xbc, 0xbe, 0xbc, 0xbd, 0xbc, 0xbd, 0xbd, 0xb4, 0xaf, 0xb2, 0xb3, 0xb2, 0xb3, 0xb2, 0xb4, 0xb2, 0xb6, 0xb0, 0x35, 0x32, 0x35, 0x35, 0x32, 0x35, 0x32, 0x35, 0x2c, 0x35, 0x29, 0x35, 0x3d, 0x3d, 0x3b, 0x3b, 0x3a, 0x33, 0x33, 0x33, 0x33, 0x3a, 0x3b, 0x41, 0xfc, 0xcf, 0xbc, 0xfd, 0xfd, 0xfd, 0xfd, 0x46, 0xfd, 0x46, 0xfd, 0x46, 0xfd, 0x46, 0x46, 0x46, 0x46, 0xfd, 0xfe, 0xdd, 0xd0, 0x3c, 0x33, 0x34,
0xd1, 0xd1, 0xbe, 0xba, 0xbb, 0xbb, 0xbd, 0xbb, 0xbd, 0xbb, 0xbb, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xbf, 0xc0, 0xc0, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xc0, 0xc0, 0xc0, 0xc0, 0xc1, 0xcf, 0xb6, 0xb7, 0xb6, 0xb7, 0xb6, 0xb6, 0xb5, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xb1, 0xaa, 0xaf, 0xb5, 0x98, 0xc8, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x7d, 0x80, 0x80, 0xc9, 0xc9, 0xc9, 0xc9, 0x7d, 0xc9, 0x7d, 0x7d, 0x7c, 0x79, 0x79, 0x7b, 0x9b, 0xaf, 0xa7, 0xab, 0xaa, 0xad, 0xaa, 0xad, 0xaa, 0xaf, 0xb1, 0xaa, 0x96, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x9d, 0x9a, 0x51, 0xad, 0xbb, 0xb6, 0xb7, 0xb7, 0xb7, 0xb6, 0xb7, 0xb6, 0xb7, 0xb6, 0xb7, 0xb7, 0xb9, 0xb4, 0xfb, 0xfa, 0xfb, 0xfa, 0xfb, 0xfb, 0xfb, 0xfb, 0xfa, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xcd, 0xfb, 0xcd, 0xfb, 0xcd, 0xa5, 0xa5, 0xa5, 0xa5, 0xa5, 0xa8, 0xa5, 0xa8, 0xac, 0xac, 0xae, 0xac, 0xae, 0xae, 0xae, 0xb3, 0xb2, 0xb3, 0xb3, 0xb3, 0xb5, 0xb5, 0xb3, 0xb5, 0xb5, 0xb6, 0xb6, 0xb5, 0xb7, 0xb7, 0x99, 0x83, 0x51, 0x8b, 0x8b, 0x8b, 0x8b, 0x8b, 0x86, 0x86, 0x86, 0x86, 0x81, 0x7e, 0x81, 0x7a, 0x7a, 0x9b, 0xa7, 0xa4, 0xab, 0xab, 0xa9, 0xab, 0xad, 0xad, 0xad, 0xad, 0xab, 0xad, 0xab, 0xab, 0xa9, 0xa9, 0xab, 0xab, 0xad, 0xaf, 0xb1, 0xb1, 0xaf, 0xb1, 0xb3, 0xb6, 0xb3, 0xb5, 0xb3, 0xb3, 0xaf, 0xab, 0xa7, 0xa4, 0x52, 0x52, 0x99, 0x99, 0x99, 0x99, 0x99, 0x97, 0x97, 0x99, 0xa2, 0xa7, 0xa6, 0xa9, 0xa9, 0xa7, 0xa7, 0xab, 0xa7, 0xab, 0xa7, 0xab, 0xaa, 0xab, 0xad, 0xab, 0xaa, 0xab, 0xaa, 0xab, 0xaf, 0xb5, 0xbc, 0xb8, 0xb8, 0xb8, 0xb8, 0xbc, 0xb8, 0xbc, 0xbb, 0xbc, 0xbb, 0xbc, 0xbb, 0xbc, 0xbb, 0xbc, 0xbb, 0xbd, 0xbd, 0xbd, 0xbc, 0xb8, 0xb6, 0xb3, 0xb3, 0xb3, 0xb3, 0xb5, 0xb5, 0xb3, 0xb3, 0xb3, 0xb3, 0xb3, 0xb3, 0xb3, 0xb5, 0xb3, 0xb3, 0xb3, 0xb3, 0xb3, 0xb6, 0xb6, 0xb6, 0xb7, 0xb9, 0xb7, 0xb9, 0xb9, 0xb7, 0xb9, 0xb9, 0xb9, 0xb7, 0xb9, 0xb7, 0xb9, 0xb9, 0xb9, 0xb9, 0xb5, 0xb5, 0xb6, 0xb5, 0xb7, 0xab, 0x9d, 0xa1, 0xa1, 0xa1, 0xa4, 0xa1, 0xa4, 0xa1, 0xa4, 0xa1, 0xa4, 0xa1, 0xa1, 0xa4, 0xa4, 0xa1, 0xa9, 0xaf, 0xad, 0xab, 0xb3, 0xb5, 0xb6, 0xb5, 0xb5, 0xb5, 0xb6, 0xb6, 0xb6, 0xb6, 0xb7, 0xb9, 0xbb, 0xbb, 0xb9, 0xba, 0xba, 0xb9, 0xba, 0xba, 0xbb, 0xb8, 0xbb, 0xb8, 0x49, 0xfe, 0x49, 0xfe, 0x49, 0xfe, 0x49, 0xfe, 0x49, 0xfe, 0x49, 0xfe, 0x49, 0x42, 0x40, 0x41, 0x41, 0x42, 0x42, 0x42, 0x42, 0x43, 0xfc, 0xfc, 0xfc, 0xfd, 0xfd, 0xfd, 0xdd, 0xfd, 0xdd, 0xfd, 0xdd, 0xfe, 0xdd, 0xdd, 0xbc, 0xbc, 0xbc, 0xbc, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbe, 0xb8, 0xb1, 0xb1, 0xb3, 0xb1, 0xb3, 0xb3, 0xb2, 0xb2, 0xb2, 0xb2, 0xb6, 0xb0, 0x32, 0x32, 0x32, 0x35, 0x32, 0x35, 0x32, 0x32, 0x2c, 0x2c, 0x32, 0x3d, 0x3b, 0x3d, 0x3b, 0x3a, 0x38, 0x38, 0x33, 0x33, 0x38, 0x3a, 0x39, 0x42, 0xfd, 0xbd, 0xcf, 0xfd, 0xfd, 0x46, 0xfd, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, 0xfe, 0xfe, 0x40, 0x40,
0xc1, 0xc1, 0xd1, 0xbd, 0xb9, 0xba, 0xba, 0xbd, 0xbb, 0xbd, 0xbd, 0xbe, 0xbf, 0xbf, 0xbf, 0xc0, 0xbf, 0xc0, 0xbf, 0xc0, 0xbf, 0xc0, 0xbf, 0xc0, 0xc0, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc1, 0xb9, 0xb5, 0xb6, 0xb6, 0xb5, 0xb7, 0xb3, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaa, 0xaf, 0xaf, 0xaa, 0xb1, 0xaa, 0x7d, 0xc9, 0x7d, 0x7d, 0x7d, 0x80, 0x7d, 0x80, 0x7d, 0x7d, 0xc9, 0xc9, 0xc9, 0xc9, 0xc9, 0x7d, 0xc9, 0x77, 0x7c, 0x7c, 0x79, 0x75, 0x81, 0xa7, 0xaf, 0xa7, 0xab, 0xaa, 0xaa, 0xaa, 0xaf, 0xaf, 0xb3, 0xa6, 0x96, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x9d, 0x9a, 0x96, 0xb3, 0xbb, 0xb6, 0xb6, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb6, 0xb6, 0xb7, 0xb7, 0xb4, 0xfa, 0xfb, 0xfa, 0xfb, 0xfa, 0xfb, 0xfa, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xcd, 0xfb, 0xcd, 0xfb, 0xcd, 0xcd, 0xa5, 0xa5, 0xa5, 0xa5, 0xa5, 0xac, 0xa8, 0xa8, 0xa8, 0xb2, 0xac, 0xae, 0xae, 0xae, 0xb2, 0xb2, 0xb1, 0xb3, 0xb3, 0xb5, 0xb3, 0xb5, 0xb5, 0xb5, 0xb5, 0xb6, 0xb5, 0xb6, 0xb5, 0xb7, 0xb5, 0x8f, 0x83, 0x51, 0x8b, 0x8b, 0x86, 0x86, 0x86, 0x86, 0x86, 0x81, 0x81, 0x81, 0x81, 0x7a, 0x81, 0x9f, 0xa9, 0xa2, 0xa6, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xab, 0xa9, 0xab, 0xab, 0xad, 0xad, 0xad, 0xad, 0xad, 0xad, 0xad, 0xaf, 0xaf, 0xaf, 0xb1, 0xb3, 0xb3, 0xb1, 0xaf, 0xab, 0xa9, 0xa6, 0xa1, 0x52, 0x9d, 0xa1, 0x9d, 0x52, 0x9d, 0x52, 0x9a, 0x52, 0x99, 0x92, 0x9b, 0x9b, 0x99, 0xa4, 0xa7, 0xa9, 0xa2, 0xa7, 0xa9, 0xa7, 0xa7, 0xa7, 0xab, 0xab, 0xab, 0xa9, 0xab, 0xab, 0xab, 0xab, 0xab, 0xaa, 0xab, 0xbb, 0xc1, 0xd1, 0xc1, 0xc1, 0xd1, 0xc1, 0xc1, 0xc1, 0xc1, 0xd1, 0xd1, 0xd1, 0xd1, 0xc1, 0xd1, 0xc1, 0xd1, 0xc1, 0xd1, 0xd1, 0xc1, 0xc1, 0xbb, 0xb6, 0xb3, 0xb6, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb3, 0xb5, 0xb3, 0xb5, 0xb3, 0xb3, 0xb3, 0xb3, 0xb3, 0xb3, 0xb5, 0xb5, 0xb6, 0xb7, 0xb9, 0xb9, 0xb7, 0xb9, 0xb7, 0xb9, 0xb7, 0xb9, 0xb9, 0xb7, 0xb9, 0xb7, 0xb9, 0xb7, 0xb9, 0xb9, 0xb5, 0xb5, 0xb5, 0xb7, 0xa7, 0x9d, 0xa1, 0xa1, 0xa1, 0xa1, 0xa4, 0xa1, 0xa4, 0xa1, 0xa4, 0xa1, 0xa4, 0xa4, 0xa4, 0xa4, 0xa1, 0xa1, 0xa9, 0xaf, 0xab, 0xb3, 0xb6, 0xb5, 0xb5, 0xb5, 0xb6, 0xb5, 0xb6, 0xb6, 0xb6, 0xb6, 0xb9, 0xb9, 0xbb, 0xbb, 0xbb, 0xba, 0xb9, 0xbb, 0xba, 0xbb, 0xbb, 0xb8, 0xcf, 0x49, 0x49, 0xfe, 0x49, 0xfe, 0x49, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0x49, 0x45, 0x3f, 0x41, 0x41, 0x42, 0x42, 0x42, 0x42, 0x43, 0xfc, 0x46, 0xfc, 0xfc, 0xfd, 0xfd, 0xdd, 0xfd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xbc, 0xdd, 0xbc, 0xbc, 0xbd, 0xbc, 0xbd, 0xbd, 0xbd, 0xbc, 0xbd, 0xb5, 0xaf, 0xaf, 0xb3, 0xaf, 0xae, 0xb3, 0xb3, 0xb2, 0xb3, 0xb2, 0xb2, 0xb5, 0xb0, 0x32, 0x32, 0x32, 0x35, 0x32, 0x2c, 0x35, 0x2c, 0x2c, 0x35, 0x3d, 0x3d, 0x3b, 0x3b, 0x3a, 0x33, 0x38, 0x38, 0x33, 0x38, 0x38, 0x3a, 0x3c, 0x42, 0xb8, 0xbe, 0xdd, 0x46, 0xfd, 0x46, 0x46, 0x46, 0x46, 0x47, 0xfd, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, 0xfe, 0x45, 0x44,
0xc1, 0xc1, 0xd1, 0xc1, 0xbb, 0xba, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbe, 0xbf, 0xc0, 0xbf, 0xc0, 0xbf, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xc0, 0xc0, 0xc0, 0xc0, 0xbf, 0xc1, 0xbe, 0xb5, 0xb6, 0xb6, 0xb6, 0xb6, 0xb1, 0xaf, 0xaf, 0xaf, 0xaf, 0xad, 0xb1, 0xaa, 0xaf, 0xaa, 0xaf, 0xb5, 0x98, 0xc7, 0x80, 0xc9, 0x80, 0xc9, 0x80, 0xc9, 0x7d, 0xc9, 0xc9, 0xc9, 0xc9, 0xc9, 0xc9, 0xc9, 0xc9, 0xc9, 0x7d, 0x77, 0x79, 0x7c, 0x75, 0x87, 0xab, 0xad, 0xa7, 0xa9, 0xaa, 0xad, 0xaa, 0xaf, 0xae, 0xa1, 0x96, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x95, 0xb5, 0xbb, 0xb7, 0xb6, 0xb7, 0xb6, 0xb7, 0xb6, 0xb7, 0xb7, 0xb7, 0xb9, 0xb4, 0xfa, 0xfa, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xcd, 0xfb, 0xcd, 0xfb, 0xcd, 0xa5, 0xa5, 0xa5, 0xac, 0xa5, 0xac, 0xa5, 0xac, 0xa8, 0xac, 0xae, 0xb2, 0xae, 0xb2, 0xae, 0xb3, 0xb3, 0xb3, 0xb5, 0xb3, 0xb5, 0xb3, 0xb5, 0xb3, 0xb6, 0xb5, 0xb6, 0xb5, 0xb5, 0xb5, 0xbb, 0xaa, 0x83, 0x86, 0x8b, 0x86, 0x8b, 0x86, 0x86, 0x86, 0x81, 0x86, 0x81, 0x7e, 0x81, 0x76, 0x86, 0xa2, 0xa6, 0xa2, 0xa2, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xab, 0xab, 0xab, 0xab, 0xad, 0xab, 0xab, 0xab, 0xab, 0xad, 0xab, 0xab, 0xab, 0xad, 0xaf, 0xad, 0xa9, 0xa9, 0xa6, 0xa4, 0xa4, 0xa4, 0xa1, 0x52, 0xa1, 0x52, 0x52, 0x99, 0x52, 0x95, 0x97, 0x97, 0x97, 0x99, 0x99, 0x99, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa7, 0xa9, 0xa9, 0xaa, 0xab, 0xa7, 0xab, 0xa9, 0xaa, 0xad, 0xab, 0xad, 0xb6, 0xba, 0xbe, 0xbf, 0xbe, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xc0, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xc0, 0xc0, 0xbf, 0xbe, 0xba, 0xb5, 0xb3, 0xb5, 0xb5, 0xb6, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb3, 0xb3, 0xb5, 0xb3, 0xb3, 0xb5, 0xb6, 0xb9, 0xb9, 0xb7, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xb7, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xb7, 0xb9, 0xba, 0xb7, 0xb5, 0xb6, 0xb5, 0xa4, 0x9d, 0xa1, 0xa1, 0xa1, 0xa4, 0xa1, 0xa4, 0xa1, 0xa4, 0xa1, 0xa4, 0xa4, 0xa4, 0xa4, 0xa4, 0xa4, 0xa1, 0xa4, 0xa9, 0xad, 0xb5, 0xb6, 0xb5, 0xb5, 0xb6, 0xb5, 0xb6, 0xb5, 0xb6, 0xb6, 0xb7, 0xb6, 0xb7, 0xb9, 0xbb, 0xbb, 0xba, 0xba, 0xbb, 0xbb, 0xbd, 0xb8, 0xbc, 0xfe, 0xfe, 0xfe, 0x49, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0x48, 0xfe, 0x48, 0xfe, 0x47, 0x3c, 0x41, 0x41, 0x42, 0x42, 0x42, 0x43, 0x42, 0xfc, 0xfc, 0xfc, 0xfd, 0xfd, 0xfd, 0xfd, 0xdd, 0xfd, 0xdd, 0xdd, 0xb8, 0xdd, 0xbc, 0xbc, 0xbd, 0xbb, 0xbb, 0xbd, 0xbb, 0xbd, 0xbd, 0xbe, 0xb9, 0xaf, 0xad, 0xb1, 0xaf, 0xaf, 0xb3, 0xae, 0xb1, 0xb3, 0xb2, 0xb3, 0xb2, 0xb2, 0xb5, 0xb0, 0x32, 0x2b, 0x35, 0x2c, 0x35, 0x2c, 0x2c, 0x29, 0x32, 0x3f, 0x3b, 0x3d, 0x3b, 0x3a, 0x38, 0x38, 0x38, 0x38, 0x33, 0x38, 0x38, 0x3b, 0x40, 0x43, 0xbc, 0xbe, 0xfd, 0xdd, 0x46, 0xfd, 0x46, 0x46, 0x46, 0x46, 0x46, 0x47, 0x46, 0x46, 0x46, 0x46, 0x46, 0x48, 0x48, 0x45, 0x44,
0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xbd, 0xb9, 0xbb, 0xbb, 0xbb, 0xbd, 0xbe, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xc0, 0xbf, 0xc0, 0xbf, 0xbf, 0xbf, 0xbf, 0xbe, 0xbf, 0xbf, 0xbe, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xb7, 0xb5, 0xb6, 0xb5, 0xb5, 0xaf, 0xaf, 0xaf, 0xae, 0xaf, 0xaf, 0xaf, 0xaa, 0xaf, 0xae, 0xaa, 0xb1, 0xaf, 0x80, 0xc8, 0x7d, 0xc9, 0x7d, 0xc9, 0x7d, 0xc9, 0xc9, 0xc8, 0xc9, 0xc8, 0xc9, 0xc9, 0xc9, 0xc9, 0xc9, 0xc9, 0x77, 0x77, 0x77, 0x7b, 0x75, 0x99, 0xaf, 0xaa, 0xa9, 0xaa, 0xaa, 0xad, 0xaa, 0xaf, 0x9d, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x9d, 0x9d, 0x9d, 0x96, 0x9d, 0xb6, 0xba, 0xb6, 0xb7, 0xb7, 0xb6, 0xb7, 0xb7, 0xb6, 0xb7, 0xb7, 0xce, 0xfa, 0xfb, 0xfa, 0xfb, 0xfa, 0xfb, 0xfa, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xcd, 0xfb, 0xcd, 0xfb, 0xcd, 0xcd, 0xcd, 0xa5, 0xa5, 0xac, 0xa5, 0xac, 0xa5, 0xac, 0xa8, 0xac, 0xa8, 0xac, 0xae, 0xb2, 0xae, 0xb3, 0xb2, 0xb5, 0xb3, 0xb3, 0xb5, 0xb3, 0xb5, 0xb5, 0xb5, 0xb5, 0xb6, 0xb5, 0xb6, 0xb6, 0xb5, 0xb5, 0xba, 0x9f, 0x83, 0x8b, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x81, 0x81, 0x81, 0x81, 0x76, 0x8c, 0xa9, 0xa2, 0xa4, 0xa6, 0xa4, 0xa6, 0xa9, 0xab, 0xa9, 0xa9, 0xa6, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xab, 0xab, 0xa9, 0xa9, 0xa9, 0xa9, 0xab, 0xa6, 0xa9, 0xad, 0xad, 0xad, 0xab, 0xa9, 0xa6, 0xa4, 0xa4, 0xa1, 0xa1, 0x52, 0x9d, 0x52, 0x99, 0x99, 0x99, 0x97, 0x97, 0x97, 0x52, 0x9b, 0x99, 0x52, 0xa9, 0xa9, 0xa9, 0xa7, 0xa9, 0xa9, 0xab, 0xa7, 0xab, 0xa9, 0xab, 0xab, 0xa9, 0xad, 0xab, 0xaa, 0xa9, 0xaa, 0xb7, 0xb9, 0xbd, 0xbe, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xc0, 0xbf, 0xc0, 0xbf, 0xc0, 0xbe, 0xbd, 0xbf, 0xb7, 0xb3, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb6, 0xb5, 0xb5, 0xb5, 0xb5, 0xb3, 0xb5, 0xb3, 0xb5, 0xb6, 0xb7, 0xb9, 0xb9, 0xb9, 0xb9, 0xba, 0xb9, 0xba, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xb7, 0xb9, 0xb9, 0xb9, 0xb6, 0xb6, 0xb3, 0xa1, 0xa1, 0xa1, 0xa4, 0xa1, 0xa4, 0xa1, 0xa4, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0x9d, 0xa1, 0xa1, 0xa1, 0x9d, 0x9d, 0xa7, 0xb2, 0xb4, 0xb5, 0xb6, 0xb5, 0xb5, 0xb6, 0xb6, 0xb6, 0xb6, 0xb7, 0xb6, 0xb7, 0xb9, 0xbb, 0xbb, 0xbb, 0xba, 0xbb, 0xbb, 0xba, 0xbc, 0xfe, 0x49, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0x48, 0xfe, 0x46, 0xfe, 0xfe, 0x46, 0x41, 0x40, 0x42, 0x42, 0x42, 0x42, 0x42, 0x43, 0x43, 0xfd, 0xfc, 0xfd, 0xfd, 0xfd, 0xdd, 0xce, 0xdd, 0xdd, 0xce, 0xbc, 0xb8, 0xb8, 0xbd, 0xbb, 0xbd, 0xbb, 0xbd, 0xbb, 0xbc, 0xbb, 0xbc, 0xb5, 0xab, 0xb1, 0xaf, 0xaf, 0xaf, 0xb1, 0xb1, 0xb1, 0xb3, 0xae, 0xb3, 0xae, 0xb4, 0xb2, 0xb6, 0xcd, 0x32, 0x2b, 0x35, 0x2c, 0x35, 0x2c, 0x2c, 0x39, 0x3d, 0x3d, 0x3b, 0x3d, 0x38, 0x38, 0x38, 0x38, 0x38, 0x34, 0x33, 0x38, 0x3a, 0x39, 0x41, 0xdc, 0xbe, 0xbc, 0x46, 0xfd, 0xfe, 0x46, 0x46, 0xfd, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, 0x48, 0x48, 0x47, 0x44,
0xc1, 0xc1, 0xc0, 0xc1, 0xd1, 0xc0, 0xbd, 0xba, 0xbd, 0xba, 0xbd, 0xbd, 0xc0, 0xbf, 0xbf, 0xbf, 0xbf, 0xc0, 0xbf, 0xc0, 0xbf, 0xc0, 0xc0, 0xbf, 0xbf, 0xbe, 0xbf, 0xbe, 0xbf, 0xbe, 0xbe, 0xbe, 0xbf, 0xbe, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xc0, 0xbf, 0xc0, 0xc0, 0xc0, 0xbf, 0xc0, 0xc1, 0xbd, 0xb5, 0xb6, 0xb6, 0xb3, 0xaf, 0xaf, 0xaf, 0xae, 0xaf, 0xae, 0xaf, 0xae, 0xaf, 0xaa, 0xaf, 0xaa, 0xb5, 0x90, 0xc7, 0xc9, 0x7d, 0xc9, 0x7d, 0xc9, 0xc9, 0xc8, 0xc8, 0xc8, 0xc9, 0xc8, 0xc8, 0xc9, 0xc8, 0xc8, 0x77, 0xc9, 0x77, 0x74, 0x79, 0x75, 0x7b, 0xa4, 0xab, 0xaa, 0xa7, 0xab, 0xaa, 0xae, 0xa7, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x9d, 0x9a, 0x9a, 0x9d, 0x9d, 0x96, 0xa1, 0xb9, 0xba, 0xb6, 0xb7, 0xb7, 0xb7, 0xb7, 0xb9, 0xb7, 0xb9, 0xb0, 0xfa, 0xfa, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xcd, 0xfb, 0xcd, 0xfb, 0xcd, 0xcd, 0xfb, 0xcd, 0xa5, 0xa5, 0xac, 0xa5, 0xac, 0xa5, 0xac, 0xac, 0xac, 0xac, 0xae, 0xac, 0xb3, 0xb2, 0xae, 0xb3, 0xb3, 0xb3, 0xb3, 0xb3, 0xb3, 0xb5, 0xb5, 0xb3, 0xb6, 0xb5, 0xb6, 0xb5, 0xb5, 0xb5, 0xb5, 0xb6, 0xb7, 0x8d, 0x83, 0x86, 0x86, 0x86, 0x81, 0x86, 0x81, 0x81, 0x81, 0x81, 0x81, 0x76, 0x92, 0xab, 0xa4, 0xa2, 0xa4, 0xa4, 0xa6, 0xa6, 0xa9, 0xa9, 0xa6, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa6, 0xa9, 0xa9, 0xab, 0xab, 0xab, 0xad, 0xa9, 0xa9, 0xa4, 0xa4, 0xa2, 0xa1, 0xa1, 0x52, 0x52, 0x99, 0x99, 0x97, 0x97, 0x93, 0x99, 0x9b, 0x99, 0x9b, 0x99, 0x52, 0xa9, 0xab, 0xa9, 0xa9, 0xa7, 0xa9, 0xab, 0xa7, 0xab, 0xaa, 0xa9, 0xab, 0xab, 0xaa, 0xad, 0xa9, 0xaf, 0xb7, 0xb9, 0xb9, 0xbd, 0xbf, 0xbe, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xc0, 0xbf, 0xbd, 0xbe, 0xbe, 0xbf, 0xb6, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb6, 0xb5, 0xb6, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb6, 0xb5, 0xb6, 0xb5, 0xb5, 0xaf, 0xaf, 0xb1, 0xb3, 0xb3, 0xb3, 0xb5, 0xb5, 0xb6, 0xb6, 0xb7, 0xb7, 0xb9, 0xb9, 0xb9, 0xb9, 0xba, 0xba, 0xbb, 0xb8, 0xab, 0x9a, 0x9d, 0x9d, 0x9d, 0xa1, 0x9d, 0xa1, 0xa1, 0xa1, 0xa4, 0xa1, 0xa6, 0xa6, 0xa6, 0xab, 0xa9, 0xab, 0xad, 0xaf, 0xad, 0xb3, 0xcd, 0xcd, 0xb0, 0xb0, 0xb4, 0xb5, 0xb6, 0xb5, 0xb6, 0xb6, 0xb6, 0xb6, 0xb7, 0xb9, 0xb9, 0xbd, 0xbb, 0xba, 0xbb, 0xba, 0xbb, 0xdd, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0x46, 0xfe, 0x46, 0x42, 0x40, 0x41, 0x42, 0x42, 0x42, 0x43, 0x43, 0x43, 0xfd, 0xfd, 0xfd, 0xce, 0xfd, 0xdc, 0xdd, 0xdd, 0xce, 0xbc, 0xb8, 0xbb, 0xbc, 0xbb, 0xba, 0xbd, 0xb8, 0xbb, 0xba, 0xbd, 0xbb, 0xbb, 0xad, 0xad, 0xaf, 0xad, 0xaf, 0xaf, 0xaf, 0xb1, 0xaf, 0xb1, 0xae, 0xb3, 0xb2, 0xb2, 0xae, 0xb4, 0xb5, 0xcd, 0x2c, 0x2b, 0x35, 0x2c, 0x2c, 0x2d, 0x36, 0x3f, 0x3b, 0x3d, 0x3b, 0x3a, 0x33, 0x38, 0x38, 0x38, 0x34, 0x38, 0x34, 0x38, 0x3a, 0x39, 0x42, 0xdd, 0xbe, 0xdd, 0xfe, 0xfd, 0x46, 0x46, 0x46, 0x47, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, 0x48, 0x48, 0x48, 0x48, 0x44,
0xc1, 0xc1, 0xc1, 0xc0, 0xc0, 0xc1, 0xbf, 0xba, 0xb9, 0xbb, 0xba, 0xbe, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xc0, 0xbf, 0xbf, 0xbf, 0xbf, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbf, 0xbe, 0xbf, 0xbf, 0xbf, 0xbf, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xbf, 0xc0, 0xc0, 0xbf, 0xb5, 0xb5, 0xb5, 0xb1, 0xae, 0xaf, 0xae, 0xad, 0xae, 0xaf, 0xaa, 0xaf, 0xaa, 0xae, 0xaa, 0xaa, 0xb1, 0xaa, 0xc9, 0xc8, 0xc9, 0xc9, 0xc9, 0xc9, 0xc8, 0xc8, 0xc8, 0xc8, 0xc8, 0xc8, 0xc8, 0xc8, 0xc9, 0xc8, 0xc8, 0xc8, 0x77, 0xc8, 0x77, 0x77, 0x75, 0x87, 0xad, 0xa9, 0xa7, 0xaa, 0xa7, 0xae, 0xa6, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x9d, 0x9a, 0x9d, 0x9d, 0x9a, 0x9d, 0x9d, 0x96, 0xa7, 0xbb, 0xb9, 0xb7, 0xb6, 0xb7, 0xb7, 0xb7, 0xb7, 0xb9, 0xdc, 0xfa, 0xfb, 0xfb, 0xfa, 0xfb, 0xfa, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xdc, 0xfb, 0xcd, 0xfb, 0xfb, 0xcd, 0xfb, 0xcd, 0xcd, 0xfb, 0xcd, 0xcd, 0xa5, 0xcd, 0xa5, 0xac, 0xa5, 0xac, 0xac, 0xac, 0xac, 0xae, 0xac, 0xae, 0xb2, 0xb2, 0xb5, 0xb3, 0xb5, 0xb3, 0xb5, 0xb3, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb6, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb9, 0xb3, 0x81, 0x81, 0x86, 0x86, 0x86, 0x81, 0x81, 0x81, 0x81, 0x7a, 0x81, 0x76, 0x97, 0xa9, 0xa2, 0xa4, 0xa4, 0xa4, 0xa4, 0xa6, 0xa4, 0xa9, 0xa9, 0xa6, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa6, 0xa6, 0xa6, 0xa6, 0xa6, 0xa9, 0xa9, 0xa9, 0xab, 0xab, 0xab, 0xa9, 0xa6, 0xa6, 0xa4, 0xa4, 0xa1, 0x52, 0x9d, 0x99, 0x99, 0x97, 0x97, 0x97, 0x9b, 0x99, 0x9b, 0x99, 0x9b, 0x99, 0xa2, 0xa9, 0xa9, 0xa9, 0xab, 0xab, 0xab, 0xad, 0xab, 0xab, 0xab, 0xab, 0xaa, 0xab, 0xab, 0xab, 0xaf, 0xb7, 0xb9, 0xb7, 0xba, 0xbd, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xc0, 0xbf, 0xc0, 0xbf, 0xbf, 0xc0, 0xbf, 0xbe, 0xbd, 0xbe, 0xbe, 0xbd, 0xb5, 0xb5, 0xb5, 0xb5, 0xb6, 0xb5, 0xb6, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb6, 0xb3, 0xad, 0xad, 0xab, 0xad, 0xad, 0xad, 0xad, 0xad, 0xaf, 0xaf, 0xb1, 0xb1, 0xb1, 0xb3, 0xb3, 0xb3, 0xb5, 0xb6, 0xb9, 0xad, 0xa2, 0xa9, 0xab, 0xad, 0xaf, 0xaf, 0xb1, 0xb3, 0xb3, 0xb5, 0xb5, 0xb6, 0xb6, 0xb7, 0xb7, 0xb7, 0xb9, 0xb7, 0xb9, 0xb9, 0xb9, 0xce, 0xfa, 0xfb, 0xdc, 0xfb, 0xdc, 0xb0, 0xb4, 0xb6, 0xb6, 0xb6, 0xb7, 0xb7, 0xb9, 0xb9, 0xba, 0xbd, 0xbb, 0xbb, 0xbd, 0xbc, 0xfe, 0xfe, 0xfe, 0xfe, 0x48, 0xfe, 0x48, 0xfe, 0x48, 0xfe, 0x48, 0xfe, 0x46, 0xfe, 0x46, 0x46, 0x48, 0x42, 0x41, 0x41, 0x42, 0x42, 0x42, 0x43, 0x42, 0xfc, 0xfc, 0xfd, 0xfd, 0xfd, 0xce, 0xdd, 0xce, 0xb8, 0xbc, 0xb8, 0xbb, 0xb8, 0xbb, 0xba, 0xba, 0xba, 0xbb, 0xbb, 0xbb, 0xbd, 0xbd, 0xb5, 0xad, 0xab, 0xad, 0xad, 0xaf, 0xad, 0xaf, 0xad, 0xaf, 0xb1, 0xb1, 0xb1, 0xae, 0xb3, 0xb2, 0xb2, 0xb2, 0xb7, 0xcd, 0x2c, 0x2c, 0x35, 0x2d, 0x2c, 0x39, 0x3d, 0x3d, 0x3d, 0x3b, 0x3a, 0x38, 0x38, 0x38, 0x38, 0x38, 0x34, 0x38, 0x34, 0x38, 0x3a, 0x40, 0x43, 0xbb, 0xbe, 0xdd, 0x46, 0xfd, 0x46, 0x46, 0xfc, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, 0x48, 0x47, 0x48, 0x48, 0x45,
0xc1, 0xc0, 0xc1, 0xc1, 0xc0, 0xc0, 0xc1, 0xc0, 0xbb, 0xb9, 0xba, 0xbe, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xc0, 0xbf, 0xbf, 0xbf, 0xc0, 0xbf, 0xbf, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xc0, 0xbf, 0xc0, 0xbf, 0xc0, 0xbf, 0xc0, 0xc1, 0xba, 0xb5, 0xb5, 0xaf, 0xae, 0xaf, 0xaa, 0xb1, 0xaa, 0xaf, 0xae, 0xaf, 0xaa, 0xaf, 0xaa, 0xaf, 0xaa, 0xb5, 0x90, 0xc7, 0xc9, 0xc9, 0x77, 0xc8, 0xc8, 0xc7, 0xc8, 0xc7, 0xc9, 0xc7, 0xc8, 0xc7, 0xc8, 0xc7, 0xc8, 0xc8, 0xc7, 0x77, 0x72, 0x74, 0x77, 0x75, 0x97, 0xaf, 0xa7, 0xa7, 0xaa, 0xaa, 0xa2, 0x96, 0x9a, 0x9d, 0x9a, 0x9a, 0x9d, 0x9a, 0x9d, 0x9a, 0x9a, 0x9d, 0x9d, 0x9d, 0x9d, 0x96, 0xab, 0xba, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb9, 0xcd, 0xfa, 0xfa, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xcd, 0xfb, 0xcd, 0xfb, 0xcd, 0xcd, 0xfb, 0xac, 0xdb, 0xac, 0xa5, 0xac, 0xac, 0xac, 0xac, 0xac, 0xac, 0xac, 0xae, 0xae, 0xae, 0xae, 0xb3, 0xb3, 0xb3, 0xb3, 0xb5, 0xb3, 0xb3, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb3, 0xb5, 0xb9, 0xa9, 0x7e, 0x86, 0x81, 0x86, 0x81, 0x86, 0x81, 0x81, 0x81, 0x7a, 0x7a, 0x52, 0xa6, 0xa2, 0xa4, 0xa4, 0xa4, 0xa4, 0xa4, 0xa4, 0xa4, 0xa6, 0xa9, 0xa6, 0xa6, 0xa6, 0xa6, 0xa6, 0xa6, 0xa6, 0xa6, 0xa6, 0xa6, 0xa6, 0xa4, 0xa6, 0xa6, 0xa9, 0xa9, 0xab, 0xa9, 0xa9, 0xa9, 0xa6, 0xa6, 0xa4, 0xa4, 0x52, 0xa1, 0x52, 0x9b, 0x99, 0x97, 0x97, 0x97, 0x99, 0x52, 0x9b, 0x97, 0x9b, 0x9b, 0x99, 0xa4, 0xad, 0xa9, 0xa9, 0xa9, 0xad, 0xa7, 0xab, 0xad, 0xab, 0xab, 0xab, 0xab, 0xad, 0xa7, 0xaf, 0xb9, 0xb7, 0xb9, 0xb9, 0xbd, 0xbe, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xc0, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xc0, 0xbf, 0xbe, 0xbd, 0xbe, 0xbd, 0xbf, 0xba, 0xb5, 0xb5, 0xb6, 0xb5, 0xb5, 0xb5, 0xb5, 0xb6, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb6, 0xb5, 0xb6, 0xb3, 0xab, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xad, 0xaf, 0xad, 0xad, 0xad, 0xaf, 0xad, 0xad, 0xaf, 0xb3, 0xb7, 0xb7, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xba, 0xb9, 0xb9, 0xb7, 0xb7, 0xb7, 0xb7, 0xb6, 0xb7, 0xb6, 0xb6, 0xb6, 0xb6, 0xb8, 0xbb, 0xfd, 0x3e, 0xfa, 0xfc, 0xfb, 0xfc, 0xdc, 0xdc, 0xce, 0xce, 0xb4, 0xb7, 0xb9, 0xb9, 0xb9, 0xba, 0xbd, 0xbb, 0xbd, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0x46, 0xfe, 0x46, 0x46, 0x46, 0x48, 0x46, 0x46, 0xfe, 0x48, 0xfc, 0x41, 0x42, 0x42, 0x42, 0x42, 0x43, 0x43, 0x43, 0xdc, 0xfd, 0xdc, 0xdc, 0xdc, 0xdd, 0xce, 0xbc, 0xb8, 0xb8, 0xbb, 0xbb, 0xba, 0xbb, 0xba, 0xba, 0xba, 0xbb, 0xbb, 0xbd, 0xba, 0xaf, 0xab, 0xad, 0xad, 0xad, 0xad, 0xad, 0xaf, 0xaf, 0xaf, 0xaf, 0xb1, 0xae, 0xb2, 0xae, 0xb5, 0xb2, 0xb4, 0xb2, 0xb7, 0xcd, 0x2b, 0x2c, 0x2c, 0x2d, 0x3b, 0x3d, 0x3d, 0x3d, 0x3d, 0x3a, 0x38, 0x34, 0x38, 0x38, 0x36, 0x38, 0x34, 0x38, 0x38, 0x3a, 0x39, 0x41, 0xfc, 0xbd, 0xcf, 0xdd, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, 0x48, 0x48, 0x48, 0x48, 0x47,
0xc1, 0xc1, 0xc0, 0xc0, 0xc0, 0xbf, 0xbf, 0xc0, 0xbf, 0xba, 0xba, 0xbe, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbe, 0xbe, 0xbe, 0xbf, 0xbe, 0xbf, 0xbe, 0xbf, 0xbe, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xc0, 0xc0, 0xbf, 0xc0, 0xc0, 0xbf, 0xc0, 0xc1, 0xbe, 0xb5, 0xb1, 0xaf, 0xaf, 0xae, 0xaf, 0xaa, 0xb1, 0xaa, 0xaf, 0xaa, 0xaf, 0xaa, 0xaa, 0xaa, 0xaa, 0xb1, 0xaf, 0xc9, 0xc7, 0xc9, 0xc9, 0xc7, 0xc7, 0xc8, 0xc7, 0xc8, 0xc7, 0xc8, 0xc7, 0xc8, 0xc7, 0xc8, 0xc7, 0xc8, 0xc7, 0xc8, 0x72, 0xc8, 0x74, 0x75, 0x7b, 0xa2, 0xaf, 0xa7, 0xaa, 0xaa, 0x9d, 0x9a, 0x9a, 0x9a, 0x9a, 0x9d, 0x9a, 0x9d, 0x9a, 0x9d, 0x9d, 0x9a, 0x9d, 0x9d, 0x9d, 0x9a, 0x96, 0xaf, 0xbe, 0xb7, 0xb7, 0xb9, 0xb7, 0xb9, 0xb7, 0xfb, 0xfa, 0xfb, 0xfb, 0xfa, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xdc, 0xfb, 0xcd, 0xfb, 0xcd, 0xfb, 0xcd, 0xfb, 0xcd, 0xfb, 0xcd, 0xcd, 0xa5, 0xcd, 0xa5, 0xac, 0xa5, 0xac, 0xac, 0xac, 0xae, 0xac, 0xae, 0xac, 0xae, 0xae, 0xb3, 0xb3, 0xb5, 0xb5, 0xb3, 0xb3, 0xb5, 0xb3, 0xb5, 0xb3, 0xb5, 0xb6, 0xb5, 0xb5, 0xb6, 0xb5, 0xb5, 0xb3, 0xb5, 0xb5, 0xb9, 0x97, 0x78, 0x86, 0x81, 0x81, 0x81, 0x81, 0x81, 0x7e, 0x7a, 0x81, 0xa2, 0xa4, 0xa1, 0xa1, 0xa4, 0xa4, 0xa4, 0xa4, 0xa4, 0xa4, 0xa4, 0xa6, 0xa6, 0xa6, 0xa6, 0xa6, 0xa9, 0xa6, 0xa6, 0xa6, 0xa6, 0xa4, 0xa6, 0xa4, 0xa4, 0xa6, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa6, 0xa4, 0xa4, 0xa1, 0xa1, 0x52, 0x99, 0x99, 0x97, 0x97, 0x97, 0x97, 0x99, 0x9b, 0x52, 0x9b, 0x99, 0x99, 0x99, 0xa6, 0xad, 0xab, 0xaa, 0xab, 0xab, 0xab, 0xad, 0xab, 0xad, 0xab, 0xad, 0xab, 0xab, 0xae, 0xba, 0xb7, 0xb9, 0xb9, 0xba, 0xbb, 0xbf, 0xbe, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xc0, 0xbf, 0xc0, 0xbf, 0xc0, 0xbf, 0xbf, 0xbd, 0xbe, 0xbe, 0xbe, 0xbd, 0xbf, 0xb9, 0xb3, 0xb5, 0xb6, 0xb5, 0xb5, 0xb5, 0xb6, 0xb5, 0xb6, 0xb5, 0xb5, 0xb5, 0xb6, 0xb5, 0xb5, 0xb5, 0xb6, 0xb6, 0xb6, 0xb1, 0xad, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xb1, 0xaf, 0xb1, 0xaf, 0xaf, 0xb1, 0xaf, 0xb3, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb7, 0xb6, 0xb6, 0xb6, 0xb6, 0xb7, 0xb6, 0xb6, 0xb7, 0xb6, 0xb7, 0xb6, 0xb7, 0xb5, 0xb8, 0xbc, 0xb8, 0x43, 0x3e, 0xfa, 0x43, 0xfa, 0x43, 0xfa, 0xfc, 0xdc, 0xfc, 0xdc, 0xce, 0xdd, 0xb9, 0xbb, 0xba, 0xbd, 0xcf, 0xcf, 0xd0, 0xff, 0xff, 0xfe, 0xd0, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0xfe, 0x49, 0xfe, 0x49, 0xfe, 0x49, 0x42, 0x42, 0x42, 0x42, 0x43, 0x42, 0x43, 0xfc, 0xfc, 0xdc, 0xfd, 0xdc, 0xdd, 0xce, 0xb8, 0xb8, 0xb9, 0xba, 0xb9, 0xba, 0xb9, 0xb9, 0xb9, 0xba, 0xba, 0xbb, 0xb9, 0xbd, 0xb6, 0xa9, 0xab, 0xad, 0xab, 0xad, 0xad, 0xad, 0xad, 0xaf, 0xaf, 0xaf, 0xae, 0xb1, 0xae, 0xb3, 0xb2, 0xb2, 0xb2, 0xb2, 0xb4, 0xb7, 0xfb, 0x2c, 0x2c, 0x2d, 0x39, 0x3d, 0x3d, 0x3d, 0x3b, 0x3a, 0x34, 0x38, 0x34, 0x38, 0x34, 0x38, 0x36, 0x34, 0x38, 0x38, 0x3a, 0x39, 0x42, 0xdc, 0xbe, 0xdd, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, 0x47, 0x46, 0x48, 0x47, 0x48, 0x47, 0x48, 0x47,
0xd1, 0xc1, 0xd1, 0xc0, 0xc1, 0xc0, 0xc1, 0xbf, 0xc0, 0xbe, 0xba, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbe, 0xbd, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xc0, 0xbf, 0xbf, 0xbf, 0xc0, 0xbf, 0xbf, 0xbf, 0xbf, 0xc0, 0xc0, 0xd0, 0xb7, 0xa7, 0xad, 0xaa, 0xad, 0xae, 0xaf, 0xae, 0xaf, 0xaa, 0xaf, 0xaa, 0xaa, 0xaf, 0xaa, 0xaa, 0xaa, 0xb3, 0x98, 0x68, 0xc9, 0xc7, 0xc8, 0xc7, 0xc7, 0xc8, 0xc7, 0xc8, 0xc7, 0xc8, 0xc7, 0xc8, 0xc7, 0xc7, 0xc8, 0xc7, 0x72, 0xc7, 0x72, 0xc8, 0x74, 0x70, 0x81, 0xad, 0xaa, 0xaa, 0xa7, 0x9a, 0x9a, 0x9d, 0x9a, 0x9d, 0x9a, 0x9d, 0x9a, 0x9d, 0x9a, 0x9d, 0x9d, 0x9d, 0x9d, 0x9a, 0x9d, 0x9a, 0x99, 0xb3, 0xbb, 0xb7, 0xb6, 0xb9, 0xb6, 0xb8, 0xfb, 0xfa, 0xfb, 0xfa, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xcd, 0xfb, 0xcd, 0xfb, 0xcd, 0xcd, 0xcd, 0xdc, 0xa5, 0xac, 0xa5, 0xac, 0xac, 0xac, 0xac, 0xac, 0xae, 0xac, 0xac, 0xb2, 0xae, 0xb2, 0xae, 0xb3, 0xb3, 0xb3, 0xb3, 0xb3, 0xb5, 0xb3, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb3, 0xb5, 0xb5, 0xb7, 0x87, 0x7e, 0x81, 0x86, 0x81, 0x81, 0x81, 0x81, 0x7a, 0x81, 0xa4, 0xa2, 0xa4, 0xa1, 0xa1, 0xa4, 0xa1, 0xa4, 0xa1, 0xa4, 0xa4, 0xa4, 0xa6, 0xa6, 0xa6, 0xa6, 0xa6, 0xa6, 0xa6, 0xa4, 0xa4, 0xa4, 0xa4, 0xa4, 0xa6, 0xa6, 0xa6, 0xa6, 0xa9, 0xa9, 0xa6, 0xa6, 0xa9, 0xa6, 0xa6, 0xa4, 0xa1, 0xa1, 0x52, 0x52, 0x99, 0x97, 0x97, 0x97, 0x9b, 0x99, 0x52, 0x97, 0x52, 0x9b, 0x99, 0x52, 0x52, 0xa7, 0xad, 0xa9, 0xab, 0xad, 0xad, 0xab, 0xab, 0xab, 0xad, 0xad, 0xad, 0xab, 0xb3, 0xba, 0xb9, 0xb9, 0xba, 0xb9, 0xba, 0xbd, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xc0, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xc0, 0xbe, 0xbd, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbf, 0xb7, 0xb5, 0xb6, 0xb5, 0xb6, 0xb5, 0xb6, 0xb5, 0xb5, 0xb6, 0xb5, 0xb5, 0xb5, 0xb6, 0xb5, 0xb5, 0xb5, 0xb5, 0xb6, 0xb6, 0xb1, 0xad, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xb1, 0xb3, 0xb3, 0xb6, 0xb6, 0xb6, 0xb6, 0xb7, 0xb6, 0xb7, 0xb6, 0xb7, 0xb6, 0xb6, 0xb7, 0xb6, 0xb6, 0xb7, 0xb6, 0xb7, 0xb6, 0xb6, 0xb8, 0xce, 0xb8, 0xdd, 0x3e, 0x3c, 0x3e, 0x3e, 0x3e, 0x43, 0xfa, 0x43, 0xfa, 0x43, 0xfc, 0xfc, 0xfc, 0xfd, 0xdd, 0xbc, 0x49, 0x49, 0x49, 0x48, 0x49, 0x49, 0x48, 0x49, 0x48, 0x49, 0x48, 0x48, 0x48, 0x48, 0x48, 0x47, 0x47, 0x47, 0x45, 0x44, 0x40, 0x3c, 0x42, 0x43, 0x43, 0x43, 0x43, 0xfb, 0xfc, 0xdc, 0xfd, 0xdc, 0xce, 0xb8, 0xb8, 0xb9, 0xb9, 0xb9, 0xb7, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xba, 0xba, 0xba, 0xaf, 0xab, 0xad, 0xad, 0xab, 0xad, 0xad, 0xad, 0xaf, 0xad, 0xaf, 0xaf, 0xaf, 0xae, 0xb3, 0xae, 0xb2, 0xb2, 0xb0, 0xb4, 0xb2, 0xb4, 0xb9, 0xfb, 0x24, 0x2c, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3a, 0x38, 0x38, 0x38, 0x36, 0x38, 0x38, 0x38, 0x38, 0x34, 0x34, 0x38, 0x3b, 0x40, 0x42, 0xdd, 0xbe, 0xdd, 0x46, 0x46, 0xfc, 0x46, 0xfc, 0x46, 0x46, 0x48, 0x47, 0x48, 0x47, 0x48, 0x48, 0x48,
0xc0, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc0, 0xc0, 0xbf, 0xbd, 0xbf, 0xbf, 0xbf, 0xbe, 0xbf, 0xbe, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbe, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xbb, 0xbb, 0xbb, 0xbd, 0xbd, 0xbe, 0xbe, 0xbf, 0xbf, 0xc0, 0xc0, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xc1, 0xbb, 0xb2, 0xb1, 0xae, 0xaf, 0xaa, 0xaa, 0xaa, 0xa7, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xad, 0xaa, 0xb1, 0xaa, 0xc9, 0xc7, 0xc8, 0xc7, 0xc7, 0xc7, 0xc7, 0xc8, 0xc7, 0xc7, 0xc7, 0xc7, 0xc7, 0xc7, 0xc7, 0xc7, 0xc7, 0xc7, 0xc7, 0x72, 0xc7, 0x72, 0x72, 0x70, 0x92, 0xaf, 0xaa, 0xa2, 0x9a, 0x9d, 0x9a, 0x9d, 0x9a, 0x9d, 0x9d, 0x9d, 0x9a, 0x9d, 0x9a, 0x9d, 0x9a, 0x9d, 0x9d, 0x9d, 0x9d, 0x9a, 0x9a, 0xb7, 0xbb, 0xb7, 0xb7, 0xb7, 0xb8, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfa, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xdc, 0xfb, 0xfb, 0xfb, 0xcd, 0xfb, 0xcd, 0xfb, 0xcd, 0xcd, 0xcd, 0xcd, 0xcd, 0xcd, 0xcd, 0xa5, 0xcd, 0xac, 0xac, 0xac, 0xac, 0xac, 0xac, 0xae, 0xae, 0xae, 0xae, 0xae, 0xb3, 0xb3, 0xb1, 0xb3, 0xb3, 0xb3, 0xb3, 0xb3, 0xb3, 0xb3, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb3, 0xb3, 0xb3, 0xb7, 0xb3, 0x81, 0x7e, 0x81, 0x81, 0x81, 0x81, 0x81, 0x76, 0x8d, 0xa6, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa6, 0xa1, 0xa1, 0xa4, 0xa6, 0xa9, 0xa6, 0xa6, 0xa4, 0xa6, 0xa4, 0xa4, 0xa4, 0xa4, 0xa4, 0xa4, 0xa6, 0xa6, 0xa6, 0xa9, 0xa6, 0xa9, 0xa6, 0xa4, 0xa6, 0xa6, 0xa4, 0xa4, 0xa1, 0x52, 0x52, 0x99, 0x9b, 0x97, 0x9b, 0x99, 0x9b, 0x9b, 0x9b, 0x97, 0x99, 0x9b, 0x99, 0x52, 0x52, 0xab, 0xab, 0xad, 0xab, 0xad, 0xab, 0xad, 0xab, 0xad, 0xad, 0xad, 0xab, 0xb3, 0xb9, 0xb9, 0xb7, 0xb9, 0xba, 0xb9, 0xba, 0xbe, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xc0, 0xbf, 0xc0, 0xbf, 0xc0, 0xc0, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbf, 0xbe, 0xb5, 0xb3, 0xb6, 0xb5, 0xb6, 0xb5, 0xb6, 0xb5, 0xb6, 0xb5, 0xb6, 0xb5, 0xb6, 0xb5, 0xb5, 0xb5, 0xb6, 0xb5, 0xb6, 0xb6, 0xaf, 0xaf, 0xb1, 0xaf, 0xb1, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xb1, 0xaf, 0xb1, 0xaf, 0xb1, 0xb3, 0xb2, 0xb2, 0xb6, 0xb7, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb7, 0xb6, 0xb6, 0xb6, 0xb6, 0xb7, 0xb6, 0xb6, 0xb6, 0xce, 0xdd, 0xce, 0xbc, 0xdc, 0x3c, 0x3c, 0x3e, 0x3e, 0x3e, 0x3e, 0x3e, 0x42, 0x3e, 0x43, 0x43, 0x43, 0x43, 0x43, 0xfd, 0xfd, 0x45, 0x47, 0x45, 0x45, 0x45, 0x45, 0x44, 0x44, 0x44, 0x44, 0x44, 0x41, 0x44, 0x3f, 0x40, 0x3f, 0x3d, 0x3a, 0x38, 0x38, 0x3b, 0x39, 0x3c, 0x41, 0x43, 0x43, 0xfc, 0xfd, 0xfc, 0xce, 0xfd, 0xb8, 0xb8, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xb7, 0xb9, 0xb7, 0xba, 0xb9, 0xb9, 0xbb, 0xb6, 0xab, 0xab, 0xad, 0xab, 0xad, 0xad, 0xab, 0xad, 0xaf, 0xad, 0xaf, 0xaf, 0xaf, 0xaf, 0xb2, 0xae, 0xb2, 0xb2, 0xb2, 0xb2, 0xb0, 0xb4, 0xb0, 0xbb, 0xfb, 0x29, 0x3b, 0x3d, 0x3d, 0x3b, 0x3d, 0x3a, 0x34, 0x38, 0x36, 0x38, 0x36, 0x38, 0x36, 0x3a, 0x34, 0x38, 0x38, 0x38, 0x3b, 0x3c, 0x42, 0xbd, 0xcf, 0xdd, 0x46, 0x46, 0x47, 0x46, 0x47, 0x46, 0x47, 0x48, 0x47, 0x48, 0x47, 0x48, 0x48,
0xc0, 0xc0, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbd, 0xb6, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbf, 0xbe, 0xbe, 0xbe, 0xbe, 0xbf, 0xbb, 0xb6, 0xb9, 0xb9, 0xb7, 0xb9, 0xb9, 0xb9, 0xb9, 0xba, 0xbb, 0xbb, 0xbd, 0xbd, 0xbe, 0xbf, 0xc0, 0xbe, 0xbf, 0xbf, 0xbe, 0xbf, 0xbe, 0xc0, 0xbf, 0xbe, 0xbd, 0xbd, 0xbb, 0xb9, 0xb7, 0xb7, 0xb5, 0xb3, 0xae, 0xaf, 0xaa, 0xa7, 0xaa, 0xa7, 0xa7, 0xb3, 0x90, 0xc6, 0x68, 0xc7, 0xc7, 0xc7, 0xc7, 0xc7, 0xc7, 0xc7, 0xc7, 0xc7, 0xc7, 0xc7, 0xc7, 0xc7, 0xc7, 0xc7, 0xc7, 0xc7, 0x72, 0xc7, 0x72, 0x6e, 0x70, 0xa2, 0xae, 0xa1, 0x9a, 0x9a, 0x9d, 0x9d, 0x9a, 0x9d, 0x9a, 0x9d, 0x9d, 0x9d, 0x9d, 0x9a, 0x9d, 0x9d, 0x9d, 0x9d, 0x9d, 0x9d, 0x9a, 0x52, 0xb9, 0xbb, 0xb6, 0xb9, 0xb4, 0xfa, 0xfa, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xcd, 0xfb, 0xcd, 0xfb, 0xcd, 0xcd, 0xcd, 0xcd, 0xcd, 0xa5, 0xac, 0xac, 0xac, 0xac, 0xac, 0xac, 0xac, 0xac, 0xac, 0xae, 0xb2, 0xae, 0xb3, 0xae, 0xb3, 0xb1, 0xb1, 0xb1, 0xb3, 0xb3, 0xb5, 0xb3, 0xb3, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb3, 0xb3, 0xb3, 0xb5, 0xb3, 0xb1, 0xb1, 0xb6, 0xa2, 0x7a, 0x81, 0x81, 0x81, 0x81, 0x7a, 0x7a, 0x8d, 0xa6, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa4, 0xa1, 0xa1, 0xa4, 0xa6, 0xa4, 0xa6, 0xa4, 0xa4, 0xa4, 0xa4, 0xa1, 0xa4, 0xa6, 0xa6, 0xa4, 0xa6, 0xa6, 0xa9, 0xa6, 0xa6, 0xa6, 0xa4, 0xa6, 0xa4, 0xa1, 0xa1, 0x52, 0x52, 0x52, 0x99, 0x9b, 0x97, 0x9b, 0x9b, 0x99, 0x97, 0x52, 0x9b, 0x52, 0x9b, 0x52, 0x99, 0x52, 0xab, 0xad, 0xab, 0xab, 0xab, 0xab, 0xad, 0xad, 0xad, 0xad, 0xab, 0xb5, 0xb9, 0xb9, 0xb9, 0xb9, 0xba, 0xba, 0xb9, 0xbd, 0xbe, 0xbf, 0xbf, 0xbf, 0xc0, 0xbf, 0xc0, 0xbf, 0xc0, 0xbf, 0xc0, 0xbf, 0xc0, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbf, 0xbd, 0xb5, 0xb5, 0xb5, 0xb5, 0xb6, 0xb5, 0xb6, 0xb5, 0xb6, 0xb5, 0xb6, 0xb5, 0xb6, 0xb5, 0xb6, 0xb5, 0xb7, 0xb5, 0xb6, 0xb5, 0xad, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xb1, 0xaf, 0xaf, 0xb1, 0xaf, 0xb1, 0xaf, 0xb2, 0xb2, 0xb2, 0xb2, 0xb6, 0xb6, 0xb6, 0xb7, 0xb6, 0xb7, 0xb6, 0xb7, 0xb6, 0xb7, 0xb6, 0xb7, 0xb6, 0xb6, 0xb7, 0xb6, 0xb9, 0xce, 0xdd, 0xce, 0xdd, 0xb8, 0x43, 0x3c, 0x3c, 0x3c, 0x3c, 0x3c, 0x3c, 0x3e, 0x3c, 0x42, 0x3c, 0x42, 0x41, 0x42, 0x43, 0xdc, 0x43, 0x42, 0x42, 0x44, 0x41, 0x44, 0x40, 0x44, 0x40, 0x40, 0x3f, 0x3f, 0x3f, 0x3f, 0x3d, 0x3a, 0x3a, 0x3a, 0x3a, 0x39, 0x3b, 0x39, 0x3d, 0x39, 0x3c, 0x3e, 0x43, 0xdc, 0xfd, 0xdc, 0xce, 0xb8, 0xba, 0xb9, 0xb9, 0xb9, 0xb9, 0xb7, 0xb7, 0xb9, 0xb7, 0xb9, 0xb7, 0xb7, 0xb9, 0xb9, 0xb1, 0xa9, 0xab, 0xab, 0xab, 0xab, 0xad, 0xab, 0xad, 0xad, 0xad, 0xaf, 0xaf, 0xae, 0xaf, 0xae, 0xb1, 0xb2, 0xb2, 0xb2, 0xb4, 0xb2, 0xb4, 0xce, 0xb4, 0xbb, 0xfa, 0x36, 0x3d, 0x3d, 0x3d, 0x3b, 0x3a, 0x38, 0x36, 0x38, 0x38, 0x38, 0x38, 0x38, 0x36, 0x3a, 0x34, 0x38, 0x36, 0x3b, 0x3d, 0x40, 0x43, 0xbc, 0xbc, 0x46, 0x46, 0x46, 0x46, 0xfc, 0x48, 0x47, 0x48, 0x47, 0x48, 0x47, 0x48, 0x48,
0xbf, 0xbd, 0xbe, 0xbe, 0xbd, 0xbd, 0xbd, 0xbb, 0xbb, 0xbd, 0xb3, 0xab, 0xb6, 0xbe, 0xbd, 0xbd, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbf, 0xbd, 0xb7, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xba, 0xba, 0xbb, 0xba, 0xbb, 0xbb, 0xbe, 0xbd, 0xc0, 0xbf, 0xbe, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xc0, 0xbf, 0xc0, 0xbf, 0xc0, 0xc0, 0xbf, 0xbf, 0xbf, 0xbd, 0xbb, 0xb8, 0xb6, 0xb4, 0xb5, 0xb3, 0xb2, 0xc9, 0xeb, 0xc7, 0xc7, 0xc7, 0xc7, 0xc7, 0xc6, 0xc7, 0xc6, 0xc7, 0xc6, 0xc6, 0xc6, 0xc6, 0x68, 0xc6, 0x68, 0xc6, 0x68, 0x68, 0x68, 0x68, 0x65, 0x75, 0xa9, 0x52, 0x9a, 0x9a, 0x9d, 0x9a, 0x9d, 0x9d, 0x9d, 0x9a, 0x9d, 0x9a, 0x9d, 0x9d, 0x9a, 0x9d, 0x9a, 0x9d, 0x9d, 0x9d, 0x9d, 0x96, 0xa7, 0xba, 0xba, 0xb7, 0xce, 0xfa, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xdc, 0xfb, 0xfb, 0xfb, 0xdc, 0xfb, 0xdc, 0xfb, 0xdc, 0xfb, 0xcd, 0xdc, 0xcd, 0xcd, 0xcd, 0xdc, 0xcd, 0xac, 0xcd, 0xa5, 0xac, 0xac, 0xac, 0xac, 0xac, 0xae, 0xb2, 0xae, 0xae, 0xae, 0xb3, 0xb3, 0xb1, 0xb1, 0xb1, 0xb3, 0xb1, 0xb3, 0xb3, 0xb3, 0xb3, 0xb3, 0xb5, 0xb5, 0xb5, 0xb3, 0xb5, 0xb3, 0xb5, 0xb3, 0xb3, 0xb1, 0xb3, 0xb1, 0xb3, 0xb7, 0x93, 0x78, 0x81, 0x81, 0x81, 0x81, 0x7a, 0x92, 0xa6, 0xa1, 0x52, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa4, 0xa1, 0xa4, 0xa4, 0xa4, 0xa4, 0xa4, 0xa4, 0xa1, 0xa4, 0xa4, 0xa6, 0xa4, 0xa4, 0xa6, 0xa6, 0xa4, 0xa6, 0xa6, 0xa4, 0xa6, 0xa4, 0xa4, 0xa4, 0xa1, 0x52, 0x52, 0x52, 0x99, 0x99, 0x52, 0x99, 0x9b, 0x9b, 0x52, 0x97, 0x52, 0x9b, 0x52, 0x52, 0x9b, 0x99, 0xa2, 0xad, 0xad, 0xad, 0xad, 0xab, 0xab, 0xaf, 0xad, 0xad, 0xab, 0xb5, 0xba, 0xb9, 0xb9, 0xb9, 0xb9, 0xba, 0xba, 0xb9, 0xbe, 0xbe, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xc0, 0xbf, 0xc0, 0xc0, 0xc0, 0xbf, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbf, 0xba, 0xb3, 0xb6, 0xb5, 0xb6, 0xb5, 0xb6, 0xb5, 0xb6, 0xb5, 0xb6, 0xb5, 0xb6, 0xb5, 0xb6, 0xb5, 0xb5, 0xb6, 0xb5, 0xb6, 0xb5, 0xab, 0xaf, 0xaf, 0xaf, 0xb1, 0xb1, 0xaf, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb2, 0xb0, 0xb2, 0xb2, 0xb2, 0xb7, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb7, 0xb6, 0xb7, 0xb6, 0xdd, 0xdc, 0xdd, 0xdc, 0xdd, 0xce, 0x3c, 0x39, 0x3c, 0x3c, 0x3c, 0x3c, 0x3c, 0x3c, 0x3c, 0x40, 0x3c, 0x41, 0x3f, 0x43, 0xfc, 0x43, 0x43, 0x41, 0x41, 0x41, 0x40, 0x40, 0x3f, 0x3f, 0x3f, 0x3f, 0x3f, 0x3d, 0x3a, 0x3d, 0x3a, 0x3b, 0x3a, 0x39, 0x36, 0x3b, 0x39, 0x39, 0x39, 0x40, 0x3c, 0x42, 0xfa, 0xdc, 0xfb, 0xfd, 0xb8, 0xb9, 0xb7, 0xb7, 0xb9, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb9, 0xb9, 0xb7, 0xa9, 0xab, 0xad, 0xad, 0xaf, 0xad, 0xaf, 0xb1, 0xb1, 0xb1, 0xb1, 0xb3, 0xb2, 0xb2, 0xb2, 0xb0, 0xb0, 0xce, 0xb0, 0xdc, 0xce, 0xdc, 0xdc, 0xdd, 0xfd, 0xdd, 0xbf, 0x40, 0x34, 0x3b, 0x3d, 0x3d, 0x3a, 0x33, 0x38, 0x38, 0x36, 0x38, 0x36, 0x38, 0x3a, 0x38, 0x3a, 0x34, 0x34, 0x38, 0x3b, 0x39, 0x40, 0x43, 0xbe, 0xdd, 0x46, 0x47, 0xfc, 0x48, 0x47, 0x47, 0x47, 0x48, 0x47, 0x47, 0x48, 0x48,
0xbe, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbe, 0xb6, 0xad, 0xad, 0xb3, 0xb9, 0xbb, 0xba, 0xbd, 0xbd, 0xbd, 0xbd, 0xbe, 0xbd, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xb9, 0xb7, 0xb7, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xbb, 0xbb, 0xbb, 0xbb, 0xbe, 0xbd, 0xba, 0xc1, 0xc1, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xc0, 0xbf, 0xbe, 0xbf, 0xbe, 0xbf, 0xbf, 0xbe, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xc0, 0xc0, 0xc0, 0xbf, 0xbf, 0xc0, 0xb8, 0xda, 0xf8, 0xf8, 0xf8, 0xda, 0xda, 0xda, 0xcb, 0xcb, 0xd9, 0xcb, 0xd9, 0xca, 0xd9, 0xd9, 0xd8, 0xd8, 0xd8, 0xd8, 0xd7, 0x80, 0xc9, 0xc8, 0xc7, 0x8c, 0xa4, 0x9a, 0x9a, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x9a, 0x9a, 0x9a, 0x9a, 0x9d, 0x9d, 0x9d, 0x9d, 0x9d, 0x9d, 0x9d, 0x9d, 0x9a, 0xa7, 0xbd, 0xb9, 0xce, 0xfa, 0xfb, 0xfb, 0xfb, 0xfc, 0xfb, 0xfb, 0xfb, 0xfa, 0xdc, 0xfb, 0xdc, 0xfb, 0xfb, 0xfb, 0xcd, 0xfb, 0xcd, 0xcd, 0xfb, 0xcd, 0xcd, 0xcd, 0xcd, 0xb0, 0xdb, 0xac, 0xac, 0xac, 0xac, 0xac, 0xac, 0xae, 0xac, 0xae, 0xb2, 0xae, 0xae, 0xb1, 0xb1, 0xb1, 0xb3, 0xb1, 0xb1, 0xb1, 0xb3, 0xb3, 0xb3, 0xb3, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb3, 0xb3, 0xb3, 0xb1, 0xb3, 0xb1, 0xb1, 0xb1, 0xaf, 0xb3, 0xb3, 0x87, 0x7a, 0x81, 0x81, 0x7a, 0x7a, 0x97, 0xa4, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0x9d, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa4, 0xa6, 0xa4, 0xa4, 0xa1, 0xa4, 0xa1, 0xa4, 0xa4, 0xa4, 0xa6, 0xa4, 0xa6, 0xa4, 0xa4, 0xa4, 0xa4, 0xa4, 0xa4, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0x99, 0x52, 0x99, 0x9b, 0x9b, 0x9b, 0x99, 0x9b, 0x52, 0x9b, 0x99, 0x52, 0x52, 0x52, 0x52, 0x99, 0xa4, 0xaf, 0xad, 0xab, 0xad, 0xad, 0xad, 0xad, 0xad, 0xad, 0xb6, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xba, 0xba, 0xba, 0xbe, 0xbf, 0xbf, 0xbf, 0xbf, 0xc0, 0xbf, 0xc0, 0xc0, 0xc0, 0xc0, 0xbf, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbd, 0xbf, 0xbf, 0xb7, 0xb3, 0xb6, 0xb5, 0xb6, 0xb5, 0xb6, 0xb5, 0xb6, 0xb6, 0xb5, 0xb6, 0xb5, 0xb6, 0xb5, 0xb6, 0xb5, 0xb6, 0xb6, 0xb6, 0xb3, 0xad, 0xaf, 0xb1, 0xb1, 0xaf, 0xb1, 0xaf, 0xaf, 0xaf, 0xb1, 0xaf, 0xb1, 0xaf, 0xb2, 0xb0, 0xb0, 0xb0, 0xb0, 0xb2, 0xb7, 0xb7, 0xb6, 0xb7, 0xb7, 0xb6, 0xb7, 0xb6, 0xb6, 0xb7, 0xb7, 0xb6, 0xb7, 0xb6, 0xb8, 0xdc, 0xdd, 0xdc, 0xdd, 0xdc, 0xb8, 0xfd, 0x3c, 0x39, 0x39, 0x3c, 0x39, 0x3c, 0x3c, 0x3f, 0x3c, 0x40, 0x40, 0x3d, 0x41, 0x43, 0x43, 0x43, 0x42, 0x40, 0x40, 0x40, 0x3f, 0x40, 0x3f, 0x3f, 0x3d, 0x3d, 0x3d, 0x3b, 0x3b, 0x3a, 0x3b, 0x36, 0x39, 0x39, 0x3b, 0x3b, 0x39, 0x39, 0x39, 0x40, 0x3e, 0x43, 0xac, 0xac, 0xdc, 0xdc, 0xb4, 0xb7, 0xb6, 0xb6, 0xb7, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb5, 0xb6, 0xb6, 0xb3, 0xb5, 0xb5, 0xb5, 0xb5, 0xb6, 0xb5, 0xb5, 0xb6, 0xb6, 0xb6, 0xb7, 0xb6, 0xb4, 0xce, 0xce, 0xdc, 0xfd, 0xdc, 0xdc, 0xfd, 0xdc, 0xfd, 0xdc, 0xfd, 0xfd, 0xdc, 0xc1, 0x46, 0x2f, 0x34, 0x36, 0x36, 0x3b, 0x3b, 0x36, 0x34, 0x34, 0x34, 0x33, 0x34, 0x34, 0x38, 0x36, 0x38, 0x34, 0x36, 0x3a, 0x3d, 0x3b, 0x40, 0xfc, 0xbf, 0x46, 0xfc, 0x46, 0x47, 0x47, 0x48, 0x47, 0x48, 0x47, 0x48, 0x47, 0x47,
0xbd, 0xbb, 0xbd, 0xbd, 0xbd, 0xbd, 0xbb, 0xbd, 0xbb, 0xad, 0xad, 0xaf, 0xad, 0xb5, 0xba, 0xb9, 0xbb, 0xbb, 0xbd, 0xbd, 0xbb, 0xbe, 0xbd, 0xbd, 0xbe, 0xbe, 0xbe, 0xbb, 0xb7, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xba, 0xbb, 0xbb, 0xbb, 0xbd, 0xbd, 0xbe, 0xb9, 0xbf, 0xd1, 0xc0, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xc0, 0xbf, 0xbe, 0xbf, 0xbe, 0xbf, 0xbe, 0xbf, 0xbe, 0xbf, 0xbf, 0xbf, 0xbf, 0xbe, 0xbf, 0xbe, 0xbf, 0xbf, 0xbf, 0xbc, 0xfb, 0xfb, 0xcd, 0xfb, 0xdc, 0xfb, 0xdc, 0xdc, 0xdc, 0xdc, 0xfb, 0xfd, 0xfb, 0xdc, 0xdc, 0xdc, 0xfb, 0xdc, 0xfb, 0xfb, 0xfb, 0xfb, 0xdb, 0xf8, 0xb4, 0xb9, 0xb5, 0xb5, 0xb1, 0xad, 0xaa, 0xa6, 0xa6, 0xa1, 0x52, 0x9a, 0x9a, 0x96, 0x95, 0x96, 0x9a, 0x96, 0x9a, 0x9a, 0x9d, 0x9d, 0x96, 0xb1, 0xbd, 0xdc, 0xfa, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xcd, 0xfb, 0xfb, 0xfb, 0xfb, 0xcd, 0xfb, 0xdc, 0xfb, 0xcd, 0xfb, 0xdc, 0xcd, 0xcd, 0xcd, 0xdc, 0xcd, 0xac, 0xcd, 0xac, 0xac, 0xac, 0xac, 0xac, 0xac, 0xb2, 0xae, 0xae, 0xae, 0xb1, 0xb1, 0xb1, 0xaf, 0xb1, 0xb3, 0xb1, 0xb1, 0xb1, 0xb3, 0xb1, 0xb3, 0xb3, 0xb5, 0xb5, 0xb3, 0xb5, 0xb1, 0xb3, 0xb1, 0xb1, 0xb1, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xb3, 0xaa, 0x7e, 0x7a, 0x81, 0x81, 0x7e, 0x52, 0xa4, 0x52, 0xa1, 0xa1, 0xa1, 0xa1, 0x9d, 0xa1, 0x9d, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0x9d, 0xa1, 0xa4, 0xa4, 0xa4, 0xa4, 0xa1, 0xa1, 0xa4, 0xa4, 0xa4, 0xa4, 0xa4, 0xa6, 0xa4, 0xa4, 0xa4, 0xa4, 0xa4, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0x52, 0x52, 0x52, 0x99, 0x99, 0x9b, 0x52, 0x9b, 0x99, 0x9b, 0x99, 0x9b, 0x9b, 0x9b, 0x52, 0x9b, 0x52, 0x99, 0xa7, 0xaf, 0xad, 0xad, 0xaf, 0xad, 0xaf, 0xad, 0xad, 0xb6, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xba, 0xba, 0xbb, 0xbb, 0xbe, 0xbf, 0xbf, 0xbf, 0xc0, 0xbf, 0xc0, 0xc0, 0xc0, 0xc0, 0xbf, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbf, 0xbe, 0xb6, 0xb5, 0xb6, 0xb5, 0xb5, 0xb6, 0xb5, 0xb6, 0xb5, 0xb6, 0xb5, 0xb6, 0xb6, 0xb6, 0xb5, 0xb6, 0xb6, 0xb5, 0xb6, 0xb6, 0xb1, 0xad, 0xb1, 0xaf, 0xb1, 0xb1, 0xaf, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xaf, 0xb0, 0xac, 0xb0, 0xb0, 0xb0, 0xcd, 0xb4, 0xb6, 0xb6, 0xb7, 0xb6, 0xb7, 0xb6, 0xb7, 0xb6, 0xb7, 0xb6, 0xb7, 0xb6, 0xb7, 0xb4, 0xfd, 0xdc, 0xdd, 0xdc, 0xfd, 0xfd, 0xce, 0x43, 0x35, 0x39, 0x3c, 0x39, 0x3c, 0x39, 0x3c, 0x3d, 0x39, 0x3f, 0x3d, 0x3c, 0x43, 0x3e, 0x42, 0x3e, 0x41, 0x40, 0x3d, 0x40, 0x3d, 0x3f, 0x3d, 0x3d, 0x3d, 0x3b, 0x3b, 0x3a, 0x3b, 0x3b, 0x39, 0x39, 0x36, 0x3d, 0x39, 0x3b, 0x39, 0x3c, 0x39, 0x3e, 0x41, 0xdb, 0xaa, 0xa8, 0xfb, 0xfd, 0xb0, 0xb7, 0xb5, 0xb6, 0xb6, 0xb6, 0xb6, 0xb5, 0xb5, 0xb5, 0xb5, 0xb1, 0xb1, 0xb6, 0xb7, 0xb6, 0xb6, 0xb6, 0xb6, 0xb7, 0xb6, 0xb6, 0xb6, 0xb4, 0xb7, 0xb4, 0xb4, 0xcd, 0xdc, 0xdc, 0xdc, 0xdc, 0xdc, 0xfd, 0xdc, 0xfd, 0xfd, 0xfd, 0xdd, 0x49, 0xd1, 0x3c, 0x33, 0x36, 0x34, 0x39, 0x44, 0x44, 0x41, 0x41, 0x3f, 0x40, 0x3b, 0x3b, 0x36, 0x3a, 0x36, 0x34, 0x33, 0x36, 0x3a, 0x3b, 0x3d, 0x3f, 0xfd, 0xcf, 0x46, 0x46, 0x47, 0x48, 0x47, 0x47, 0x47, 0x47, 0x47, 0x48, 0x47,
0xbd, 0xbd, 0xbb, 0xbd, 0xbd, 0xbb, 0xbb, 0xbe, 0xb3, 0xa9, 0xaf, 0xaf, 0xaf, 0xad, 0xb7, 0xba, 0xb9, 0xbd, 0xbb, 0xbd, 0xbb, 0xbd, 0xbd, 0xbd, 0xbe, 0xbd, 0xbd, 0xbe, 0xb7, 0xb7, 0xb9, 0xb9, 0xb9, 0xb9, 0xba, 0xba, 0xbb, 0xbb, 0xbd, 0xbe, 0xbb, 0xb7, 0xbd, 0xd1, 0xd1, 0xc0, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xc0, 0xc0, 0xbe, 0xbe, 0xbf, 0xbf, 0xbe, 0xbf, 0xbe, 0xbf, 0xbe, 0xbf, 0xbe, 0xbf, 0xbe, 0xbf, 0xbe, 0xbd, 0xbd, 0xbd, 0xce, 0xf8, 0xdb, 0xfb, 0xdb, 0xfb, 0xfb, 0xdb, 0xfa, 0xdb, 0xfb, 0xdb, 0xfb, 0xfb, 0xf8, 0xfb, 0xfb, 0xdb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xcd, 0xbc, 0xc0, 0xc0, 0xc0, 0xbf, 0xbf, 0xbf, 0xbe, 0xbd, 0xbb, 0xb7, 0xb6, 0xb5, 0xb1, 0xad, 0xa7, 0xa6, 0xa2, 0xa1, 0x9d, 0x9d, 0x96, 0x96, 0xab, 0xdc, 0xfa, 0xfb, 0xfb, 0xfa, 0xfb, 0xfb, 0xfb, 0xfb, 0xfa, 0xdc, 0xfb, 0xdc, 0xfb, 0xfb, 0xfb, 0xfb, 0xcd, 0xfb, 0xcd, 0xcd, 0xfb, 0xcd, 0xcd, 0xcd, 0xcd, 0xac, 0xcd, 0xac, 0xac, 0xb0, 0xac, 0xb0, 0xae, 0xac, 0xae, 0xae, 0xae, 0xaf, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb3, 0xb1, 0xb3, 0xb3, 0xb5, 0xb3, 0xb3, 0xb3, 0xb1, 0xb1, 0xaf, 0xb1, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xad, 0xb6, 0x9f, 0x76, 0x81, 0x7a, 0x81, 0xa2, 0xa1, 0xa1, 0xa1, 0x52, 0xa1, 0x9d, 0xa1, 0x9d, 0xa1, 0xa1, 0x9d, 0xa1, 0x9d, 0x9d, 0x9d, 0xa1, 0x9d, 0xa1, 0xa4, 0xa1, 0xa4, 0xa1, 0xa4, 0xa4, 0xa4, 0xa4, 0xa4, 0xa4, 0xa4, 0xa4, 0xa4, 0xa1, 0xa4, 0xa1, 0xa4, 0x9d, 0xa1, 0x9d, 0xa1, 0x9d, 0x9d, 0x99, 0x52, 0x99, 0x52, 0x9b, 0x52, 0x9b, 0x99, 0x9b, 0x52, 0x9b, 0x52, 0x52, 0x52, 0x52, 0x99, 0x52, 0xa9, 0xaf, 0xad, 0xaf, 0xad, 0xaf, 0xad, 0xaf, 0xb7, 0xba, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xba, 0xba, 0xbb, 0xb9, 0xbb, 0xbf, 0xbf, 0xbf, 0xbf, 0xc0, 0xbf, 0xc0, 0xc0, 0xbf, 0xbf, 0xbf, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbf, 0xbe, 0xbe, 0xbf, 0xbf, 0xbd, 0xb3, 0xb5, 0xb6, 0xb5, 0xb6, 0xb5, 0xb6, 0xb6, 0xb5, 0xb6, 0xb6, 0xb5, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xaf, 0xaf, 0xb1, 0xaf, 0xb1, 0xaf, 0xb1, 0xaf, 0xb1, 0xaf, 0xb1, 0xaf, 0xb0, 0xb0, 0xac, 0xcd, 0xac, 0xcd, 0xb0, 0xb4, 0xb7, 0xb6, 0xb6, 0xb7, 0xb6, 0xb7, 0xb7, 0xb6, 0xb7, 0xb6, 0xb7, 0xb6, 0xb8, 0xfd, 0xdc, 0xfd, 0xdc, 0xfd, 0xdc, 0xfd, 0xce, 0x42, 0x36, 0x39, 0x39, 0x39, 0x3d, 0x39, 0x3f, 0x39, 0x3d, 0x3b, 0x3c, 0x43, 0x3e, 0x42, 0x3e, 0x42, 0x3c, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3b, 0x3b, 0x3b, 0x3b, 0x3b, 0x39, 0x36, 0x39, 0x39, 0x3b, 0x3b, 0x39, 0x39, 0x39, 0x3c, 0x3c, 0x3c, 0xfa, 0xa3, 0xa8, 0xa3, 0xfb, 0xdc, 0xce, 0xb4, 0xb6, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb3, 0xb1, 0xaf, 0xb3, 0xb5, 0xb6, 0xb7, 0xb6, 0xb5, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb4, 0xb4, 0xce, 0xdc, 0xdc, 0xdc, 0xdc, 0xfd, 0xdc, 0xdc, 0xdc, 0xfd, 0xce, 0xfd, 0xff, 0xd1, 0x43, 0x2f, 0x36, 0x36, 0x34, 0x44, 0x47, 0x45, 0x47, 0x45, 0x45, 0x45, 0x45, 0x44, 0x44, 0x41, 0x41, 0x3d, 0x34, 0x3a, 0x3a, 0x3b, 0x39, 0x3f, 0xfd, 0xfe, 0x47, 0x47, 0x47, 0x47, 0x47, 0x47, 0x47, 0x47, 0x47, 0x47,
0xbd, 0xbb, 0xbd, 0xbb, 0xbb, 0xbb, 0xbd, 0xb6, 0xab, 0xad, 0xaf, 0xad, 0xaf, 0xad, 0xb1, 0xb9, 0xb7, 0xb9, 0xba, 0xb9, 0xbd, 0xbb, 0xbd, 0xbd, 0xbe, 0xbd, 0xbd, 0xbe, 0xb9, 0xb6, 0xb9, 0xb7, 0xb9, 0xb9, 0xb9, 0xba, 0xba, 0xba, 0xbd, 0xbd, 0xb9, 0xb9, 0xbb, 0xc0, 0xd1, 0xd1, 0xbf, 0xbf, 0xbf, 0xc0, 0xbf, 0xc0, 0xbf, 0xbf, 0xbe, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbe, 0xbf, 0xbe, 0xbf, 0xbf, 0xbe, 0xbe, 0xbf, 0xbe, 0xbb, 0xbd, 0xbe, 0xb0, 0xf8, 0xfb, 0xdb, 0xfb, 0xdb, 0xfb, 0xdb, 0xfb, 0xdb, 0xfb, 0xdb, 0xfb, 0xfb, 0xdb, 0xfb, 0xdb, 0xfb, 0xdb, 0xfb, 0xdb, 0xcd, 0xdb, 0xcd, 0xac, 0xb8, 0xbd, 0xbe, 0xbd, 0xbd, 0xbe, 0xbd, 0xbf, 0xbe, 0xbf, 0xc0, 0xbf, 0xc0, 0xbf, 0xbf, 0xbe, 0xbd, 0xbd, 0xb7, 0xb7, 0xb5, 0xaf, 0xb1, 0xdc, 0xfb, 0xfc, 0xfb, 0xdc, 0xfb, 0xdc, 0xfb, 0xdc, 0xfb, 0xdc, 0xfb, 0xdc, 0xfb, 0xdc, 0xcd, 0xdc, 0xcd, 0xdc, 0xcd, 0xdc, 0xcd, 0xdc, 0xcd, 0xce, 0xa5, 0xdb, 0xac, 0xcd, 0xac, 0xac, 0xb0, 0xae, 0xb0, 0xb3, 0xae, 0xb3, 0xb1, 0xb3, 0xb1, 0xb1, 0xaf, 0xb1, 0xaf, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb3, 0xb3, 0xb6, 0xb3, 0xb3, 0xaf, 0xb1, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xad, 0xaf, 0xad, 0xad, 0xaf, 0xb3, 0x92, 0x76, 0x7a, 0x8d, 0xa2, 0xa1, 0x52, 0xa1, 0xa1, 0xa1, 0x52, 0xa1, 0x9d, 0x9d, 0x9d, 0xa1, 0xa1, 0x9d, 0xa1, 0xa1, 0xa1, 0xa1, 0x9d, 0x9d, 0xa4, 0xa1, 0xa1, 0xa4, 0xa4, 0xa4, 0xa4, 0xa1, 0xa1, 0xa4, 0xa1, 0xa4, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0x9d, 0x9d, 0xa1, 0x52, 0x9d, 0x52, 0x52, 0x9b, 0x99, 0x9b, 0x52, 0x9b, 0x52, 0x9b, 0x52, 0x9b, 0x52, 0x9b, 0x52, 0x52, 0x52, 0x52, 0xad, 0xaf, 0xad, 0xaf, 0xad, 0xaf, 0xaf, 0xb7, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xba, 0xba, 0xba, 0xbb, 0xbd, 0xbf, 0xbf, 0xc0, 0xbf, 0xc0, 0xc0, 0xc0, 0xc0, 0xbf, 0xbf, 0xbe, 0xbe, 0xbe, 0xbe, 0xbf, 0xbe, 0xbe, 0xbe, 0xbf, 0xbe, 0xbe, 0xc0, 0xba, 0xb5, 0xb5, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb5, 0xb6, 0xb6, 0xb5, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xaf, 0xaf, 0xb1, 0xaf, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xcd, 0xcd, 0xcd, 0xb0, 0xcd, 0xb0, 0xcd, 0xcd, 0xb7, 0xb7, 0xb7, 0xb7, 0xb6, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb6, 0xb7, 0xce, 0xfd, 0xdc, 0xfd, 0xfd, 0xdc, 0xfd, 0xfd, 0xce, 0xfd, 0x3c, 0x39, 0x39, 0x39, 0x39, 0x39, 0x39, 0x3d, 0x39, 0x3a, 0x40, 0xfa, 0x42, 0x3e, 0x41, 0x3e, 0x41, 0x3c, 0x3d, 0x3d, 0x3d, 0x39, 0x3b, 0x3b, 0x3b, 0x3b, 0x3b, 0x39, 0x3b, 0x39, 0x39, 0x36, 0x3d, 0x39, 0x3b, 0x39, 0x39, 0x39, 0x3c, 0x3c, 0x3e, 0xa5, 0xa8, 0xa8, 0xa3, 0xa5, 0xfb, 0xdc, 0xb2, 0xb6, 0xb5, 0xb5, 0xb5, 0xb3, 0xb5, 0xb3, 0xb1, 0xaf, 0xb3, 0xb5, 0xb5, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb7, 0xb4, 0xce, 0xce, 0xdc, 0xdc, 0xdc, 0xdc, 0xfd, 0xfd, 0xdc, 0xfd, 0xdd, 0xfe, 0xff, 0xff, 0xd1, 0x39, 0x34, 0x36, 0x34, 0x40, 0x45, 0x45, 0x44, 0x45, 0x45, 0x45, 0x45, 0x45, 0x45, 0x45, 0x48, 0x45, 0x3f, 0x3d, 0x3f, 0x3f, 0x3d, 0x3f, 0x40, 0x47, 0x48, 0x48, 0x48, 0x47, 0x48, 0x47, 0x47, 0x47, 0x47, 0x47,
0xbb, 0xbb, 0xba, 0xba, 0xba, 0xbd, 0xbd, 0xad, 0xab, 0xad, 0xaf, 0xad, 0xaf, 0xad, 0xad, 0xb5, 0xb9, 0xb7, 0xb9, 0xb9, 0xba, 0xbd, 0xbb, 0xbd, 0xbd, 0xbd, 0xbb, 0xbd, 0xbb, 0xb7, 0xb7, 0xb9, 0xb9, 0xb7, 0xba, 0xb9, 0xba, 0xba, 0xbd, 0xbb, 0xb7, 0xb9, 0xbb, 0xbf, 0xd1, 0xd1, 0xc1, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xc0, 0xc0, 0xbf, 0xbf, 0xbf, 0xbe, 0xbf, 0xbe, 0xbf, 0xbe, 0xbf, 0xbe, 0xbf, 0xbe, 0xbe, 0xbf, 0xbd, 0xbd, 0xbd, 0xbd, 0xbe, 0xcd, 0xf8, 0xfb, 0xdb, 0xfb, 0xdb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xdb, 0xfb, 0xdb, 0xfb, 0xdb, 0xfb, 0xfb, 0xdb, 0xfb, 0xfb, 0xcd, 0xcd, 0xb0, 0xb4, 0xbe, 0xbe, 0xbd, 0xbd, 0xbd, 0xbd, 0xbe, 0xbd, 0xbd, 0xbe, 0xbd, 0xbe, 0xbe, 0xbe, 0xbe, 0xbf, 0xbf, 0xbf, 0xc0, 0xc0, 0xbf, 0xdd, 0xdc, 0xfb, 0xdc, 0xdc, 0xdc, 0xdc, 0xfb, 0xdc, 0xdc, 0xdc, 0xdc, 0xdc, 0xdc, 0xdc, 0xdc, 0xdc, 0xdc, 0xdc, 0xdc, 0xdc, 0xdc, 0xb0, 0xdc, 0xce, 0xcd, 0xd9, 0xcb, 0xda, 0xcc, 0xdb, 0x9e, 0xa5, 0xa5, 0xac, 0xa8, 0xae, 0xaa, 0xae, 0xaf, 0xb1, 0xaf, 0xb1, 0xaf, 0xb1, 0xaf, 0xb1, 0xb1, 0xaf, 0xb1, 0xb5, 0xb5, 0xb3, 0xaf, 0xb1, 0xad, 0xaf, 0xad, 0xad, 0xad, 0xad, 0xad, 0xad, 0xad, 0xad, 0xad, 0xad, 0xb3, 0xaf, 0x87, 0x71, 0x8d, 0xa6, 0x52, 0xa1, 0xa1, 0xa1, 0x9d, 0xa1, 0x9d, 0xa1, 0x9d, 0xa1, 0x9d, 0xa1, 0x9d, 0x9d, 0x9d, 0x9d, 0x9d, 0x9d, 0x9a, 0x9a, 0x9d, 0x9d, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0x9d, 0xa1, 0x9d, 0x9d, 0x52, 0xa1, 0x52, 0x9d, 0x9b, 0x52, 0x9b, 0x52, 0x9b, 0x52, 0x9b, 0x52, 0x9b, 0x52, 0x9b, 0x52, 0x52, 0x52, 0x52, 0x52, 0x52, 0xad, 0xaf, 0xad, 0xad, 0xad, 0xaf, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xba, 0xb9, 0xba, 0xbb, 0xbb, 0xb9, 0xbe, 0xbf, 0xc0, 0xbf, 0xc0, 0xc0, 0xc0, 0xc0, 0xbe, 0xbf, 0xbe, 0xbf, 0xbe, 0xbf, 0xbe, 0xbf, 0xbe, 0xbf, 0xbe, 0xbe, 0xbf, 0xbe, 0xc0, 0xb7, 0xb5, 0xb6, 0xb6, 0xb5, 0xb6, 0xb5, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb5, 0xb7, 0xb3, 0xaf, 0xaf, 0xb1, 0xb1, 0xb1, 0xaf, 0xb1, 0xb1, 0xaf, 0xae, 0xb0, 0xcd, 0xcd, 0xcd, 0xcd, 0xcd, 0xcd, 0xfb, 0xb0, 0xb7, 0xb7, 0xb6, 0xb6, 0xb7, 0xb6, 0xb7, 0xb6, 0xb7, 0xb6, 0xb7, 0xce, 0xfd, 0xdc, 0xfd, 0xdc, 0xfd, 0xdc, 0xfd, 0xfd, 0xdd, 0xfc, 0x39, 0x3b, 0x39, 0x3d, 0x39, 0x3d, 0x39, 0x3b, 0x3a, 0x3c, 0x3e, 0x3e, 0x3c, 0x3e, 0x3c, 0x3c, 0x41, 0x3c, 0x3b, 0x3b, 0x3d, 0x3d, 0x3b, 0x3b, 0x39, 0x3b, 0x39, 0x39, 0x36, 0x39, 0x39, 0x39, 0x3b, 0x39, 0x3d, 0x39, 0x39, 0x39, 0x3c, 0x3c, 0xdb, 0xa0, 0xa0, 0xa0, 0xa0, 0xa5, 0xfb, 0xfb, 0xcd, 0xb5, 0xb3, 0xb3, 0xb3, 0xb1, 0xb1, 0xb1, 0xaf, 0xaf, 0xb3, 0xb5, 0xb5, 0xb6, 0xb5, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb4, 0xb6, 0xce, 0xb0, 0xdc, 0xdc, 0xdc, 0xdc, 0xdc, 0xfd, 0xfd, 0xfd, 0xdc, 0xff, 0xff, 0x49, 0xd1, 0x43, 0x2f, 0x36, 0x34, 0x3d, 0x45, 0x44, 0x45, 0x44, 0x45, 0x44, 0x45, 0x45, 0x45, 0x45, 0x45, 0x48, 0x40, 0x3f, 0x3f, 0x3f, 0x40, 0x40, 0x3f, 0x40, 0x42, 0x44, 0x45, 0x45, 0x47, 0x47, 0x48, 0x47, 0x48, 0x47,
0xbb, 0xbb, 0xba, 0xb9, 0xbb, 0xbd, 0xb3, 0xa6, 0xab, 0xad, 0xad, 0xad, 0xaf, 0xaf, 0xad, 0xad, 0xb7, 0xb9, 0xb9, 0xb9, 0xb9, 0xba, 0xba, 0xbb, 0xbd, 0xbb, 0xbb, 0xbd, 0xbd, 0xb9, 0xb7, 0xb9, 0xb7, 0xb9, 0xb9, 0xb9, 0xba, 0xbb, 0xbb, 0xba, 0xb6, 0xba, 0xba, 0xbe, 0xc0, 0xd1, 0xd1, 0xc0, 0xbf, 0xbf, 0xbf, 0xc0, 0xc0, 0xc0, 0xbf, 0xbe, 0xbe, 0xbf, 0xbe, 0xbf, 0xbe, 0xbf, 0xbe, 0xbf, 0xbe, 0xbf, 0xbf, 0xbf, 0xbd, 0xbb, 0xbd, 0xba, 0xbe, 0xbe, 0xcd, 0xf8, 0xfb, 0xfb, 0xdb, 0xfb, 0xdb, 0xfb, 0xdb, 0xfb, 0xdb, 0xfb, 0xfb, 0xfb, 0xdb, 0xfb, 0xfb, 0xdb, 0xfb, 0xfb, 0xa5, 0xfb, 0xcd, 0xcd, 0xb0, 0xb4, 0xbd, 0xbe, 0xbd, 0xbd, 0xbd, 0xbd, 0xbe, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbe, 0xbd, 0xbd, 0xbe, 0xbc, 0xdd, 0xdc, 0xfb, 0xfc, 0xfb, 0xfd, 0xdc, 0xdc, 0xdc, 0xdc, 0xdc, 0xdc, 0xdc, 0xdc, 0xdc, 0xdc, 0xdc, 0xdc, 0xdc, 0xcd, 0xce, 0xdc, 0xce, 0xdc, 0xbd, 0xcd, 0xd9, 0xcb, 0xcb, 0xda, 0x94, 0xcc, 0xcc, 0x9e, 0x9e, 0xa0, 0xa0, 0xa8, 0xa3, 0xaa, 0xaa, 0xad, 0xad, 0xad, 0xad, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xad, 0xad, 0xad, 0xad, 0xab, 0xad, 0xad, 0xad, 0xad, 0xad, 0xab, 0xad, 0xad, 0xad, 0xad, 0xab, 0xb3, 0xa7, 0x76, 0x8d, 0xa2, 0x52, 0x52, 0x9d, 0x52, 0x9a, 0x9a, 0x99, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x99, 0x9d, 0x9d, 0x9d, 0x9d, 0xa1, 0xa1, 0xa1, 0xa1, 0xa9, 0xa6, 0xa1, 0x9d, 0x9a, 0x9a, 0x9a, 0x9a, 0x9d, 0x9d, 0x9d, 0x9d, 0x9d, 0xa1, 0xa1, 0x9d, 0x9d, 0x9d, 0x9a, 0x52, 0x9d, 0x52, 0x52, 0x9b, 0x52, 0x9b, 0x52, 0x9b, 0x52, 0x9b, 0x52, 0x52, 0x9b, 0x52, 0x9b, 0x52, 0x52, 0x52, 0x52, 0xa2, 0xaf, 0xaf, 0xad, 0xad, 0xb1, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xba, 0xba, 0xba, 0xbb, 0xbb, 0xbb, 0xbb, 0xbe, 0xbf, 0xbf, 0xc0, 0xc0, 0xc0, 0xbf, 0xbf, 0xbf, 0xbf, 0xbe, 0xbf, 0xbe, 0xbf, 0xbe, 0xbf, 0xbf, 0xbe, 0xbe, 0xbe, 0xbe, 0xbf, 0xbf, 0xb6, 0xb5, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb7, 0xb5, 0xb7, 0xb3, 0xaf, 0xaf, 0xb1, 0xaf, 0xb1, 0xb1, 0xaf, 0xb1, 0xb1, 0xcd, 0xcd, 0xcd, 0xac, 0xcd, 0xcd, 0xcd, 0xcd, 0xfb, 0xb0, 0xb7, 0xb6, 0xb7, 0xb6, 0xb7, 0xb6, 0xb7, 0xb7, 0xb6, 0xb9, 0xfd, 0xdc, 0xfd, 0xdc, 0xfd, 0xdc, 0xfd, 0xfd, 0xdc, 0xfc, 0xce, 0x43, 0x36, 0x39, 0x39, 0x39, 0x3b, 0x39, 0x3b, 0x3a, 0x39, 0x43, 0x3e, 0x42, 0x3c, 0x3e, 0x3c, 0x3c, 0x3c, 0x40, 0x39, 0x3b, 0x39, 0x3b, 0x39, 0x3b, 0x39, 0x39, 0x39, 0x39, 0x39, 0x39, 0x3b, 0x39, 0x3b, 0x39, 0x39, 0x39, 0x39, 0x3c, 0x39, 0xf9, 0xa0, 0xa5, 0xa0, 0xa0, 0x9c, 0x9e, 0xfb, 0xfb, 0xcd, 0xb0, 0xb3, 0xb3, 0xb1, 0xb3, 0xaf, 0xb3, 0xaf, 0xb3, 0xb6, 0xb5, 0xb5, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb8, 0xb4, 0xce, 0xdc, 0xdc, 0xdc, 0xdc, 0xfd, 0xdc, 0xfd, 0xfd, 0xdd, 0xff, 0xff, 0xff, 0xd1, 0xff, 0x39, 0x34, 0x36, 0x36, 0x44, 0x45, 0x45, 0x45, 0x45, 0x45, 0x45, 0x44, 0x45, 0x44, 0x45, 0xfe, 0x44, 0x3b, 0x3f, 0x3f, 0x3f, 0x3f, 0x40, 0x40, 0x40, 0x41, 0x41, 0x41, 0x44, 0x41, 0x44, 0x44, 0x45, 0x45,
0xba, 0xbb, 0xbb, 0xbb, 0xbd, 0xb7, 0xa6, 0xab, 0xad, 0xad, 0xab, 0xad, 0xaf, 0xad, 0xad, 0xab, 0xb1, 0xb9, 0xb7, 0xb9, 0xb9, 0xb9, 0xba, 0xba, 0xbb, 0xba, 0xbb, 0xbd, 0xbd, 0xbb, 0xb7, 0xb7, 0xb9, 0xb9, 0xb9, 0xb9, 0xba, 0xbb, 0xba, 0xb7, 0xb6, 0xb9, 0xba, 0xbe, 0xc0, 0xc1, 0xd1, 0xd1, 0xc0, 0xc0, 0xbf, 0xc0, 0xc0, 0xc0, 0xc0, 0xbf, 0xbf, 0xbe, 0xbf, 0xbe, 0xbf, 0xbe, 0xbf, 0xbe, 0xbf, 0xbe, 0xbf, 0xbf, 0xbd, 0xbd, 0xbb, 0xbd, 0xba, 0xbe, 0xba, 0xfb, 0xf8, 0xfb, 0xfb, 0xfb, 0xfb, 0xdb, 0xfb, 0xfb, 0xfb, 0xdb, 0xfb, 0xdb, 0xfb, 0xdb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xcd, 0xcd, 0xcd, 0xb0, 0xb0, 0xb4, 0xbb, 0xbe, 0xbd, 0xbd, 0xbd, 0xbb, 0xbd, 0xbd, 0xbd, 0xbe, 0xbd, 0xbe, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xdd, 0xdd, 0xdd, 0xfd, 0xfb, 0xdc, 0xdc, 0xfb, 0xdc, 0xdc, 0xcd, 0xdc, 0xdc, 0xdc, 0xdc, 0xdc, 0xdc, 0xdc, 0xdc, 0xdc, 0xdc, 0xdc, 0xcd, 0xce, 0xcd, 0xb8, 0xbd, 0xa5, 0xd9, 0xda, 0xcc, 0xcc, 0xcc, 0x9e, 0x9e, 0xa0, 0xa5, 0xa0, 0xa8, 0xa3, 0xaa, 0xa7, 0xab, 0xad, 0xad, 0xad, 0xad, 0xad, 0xad, 0xad, 0xa9, 0xa1, 0xa6, 0xa9, 0xa9, 0xab, 0xab, 0xab, 0xab, 0xab, 0xab, 0xab, 0xab, 0xad, 0xab, 0xab, 0xad, 0xab, 0xad, 0xb5, 0x9b, 0x8d, 0xa2, 0x52, 0xa2, 0xa2, 0xa4, 0xa6, 0xa6, 0xa6, 0xa6, 0xa9, 0xa9, 0xab, 0xad, 0xad, 0xad, 0xaf, 0xb1, 0xb3, 0xb3, 0xb5, 0xb5, 0xb6, 0xbd, 0xbd, 0xb7, 0xb3, 0xae, 0xad, 0xab, 0xa6, 0xa2, 0xa1, 0x99, 0x9a, 0x9a, 0x96, 0x96, 0x9a, 0x9a, 0x9a, 0x99, 0x9d, 0x52, 0x52, 0x52, 0x52, 0x52, 0x9b, 0x52, 0x9b, 0x52, 0x9b, 0x52, 0x9b, 0x52, 0x9b, 0x52, 0x52, 0x52, 0xa1, 0x52, 0x52, 0xa2, 0xb1, 0xaf, 0xad, 0xb3, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xbb, 0xb9, 0xba, 0xbb, 0xbb, 0xbb, 0xbd, 0xbf, 0xbf, 0xc0, 0xc0, 0xc0, 0xbf, 0xbf, 0xbf, 0xbf, 0xbe, 0xbe, 0xbf, 0xbe, 0xbf, 0xbe, 0xbe, 0xbe, 0xbf, 0xbe, 0xbf, 0xbe, 0xc0, 0xbd, 0xb6, 0xb5, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb5, 0xb7, 0xb1, 0xaf, 0xaf, 0xb1, 0xaf, 0xb1, 0xaf, 0xb1, 0xae, 0xcd, 0xcd, 0xcd, 0xfb, 0xcd, 0xfb, 0xcd, 0xfb, 0xcd, 0xfb, 0xb4, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb4, 0xfd, 0xfd, 0xdc, 0xfd, 0xfd, 0xfd, 0xdc, 0xfc, 0xfd, 0xfd, 0xfc, 0xdd, 0x3c, 0x38, 0x39, 0x3b, 0x39, 0x3b, 0x3b, 0x3b, 0x39, 0x3e, 0x3e, 0x3c, 0x3e, 0x41, 0x3c, 0x3c, 0x3c, 0x3c, 0x40, 0x39, 0x3b, 0x39, 0x3b, 0x39, 0x3b, 0x39, 0x39, 0x39, 0x39, 0x39, 0x39, 0x3b, 0x39, 0x39, 0x3d, 0x39, 0x39, 0x35, 0x39, 0x37, 0xa0, 0xa0, 0x9e, 0x9e, 0x9e, 0x9c, 0x9e, 0xf8, 0xfa, 0xfb, 0xac, 0xb2, 0xb3, 0xb1, 0xb1, 0xb1, 0xaf, 0xaf, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb6, 0xb5, 0xb7, 0xb5, 0xb6, 0xb6, 0xb7, 0xb4, 0xb4, 0xdc, 0xdc, 0xdc, 0xdc, 0xdc, 0xfd, 0xfd, 0xce, 0xfe, 0xff, 0xff, 0x49, 0xff, 0xd1, 0x42, 0x2f, 0x36, 0x34, 0x40, 0x45, 0x45, 0x44, 0x45, 0x44, 0x45, 0x45, 0x45, 0x45, 0x47, 0x47, 0x47, 0x3f, 0x3f, 0x3f, 0x3f, 0x3f, 0x3f, 0x3f, 0x40, 0x41, 0x41, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x41,
0xbb, 0xbb, 0xba, 0xbb, 0xbd, 0xab, 0xa6, 0xab, 0xab, 0xad, 0xab, 0xaf, 0xab, 0xad, 0xad, 0xad, 0xa9, 0xb5, 0xb9, 0xb7, 0xb7, 0xb9, 0xb9, 0xba, 0xbb, 0xbb, 0xba, 0xbb, 0xbd, 0xbb, 0xb7, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xba, 0xba, 0xba, 0xb5, 0xb7, 0xb7, 0xba, 0xbb, 0xbf, 0xc1, 0xd1, 0xd1, 0xd1, 0xc0, 0xbf, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xbe, 0xbf, 0xbe, 0xbf, 0xbe, 0xbf, 0xbe, 0xbf, 0xbf, 0xbf, 0xbe, 0xbe, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbb, 0xbe, 0xbd, 0xdb, 0xfa, 0xdb, 0xfb, 0xdb, 0xfb, 0xfb, 0xdb, 0xfb, 0xfb, 0xfb, 0xfb, 0xdb, 0xfb, 0xfb, 0xdb, 0xfb, 0xdb, 0xcd, 0xfb, 0xcd, 0xcd, 0xb0, 0xb0, 0xb0, 0xb4, 0xba, 0xbe, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbe, 0xbe, 0xbd, 0xbd, 0xbe, 0xbc, 0xce, 0xdd, 0xdd, 0xdc, 0xdc, 0xfb, 0xfd, 0xdc, 0xfb, 0xdc, 0xdc, 0xdc, 0xdc, 0xdc, 0xdc, 0xdc, 0xcd, 0xdc, 0xdc, 0xdc, 0xce, 0xdc, 0xce, 0xdc, 0xce, 0xbd, 0xbd, 0xdb, 0xd9, 0xcc, 0xcc, 0x9e, 0x9e, 0x9e, 0x9e, 0xa0, 0xa8, 0xa3, 0xa8, 0xaa, 0xa7, 0xab, 0xab, 0xab, 0xad, 0xad, 0xad, 0xad, 0xad, 0xa1, 0x9a, 0xa1, 0xa6, 0xa4, 0xa6, 0xa6, 0xa9, 0xa9, 0xab, 0xa9, 0xa9, 0xab, 0xab, 0xab, 0xab, 0xab, 0xab, 0xad, 0xab, 0xaf, 0xb5, 0xb3, 0xb3, 0xb5, 0xb5, 0xb5, 0xb5, 0xb6, 0xb7, 0xb6, 0xb6, 0xb7, 0xb6, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb9, 0xb9, 0xb9, 0xbb, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbe, 0xbe, 0xbb, 0xb9, 0xb7, 0xb5, 0xaf, 0xaf, 0xa9, 0xa2, 0x52, 0x9a, 0x99, 0x51, 0x95, 0x95, 0x95, 0x97, 0x97, 0x99, 0x9b, 0x99, 0x9b, 0x52, 0x9b, 0x52, 0x9b, 0x52, 0x52, 0x9b, 0x52, 0x52, 0xa2, 0x52, 0x9d, 0xa7, 0xb1, 0xad, 0xb3, 0xbb, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xba, 0xba, 0xba, 0xbd, 0xbb, 0xba, 0xbe, 0xd0, 0xbf, 0xc0, 0xc0, 0xbf, 0xbe, 0xbf, 0xbf, 0xbe, 0xbf, 0xbe, 0xbf, 0xbe, 0xbf, 0xbe, 0xbe, 0xbf, 0xbf, 0xbe, 0xbf, 0xbe, 0xc0, 0xbb, 0xb5, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb7, 0xb6, 0xb1, 0xaf, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xae, 0xcd, 0xfb, 0xcd, 0xcd, 0xfb, 0xcd, 0xfb, 0xcd, 0xfb, 0xfb, 0xfb, 0xb4, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb8, 0xfc, 0xdc, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfc, 0xdc, 0xfd, 0xfd, 0x3c, 0x38, 0x39, 0x3b, 0x39, 0x3b, 0x38, 0x39, 0x3e, 0x3e, 0x3e, 0x3c, 0x3c, 0x3c, 0x3c, 0x3c, 0x3c, 0x3c, 0x3c, 0x39, 0x3b, 0x39, 0x39, 0x39, 0x39, 0x39, 0x39, 0x39, 0x39, 0x39, 0x3b, 0x39, 0x3d, 0x39, 0x39, 0x39, 0x39, 0x39, 0x37, 0xf8, 0x9e, 0x9e, 0x9e, 0x9e, 0xcc, 0x9e, 0x9c, 0xf8, 0xfa, 0xfa, 0xcd, 0xa8, 0xb3, 0xb1, 0xaf, 0xb1, 0xaf, 0xb3, 0xb6, 0xb5, 0xb5, 0xb5, 0xb5, 0xb6, 0xb5, 0xb7, 0xb5, 0xb7, 0xb6, 0xb8, 0xce, 0xce, 0xdc, 0xdc, 0xdc, 0xdc, 0xfd, 0xfd, 0xfd, 0xd0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x36, 0x36, 0x34, 0x3f, 0x45, 0x45, 0x44, 0x45, 0x44, 0x45, 0x44, 0x45, 0x45, 0x47, 0x47, 0x48, 0x41, 0x3b, 0x3f, 0x3f, 0x3f, 0x40, 0x3f, 0x40, 0x3f, 0x41, 0x40, 0x41, 0x40, 0x40, 0x40, 0x3f, 0x3f,
0xbb, 0xb9, 0xb9, 0xbd, 0xb1, 0xa6, 0xab, 0xab, 0xab, 0xab, 0xad, 0xad, 0xab, 0xad, 0xab, 0xad, 0xab, 0xaf, 0xb7, 0xb9, 0xb7, 0xb9, 0xb9, 0xba, 0xbb, 0xba, 0xba, 0xba, 0xbb, 0xbe, 0xb9, 0xb7, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xbb, 0xb9, 0xb5, 0xb6, 0xb7, 0xba, 0xbb, 0xbe, 0xc1, 0xc1, 0xd1, 0xd1, 0xc1, 0xc0, 0xc0, 0xbf, 0xc0, 0xc0, 0xc0, 0xc0, 0xbe, 0xbf, 0xbe, 0xbf, 0xbf, 0xbf, 0xbe, 0xbf, 0xbe, 0xbf, 0xbe, 0xbb, 0xbd, 0xbb, 0xbd, 0xbb, 0xbd, 0xbd, 0xbe, 0xb8, 0xfb, 0xf8, 0xfb, 0xfb, 0xdb, 0xfb, 0xdb, 0xfb, 0xdb, 0xfb, 0xdb, 0xfb, 0xdb, 0xfb, 0xfb, 0xfb, 0xcd, 0xfb, 0xcd, 0xcd, 0xcd, 0xcd, 0xce, 0xb0, 0xb0, 0xb4, 0xb9, 0xbe, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xb8, 0xdd, 0xce, 0xdd, 0xbc, 0xdc, 0xdc, 0xfb, 0xdc, 0xdc, 0xdc, 0xcd, 0xdc, 0xdc, 0xdc, 0xdc, 0xdc, 0xdc, 0xdc, 0xdc, 0xce, 0xdc, 0xce, 0xdc, 0xce, 0xce, 0xb8, 0xba, 0xbc, 0xcc, 0xcb, 0xcc, 0xcc, 0x9e, 0x9e, 0xa5, 0xa0, 0xa0, 0xa8, 0xa3, 0xa7, 0xaa, 0xab, 0xab, 0xad, 0xab, 0xad, 0xab, 0xad, 0xab, 0x9d, 0x96, 0x9d, 0xa4, 0xa6, 0xa4, 0xa6, 0xa6, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xab, 0xa9, 0xab, 0xab, 0xab, 0xab, 0xaf, 0xbb, 0xb9, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb5, 0xb6, 0xb5, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb7, 0xb7, 0xb7, 0xb9, 0xb9, 0xb7, 0xbe, 0xbf, 0xbd, 0xbd, 0xbd, 0xbe, 0xbd, 0xbe, 0xbe, 0xbf, 0xbf, 0xc0, 0xcf, 0xbf, 0xbd, 0xb7, 0xb6, 0xb3, 0xb1, 0xab, 0xa7, 0xa7, 0xa2, 0x9f, 0x52, 0x99, 0x97, 0x95, 0x92, 0x95, 0x97, 0x99, 0x97, 0x99, 0x52, 0x52, 0x52, 0x52, 0xa1, 0x52, 0x99, 0xab, 0xb1, 0xb3, 0xba, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xba, 0xb9, 0xba, 0xbb, 0xbb, 0xbb, 0xbb, 0xba, 0xbe, 0xbf, 0xc0, 0xc0, 0xbf, 0xbe, 0xbe, 0xbe, 0xbf, 0xbf, 0xbf, 0xbe, 0xbf, 0xbe, 0xbf, 0xbf, 0xbf, 0xbe, 0xbf, 0xbf, 0xbf, 0xbf, 0xc0, 0xb9, 0xb5, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb7, 0xb5, 0xae, 0xaf, 0xae, 0xb1, 0xae, 0xaf, 0xae, 0xcd, 0xfb, 0xcd, 0xfb, 0xcd, 0xfb, 0xcd, 0xfb, 0xcd, 0xfb, 0xfb, 0xcd, 0xb7, 0xb7, 0xb7, 0xb7, 0xb6, 0xb6, 0xb6, 0xce, 0xfc, 0xfd, 0xfd, 0xdc, 0xfc, 0xdc, 0xfc, 0xfd, 0xfc, 0xdc, 0xfc, 0xfc, 0xfd, 0x43, 0x39, 0x3a, 0x39, 0x3b, 0x3b, 0x3b, 0x3d, 0x3e, 0x3c, 0x3e, 0x3c, 0x3e, 0x3c, 0x3c, 0x3c, 0x3c, 0x3c, 0x3c, 0x3c, 0x39, 0x3b, 0x39, 0x39, 0x39, 0x39, 0x39, 0x35, 0x39, 0x3b, 0x39, 0x3b, 0x39, 0x3d, 0x39, 0x3b, 0x35, 0x39, 0x36, 0xf7, 0x9e, 0x9e, 0xcc, 0xcc, 0x9e, 0xcc, 0xcc, 0x98, 0xda, 0xf9, 0xf9, 0xfb, 0xac, 0xae, 0xb1, 0xaf, 0xb1, 0xb1, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb6, 0xb5, 0xb6, 0xb6, 0xb7, 0xb6, 0xb4, 0xb0, 0xdc, 0xdc, 0xfd, 0xdc, 0xfd, 0xdc, 0xdd, 0xff, 0xff, 0x49, 0xff, 0xff, 0xff, 0xd1, 0x42, 0x2f, 0x36, 0x36, 0x44, 0x45, 0x45, 0x44, 0x45, 0x45, 0x45, 0x45, 0x45, 0x47, 0x47, 0x48, 0x44, 0x3d, 0x3f, 0x3f, 0x3f, 0x3f, 0x3f, 0x40, 0x3f, 0x3f, 0x41, 0x40, 0x40, 0x3f, 0x40, 0x40, 0x40,
0xba, 0xba, 0xbd, 0xb6, 0xa6, 0xa9, 0xa9, 0xa9, 0xab, 0xab, 0xab, 0xab, 0xad, 0xab, 0xad, 0xad, 0xad, 0xab, 0xaf, 0xb9, 0xb7, 0xb9, 0xb9, 0xb9, 0xba, 0xb9, 0xb9, 0xba, 0xbb, 0xbd, 0xbb, 0xb7, 0xb7, 0xb9, 0xb9, 0xb9, 0xb9, 0xbb, 0xb6, 0xb5, 0xb6, 0xb6, 0xba, 0xb9, 0xbe, 0xc0, 0xc1, 0xd1, 0xc1, 0xd1, 0xc1, 0xbf, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xbe, 0xbf, 0xbf, 0xbe, 0xbf, 0xbf, 0xbe, 0xbf, 0xbf, 0xbe, 0xbb, 0xbd, 0xbd, 0xbd, 0xbd, 0xbb, 0xbd, 0xbb, 0xbe, 0xb8, 0xf8, 0xfb, 0xdb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xdb, 0xfb, 0xfb, 0xcd, 0xfb, 0xcd, 0xcd, 0xcd, 0xb0, 0xb0, 0xb4, 0xb0, 0xb2, 0xb9, 0xbe, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbb, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbb, 0xbd, 0xbd, 0xbc, 0xdc, 0xdd, 0xce, 0xdd, 0xdd, 0xce, 0xdc, 0xdc, 0xfb, 0xdc, 0xdc, 0xdc, 0xdc, 0xdc, 0xdc, 0xdc, 0xdc, 0xdc, 0xdc, 0xdc, 0xdc, 0xce, 0xce, 0xdc, 0xb4, 0xb8, 0xb8, 0xbb, 0xb8, 0xcc, 0xcb, 0x9e, 0x9e, 0x9e, 0x9e, 0xa0, 0xa8, 0xa0, 0xaa, 0xa3, 0xaa, 0xa9, 0xad, 0xab, 0xab, 0xad, 0xab, 0xad, 0xa6, 0x9a, 0x9a, 0x9a, 0x9d, 0xa6, 0xa4, 0xa6, 0xa6, 0xa6, 0xa6, 0xa9, 0xa6, 0xa9, 0xa9, 0xa9, 0xab, 0xa9, 0xa9, 0xab, 0xa9, 0xad, 0xba, 0xbb, 0xb7, 0xb5, 0xb5, 0xb6, 0xb6, 0xb6, 0xb5, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb7, 0xb6, 0xb9, 0xb7, 0xb9, 0xb9, 0xb9, 0xb9, 0xbd, 0xbf, 0xbf, 0xbd, 0xbd, 0xbb, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbb, 0xbd, 0xbe, 0xbe, 0xbf, 0xbf, 0xc0, 0xbe, 0xbe, 0xbe, 0xbf, 0xbe, 0xbc, 0xb9, 0xb8, 0xb5, 0xb2, 0xaa, 0xa7, 0xa2, 0x9f, 0x52, 0x9b, 0x99, 0x97, 0x95, 0x95, 0x95, 0x99, 0x95, 0xa6, 0xb5, 0xbb, 0xb9, 0xb7, 0xba, 0xb9, 0xba, 0xb9, 0xba, 0xb9, 0xbb, 0xba, 0xbb, 0xbb, 0xbd, 0xbb, 0xbb, 0xbd, 0xbf, 0xc0, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbe, 0xbf, 0xbe, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbe, 0xbf, 0xbf, 0xbf, 0xb6, 0xb5, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb5, 0xb6, 0xb6, 0xb6, 0xb6, 0xb5, 0xb7, 0xb6, 0xb6, 0xae, 0xb1, 0xae, 0xb1, 0xb1, 0xae, 0xfb, 0xcd, 0xfb, 0xcd, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xcd, 0xb7, 0xb6, 0xb7, 0xb7, 0xb7, 0xb7, 0xce, 0xfc, 0xfd, 0xfd, 0xfc, 0xfd, 0xfc, 0xdc, 0xfc, 0xfd, 0xfc, 0xfc, 0xfc, 0xfc, 0xce, 0x42, 0x36, 0x3b, 0x39, 0x3b, 0x38, 0x39, 0x3e, 0x3e, 0x3c, 0x3e, 0x3c, 0x3c, 0x3c, 0x3c, 0x3c, 0x3c, 0x3c, 0x3c, 0x3c, 0x39, 0x39, 0x39, 0x39, 0x39, 0x39, 0x39, 0x39, 0x39, 0x3b, 0x39, 0x39, 0x3b, 0x39, 0x39, 0x39, 0x36, 0x36, 0xf5, 0x9e, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xda, 0xcc, 0xcc, 0xf9, 0xf9, 0xf8, 0xfb, 0xa8, 0xae, 0xb1, 0xb1, 0xb3, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb6, 0xb6, 0xb6, 0xb7, 0xb6, 0xb4, 0xce, 0xdc, 0xdc, 0xdc, 0xfd, 0xdc, 0xfd, 0xcf, 0xff, 0xff, 0xff, 0xff, 0xff, 0x49, 0xd1, 0xfe, 0x36, 0x36, 0x34, 0x41, 0x45, 0x44, 0x45, 0x44, 0x45, 0x44, 0x45, 0x47, 0x47, 0x47, 0x47, 0x47, 0x3f, 0x3d, 0x3f, 0x3f, 0x3f, 0x3f, 0x3f, 0x40, 0x3f, 0x40, 0x40, 0x40, 0x40, 0x40, 0x3f, 0x40,
0xb9, 0xbb, 0xbd, 0xa7, 0xa6, 0xa6, 0xab, 0xa9, 0xab, 0xa9, 0xa9, 0xab, 0xab, 0xab, 0xad, 0xad, 0xad, 0xa9, 0xab, 0xb5, 0xb9, 0xb7, 0xb9, 0xb7, 0xb9, 0xba, 0xb9, 0xba, 0xbb, 0xbb, 0xbd, 0xb9, 0xb7, 0xb7, 0xb9, 0xb9, 0xb9, 0xba, 0xb6, 0xb5, 0xb5, 0xb7, 0xb7, 0xba, 0xbd, 0xc0, 0xc1, 0xc1, 0xd1, 0xd1, 0xd1, 0xc0, 0xc0, 0xc0, 0xbf, 0xc0, 0xc0, 0xc0, 0xbe, 0xbf, 0xbf, 0xbf, 0xbf, 0xbe, 0xbf, 0xbe, 0xbf, 0xbe, 0xbb, 0xbd, 0xbd, 0xbb, 0xbd, 0xbb, 0xbd, 0xbd, 0xbd, 0xbe, 0xb8, 0xf8, 0xfb, 0xdb, 0xfb, 0xdb, 0xfb, 0xdb, 0xfb, 0xdb, 0xfb, 0xdb, 0xfb, 0xfb, 0xfb, 0xcd, 0xfb, 0xcd, 0xfb, 0xcd, 0xcd, 0xcd, 0xcd, 0xb0, 0xb0, 0xb4, 0xb2, 0xb8, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbb, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbb, 0xbc, 0xdd, 0xce, 0xdd, 0xce, 0xdd, 0xdd, 0xdc, 0xdc, 0xdc, 0xdc, 0xdc, 0xdc, 0xdc, 0xdc, 0xcd, 0xdc, 0xdc, 0xce, 0xdc, 0xdc, 0xce, 0xdc, 0xb0, 0xce, 0xce, 0xb8, 0xb8, 0xb8, 0xbd, 0xb4, 0xcb, 0xcc, 0x9e, 0x9e, 0xa5, 0x9e, 0xa0, 0xa8, 0xa3, 0xaa, 0xa7, 0xa9, 0xab, 0xab, 0xab, 0xad, 0xab, 0xaf, 0xa4, 0x96, 0x9a, 0x9a, 0x9a, 0xa4, 0xa6, 0xa4, 0xa4, 0xa4, 0xa9, 0xa6, 0xa9, 0xa6, 0xa9, 0xa6, 0xa9, 0xa9, 0xa9, 0xab, 0xab, 0xad, 0xb9, 0xbd, 0xba, 0xb6, 0xb5, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb7, 0xb7, 0xb7, 0xb9, 0xb7, 0xb9, 0xb7, 0xba, 0xb9, 0xb7, 0xbd, 0xbe, 0xc0, 0xbe, 0xbd, 0xbd, 0xbd, 0xbb, 0xbd, 0xbb, 0xbd, 0xbb, 0xbd, 0xbd, 0xbb, 0xbd, 0xbb, 0xbd, 0xbd, 0xbb, 0xbd, 0xbe, 0xbf, 0xc0, 0xc0, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xd0, 0xbf, 0xbc, 0xbd, 0xb8, 0xb7, 0xb5, 0xae, 0xaf, 0xaa, 0xa7, 0xa2, 0xb5, 0xbd, 0xb7, 0xb9, 0xb7, 0xb7, 0xb9, 0xb7, 0xb9, 0xb9, 0xb9, 0xba, 0xbb, 0xba, 0xbb, 0xbb, 0xbb, 0xbb, 0xbd, 0xc0, 0xc0, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbe, 0xbf, 0xc0, 0xbd, 0xb6, 0xb5, 0xb6, 0xb5, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb5, 0xb6, 0xb6, 0xb6, 0xb5, 0xaa, 0xaf, 0xae, 0xae, 0xae, 0xfb, 0xfb, 0xcd, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfa, 0xb0, 0xb7, 0xb7, 0xb7, 0xb7, 0xb6, 0xfd, 0xdc, 0xfc, 0xdc, 0xfc, 0xdc, 0xfc, 0xfd, 0xfc, 0xdc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xdc, 0x40, 0x36, 0x3a, 0x39, 0x3a, 0x39, 0x3e, 0x3e, 0x3e, 0x3c, 0x3e, 0x3c, 0x3c, 0x3c, 0x3c, 0x3c, 0x3c, 0x3c, 0x3c, 0x3c, 0x39, 0x39, 0x39, 0x39, 0x39, 0x35, 0x39, 0x39, 0x39, 0x3b, 0x39, 0x39, 0x39, 0x3d, 0x39, 0x36, 0x36, 0x35, 0xcc, 0xcc, 0xda, 0xcc, 0xda, 0xcc, 0xda, 0xcc, 0xcb, 0xcc, 0xcb, 0xf6, 0x3e, 0xf7, 0xfa, 0xa5, 0xac, 0xaf, 0xb3, 0xb6, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb6, 0xb6, 0xb6, 0xb6, 0xb7, 0xb4, 0xdc, 0xdc, 0xdc, 0xdc, 0xdd, 0xdc, 0xff, 0xff, 0xff, 0xff, 0x49, 0xff, 0xff, 0xff, 0xd1, 0x3c, 0x2f, 0x34, 0x3f, 0x47, 0x44, 0x45, 0x44, 0x45, 0x44, 0x45, 0x47, 0x47, 0x47, 0x47, 0x48, 0x44, 0x3d, 0x3f, 0x3f, 0x3f, 0x3f, 0x3f, 0x3f, 0x3f, 0x3f, 0x40, 0x40, 0x40, 0x3f, 0x40, 0x3f,
0xb9, 0xbd, 0xb1, 0xa2, 0xa6, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xab, 0xab, 0xab, 0xad, 0xab, 0xab, 0xab, 0xad, 0xb7, 0xb7, 0xb7, 0xb9, 0xb9, 0xb9, 0xb9, 0xba, 0xba, 0xbb, 0xbd, 0xbb, 0xb6, 0xb7, 0xb9, 0xb9, 0xba, 0xb7, 0xb5, 0xb5, 0xb6, 0xb6, 0xb7, 0xb9, 0xbd, 0xbf, 0xc0, 0xc1, 0xc1, 0xd1, 0xd1, 0xd1, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc1, 0xc0, 0xbe, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbb, 0xbd, 0xbe, 0xce, 0xf8, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xdb, 0xfb, 0xcd, 0xcd, 0xcd, 0xcd, 0xcd, 0xcd, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb4, 0xb4, 0xbd, 0xbb, 0xbb, 0xbd, 0xbd, 0xbd, 0xbd, 0xbb, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xb8, 0xdd, 0xce, 0xdd, 0xce, 0xdd, 0xce, 0xbc, 0xce, 0xdc, 0xcd, 0xdc, 0xdc, 0xcd, 0xdc, 0xdc, 0xdc, 0xdc, 0xdc, 0xdc, 0xce, 0xdc, 0xce, 0xce, 0xdc, 0xce, 0xb8, 0xb8, 0xb8, 0xb8, 0xbe, 0xb0, 0x94, 0xcc, 0x9e, 0x9e, 0xa0, 0xa0, 0xa0, 0xa3, 0xa3, 0xa7, 0xab, 0xab, 0xab, 0xab, 0xab, 0xab, 0xad, 0xa1, 0x91, 0x96, 0x9a, 0x9a, 0x9a, 0xa6, 0xa6, 0xa4, 0xa4, 0xa6, 0xa6, 0xa6, 0xa6, 0xa6, 0xa6, 0xa9, 0xa9, 0xa9, 0xab, 0xa6, 0xad, 0xba, 0xba, 0xbb, 0xba, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb7, 0xb6, 0xb7, 0xb7, 0xb9, 0xb7, 0xb9, 0xb9, 0xba, 0xb7, 0xb9, 0xba, 0xbd, 0xbf, 0xbf, 0xbe, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbb, 0xbb, 0xbd, 0xbb, 0xbd, 0xbd, 0xbd, 0xbb, 0xbd, 0xbd, 0xbd, 0xbd, 0xbe, 0xbf, 0xbe, 0xbf, 0xbf, 0xc0, 0xbf, 0xc0, 0xc0, 0xc0, 0xc1, 0xc1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xc1, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xbe, 0xbe, 0xbe, 0xbd, 0xbd, 0xbd, 0xba, 0xba, 0xba, 0xba, 0xba, 0xbb, 0xba, 0xbb, 0xbb, 0xb9, 0xbe, 0xc0, 0xbe, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbe, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbe, 0xbe, 0xc0, 0xbd, 0xb5, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb7, 0xb3, 0xae, 0xae, 0xb1, 0xac, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfa, 0xb4, 0xb9, 0xb7, 0xb7, 0xb7, 0xdc, 0xfc, 0xfd, 0xfc, 0xfd, 0xfc, 0xfd, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfd, 0x3d, 0x36, 0x3b, 0x38, 0x39, 0x3e, 0x3e, 0x3c, 0x3e, 0x3c, 0x3c, 0x3c, 0x3c, 0x3c, 0x3c, 0x3c, 0x3c, 0x3c, 0x3c, 0x3c, 0x39, 0x35, 0x39, 0x39, 0x39, 0x35, 0x3b, 0x39, 0x3b, 0x39, 0x3b, 0x39, 0x3b, 0x39, 0x39, 0x34, 0x32, 0xf7, 0x94, 0xcc, 0xda, 0xcb, 0xda, 0xcb, 0xda, 0xda, 0xcb, 0xda, 0xcb, 0xf6, 0x37, 0xf9, 0xf9, 0xf8, 0xfb, 0xa8, 0xb0, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb6, 0xb6, 0xb6, 0xb6, 0xb7, 0xb4, 0xdc, 0xce, 0xfd, 0xdc, 0xdc, 0xdd, 0xff, 0xff, 0x49, 0xd0, 0xff, 0xff, 0x49, 0xff, 0xd1, 0x46, 0x34, 0x34, 0x3b, 0x45, 0x44, 0x45, 0x44, 0x45, 0x44, 0x47, 0x47, 0x45, 0x47, 0x47, 0x47, 0x45, 0x3f, 0x3d, 0x3f, 0x3f, 0x3f, 0x40, 0x3f, 0x3f, 0x3f, 0x3f, 0x40, 0x40, 0x40, 0x40, 0x40,
0xbd, 0xb6, 0xa4, 0xa4, 0xa6, 0xa6, 0xa9, 0xa9, 0xa9, 0xa9, 0xab, 0xa9, 0xab, 0xab, 0xab, 0xab, 0xab, 0xab, 0xab, 0xab, 0xb1, 0xba, 0xb7, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xbb, 0xba, 0xbb, 0xbd, 0xb7, 0xb7, 0xb7, 0xb9, 0xba, 0xb7, 0xb3, 0xb5, 0xb6, 0xb6, 0xb7, 0xb9, 0xbd, 0xbe, 0xc0, 0xc0, 0xd1, 0xc1, 0xd1, 0xd1, 0xc1, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc1, 0xbf, 0xbe, 0xbf, 0xbf, 0xbe, 0xbf, 0xbe, 0xbf, 0xbd, 0xbb, 0xbd, 0xbb, 0xbd, 0xbb, 0xbd, 0xbb, 0xbd, 0xbd, 0xbd, 0xbd, 0xbe, 0xb0, 0xfa, 0xdb, 0xfb, 0xdb, 0xfb, 0xdb, 0xfb, 0xdb, 0xfb, 0xfb, 0xfb, 0xfb, 0xcd, 0xfb, 0xcd, 0xfb, 0xcd, 0xcd, 0xcd, 0xcd, 0xcd, 0xb0, 0xb0, 0xce, 0xb0, 0xb4, 0xb4, 0xbb, 0xbe, 0xbb, 0xbb, 0xbb, 0xbb, 0xbd, 0xbb, 0xbd, 0xbb, 0xbd, 0xbb, 0xbc, 0xce, 0xdd, 0xce, 0xdd, 0xdd, 0xce, 0xdd, 0xdd, 0xce, 0xdc, 0xdc, 0xdc, 0xdc, 0xdc, 0xdc, 0xdc, 0xdc, 0xdc, 0xce, 0xdc, 0xce, 0xce, 0xdc, 0xce, 0xce, 0xb8, 0xb8, 0xb8, 0xb8, 0xb8, 0xbd, 0xac, 0xcb, 0x9e, 0xa0, 0x9e, 0xa0, 0xa8, 0xa3, 0xaa, 0xa7, 0xa9, 0xa9, 0xab, 0xab, 0xab, 0xad, 0xab, 0x9a, 0x91, 0x96, 0x9a, 0x9a, 0x9a, 0x9d, 0xa6, 0xa6, 0xa4, 0xa4, 0xa6, 0xa6, 0xa6, 0xa6, 0xa4, 0xa6, 0xa6, 0xa9, 0xa9, 0xa9, 0xad, 0xbb, 0xbb, 0xbb, 0xba, 0xbb, 0xb6, 0xb6, 0xb6, 0xb6, 0xb5, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb9, 0xb7, 0xb9, 0xb9, 0xb9, 0xba, 0xb7, 0xb9, 0xbb, 0xbd, 0xbe, 0xbf, 0xbf, 0xbe, 0xbe, 0xbd, 0xbd, 0xbb, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbb, 0xbd, 0xbb, 0xbb, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbe, 0xc0, 0xbf, 0xc0, 0xbf, 0xbf, 0xbf, 0xc0, 0xbf, 0xc0, 0xbf, 0xc0, 0xbf, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xd1, 0xc1, 0xc1, 0xc1, 0xc0, 0xc0, 0xc0, 0xbf, 0xbf, 0xbf, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbf, 0xbf, 0xbe, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbe, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xba, 0xb5, 0xb5, 0xb6, 0xb6, 0xb5, 0xb6, 0xb5, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb5, 0xb6, 0xb6, 0xb6, 0xb7, 0xae, 0xaa, 0xb1, 0xac, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfa, 0xfb, 0xfa, 0xfb, 0xfa, 0xfb, 0xb4, 0xb7, 0xb7, 0xb4, 0xfd, 0xfc, 0xfd, 0xfc, 0xdc, 0xfc, 0xdc, 0xfc, 0xfc, 0xfd, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfd, 0x43, 0x3a, 0x36, 0x3b, 0x3b, 0x3e, 0x3e, 0x3c, 0x3e, 0x3c, 0x3e, 0x3c, 0x3c, 0x3c, 0x3c, 0x3c, 0x3c, 0x3c, 0x3c, 0x3c, 0x3c, 0x39, 0x39, 0x35, 0x39, 0x39, 0x39, 0x3b, 0x39, 0x3b, 0x39, 0x3b, 0x39, 0x3b, 0x39, 0x36, 0x33, 0xf5, 0xcc, 0xda, 0xcb, 0xda, 0xcb, 0xda, 0xcb, 0xf4, 0xcb, 0xf4, 0xf4, 0xf4, 0xf4, 0x37, 0x37, 0xf9, 0xf9, 0xf8, 0xfb, 0xfb, 0xb4, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb6, 0xb6, 0xb5, 0xb6, 0xb4, 0xce, 0xdc, 0xdc, 0xfd, 0xdc, 0xfe, 0xff, 0xff, 0xff, 0xff, 0x49, 0xff, 0xff, 0xff, 0xff, 0xd1, 0x3c, 0x2f, 0x38, 0x44, 0x45, 0x44, 0x45, 0x44, 0x45, 0x45, 0x47, 0x47, 0x47, 0x47, 0x47, 0x48, 0x41, 0x3d, 0x3f, 0x3f, 0x3f, 0x3f, 0x3f, 0x3f, 0x3f, 0x3f, 0x40, 0x40, 0x3f, 0x40, 0x40,
0xbd, 0xa7, 0xa1, 0xa6, 0xa6, 0xa6, 0xa6, 0xa9, 0xa9, 0xa9, 0xa9, 0xab, 0xa9, 0xab, 0xa9, 0xab, 0xab, 0xab, 0xab, 0xab, 0xab, 0xb6, 0xba, 0xb7, 0xb9, 0xb7, 0xb9, 0xb9, 0xba, 0xba, 0xba, 0xbd, 0xba, 0xb7, 0xb9, 0xb9, 0xba, 0xb5, 0xb3, 0xb5, 0xb5, 0xb6, 0xb6, 0xba, 0xbb, 0xbe, 0xbf, 0xc0, 0xc1, 0xd1, 0xd1, 0xd1, 0xd1, 0xc1, 0xc1, 0xc0, 0xc0, 0xc0, 0xc1, 0xc0, 0xbe, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbe, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbb, 0xbd, 0xbb, 0xbd, 0xbd, 0xbb, 0xbd, 0xbd, 0xbe, 0xcd, 0xf8, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xcd, 0xfb, 0xcd, 0xfb, 0xcd, 0xcd, 0xcd, 0xcd, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xce, 0xb0, 0xb4, 0xbb, 0xbd, 0xbb, 0xbb, 0xbd, 0xbb, 0xbd, 0xbb, 0xbd, 0xbb, 0xbd, 0xb8, 0xdd, 0xce, 0xdd, 0xce, 0xdd, 0xce, 0xdd, 0xce, 0xbc, 0xce, 0xdc, 0xdc, 0xdc, 0xdc, 0xdc, 0xdc, 0xdc, 0xce, 0xdc, 0xb0, 0xdc, 0xce, 0xce, 0xdc, 0xce, 0xb8, 0xb8, 0xb8, 0xb8, 0xb8, 0xbb, 0xbe, 0xa5, 0xcc, 0x9e, 0xa0, 0xa0, 0xa0, 0xa3, 0xa3, 0xa7, 0xa9, 0xab, 0xab, 0xab, 0xab, 0xab, 0xa9, 0x96, 0x91, 0x96, 0x9a, 0x96, 0x9a, 0x9a, 0xa1, 0xa9, 0xa6, 0xa4, 0xa6, 0xa6, 0xa6, 0xa6, 0xa6, 0xa6, 0xa9, 0xa9, 0xa9, 0xa6, 0xad, 0xbd, 0xba, 0xba, 0xba, 0xbb, 0xbb, 0xb7, 0xb5, 0xb6, 0xb6, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb9, 0xb9, 0xb9, 0xb9, 0xba, 0xb9, 0xb9, 0xb7, 0xbb, 0xbd, 0xbe, 0xbf, 0xc0, 0xbe, 0xbd, 0xbe, 0xbd, 0xbd, 0xbb, 0xbd, 0xbd, 0xbb, 0xbd, 0xbb, 0xbd, 0xbb, 0xbd, 0xbb, 0xbd, 0xbd, 0xbd, 0xbb, 0xbd, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xc0, 0xc0, 0xbf, 0xbf, 0xc0, 0xbf, 0xc0, 0xbf, 0xc0, 0xc0, 0xc0, 0xc1, 0xc0, 0xc1, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc1, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xbf, 0xbf, 0xbf, 0xc0, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbe, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xb9, 0xb5, 0xb5, 0xb5, 0xb5, 0xb3, 0xb5, 0xb5, 0xb5, 0xb5, 0xb6, 0xb5, 0xb6, 0xb5, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xae, 0xae, 0xac, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfa, 0xfb, 0xfa, 0xfb, 0xfa, 0xfb, 0xfa, 0xfb, 0xb7, 0xb7, 0xb8, 0xfc, 0xfd, 0xfc, 0xfd, 0xfc, 0xfd, 0xfc, 0xfd, 0xfc, 0xdc, 0xfc, 0xdc, 0xfc, 0xfc, 0x43, 0xfc, 0xfc, 0xfd, 0x42, 0x34, 0x3a, 0x39, 0x3e, 0x3e, 0x3e, 0x3c, 0x3e, 0x3c, 0x3c, 0x3c, 0x3c, 0x3c, 0x3c, 0x3c, 0x3c, 0x3c, 0x3c, 0x3c, 0x3c, 0x39, 0x39, 0x35, 0x39, 0x39, 0x39, 0x3b, 0x39, 0x3b, 0x39, 0x3b, 0x39, 0x3b, 0x36, 0x2f, 0x35, 0x94, 0xda, 0xcb, 0xcb, 0xf4, 0xda, 0xf4, 0xda, 0xf4, 0xf4, 0xf4, 0xf4, 0xf4, 0xf3, 0x37, 0x35, 0x37, 0xf9, 0xf9, 0xfa, 0xfa, 0xb0, 0xb5, 0xb5, 0xb5, 0xb3, 0xb6, 0xb6, 0xb6, 0xb6, 0xb7, 0xce, 0xdc, 0xdc, 0xfd, 0xce, 0x49, 0xff, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xd1, 0x47, 0x34, 0x34, 0x3f, 0x45, 0x45, 0x44, 0x44, 0x45, 0x47, 0x47, 0x45, 0x47, 0x45, 0x47, 0x48, 0x44, 0x3d, 0x3f, 0x3f, 0x3f, 0x3f, 0x40, 0x3f, 0x3f, 0x3f, 0x3f, 0x40, 0x40, 0x40, 0x40,
0xaf, 0xa1, 0xa4, 0xa6, 0xa6, 0xa9, 0xa6, 0xa6, 0xa9, 0xa6, 0xab, 0xa9, 0xab, 0xa9, 0xab, 0xab, 0xa9, 0xab, 0xab, 0xab, 0xab, 0xaf, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xba, 0xba, 0xbb, 0xbd, 0xbd, 0xb7, 0xb7, 0xb9, 0xb7, 0xb5, 0xb1, 0xb5, 0xb5, 0xb6, 0xb6, 0xb9, 0xbb, 0xbd, 0xc0, 0xc0, 0xc1, 0xc1, 0xd1, 0xd1, 0xd1, 0xd1, 0xc1, 0xc0, 0xc1, 0xc0, 0xc0, 0xc1, 0xc0, 0xbe, 0xbf, 0xbf, 0xbf, 0xbe, 0xbf, 0xbb, 0xbd, 0xbd, 0xbb, 0xbb, 0xbd, 0xbd, 0xbd, 0xbb, 0xbd, 0xbd, 0xbb, 0xbd, 0xbe, 0xbd, 0xfb, 0xfb, 0xdb, 0xfb, 0xdb, 0xfb, 0xfb, 0xfb, 0xdb, 0xfb, 0xfb, 0xcd, 0xfb, 0xcd, 0xfb, 0xcd, 0xcd, 0xcd, 0xcd, 0xb0, 0xcd, 0xb0, 0xce, 0xb0, 0xb0, 0xb4, 0xb0, 0xb4, 0xbb, 0xbd, 0xbb, 0xba, 0xbb, 0xbb, 0xbd, 0xbb, 0xbd, 0xbb, 0xbc, 0xce, 0xdd, 0xce, 0xdd, 0xce, 0xdd, 0xce, 0xdd, 0xce, 0xdd, 0xdd, 0xdc, 0xcd, 0xdc, 0xdc, 0xdc, 0xdc, 0xb0, 0xdc, 0xce, 0xdc, 0xce, 0xce, 0xce, 0xce, 0xb8, 0xb8, 0xb8, 0xb8, 0xb8, 0xb8, 0xba, 0xbd, 0x9e, 0xcc, 0xa0, 0xa0, 0xa8, 0xa0, 0xaa, 0xa7, 0xa9, 0xa9, 0xab, 0xab, 0xab, 0xad, 0xa1, 0x91, 0x91, 0x96, 0x96, 0x9a, 0x9a, 0x9a, 0x9a, 0xa4, 0xa9, 0xa6, 0xa4, 0xa6, 0xa6, 0xa4, 0xa6, 0xa6, 0xa6, 0xa6, 0xa9, 0xa6, 0xad, 0xbd, 0xba, 0xbb, 0xba, 0xba, 0xba, 0xbb, 0xb6, 0xb7, 0xb6, 0xb7, 0xb6, 0xb7, 0xb7, 0xb9, 0xb7, 0xb9, 0xb7, 0xb9, 0xb9, 0xba, 0xba, 0xb7, 0xb9, 0xbb, 0xbb, 0xbe, 0xbe, 0xc0, 0xbf, 0xbe, 0xbe, 0xbe, 0xbb, 0xbd, 0xbb, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbb, 0xbb, 0xbb, 0xbd, 0xbd, 0xbd, 0xbd, 0xbb, 0xbe, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xc0, 0xc0, 0xc0, 0xbf, 0xc0, 0xbf, 0xc0, 0xbf, 0xc0, 0xc0, 0xc0, 0xc1, 0xc0, 0xc1, 0xc0, 0xc1, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xc0, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbe, 0xbf, 0xbe, 0xbf, 0xbf, 0xbe, 0xbf, 0xbf, 0xbf, 0xc0, 0xbf, 0xd0, 0xbf, 0xbf, 0xbe, 0xbd, 0xbd, 0xba, 0xb9, 0xb7, 0xb6, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb6, 0xb6, 0xb5, 0xae, 0xac, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfa, 0xfb, 0xfa, 0xfb, 0xfa, 0xfb, 0xfa, 0xfa, 0xfa, 0xfa, 0xfb, 0xb7, 0xb8, 0xfc, 0xfc, 0xdc, 0xfc, 0xdc, 0xfc, 0xdc, 0xfc, 0xfc, 0xfc, 0x43, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfd, 0x40, 0x33, 0x39, 0x3c, 0x3e, 0x3c, 0x3e, 0x3c, 0x3c, 0x3e, 0x3c, 0x3c, 0x3c, 0x3c, 0x3c, 0x3c, 0x3c, 0x3c, 0x3c, 0x3c, 0x3c, 0x35, 0x39, 0x35, 0x39, 0x3b, 0x39, 0x3b, 0x39, 0x3b, 0x36, 0x3b, 0x36, 0x3b, 0x33, 0x32, 0xf4, 0xda, 0xf4, 0xda, 0xf4, 0xf4, 0xf4, 0xf4, 0xf4, 0xf4, 0xf3, 0xf4, 0xf3, 0xf4, 0xf3, 0x31, 0x35, 0x35, 0x37, 0x37, 0x3e, 0xfa, 0xfb, 0xb0, 0xb6, 0xb3, 0xb5, 0xb5, 0xb6, 0xb6, 0xb7, 0xb4, 0xdc, 0xfd, 0xdc, 0xdd, 0xff, 0xff, 0x49, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x39, 0x2f, 0x3d, 0x45, 0x45, 0x44, 0x45, 0x45, 0x47, 0x45, 0x47, 0x47, 0x47, 0x47, 0x47, 0x47, 0x3f, 0x3d, 0x3f, 0x3f, 0x40, 0x3f, 0x3f, 0x3f, 0x3f, 0x3f, 0x40, 0x40, 0x40, 0x40,
0xa1, 0xa1, 0xa4, 0xa4, 0xa6, 0xa6, 0xa6, 0xa6, 0xa9, 0xa6, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xab, 0xab, 0xa9, 0xab, 0xab, 0xab, 0xb3, 0xba, 0xb9, 0xb7, 0xb7, 0xba, 0xb9, 0xba, 0xbb, 0xbb, 0xbe, 0xb9, 0xb6, 0xba, 0xb7, 0xb1, 0xb3, 0xb3, 0xb5, 0xb5, 0xb6, 0xb9, 0xbb, 0xbd, 0xbf, 0xd0, 0xc1, 0xc1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xc1, 0xc0, 0xc1, 0xc0, 0xc1, 0xc1, 0xbf, 0xbe, 0xbf, 0xbf, 0xbf, 0xbe, 0xbd, 0xbd, 0xbb, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbb, 0xbd, 0xbb, 0xbd, 0xbb, 0xbd, 0xbd, 0xdb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xcd, 0xfb, 0xcd, 0xfb, 0xcd, 0xfb, 0xcd, 0xcd, 0xcd, 0xcd, 0xb0, 0xcd, 0xb0, 0xb0, 0xb0, 0xb0, 0xce, 0xb0, 0xb4, 0xba, 0xbb, 0xbb, 0xba, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xba, 0xce, 0xce, 0xce, 0xce, 0xdd, 0xce, 0xdd, 0xce, 0xdd, 0xce, 0xb8, 0xdd, 0xdc, 0xdc, 0xdc, 0xce, 0xdc, 0xdc, 0xce, 0xdc, 0xce, 0xce, 0xdc, 0xce, 0xce, 0xb8, 0xb8, 0xb8, 0xb8, 0xb8, 0xb9, 0xb8, 0xbd, 0xbb, 0x9e, 0xcc, 0xa0, 0xa0, 0xa8, 0xa3, 0xa7, 0xa7, 0xa9, 0xab, 0xa9, 0xab, 0xad, 0x9d, 0x50, 0x91, 0x91, 0x96, 0x96, 0x96, 0x9a, 0x9a, 0x9d, 0xa6, 0xa9, 0xa6, 0xa6, 0xa4, 0xa6, 0xa6, 0xa6, 0xa6, 0xa6, 0xa9, 0xa4, 0xad, 0xbd, 0xbb, 0xbb, 0xba, 0xba, 0xba, 0xbb, 0xb8, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb9, 0xb7, 0xb9, 0xb9, 0xb9, 0xb9, 0xba, 0xba, 0xb9, 0xb7, 0xb9, 0xba, 0xbb, 0xbd, 0xbe, 0xbe, 0xc0, 0xbf, 0xbe, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbb, 0xbd, 0xbd, 0xbb, 0xbd, 0xbd, 0xbb, 0xbd, 0xbb, 0xbd, 0xbd, 0xbd, 0xbd, 0xc0, 0xbf, 0xc0, 0xbf, 0xc0, 0xbf, 0xc0, 0xc0, 0xbf, 0xc0, 0xc0, 0xc0, 0xc0, 0xbf, 0xbf, 0xc0, 0xc0, 0xc1, 0xc0, 0xc1, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xbf, 0xc0, 0xbf, 0xbf, 0xbf, 0xbe, 0xbf, 0xc0, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbe, 0xbe, 0xbe, 0xbf, 0xbf, 0xbe, 0xbf, 0xbe, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbe, 0xbf, 0xc1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xc1, 0xd0, 0xd0, 0xbf, 0xbe, 0xbe, 0xbb, 0xba, 0xb9, 0xb9, 0xb6, 0xb6, 0xb5, 0xb5, 0xb5, 0xb1, 0xa5, 0xf8, 0xfa, 0xf8, 0xfa, 0xf8, 0xfa, 0xf8, 0xfa, 0xf8, 0xfa, 0xf8, 0xfa, 0xf8, 0xfa, 0xf9, 0xfa, 0xf9, 0xcd, 0xce, 0xfc, 0xdc, 0xfc, 0xdc, 0x43, 0xfd, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0x43, 0xfd, 0xfc, 0x3b, 0x36, 0x3e, 0x3e, 0x3e, 0x3c, 0x3e, 0x3c, 0x3c, 0x3c, 0x3e, 0x3c, 0x3e, 0x3c, 0x3c, 0x3c, 0x3c, 0x3c, 0x37, 0x3c, 0x3c, 0x35, 0x39, 0x39, 0x3b, 0x39, 0x3b, 0x36, 0x3b, 0x39, 0x36, 0x3a, 0x36, 0x38, 0x2f, 0xf5, 0x94, 0xf4, 0xf4, 0xf4, 0xf4, 0xf4, 0xf4, 0xf4, 0xf3, 0xf4, 0xf5, 0xf3, 0xf3, 0xf3, 0xf3, 0x31, 0x32, 0x35, 0x35, 0x3e, 0x3c, 0xf9, 0xfa, 0xcd, 0xb4, 0xb5, 0xb5, 0xb5, 0xb6, 0xb7, 0xb7, 0xdc, 0xdc, 0xce, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0xd1, 0x43, 0x34, 0x38, 0x44, 0x45, 0x44, 0x45, 0x45, 0x47, 0x45, 0x47, 0x45, 0x47, 0x47, 0x47, 0x48, 0x44, 0x3b, 0x3f, 0x3f, 0x3f, 0x3f, 0x3f, 0x3f, 0x3f, 0x3f, 0x3f, 0x40, 0x40, 0x40,
0x9d, 0xa4, 0xa4, 0xa4, 0xa4, 0xa6, 0xa6, 0xa6, 0xa6, 0xa9, 0xa6, 0xa9, 0xa6, 0xa9, 0xa6, 0xa9, 0xa9, 0xab, 0xab, 0xab, 0xab, 0xab, 0xab, 0xb7, 0xba, 0xb9, 0xb9, 0xb9, 0xba, 0xbb, 0xbb, 0xbb, 0xbe, 0xbd, 0xb6, 0xba, 0xb5, 0xb1, 0xb3, 0xb3, 0xb5, 0xb6, 0xb6, 0xb9, 0xbb, 0xbb, 0xbf, 0xbf, 0xc0, 0xc1, 0xd1, 0xc1, 0xd1, 0xd1, 0xd1, 0xc1, 0xc1, 0xc0, 0xc1, 0xc0, 0xc1, 0xc1, 0xbe, 0xbf, 0xbf, 0xbf, 0xbe, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbb, 0xbe, 0xbb, 0xbe, 0xcf, 0xdb, 0xfb, 0xdb, 0xfb, 0xfb, 0xdb, 0xfb, 0xfb, 0xcd, 0xfb, 0xcd, 0xcd, 0xcd, 0xcd, 0xcd, 0xcd, 0xcd, 0xcd, 0xcd, 0xdc, 0xb0, 0xdc, 0xb0, 0xce, 0xb0, 0xb0, 0xce, 0xb0, 0xba, 0xbb, 0xba, 0xbb, 0xbd, 0xbb, 0xba, 0xbd, 0xb8, 0xdd, 0xdd, 0xce, 0xdd, 0xce, 0xdd, 0xce, 0xdd, 0xce, 0xdd, 0xce, 0xb8, 0xce, 0xce, 0xdc, 0xdc, 0xdc, 0xce, 0xdc, 0xce, 0xce, 0xce, 0xce, 0xce, 0xce, 0xb8, 0xb8, 0xb8, 0xb8, 0xb9, 0xb8, 0xb9, 0xb8, 0xbe, 0xb4, 0x9e, 0x9e, 0xa0, 0xa0, 0xa3, 0xa7, 0xa7, 0xab, 0xa9, 0xa9, 0xab, 0xab, 0x96, 0x50, 0x91, 0x91, 0x91, 0x96, 0x96, 0x9a, 0x9a, 0x9a, 0xa1, 0xa9, 0xa9, 0xa6, 0xa6, 0xa6, 0xa6, 0xa6, 0xa6, 0xa6, 0xa9, 0xa6, 0xaf, 0xbd, 0xba, 0xba, 0xba, 0xba, 0xba, 0xba, 0xba, 0xba, 0xb6, 0xb7, 0xb7, 0xb9, 0xb7, 0xb9, 0xb7, 0xb7, 0xba, 0xba, 0xba, 0xba, 0xb9, 0xb9, 0xb7, 0xba, 0xbb, 0xbd, 0xbe, 0xbf, 0xbe, 0xc0, 0xbf, 0xbd, 0xbe, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbb, 0xbd, 0xbb, 0xbb, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbe, 0xc0, 0xbf, 0xbf, 0xbf, 0xc0, 0xc0, 0xbf, 0xc0, 0xbf, 0xc0, 0xc0, 0xbf, 0xc0, 0xc0, 0xc0, 0xc0, 0xc1, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xbf, 0xc0, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbd, 0xbe, 0xbe, 0xbe, 0xbf, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbf, 0xbe, 0xbe, 0xd0, 0xc1, 0xd0, 0xc1, 0xc1, 0xc1, 0xc1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xc1, 0xd0, 0xbf, 0xbf, 0xbe, 0xbe, 0xce, 0xdc, 0xdc, 0xdc, 0xdc, 0xfd, 0xce, 0xfd, 0xdd, 0xfd, 0xdd, 0xfd, 0xdd, 0xfd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xfd, 0xfd, 0xfd, 0xfc, 0xfd, 0xdc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0x43, 0xfc, 0x43, 0xfc, 0x43, 0xfc, 0x43, 0xfc, 0xfc, 0x43, 0x36, 0x3c, 0xf9, 0x3c, 0x3e, 0x3c, 0x3c, 0x3c, 0x3c, 0x3c, 0x3c, 0x3c, 0x37, 0x3c, 0x37, 0x3c, 0x35, 0x3c, 0x35, 0x37, 0x37, 0x35, 0x36, 0x36, 0x36, 0x36, 0x3b, 0x36, 0x3a, 0x36, 0x36, 0x3a, 0x34, 0x33, 0x2d, 0xcb, 0xf4, 0xf4, 0xf4, 0xf4, 0xf3, 0xf4, 0xf3, 0xf4, 0xf3, 0xf4, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf2, 0x32, 0x32, 0x35, 0x37, 0x3c, 0x3e, 0x3e, 0xfa, 0xb0, 0xb5, 0xb5, 0xb5, 0xb7, 0xb6, 0xce, 0xdc, 0xce, 0xff, 0xff, 0xff, 0x49, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd1, 0x35, 0x33, 0x40, 0x45, 0x44, 0x45, 0x45, 0x45, 0x47, 0x45, 0x47, 0x47, 0x47, 0x47, 0x47, 0x45, 0x3f, 0x3d, 0x3f, 0x3f, 0x3f, 0x3f, 0x3f, 0x3f, 0x3f, 0x3f, 0x3f, 0x40, 0x40,
0xa1, 0xa1, 0xa1, 0xa6, 0xa4, 0xa4, 0xa4, 0xa6, 0xa6, 0xa6, 0xa6, 0xa9, 0xa6, 0xa9, 0xa6, 0xa9, 0xa9, 0xa9, 0xa9, 0xab, 0xab, 0xab, 0xab, 0xb1, 0xba, 0xb9, 0xb7, 0xb9, 0xbb, 0xbb, 0xbb, 0xbd, 0xbd, 0xbe, 0xb9, 0xb9, 0xb3, 0xb1, 0xb3, 0xb3, 0xb5, 0xb5, 0xb6, 0xb6, 0xb9, 0xbd, 0xbe, 0xbf, 0xc0, 0xc0, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xc1, 0xc1, 0xc0, 0xc1, 0xc0, 0xc1, 0xc0, 0xbe, 0xbf, 0xbf, 0xbe, 0xbb, 0xbd, 0xbd, 0xbd, 0xbb, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbb, 0xbd, 0xbd, 0xbb, 0xbd, 0xbb, 0xbe, 0xb8, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xcd, 0xfb, 0xcd, 0xfb, 0xcd, 0xcd, 0xcd, 0xcd, 0xcd, 0xb0, 0xcd, 0xb0, 0xcd, 0xb0, 0xcd, 0xb0, 0xcd, 0xb0, 0xce, 0xb0, 0xb9, 0xba, 0xbb, 0xb8, 0xba, 0xba, 0xba, 0xbb, 0xce, 0xce, 0xdd, 0xce, 0xdd, 0xce, 0xdd, 0xce, 0xce, 0xce, 0xce, 0xdd, 0xb8, 0xdd, 0xce, 0xdc, 0xdc, 0xce, 0xdc, 0xce, 0xce, 0xce, 0xce, 0xce, 0xce, 0xb8, 0xb8, 0xb8, 0xb8, 0xb8, 0xb8, 0xb8, 0xb8, 0xb9, 0xbe, 0xb4, 0x9e, 0xa0, 0xa0, 0xa3, 0xa7, 0xa7, 0xa9, 0xa9, 0xa9, 0xab, 0xa9, 0x50, 0x50, 0x50, 0x91, 0x91, 0x96, 0x91, 0x9a, 0x9a, 0x9a, 0x9d, 0xa1, 0xa9, 0xa6, 0xa6, 0xa6, 0xa6, 0xa6, 0xa6, 0xa6, 0xa6, 0xa6, 0xb1, 0xbe, 0xba, 0xba, 0xb9, 0xba, 0xba, 0xba, 0xba, 0xbb, 0xba, 0xb7, 0xb7, 0xb7, 0xb9, 0xb7, 0xb9, 0xb9, 0xba, 0xba, 0xba, 0xba, 0xb7, 0xb9, 0xb9, 0xb9, 0xbb, 0xbd, 0xbd, 0xbe, 0xbf, 0xbf, 0xbf, 0xbf, 0xbe, 0xbd, 0xbe, 0xbd, 0xbb, 0xbb, 0xbd, 0xbb, 0xbb, 0xbb, 0xbd, 0xbb, 0xbd, 0xbb, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbe, 0xc0, 0xbf, 0xc0, 0xbf, 0xc0, 0xc0, 0xc0, 0xbf, 0xbf, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc1, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbd, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbf, 0xbe, 0xc1, 0xc0, 0xc1, 0xc1, 0xc1, 0xc1, 0xd0, 0xd1, 0xc1, 0xd1, 0xc1, 0xd1, 0xc1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xcf, 0xfe, 0xcf, 0xfe, 0xfe, 0xfe, 0xdd, 0xfe, 0xfd, 0xfe, 0xfd, 0xfe, 0xfd, 0xfd, 0xfd, 0xfd, 0xfc, 0xfc, 0xfc, 0xfc, 0xfd, 0x41, 0x37, 0x3e, 0x3c, 0x3e, 0x3c, 0x3e, 0x3e, 0x3c, 0x3e, 0x3c, 0x3e, 0x41, 0x3e, 0x3e, 0x3e, 0x3e, 0x3e, 0x3e, 0x42, 0x3e, 0x43, 0x3c, 0x3d, 0x39, 0x3d, 0x39, 0x3b, 0x36, 0x36, 0x38, 0x34, 0x33, 0x33, 0x2b, 0xd9, 0xd9, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf1, 0xf3, 0xf2, 0xf2, 0xf2, 0xf2, 0xf2, 0xf2, 0xf1, 0xf2, 0x24, 0x2f, 0x39, 0x35, 0x3c, 0x37, 0x3e, 0x3e, 0xfb, 0xb4, 0xb5, 0xb5, 0xb7, 0xb4, 0xdc, 0xdd, 0xff, 0xff, 0xff, 0xff, 0xff, 0x49, 0xff, 0x49, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd1, 0x42, 0x2f, 0x3f, 0x45, 0x44, 0x45, 0x45, 0x47, 0x45, 0x47, 0x45, 0x47, 0x47, 0x47, 0x47, 0x47, 0x40, 0x3d, 0x3f, 0x40, 0x3f, 0x3f, 0x3f, 0x3f, 0x3f, 0x3f, 0x3f, 0x40, 0x40,
0xa1, 0xa1, 0xa4, 0xa1, 0xa1, 0xa4, 0xa4, 0xa1, 0xa6, 0xa4, 0xa6, 0xa6, 0xa6, 0xa6, 0xa6, 0xa6, 0xa9, 0xa9, 0xa9, 0xab, 0xab, 0xab, 0xad, 0xab, 0xb5, 0xba, 0xba, 0xbb, 0xba, 0xbd, 0xbb, 0xbd, 0xbd, 0xbf, 0xbb, 0xb6, 0xb1, 0xb1, 0xb3, 0xb3, 0xb5, 0xb5, 0xb5, 0xb6, 0xb9, 0xba, 0xbe, 0xbf, 0xc0, 0xc1, 0xc1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc0, 0xc1, 0xc1, 0xbf, 0xbf, 0xbf, 0xbe, 0xbb, 0xbd, 0xbb, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbb, 0xbd, 0xbd, 0xbd, 0xbb, 0xbf, 0xb4, 0xfa, 0xdb, 0xfb, 0xfb, 0xfb, 0xcd, 0xfb, 0xcd, 0xfb, 0xcd, 0xcd, 0xcd, 0xcd, 0xcd, 0xcd, 0xcd, 0xcd, 0xdc, 0xcd, 0xb0, 0xcd, 0xb0, 0xdc, 0xb0, 0xce, 0xb0, 0xce, 0xb0, 0xb8, 0xbb, 0xba, 0xba, 0xba, 0xba, 0xba, 0xdd, 0xce, 0xce, 0xce, 0xce, 0xce, 0xce, 0xce, 0xce, 0xce, 0xdd, 0xce, 0xdd, 0xce, 0xb8, 0xce, 0xb0, 0xdc, 0xce, 0xdc, 0xce, 0xce, 0xce, 0xce, 0xce, 0xb8, 0xb8, 0xb8, 0xb8, 0xb8, 0xb9, 0xb8, 0xb9, 0xb8, 0xba, 0xbe, 0xb2, 0xcc, 0xa0, 0xa3, 0xa3, 0xa9, 0xa9, 0xa9, 0xa9, 0xad, 0xa4, 0x89, 0x50, 0x91, 0x50, 0x91, 0x91, 0x91, 0x96, 0x96, 0x9a, 0x9a, 0x9d, 0xa4, 0xab, 0xa9, 0xa6, 0xa6, 0xa6, 0xa6, 0xa6, 0xa9, 0xa6, 0xb1, 0xbe, 0xbb, 0xbb, 0xbb, 0xba, 0xba, 0xba, 0xba, 0xbb, 0xbb, 0xb9, 0xb7, 0xb7, 0xb7, 0xb9, 0xb9, 0xba, 0xba, 0xba, 0xba, 0xb9, 0xb9, 0xb9, 0xb9, 0xba, 0xbb, 0xbb, 0xbd, 0xbe, 0xbe, 0xbf, 0xbf, 0xbf, 0xbe, 0xbe, 0xbd, 0xbd, 0xbd, 0xbd, 0xbb, 0xbb, 0xbb, 0xbd, 0xbd, 0xbb, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbf, 0xc0, 0xbf, 0xc0, 0xc0, 0xc0, 0xbf, 0xc0, 0xbf, 0xbf, 0xbf, 0xc0, 0xc0, 0xc0, 0xc1, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xbf, 0xc0, 0xc0, 0xc0, 0xbf, 0xc0, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbe, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbe, 0xbd, 0xbe, 0xbe, 0xbe, 0xbd, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbd, 0xc0, 0xc0, 0xc1, 0xd0, 0xc1, 0xd0, 0xc1, 0xd0, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xd1, 0xd1, 0xc1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xc1, 0xd1, 0xc1, 0xd1, 0xc1, 0xd1, 0xd1, 0xc1, 0xd1, 0xc1, 0xd1, 0xc1, 0xd1, 0xd1, 0xc1, 0xfe, 0xfe, 0xfe, 0xdd, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xcf, 0xfe, 0xcf, 0xcf, 0xcf, 0xd0, 0xd0, 0xd0, 0xd0, 0xd0, 0xd0, 0xd0, 0xc1, 0xc0, 0xc1, 0xc0, 0xc1, 0xc1, 0xc1, 0x48, 0x44, 0x45, 0x44, 0x44, 0x42, 0x44, 0x41, 0x40, 0x40, 0x40, 0x3b, 0x39, 0xf6, 0xda, 0xf7, 0xf7, 0xf7, 0xf7, 0xf4, 0xf6, 0xf6, 0xf4, 0xf6, 0xf4, 0xf6, 0xf3, 0xf5, 0xf3, 0xf5, 0xf3, 0xf3, 0x2d, 0x32, 0x36, 0x35, 0x35, 0x35, 0x37, 0x3c, 0xf9, 0xcd, 0xb5, 0xb6, 0xb9, 0xdc, 0xfe, 0xff, 0xff, 0xff, 0x49, 0xff, 0x49, 0xff, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xd1, 0x49, 0x36, 0x38, 0x44, 0x44, 0x45, 0x45, 0x45, 0x45, 0x47, 0x45, 0x47, 0x45, 0x47, 0x47, 0x48, 0x44, 0x3b, 0x3f, 0x3f, 0x3f, 0x3f, 0x3f, 0x3f, 0x3f, 0x3f, 0x3f, 0x3f, 0x40,
0xa4, 0xa4, 0xa4, 0xa6, 0xa6, 0xa6, 0xa6, 0xa6, 0xa6, 0xa6, 0xa9, 0xa6, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xab, 0xa9, 0xab, 0xab, 0xaf, 0xad, 0xaf, 0xba, 0xbb, 0xba, 0xbb, 0xbb, 0xbd, 0xbd, 0xbe, 0xbe, 0xbf, 0xb5, 0xaf, 0xb1, 0xb3, 0xb1, 0xb5, 0xb5, 0xb6, 0xb6, 0xb9, 0xba, 0xbd, 0xbe, 0xbf, 0xc0, 0xc1, 0xc1, 0xc1, 0xd1, 0xd1, 0xd1, 0xd1, 0xc1, 0xc1, 0xc0, 0xc1, 0xc0, 0xc1, 0xc0, 0xbe, 0xbf, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbb, 0xbd, 0xbb, 0xbd, 0xbb, 0xbd, 0xbd, 0xbb, 0xbd, 0xbf, 0xce, 0xfb, 0xdb, 0xfb, 0xcd, 0xfb, 0xcd, 0xfb, 0xcd, 0xfb, 0xcd, 0xfb, 0xcd, 0xcd, 0xcd, 0xcd, 0xcd, 0xb0, 0xcd, 0xdc, 0xcd, 0xdc, 0xb0, 0xdc, 0xb0, 0xdc, 0xb0, 0xce, 0xb0, 0xb8, 0xb7, 0xba, 0xb9, 0xb9, 0xba, 0xce, 0xce, 0xdd, 0xce, 0xce, 0xdd, 0xce, 0xce, 0xce, 0xce, 0xce, 0xce, 0xce, 0xdd, 0xce, 0xdd, 0xce, 0xce, 0xdc, 0xce, 0xce, 0xce, 0xce, 0xce, 0xce, 0xb8, 0xb8, 0xb9, 0xb8, 0xb8, 0xb8, 0xb9, 0xba, 0xb9, 0xb8, 0xba, 0xbd, 0xac, 0x9c, 0xa0, 0xa3, 0xa7, 0xa9, 0xa9, 0xa9, 0xad, 0x99, 0x4f, 0x50, 0x89, 0x91, 0x50, 0x91, 0x91, 0x96, 0x96, 0x9a, 0x9a, 0x9a, 0x9d, 0xa6, 0xab, 0xa6, 0xa6, 0xa6, 0xa6, 0xa6, 0xa9, 0xa4, 0xb3, 0xbe, 0xbb, 0xba, 0xba, 0xba, 0xba, 0xba, 0xba, 0xbb, 0xba, 0xbb, 0xba, 0xb7, 0xb7, 0xb9, 0xb9, 0xba, 0xba, 0xba, 0xb9, 0xb9, 0xb9, 0xb7, 0xb9, 0xba, 0xba, 0xbb, 0xbd, 0xbe, 0xbe, 0xbe, 0xbf, 0xbf, 0xbf, 0xbe, 0xbd, 0xbd, 0xbd, 0xbd, 0xbb, 0xbb, 0xbb, 0xbb, 0xbd, 0xbd, 0xbb, 0xbb, 0xbd, 0xbb, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbf, 0xc0, 0xbf, 0xc0, 0xc0, 0xc0, 0xbf, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xbf, 0xc0, 0xc0, 0xc0, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbe, 0xbe, 0xbd, 0xbd, 0xbd, 0xbb, 0xbd, 0xbb, 0xbd, 0xbd, 0xbd, 0xbb, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbe, 0xbd, 0xbe, 0xd0, 0xc0, 0xc1, 0xd0, 0xc1, 0xd0, 0xc1, 0xc1, 0xc1, 0xd0, 0xc1, 0xc1, 0xc1, 0xd1, 0xc1, 0xc1, 0xc1, 0xc1, 0xd1, 0xd1, 0xd1, 0xc1, 0xd1, 0xc1, 0xd1, 0xd1, 0xc1, 0xd1, 0xc1, 0xd1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xd1, 0xd0, 0xdd, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xdd, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xcf, 0xc1, 0xc0, 0xc1, 0xc1, 0xc1, 0xc0, 0xc1, 0xc0, 0xc0, 0xc0, 0xc0, 0xc1, 0xc0, 0xbf, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xd0, 0x48, 0x45, 0x44, 0x45, 0x45, 0x45, 0x45, 0x45, 0x45, 0x45, 0x45, 0x45, 0x47, 0xd1, 0xd1, 0xd1, 0xc1, 0xd1, 0xc1, 0xd1, 0xc1, 0xc1, 0xd1, 0xc1, 0xff, 0xd0, 0xd1, 0xd0, 0xd0, 0xc0, 0xd0, 0xc1, 0xc0, 0x44, 0x41, 0x41, 0x41, 0x3c, 0x3c, 0x3c, 0x3c, 0x3c, 0xf9, 0xcd, 0xb3, 0xb8, 0x49, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd1, 0x42, 0x33, 0x40, 0x45, 0x45, 0x45, 0x45, 0x47, 0x45, 0x47, 0x45, 0x47, 0x47, 0x47, 0x47, 0x47, 0x3f, 0x3f, 0x3f, 0x3f, 0x40, 0x3f, 0x3f, 0x3f, 0x3f, 0x40, 0x3d, 0x3f,
0xad, 0xad, 0xab, 0xad, 0xab, 0xad, 0xab, 0xad, 0xab, 0xab, 0xab, 0xab, 0xab, 0xab, 0xab, 0xab, 0xad, 0xad, 0xad, 0xad, 0xad, 0xaf, 0xaf, 0xb1, 0xb1, 0xb7, 0xbb, 0xba, 0xbb, 0xbb, 0xba, 0xbd, 0xbd, 0xbd, 0xbf, 0xb6, 0xab, 0xb1, 0xb1, 0xb1, 0xb1, 0xb3, 0xb5, 0xb6, 0xb5, 0xb7, 0xb7, 0xba, 0xbd, 0xbe, 0xbf, 0xc0, 0xd0, 0xc1, 0xc1, 0xd1, 0xd1, 0xd1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc0, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbe, 0xbd, 0xbb, 0xbe, 0xb0, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xcd, 0xcd, 0xcd, 0xcd, 0xcd, 0xcd, 0xcd, 0xcd, 0xcd, 0xcd, 0xcd, 0xdc, 0xcd, 0xcd, 0xcd, 0xdc, 0xcd, 0xdc, 0xb0, 0xcd, 0xb0, 0xce, 0xb0, 0xb4, 0xb9, 0xba, 0xb8, 0xba, 0xce, 0xce, 0xce, 0xce, 0xce, 0xce, 0xce, 0xce, 0xce, 0xce, 0xce, 0xb8, 0xce, 0xb8, 0xce, 0xce, 0xb8, 0xce, 0xce, 0xdc, 0xce, 0xce, 0xce, 0xce, 0xce, 0xb4, 0xb8, 0xb8, 0xb9, 0xb8, 0xba, 0xb8, 0xb9, 0xb8, 0xb9, 0xb9, 0xbb, 0xbe, 0xa8, 0x9c, 0xa3, 0xa7, 0xa9, 0xa9, 0xa9, 0xad, 0x51, 0x4f, 0x89, 0x50, 0x89, 0x91, 0x50, 0x91, 0x91, 0x96, 0x96, 0x9a, 0x9a, 0x9a, 0xa1, 0xa9, 0xab, 0xa6, 0xa6, 0xa6, 0xa9, 0xa9, 0xa4, 0xb3, 0xbe, 0xbb, 0xba, 0xba, 0xba, 0xba, 0xba, 0xbb, 0xbb, 0xba, 0xba, 0xbd, 0xbb, 0xb7, 0xb9, 0xb9, 0xb9, 0xba, 0xba, 0xba, 0xb7, 0xb9, 0xb9, 0xb9, 0xb9, 0xbb, 0xbb, 0xbd, 0xbd, 0xbe, 0xbe, 0xbf, 0xbf, 0xbf, 0xbf, 0xbe, 0xbd, 0xbd, 0xbb, 0xbb, 0xbb, 0xbb, 0xbd, 0xbb, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbe, 0xc0, 0xc0, 0xc0, 0xbf, 0xc0, 0xbf, 0xc0, 0xbf, 0xc0, 0xbf, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xbf, 0xc0, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbe, 0xbe, 0xbd, 0xbe, 0xbd, 0xbd, 0xba, 0xba, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbe, 0xc1, 0xd0, 0xc0, 0xc1, 0xd0, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xd1, 0xc1, 0xc1, 0xc1, 0xd1, 0xd1, 0xc1, 0xc1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xc1, 0xd1, 0xc1, 0xc1, 0xc1, 0xc1, 0xd1, 0xc1, 0xd1, 0xc1, 0xc1, 0xc1, 0xd1, 0xc1, 0xd1, 0xd1, 0xff, 0xdd, 0xfe, 0xdd, 0xfe, 0xdd, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xdd, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xcf, 0xd0, 0xc0, 0xd0, 0xd0, 0xbf, 0xd0, 0xd0, 0xd0, 0xd0, 0xd0, 0xd0, 0xd0, 0xd0, 0xd0, 0xd0, 0xd0, 0xd0, 0xc0, 0x49, 0x47, 0x45, 0x44, 0x45, 0x44, 0x44, 0x45, 0x44, 0x45, 0x44, 0x45, 0x44, 0x48, 0xc1, 0xc1, 0xc1, 0xd1, 0xc1, 0xff, 0xc1, 0xd1, 0xd1, 0xd1, 0xc1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0x48, 0x45, 0x45, 0x45, 0x45, 0x45, 0x45, 0x44, 0x44, 0x42, 0x42, 0xfb, 0xdd, 0xff, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0x49, 0xff, 0x49, 0x49, 0xd1, 0x49, 0x34, 0x3d, 0x47, 0x47, 0x45, 0x47, 0x45, 0x47, 0x47, 0x47, 0x47, 0x47, 0x47, 0x48, 0x49, 0x44, 0x3b, 0x3f, 0x3d, 0x3f, 0x3d, 0x3f, 0x3d, 0x3f, 0x3d, 0x3f, 0x3d,
0xa6, 0xab, 0xab, 0xad, 0xad, 0xad, 0xab, 0xad, 0xab, 0xad, 0xad, 0xad, 0xad, 0xad, 0xab, 0xad, 0xad, 0xad, 0xad, 0xad, 0xaf, 0xad, 0xaf, 0xb1, 0xb1, 0xb7, 0xba, 0xb7, 0xbb, 0xba, 0xba, 0xba, 0xbb, 0xbb, 0xbd, 0xb9, 0xb1, 0xad, 0xaf, 0xb3, 0xb1, 0xb3, 0xb3, 0xb5, 0xb5, 0xb6, 0xb7, 0xb9, 0xbb, 0xbd, 0xbe, 0xbf, 0xc0, 0xd0, 0xc1, 0xd1, 0xd1, 0xd1, 0xd1, 0xc1, 0xc0, 0xc1, 0xc0, 0xc1, 0xc1, 0xbe, 0xbb, 0xbb, 0xbd, 0xba, 0xbd, 0xbb, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbb, 0xbd, 0xbd, 0xbb, 0xbd, 0xbe, 0xcd, 0xdb, 0xfb, 0xcd, 0xfb, 0xcd, 0xfb, 0xcd, 0xfb, 0xcd, 0xfb, 0xcd, 0xcd, 0xcd, 0xcd, 0xcd, 0xcd, 0xcd, 0xcd, 0xdc, 0xcd, 0xcd, 0xdc, 0xcd, 0xdc, 0xb0, 0xdc, 0xb0, 0xdc, 0xb4, 0xba, 0xb9, 0xba, 0xce, 0xce, 0xce, 0xce, 0xce, 0xce, 0xce, 0xce, 0xce, 0xce, 0xce, 0xce, 0xce, 0xce, 0xce, 0xce, 0xce, 0xb8, 0xce, 0xce, 0xb0, 0xce, 0xce, 0xce, 0xce, 0xb8, 0xb8, 0xb7, 0xb8, 0xb8, 0xb8, 0xba, 0xb8, 0xba, 0xb9, 0xba, 0xba, 0xbb, 0xba, 0xa8, 0x9c, 0xa7, 0xa7, 0xa6, 0xab, 0xa6, 0x86, 0x83, 0x89, 0x89, 0x50, 0x50, 0x50, 0x91, 0x91, 0x91, 0x96, 0x96, 0x9a, 0x9d, 0x9a, 0xa1, 0xab, 0xa9, 0xa6, 0xa9, 0xa6, 0xa9, 0xa6, 0xb5, 0xbe, 0xba, 0xba, 0xbb, 0xba, 0xba, 0xba, 0xba, 0xbb, 0xbb, 0xbb, 0xba, 0xba, 0xba, 0xb9, 0xb9, 0xb9, 0xba, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xba, 0xba, 0xbb, 0xbd, 0xbd, 0xbe, 0xbe, 0xbe, 0xbf, 0xbf, 0xbf, 0xbf, 0xbe, 0xbd, 0xbd, 0xbb, 0xba, 0xbb, 0xbb, 0xbd, 0xbb, 0xbb, 0xbd, 0xbb, 0xbd, 0xbb, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbf, 0xbf, 0xc0, 0xc0, 0xbf, 0xc0, 0xbf, 0xc0, 0xbf, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xbf, 0xc0, 0xc0, 0xc0, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbe, 0xbe, 0xbe, 0xbe, 0xbd, 0xbd, 0xbd, 0xbb, 0xb9, 0xb9, 0xba, 0xba, 0xba, 0xba, 0xba, 0xba, 0xba, 0xbb, 0xbb, 0xba, 0xbb, 0xba, 0xbb, 0xbd, 0xbb, 0xbb, 0xbd, 0xbd, 0xbd, 0xbd, 0xcf, 0xd1, 0xd0, 0xc1, 0xc0, 0xd0, 0xd1, 0xc1, 0xc1, 0xd0, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xd1, 0xd1, 0xc1, 0xc1, 0xd1, 0xd1, 0xc1, 0xd1, 0xc1, 0xc1, 0xc1, 0xd1, 0xc1, 0xd1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xd1, 0xc1, 0xd1, 0xc1, 0xc1, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xd0, 0xc0, 0xd0, 0xd0, 0xd0, 0xd0, 0xd0, 0xd0, 0xd0, 0xd0, 0xd0, 0xd0, 0xd0, 0xd0, 0xd0, 0xd0, 0xc0, 0xd0, 0x48, 0x48, 0x47, 0x44, 0x44, 0x45, 0x44, 0x44, 0x45, 0x44, 0x45, 0x44, 0x45, 0xfe, 0xc0, 0xc1, 0xd0, 0xff, 0xd0, 0xc1, 0xd0, 0xd0, 0xd0, 0xc1, 0xd0, 0xd1, 0xd0, 0xc1, 0xd0, 0xc1, 0xc1, 0xc1, 0xff, 0xd1, 0x48, 0x44, 0x45, 0x45, 0x45, 0x45, 0x45, 0x45, 0x47, 0x45, 0x45, 0x45, 0x48, 0xff, 0xfe, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0xfe, 0x49, 0x49, 0x49, 0x49, 0xfe, 0xff, 0x3c, 0x38, 0x3f, 0x3f, 0x3f, 0x3f, 0x3f, 0x3f, 0x3f, 0x40, 0x3f, 0x40, 0x40, 0x3f, 0x40, 0x40, 0x41, 0x41, 0x41, 0x41, 0x40, 0x41, 0x40, 0x41, 0x40, 0x40, 0x40,
0xb1, 0xa6, 0xab, 0xad, 0xab, 0xab, 0xad, 0xab, 0xad, 0xab, 0xad, 0xab, 0xab, 0xab, 0xad, 0xab, 0xad, 0xad, 0xad, 0xaf, 0xad, 0xaf, 0xaf, 0xaf, 0xb3, 0xba, 0xbb, 0xb9, 0xba, 0xba, 0xbb, 0xba, 0xba, 0xbb, 0xba, 0xbd, 0xb7, 0xad, 0xaf, 0xb1, 0xb1, 0xb3, 0xb3, 0xb5, 0xb5, 0xb6, 0xb7, 0xb9, 0xba, 0xbd, 0xbe, 0xbf, 0xbf, 0xc0, 0xc0, 0xc1, 0xc1, 0xd1, 0xd1, 0xd1, 0xc1, 0xc1, 0xc1, 0xc0, 0xc1, 0xc1, 0xbe, 0xbf, 0xbe, 0xbe, 0xbe, 0xbe, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbb, 0xbb, 0xbb, 0xbb, 0xba, 0xbd, 0xba, 0xbd, 0xbd, 0xbd, 0xbe, 0xbb, 0xdc, 0xf8, 0xcd, 0xfb, 0xcd, 0xfb, 0xcd, 0xcd, 0xcd, 0xcd, 0xcd, 0xcd, 0xcd, 0xcd, 0xcd, 0xcd, 0xdc, 0xcd, 0xcd, 0xcd, 0xdc, 0xcd, 0xdc, 0xcd, 0xdc, 0xcd, 0xdc, 0xb0, 0xb0, 0xce, 0xb9, 0xb9, 0xb8, 0xdc, 0xce, 0xce, 0xce, 0xce, 0xce, 0xce, 0xce, 0xce, 0xce, 0xce, 0xce, 0xce, 0xb4, 0xce, 0xce, 0xce, 0xb8, 0xce, 0xce, 0xce, 0xce, 0xce, 0xce, 0xb4, 0xb8, 0xb8, 0xb8, 0xb8, 0xb7, 0xb8, 0xb9, 0xb8, 0xb9, 0xb9, 0xba, 0xba, 0xbd, 0xb9, 0xa0, 0x9f, 0xa7, 0xa9, 0xab, 0x52, 0x78, 0x83, 0x83, 0x8b, 0x89, 0x50, 0x50, 0x50, 0x50, 0x91, 0x91, 0x96, 0x96, 0x9a, 0x9d, 0x9d, 0xa4, 0xab, 0xa9, 0xa9, 0xa9, 0xa9, 0xa6, 0xb5, 0xbe, 0xbb, 0xbb, 0xbb, 0xbb, 0xba, 0xba, 0xba, 0xba, 0xbb, 0xbb, 0xba, 0xba, 0xbb, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xb7, 0xb9, 0xb9, 0xb9, 0xba, 0xbb, 0xbb, 0xbb, 0xbd, 0xbe, 0xbe, 0xbe, 0xbf, 0xbf, 0xbf, 0xbe, 0xbe, 0xbd, 0xbd, 0xbb, 0xbd, 0xbb, 0xbd, 0xbb, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbb, 0xbd, 0xbd, 0xbd, 0xbe, 0xbd, 0xbf, 0xc0, 0xc0, 0xbf, 0xc0, 0xc0, 0xc0, 0xbf, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xbf, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xbf, 0xbf, 0xbf, 0xbf, 0xbe, 0xbe, 0xbf, 0xbe, 0xbe, 0xbd, 0xbd, 0xbd, 0xbb, 0xbb, 0xbb, 0xba, 0xb7, 0xb7, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xba, 0xba, 0xba, 0xba, 0xba, 0xba, 0xbb, 0xba, 0xba, 0xbd, 0xbb, 0xbd, 0xc1, 0xd0, 0xd0, 0xc1, 0xd0, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xd0, 0xd1, 0xc1, 0xc1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xc1, 0xd1, 0xc1, 0xd1, 0xc1, 0xd1, 0xc1, 0xd1, 0xc1, 0xc1, 0xc1, 0xd1, 0xc1, 0xc1, 0xc1, 0xd1, 0xc1, 0xd1, 0xc1, 0xd1, 0xd1, 0xd1, 0xdd, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xdd, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xd0, 0xc0, 0xd0, 0xbf, 0xd0, 0xc0, 0xd0, 0xd0, 0xd0, 0xd0, 0xd0, 0xd0, 0xd0, 0xd0, 0xd0, 0xbf, 0x49, 0x47, 0x48, 0x47, 0x45, 0x44, 0x45, 0x44, 0x45, 0x44, 0x45, 0x44, 0x45, 0x45, 0xcf, 0xc0, 0xd0, 0xd0, 0xc1, 0xd0, 0xd0, 0xff, 0xc1, 0xd0, 0xc1, 0xd0, 0xc1, 0xd0, 0xc1, 0xc1, 0xd0, 0xc1, 0xc0, 0xff, 0xd1, 0x49, 0x45, 0x44, 0x45, 0x45, 0x45, 0x45, 0x45, 0x45, 0x47, 0x45, 0x47, 0x48, 0xfe, 0x49, 0x49, 0x49, 0x49, 0xfe, 0x49, 0x49, 0x49, 0x49, 0xfe, 0x49, 0xfe, 0x49, 0xfe, 0x49, 0xff, 0x42, 0x33, 0x38, 0x3a, 0x3a, 0x3a, 0x3a, 0x3a, 0x3a, 0x38, 0x3a, 0x38, 0x38, 0x38, 0x38, 0x38, 0x42, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44,
0xd1, 0xb4, 0xa6, 0xa9, 0xad, 0xab, 0xab, 0xad, 0xab, 0xab, 0xad, 0xab, 0xad, 0xad, 0xad, 0xad, 0xad, 0xad, 0xad, 0xad, 0xaf, 0xaf, 0xaf, 0xaf, 0xb3, 0xba, 0xba, 0xb9, 0xba, 0xb7, 0xbd, 0xbb, 0xbb, 0xbb, 0xbb, 0xb9, 0xbd, 0xb5, 0xad, 0xb1, 0xb1, 0xb3, 0xb3, 0xb5, 0xb5, 0xb6, 0xb6, 0xb7, 0xba, 0xbb, 0xbd, 0xbe, 0xbf, 0xbf, 0xc0, 0xc1, 0xc1, 0xd1, 0xd1, 0xd1, 0xd1, 0xc1, 0xc1, 0xc0, 0xc1, 0xc1, 0xd1, 0xc1, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbe, 0xbe, 0xbe, 0xbd, 0xbd, 0xbb, 0xbb, 0xbb, 0xbe, 0xbd, 0xcd, 0xfb, 0xcd, 0xdc, 0xcd, 0xdc, 0xdc, 0xcd, 0xdc, 0xcd, 0xdc, 0xb0, 0xdc, 0xb0, 0xdc, 0xce, 0xdc, 0xce, 0xce, 0xce, 0xce, 0xce, 0xce, 0xce, 0xce, 0xce, 0xce, 0xce, 0xce, 0xb4, 0xbd, 0xbb, 0xbc, 0xb9, 0xb8, 0xce, 0xce, 0xb4, 0xce, 0xb0, 0xce, 0xb0, 0xce, 0xce, 0xce, 0xce, 0xce, 0xb8, 0xce, 0xce, 0xb8, 0xce, 0xce, 0xb0, 0xce, 0xce, 0xb8, 0xb8, 0xb7, 0xb8, 0xb9, 0xb9, 0xb9, 0xb7, 0xba, 0xb9, 0xba, 0xb9, 0xb9, 0xb9, 0xbd, 0xb6, 0x9c, 0xa7, 0xa9, 0xad, 0x92, 0x78, 0x7e, 0x83, 0x83, 0x89, 0x89, 0x50, 0x50, 0x50, 0x91, 0x91, 0x96, 0x96, 0x9a, 0x9a, 0x9d, 0x9d, 0xa6, 0xad, 0xa9, 0xa9, 0xa9, 0xa6, 0xb6, 0xbe, 0xbb, 0xbb, 0xbb, 0xbb, 0xba, 0xba, 0xba, 0xba, 0xba, 0xba, 0xba, 0xbb, 0xbb, 0xbb, 0xba, 0xb7, 0xb9, 0xb9, 0xb9, 0xb9, 0xb7, 0xb7, 0xb9, 0xb9, 0xba, 0xba, 0xbd, 0xbd, 0xbd, 0xbd, 0xbe, 0xbe, 0xbe, 0xbf, 0xbf, 0xbf, 0xbe, 0xbd, 0xbd, 0xbd, 0xbb, 0xbd, 0xbb, 0xbb, 0xbd, 0xbb, 0xbd, 0xbd, 0xbb, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbf, 0xc0, 0xc0, 0xbf, 0xc0, 0xbf, 0xc0, 0xbf, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xbf, 0xc0, 0xbf, 0xc0, 0xbf, 0xc0, 0xbf, 0xbf, 0xbe, 0xbf, 0xbf, 0xbe, 0xbe, 0xbe, 0xbe, 0xbd, 0xbd, 0xba, 0xbb, 0xbd, 0xba, 0xbd, 0xbb, 0xb9, 0xb7, 0xb7, 0xb7, 0xb9, 0xb7, 0xb9, 0xb7, 0xb9, 0xb9, 0xb7, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xba, 0xbb, 0xba, 0xbd, 0xbc, 0xba, 0xbe, 0xd0, 0xc1, 0xc0, 0xc1, 0xd0, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xd1, 0xc1, 0xc1, 0xd1, 0xc1, 0xd1, 0xd1, 0xd1, 0xd1, 0xc1, 0xc1, 0xc1, 0xc1, 0xd1, 0xc1, 0xd1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xd1, 0xc1, 0xd1, 0xc1, 0xc1, 0xd1, 0xc1, 0xfe, 0xdd, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xd0, 0xd0, 0xd0, 0xd0, 0xd0, 0xd0, 0xd0, 0xd0, 0xd0, 0xd0, 0xd0, 0xd0, 0xd0, 0xd0, 0xd0, 0xc0, 0x48, 0x47, 0x48, 0x48, 0x47, 0x44, 0x44, 0x45, 0x44, 0x45, 0x44, 0x45, 0x44, 0x46, 0xff, 0xc0, 0xc0, 0xff, 0xd0, 0xff, 0xc1, 0xd0, 0xc1, 0xff, 0xc1, 0xff, 0xc1, 0xff, 0xc1, 0xd0, 0xc1, 0xd0, 0xd1, 0x49, 0xff, 0xff, 0x47, 0x44, 0x45, 0x45, 0x45, 0x45, 0x45, 0x45, 0x45, 0x45, 0x47, 0x49, 0xfe, 0x49, 0x49, 0xfe, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0xfe, 0x49, 0x49, 0x49, 0x48, 0x49, 0x47, 0x36, 0x38, 0x38, 0x3a, 0x3a, 0x3a, 0x3a, 0x3a, 0x3a, 0x3a, 0x3a, 0x3a, 0x3a, 0x3a, 0x3a, 0x3f, 0x44, 0x42, 0x44, 0x41, 0x44, 0x41, 0x44, 0x41, 0x44, 0x41,
0xd1, 0xd1, 0xb9, 0xa6, 0xa9, 0xab, 0xad, 0xad, 0xad, 0xad, 0xad, 0xad, 0xad, 0xad, 0xad, 0xad, 0xad, 0xad, 0xaf, 0xad, 0xaf, 0xaf, 0xaf, 0xaf, 0xb5, 0xba, 0xba, 0xb9, 0xba, 0xba, 0xba, 0xbb, 0xba, 0xbd, 0xbb, 0xb9, 0xb9, 0xbd, 0xb3, 0xad, 0xb1, 0xb3, 0xb1, 0xb5, 0xb5, 0xb6, 0xb6, 0xb9, 0xb9, 0xba, 0xbd, 0xbe, 0xcf, 0xbf, 0xd0, 0xc0, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xc1, 0xc1, 0xc0, 0xc0, 0xc1, 0xc1, 0xc1, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc1, 0xc0, 0xc0, 0xc0, 0xc0, 0xc1, 0xc0, 0xc0, 0xbf, 0xc0, 0xbf, 0xbf, 0xbf, 0xbe, 0xbf, 0xcf, 0xdb, 0xf4, 0xdb, 0xf8, 0xdb, 0xf8, 0xdb, 0xf8, 0xdb, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xfa, 0xf8, 0xf8, 0xf8, 0xf8, 0xf9, 0xfa, 0xfb, 0xdc, 0xce, 0xce, 0xb8, 0xb8, 0xb8, 0xb8, 0xb4, 0xce, 0xb4, 0xce, 0xb4, 0xb0, 0xce, 0xb8, 0xce, 0xb8, 0xb4, 0xce, 0xb0, 0xce, 0xb4, 0xb8, 0xb8, 0xb7, 0xb8, 0xb9, 0xb8, 0xb9, 0xb8, 0xba, 0xb9, 0xb9, 0xba, 0xba, 0xba, 0xbe, 0xb2, 0x9f, 0xa9, 0xad, 0x86, 0x71, 0x7e, 0x7e, 0x83, 0x83, 0x83, 0x89, 0x50, 0x50, 0x50, 0x91, 0x91, 0x96, 0x96, 0x9a, 0x9a, 0x9d, 0xa1, 0xa9, 0xab, 0xa9, 0xa9, 0xa9, 0xb6, 0xbe, 0xba, 0xba, 0xba, 0xba, 0xbb, 0xbb, 0xba, 0xba, 0xba, 0xba, 0xbb, 0xbb, 0xbb, 0xbb, 0xba, 0xb9, 0xb9, 0xb9, 0xb9, 0xb7, 0xb9, 0xb9, 0xb9, 0xb7, 0xbb, 0xba, 0xbb, 0xbb, 0xbd, 0xbd, 0xbd, 0xbe, 0xbe, 0xbe, 0xbf, 0xbf, 0xbf, 0xbe, 0xbd, 0xbb, 0xbd, 0xbb, 0xbd, 0xbd, 0xbd, 0xbb, 0xbd, 0xbb, 0xbd, 0xbb, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbf, 0xc0, 0xc0, 0xbf, 0xc0, 0xbf, 0xc0, 0xc0, 0xc0, 0xbf, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xbf, 0xc0, 0xbf, 0xbf, 0xbf, 0xbe, 0xbe, 0xbf, 0xbe, 0xbe, 0xbd, 0xbd, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xba, 0xb7, 0xb9, 0xb7, 0xb9, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb9, 0xb9, 0xb9, 0xba, 0xb9, 0xba, 0xbb, 0xbb, 0xbf, 0xc1, 0xd0, 0xd0, 0xc1, 0xd0, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xd1, 0xd1, 0xd1, 0xc1, 0xd1, 0xc1, 0xd1, 0xc1, 0xd1, 0xc1, 0xd1, 0xc1, 0xd1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xd1, 0xc1, 0xd1, 0xc1, 0xd1, 0xd1, 0xd0, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xd0, 0xc0, 0xd0, 0xd0, 0xcf, 0xd0, 0xc0, 0xd0, 0xd0, 0xd0, 0xd0, 0xd0, 0xd0, 0xd0, 0xd0, 0x47, 0x48, 0x47, 0x48, 0x47, 0x44, 0x45, 0x44, 0x45, 0x44, 0x45, 0x44, 0x47, 0x48, 0xcf, 0xc0, 0xc0, 0xc1, 0xff, 0xd0, 0xc1, 0xd0, 0xd0, 0xd0, 0xc1, 0xd0, 0xc1, 0xd0, 0xc1, 0xd0, 0xc1, 0xd0, 0xff, 0xff, 0xff, 0xd1, 0x47, 0x44, 0x45, 0x45, 0x45, 0x45, 0x45, 0x45, 0x47, 0x45, 0x48, 0xfe, 0x48, 0x49, 0x49, 0x49, 0xfe, 0x49, 0x49, 0xfe, 0x49, 0xfe, 0x49, 0x49, 0x49, 0x48, 0x49, 0xfe, 0x48, 0x49, 0x3f, 0x33, 0x38, 0x3a, 0x3a, 0x3a, 0x3a, 0x3a, 0x3a, 0x3a, 0x3a, 0x3a, 0x3a, 0x3a, 0x3a, 0x3f, 0x41, 0x44, 0x41, 0x44, 0x42, 0x44, 0x41, 0x44, 0x44, 0x44,
0xc1, 0xc1, 0xd1, 0xbc, 0xa9, 0xa9, 0xad, 0xad, 0xab, 0xad, 0xad, 0xad, 0xad, 0xad, 0xab, 0xad, 0xaf, 0xad, 0xad, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xb5, 0xbb, 0xba, 0xb9, 0xba, 0xba, 0xba, 0xbb, 0xbd, 0xbb, 0xbb, 0xb7, 0xb9, 0xbb, 0xb9, 0xb1, 0xaf, 0xb3, 0xb3, 0xb3, 0xb5, 0xb5, 0xb6, 0xb7, 0xb7, 0xba, 0xbb, 0xbd, 0xbe, 0xbf, 0xc0, 0xc0, 0xc1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xc1, 0xc1, 0xc0, 0xc0, 0xc1, 0xc1, 0xc1, 0xc0, 0xbf, 0xc0, 0xc0, 0xc0, 0xc0, 0xbf, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xd1, 0xcf, 0xf1, 0xf0, 0xf1, 0xf3, 0xf1, 0xf3, 0xf1, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf2, 0xf5, 0xf2, 0xf3, 0x31, 0xf2, 0x31, 0xf2, 0xf2, 0x31, 0xf2, 0xd9, 0x27, 0x1e, 0x29, 0x29, 0x2d, 0x31, 0x37, 0xf9, 0xfa, 0xfb, 0xdc, 0xce, 0xce, 0xb8, 0xb8, 0xb8, 0xb8, 0xb7, 0xb8, 0xb4, 0xb8, 0xb4, 0xce, 0xce, 0xb4, 0xb8, 0xb7, 0xb8, 0xb8, 0xb7, 0xb8, 0xb9, 0xb9, 0xb9, 0xb9, 0xba, 0xb9, 0xba, 0xb9, 0xbb, 0xbe, 0xae, 0xa2, 0xa9, 0x7e, 0x76, 0x78, 0x7e, 0x7e, 0x83, 0x83, 0x8b, 0x89, 0x50, 0x50, 0x50, 0x91, 0x91, 0x96, 0x96, 0x9a, 0x9a, 0x9d, 0xa1, 0xab, 0xab, 0xa9, 0xa9, 0xb7, 0xbe, 0xbd, 0xbb, 0xbb, 0xbb, 0xbb, 0xba, 0xba, 0xba, 0xba, 0xba, 0xba, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xb9, 0xb7, 0xb9, 0xb9, 0xb9, 0xb7, 0xb9, 0xb9, 0xba, 0xbb, 0xbb, 0xbb, 0xbd, 0xbd, 0xbd, 0xbd, 0xbf, 0xbe, 0xbe, 0xbf, 0xbf, 0xbe, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbb, 0xbb, 0xbd, 0xbb, 0xbd, 0xbb, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbe, 0xbf, 0xc0, 0xbf, 0xc0, 0xc0, 0xc0, 0xc0, 0xbf, 0xc0, 0xc0, 0xc0, 0xc0, 0xbf, 0xc0, 0xc0, 0xbf, 0xc0, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbe, 0xbf, 0xbe, 0xbe, 0xbe, 0xbb, 0xbb, 0xbb, 0xba, 0xba, 0xbb, 0xbd, 0xba, 0xba, 0xba, 0xbb, 0xb7, 0xb7, 0xb7, 0xb7, 0xb8, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb9, 0xb7, 0xb7, 0xb9, 0xb9, 0xb9, 0xba, 0xbb, 0xbb, 0xba, 0xbc, 0xc0, 0xd0, 0xc1, 0xd0, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xd1, 0xc1, 0xd1, 0xc1, 0xd1, 0xc1, 0xd1, 0xd1, 0xd1, 0xc1, 0xd1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xd1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xd1, 0xcf, 0x46, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xcf, 0xc0, 0xbf, 0xd0, 0xd0, 0xd0, 0xd0, 0xd0, 0xd0, 0xd0, 0xd0, 0xd0, 0xd0, 0xc0, 0xfe, 0x47, 0x48, 0x47, 0x48, 0x47, 0x45, 0x44, 0x45, 0x44, 0x45, 0x44, 0x45, 0x47, 0xfe, 0xd0, 0xd0, 0xc0, 0xd0, 0xff, 0xd0, 0xff, 0xd0, 0xff, 0xd0, 0xff, 0xff, 0xc1, 0xd0, 0xd0, 0xc1, 0xc1, 0xff, 0xff, 0xff, 0xff, 0xd1, 0x48, 0x45, 0x44, 0x45, 0x45, 0x45, 0x45, 0x45, 0x45, 0x45, 0x48, 0xfe, 0x48, 0xfe, 0x49, 0x49, 0x49, 0x49, 0xfe, 0x49, 0x49, 0x49, 0x49, 0xfe, 0x49, 0x49, 0xfe, 0x48, 0x48, 0xff, 0x42, 0x33, 0x38, 0x38, 0x3a, 0x3a, 0x3a, 0x3a, 0x3a, 0x3a, 0x3a, 0x3a, 0x3a, 0x3a, 0x3b, 0x3d, 0x40, 0x44, 0x42, 0x44, 0x41, 0x44, 0x44, 0x41, 0x44, 0x41,
0xc1, 0xc1, 0xd1, 0xd1, 0xbe, 0xab, 0xa6, 0xab, 0xaf, 0xab, 0xad, 0xad, 0xad, 0xab, 0xad, 0xad, 0xad, 0xaf, 0xaf, 0xad, 0xaf, 0xaf, 0xb1, 0xaf, 0xb5, 0xbb, 0xba, 0xb9, 0xba, 0xba, 0xba, 0xba, 0xbb, 0xbd, 0xb9, 0xb9, 0xb9, 0xb9, 0xbd, 0xb7, 0xaf, 0xb1, 0xb3, 0xb3, 0xb5, 0xb5, 0xb6, 0xb6, 0xb9, 0xb9, 0xbb, 0xbb, 0xbc, 0xbe, 0xbf, 0xbf, 0xc0, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xc1, 0xc1, 0xc0, 0xc0, 0xc0, 0xc1, 0xc1, 0xc1, 0xc0, 0xbf, 0xc0, 0xc0, 0xc0, 0xbf, 0xc0, 0xc0, 0xc0, 0xc0, 0xbf, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xbf, 0xd1, 0xbc, 0xf3, 0xf0, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf5, 0xf3, 0xf5, 0xf3, 0xf5, 0xf3, 0xf5, 0xf3, 0xf5, 0xf3, 0xf5, 0xf3, 0xf5, 0xf2, 0x98, 0x90, 0x27, 0x24, 0x22, 0x22, 0x22, 0x22, 0x22, 0x25, 0x25, 0x2d, 0x31, 0xf5, 0xf5, 0xf8, 0xf8, 0xfb, 0xfb, 0xce, 0xb4, 0xb8, 0xbb, 0xbd, 0xbb, 0xb8, 0xb7, 0xb8, 0xb8, 0xb9, 0xb8, 0xb9, 0xba, 0xb9, 0xba, 0xba, 0xb9, 0xba, 0xbb, 0xbb, 0xba, 0xbd, 0xbe, 0xb1, 0x92, 0x71, 0x71, 0x7a, 0x78, 0x7e, 0x7e, 0x83, 0x83, 0x8b, 0x89, 0x50, 0x50, 0x50, 0x91, 0x96, 0x96, 0x9a, 0x9a, 0x9d, 0x9d, 0xa4, 0xad, 0xa9, 0xa9, 0xb7, 0xbe, 0xbb, 0xbd, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xba, 0xba, 0xba, 0xbb, 0xbb, 0xba, 0xba, 0xba, 0xba, 0xb9, 0xb9, 0xb9, 0xba, 0xb9, 0xb9, 0xb9, 0xba, 0xbb, 0xbb, 0xba, 0xbd, 0xbb, 0xbd, 0xbd, 0xbe, 0xbe, 0xbe, 0xbf, 0xbf, 0xbf, 0xbe, 0xbd, 0xbb, 0xbd, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbd, 0xba, 0xbd, 0xbb, 0xbd, 0xbb, 0xbd, 0xbd, 0xbe, 0xbd, 0xbf, 0xc0, 0xbf, 0xc0, 0xc0, 0xbf, 0xc0, 0xc0, 0xc0, 0xc0, 0xbf, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xbf, 0xc0, 0xbf, 0xbf, 0xbf, 0xbe, 0xbf, 0xbe, 0xbf, 0xbd, 0xbd, 0xbb, 0xbb, 0xba, 0xba, 0xba, 0xba, 0xbb, 0xbb, 0xba, 0xbd, 0xbd, 0xba, 0xb7, 0xb9, 0xb7, 0xb7, 0xb7, 0xb6, 0xb7, 0xb7, 0xb7, 0xb6, 0xb6, 0xb7, 0xb7, 0xb7, 0xb9, 0xb9, 0xb9, 0xbb, 0xbb, 0xba, 0xb9, 0xbf, 0xd0, 0xd0, 0xc0, 0xc1, 0xd0, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xd1, 0xc1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xc1, 0xd1, 0xc1, 0xd1, 0xc1, 0xd1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xd1, 0xc1, 0xc1, 0xd1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xd1, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xd0, 0xd0, 0xd0, 0xd0, 0xd0, 0xd0, 0xd0, 0xcf, 0xd0, 0xd0, 0xd0, 0xd0, 0xc0, 0x48, 0x47, 0x48, 0x47, 0x48, 0x48, 0x45, 0x44, 0x44, 0x45, 0x44, 0x45, 0x45, 0x48, 0x49, 0xcf, 0xd0, 0xc0, 0xc1, 0xd0, 0xd0, 0xff, 0xd0, 0xc1, 0xff, 0xd0, 0xff, 0xc1, 0xd0, 0xc1, 0xff, 0xc1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x44, 0x45, 0x45, 0x45, 0x45, 0x45, 0x45, 0x45, 0x47, 0xfe, 0x48, 0xfe, 0x48, 0x49, 0x49, 0x49, 0x49, 0x49, 0xfe, 0x49, 0xfe, 0x49, 0x49, 0x48, 0x49, 0x49, 0x48, 0x48, 0x49, 0x46, 0x3a, 0x33, 0x33, 0x3a, 0x3a, 0x3a, 0x3a, 0x3a, 0x3a, 0x3a, 0x3b, 0x3a, 0x3b, 0x3a, 0x3f, 0x3f, 0x41, 0x44, 0x41, 0x44, 0x44, 0x42, 0x44, 0x41, 0x44,
0xc1, 0xc1, 0xc1, 0xc1, 0xd1, 0xd0, 0xaf, 0xa6, 0xad, 0xad, 0xad, 0xab, 0xad, 0xad, 0xad, 0xad, 0xaf, 0xad, 0xaf, 0xaf, 0xaf, 0xaf, 0xb1, 0xaf, 0xb6, 0xba, 0xba, 0xb9, 0xb9, 0xbb, 0xba, 0xbb, 0xbb, 0xbb, 0xb9, 0xb9, 0xb9, 0xbb, 0xba, 0xbd, 0xb5, 0xaf, 0xb3, 0xb3, 0xb5, 0xb5, 0xb5, 0xb7, 0xb7, 0xb9, 0xba, 0xbb, 0xbd, 0xbe, 0xbf, 0xbf, 0xc1, 0xd1, 0xc1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xc1, 0xc1, 0xc0, 0xc0, 0xc0, 0xc1, 0xc1, 0xc1, 0xc1, 0xc0, 0xbf, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xd1, 0xcf, 0xf1, 0xf0, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf5, 0xf3, 0xf5, 0xf3, 0xf3, 0xf3, 0xf5, 0xf2, 0xf4, 0x8e, 0x90, 0x90, 0x25, 0x22, 0x25, 0x25, 0x27, 0x25, 0x27, 0x27, 0xef, 0x25, 0xef, 0x25, 0xef, 0x27, 0x27, 0xf2, 0xf2, 0xf3, 0xf7, 0xf7, 0xfb, 0xcd, 0xb0, 0xba, 0xb4, 0xb7, 0xb4, 0xb9, 0xb8, 0xb7, 0xb8, 0xb7, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xbb, 0xbf, 0x93, 0x6d, 0x71, 0x71, 0x71, 0x71, 0x73, 0x78, 0x78, 0x4d, 0x83, 0x89, 0x50, 0x50, 0x91, 0x91, 0x96, 0x96, 0x9a, 0x9a, 0x9d, 0x9d, 0xa9, 0xab, 0xab, 0xb7, 0xbe, 0xbb, 0xbd, 0xba, 0xbb, 0xbb, 0xba, 0xbb, 0xba, 0xbd, 0xbd, 0xbb, 0xbb, 0xbb, 0xba, 0xba, 0xba, 0xb9, 0xba, 0xb6, 0xb5, 0xb6, 0xb6, 0xb7, 0xb9, 0xb9, 0xba, 0xbb, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbe, 0xbe, 0xbe, 0xbe, 0xbf, 0xbe, 0xbd, 0xbd, 0xbd, 0xbd, 0xbb, 0xbb, 0xbb, 0xbb, 0xba, 0xba, 0xba, 0xbb, 0xbd, 0xbd, 0xbe, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbf, 0xc0, 0xc0, 0xc0, 0xbf, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xc0, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbe, 0xbe, 0xbe, 0xbb, 0xba, 0xba, 0xbb, 0xba, 0xb8, 0xba, 0xb9, 0xba, 0xbb, 0xbd, 0xbd, 0xbd, 0xbd, 0xba, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xb7, 0xb9, 0xb6, 0xb7, 0xb7, 0xb6, 0xb7, 0xb7, 0xb9, 0xb7, 0xb8, 0xba, 0xba, 0xbb, 0xbb, 0xbc, 0xbf, 0xff, 0xc0, 0xc1, 0xd0, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xd1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xd1, 0xc1, 0xc1, 0xd1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc0, 0xc1, 0xc0, 0xd1, 0xc1, 0xd1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc0, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xd0, 0xd0, 0xd0, 0xd0, 0xd0, 0xd0, 0xd0, 0xd0, 0xd0, 0xd0, 0xc0, 0xff, 0x47, 0x48, 0x47, 0x48, 0x47, 0x48, 0x47, 0x44, 0x45, 0x44, 0x45, 0x45, 0x47, 0x48, 0xfe, 0x49, 0xd0, 0xc0, 0xc0, 0xff, 0xd0, 0xd0, 0xff, 0xd0, 0xd0, 0xd0, 0xc1, 0xff, 0xc1, 0xd0, 0xc1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x45, 0x44, 0x45, 0x45, 0x45, 0x45, 0x45, 0x45, 0x47, 0x48, 0xfe, 0x48, 0x48, 0xfe, 0x49, 0x49, 0xfe, 0x49, 0x49, 0x49, 0x49, 0x49, 0xfe, 0x49, 0x49, 0x48, 0x48, 0x48, 0x48, 0x49, 0x39, 0x33, 0x38, 0x33, 0x3a, 0x3b, 0x3a, 0x3b, 0x3a, 0x3b, 0x3a, 0x3b, 0x3a, 0x3b, 0x3f, 0x3d, 0x40, 0x44, 0x44, 0x42, 0x44, 0x41, 0x44, 0x44, 0x41,
0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xd1, 0xd0, 0xb3, 0xa4, 0xad, 0xad, 0xad, 0xad, 0xad, 0xad, 0xad, 0xad, 0xaf, 0xad, 0xaf, 0xaf, 0xaf, 0xb1, 0xaf, 0xb6, 0xba, 0xba, 0xb9, 0xba, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xb7, 0xb9, 0xba, 0xb9, 0xba, 0xba, 0xbd, 0xb1, 0xb1, 0xb3, 0xb5, 0xb5, 0xb5, 0xb6, 0xb7, 0xb7, 0xba, 0xb9, 0xbd, 0xbd, 0xbe, 0xbe, 0xc0, 0xc1, 0xc1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xc1, 0xc0, 0xc0, 0xc0, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xbf, 0xc0, 0xc1, 0xd1, 0xcf, 0xf3, 0xf0, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf5, 0xf3, 0xf3, 0xf5, 0xf3, 0xf3, 0xf3, 0xf3, 0xf5, 0xf3, 0xf3, 0xf3, 0xf3, 0x90, 0x8e, 0x98, 0x8a, 0x25, 0x1b, 0x25, 0xef, 0xef, 0xef, 0xef, 0x27, 0xef, 0x27, 0xef, 0xf0, 0x27, 0xf0, 0xf2, 0xf0, 0x27, 0xf0, 0xf2, 0xf0, 0xf2, 0xf3, 0xac, 0xb4, 0xb2, 0xb4, 0xb2, 0xb2, 0xb2, 0xb4, 0xb5, 0xb4, 0xb3, 0xb4, 0xb5, 0xb5, 0xb5, 0xb6, 0xb5, 0xb6, 0xb5, 0xb2, 0xae, 0xaa, 0xa3, 0x9c, 0x93, 0x92, 0x8d, 0x8b, 0x86, 0x89, 0x83, 0x89, 0x4f, 0x89, 0x50, 0x50, 0x91, 0x96, 0x9a, 0x9a, 0xa1, 0xa6, 0xaf, 0xba, 0xbe, 0xbd, 0xbb, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xba, 0xba, 0xb9, 0xb9, 0xb9, 0xb7, 0xb7, 0xb7, 0xb7, 0xb6, 0xb7, 0xb3, 0xb1, 0xb1, 0xb3, 0xb5, 0xb6, 0xb6, 0xb7, 0xb9, 0xba, 0xba, 0xbd, 0xbd, 0xbd, 0xbe, 0xbe, 0xbe, 0xbf, 0xbe, 0xbf, 0xbf, 0xbd, 0xbd, 0xbd, 0xbb, 0xbb, 0xbb, 0xba, 0xba, 0xbb, 0xba, 0xbd, 0xbb, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbe, 0xbe, 0xbe, 0xbf, 0xc0, 0xbf, 0xc0, 0xbf, 0xc0, 0xbf, 0xbf, 0xbf, 0xbf, 0xc0, 0xbf, 0xc0, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbe, 0xbe, 0xbe, 0xbb, 0xb9, 0xb9, 0xb9, 0xba, 0xba, 0xb9, 0xba, 0xbb, 0xbb, 0xbb, 0xbd, 0xbd, 0xbd, 0xbd, 0xba, 0xba, 0xba, 0xba, 0xb9, 0xb9, 0xb7, 0xb9, 0xb7, 0xb7, 0xb9, 0xb9, 0xb9, 0xb7, 0xb9, 0xba, 0xba, 0xb8, 0xbd, 0xbd, 0xba, 0xbe, 0xd0, 0xd0, 0xc0, 0xc1, 0xc0, 0xc1, 0xc0, 0xc1, 0xc1, 0xd1, 0xc1, 0xd1, 0xc1, 0xd1, 0xc1, 0xd1, 0xc1, 0xc1, 0xc1, 0xd1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc0, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xd1, 0xc0, 0x46, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xd0, 0xc0, 0xd0, 0xd0, 0xd0, 0xd0, 0xd0, 0xd0, 0xd0, 0xd0, 0xc0, 0xfe, 0x47, 0x47, 0x48, 0x47, 0x48, 0x48, 0x47, 0x45, 0x44, 0x45, 0x44, 0x45, 0x47, 0x48, 0x49, 0x49, 0xcf, 0xd0, 0xc0, 0xd0, 0xff, 0xd0, 0xff, 0xff, 0xd0, 0xd0, 0xd0, 0xd0, 0xff, 0xc1, 0xc1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd1, 0x47, 0x44, 0x45, 0x45, 0x45, 0x45, 0x45, 0x45, 0x48, 0x48, 0x48, 0x46, 0x48, 0x48, 0x49, 0xfe, 0x49, 0x49, 0xfe, 0x49, 0xfe, 0x49, 0x49, 0x49, 0xfe, 0x48, 0x48, 0x48, 0x48, 0xff, 0x42, 0x33, 0x38, 0x33, 0x38, 0x3b, 0x3a, 0x3a, 0x3b, 0x3a, 0x3b, 0x3a, 0x3b, 0x3a, 0x3f, 0x3d, 0x3f, 0x42, 0x44, 0x41, 0x44, 0x44, 0x41, 0x44, 0x44,
0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xd1, 0xd1, 0xb5, 0xa6, 0xab, 0xad, 0xad, 0xad, 0xad, 0xad, 0xad, 0xad, 0xaf, 0xaf, 0xaf, 0xb1, 0xaf, 0xb1, 0xb7, 0xbd, 0xba, 0xba, 0xba, 0xbb, 0xbb, 0xbb, 0xbd, 0xba, 0xb9, 0xb9, 0xb9, 0xb9, 0xba, 0xba, 0xbd, 0xba, 0xaf, 0xb1, 0xb3, 0xb5, 0xb5, 0xb6, 0xb6, 0xb7, 0xb9, 0xba, 0xbb, 0xbd, 0xbe, 0xbd, 0xc0, 0xc1, 0xc1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xc1, 0xd0, 0xc0, 0xc0, 0xc1, 0xc0, 0xd1, 0xc1, 0xc1, 0xc0, 0xc0, 0xbf, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xbf, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xd1, 0xd1, 0xbc, 0xf1, 0xf0, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf5, 0xf3, 0xf5, 0xf3, 0xf3, 0xf3, 0x31, 0xd9, 0x90, 0x8e, 0x8e, 0x90, 0xca, 0x1b, 0x1b, 0x25, 0xef, 0x27, 0xef, 0xef, 0xef, 0xef, 0xf0, 0x27, 0xf0, 0x27, 0xf0, 0xf2, 0xf1, 0xf2, 0xf1, 0xf2, 0xf1, 0xf4, 0xda, 0xcd, 0xb5, 0xb2, 0xb4, 0xb2, 0xb4, 0xb3, 0xb2, 0xb2, 0xb5, 0xb3, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb9, 0xbe, 0xc0, 0xc0, 0xc0, 0xc0, 0xbf, 0xbe, 0xbb, 0xb9, 0xb2, 0xaf, 0xa7, 0xa7, 0xa4, 0x52, 0x9d, 0x99, 0x9a, 0x9a, 0x95, 0x9a, 0x96, 0xa9, 0xbb, 0xbf, 0xbb, 0xbd, 0xbb, 0xba, 0xb9, 0xb9, 0xb9, 0xb7, 0xb6, 0xb7, 0xb7, 0xb6, 0xb6, 0xb7, 0xb7, 0xb7, 0xb7, 0xb6, 0xb7, 0xb9, 0xb5, 0xaf, 0xb1, 0xb3, 0xb5, 0xb5, 0xb6, 0xb6, 0xb7, 0xb9, 0xb9, 0xbb, 0xbb, 0xbd, 0xbd, 0xbe, 0xbe, 0xbf, 0xbf, 0xbe, 0xbd, 0xbd, 0xbd, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbd, 0xbd, 0xbb, 0xbd, 0xbb, 0xbe, 0xbd, 0xbe, 0xbe, 0xbe, 0xbe, 0xbd, 0xbe, 0xbf, 0xc0, 0xc0, 0xc0, 0xbf, 0xbf, 0xc0, 0xbf, 0xc0, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbe, 0xbe, 0xbb, 0xba, 0xb9, 0xb9, 0xb9, 0xba, 0xb9, 0xba, 0xbb, 0xbb, 0xbd, 0xbb, 0xbd, 0xbe, 0xbd, 0xbe, 0xbd, 0xbb, 0xba, 0xbb, 0xba, 0xb9, 0xb7, 0xb9, 0xba, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xba, 0xbb, 0xbb, 0xbd, 0xbb, 0xbc, 0xbb, 0xbc, 0xbf, 0xd0, 0xd0, 0xc1, 0xd0, 0xc1, 0xc0, 0xc1, 0xd1, 0xc1, 0xd1, 0xc1, 0xc1, 0xd1, 0xc1, 0xc1, 0xc1, 0xd1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc0, 0xc1, 0xc1, 0xd1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc0, 0xd1, 0xcf, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xd0, 0xd0, 0xd0, 0xd0, 0xd0, 0xd0, 0xd0, 0xd0, 0xc0, 0xd0, 0x48, 0x47, 0x48, 0x48, 0x48, 0x47, 0x48, 0x48, 0x45, 0x44, 0x45, 0x45, 0x47, 0x47, 0x48, 0xfe, 0x49, 0xff, 0xff, 0xc0, 0xc1, 0xd0, 0xff, 0xd0, 0xff, 0xd0, 0xff, 0xc1, 0xff, 0xc1, 0xd0, 0xff, 0xff, 0x49, 0xff, 0xff, 0xff, 0xff, 0xff, 0x48, 0x45, 0x44, 0x45, 0x45, 0x45, 0x45, 0x45, 0xfe, 0x48, 0x48, 0x48, 0x48, 0x46, 0x49, 0x49, 0xfe, 0x49, 0x49, 0xfe, 0x49, 0x49, 0xfe, 0x49, 0x49, 0x48, 0x48, 0x48, 0x48, 0x49, 0x47, 0x36, 0x33, 0x38, 0x33, 0x3a, 0x3b, 0x3b, 0x3a, 0x3b, 0x3a, 0x3b, 0x3a, 0x3b, 0x3f, 0x3f, 0x3d, 0x40, 0x44, 0x44, 0x42, 0x44, 0x44, 0x42, 0x44,
0xd1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xd1, 0xd1, 0xb7, 0xa9, 0xab, 0xad, 0xad, 0xad, 0xaf, 0xad, 0xaf, 0xaf, 0xaf, 0xaf, 0xb1, 0xb1, 0xaf, 0xb7, 0xbd, 0xbb, 0xba, 0xba, 0xbd, 0xbb, 0xbd, 0xbd, 0xb9, 0xb9, 0xb7, 0xba, 0xb9, 0xba, 0xbb, 0xba, 0xbe, 0xb6, 0xaf, 0xb3, 0xb3, 0xb6, 0xb5, 0xb6, 0xb6, 0xb9, 0xba, 0xba, 0xbb, 0xbd, 0xbe, 0xbf, 0xc1, 0xc1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xc1, 0xc0, 0xbf, 0xc0, 0xc1, 0xc1, 0xc1, 0xc1, 0xd1, 0xc0, 0xc0, 0xbf, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc1, 0xc1, 0xd1, 0xd1, 0xcf, 0xf3, 0xf0, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf2, 0xca, 0x8e, 0x8e, 0x8e, 0x8e, 0x90, 0xd9, 0x1b, 0x1b, 0xef, 0xef, 0xef, 0xef, 0xf0, 0xef, 0xf0, 0xef, 0xf0, 0xf0, 0xf0, 0xf0, 0xf0, 0xf2, 0xf1, 0xf3, 0xf1, 0xcb, 0xda, 0xda, 0xa5, 0xb6, 0xb2, 0xb2, 0xb2, 0xb4, 0xb6, 0xb2, 0xb5, 0xb2, 0xb5, 0xb5, 0xb5, 0xb5, 0xb6, 0xb5, 0xb6, 0xb6, 0xb6, 0xb6, 0xba, 0xba, 0xba, 0xbb, 0xbd, 0xbe, 0xbd, 0xbf, 0xc0, 0xc0, 0xc0, 0xc0, 0xbf, 0xbe, 0xbd, 0xba, 0xb7, 0xb6, 0xb3, 0xae, 0xb1, 0xba, 0xb7, 0xb7, 0xb7, 0xb6, 0xb6, 0xb6, 0xb7, 0xb6, 0xb6, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb6, 0xb7, 0xb7, 0xb7, 0xb6, 0xb6, 0xb7, 0xb9, 0xb3, 0xb3, 0xb3, 0xb5, 0xb5, 0xb6, 0xb7, 0xb7, 0xb9, 0xb9, 0xbb, 0xbb, 0xbd, 0xbd, 0xbd, 0xbe, 0xbe, 0xb8, 0xb9, 0xb9, 0xba, 0xb9, 0xb7, 0xb7, 0xb7, 0xb7, 0xb9, 0xb7, 0xb9, 0xb7, 0xb9, 0xb9, 0xba, 0xbb, 0xbb, 0xbd, 0xbd, 0xbe, 0xbe, 0xbe, 0xbe, 0xc0, 0xc0, 0xc0, 0xbf, 0xc0, 0xbf, 0xc0, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbe, 0xba, 0xb9, 0xb7, 0xb9, 0xb9, 0xba, 0xb9, 0xba, 0xba, 0xbb, 0xbb, 0xbd, 0xbd, 0xbd, 0xbe, 0xbe, 0xbe, 0xbe, 0xbd, 0xbd, 0xbb, 0xbb, 0xbb, 0xb9, 0xba, 0xbb, 0xbb, 0xba, 0xbb, 0xbb, 0xbb, 0xba, 0xbd, 0xbb, 0xbd, 0xbd, 0xbd, 0xbc, 0xbd, 0xbc, 0xd0, 0xc1, 0xd0, 0xc0, 0xc1, 0xc1, 0xc1, 0xd1, 0xd1, 0xc1, 0xd1, 0xc1, 0xc1, 0xc1, 0xd1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc0, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc0, 0xc1, 0xc1, 0xc0, 0xc0, 0xc0, 0xc1, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xc0, 0xd0, 0xd0, 0xd0, 0xd0, 0xd0, 0xd0, 0xc0, 0x49, 0x47, 0x48, 0x47, 0x48, 0x47, 0x48, 0x47, 0x48, 0x47, 0x44, 0x44, 0x45, 0x45, 0x48, 0x46, 0x49, 0xfe, 0x49, 0xcf, 0xd0, 0xd0, 0xff, 0xff, 0xff, 0xff, 0xd0, 0xd0, 0xff, 0xd0, 0xd0, 0xff, 0x49, 0xff, 0xff, 0xff, 0xff, 0xff, 0x49, 0xd1, 0x49, 0x45, 0x45, 0x45, 0x45, 0x45, 0x45, 0x48, 0x48, 0x48, 0x48, 0x46, 0x48, 0x46, 0x48, 0x49, 0x49, 0xfe, 0x49, 0x49, 0x48, 0x49, 0x49, 0x49, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0xff, 0x3f, 0x33, 0x38, 0x38, 0x33, 0x3b, 0x3a, 0x3b, 0x3b, 0x3b, 0x3b, 0x3b, 0x3b, 0x3f, 0x3f, 0x3d, 0x3f, 0x44, 0x42, 0x44, 0x42, 0x44, 0x41, 0x44,
0xd1, 0xd1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xd1, 0xd1, 0xba, 0xa9, 0xab, 0xaf, 0xad, 0xad, 0xaf, 0xad, 0xaf, 0xaf, 0xb1, 0xb1, 0xaf, 0xb3, 0xb7, 0xbb, 0xbb, 0xbb, 0xba, 0xbb, 0xbd, 0xbb, 0xbd, 0xba, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xba, 0xbb, 0xbb, 0xbd, 0xb3, 0xaf, 0xb3, 0xb5, 0xb6, 0xb5, 0xb7, 0xb7, 0xb9, 0xba, 0xbb, 0xbb, 0xbd, 0xbf, 0xc1, 0xc0, 0xc1, 0xc1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xc1, 0xc0, 0xc0, 0xc0, 0xc1, 0xc1, 0xc1, 0xc1, 0xd1, 0xc1, 0xc0, 0xbf, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc1, 0xc1, 0xd1, 0xd1, 0xdd, 0xf1, 0xf0, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf2, 0xcb, 0x8a, 0x94, 0x8e, 0x8e, 0x8e, 0x90, 0xd9, 0x1b, 0x25, 0xef, 0xef, 0xef, 0xef, 0xef, 0xf0, 0xef, 0xf0, 0xf0, 0xf0, 0xf0, 0xf0, 0xf1, 0xf0, 0xf1, 0xf1, 0xf4, 0xdb, 0xda, 0xda, 0xa5, 0xb7, 0xb2, 0xb4, 0xb2, 0xb2, 0xb4, 0xb3, 0xb4, 0xb3, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb6, 0xba, 0xbb, 0xbb, 0xbb, 0xba, 0xbb, 0xba, 0xbb, 0xbb, 0xbb, 0xbd, 0xbd, 0xbd, 0xbe, 0xbe, 0xbf, 0xbf, 0xbf, 0xc0, 0xbf, 0xb9, 0xb6, 0xb6, 0xb5, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb7, 0xb6, 0xb7, 0xb6, 0xb6, 0xb7, 0xb6, 0xb7, 0xb6, 0xb7, 0xb6, 0xb6, 0xb7, 0xb9, 0xba, 0xb3, 0xb1, 0xb5, 0xb5, 0xb6, 0xb6, 0xb6, 0xb7, 0xb9, 0xb9, 0xba, 0xbb, 0xbd, 0xbd, 0xbb, 0xbb, 0xb6, 0xb6, 0xb7, 0xb7, 0xb7, 0xb6, 0xb6, 0xb6, 0xb6, 0xb5, 0xb6, 0xb5, 0xb5, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb7, 0xb7, 0xb7, 0xb9, 0xb7, 0xb7, 0xbb, 0xbe, 0xbf, 0xbe, 0xbf, 0xbe, 0xbf, 0xbe, 0xbf, 0xbe, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xb9, 0xb7, 0xb7, 0xb7, 0xb9, 0xb9, 0xb9, 0xba, 0xba, 0xbd, 0xbd, 0xbd, 0xbd, 0xbe, 0xbe, 0xbe, 0xbe, 0xbf, 0xbf, 0xbf, 0xbe, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xba, 0xbb, 0xbb, 0xbb, 0xbd, 0xbd, 0xbb, 0xbd, 0xbd, 0xbd, 0xbd, 0xbc, 0xbd, 0xbe, 0xbd, 0xcf, 0xd0, 0xc0, 0xd0, 0xc1, 0xd0, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xd1, 0xc1, 0xc1, 0xc1, 0xd1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc0, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc0, 0xc1, 0xc1, 0xc1, 0xc0, 0xc1, 0xc0, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xd0, 0xc0, 0xd0, 0xd0, 0xd0, 0xd0, 0xd0, 0xc0, 0x48, 0x47, 0x48, 0x48, 0x47, 0x48, 0x47, 0x48, 0x48, 0x47, 0x45, 0x45, 0x45, 0x47, 0x47, 0x48, 0xfe, 0xfe, 0x49, 0x49, 0xd0, 0xd0, 0xc1, 0xff, 0xcf, 0xff, 0xff, 0xd0, 0xff, 0xd0, 0xc1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x45, 0x44, 0x45, 0x45, 0x45, 0x45, 0x47, 0x49, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0xfe, 0x49, 0x49, 0x49, 0xfe, 0x49, 0x49, 0xfe, 0x49, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x49, 0x42, 0x33, 0x38, 0x38, 0x33, 0x38, 0x3d, 0x3b, 0x3b, 0x3b, 0x3a, 0x3b, 0x3b, 0x3f, 0x3f, 0x3f, 0x3d, 0x41, 0x44, 0x44, 0x44, 0x44, 0x42, 0x44,
0xd1, 0xd1, 0xc1, 0xd1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xd1, 0xd1, 0xcf, 0xa9, 0xa9, 0xb1, 0xad, 0xaf, 0xaf, 0xaf, 0xaf, 0xb1, 0xaf, 0xb1, 0xb3, 0xba, 0xbb, 0xbb, 0xbd, 0xba, 0xbd, 0xbb, 0xbd, 0xbe, 0xb7, 0xb9, 0xb9, 0xb9, 0xba, 0xb9, 0xba, 0xba, 0xbb, 0xbd, 0xbd, 0xb1, 0xb3, 0xb5, 0xb5, 0xb5, 0xb6, 0xb6, 0xb7, 0xb9, 0xba, 0xbb, 0xba, 0xbf, 0xc0, 0xc1, 0xc1, 0xc1, 0xc1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xc0, 0xc0, 0xc0, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xd1, 0xc1, 0xc1, 0xbf, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc1, 0xc1, 0xc1, 0xd1, 0xd1, 0x49, 0xf1, 0xf0, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0x8e, 0x8e, 0x8e, 0x8e, 0x8e, 0x8e, 0x8e, 0x90, 0xd8, 0x1b, 0xef, 0xef, 0xef, 0xef, 0xf0, 0xef, 0xf0, 0xef, 0xf0, 0xf0, 0xf0, 0xf0, 0xf0, 0xf1, 0xf1, 0xf1, 0xcb, 0xda, 0xcc, 0xda, 0xda, 0xa5, 0xb5, 0xb5, 0xb2, 0xb2, 0xb5, 0xb2, 0xb5, 0xb2, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb6, 0xb5, 0xb6, 0xb6, 0xb5, 0xb6, 0xb9, 0xbd, 0xbb, 0xba, 0xbd, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbb, 0xbd, 0xba, 0xba, 0xb7, 0xb6, 0xb5, 0xb7, 0xb7, 0xb6, 0xb6, 0xb6, 0xb7, 0xb6, 0xb7, 0xb6, 0xb6, 0xb6, 0xb6, 0xb7, 0xb7, 0xb7, 0xb6, 0xb7, 0xb7, 0xb9, 0xb9, 0xb5, 0xb3, 0xb5, 0xb5, 0xb6, 0xb6, 0xb6, 0xb9, 0xb7, 0xb9, 0xba, 0xba, 0xbb, 0xbb, 0xb9, 0xb6, 0xb6, 0xb5, 0xb6, 0xb7, 0xb9, 0xb6, 0xb6, 0xb5, 0xb6, 0xb6, 0xb5, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb7, 0xb6, 0xb6, 0xb6, 0xbd, 0xbd, 0xbe, 0xbd, 0xbe, 0xbd, 0xbe, 0xbd, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbd, 0xbe, 0xbe, 0xbe, 0xb9, 0xb7, 0xb7, 0xba, 0xba, 0xbb, 0xba, 0xbd, 0xbb, 0xbd, 0xbd, 0xbe, 0xbe, 0xbe, 0xbf, 0xbe, 0xbf, 0xbf, 0xbf, 0xbf, 0xc0, 0xbf, 0xbd, 0xbe, 0xbd, 0xbe, 0xbf, 0xbe, 0xbe, 0xbd, 0xbd, 0xbd, 0xbe, 0xbd, 0xbd, 0xbe, 0xbd, 0xbe, 0xbe, 0xcf, 0xbd, 0xcf, 0xbf, 0xc1, 0xc0, 0xc0, 0xc1, 0xc1, 0xc1, 0xd1, 0xc1, 0xd1, 0xc1, 0xc1, 0xc1, 0xd1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc0, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc0, 0xc1, 0xc0, 0xc1, 0xc1, 0xc1, 0xc0, 0xc0, 0xc1, 0xc0, 0xc0, 0xd0, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0x48, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xd0, 0xd0, 0xd0, 0xd0, 0xd0, 0xc0, 0x49, 0x48, 0x47, 0x48, 0x47, 0x48, 0x48, 0x47, 0x48, 0x47, 0x48, 0x45, 0x45, 0x45, 0x47, 0x47, 0x48, 0xfe, 0x48, 0xfe, 0x49, 0xfe, 0xd0, 0xd0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd0, 0xff, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0xff, 0xff, 0xff, 0xff, 0x47, 0x44, 0x45, 0x45, 0x45, 0x47, 0x48, 0x48, 0x48, 0x48, 0x46, 0x48, 0x46, 0x48, 0x48, 0x49, 0xfe, 0x49, 0x49, 0x49, 0x49, 0x49, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x49, 0x47, 0x38, 0x33, 0x38, 0x38, 0x33, 0x3a, 0x3b, 0x3b, 0x3b, 0x3b, 0x3b, 0x3b, 0x3f, 0x3f, 0x3f, 0x3f, 0x3f, 0x42, 0x44, 0x42, 0x44, 0x42, 0x44,
0xd1, 0xd1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xd1, 0xbf, 0xaf, 0xa9, 0xad, 0xaf, 0xaf, 0xaf, 0xaf, 0xb1, 0xb1, 0xaf, 0xb3, 0xba, 0xba, 0xbb, 0xbd, 0xbd, 0xbb, 0xbd, 0xbd, 0xbb, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xba, 0xbb, 0xba, 0xbb, 0xbd, 0xbd, 0xb9, 0xb1, 0xb3, 0xb5, 0xb5, 0xb6, 0xb6, 0xb7, 0xb9, 0xb9, 0xb8, 0xbd, 0xbe, 0xbf, 0xc0, 0xc1, 0xc1, 0xc1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xc0, 0xc0, 0xc0, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xd1, 0xc1, 0xc1, 0xc0, 0xbf, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc1, 0xc1, 0xd1, 0xc1, 0xd1, 0xd1, 0xdd, 0xf3, 0xf0, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf2, 0xf3, 0x8e, 0x8e, 0x8e, 0xca, 0x8e, 0x8e, 0x8e, 0x8e, 0x90, 0xf1, 0x1a, 0xef, 0xef, 0xef, 0xef, 0xf0, 0xef, 0xf0, 0xf0, 0xf0, 0xf0, 0xf0, 0xf1, 0xf0, 0xf1, 0xf1, 0xcb, 0xcc, 0xda, 0xcc, 0xcc, 0xcb, 0xa5, 0xb5, 0xb4, 0xb2, 0xb2, 0xb3, 0xb2, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb6, 0xb6, 0xb6, 0xb6, 0xb9, 0xbb, 0xbd, 0xba, 0xba, 0xba, 0xbd, 0xbd, 0xbd, 0xbd, 0xbb, 0xbb, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xba, 0xba, 0xb9, 0xb7, 0xb5, 0xb6, 0xb7, 0xb6, 0xb6, 0xb6, 0xb7, 0xb6, 0xb6, 0xb7, 0xb6, 0xb7, 0xb6, 0xb6, 0xb6, 0xb5, 0xb7, 0xb9, 0xb9, 0xb9, 0xb9, 0xb5, 0xb3, 0xb5, 0xb5, 0xb6, 0xb6, 0xb7, 0xb7, 0xb9, 0xb9, 0xba, 0xba, 0xb7, 0xb7, 0xb5, 0xb6, 0xb5, 0xb5, 0xb5, 0xb7, 0xb6, 0xb6, 0xb5, 0xb6, 0xb5, 0xb6, 0xb5, 0xb6, 0xb6, 0xb7, 0xb6, 0xb6, 0xb7, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb7, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbe, 0xbd, 0xbe, 0xbd, 0xbd, 0xbe, 0xbe, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbe, 0xba, 0xb9, 0xb7, 0xba, 0xba, 0xbb, 0xbb, 0xbd, 0xbd, 0xbd, 0xbd, 0xbe, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xc0, 0xc0, 0xc0, 0xd0, 0xc0, 0xbf, 0xc0, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbc, 0xbe, 0xcf, 0xbd, 0xcf, 0xc0, 0xc1, 0xc0, 0xc1, 0xd1, 0xc1, 0xd1, 0xc1, 0xc1, 0xd1, 0xc1, 0xd1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc0, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc0, 0xc1, 0xc0, 0xc1, 0xc0, 0xc1, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xd0, 0x46, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xcf, 0xd0, 0xd0, 0xd0, 0xd0, 0xc0, 0x49, 0x47, 0x48, 0x47, 0x48, 0x47, 0x48, 0x48, 0x47, 0x48, 0x48, 0x47, 0x45, 0x47, 0x47, 0x47, 0xfe, 0x48, 0xfe, 0x48, 0xfe, 0x49, 0xd0, 0xd0, 0xff, 0xd0, 0xff, 0xd0, 0xd0, 0xff, 0xd0, 0xff, 0x49, 0xff, 0xff, 0xff, 0xff, 0x49, 0xff, 0x49, 0xff, 0xff, 0x48, 0x45, 0x45, 0x45, 0x45, 0x47, 0x48, 0x46, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x46, 0x49, 0x49, 0x49, 0xfe, 0x49, 0xfe, 0x49, 0xfe, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x49, 0x3d, 0x33, 0x38, 0x38, 0x38, 0x38, 0x3b, 0x3b, 0x3b, 0x3b, 0x3b, 0x3b, 0x3f, 0x3f, 0x3f, 0x3f, 0x3d, 0x41, 0x44, 0x44, 0x41, 0x44, 0x44,
0xd1, 0xd1, 0xc1, 0xc1, 0xd1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xd1, 0xc1, 0xd1, 0xff, 0xaf, 0xa9, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xb1, 0xb5, 0xba, 0xbb, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbe, 0xba, 0xb7, 0xb9, 0xb9, 0xb9, 0xb9, 0xba, 0xb9, 0xba, 0xba, 0xba, 0xbd, 0xbd, 0xb6, 0xb1, 0xb5, 0xb5, 0xb6, 0xb7, 0xb6, 0xb7, 0xb7, 0xba, 0xba, 0xbe, 0xbf, 0xc0, 0xc0, 0xc1, 0xc1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xc1, 0xc0, 0xc0, 0xc0, 0xc1, 0xc1, 0xc1, 0xd1, 0xc1, 0xd1, 0xc1, 0xc1, 0xc0, 0xbf, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc1, 0xc1, 0xd1, 0xc1, 0xd1, 0xd1, 0xdd, 0xf1, 0xf0, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xd9, 0x8e, 0x8e, 0x8e, 0x8e, 0x8e, 0x8e, 0x8e, 0xca, 0x8e, 0x90, 0xf0, 0x1b, 0xef, 0xef, 0xef, 0xef, 0xf0, 0xef, 0xf0, 0xf0, 0xf0, 0xf1, 0xf0, 0xf1, 0xf0, 0xf3, 0xcb, 0xda, 0xcb, 0xda, 0xcc, 0xcc, 0xcc, 0xa5, 0xb6, 0xb6, 0xb2, 0xb5, 0xb2, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb6, 0xb6, 0xb5, 0xb6, 0xb6, 0xb5, 0xb6, 0xb9, 0xbb, 0xbb, 0xba, 0xba, 0xbd, 0xbb, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xba, 0xba, 0xb9, 0xbb, 0xb8, 0xb9, 0xb5, 0xb6, 0xb6, 0xb7, 0xb6, 0xb7, 0xb6, 0xb7, 0xb6, 0xb6, 0xb6, 0xb7, 0xb6, 0xb7, 0xb5, 0xb6, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xb5, 0xb3, 0xb6, 0xb5, 0xb6, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb9, 0xb6, 0xb6, 0xb5, 0xb6, 0xb5, 0xb5, 0xb5, 0xb5, 0xb6, 0xb6, 0xb6, 0xb6, 0xb5, 0xb6, 0xb5, 0xb5, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb7, 0xb6, 0xb6, 0xb7, 0xbb, 0xbd, 0xbd, 0xbe, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbe, 0xbd, 0xbd, 0xbd, 0xbd, 0xbe, 0xbd, 0xbd, 0xbe, 0xbe, 0xba, 0xb7, 0xb7, 0xba, 0xbb, 0xbb, 0xbb, 0xbd, 0xbd, 0xbd, 0xbd, 0xbe, 0xbe, 0xbf, 0xbf, 0xc0, 0xbf, 0xc0, 0xbf, 0xc0, 0xc1, 0xc0, 0xc0, 0xbf, 0xbf, 0xcf, 0xbf, 0xbf, 0xbf, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xcf, 0xbd, 0xbf, 0xbd, 0xc0, 0xc0, 0xc0, 0xc1, 0xc1, 0xd1, 0xc1, 0xd1, 0xc1, 0xd1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc0, 0xc1, 0xc0, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc0, 0xc1, 0xc0, 0xc1, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xbf, 0xc0, 0xcf, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xd0, 0xd0, 0xd0, 0xd0, 0xd0, 0x48, 0x47, 0x47, 0x48, 0x47, 0x48, 0x47, 0x48, 0x47, 0x48, 0x47, 0x48, 0x45, 0x47, 0x47, 0x47, 0x48, 0x46, 0x48, 0xfe, 0xfe, 0xfe, 0x49, 0xd0, 0xd0, 0xff, 0xff, 0xff, 0xff, 0xd0, 0xff, 0x49, 0xff, 0xff, 0x49, 0xff, 0x49, 0xff, 0xff, 0x49, 0xff, 0xff, 0x49, 0x44, 0x45, 0x45, 0x45, 0x48, 0x48, 0x48, 0x48, 0x46, 0x48, 0x46, 0x48, 0x48, 0x48, 0x48, 0xfe, 0x49, 0x49, 0x49, 0x49, 0x49, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0xff, 0x41, 0x2f, 0x38, 0x38, 0x38, 0x33, 0x38, 0x3d, 0x3b, 0x3b, 0x3b, 0x3b, 0x3f, 0x3f, 0x3f, 0x3f, 0x3f, 0x3f, 0x44, 0x42, 0x44, 0x42, 0x44,
0xd1, 0xd1, 0xd1, 0xc1, 0xc1, 0xd1, 0xc1, 0xc1, 0xd1, 0xc1, 0xc1, 0xd1, 0xc1, 0xd1, 0xd1, 0xb5, 0xa9, 0xaf, 0xaf, 0xb1, 0xaf, 0xb1, 0xaf, 0xb6, 0xba, 0xbd, 0xbd, 0xbe, 0xbd, 0xbd, 0xbd, 0xbe, 0xb9, 0xb7, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xba, 0xba, 0xba, 0xbb, 0xbb, 0xbd, 0xbb, 0xb5, 0xb1, 0xb5, 0xb5, 0xb6, 0xb6, 0xb7, 0xb7, 0xb7, 0xba, 0xbe, 0xbf, 0xc0, 0xc0, 0xc0, 0xd1, 0xc1, 0xc1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xc0, 0xc0, 0xc0, 0xc1, 0xc1, 0xc1, 0xc1, 0xd1, 0xc1, 0xd1, 0xc1, 0xc1, 0xbf, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc1, 0xc1, 0xc1, 0xc1, 0xd1, 0xd1, 0xd1, 0xdd, 0xf3, 0xf0, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf2, 0xd9, 0x8e, 0x8e, 0x8e, 0x8e, 0x8e, 0xca, 0x8e, 0x8e, 0x8e, 0x8e, 0x8e, 0xf0, 0x1b, 0xef, 0xef, 0xf0, 0xef, 0xf0, 0xef, 0xf0, 0xf0, 0xf0, 0xf1, 0xf0, 0xf1, 0xf1, 0xcc, 0xcb, 0xcc, 0xcb, 0xcc, 0xcc, 0xcc, 0xcc, 0xa5, 0xb4, 0xb5, 0xb2, 0xb5, 0xb5, 0xb3, 0xb5, 0xb5, 0xb5, 0xb6, 0xb5, 0xb5, 0xb5, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb7, 0xbb, 0xbb, 0xbb, 0xba, 0xbd, 0xbd, 0xbb, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbb, 0xba, 0xba, 0xba, 0xba, 0xba, 0xb9, 0xb6, 0xb5, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb7, 0xb7, 0xb6, 0xb6, 0xb6, 0xb6, 0xb5, 0xb6, 0xb7, 0xb9, 0xb9, 0xb9, 0xba, 0xb9, 0xb5, 0xb5, 0xb6, 0xb6, 0xb6, 0xb6, 0xb7, 0xb6, 0xb7, 0xb6, 0xb6, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb3, 0xb5, 0xb5, 0xb6, 0xb6, 0xb6, 0xb5, 0xb6, 0xb6, 0xb5, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb7, 0xb6, 0xb6, 0xbb, 0xbd, 0xbb, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbe, 0xbd, 0xbd, 0xbd, 0xbe, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbe, 0xbd, 0xbb, 0xb9, 0xb9, 0xb9, 0xba, 0xba, 0xbb, 0xbb, 0xbd, 0xbd, 0xbd, 0xbe, 0xbe, 0xbe, 0xbe, 0xbf, 0xbe, 0xbd, 0xbf, 0xc0, 0xc1, 0xc0, 0xc0, 0xbf, 0xbf, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbd, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xcf, 0xbe, 0xcf, 0xc0, 0xc1, 0xc1, 0xc1, 0xc1, 0xd1, 0xc1, 0xc1, 0xc1, 0xd1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc0, 0xc1, 0xc0, 0xc1, 0xc0, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc0, 0xc1, 0xc1, 0xc1, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xbf, 0xbf, 0xc0, 0xc0, 0xbf, 0xc0, 0xc0, 0xbf, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0x48, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0x48, 0xcf, 0xd0, 0xd0, 0xd0, 0xd0, 0x47, 0x48, 0x47, 0x48, 0x47, 0x48, 0x47, 0x48, 0x47, 0x48, 0x48, 0x48, 0x47, 0x47, 0x47, 0x47, 0x48, 0x48, 0x48, 0x46, 0x48, 0x49, 0x48, 0xd0, 0xd0, 0xd0, 0xff, 0xff, 0xff, 0xd0, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0x45, 0x45, 0x45, 0x45, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x46, 0x48, 0x48, 0x49, 0x49, 0x49, 0xfe, 0x49, 0xfe, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x49, 0x47, 0x36, 0x33, 0x38, 0x38, 0x38, 0x38, 0x3a, 0x3d, 0x3b, 0x39, 0x3d, 0x3f, 0x3f, 0x3f, 0x3f, 0x3f, 0x3d, 0x41, 0x44, 0x44, 0x44, 0x42,
0xd1, 0xd1, 0xd1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xd1, 0xd1, 0xb7, 0xa9, 0xaf, 0xb1, 0xb1, 0xb1, 0xb1, 0xb5, 0xbd, 0xbb, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbd, 0xb9, 0xb7, 0xb9, 0xb9, 0xb9, 0xb9, 0xba, 0xb9, 0xba, 0xba, 0xbb, 0xbd, 0xba, 0xbe, 0xba, 0xb1, 0xb3, 0xb5, 0xb5, 0xb6, 0xb6, 0xb7, 0xb7, 0xb9, 0xbd, 0xbf, 0xbf, 0xc0, 0xc0, 0xc1, 0xc1, 0xc1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xc1, 0xc0, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xd1, 0xc1, 0xd1, 0xc1, 0xc1, 0xc0, 0xbf, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc1, 0xc1, 0xd1, 0xc1, 0xd1, 0xc1, 0xd1, 0xd1, 0xdd, 0xf0, 0xf1, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xd9, 0x8e, 0x8e, 0x8e, 0x8e, 0x8e, 0x8e, 0x8e, 0xca, 0x8e, 0xca, 0x90, 0x8e, 0xef, 0xef, 0xef, 0xef, 0xf0, 0xef, 0xf0, 0xf0, 0xf0, 0xf0, 0xf0, 0xf1, 0xf0, 0xd9, 0xda, 0xcb, 0xda, 0xcb, 0xcc, 0xcc, 0xcc, 0xcc, 0x94, 0xa5, 0xb6, 0xb5, 0xb2, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb6, 0xb5, 0xb6, 0xb6, 0xb6, 0xb5, 0xb7, 0xb6, 0xb6, 0xb6, 0xb6, 0xbb, 0xbb, 0xbd, 0xbb, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbb, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xba, 0xba, 0xba, 0xb9, 0xba, 0xbb, 0xb8, 0xb7, 0xb5, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb7, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb7, 0xb7, 0xb9, 0xb7, 0xb9, 0xba, 0xba, 0xb3, 0xb5, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb5, 0xb5, 0xb5, 0xb5, 0xb3, 0xb5, 0xb3, 0xb3, 0xb3, 0xb5, 0xb6, 0xb6, 0xb5, 0xb6, 0xb5, 0xb5, 0xb6, 0xb6, 0xb5, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xbb, 0xba, 0xbd, 0xbb, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbb, 0xbd, 0xbd, 0xbd, 0xbe, 0xbb, 0xb7, 0xb7, 0xb9, 0xb9, 0xb9, 0xba, 0xbb, 0xbb, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbe, 0xbd, 0xbd, 0xbd, 0xbf, 0xc0, 0xc0, 0xc0, 0xc0, 0xbf, 0xbf, 0xbf, 0xbe, 0xbe, 0xbe, 0xbb, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbe, 0xbd, 0xbe, 0xbd, 0xbf, 0xc1, 0xc1, 0xc1, 0xd1, 0xc1, 0xd1, 0xd1, 0xd1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc0, 0xc1, 0xc1, 0xc1, 0xc1, 0xc0, 0xc1, 0xc0, 0xc1, 0xc0, 0xc0, 0xc0, 0xc0, 0xbf, 0xc0, 0xbf, 0xc0, 0xc0, 0xc0, 0xc0, 0xbf, 0xc0, 0xbf, 0xbf, 0xc0, 0xbf, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0x46, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0x46, 0xd0, 0xd0, 0xc0, 0xfe, 0x47, 0x47, 0x48, 0x47, 0x48, 0x47, 0x48, 0x47, 0x48, 0x47, 0x48, 0x48, 0x47, 0x45, 0x47, 0x47, 0x46, 0x48, 0x47, 0xfe, 0x46, 0x48, 0xfe, 0x49, 0xd0, 0xff, 0xff, 0xff, 0xd0, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0xff, 0x49, 0xff, 0xff, 0x47, 0x44, 0x45, 0x47, 0x48, 0x48, 0x46, 0x48, 0x46, 0x48, 0x46, 0x48, 0x48, 0x48, 0x48, 0x48, 0x49, 0x49, 0x49, 0x49, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x47, 0xff, 0x39, 0x33, 0x36, 0x38, 0x38, 0x33, 0x38, 0x39, 0x3d, 0x3b, 0x3b, 0x3f, 0x3f, 0x3f, 0x3f, 0x3f, 0x3f, 0x3f, 0x44, 0x42, 0x44, 0x44,
0xd1, 0xd1, 0xd1, 0xd1, 0xc1, 0xc1, 0xd1, 0xc1, 0xd1, 0xc1, 0xd1, 0xc1, 0xc1, 0xc1, 0xc1, 0xd1, 0xd1, 0xbb, 0xab, 0xad, 0xb1, 0xb1, 0xb1, 0xb6, 0xbd, 0xbd, 0xbe, 0xbf, 0xbf, 0xbe, 0xbe, 0xbd, 0xb9, 0xb7, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xba, 0xb9, 0xbb, 0xbb, 0xbb, 0xbb, 0xbe, 0xb7, 0xb1, 0xb3, 0xb5, 0xb6, 0xb6, 0xb6, 0xb7, 0xb9, 0xbd, 0xbe, 0xbf, 0xbf, 0xc0, 0xc0, 0xc1, 0xc1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xc0, 0xc0, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xd1, 0xd1, 0xd1, 0xc1, 0xc0, 0xbf, 0xc0, 0xbf, 0xc0, 0xc0, 0xc0, 0xc0, 0xc1, 0xc1, 0xc1, 0xd1, 0xc1, 0xc1, 0xd1, 0xd1, 0xd1, 0xdd, 0xf0, 0xf0, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf2, 0xca, 0x90, 0x8e, 0x8e, 0x8e, 0xca, 0x8e, 0xca, 0x8e, 0xca, 0x8e, 0xca, 0x90, 0xca, 0xef, 0x1b, 0xf0, 0xef, 0xf0, 0xef, 0xf0, 0xf0, 0xf0, 0xf0, 0xf1, 0xf0, 0xd9, 0xda, 0xcb, 0xda, 0x94, 0xda, 0xcc, 0xcc, 0xcc, 0x9e, 0x94, 0xa0, 0xb6, 0xb6, 0xb3, 0xb3, 0xb5, 0xb5, 0xb5, 0xb5, 0xb6, 0xb5, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb7, 0xb6, 0xb6, 0xb6, 0xba, 0xbb, 0xbd, 0xbb, 0xbd, 0xbd, 0xbb, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xb9, 0xba, 0xba, 0xbb, 0xba, 0xb9, 0xba, 0xba, 0xb7, 0xb6, 0xb5, 0xb6, 0xb6, 0xb6, 0xb5, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb7, 0xb9, 0xb9, 0xb7, 0xb9, 0xb9, 0xbb, 0xba, 0xb5, 0xb5, 0xb6, 0xb6, 0xb6, 0xb5, 0xb6, 0xb5, 0xb5, 0xb3, 0xb3, 0xb3, 0xb5, 0xb3, 0xb3, 0xb3, 0xb3, 0xb3, 0xb3, 0xb5, 0xb5, 0xb6, 0xb6, 0xb5, 0xb6, 0xb5, 0xb6, 0xb5, 0xb6, 0xb6, 0xb7, 0xb6, 0xb6, 0xb6, 0xb6, 0xba, 0xbb, 0xbb, 0xbb, 0xbb, 0xbd, 0xbd, 0xbb, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbb, 0xbd, 0xbd, 0xbd, 0xbb, 0xbd, 0xbb, 0xb7, 0xb7, 0xb7, 0xb9, 0xb9, 0xb9, 0xbb, 0xba, 0xbd, 0xbb, 0xbb, 0xbd, 0xbb, 0xbd, 0xbd, 0xbd, 0xbe, 0xbf, 0xc1, 0xc0, 0xc0, 0xbf, 0xc0, 0xbf, 0xbf, 0xbe, 0xbe, 0xbe, 0xbe, 0xbd, 0xbd, 0xbd, 0xbd, 0xbb, 0xbd, 0xbb, 0xbb, 0xbd, 0xbc, 0xbf, 0xc1, 0xc0, 0xc0, 0xc1, 0xc0, 0xc1, 0xc0, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc0, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc0, 0xc1, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xcf, 0xfe, 0xfe, 0x46, 0xfe, 0xfe, 0xfe, 0xfe, 0x46, 0xfe, 0x48, 0xfe, 0x48, 0xfe, 0x48, 0xfe, 0xfe, 0xfe, 0xfe, 0xc0, 0xd0, 0x47, 0x47, 0x48, 0x47, 0x47, 0x47, 0x47, 0x48, 0x47, 0x48, 0x47, 0x48, 0x47, 0x48, 0x47, 0x47, 0x46, 0x47, 0x48, 0x46, 0x48, 0x48, 0x48, 0x48, 0xfe, 0xff, 0xd0, 0x49, 0xd0, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x48, 0x44, 0x45, 0x47, 0x49, 0x47, 0x48, 0x48, 0x48, 0x48, 0x48, 0x46, 0x48, 0x46, 0x48, 0x48, 0xfe, 0x49, 0x49, 0xfe, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0xff, 0x41, 0x2f, 0x38, 0x36, 0x38, 0x36, 0x38, 0x38, 0x3d, 0x39, 0x3d, 0x3f, 0x3f, 0x3f, 0x3f, 0x3f, 0x3f, 0x3f, 0x41, 0x44, 0x44, 0x42,
0xd1, 0xd1, 0xd1, 0xd1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xd1, 0xc1, 0xc1, 0xc1, 0xc1, 0xd1, 0xd1, 0xbc, 0xaf, 0xad, 0xb1, 0xb1, 0xb9, 0xbd, 0xbd, 0xbf, 0xbf, 0xbf, 0xbe, 0xbe, 0xbd, 0xb7, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xba, 0xba, 0xba, 0xbb, 0xbb, 0xbd, 0xbd, 0xb5, 0xb3, 0xb5, 0xb6, 0xb6, 0xb7, 0xb6, 0xb7, 0xbd, 0xbb, 0xbf, 0xbf, 0xc0, 0xc0, 0xc1, 0xc1, 0xc1, 0xc1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xc1, 0xc1, 0xc0, 0xc1, 0xc1, 0xc1, 0xd1, 0xc1, 0xc1, 0xc1, 0xc1, 0xd1, 0xd1, 0xd1, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc1, 0xd1, 0xc1, 0xd1, 0xd1, 0xd1, 0xc1, 0xd1, 0xd1, 0xdd, 0xf1, 0xf0, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf2, 0xf3, 0xf3, 0xca, 0x8e, 0xca, 0x8e, 0x8e, 0xca, 0x8e, 0x8e, 0xca, 0x8e, 0xca, 0x8e, 0xca, 0x90, 0xca, 0xef, 0xef, 0xef, 0xf0, 0xef, 0xf0, 0xf0, 0xf0, 0xf0, 0xf0, 0xf0, 0xd9, 0xcb, 0xcb, 0xcb, 0xcb, 0xcc, 0xcb, 0xcc, 0xcc, 0xcc, 0x9e, 0xcc, 0xa0, 0xb5, 0xb6, 0xb2, 0xb5, 0xb5, 0xb6, 0xb5, 0xb6, 0xb5, 0xb5, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb7, 0xb6, 0xb6, 0xb9, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbe, 0xbd, 0xbd, 0xba, 0xba, 0xba, 0xba, 0xba, 0xba, 0xba, 0xbb, 0xbb, 0xb9, 0xb6, 0xb5, 0xb6, 0xb6, 0xb6, 0xb5, 0xb6, 0xb6, 0xb6, 0xb6, 0xb5, 0xb7, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xbb, 0xb9, 0xb5, 0xb3, 0xb6, 0xb5, 0xb5, 0xb5, 0xb5, 0xb3, 0xb3, 0xb1, 0xb3, 0xb3, 0xb3, 0xb3, 0xb1, 0xb3, 0xb3, 0xb3, 0xb1, 0xb5, 0xb6, 0xb5, 0xb6, 0xb5, 0xb6, 0xb5, 0xb6, 0xb5, 0xb6, 0xb7, 0xb6, 0xb6, 0xb6, 0xb5, 0xba, 0xbb, 0xbd, 0xbb, 0xbb, 0xba, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbb, 0xbd, 0xbb, 0xba, 0xbb, 0xbd, 0xbd, 0xbd, 0xbb, 0xbd, 0xbd, 0xb9, 0xb7, 0xb7, 0xb7, 0xb9, 0xba, 0xba, 0xba, 0xba, 0xba, 0xba, 0xbd, 0xbb, 0xbb, 0xbb, 0xbd, 0xbf, 0xc0, 0xbf, 0xc0, 0xc0, 0xbf, 0xbf, 0xbf, 0xbe, 0xbe, 0xbd, 0xbe, 0xbd, 0xbb, 0xbd, 0xbb, 0xbd, 0xbd, 0xbb, 0xbd, 0xbb, 0xbe, 0xbf, 0xbf, 0xc0, 0xc0, 0xc0, 0xc0, 0xbf, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc1, 0xc0, 0xc1, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xbf, 0xc0, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xc0, 0xbf, 0xbe, 0xbf, 0xbf, 0xcf, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0x46, 0xfe, 0x46, 0xfe, 0xfe, 0xfe, 0x46, 0xfe, 0xfe, 0x48, 0xfe, 0x46, 0xcf, 0xff, 0x48, 0x48, 0x48, 0x48, 0x47, 0x48, 0x47, 0x48, 0x47, 0x46, 0x47, 0x48, 0x46, 0x48, 0x47, 0x47, 0x47, 0x48, 0x47, 0x48, 0x47, 0x46, 0x48, 0x48, 0x48, 0xfe, 0xff, 0xff, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0xff, 0x49, 0x45, 0x45, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x49, 0x49, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x49, 0x45, 0x34, 0x36, 0x38, 0x36, 0x38, 0x38, 0x34, 0x3b, 0x3d, 0x3d, 0x3f, 0x3f, 0x3f, 0x3f, 0x3f, 0x3f, 0x3f, 0x40, 0x44, 0x42, 0x44,
0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xc1, 0xc1, 0xd1, 0xc1, 0xd1, 0xc1, 0xc1, 0xc1, 0xd1, 0xc1, 0xd1, 0xc1, 0xd1, 0xd1, 0xbf, 0xae, 0xad, 0xb3, 0xb7, 0xbe, 0xbe, 0xbf, 0xbf, 0xc0, 0xbe, 0xbe, 0xbb, 0xb7, 0xb7, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xba, 0xba, 0xba, 0xba, 0xba, 0xbb, 0xbb, 0xbd, 0xbd, 0xb3, 0xb5, 0xb5, 0xb5, 0xb6, 0xb5, 0xb9, 0xba, 0xbd, 0xbe, 0xbf, 0xbf, 0xc0, 0xc0, 0xc1, 0xc1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc0, 0xc1, 0xc1, 0xd1, 0xd1, 0xc1, 0xd1, 0xd1, 0xd1, 0xd1, 0xc0, 0xc0, 0xbf, 0xc0, 0xc0, 0xc0, 0xc1, 0xc1, 0xc1, 0xc1, 0xd1, 0xd1, 0xc1, 0xd1, 0xd1, 0xc1, 0xd1, 0xdd, 0xf0, 0xf0, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf2, 0xf3, 0x8e, 0x8e, 0x8e, 0x8e, 0xca, 0x8e, 0x8e, 0xca, 0x8e, 0xca, 0x8e, 0xca, 0x8e, 0xca, 0x90, 0xca, 0xef, 0xef, 0xef, 0xf0, 0xf0, 0xf0, 0xf0, 0xf0, 0xf1, 0xf0, 0xd9, 0xda, 0xcb, 0xda, 0xcb, 0xcc, 0xcb, 0xcc, 0xcc, 0xcc, 0x9e, 0x9e, 0x9e, 0xa0, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb7, 0xb6, 0xb6, 0xb7, 0xb6, 0xb7, 0xb7, 0xbe, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xb9, 0xbb, 0xba, 0xba, 0xba, 0xbb, 0xba, 0xbb, 0xbb, 0xbb, 0xba, 0xb7, 0xb6, 0xb5, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb5, 0xb7, 0xb9, 0xb7, 0xb9, 0xb9, 0xb7, 0xba, 0xb9, 0xbd, 0xb7, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb3, 0xb3, 0xb3, 0xaf, 0xb1, 0xb3, 0xb3, 0xb3, 0xb3, 0xb1, 0xb1, 0xb1, 0xb3, 0xb3, 0xb3, 0xb5, 0xb6, 0xb6, 0xb6, 0xb5, 0xb6, 0xb5, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb9, 0xbb, 0xbd, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbb, 0xbd, 0xbd, 0xba, 0xbb, 0xbd, 0xbd, 0xbd, 0xbd, 0xbb, 0xbd, 0xbd, 0xb9, 0xb6, 0xb7, 0xb7, 0xb7, 0xb9, 0xb9, 0xb9, 0xb9, 0xba, 0xb9, 0xbb, 0xbb, 0xbd, 0xbd, 0xbd, 0xbf, 0xbf, 0xbf, 0xc0, 0xc0, 0xbf, 0xbf, 0xbe, 0xbe, 0xbe, 0xbd, 0xbd, 0xbd, 0xbe, 0xbd, 0xbb, 0xbd, 0xbd, 0xbd, 0xbb, 0xbd, 0xc0, 0xbf, 0xc0, 0xbf, 0xc0, 0xc0, 0xc0, 0xc0, 0xbf, 0xc0, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xc0, 0xbf, 0xc0, 0xbf, 0xbf, 0xbf, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbd, 0xbe, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbb, 0xbd, 0xbd, 0xbb, 0xbd, 0xbb, 0xba, 0xb7, 0xce, 0x46, 0x49, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0x49, 0xfe, 0xfe, 0xfe, 0xfe, 0x48, 0xfe, 0xfe, 0xfe, 0xfe, 0x45, 0x41, 0x45, 0x45, 0x47, 0x47, 0x47, 0x48, 0x48, 0x48, 0x48, 0x49, 0x48, 0x49, 0x48, 0x49, 0x47, 0x47, 0x47, 0x47, 0x46, 0x47, 0x48, 0x48, 0x48, 0x46, 0x48, 0xff, 0xd0, 0x49, 0xff, 0x49, 0x49, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0x45, 0x45, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x49, 0xfe, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x49, 0x39, 0x33, 0x36, 0x38, 0x36, 0x38, 0x38, 0x38, 0x39, 0x3d, 0x3f, 0x3f, 0x3f, 0x3f, 0x3f, 0x3f, 0x3f, 0x3f, 0x44, 0x44, 0x44,
0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xc1, 0xc1, 0xc1, 0xc1, 0xd1, 0xd1, 0xd1, 0xd1, 0xc1, 0xc1, 0xc1, 0xc1, 0xd1, 0xd1, 0xd0, 0xb3, 0xad, 0xbb, 0xbf, 0xbf, 0xbf, 0xc0, 0xbf, 0xbf, 0xbe, 0xba, 0xb7, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xba, 0xb9, 0xba, 0xba, 0xba, 0xbb, 0xbb, 0xbb, 0xbe, 0xb8, 0xb3, 0xb3, 0xb5, 0xb5, 0xb6, 0xb6, 0xbb, 0xbb, 0xbd, 0xbe, 0xbf, 0xbf, 0xc0, 0xc1, 0xc1, 0xc1, 0xc1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xd1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xd1, 0xd1, 0xd1, 0xc1, 0xc0, 0xbf, 0xc0, 0xc0, 0xc0, 0xc1, 0xc1, 0xc1, 0xc1, 0xd1, 0xd1, 0xc1, 0xd1, 0xc1, 0xd1, 0xd1, 0xce, 0xf2, 0xf0, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf2, 0xd9, 0x8e, 0x8e, 0x8e, 0xca, 0x8e, 0x8e, 0xca, 0x8e, 0xca, 0x8e, 0x8e, 0xca, 0x8e, 0xca, 0x8e, 0x8e, 0xd9, 0xef, 0xef, 0xf0, 0xef, 0xf0, 0xf0, 0xf0, 0xf0, 0xf1, 0xf4, 0xcb, 0xcb, 0xcb, 0xcb, 0xcb, 0xcc, 0xcc, 0xcc, 0xcc, 0x9e, 0xcc, 0xa0, 0x9e, 0xa3, 0xb6, 0xb5, 0xb6, 0xb5, 0xb5, 0xb6, 0xb5, 0xb6, 0xb6, 0xb6, 0xb5, 0xb6, 0xb6, 0xb6, 0xb6, 0xb7, 0xb6, 0xb7, 0xb7, 0xb6, 0xb7, 0xbb, 0xbe, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbe, 0xbd, 0xbb, 0xba, 0xba, 0xba, 0xba, 0xba, 0xba, 0xba, 0xba, 0xba, 0xba, 0xba, 0xb9, 0xb6, 0xb5, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb9, 0xb7, 0xb9, 0xb9, 0xb9, 0xb9, 0xba, 0xba, 0xbd, 0xb9, 0xb3, 0xb3, 0xb5, 0xb3, 0xb3, 0xb3, 0xb1, 0xaf, 0xb1, 0xb3, 0xb3, 0xb1, 0xb3, 0xb3, 0xb3, 0xb1, 0xb3, 0xb1, 0xb3, 0xb3, 0xb5, 0xb6, 0xb6, 0xb5, 0xb6, 0xb6, 0xb6, 0xb5, 0xb6, 0xb6, 0xb6, 0xb5, 0xb9, 0xbb, 0xbd, 0xbd, 0xbd, 0xbb, 0xbb, 0xbb, 0xbb, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbd, 0xbb, 0xbd, 0xbb, 0xbd, 0xbd, 0xba, 0xb7, 0xb6, 0xb7, 0xb7, 0xb7, 0xb9, 0xb7, 0xb9, 0xb9, 0xb9, 0xb9, 0xba, 0xbb, 0xbd, 0xbf, 0xbf, 0xbf, 0xbf, 0xc0, 0xbf, 0xbf, 0xbe, 0xbe, 0xbe, 0xbe, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbb, 0xbb, 0xbe, 0xbf, 0xc0, 0xbf, 0xc0, 0xbf, 0xbf, 0xbf, 0xc0, 0xc0, 0xbf, 0xc0, 0xbf, 0xc0, 0xbf, 0xbf, 0xc0, 0xbf, 0xc0, 0xc0, 0xbf, 0xbe, 0xbd, 0xbd, 0xbe, 0xbd, 0xbd, 0xbd, 0xbd, 0xbb, 0xbb, 0xbb, 0xba, 0xba, 0xba, 0xbb, 0xba, 0xba, 0xb9, 0xb9, 0xb9, 0xb9, 0xb7, 0xb7, 0xb5, 0xb0, 0x42, 0x49, 0xfe, 0x48, 0xfe, 0x48, 0xfe, 0x48, 0xfe, 0xfe, 0xfe, 0xfe, 0x49, 0xfe, 0x48, 0xfe, 0xfe, 0xd0, 0x46, 0x38, 0x38, 0x3d, 0x3b, 0x3f, 0x3f, 0x3f, 0x40, 0x41, 0x41, 0x44, 0x44, 0x45, 0x45, 0x47, 0x47, 0x47, 0x47, 0x46, 0x47, 0x48, 0x47, 0x47, 0x48, 0x48, 0x48, 0xfe, 0xff, 0x49, 0x49, 0x49, 0xff, 0x49, 0x49, 0xff, 0x49, 0x49, 0x49, 0xff, 0x49, 0xff, 0x49, 0x49, 0x49, 0xff, 0x47, 0x47, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x49, 0x49, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0xff, 0x41, 0x2f, 0x34, 0x34, 0x38, 0x34, 0x36, 0x38, 0x36, 0x3d, 0x3f, 0x3f, 0x3f, 0x3f, 0x3f, 0x3f, 0x3f, 0x3f, 0x40, 0x45, 0x42,
0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xc1, 0xd1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xd1, 0xc1, 0xc1, 0xc1, 0xd1, 0xd1, 0xb6, 0xba, 0xbf, 0xbf, 0xc0, 0xbf, 0xc1, 0xbf, 0xbe, 0xb7, 0xb7, 0xb9, 0xb7, 0xb9, 0xb7, 0xb9, 0xb9, 0xba, 0xba, 0xba, 0xba, 0xb9, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbe, 0xb5, 0xb1, 0xb5, 0xb5, 0xb5, 0xb6, 0xb9, 0xbb, 0xbd, 0xbd, 0xbe, 0xbf, 0xbf, 0xc0, 0xc1, 0xc1, 0xd1, 0xc1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xd1, 0xc1, 0xd1, 0xd1, 0xd1, 0xd1, 0xc1, 0xd1, 0xd1, 0xc0, 0xbf, 0xc0, 0xc1, 0xc0, 0xc1, 0xc1, 0xd1, 0xc1, 0xd1, 0xd1, 0xc1, 0xd1, 0xd1, 0xd1, 0xd1, 0xdd, 0xf0, 0xf0, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf2, 0xd9, 0x8e, 0x8e, 0xca, 0x8e, 0xca, 0x8e, 0xca, 0x8e, 0xca, 0x8e, 0xca, 0x8e, 0xca, 0x8e, 0xca, 0x8e, 0x90, 0xf1, 0xef, 0xef, 0xf0, 0xf0, 0xf0, 0xf0, 0xf0, 0xf0, 0xcb, 0xcb, 0xcb, 0xcb, 0xcb, 0xcc, 0xcb, 0xcc, 0xcc, 0xcc, 0x9e, 0xcc, 0x9e, 0xa0, 0xa0, 0xa3, 0xb6, 0xb5, 0xb5, 0xb6, 0xb5, 0xb5, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb7, 0xb6, 0xb6, 0xb6, 0xb7, 0xb7, 0xb7, 0xb6, 0xb7, 0xba, 0xbe, 0xbe, 0xbd, 0xbd, 0xbe, 0xbd, 0xbd, 0xbe, 0xba, 0xba, 0xbb, 0xba, 0xba, 0xba, 0xba, 0xba, 0xba, 0xbb, 0xbb, 0xba, 0xba, 0xba, 0xb7, 0xb5, 0xb5, 0xb6, 0xb6, 0xb6, 0xb5, 0xb6, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xba, 0xba, 0xba, 0xbd, 0xb9, 0xb3, 0xb1, 0xb3, 0xb3, 0xb1, 0xb1, 0xaf, 0xaf, 0xb3, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb3, 0xb1, 0xb1, 0xb3, 0xb3, 0xb3, 0xb5, 0xb7, 0xb6, 0xb6, 0xb5, 0xb5, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb7, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbd, 0xbb, 0xbb, 0xbb, 0xbd, 0xbb, 0xbd, 0xbd, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbd, 0xbd, 0xbd, 0xbb, 0xbd, 0xbb, 0xbb, 0xbd, 0xba, 0xb6, 0xb6, 0xb6, 0xb7, 0xb7, 0xb7, 0xb7, 0xb9, 0xb7, 0xb9, 0xb9, 0xba, 0xba, 0xbb, 0xbe, 0xbe, 0xbf, 0xbf, 0xc0, 0xbf, 0xbf, 0xbe, 0xbe, 0xbd, 0xbe, 0xbd, 0xbd, 0xbb, 0xbd, 0xbd, 0xbd, 0xbb, 0xbd, 0xbd, 0xbf, 0xbf, 0xbf, 0xc0, 0xbf, 0xc0, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xc0, 0xbf, 0xbf, 0xc0, 0xbf, 0xc0, 0xbf, 0xbf, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbb, 0xbb, 0xba, 0xba, 0xba, 0xba, 0xba, 0xb9, 0xba, 0xb9, 0xb9, 0xb9, 0xb7, 0xb7, 0xb6, 0xb6, 0xb5, 0xb4, 0x41, 0x42, 0xff, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0x48, 0xcf, 0xc0, 0x46, 0x38, 0x38, 0x3a, 0x3a, 0x3a, 0x3a, 0x3a, 0x3a, 0x3b, 0x3b, 0x3b, 0x3d, 0x3d, 0x39, 0x45, 0x48, 0x47, 0x47, 0x48, 0x47, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x49, 0x49, 0xff, 0x49, 0x49, 0x49, 0xff, 0x49, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x46, 0x48, 0x48, 0xfe, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x49, 0x47, 0x3b, 0x3b, 0x36, 0x36, 0x38, 0x38, 0x34, 0x34, 0x36, 0x3f, 0x40, 0x3f, 0x40, 0x3f, 0x3f, 0x3f, 0x3f, 0x3f, 0x42, 0x45,
0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xc1, 0xc1, 0xc1, 0xd1, 0xc1, 0xd1, 0xc1, 0xd1, 0xc1, 0xd1, 0xc1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd0, 0xc0, 0xbf, 0xbf, 0xc0, 0xbf, 0xc0, 0xbd, 0xb7, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xba, 0xb9, 0xba, 0xba, 0xba, 0xbb, 0xbb, 0xbb, 0xba, 0xbe, 0xbd, 0xb5, 0xb1, 0xb5, 0xb5, 0xb6, 0xb6, 0xb9, 0xba, 0xbd, 0xbd, 0xbe, 0xbf, 0xc0, 0xc0, 0xc1, 0xc1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xc1, 0xc1, 0xc1, 0xd1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xd1, 0xc1, 0xd1, 0xd1, 0xd1, 0xc1, 0xc1, 0xc0, 0xc0, 0xc1, 0xc1, 0xd1, 0xc1, 0xd1, 0xc1, 0xd1, 0xd1, 0xc1, 0xc1, 0xd1, 0xd1, 0xd1, 0xce, 0xf2, 0xf0, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf2, 0xca, 0x8e, 0x8e, 0x8e, 0x8e, 0x8e, 0xca, 0x8e, 0x8e, 0xca, 0x8e, 0xca, 0x8e, 0xca, 0x8e, 0xca, 0xca, 0xca, 0x90, 0xf1, 0xef, 0xef, 0xf0, 0xf0, 0xf0, 0xf0, 0xf0, 0xcb, 0xf4, 0xcb, 0xcb, 0xcb, 0xcb, 0xcc, 0xcb, 0xcc, 0xcc, 0xcc, 0x9e, 0x9e, 0xa0, 0xa0, 0x9c, 0xa8, 0xb5, 0xb6, 0xb5, 0xb5, 0xb6, 0xb5, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb7, 0xb6, 0xb7, 0xb6, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb9, 0xbe, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xba, 0xba, 0xbb, 0xbb, 0xba, 0xba, 0xba, 0xbb, 0xb9, 0xba, 0xbb, 0xbb, 0xba, 0xba, 0xba, 0xb7, 0xb5, 0xb6, 0xb5, 0xb6, 0xb6, 0xb6, 0xb7, 0xb9, 0xb7, 0xb9, 0xb9, 0xb9, 0xba, 0xb9, 0xba, 0xbb, 0xbb, 0xb9, 0xaf, 0xb1, 0xb3, 0xb1, 0xaf, 0xad, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb3, 0xb1, 0xb3, 0xb3, 0xb3, 0xb3, 0xb3, 0xb3, 0xb3, 0xb5, 0xb6, 0xb5, 0xb6, 0xb6, 0xb6, 0xb6, 0xb5, 0xb7, 0xb5, 0xb7, 0xbb, 0xba, 0xbb, 0xbd, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbd, 0xbd, 0xbd, 0xbd, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xba, 0xbb, 0xbb, 0xbb, 0xbb, 0xbd, 0xbd, 0xbe, 0xba, 0xb7, 0xb5, 0xb6, 0xb6, 0xb6, 0xb7, 0xb9, 0xb7, 0xb9, 0xb9, 0xb9, 0xba, 0xbb, 0xbd, 0xbe, 0xbe, 0xbf, 0xbf, 0xbf, 0xbf, 0xbe, 0xbe, 0xbe, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbb, 0xbb, 0xbe, 0xbf, 0xbf, 0xbf, 0xc0, 0xc0, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbe, 0xbd, 0xbb, 0xbd, 0xbb, 0xbd, 0xbb, 0xbb, 0xba, 0xb9, 0xba, 0xb9, 0xba, 0xb9, 0xb7, 0xb9, 0xb7, 0xb7, 0xb7, 0xb6, 0xb6, 0xb5, 0xb5, 0xb4, 0x41, 0x41, 0x47, 0x49, 0xfe, 0x48, 0xfe, 0xfe, 0xfe, 0x48, 0xfe, 0x48, 0x49, 0x48, 0xfe, 0x48, 0xcf, 0xc0, 0xbe, 0xc0, 0x43, 0x38, 0x3a, 0x3b, 0x3b, 0x3b, 0x3d, 0x3d, 0x3d, 0x3f, 0x3d, 0x3d, 0x3f, 0x3a, 0x44, 0x48, 0x48, 0x48, 0x47, 0x48, 0x47, 0x48, 0x48, 0x48, 0x48, 0x48, 0x49, 0xff, 0xfe, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x47, 0x48, 0x47, 0x48, 0x47, 0x47, 0x48, 0x47, 0x48, 0x47, 0x47, 0x47, 0x47, 0x44, 0x44, 0x44, 0x44, 0x41, 0x40, 0x40, 0x3f, 0x3f, 0x3d, 0x3b, 0x3d, 0x3b, 0x3d, 0x3b, 0x3b, 0x3a, 0x3a, 0x40, 0x48,
0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xd1, 0xc1, 0xd1, 0xc1, 0xc1, 0xc1, 0xd1, 0xd1, 0xd1, 0xd1, 0xc1, 0xc0, 0xc0, 0xc0, 0xbd, 0xb6, 0xb7, 0xb9, 0xb7, 0xb9, 0xb7, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xba, 0xba, 0xba, 0xba, 0xbb, 0xbb, 0xbd, 0xba, 0xbe, 0xbb, 0xb1, 0xb3, 0xb5, 0xb5, 0xb6, 0xb6, 0xb9, 0xb9, 0xbb, 0xbd, 0xbe, 0xbe, 0xbf, 0xc0, 0xc0, 0xc1, 0xc1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xc1, 0xc1, 0xc1, 0xc1, 0xd1, 0xc1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xc1, 0xc0, 0xc0, 0xc1, 0xc1, 0xd1, 0xc1, 0xd1, 0xc1, 0xc1, 0xd1, 0xd1, 0xd1, 0xc1, 0xd1, 0xd1, 0xce, 0xf0, 0xf0, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xf2, 0xca, 0x8e, 0x8e, 0x8e, 0x8e, 0xca, 0x8e, 0xca, 0x8e, 0xca, 0x8e, 0xca, 0x8e, 0xca, 0x8e, 0xca, 0x8e, 0xca, 0x8e, 0x90, 0xf1, 0xef, 0xf0, 0xf0, 0xf0, 0xf0, 0xf1, 0xcb, 0xcb, 0xcb, 0xcb, 0xcb, 0xcb, 0xcb, 0xcc, 0xcb, 0xcc, 0xcc, 0xcc, 0x9e, 0x9e, 0xa0, 0xa3, 0xa3, 0xa3, 0xb5, 0xb6, 0xb5, 0xb6, 0xb5, 0xb7, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb7, 0xb7, 0xb7, 0xb7, 0xb6, 0xb7, 0xb7, 0xb9, 0xbe, 0xbe, 0xbd, 0xbe, 0xbd, 0xbe, 0xbb, 0xba, 0xb9, 0xbb, 0xba, 0xba, 0xba, 0xba, 0xba, 0xba, 0xbb, 0xba, 0xbb, 0xbb, 0xba, 0xba, 0xb9, 0xb6, 0xb5, 0xb6, 0xb5, 0xb6, 0xb7, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xbb, 0xba, 0xb9, 0xbb, 0xbe, 0xb6, 0xaf, 0xaf, 0xaf, 0xb1, 0xad, 0xad, 0xb1, 0xb1, 0xaf, 0xb1, 0xb1, 0xb1, 0xb3, 0xb1, 0xb1, 0xb3, 0xb3, 0xb3, 0xb3, 0xb3, 0xb5, 0xb6, 0xb6, 0xb5, 0xb5, 0xb6, 0xb6, 0xb6, 0xb5, 0xb7, 0xba, 0xbb, 0xba, 0xba, 0xbb, 0xbd, 0xbb, 0xbd, 0xba, 0xbb, 0xbb, 0xbd, 0xbb, 0xbd, 0xba, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbd, 0xba, 0xbd, 0xbe, 0xbd, 0xb7, 0xb5, 0xb6, 0xb6, 0xb6, 0xb7, 0xb6, 0xb7, 0xb7, 0xb9, 0xb7, 0xbb, 0xbd, 0xbd, 0xbd, 0xbe, 0xbe, 0xbf, 0xbf, 0xbf, 0xbe, 0xbe, 0xbd, 0xbd, 0xbd, 0xbd, 0xbb, 0xbd, 0xbb, 0xbd, 0xbb, 0xbe, 0xbf, 0xbf, 0xbf, 0xc0, 0xbf, 0xc0, 0xbe, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbe, 0xbe, 0xbb, 0xba, 0xba, 0xba, 0xba, 0xba, 0xba, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xb7, 0xb7, 0xb7, 0xb7, 0xb6, 0xb6, 0xb6, 0xb5, 0xb5, 0xb4, 0x41, 0x40, 0x41, 0xfe, 0xfe, 0xfe, 0xfe, 0x48, 0xfe, 0xfe, 0xfe, 0xfe, 0x48, 0xfe, 0x49, 0xfe, 0xd0, 0xbf, 0xbf, 0xbf, 0xc0, 0x42, 0x33, 0x3b, 0x3b, 0x3b, 0x3b, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x40, 0x47, 0x48, 0x47, 0x48, 0x47, 0x48, 0x48, 0x48, 0x48, 0x48, 0x49, 0xff, 0xff, 0x49, 0xfe, 0x49, 0x49, 0xfe, 0x49, 0x49, 0x49, 0xfe, 0x49, 0xfe, 0x49, 0x48, 0x49, 0x48, 0x46, 0x48, 0x47, 0x48, 0x49, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x49, 0xfe, 0x47, 0x47, 0x47, 0x47, 0x47, 0x47, 0x47, 0x47, 0x47, 0x47, 0x47, 0x47, 0x48, 0x45, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, 0x45, 0x42, 0x36, 0x38, 0x3b, 0x3a, 0x3a, 0x3a, 0x3a, 0x3a, 0x3b, 0x45,
0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xc1, 0xd1, 0xc1, 0xd1, 0xd1, 0xd1, 0xc1, 0xd1, 0xc1, 0xd1, 0xd1, 0xc1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xc1, 0xc1, 0xbd, 0xb5, 0xb9, 0xb7, 0xb9, 0xb7, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xba, 0xb9, 0xba, 0xba, 0xba, 0xba, 0xbb, 0xbd, 0xbd, 0xbe, 0xb7, 0xb1, 0xb3, 0xb5, 0xb5, 0xb6, 0xb6, 0xb9, 0xba, 0xba, 0xbd, 0xbe, 0xbf, 0xbf, 0xc0, 0xc0, 0xc1, 0xc1, 0xc1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xc1, 0xc1, 0xd1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xd1, 0xc1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xc1, 0xc1, 0xc0, 0xc1, 0xc1, 0xd1, 0xd1, 0xd1, 0xd1, 0xc1, 0xd1, 0xc1, 0xd1, 0xc1, 0xd1, 0xd1, 0xdc, 0xf2, 0xf0, 0xf3, 0xf3, 0xf3, 0xf3, 0xf3, 0xca, 0x8e, 0xca, 0x8e, 0xca, 0x8e, 0xca, 0x8e, 0xca, 0x8e, 0xca, 0x8e, 0xca, 0x8e, 0xca, 0x8e, 0xca, 0xca, 0x8e, 0xca, 0x90, 0xf0, 0xef, 0xf0, 0xf0, 0xf0, 0xf1, 0xf4, 0xcb, 0xf4, 0xcb, 0xcb, 0xcb, 0xcc, 0xcb, 0xcc, 0x94, 0x9e, 0xcc, 0x9e, 0x9e, 0xa0, 0xa0, 0xa8, 0xa3, 0xa7, 0xb5, 0xb6, 0xb6, 0xb5, 0xb6, 0xb6, 0xb7, 0xb6, 0xb7, 0xb6, 0xb7, 0xb6, 0xb7, 0xb6, 0xb7, 0xb6, 0xb6, 0xb7, 0xb7, 0xb7, 0xb6, 0xb9, 0xbd, 0xbe, 0xbd, 0xbd, 0xbe, 0xbb, 0xba, 0xba, 0xba, 0xba, 0xba, 0xba, 0xba, 0xba, 0xba, 0xba, 0xbb, 0xba, 0xba, 0xba, 0xba, 0xbb, 0xbb, 0xb7, 0xb5, 0xb6, 0xb5, 0xb7, 0xb9, 0xba, 0xb9, 0xb9, 0xb9, 0xba, 0xba, 0xbb, 0xb9, 0xbb, 0xbb, 0xbe, 0xb6, 0xaf, 0xad, 0xaf, 0xad, 0xad, 0xb1, 0xb1, 0xb1, 0xaf, 0xb1, 0xb3, 0xb1, 0xb3, 0xb1, 0xb3, 0xb3, 0xb3, 0xb3, 0xb3, 0xb3, 0xb5, 0xb6, 0xb6, 0xb5, 0xb6, 0xb5, 0xb7, 0xb6, 0xb6, 0xbb, 0xba, 0xba, 0xbb, 0xbb, 0xba, 0xba, 0xbb, 0xba, 0xba, 0xba, 0xbd, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xba, 0xbb, 0xbb, 0xbb, 0xbd, 0xbd, 0xbb, 0xb9, 0xb3, 0xb6, 0xb6, 0xb6, 0xb6, 0xb7, 0xb7, 0xb7, 0xb7, 0xb9, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xbe, 0xbf, 0xbe, 0xbe, 0xbe, 0xbe, 0xbd, 0xbd, 0xbd, 0xbb, 0xbd, 0xbd, 0xbb, 0xbd, 0xbe, 0xbf, 0xbf, 0xbf, 0xbf, 0xc0, 0xbf, 0xc0, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbe, 0xbe, 0xbd, 0xbe, 0xbb, 0xba, 0xb9, 0xba, 0xba, 0xba, 0xb7, 0xb9, 0xb9, 0xb9, 0xb7, 0xb9, 0xb7, 0xb7, 0xb6, 0xb6, 0xb6, 0xb5, 0xb6, 0xb5, 0xb0, 0x41, 0x41, 0x41, 0x42, 0x49, 0xfe, 0x48, 0xfe, 0xfe, 0x48, 0xfe, 0x48, 0x49, 0xfe, 0xfe, 0xcf, 0xd0, 0xbf, 0xbf, 0xbf, 0xc0, 0xbf, 0x40, 0x38, 0x3b, 0x3b, 0x3d, 0x3b, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3f, 0x45, 0x48, 0x48, 0x47, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x49, 0xff, 0xff, 0xd0, 0x49, 0x49, 0xfe, 0x49, 0x49, 0x48, 0x49, 0x48, 0x49, 0x48, 0xfe, 0x48, 0xfe, 0x48, 0xfe, 0x48, 0x45, 0x48, 0x48, 0x48, 0xfe, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x49, 0x49, 0x46, 0x47, 0x48, 0x47, 0x48, 0x47, 0x48, 0x47, 0x48, 0x47, 0x48, 0x47, 0x47, 0x45, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, 0x49, 0x42, 0x38, 0x3a, 0x3b, 0x3a, 0x3b, 0x3b, 0x3a, 0x3a, 0x40,
0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xbf, 0xb7, 0xb7, 0xb9, 0xb9, 0xb9, 0xb7, 0xb9, 0xb7, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xba, 0xba, 0xba, 0xbb, 0xbb, 0xbb, 0xbd, 0xbe, 0xb3, 0xb1, 0xb3, 0xb3, 0xb5, 0xb6, 0xb6, 0xb7, 0xb9, 0xbb, 0xbb, 0xbd, 0xbe, 0xbf, 0xc0, 0xc0, 0xc1, 0xc1, 0xc1, 0xc1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xc1, 0xc1, 0xc1, 0xd1, 0xc1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xd1, 0xc1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xc1, 0xd1, 0xd1, 0xdc, 0xf0, 0xf2, 0xf3, 0xf3, 0xf2, 0xf3, 0x8e, 0x8e, 0x8e, 0x8e, 0x8e, 0xca, 0x8e, 0xca, 0x8e, 0xca, 0x8e, 0xca, 0x8e, 0xca, 0x8e, 0xca, 0x8e, 0xca, 0x8e, 0xca, 0x94, 0x8e, 0xf0, 0xef, 0xf0, 0xef, 0xf1, 0xda, 0xf4, 0xcb, 0xcb, 0xcb, 0xcb, 0xcb, 0xcc, 0xcb, 0xcc, 0xcc, 0xcc, 0xcc, 0x9e, 0x9e, 0xa0, 0xa0, 0xa3, 0xa3, 0xab, 0xb5, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb7, 0xb7, 0xb6, 0xb7, 0xb6, 0xb7, 0xb7, 0xb9, 0xb7, 0xb7, 0xb7, 0xbd, 0xbe, 0xbe, 0xbd, 0xbb, 0xba, 0xba, 0xba, 0xba, 0xba, 0xba, 0xba, 0xba, 0xba, 0xbb, 0xba, 0xb9, 0xb9, 0xba, 0xba, 0xba, 0xbb, 0xbd, 0xb7, 0xb6, 0xb5, 0xb7, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xba, 0xb9, 0xba, 0xba, 0xbb, 0xba, 0xbb, 0xbe, 0xb5, 0xad, 0xad, 0xad, 0xad, 0xb1, 0xaf, 0xb1, 0xb1, 0xb1, 0xb1, 0xb3, 0xb1, 0xb3, 0xb3, 0xb3, 0xb3, 0xb3, 0xb3, 0xb5, 0xb1, 0xb5, 0xb5, 0xb6, 0xb6, 0xb6, 0xb7, 0xb5, 0xb6, 0xba, 0xba, 0xba, 0xba, 0xbb, 0xba, 0xbb, 0xbb, 0xba, 0xbb, 0xbb, 0xbb, 0xbb, 0xbd, 0xba, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xba, 0xba, 0xbb, 0xbd, 0xbb, 0xbd, 0xbd, 0xba, 0xb5, 0xb5, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb7, 0xb7, 0xba, 0xba, 0xbb, 0xbd, 0xbd, 0xbd, 0xbd, 0xbe, 0xbe, 0xbe, 0xbe, 0xbb, 0xbd, 0xbd, 0xbd, 0xbb, 0xbd, 0xbd, 0xbd, 0xbe, 0xc0, 0xbf, 0xbf, 0xc0, 0xbf, 0xc0, 0xc0, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbe, 0xbf, 0xbd, 0xbd, 0xbe, 0xbe, 0xbd, 0xba, 0xb9, 0xb9, 0xb7, 0xb9, 0xb7, 0xb9, 0xb7, 0xb7, 0xb7, 0xb7, 0xb6, 0xb7, 0xb6, 0xb6, 0xb6, 0xb5, 0xb5, 0xb4, 0x41, 0x41, 0x42, 0x40, 0x46, 0x49, 0xfe, 0xfe, 0x48, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0x49, 0xd0, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xc0, 0xcf, 0x3b, 0x38, 0x3d, 0x3b, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3f, 0x44, 0x47, 0x48, 0x48, 0x47, 0x48, 0x48, 0x48, 0x48, 0x48, 0xff, 0x49, 0xcf, 0xff, 0xd0, 0x48, 0xfe, 0x49, 0xfe, 0x48, 0x49, 0x48, 0xfe, 0x48, 0x49, 0x48, 0xfe, 0x48, 0xfe, 0x47, 0x47, 0x47, 0x46, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x49, 0xff, 0xfe, 0x47, 0x47, 0x48, 0x47, 0x47, 0x47, 0x47, 0x47, 0x47, 0x47, 0x48, 0x47, 0x44, 0x45, 0x44, 0x44, 0x40, 0x44, 0x44, 0x44, 0x3f, 0x45, 0xfe, 0xfe, 0x40, 0x34, 0x3a, 0x3b, 0x3b, 0x3b, 0x3b, 0x3a, 0x3d,
};
const lv_img_dsc_t ESP32Berry_BG = {
.header.cf = LV_IMG_CF_INDEXED_8BIT,
.header.always_zero = 0,
.header.reserved = 0,
.header.w = 478,
.header.h = 278,
.data_size = 133908,
.data = ESP32Berry_BG_map,
};
| 811,616 | ESP32Berry_BG | c | en | c | code | {"qsc_code_num_words": 135032, "qsc_code_num_chars": 811616.0, "qsc_code_mean_word_length": 3.99775609, "qsc_code_frac_words_unique": 0.00417679, "qsc_code_frac_chars_top_2grams": 0.02187376, "qsc_code_frac_chars_top_3grams": 0.02354096, "qsc_code_frac_chars_top_4grams": 0.023415, "qsc_code_frac_chars_dupe_5grams": 0.79738804, "qsc_code_frac_chars_dupe_6grams": 0.68916408, "qsc_code_frac_chars_dupe_7grams": 0.58637521, "qsc_code_frac_chars_dupe_8grams": 0.48807669, "qsc_code_frac_chars_dupe_9grams": 0.39274209, "qsc_code_frac_chars_dupe_10grams": 0.30518038, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.4187588, "qsc_code_frac_chars_whitespace": 0.16833823, "qsc_code_size_file_byte": 811616.0, "qsc_code_num_lines": 564.0, "qsc_code_num_chars_line_max": 2871.0, "qsc_code_num_chars_line_mean": 1439.03546099, "qsc_code_frac_chars_alphabet": 0.38099379, "qsc_code_frac_chars_comments": 0.00713638, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.00724638, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 7.45e-06, "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.66470098, "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.00181159, "qsc_codec_frac_lines_print": 0.0, "qsc_codec_frac_lines_preprocessor_directives": 0.01268116} | 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": 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} |
00jacs/sveltekit-ultrafast | src/lib/components/common/input-text/input-text.svelte | <script lang="ts">
export let id: string | undefined = undefined;
export let name: string | undefined = undefined;
export let type: 'text' | 'email' | 'password' = 'text';
export let autocomplete: string = '';
export let placeholder = '';
export let label: string = '';
export let value: string | undefined = '';
export let required: boolean = false;
export let error: string | boolean = '';
export let containerClass: string = '';
export let labelClass: string = '';
export let inputClass: string = '';
</script>
<div class={containerClass}>
{#if label}
<label
for={id}
class="mb-2 flex justify-between text-sm font-medium leading-6 {error
? 'text-error'
: ''} {labelClass}">
{label}
{#if error && typeof error === 'string'}
<span class="text-right font-bold text-error">{error}</span>
{/if}
</label>
{/if}
<!--
Need this conditional because Svelte doesn't support
two-way binding if {type} is dynamic
-->
{#if type === 'text'}
<input
type="text"
{id}
{name}
{autocomplete}
{placeholder}
{required}
class="input input-bordered w-full {error
? 'input-error placeholder:text-error placeholder:text-opacity-80'
: ''} {inputClass}"
bind:value />
{:else if type === 'email'}
<input
type="email"
{id}
{name}
{autocomplete}
{placeholder}
{required}
class="input input-bordered w-full {error
? 'input-error placeholder:text-error placeholder:text-opacity-80'
: ''} {inputClass}"
bind:value />
{:else if type === 'password'}
<input
type="password"
{id}
{name}
{autocomplete}
{placeholder}
{required}
class="input input-bordered w-full {error
? 'input-error placeholder:text-error placeholder:text-opacity-80'
: ''} {inputClass}"
bind:value />
{/if}
</div>
| 1,824 | input-text | svelte | en | svelte | code | {"qsc_code_num_words": 213, "qsc_code_num_chars": 1824.0, "qsc_code_mean_word_length": 5.37089202, "qsc_code_frac_words_unique": 0.29577465, "qsc_code_frac_chars_top_2grams": 0.09440559, "qsc_code_frac_chars_top_3grams": 0.1048951, "qsc_code_frac_chars_top_4grams": 0.07604895, "qsc_code_frac_chars_dupe_5grams": 0.45017483, "qsc_code_frac_chars_dupe_6grams": 0.39248252, "qsc_code_frac_chars_dupe_7grams": 0.39248252, "qsc_code_frac_chars_dupe_8grams": 0.39248252, "qsc_code_frac_chars_dupe_9grams": 0.39248252, "qsc_code_frac_chars_dupe_10grams": 0.39248252, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.00556328, "qsc_code_frac_chars_whitespace": 0.21162281, "qsc_code_size_file_byte": 1824.0, "qsc_code_num_lines": 73.0, "qsc_code_num_chars_line_max": 73.0, "qsc_code_num_chars_line_mean": 24.98630137, "qsc_code_frac_chars_alphabet": 0.78998609, "qsc_code_frac_chars_comments": 0.46875, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.06666667, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.07223942, "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} |
00jacs/sveltekit-ultrafast | src/lib/components/common/input-number/input-number.svelte | <script lang="ts">
import { createEventDispatcher } from 'svelte';
export let id: string | undefined = undefined;
export let name: string | undefined = undefined;
export let placeholder: string | undefined = undefined;
export let value: number = 0;
export let disabled: boolean = false;
export let required: boolean = true;
export let min: number = 0;
export let max: number = 10000;
export let label: string | undefined = undefined;
export let labelHint: string | undefined = undefined;
export let containerClass: string = '';
export let labelContainerClass: string = '';
export let labelClass: string = '';
export let labelHintClass: string = '';
export let inputClass: string = '';
const dispatch = createEventDispatcher();
function handleChange(e: Event) {
const target = e.target as HTMLInputElement;
dispatch('input', target.value);
const parsedValue = parseInt(target.value);
if (parsedValue && parsedValue > 0) {
value = parsedValue;
} else {
value = 0;
}
}
</script>
<label class="form-control w-full {containerClass}">
{#if label || labelHint}
<div class="label {labelContainerClass}">
{#if label}
<span class="label-text font-bold {labelClass}">{label}</span>
{/if}
{#if labelHint}
<span class="label-text-alt {labelHintClass}">{labelHint}</span>
{/if}
</div>
{/if}
<input
type="number"
{id}
{name}
{placeholder}
{required}
{disabled}
{value}
{min}
{max}
class="input input-bordered w-full {inputClass}"
on:input={handleChange} />
</label>
| 1,546 | input-number | svelte | en | svelte | code | {"qsc_code_num_words": 175, "qsc_code_num_chars": 1546.0, "qsc_code_mean_word_length": 5.98857143, "qsc_code_frac_words_unique": 0.34285714, "qsc_code_frac_chars_top_2grams": 0.12881679, "qsc_code_frac_chars_top_3grams": 0.11450382, "qsc_code_frac_chars_top_4grams": 0.14312977, "qsc_code_frac_chars_dupe_5grams": 0.15744275, "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.00713719, "qsc_code_frac_chars_whitespace": 0.1843467, "qsc_code_size_file_byte": 1546.0, "qsc_code_num_lines": 62.0, "qsc_code_num_chars_line_max": 69.0, "qsc_code_num_chars_line_mean": 24.93548387, "qsc_code_frac_chars_alphabet": 0.82394925, "qsc_code_frac_chars_comments": 0.0, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.05660377, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.12031048, "qsc_code_frac_chars_long_word_length": 0.01358344, "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/levels/rooms/standard/StandardRoom.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.rooms.standard;
import com.shatteredpixel.shatteredpixeldungeon.Dungeon;
import com.shatteredpixel.shatteredpixeldungeon.levels.rooms.Room;
import com.watabou.utils.Random;
import com.watabou.utils.Reflection;
import java.util.ArrayList;
public abstract class StandardRoom extends Room {
public enum SizeCategory {
NORMAL(4, 10, 1),
LARGE(10, 14, 2),
GIANT(14, 18, 3);
public final int minDim, maxDim;
public final int roomValue;
SizeCategory(int min, int max, int val){
minDim = min;
maxDim = max;
roomValue = val;
}
public int connectionWeight(){
return roomValue*roomValue;
}
}
public SizeCategory sizeCat;
{ setSizeCat(); }
//Note that if a room wishes to allow itself to be forced to a certain size category,
//but would (effectively) never roll that size category, consider using Float.MIN_VALUE
public float[] sizeCatProbs(){
//always normal by default
return new float[]{1, 0, 0};
}
public boolean setSizeCat(){
return setSizeCat(0, SizeCategory.values().length-1);
}
//assumes room value is always ordinal+1
public boolean setSizeCat( int maxRoomValue ){
return setSizeCat(0, maxRoomValue-1);
}
//returns false if size cannot be set
public boolean setSizeCat( int minOrdinal, int maxOrdinal ) {
float[] probs = sizeCatProbs();
SizeCategory[] categories = SizeCategory.values();
if (probs.length != categories.length) return false;
for (int i = 0; i < minOrdinal; i++) probs[i] = 0;
for (int i = maxOrdinal+1; i < categories.length; i++) probs[i] = 0;
int ordinal = Random.chances(probs);
if (ordinal != -1){
sizeCat = categories[ordinal];
return true;
} else {
return false;
}
}
@Override
public int minWidth() { return sizeCat.minDim; }
public int maxWidth() { return sizeCat.maxDim; }
@Override
public int minHeight() { return sizeCat.minDim; }
public int maxHeight() { return sizeCat.maxDim; }
//FIXME this is a very messy way of handing variable standard rooms
private static ArrayList<Class<?extends StandardRoom>> rooms = new ArrayList<>();
static {
rooms.add(EmptyRoom.class);
rooms.add(SewerPipeRoom.class);
rooms.add(RingRoom.class);
rooms.add(SegmentedRoom.class);
rooms.add(StatuesRoom.class);
rooms.add(CaveRoom.class);
rooms.add(CirclePitRoom.class);
rooms.add(HallwayRoom.class);
rooms.add(PillarsRoom.class);
rooms.add(RuinsRoom.class);
rooms.add(SkullsRoom.class);
rooms.add(PlantsRoom.class);
rooms.add(AquariumRoom.class);
rooms.add(PlatformRoom.class);
rooms.add(BurnedRoom.class);
rooms.add(FissureRoom.class);
rooms.add(GrassyGraveRoom.class);
rooms.add(StripedRoom.class);
rooms.add(StudyRoom.class);
rooms.add(SuspiciousChestRoom.class);
rooms.add(MinefieldRoom.class);
}
private static float[][] chances = new float[27][];
static {
chances[1] = new float[]{20, 15,5, 0,0, 0,0, 0,0, 0,0, 1,0,1,0,1,0,1,1,0,0};
chances[2] = new float[]{20, 15,5, 0,0, 0,0, 0,0, 0,0, 1,1,1,1,1,1,1,1,1,1};
chances[4] = chances[3] = chances[2];
chances[5] = new float[]{20, 15,5, 0,0, 0,0, 0,0, 0,0, 0,0,0,0,0,0,0,0,0,0};
chances[6] = new float[]{20, 0,0, 15,5, 0,0, 0,0, 0,0, 1,1,1,1,1,1,1,1,1,1};
chances[10] = chances[9] = chances[8] = chances[7] = chances[6];
chances[11] = new float[]{20, 0,0, 0,0, 15,5, 0,0, 0,0, 1,1,1,1,1,1,1,1,1,1};
chances[15] = chances[14] = chances[13] = chances[12] = chances[11];
chances[16] = new float[]{20, 0,0, 0,0, 0,0, 15,5, 0,0, 1,1,1,1,1,1,1,1,1,1};
chances[20] = chances[19] = chances[18] = chances[17] = chances[16];
chances[21] = chances[5];
chances[22] = new float[]{20, 0,0, 0,0, 0,0, 0,0, 15,5, 1,1,1,1,1,1,1,1,1,1};
chances[26] = chances[25] = chances[24] = chances[23] = chances[22];
}
public static StandardRoom createRoom(){
return Reflection.newInstance(rooms.get(Random.chances(chances[Dungeon.depth])));
}
}
| 4,806 | StandardRoom | java | en | java | code | {"qsc_code_num_words": 722, "qsc_code_num_chars": 4806.0, "qsc_code_mean_word_length": 4.49861496, "qsc_code_frac_words_unique": 0.30470914, "qsc_code_frac_chars_top_2grams": 0.03571429, "qsc_code_frac_chars_top_3grams": 0.04248768, "qsc_code_frac_chars_top_4grams": 0.04679803, "qsc_code_frac_chars_dupe_5grams": 0.14932266, "qsc_code_frac_chars_dupe_6grams": 0.09082512, "qsc_code_frac_chars_dupe_7grams": 0.07173645, "qsc_code_frac_chars_dupe_8grams": 0.06865764, "qsc_code_frac_chars_dupe_9grams": 0.0625, "qsc_code_frac_chars_dupe_10grams": 0.05264778, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.06573604, "qsc_code_frac_chars_whitespace": 0.18019143, "qsc_code_size_file_byte": 4806.0, "qsc_code_num_lines": 161.0, "qsc_code_num_chars_line_max": 89.0, "qsc_code_num_chars_line_mean": 29.85093168, "qsc_code_frac_chars_alphabet": 0.75862944, "qsc_code_frac_chars_comments": 0.23366625, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.04123711, "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.00621118, "qsc_code_frac_lines_assert": 0.0, "qsc_codejava_cate_var_zero": 0.0, "qsc_codejava_frac_lines_func_ratio": 0.11340206, "qsc_codejava_score_lines_no_logic": 0.21649485, "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/levels/rooms/standard/StatuesRoom.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.rooms.standard;
import com.shatteredpixel.shatteredpixeldungeon.levels.Level;
import com.shatteredpixel.shatteredpixeldungeon.levels.Terrain;
import com.shatteredpixel.shatteredpixeldungeon.levels.painters.Painter;
import com.shatteredpixel.shatteredpixeldungeon.levels.rooms.standard.StandardRoom;
public class StatuesRoom extends StandardRoom {
@Override
public int minWidth() {
return Math.max(7, super.minWidth());
}
@Override
public int minHeight() {
return Math.max(7, super.minHeight());
}
@Override
public float[] sizeCatProbs() {
return new float[]{9, 3, 1};
}
@Override
public void paint(Level level) {
Painter.fill( level, this, Terrain.WALL );
Painter.fill( level, this, 1 , Terrain.EMPTY );
for (Door door : connected.values()) {
door.set( Door.Type.REGULAR );
}
int rows = (width() + 1)/6;
int cols = (height() + 1)/6;
int w = (width() - 4 - (rows-1))/rows;
int h = (height() - 4 - (cols-1))/cols;
int Wspacing = rows % 2 == width() % 2 ? 2 : 1;
int Hspacing = cols % 2 == height() % 2 ? 2 : 1;
for (int x = 0; x < rows; x++){
for (int y = 0; y < cols; y++){
int left = this.left + 2 + (x * (w + Wspacing));
int top = this.top + 2 + (y * (h + Hspacing));
Painter.fill(level, left, top, w, h, Terrain.EMPTY_SP);
Painter.set(level, left, top, Terrain.STATUE_SP);
Painter.set(level, left + w-1, top, Terrain.STATUE_SP);
Painter.set(level, left, top + h-1, Terrain.STATUE_SP);
Painter.set(level, left + w-1, top + h-1, Terrain.STATUE_SP);
}
}
}
}
| 2,390 | StatuesRoom | java | en | java | code | {"qsc_code_num_words": 339, "qsc_code_num_chars": 2390.0, "qsc_code_mean_word_length": 4.78466077, "qsc_code_frac_words_unique": 0.40412979, "qsc_code_frac_chars_top_2grams": 0.05240444, "qsc_code_frac_chars_top_3grams": 0.11713933, "qsc_code_frac_chars_top_4grams": 0.13563502, "qsc_code_frac_chars_dupe_5grams": 0.3378545, "qsc_code_frac_chars_dupe_6grams": 0.20221948, "qsc_code_frac_chars_dupe_7grams": 0.07090012, "qsc_code_frac_chars_dupe_8grams": 0.07090012, "qsc_code_frac_chars_dupe_9grams": 0.04808878, "qsc_code_frac_chars_dupe_10grams": 0.04808878, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.02430196, "qsc_code_frac_chars_whitespace": 0.19079498, "qsc_code_size_file_byte": 2390.0, "qsc_code_num_lines": 80.0, "qsc_code_num_chars_line_max": 84.0, "qsc_code_num_chars_line_mean": 29.875, "qsc_code_frac_chars_alphabet": 0.81437435, "qsc_code_frac_chars_comments": 0.32677824, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.09090909, "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.06818182, "qsc_codejava_score_lines_no_logic": 0.18181818, "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/levels/rooms/standard/BurnedRoom.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.rooms.standard;
import com.shatteredpixel.shatteredpixeldungeon.levels.Level;
import com.shatteredpixel.shatteredpixeldungeon.levels.Terrain;
import com.shatteredpixel.shatteredpixeldungeon.levels.painters.Painter;
import com.shatteredpixel.shatteredpixeldungeon.levels.traps.BurningTrap;
import com.watabou.utils.Point;
import com.watabou.utils.Random;
public class BurnedRoom extends PatchRoom {
@Override
public float[] sizeCatProbs() {
return new float[]{4, 1, 0};
}
@Override
public void paint(Level level) {
Painter.fill( level, this, Terrain.WALL );
Painter.fill( level, this, 1, Terrain.EMPTY );
for (Door door : connected.values()) {
door.set( Door.Type.REGULAR );
}
//past 8x8 each point of width/height decreases fill by 3%
// e.g. a 14x14 burned room has a fill of 54%
float fill = Math.min( 1f, 1.48f - (width()+height())*0.03f);
setupPatch(level, fill, 2, false );
for (int i=top + 1; i < bottom; i++) {
for (int j=left + 1; j < right; j++) {
if (!patch[xyToPatchCoords(j, i)])
continue;
int cell = i * level.width() + j;
int t;
switch (Random.Int( 5 )) {
case 0: default:
t = Terrain.EMPTY;
break;
case 1:
t = Terrain.EMBERS;
break;
case 2:
t = Terrain.TRAP;
level.setTrap(new BurningTrap().reveal(), cell);
break;
case 3:
t = Terrain.SECRET_TRAP;
level.setTrap(new BurningTrap().hide(), cell);
break;
case 4:
t = Terrain.INACTIVE_TRAP;
BurningTrap trap = new BurningTrap();
trap.reveal().active = false;
level.setTrap(trap, cell);
break;
}
level.map[cell] = t;
}
}
}
@Override
public boolean canPlaceWater(Point p) {
return super.canPlaceWater(p) && !patch[xyToPatchCoords(p.x, p.y)];
}
@Override
public boolean canPlaceGrass(Point p) {
return super.canPlaceGrass(p) && !patch[xyToPatchCoords(p.x, p.y)];
}
@Override
public boolean canPlaceTrap(Point p) {
return super.canPlaceTrap(p) && !patch[xyToPatchCoords(p.x, p.y)];
}
}
| 2,896 | BurnedRoom | java | en | java | code | {"qsc_code_num_words": 389, "qsc_code_num_chars": 2896.0, "qsc_code_mean_word_length": 5.04884319, "qsc_code_frac_words_unique": 0.44730077, "qsc_code_frac_chars_top_2grams": 0.02749491, "qsc_code_frac_chars_top_3grams": 0.09674134, "qsc_code_frac_chars_top_4grams": 0.11201629, "qsc_code_frac_chars_dupe_5grams": 0.23370672, "qsc_code_frac_chars_dupe_6grams": 0.08808554, "qsc_code_frac_chars_dupe_7grams": 0.0595723, "qsc_code_frac_chars_dupe_8grams": 0.04684318, "qsc_code_frac_chars_dupe_9grams": 0.04684318, "qsc_code_frac_chars_dupe_10grams": 0.04684318, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.01997395, "qsc_code_frac_chars_whitespace": 0.20476519, "qsc_code_size_file_byte": 2896.0, "qsc_code_num_lines": 99.0, "qsc_code_num_chars_line_max": 74.0, "qsc_code_num_chars_line_mean": 29.25252525, "qsc_code_frac_chars_alphabet": 0.83282675, "qsc_code_frac_chars_comments": 0.30524862, "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.06060606, "qsc_codejava_score_lines_no_logic": 0.18181818, "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/levels/rooms/standard/FissureRoom.java | package com.shatteredpixel.shatteredpixeldungeon.levels.rooms.standard;
import com.shatteredpixel.shatteredpixeldungeon.levels.Level;
import com.shatteredpixel.shatteredpixeldungeon.levels.Terrain;
import com.shatteredpixel.shatteredpixeldungeon.levels.painters.Painter;
import com.watabou.utils.Point;
import com.watabou.utils.Random;
public class FissureRoom extends StandardRoom {
@Override
public float[] sizeCatProbs() {
return new float[]{6, 3, 1};
}
@Override
public void paint(Level level) {
Painter.fill( level, this, Terrain.WALL );
for (Door door : connected.values()) {
door.set( Door.Type.REGULAR );
}
Painter.fill( level, this, 1, Terrain.EMPTY );
if (square() <= 25){
//just fill in one tile if the room is tiny
Point p = center();
Painter.set( level, p.x, p.y, Terrain.CHASM);
} else {
int smallestDim = Math.min(width(), height());
int floorW = (int)Math.sqrt(smallestDim);
//chance for a tile at the edge of the floor to remain a floor tile
float edgeFloorChance = (float)Math.sqrt(smallestDim) % 1;
//the wider the floor the more edge chances tend toward 50%
edgeFloorChance = (edgeFloorChance + (floorW-1)*0.5f) / (float)floorW;
for (int i=top + 2; i <= bottom - 2; i++) {
for (int j=left + 2; j <= right - 2; j++) {
int v = Math.min( i - top, bottom - i );
int h = Math.min( j - left, right - j );
if (Math.min( v, h ) > floorW
|| (Math.min( v, h ) == floorW && Random.Float() > edgeFloorChance)) {
Painter.set( level, j, i, Terrain.CHASM );
}
}
}
}
}
}
| 1,595 | FissureRoom | java | en | java | code | {"qsc_code_num_words": 214, "qsc_code_num_chars": 1595.0, "qsc_code_mean_word_length": 4.87850467, "qsc_code_frac_words_unique": 0.43457944, "qsc_code_frac_chars_top_2grams": 0.04310345, "qsc_code_frac_chars_top_3grams": 0.14559387, "qsc_code_frac_chars_top_4grams": 0.16858238, "qsc_code_frac_chars_dupe_5grams": 0.17241379, "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.0126183, "qsc_code_frac_chars_whitespace": 0.20501567, "qsc_code_size_file_byte": 1595.0, "qsc_code_num_lines": 51.0, "qsc_code_num_chars_line_max": 78.0, "qsc_code_num_chars_line_mean": 31.2745098, "qsc_code_frac_chars_alphabet": 0.81072555, "qsc_code_frac_chars_comments": 0.10595611, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.05128205, "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.02564103, "qsc_codejava_score_lines_no_logic": 0.17948718, "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/levels/rooms/standard/EmptyRoom.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.rooms.standard;
import com.shatteredpixel.shatteredpixeldungeon.levels.Level;
import com.shatteredpixel.shatteredpixeldungeon.levels.Terrain;
import com.shatteredpixel.shatteredpixeldungeon.levels.painters.Painter;
//other rooms should only extend emptyRoom if they do not add significant terrain
public class EmptyRoom extends StandardRoom {
@Override
public void paint(Level level) {
Painter.fill( level, this, Terrain.WALL );
Painter.fill( level, this, 1 , Terrain.EMPTY );
for (Door door : connected.values()) {
door.set( Door.Type.REGULAR );
}
}
}
| 1,413 | EmptyRoom | java | en | java | code | {"qsc_code_num_words": 194, "qsc_code_num_chars": 1413.0, "qsc_code_mean_word_length": 5.50515464, "qsc_code_frac_words_unique": 0.58762887, "qsc_code_frac_chars_top_2grams": 0.06367041, "qsc_code_frac_chars_top_3grams": 0.1423221, "qsc_code_frac_chars_top_4grams": 0.16479401, "qsc_code_frac_chars_dupe_5grams": 0.21722846, "qsc_code_frac_chars_dupe_6grams": 0.05243446, "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.01528014, "qsc_code_frac_chars_whitespace": 0.16631281, "qsc_code_size_file_byte": 1413.0, "qsc_code_num_lines": 40.0, "qsc_code_num_chars_line_max": 82.0, "qsc_code_num_chars_line_mean": 35.325, "qsc_code_frac_chars_alphabet": 0.89134126, "qsc_code_frac_chars_comments": 0.61004954, "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.07142857, "qsc_codejava_score_lines_no_logic": 0.35714286, "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": 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/levels/rooms/standard/ExitRoom.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.rooms.standard;
import com.shatteredpixel.shatteredpixeldungeon.levels.Level;
import com.shatteredpixel.shatteredpixeldungeon.levels.Terrain;
import com.shatteredpixel.shatteredpixeldungeon.levels.painters.Painter;
import com.shatteredpixel.shatteredpixeldungeon.levels.rooms.Room;
import com.watabou.utils.Point;
public class ExitRoom extends StandardRoom {
@Override
public int minWidth() {
return Math.max(super.minWidth(), 5);
}
@Override
public int minHeight() {
return Math.max(super.minHeight(), 5);
}
public void paint(Level level) {
Painter.fill( level, this, Terrain.WALL );
Painter.fill( level, this, 1, Terrain.EMPTY );
for (Room.Door door : connected.values()) {
door.set( Room.Door.Type.REGULAR );
}
level.exit = level.pointToCell(random( 2 ));
Painter.set( level, level.exit, Terrain.EXIT );
}
@Override
public boolean canPlaceCharacter(Point p, Level l) {
return super.canPlaceCharacter(p, l) && l.pointToCell(p) != l.exit;
}
}
| 1,831 | ExitRoom | java | en | java | code | {"qsc_code_num_words": 245, "qsc_code_num_chars": 1831.0, "qsc_code_mean_word_length": 5.53469388, "qsc_code_frac_words_unique": 0.51836735, "qsc_code_frac_chars_top_2grams": 0.06268437, "qsc_code_frac_chars_top_3grams": 0.14011799, "qsc_code_frac_chars_top_4grams": 0.16224189, "qsc_code_frac_chars_dupe_5grams": 0.24778761, "qsc_code_frac_chars_dupe_6grams": 0.04129794, "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.01367188, "qsc_code_frac_chars_whitespace": 0.16111415, "qsc_code_size_file_byte": 1831.0, "qsc_code_num_lines": 58.0, "qsc_code_num_chars_line_max": 73.0, "qsc_code_num_chars_line_mean": 31.56896552, "qsc_code_frac_chars_alphabet": 0.86914062, "qsc_code_frac_chars_comments": 0.42654287, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.10344828, "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.13793103, "qsc_codejava_score_lines_no_logic": 0.34482759, "qsc_codejava_frac_words_no_modifier": 0.8, "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": 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/levels/rooms/standard/AquariumRoom.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.rooms.standard;
import com.shatteredpixel.shatteredpixeldungeon.actors.mobs.Piranha;
import com.shatteredpixel.shatteredpixeldungeon.levels.Level;
import com.shatteredpixel.shatteredpixeldungeon.levels.Terrain;
import com.shatteredpixel.shatteredpixeldungeon.levels.painters.Painter;
public class AquariumRoom extends StandardRoom {
@Override
public int minWidth() {
return Math.max(super.minWidth(), 7);
}
@Override
public int minHeight() {
return Math.max(super.minHeight(), 7);
}
@Override
public float[] sizeCatProbs() {
return new float[]{3, 1, 0};
}
@Override
public void paint(Level level) {
Painter.fill( level, this, Terrain.WALL );
Painter.fill( level, this, 1, Terrain.EMPTY );
Painter.fill( level, this, 2, Terrain.EMPTY_SP );
Painter.fill( level, this, 3, Terrain.WATER );
int minDim = Math.min(width(), height());
int numFish = (minDim - 4)/3; //1-3 fish, depending on room size
for (int i=0; i < numFish; i++) {
Piranha piranha = new Piranha();
do {
piranha.pos = level.pointToCell(random(3));
} while (level.map[piranha.pos] != Terrain.WATER|| level.findMob( piranha.pos ) != null);
level.mobs.add( piranha );
}
for (Door door : connected.values()) {
door.set( Door.Type.REGULAR );
}
}
}
| 2,121 | AquariumRoom | java | en | java | code | {"qsc_code_num_words": 285, "qsc_code_num_chars": 2121.0, "qsc_code_mean_word_length": 5.30877193, "qsc_code_frac_words_unique": 0.5122807, "qsc_code_frac_chars_top_2grams": 0.05617978, "qsc_code_frac_chars_top_3grams": 0.12557832, "qsc_code_frac_chars_top_4grams": 0.11632518, "qsc_code_frac_chars_dupe_5grams": 0.15333774, "qsc_code_frac_chars_dupe_6grams": 0.03701256, "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.01770417, "qsc_code_frac_chars_whitespace": 0.17444602, "qsc_code_size_file_byte": 2121.0, "qsc_code_num_lines": 69.0, "qsc_code_num_chars_line_max": 93.0, "qsc_code_num_chars_line_mean": 30.73913043, "qsc_code_frac_chars_alphabet": 0.8463735, "qsc_code_frac_chars_comments": 0.38425271, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.10526316, "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.07894737, "qsc_codejava_score_lines_no_logic": 0.21052632, "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/levels/rooms/standard/RitualSiteRoom.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.rooms.standard;
import com.shatteredpixel.shatteredpixeldungeon.Assets;
import com.shatteredpixel.shatteredpixeldungeon.items.quest.CeremonialCandle;
import com.shatteredpixel.shatteredpixeldungeon.levels.Level;
import com.shatteredpixel.shatteredpixeldungeon.levels.Terrain;
import com.shatteredpixel.shatteredpixeldungeon.levels.painters.Painter;
import com.shatteredpixel.shatteredpixeldungeon.messages.Messages;
import com.shatteredpixel.shatteredpixeldungeon.tiles.CustomTilemap;
import com.watabou.noosa.Tilemap;
import com.watabou.utils.Point;
public class RitualSiteRoom extends StandardRoom {
@Override
public int minWidth() {
return Math.max(super.minWidth(), 5);
}
@Override
public int minHeight() {
return Math.max(super.minHeight(), 5);
}
public void paint( Level level ) {
for (Door door : connected.values()) {
door.set( Door.Type.REGULAR );
}
Painter.fill(level, this, Terrain.WALL);
Painter.fill(level, this, 1, Terrain.EMPTY);
RitualMarker vis = new RitualMarker();
Point c = center();
vis.pos(c.x - 1, c.y - 1);
level.customTiles.add(vis);
Painter.fill(level, c.x-1, c.y-1, 3, 3, Terrain.EMPTY_DECO);
level.addItemToSpawn(new CeremonialCandle());
level.addItemToSpawn(new CeremonialCandle());
level.addItemToSpawn(new CeremonialCandle());
level.addItemToSpawn(new CeremonialCandle());
CeremonialCandle.ritualPos = c.x + (level.width() * c.y);
}
public static class RitualMarker extends CustomTilemap {
{
texture = Assets.PRISON_QUEST;
tileW = tileH = 3;
}
@Override
public Tilemap create() {
Tilemap v = super.create();
v.map(mapSimpleImage(0, 0, TEX_WIDTH), 3);
return v;
}
final int TEX_WIDTH = 64;
@Override
public String name(int tileX, int tileY) {
return Messages.get(this, "name");
}
@Override
public String desc(int tileX, int tileY) {
return Messages.get(this, "desc");
}
}
}
| 2,763 | RitualSiteRoom | java | en | java | code | {"qsc_code_num_words": 353, "qsc_code_num_chars": 2763.0, "qsc_code_mean_word_length": 5.72521246, "qsc_code_frac_words_unique": 0.45042493, "qsc_code_frac_chars_top_2grams": 0.04007917, "qsc_code_frac_chars_top_3grams": 0.15042058, "qsc_code_frac_chars_top_4grams": 0.1523998, "qsc_code_frac_chars_dupe_5grams": 0.23255814, "qsc_code_frac_chars_dupe_6grams": 0.14547254, "qsc_code_frac_chars_dupe_7grams": 0.11182583, "qsc_code_frac_chars_dupe_8grams": 0.11182583, "qsc_code_frac_chars_dupe_9grams": 0.07521029, "qsc_code_frac_chars_dupe_10grams": 0.07521029, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.01381693, "qsc_code_frac_chars_whitespace": 0.16178067, "qsc_code_size_file_byte": 2763.0, "qsc_code_num_lines": 98.0, "qsc_code_num_chars_line_max": 78.0, "qsc_code_num_chars_line_mean": 28.19387755, "qsc_code_frac_chars_alphabet": 0.85880829, "qsc_code_frac_chars_comments": 0.28266377, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.15517241, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.00403633, "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.10344828, "qsc_codejava_score_lines_no_logic": 0.29310345, "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/levels/rooms/special/TreasuryRoom.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.rooms.special;
import com.shatteredpixel.shatteredpixeldungeon.Dungeon;
import com.shatteredpixel.shatteredpixeldungeon.items.Gold;
import com.shatteredpixel.shatteredpixeldungeon.items.Heap;
import com.shatteredpixel.shatteredpixeldungeon.items.keys.IronKey;
import com.shatteredpixel.shatteredpixeldungeon.levels.Level;
import com.shatteredpixel.shatteredpixeldungeon.levels.Terrain;
import com.shatteredpixel.shatteredpixeldungeon.levels.painters.Painter;
import com.watabou.utils.Random;
public class TreasuryRoom extends SpecialRoom {
public void paint( Level level ) {
Painter.fill( level, this, Terrain.WALL );
Painter.fill( level, this, 1, Terrain.EMPTY );
Painter.set( level, center(), Terrain.STATUE );
Heap.Type heapType = Random.Int( 2 ) == 0 ? Heap.Type.CHEST : Heap.Type.HEAP;
int n = Random.IntRange( 2, 3 );
for (int i=0; i < n; i++) {
int pos;
do {
pos = level.pointToCell(random());
} while (level.map[pos] != Terrain.EMPTY || level.heaps.get( pos ) != null);
level.drop( new Gold().random(), pos ).type = (Random.Int(20) == 0 && heapType == Heap.Type.CHEST ? Heap.Type.MIMIC : heapType);
}
if (heapType == Heap.Type.HEAP) {
for (int i=0; i < 6; i++) {
int pos;
do {
pos = level.pointToCell(random());
} while (level.map[pos] != Terrain.EMPTY);
level.drop( new Gold( Random.IntRange( 5, 12 ) ), pos );
}
}
entrance().set( Door.Type.LOCKED );
level.addItemToSpawn( new IronKey( Dungeon.depth ) );
}
}
| 2,344 | TreasuryRoom | java | en | java | code | {"qsc_code_num_words": 313, "qsc_code_num_chars": 2344.0, "qsc_code_mean_word_length": 5.32587859, "qsc_code_frac_words_unique": 0.44728435, "qsc_code_frac_chars_top_2grams": 0.08158368, "qsc_code_frac_chars_top_3grams": 0.18236353, "qsc_code_frac_chars_top_4grams": 0.18476305, "qsc_code_frac_chars_dupe_5grams": 0.36712657, "qsc_code_frac_chars_dupe_6grams": 0.1139772, "qsc_code_frac_chars_dupe_7grams": 0.08038392, "qsc_code_frac_chars_dupe_8grams": 0.08038392, "qsc_code_frac_chars_dupe_9grams": 0.08038392, "qsc_code_frac_chars_dupe_10grams": 0.08038392, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.01596292, "qsc_code_frac_chars_whitespace": 0.17150171, "qsc_code_size_file_byte": 2344.0, "qsc_code_num_lines": 65.0, "qsc_code_num_chars_line_max": 132.0, "qsc_code_num_chars_line_mean": 36.06153846, "qsc_code_frac_chars_alphabet": 0.84243048, "qsc_code_frac_chars_comments": 0.33319113, "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.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.02777778, "qsc_codejava_score_lines_no_logic": 0.33333333, "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/rooms/special/TrapsRoom.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.rooms.special;
import com.shatteredpixel.shatteredpixeldungeon.Challenges;
import com.shatteredpixel.shatteredpixeldungeon.Dungeon;
import com.shatteredpixel.shatteredpixeldungeon.ShatteredPixelDungeon;
import com.shatteredpixel.shatteredpixeldungeon.items.Generator;
import com.shatteredpixel.shatteredpixeldungeon.items.Heap;
import com.shatteredpixel.shatteredpixeldungeon.items.Item;
import com.shatteredpixel.shatteredpixeldungeon.items.potions.PotionOfLevitation;
import com.shatteredpixel.shatteredpixeldungeon.levels.Level;
import com.shatteredpixel.shatteredpixeldungeon.levels.Terrain;
import com.shatteredpixel.shatteredpixeldungeon.levels.painters.Painter;
import com.shatteredpixel.shatteredpixeldungeon.levels.traps.DisintegrationTrap;
import com.shatteredpixel.shatteredpixeldungeon.levels.traps.ExplosiveTrap;
import com.shatteredpixel.shatteredpixeldungeon.levels.traps.FlashingTrap;
import com.shatteredpixel.shatteredpixeldungeon.levels.traps.FlockTrap;
import com.shatteredpixel.shatteredpixeldungeon.levels.traps.GrimTrap;
import com.shatteredpixel.shatteredpixeldungeon.levels.traps.GrippingTrap;
import com.shatteredpixel.shatteredpixeldungeon.levels.traps.PoisonDartTrap;
import com.shatteredpixel.shatteredpixeldungeon.levels.traps.TeleportationTrap;
import com.shatteredpixel.shatteredpixeldungeon.levels.traps.Trap;
import com.shatteredpixel.shatteredpixeldungeon.levels.traps.WarpingTrap;
import com.watabou.utils.Point;
import com.watabou.utils.Random;
import com.watabou.utils.Reflection;
public class TrapsRoom extends SpecialRoom {
public void paint( Level level ) {
Painter.fill( level, this, Terrain.WALL );
Class<? extends Trap> trapClass;
switch (Random.Int(4)){
case 0:
trapClass = null;
break;
default:
trapClass = Random.oneOf(levelTraps[Dungeon.depth/5]);
break;
}
if (trapClass == null){
Painter.fill(level, this, 1, Terrain.CHASM);
} else {
Painter.fill(level, this, 1, Terrain.TRAP);
}
Door door = entrance();
door.set( Door.Type.REGULAR );
int lastRow = level.map[left + 1 + (top + 1) * level.width()] == Terrain.CHASM ? Terrain.CHASM : Terrain.EMPTY;
int x = -1;
int y = -1;
if (door.x == left) {
x = right - 1;
y = top + height() / 2;
Painter.fill( level, x, top + 1, 1, height() - 2 , lastRow );
} else if (door.x == right) {
x = left + 1;
y = top + height() / 2;
Painter.fill( level, x, top + 1, 1, height() - 2 , lastRow );
} else if (door.y == top) {
x = left + width() / 2;
y = bottom - 1;
Painter.fill( level, left + 1, y, width() - 2, 1 , lastRow );
} else if (door.y == bottom) {
x = left + width() / 2;
y = top + 1;
Painter.fill( level, left + 1, y, width() - 2, 1 , lastRow );
}
for(Point p : getPoints()) {
int cell = level.pointToCell(p);
if (level.map[cell] == Terrain.TRAP){
level.setTrap(Reflection.newInstance(trapClass).reveal(), cell);
}
}
int pos = x + y * level.width();
if (Random.Int( 3 ) == 0) {
if (lastRow == Terrain.CHASM) {
Painter.set( level, pos, Terrain.EMPTY );
}
level.drop( prize( level ), pos ).type = Heap.Type.CHEST;
} else {
Painter.set( level, pos, Terrain.PEDESTAL );
level.drop( prize( level ), pos );
}
level.addItemToSpawn( new PotionOfLevitation() );
}
private static Item prize( Level level ) {
Item prize;
if (Random.Int(3) != 0){
prize = level.findPrizeItem();
if (prize != null)
return prize;
}
//1 floor set higher in probability, never cursed
do {
if (Random.Int(2) == 0) {
prize = Generator.randomWeapon((Dungeon.depth / 5) + 1);
} else {
prize = Generator.randomArmor((Dungeon.depth / 5) + 1);
}
} while (prize.cursed || Challenges.isItemBlocked(prize));
prize.cursedKnown = true;
//33% chance for an extra update.
if (Random.Int(3) == 0){
prize.upgrade();
}
return prize;
}
@SuppressWarnings("unchecked")
private static Class<?extends Trap>[][] levelTraps = new Class[][]{
//sewers
{GrippingTrap.class, TeleportationTrap.class, FlockTrap.class},
//prison
{PoisonDartTrap.class, GrippingTrap.class, ExplosiveTrap.class},
//caves
{PoisonDartTrap.class, FlashingTrap.class, ExplosiveTrap.class},
//city
{WarpingTrap.class, FlashingTrap.class, DisintegrationTrap.class},
//halls, muahahahaha
{GrimTrap.class}
};
}
| 5,214 | TrapsRoom | java | en | java | code | {"qsc_code_num_words": 629, "qsc_code_num_chars": 5214.0, "qsc_code_mean_word_length": 5.88871224, "qsc_code_frac_words_unique": 0.31478537, "qsc_code_frac_chars_top_2grams": 0.05588553, "qsc_code_frac_chars_top_3grams": 0.21544276, "qsc_code_frac_chars_top_4grams": 0.23758099, "qsc_code_frac_chars_dupe_5grams": 0.3787797, "qsc_code_frac_chars_dupe_6grams": 0.23974082, "qsc_code_frac_chars_dupe_7grams": 0.0512959, "qsc_code_frac_chars_dupe_8grams": 0.0512959, "qsc_code_frac_chars_dupe_9grams": 0.0512959, "qsc_code_frac_chars_dupe_10grams": 0.0512959, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.01402621, "qsc_code_frac_chars_whitespace": 0.1658995, "qsc_code_size_file_byte": 5214.0, "qsc_code_num_lines": 156.0, "qsc_code_num_chars_line_max": 114.0, "qsc_code_num_chars_line_mean": 33.42307692, "qsc_code_frac_chars_alphabet": 0.83766383, "qsc_code_frac_chars_comments": 0.17491369, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.15454545, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.00209205, "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.26363636, "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} | 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/rooms/special/LibraryRoom.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.rooms.special;
import com.shatteredpixel.shatteredpixeldungeon.Dungeon;
import com.shatteredpixel.shatteredpixeldungeon.items.Generator;
import com.shatteredpixel.shatteredpixeldungeon.items.Item;
import com.shatteredpixel.shatteredpixeldungeon.items.keys.IronKey;
import com.shatteredpixel.shatteredpixeldungeon.items.scrolls.Scroll;
import com.shatteredpixel.shatteredpixeldungeon.items.scrolls.ScrollOfIdentify;
import com.shatteredpixel.shatteredpixeldungeon.items.scrolls.ScrollOfRemoveCurse;
import com.shatteredpixel.shatteredpixeldungeon.levels.Level;
import com.shatteredpixel.shatteredpixeldungeon.levels.Terrain;
import com.shatteredpixel.shatteredpixeldungeon.levels.painters.Painter;
import com.watabou.utils.Random;
public class LibraryRoom extends SpecialRoom {
public void paint( Level level ) {
Painter.fill( level, this, Terrain.WALL );
Painter.fill( level, this, 1, Terrain.EMPTY_SP );
Door entrance = entrance();
Painter.fill( level, left + 1, top+1, width() - 2, 1 , Terrain.BOOKSHELF );
Painter.drawInside(level, this, entrance, 1, Terrain.EMPTY_SP );
int n = Random.IntRange( 2, 3 );
for (int i=0; i < n; i++) {
int pos;
do {
pos = level.pointToCell(random());
} while (level.map[pos] != Terrain.EMPTY_SP || level.heaps.get( pos ) != null);
Item item;
if (i == 0)
item = Random.Int(2) == 0 ? new ScrollOfIdentify() : new ScrollOfRemoveCurse();
else
item = prize( level );
level.drop( item, pos );
}
entrance.set( Door.Type.LOCKED );
level.addItemToSpawn( new IronKey( Dungeon.depth ) );
}
private static Item prize( Level level ) {
Item prize = level.findPrizeItem( Scroll.class );
if (prize == null)
prize = Generator.random( Generator.Category.SCROLL );
return prize;
}
}
| 2,630 | LibraryRoom | java | en | java | code | {"qsc_code_num_words": 333, "qsc_code_num_chars": 2630.0, "qsc_code_mean_word_length": 5.82282282, "qsc_code_frac_words_unique": 0.44444444, "qsc_code_frac_chars_top_2grams": 0.09644146, "qsc_code_frac_chars_top_3grams": 0.21557504, "qsc_code_frac_chars_top_4grams": 0.22692109, "qsc_code_frac_chars_dupe_5grams": 0.28210418, "qsc_code_frac_chars_dupe_6grams": 0.11552347, "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.01312217, "qsc_code_frac_chars_whitespace": 0.15969582, "qsc_code_size_file_byte": 2630.0, "qsc_code_num_lines": 74.0, "qsc_code_num_chars_line_max": 84.0, "qsc_code_num_chars_line_mean": 35.54054054, "qsc_code_frac_chars_alphabet": 0.86425339, "qsc_code_frac_chars_comments": 0.29695817, "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.04761905, "qsc_codejava_score_lines_no_logic": 0.4047619, "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} | 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/rooms/special/LaboratoryRoom.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.rooms.special;
import com.shatteredpixel.shatteredpixeldungeon.Dungeon;
import com.shatteredpixel.shatteredpixeldungeon.actors.blobs.Alchemy;
import com.shatteredpixel.shatteredpixeldungeon.actors.blobs.Blob;
import com.shatteredpixel.shatteredpixeldungeon.items.Generator;
import com.shatteredpixel.shatteredpixeldungeon.items.Item;
import com.shatteredpixel.shatteredpixeldungeon.items.journal.AlchemyPage;
import com.shatteredpixel.shatteredpixeldungeon.items.keys.IronKey;
import com.shatteredpixel.shatteredpixeldungeon.items.potions.Potion;
import com.shatteredpixel.shatteredpixeldungeon.journal.Document;
import com.shatteredpixel.shatteredpixeldungeon.levels.Level;
import com.shatteredpixel.shatteredpixeldungeon.levels.RegularLevel;
import com.shatteredpixel.shatteredpixeldungeon.levels.Terrain;
import com.shatteredpixel.shatteredpixeldungeon.levels.painters.Painter;
import com.watabou.utils.Point;
import com.watabou.utils.Random;
import java.util.ArrayList;
import java.util.Collection;
public class LaboratoryRoom extends SpecialRoom {
public void paint( Level level ) {
Painter.fill( level, this, Terrain.WALL );
Painter.fill( level, this, 1, Terrain.EMPTY_SP );
Door entrance = entrance();
Point pot = null;
if (entrance.x == left) {
pot = new Point( right-1, Random.Int( 2 ) == 0 ? top + 1 : bottom - 1 );
} else if (entrance.x == right) {
pot = new Point( left+1, Random.Int( 2 ) == 0 ? top + 1 : bottom - 1 );
} else if (entrance.y == top) {
pot = new Point( Random.Int( 2 ) == 0 ? left + 1 : right - 1, bottom-1 );
} else if (entrance.y == bottom) {
pot = new Point( Random.Int( 2 ) == 0 ? left + 1 : right - 1, top+1 );
}
Painter.set( level, pot, Terrain.ALCHEMY );
int chapter = 1 + Dungeon.depth/5;
Blob.seed( pot.x + level.width() * pot.y, 1 + chapter*10 + Random.NormalIntRange(0, 10), Alchemy.class, level );
int n = Random.NormalIntRange( 1, 3 );
for (int i=0; i < n; i++) {
int pos;
do {
pos = level.pointToCell(random());
} while (
level.map[pos] != Terrain.EMPTY_SP ||
level.heaps.get( pos ) != null);
level.drop( prize( level ), pos );
}
//guide pages
Collection<String> allPages = Document.ALCHEMY_GUIDE.pages();
ArrayList<String> missingPages = new ArrayList<>();
for ( String page : allPages){
if (!Document.ALCHEMY_GUIDE.hasPage(page)){
missingPages.add(page);
}
}
//4 pages in sewers, 6 in prison, 9 in caves+
int chapterTarget;
if (missingPages.size() <= 3){
chapterTarget = 3;
} else if (missingPages.size() <= 5){
chapterTarget = 2;
} else {
chapterTarget = 1;
}
if(!missingPages.isEmpty() && chapter >= chapterTarget){
//for each chapter ahead of the target chapter, drop 1 additional page
int pagesToDrop = Math.min(missingPages.size(), (chapter - chapterTarget) + 1);
for (int i = 0; i < pagesToDrop; i++) {
AlchemyPage p = new AlchemyPage();
p.page(missingPages.remove(0));
int pos;
do {
pos = level.pointToCell(random());
} while (
level.map[pos] != Terrain.EMPTY_SP ||
level.heaps.get(pos) != null);
level.drop(p, pos);
}
}
if (level instanceof RegularLevel && ((RegularLevel)level).hasPitRoom()){
entrance.set( Door.Type.REGULAR );
} else {
entrance.set( Door.Type.LOCKED );
level.addItemToSpawn( new IronKey( Dungeon.depth ) );
}
}
private static Item prize( Level level ) {
Item prize = level.findPrizeItem( Potion.class );
if (prize == null)
prize = Generator.random( Random.oneOf( Generator.Category.POTION, Generator.Category.STONE ));
return prize;
}
}
| 4,486 | LaboratoryRoom | java | en | java | code | {"qsc_code_num_words": 569, "qsc_code_num_chars": 4486.0, "qsc_code_mean_word_length": 5.49209139, "qsc_code_frac_words_unique": 0.34622144, "qsc_code_frac_chars_top_2grams": 0.0432, "qsc_code_frac_chars_top_3grams": 0.17024, "qsc_code_frac_chars_top_4grams": 0.18304, "qsc_code_frac_chars_dupe_5grams": 0.32064, "qsc_code_frac_chars_dupe_6grams": 0.16416, "qsc_code_frac_chars_dupe_7grams": 0.11104, "qsc_code_frac_chars_dupe_8grams": 0.10368, "qsc_code_frac_chars_dupe_9grams": 0.10368, "qsc_code_frac_chars_dupe_10grams": 0.10368, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.01657609, "qsc_code_frac_chars_whitespace": 0.17967008, "qsc_code_size_file_byte": 4486.0, "qsc_code_num_lines": 131.0, "qsc_code_num_chars_line_max": 115.0, "qsc_code_num_chars_line_mean": 34.24427481, "qsc_code_frac_chars_alphabet": 0.8326087, "qsc_code_frac_chars_comments": 0.20263041, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.15730337, "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.02247191, "qsc_codejava_score_lines_no_logic": 0.26966292, "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} | 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/rooms/special/CryptRoom.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.rooms.special;
import com.shatteredpixel.shatteredpixeldungeon.Challenges;
import com.shatteredpixel.shatteredpixeldungeon.Dungeon;
import com.shatteredpixel.shatteredpixeldungeon.items.Generator;
import com.shatteredpixel.shatteredpixeldungeon.items.Gold;
import com.shatteredpixel.shatteredpixeldungeon.items.Heap;
import com.shatteredpixel.shatteredpixeldungeon.items.Item;
import com.shatteredpixel.shatteredpixeldungeon.items.armor.Armor;
import com.shatteredpixel.shatteredpixeldungeon.items.keys.IronKey;
import com.shatteredpixel.shatteredpixeldungeon.levels.Level;
import com.shatteredpixel.shatteredpixeldungeon.levels.Terrain;
import com.shatteredpixel.shatteredpixeldungeon.levels.painters.Painter;
import com.watabou.utils.Point;
public class CryptRoom extends SpecialRoom {
public void paint( Level level ) {
Painter.fill( level, this, Terrain.WALL );
Painter.fill( level, this, 1, Terrain.EMPTY );
Point c = center();
int cx = c.x;
int cy = c.y;
Door entrance = entrance();
entrance.set( Door.Type.LOCKED );
level.addItemToSpawn( new IronKey( Dungeon.depth ) );
if (entrance.x == left) {
Painter.set( level, new Point( right-1, top+1 ), Terrain.STATUE );
Painter.set( level, new Point( right-1, bottom-1 ), Terrain.STATUE );
cx = right - 2;
} else if (entrance.x == right) {
Painter.set( level, new Point( left+1, top+1 ), Terrain.STATUE );
Painter.set( level, new Point( left+1, bottom-1 ), Terrain.STATUE );
cx = left + 2;
} else if (entrance.y == top) {
Painter.set( level, new Point( left+1, bottom-1 ), Terrain.STATUE );
Painter.set( level, new Point( right-1, bottom-1 ), Terrain.STATUE );
cy = bottom - 2;
} else if (entrance.y == bottom) {
Painter.set( level, new Point( left+1, top+1 ), Terrain.STATUE );
Painter.set( level, new Point( right-1, top+1 ), Terrain.STATUE );
cy = top + 2;
}
level.drop( prize( level ), cx + cy * level.width() ).type = Heap.Type.TOMB;
}
private static Item prize( Level level ) {
//1 floor set higher than normal
Armor prize = Generator.randomArmor( (Dungeon.depth / 5) + 1);
if (Challenges.isItemBlocked(prize)){
return new Gold().random();
}
//if it isn't already cursed, give it a free upgrade
if (!prize.cursed){
prize.upgrade();
//curse the armor, unless it has a glyph
if (!prize.hasGoodGlyph()){
prize.inscribe(Armor.Glyph.randomCurse());
}
}
prize.cursed = prize.cursedKnown = true;
return prize;
}
}
| 3,337 | CryptRoom | java | en | java | code | {"qsc_code_num_words": 446, "qsc_code_num_chars": 3337.0, "qsc_code_mean_word_length": 5.35874439, "qsc_code_frac_words_unique": 0.36547085, "qsc_code_frac_chars_top_2grams": 0.08535565, "qsc_code_frac_chars_top_3grams": 0.19079498, "qsc_code_frac_chars_top_4grams": 0.20251046, "qsc_code_frac_chars_dupe_5grams": 0.39246862, "qsc_code_frac_chars_dupe_6grams": 0.18242678, "qsc_code_frac_chars_dupe_7grams": 0.15732218, "qsc_code_frac_chars_dupe_8grams": 0.15732218, "qsc_code_frac_chars_dupe_9grams": 0.15732218, "qsc_code_frac_chars_dupe_10grams": 0.15732218, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.0147801, "qsc_code_frac_chars_whitespace": 0.16871441, "qsc_code_size_file_byte": 3337.0, "qsc_code_num_lines": 94.0, "qsc_code_num_chars_line_max": 79.0, "qsc_code_num_chars_line_mean": 35.5, "qsc_code_frac_chars_alphabet": 0.84679164, "qsc_code_frac_chars_comments": 0.27120168, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.14035088, "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.03508772, "qsc_codejava_score_lines_no_logic": 0.28070175, "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} | 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/rooms/special/MassGraveRoom.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.rooms.special;
import com.shatteredpixel.shatteredpixeldungeon.Assets;
import com.shatteredpixel.shatteredpixeldungeon.actors.mobs.Skeleton;
import com.shatteredpixel.shatteredpixeldungeon.items.Generator;
import com.shatteredpixel.shatteredpixeldungeon.items.Gold;
import com.shatteredpixel.shatteredpixeldungeon.items.Heap;
import com.shatteredpixel.shatteredpixeldungeon.items.Item;
import com.shatteredpixel.shatteredpixeldungeon.items.potions.PotionOfLiquidFlame;
import com.shatteredpixel.shatteredpixeldungeon.items.quest.CorpseDust;
import com.shatteredpixel.shatteredpixeldungeon.levels.Level;
import com.shatteredpixel.shatteredpixeldungeon.levels.Terrain;
import com.shatteredpixel.shatteredpixeldungeon.levels.painters.Painter;
import com.shatteredpixel.shatteredpixeldungeon.messages.Messages;
import com.shatteredpixel.shatteredpixeldungeon.tiles.CustomTilemap;
import com.watabou.noosa.Image;
import com.watabou.noosa.Tilemap;
import com.watabou.utils.Random;
import java.util.ArrayList;
public class MassGraveRoom extends SpecialRoom {
@Override
public int minWidth() { return 7; }
@Override
public int minHeight() { return 7; }
public void paint(Level level){
Door entrance = entrance();
entrance.set(Door.Type.BARRICADE);
level.addItemToSpawn(new PotionOfLiquidFlame());
Painter.fill(level, this, Terrain.WALL);
Painter.fill(level, this, 1, Terrain.EMPTY_SP);
Bones b = new Bones();
b.setRect(left+1, top, width()-2, height()-1);
level.customTiles.add(b);
//50% 1 skeleton, 50% 2 skeletons
for (int i = 0; i <= Random.Int(2); i++){
Skeleton skele = new Skeleton();
int pos;
do {
pos = level.pointToCell(random());
} while (level.map[pos] != Terrain.EMPTY_SP || level.findMob(pos) != null);
skele.pos = pos;
level.mobs.add( skele );
}
ArrayList<Item> items = new ArrayList<>();
//100% corpse dust, 2x100% 1 coin, 2x30% coins, 1x60% random item, 1x30% armor
items.add(new CorpseDust());
items.add(new Gold(1));
items.add(new Gold(1));
if (Random.Float() <= 0.3f) items.add(new Gold());
if (Random.Float() <= 0.3f) items.add(new Gold());
if (Random.Float() <= 0.6f) items.add(Generator.random());
if (Random.Float() <= 0.3f) items.add(Generator.randomArmor());
for (Item item : items){
int pos;
do {
pos = level.pointToCell(random());
} while (level.map[pos] != Terrain.EMPTY_SP || level.heaps.get(pos) != null);
Heap h = level.drop(item, pos);
h.setHauntedIfCursed(1f);
h.type = Heap.Type.SKELETON;
}
}
public static class Bones extends CustomTilemap {
private static final int WALL_OVERLAP = 3;
private static final int FLOOR = 7;
{
texture = Assets.PRISON_QUEST;
}
@Override
public Tilemap create() {
Tilemap v = super.create();
int[] data = new int[tileW*tileH];
for (int i = 0; i < data.length; i++){
if (i < tileW) data[i] = WALL_OVERLAP;
else data[i] = FLOOR;
}
v.map( data, tileW );
return v;
}
@Override
public Image image(int tileX, int tileY) {
if (tileY == 0) return null;
else return super.image(tileX, tileY);
}
@Override
public String name(int tileX, int tileY) {
return Messages.get(this, "name");
}
@Override
public String desc(int tileX, int tileY) {
return Messages.get(this, "desc");
}
}
}
| 4,190 | MassGraveRoom | java | en | java | code | {"qsc_code_num_words": 549, "qsc_code_num_chars": 4190.0, "qsc_code_mean_word_length": 5.41530055, "qsc_code_frac_words_unique": 0.36612022, "qsc_code_frac_chars_top_2grams": 0.04843592, "qsc_code_frac_chars_top_3grams": 0.17894383, "qsc_code_frac_chars_top_4grams": 0.19239825, "qsc_code_frac_chars_dupe_5grams": 0.29801547, "qsc_code_frac_chars_dupe_6grams": 0.12310797, "qsc_code_frac_chars_dupe_7grams": 0.10427178, "qsc_code_frac_chars_dupe_8grams": 0.09619913, "qsc_code_frac_chars_dupe_9grams": 0.07130844, "qsc_code_frac_chars_dupe_10grams": 0.07130844, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.01806711, "qsc_code_frac_chars_whitespace": 0.16778043, "qsc_code_size_file_byte": 4190.0, "qsc_code_num_lines": 134.0, "qsc_code_num_chars_line_max": 83.0, "qsc_code_num_chars_line_mean": 31.26865672, "qsc_code_frac_chars_alphabet": 0.83452825, "qsc_code_frac_chars_comments": 0.21288783, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.17582418, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.00242571, "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.07692308, "qsc_codejava_score_lines_no_logic": 0.30769231, "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} | 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/rooms/sewerboss/GooBossRoom.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.rooms.sewerboss;
import com.shatteredpixel.shatteredpixeldungeon.Assets;
import com.shatteredpixel.shatteredpixeldungeon.levels.Level;
import com.shatteredpixel.shatteredpixeldungeon.levels.rooms.standard.StandardRoom;
import com.shatteredpixel.shatteredpixeldungeon.tiles.CustomTilemap;
import com.watabou.noosa.Image;
import com.watabou.noosa.Tilemap;
import com.watabou.utils.Random;
public abstract class GooBossRoom extends StandardRoom {
@Override
public float[] sizeCatProbs() {
return new float[]{0, 1, 0};
}
public static GooBossRoom randomGooRoom(){
switch (Random.Int(4)){
case 0: default:
return new DiamondGooRoom();
case 1:
return new WalledGooRoom();
case 2:
return new ThinPillarsGooRoom();
case 3:
return new ThickPillarsGooRoom();
}
}
protected void setupGooNest( Level level ){
GooNest nest = new GooNest();
nest.setRect(left + width()/2 - 2, top + height()/2 - 2, 4 + width()%2, 4 + height()%2);
level.customTiles.add(nest);
}
public static class GooNest extends CustomTilemap {
{
texture = Assets.SEWER_BOSS;
}
@Override
public Tilemap create() {
Tilemap v = super.create();
int[] data = new int[tileW*tileH];
for (int x = 0; x < tileW; x++){
for (int y = 0; y < tileH; y++){
//corners
if ((x == 0 || x == tileW-1) && (y == 0 || y == tileH-1)){
data[x + tileW*y] = -1;
//adjacent to corners
} else if ((x == 1 && y == 0) || (x == 0 && y == 1)){
data[x + tileW*y] = 0;
} else if ((x == tileW-2 && y == 0) || (x == tileW-1 && y == 1)){
data[x + tileW*y] = 1;
} else if ((x == 1 && y == tileH-1) || (x == 0 && y == tileH-2)){
data[x + tileW*y] = 2;
} else if ((x == tileW-2 && y == tileH-1) || (x == tileW-1 && y == tileH-2)) {
data[x + tileW*y] = 3;
//sides
} else if (x == 0){
data[x + tileW*y] = 4;
} else if (y == 0){
data[x + tileW*y] = 5;
} else if (x == tileW-1){
data[x + tileW*y] = 6;
} else if (y == tileH-1){
data[x + tileW*y] = 7;
//inside
} else {
data[x + tileW*y] = 8;
}
}
}
v.map( data, tileW );
return v;
}
@Override
public Image image(int tileX, int tileY) {
return null;
}
}
}
| 3,174 | GooBossRoom | java | en | java | code | {"qsc_code_num_words": 430, "qsc_code_num_chars": 3174.0, "qsc_code_mean_word_length": 4.4627907, "qsc_code_frac_words_unique": 0.36744186, "qsc_code_frac_chars_top_2grams": 0.05315268, "qsc_code_frac_chars_top_3grams": 0.05211047, "qsc_code_frac_chars_top_4grams": 0.05732152, "qsc_code_frac_chars_dupe_5grams": 0.22668056, "qsc_code_frac_chars_dupe_6grams": 0.09588327, "qsc_code_frac_chars_dupe_7grams": 0.03751954, "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.02917548, "qsc_code_frac_chars_whitespace": 0.25488343, "qsc_code_size_file_byte": 3174.0, "qsc_code_num_lines": 118.0, "qsc_code_num_chars_line_max": 91.0, "qsc_code_num_chars_line_mean": 26.89830508, "qsc_code_frac_chars_alphabet": 0.78224101, "qsc_code_frac_chars_comments": 0.25992439, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.04166667, "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.05555556, "qsc_codejava_score_lines_no_logic": 0.19444444, "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/levels/rooms/sewerboss/SewerBossExitRoom.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.rooms.sewerboss;
import com.shatteredpixel.shatteredpixeldungeon.Assets;
import com.shatteredpixel.shatteredpixeldungeon.levels.Level;
import com.shatteredpixel.shatteredpixeldungeon.levels.Terrain;
import com.shatteredpixel.shatteredpixeldungeon.levels.painters.Painter;
import com.shatteredpixel.shatteredpixeldungeon.levels.rooms.Room;
import com.shatteredpixel.shatteredpixeldungeon.levels.rooms.standard.ExitRoom;
import com.shatteredpixel.shatteredpixeldungeon.tiles.CustomTilemap;
import com.watabou.noosa.Image;
import com.watabou.noosa.Tilemap;
import com.watabou.utils.Point;
public class SewerBossExitRoom extends ExitRoom {
@Override
public int minWidth() {
return Math.max(super.minWidth(), 8);
}
@Override
public int minHeight() {
return Math.max(super.minHeight(), 8);
}
public void paint(Level level) {
Painter.fill( level, this, Terrain.WALL );
Painter.fill( level, this, 1, Terrain.EMPTY );
for (Room.Door door : connected.values()) {
door.set( Room.Door.Type.REGULAR );
}
Point c = center();
Painter.fill( level, c.x-1, c.y-1, 3, 2, Terrain.WALL );
Painter.fill( level, c.x-1, c.y+1, 3, 1, Terrain.EMPTY_SP );
level.exit = level.pointToCell(c);
Painter.set( level, level.exit, Terrain.LOCKED_EXIT );
CustomTilemap vis = new SewerExit();
vis.pos(c.x-1, c.y);
level.customTiles.add(vis);
vis = new SewerExitOverhang();
vis.pos(c.x-1, c.y-2);
level.customWalls.add(vis);
}
public static class SewerExit extends CustomTilemap {
{
texture = Assets.SEWER_BOSS;
tileW = 3;
tileH = 3;
}
private static final int[] layout = new int[]{
21, -1, 22,
23, 23, 23,
24, 24, 24
};
@Override
public Tilemap create() {
Tilemap v = super.create();
v.map(layout, 3);
return v;
}
@Override
public Image image(int tileX, int tileY) {
if ((tileX == 1 && tileY == 0) || tileY == 2){
return null;
}
return super.image(tileX, tileY);
}
}
public static class SewerExitOverhang extends CustomTilemap {
{
texture = Assets.SEWER_BOSS;
tileW = 3;
tileH = 2;
}
private static final int[] layout = new int[]{
16, 17, 18,
19, -1, 20
};
@Override
public Tilemap create() {
Tilemap v = super.create();
v.map(layout, 3);
return v;
}
@Override
public Image image(int tileX, int tileY) {
return null;
}
}
}
| 3,253 | SewerBossExitRoom | java | en | java | code | {"qsc_code_num_words": 433, "qsc_code_num_chars": 3253.0, "qsc_code_mean_word_length": 5.17321016, "qsc_code_frac_words_unique": 0.38568129, "qsc_code_frac_chars_top_2grams": 0.04017857, "qsc_code_frac_chars_top_3grams": 0.13571429, "qsc_code_frac_chars_top_4grams": 0.1375, "qsc_code_frac_chars_dupe_5grams": 0.39151786, "qsc_code_frac_chars_dupe_6grams": 0.27410714, "qsc_code_frac_chars_dupe_7grams": 0.2, "qsc_code_frac_chars_dupe_8grams": 0.16071429, "qsc_code_frac_chars_dupe_9grams": 0.16071429, "qsc_code_frac_chars_dupe_10grams": 0.11339286, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.02601377, "qsc_code_frac_chars_whitespace": 0.19643406, "qsc_code_size_file_byte": 3253.0, "qsc_code_num_lines": 131.0, "qsc_code_num_chars_line_max": 80.0, "qsc_code_num_chars_line_mean": 24.83206107, "qsc_code_frac_chars_alphabet": 0.83091048, "qsc_code_frac_chars_comments": 0.23977867, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.30588235, "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.08235294, "qsc_codejava_score_lines_no_logic": 0.25882353, "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/levels/rooms/special/ShopRoom.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.rooms.special;
import com.shatteredpixel.shatteredpixeldungeon.Dungeon;
import com.shatteredpixel.shatteredpixeldungeon.actors.hero.Belongings;
import com.shatteredpixel.shatteredpixeldungeon.actors.mobs.Mob;
import com.shatteredpixel.shatteredpixeldungeon.actors.mobs.npcs.Shopkeeper;
import com.shatteredpixel.shatteredpixeldungeon.items.Ankh;
import com.shatteredpixel.shatteredpixeldungeon.items.Generator;
import com.shatteredpixel.shatteredpixeldungeon.items.Heap;
import com.shatteredpixel.shatteredpixeldungeon.items.Honeypot;
import com.shatteredpixel.shatteredpixeldungeon.items.Item;
import com.shatteredpixel.shatteredpixeldungeon.items.MerchantsBeacon;
import com.shatteredpixel.shatteredpixeldungeon.items.Stylus;
import com.shatteredpixel.shatteredpixeldungeon.items.Torch;
import com.shatteredpixel.shatteredpixeldungeon.items.armor.LeatherArmor;
import com.shatteredpixel.shatteredpixeldungeon.items.armor.MailArmor;
import com.shatteredpixel.shatteredpixeldungeon.items.armor.PlateArmor;
import com.shatteredpixel.shatteredpixeldungeon.items.armor.ScaleArmor;
import com.shatteredpixel.shatteredpixeldungeon.items.artifacts.TimekeepersHourglass;
import com.shatteredpixel.shatteredpixeldungeon.items.bags.Bag;
import com.shatteredpixel.shatteredpixeldungeon.items.bags.MagicalHolster;
import com.shatteredpixel.shatteredpixeldungeon.items.bags.PotionBandolier;
import com.shatteredpixel.shatteredpixeldungeon.items.bags.ScrollHolder;
import com.shatteredpixel.shatteredpixeldungeon.items.bags.VelvetPouch;
import com.shatteredpixel.shatteredpixeldungeon.items.bombs.Bomb;
import com.shatteredpixel.shatteredpixeldungeon.items.food.SmallRation;
import com.shatteredpixel.shatteredpixeldungeon.items.potions.Potion;
import com.shatteredpixel.shatteredpixeldungeon.items.potions.PotionOfHealing;
import com.shatteredpixel.shatteredpixeldungeon.items.scrolls.Scroll;
import com.shatteredpixel.shatteredpixeldungeon.items.scrolls.ScrollOfIdentify;
import com.shatteredpixel.shatteredpixeldungeon.items.scrolls.ScrollOfMagicMapping;
import com.shatteredpixel.shatteredpixeldungeon.items.scrolls.ScrollOfRemoveCurse;
import com.shatteredpixel.shatteredpixeldungeon.items.stones.Runestone;
import com.shatteredpixel.shatteredpixeldungeon.items.stones.StoneOfAugmentation;
import com.shatteredpixel.shatteredpixeldungeon.items.wands.Wand;
import com.shatteredpixel.shatteredpixeldungeon.items.weapon.melee.BattleAxe;
import com.shatteredpixel.shatteredpixeldungeon.items.weapon.melee.Greatsword;
import com.shatteredpixel.shatteredpixeldungeon.items.weapon.melee.HandAxe;
import com.shatteredpixel.shatteredpixeldungeon.items.weapon.melee.Longsword;
import com.shatteredpixel.shatteredpixeldungeon.items.weapon.melee.Mace;
import com.shatteredpixel.shatteredpixeldungeon.items.weapon.melee.Shortsword;
import com.shatteredpixel.shatteredpixeldungeon.items.weapon.melee.Sword;
import com.shatteredpixel.shatteredpixeldungeon.items.weapon.melee.WarHammer;
import com.shatteredpixel.shatteredpixeldungeon.items.weapon.missiles.Bolas;
import com.shatteredpixel.shatteredpixeldungeon.items.weapon.missiles.FishingSpear;
import com.shatteredpixel.shatteredpixeldungeon.items.weapon.missiles.Javelin;
import com.shatteredpixel.shatteredpixeldungeon.items.weapon.missiles.MissileWeapon;
import com.shatteredpixel.shatteredpixeldungeon.items.weapon.missiles.Shuriken;
import com.shatteredpixel.shatteredpixeldungeon.items.weapon.missiles.ThrowingHammer;
import com.shatteredpixel.shatteredpixeldungeon.items.weapon.missiles.ThrowingSpear;
import com.shatteredpixel.shatteredpixeldungeon.items.weapon.missiles.Tomahawk;
import com.shatteredpixel.shatteredpixeldungeon.items.weapon.missiles.Trident;
import com.shatteredpixel.shatteredpixeldungeon.items.weapon.missiles.darts.TippedDart;
import com.shatteredpixel.shatteredpixeldungeon.levels.Level;
import com.shatteredpixel.shatteredpixeldungeon.levels.Terrain;
import com.shatteredpixel.shatteredpixeldungeon.levels.painters.Painter;
import com.shatteredpixel.shatteredpixeldungeon.plants.Plant;
import com.watabou.utils.Point;
import com.watabou.utils.Random;
import java.util.ArrayList;
public class ShopRoom extends SpecialRoom {
private ArrayList<Item> itemsToSpawn;
@Override
public int minWidth() {
if (itemsToSpawn == null) itemsToSpawn = generateItems();
return Math.max(7, (int)(Math.sqrt(itemsToSpawn.size())+3));
}
@Override
public int minHeight() {
if (itemsToSpawn == null) itemsToSpawn = generateItems();
return Math.max(7, (int)(Math.sqrt(itemsToSpawn.size())+3));
}
public void paint( Level level ) {
Painter.fill( level, this, Terrain.WALL );
Painter.fill( level, this, 1, Terrain.EMPTY_SP );
placeShopkeeper( level );
placeItems( level );
for (Door door : connected.values()) {
door.set( Door.Type.REGULAR );
}
}
protected void placeShopkeeper( Level level ) {
int pos = level.pointToCell(center());
Mob shopkeeper = new Shopkeeper();
shopkeeper.pos = pos;
level.mobs.add( shopkeeper );
}
protected void placeItems( Level level ){
if (itemsToSpawn == null)
itemsToSpawn = generateItems();
Point itemPlacement = new Point(entrance());
if (itemPlacement.y == top){
itemPlacement.y++;
} else if (itemPlacement.y == bottom) {
itemPlacement.y--;
} else if (itemPlacement.x == left){
itemPlacement.x++;
} else {
itemPlacement.x--;
}
for (Item item : itemsToSpawn) {
if (itemPlacement.x == left+1 && itemPlacement.y != top+1){
itemPlacement.y--;
} else if (itemPlacement.y == top+1 && itemPlacement.x != right-1){
itemPlacement.x++;
} else if (itemPlacement.x == right-1 && itemPlacement.y != bottom-1){
itemPlacement.y++;
} else {
itemPlacement.x--;
}
int cell = level.pointToCell(itemPlacement);
if (level.heaps.get( cell ) != null) {
do {
cell = level.pointToCell(random());
} while (level.heaps.get( cell ) != null || level.findMob( cell ) != null);
}
level.drop( item, cell ).type = Heap.Type.FOR_SALE;
}
}
protected static ArrayList<Item> generateItems() {
ArrayList<Item> itemsToSpawn = new ArrayList<>();
switch (Dungeon.depth) {
case 6:
itemsToSpawn.add( (Random.Int( 2 ) == 0 ? new Shortsword().identify() : new HandAxe()).identify() );
itemsToSpawn.add( Random.Int( 2 ) == 0 ?
new FishingSpear().quantity(2) :
new Shuriken().quantity(2));
itemsToSpawn.add( new LeatherArmor().identify() );
break;
case 11:
itemsToSpawn.add( (Random.Int( 2 ) == 0 ? new Sword().identify() : new Mace()).identify() );
itemsToSpawn.add( Random.Int( 2 ) == 0 ?
new ThrowingSpear().quantity(2) :
new Bolas().quantity(2));
itemsToSpawn.add( new MailArmor().identify() );
break;
case 16:
itemsToSpawn.add( (Random.Int( 2 ) == 0 ? new Longsword().identify() : new BattleAxe()).identify() );
itemsToSpawn.add( Random.Int( 2 ) == 0 ?
new Javelin().quantity(2) :
new Tomahawk().quantity(2));
itemsToSpawn.add( new ScaleArmor().identify() );
break;
case 21:
itemsToSpawn.add( Random.Int( 2 ) == 0 ? new Greatsword().identify() : new WarHammer().identify() );
itemsToSpawn.add( Random.Int(2) == 0 ?
new Trident().quantity(2) :
new ThrowingHammer().quantity(2));
itemsToSpawn.add( new PlateArmor().identify() );
itemsToSpawn.add( new Torch() );
itemsToSpawn.add( new Torch() );
itemsToSpawn.add( new Torch() );
break;
}
itemsToSpawn.add( TippedDart.randomTipped(2) );
itemsToSpawn.add( new MerchantsBeacon() );
itemsToSpawn.add(ChooseBag(Dungeon.hero.belongings));
itemsToSpawn.add( new PotionOfHealing() );
for (int i=0; i < 3; i++)
itemsToSpawn.add( Generator.random( Generator.Category.POTION ) );
itemsToSpawn.add( new ScrollOfIdentify() );
itemsToSpawn.add( new ScrollOfRemoveCurse() );
itemsToSpawn.add( new ScrollOfMagicMapping() );
itemsToSpawn.add( Generator.random( Generator.Category.SCROLL ) );
for (int i=0; i < 2; i++)
itemsToSpawn.add( Random.Int(2) == 0 ?
Generator.random( Generator.Category.POTION ) :
Generator.random( Generator.Category.SCROLL ) );
itemsToSpawn.add( new SmallRation() );
itemsToSpawn.add( new SmallRation() );
switch (Random.Int(4)){
case 0:
itemsToSpawn.add( new Bomb() );
break;
case 1:
case 2:
itemsToSpawn.add( new Bomb.DoubleBomb() );
break;
case 3:
itemsToSpawn.add( new Honeypot() );
break;
}
itemsToSpawn.add( new Ankh() );
itemsToSpawn.add( new StoneOfAugmentation() );
TimekeepersHourglass hourglass = Dungeon.hero.belongings.getItem(TimekeepersHourglass.class);
if (hourglass != null){
int bags = 0;
//creates the given float percent of the remaining bags to be dropped.
//this way players who get the hourglass late can still max it, usually.
switch (Dungeon.depth) {
case 6:
bags = (int)Math.ceil(( 5-hourglass.sandBags) * 0.20f ); break;
case 11:
bags = (int)Math.ceil(( 5-hourglass.sandBags) * 0.25f ); break;
case 16:
bags = (int)Math.ceil(( 5-hourglass.sandBags) * 0.50f ); break;
case 21:
bags = (int)Math.ceil(( 5-hourglass.sandBags) * 0.80f ); break;
}
for(int i = 1; i <= bags; i++){
itemsToSpawn.add( new TimekeepersHourglass.sandBag());
hourglass.sandBags ++;
}
}
Item rare;
switch (Random.Int(10)){
case 0:
rare = Generator.random( Generator.Category.WAND );
rare.level( 0 );
break;
case 1:
rare = Generator.random(Generator.Category.RING);
rare.level( 0 );
break;
case 2:
rare = Generator.random( Generator.Category.ARTIFACT );
break;
default:
rare = new Stylus();
}
rare.cursed = false;
rare.cursedKnown = true;
itemsToSpawn.add( rare );
//hard limit is 63 items + 1 shopkeeper, as shops can't be bigger than 8x8=64 internally
if (itemsToSpawn.size() > 63)
throw new RuntimeException("Shop attempted to carry more than 63 items!");
Random.shuffle(itemsToSpawn);
return itemsToSpawn;
}
protected static Bag ChooseBag(Belongings pack){
//0=pouch, 1=holder, 2=bandolier, 3=holster
int[] bagItems = new int[4];
//count up items in the main bag
for (Item item : pack.backpack.items) {
if (item instanceof Plant.Seed || item instanceof Runestone) bagItems[0]++;
if (item instanceof Scroll) bagItems[1]++;
if (item instanceof Potion) bagItems[2]++;
if (item instanceof Wand || item instanceof MissileWeapon) bagItems[3]++;
}
//disqualify bags that have already been dropped
if (Dungeon.LimitedDrops.VELVET_POUCH.dropped()) bagItems[0] = -1;
if (Dungeon.LimitedDrops.SCROLL_HOLDER.dropped()) bagItems[1] = -1;
if (Dungeon.LimitedDrops.POTION_BANDOLIER.dropped()) bagItems[2] = -1;
if (Dungeon.LimitedDrops.MAGICAL_HOLSTER.dropped()) bagItems[3] = -1;
//find the best bag to drop. This does give a preference to later bags, if counts are equal
int bestBagIdx = 0;
for (int i = 1; i <= 3; i++){
if (bagItems[bestBagIdx] <= bagItems[i]){
bestBagIdx = i;
}
}
//drop it, or return nothing if no bag works
if (bagItems[bestBagIdx] == -1) return null;
switch (bestBagIdx){
case 0: default:
Dungeon.LimitedDrops.VELVET_POUCH.drop();
return new VelvetPouch();
case 1:
Dungeon.LimitedDrops.SCROLL_HOLDER.drop();
return new ScrollHolder();
case 2:
Dungeon.LimitedDrops.POTION_BANDOLIER.drop();
return new PotionBandolier();
case 3:
Dungeon.LimitedDrops.MAGICAL_HOLSTER.drop();
return new MagicalHolster();
}
}
}
| 12,546 | ShopRoom | java | en | java | code | {"qsc_code_num_words": 1422, "qsc_code_num_chars": 12546.0, "qsc_code_mean_word_length": 6.42123769, "qsc_code_frac_words_unique": 0.22503516, "qsc_code_frac_chars_top_2grams": 0.05618224, "qsc_code_frac_chars_top_3grams": 0.23305224, "qsc_code_frac_chars_top_4grams": 0.26503121, "qsc_code_frac_chars_dupe_5grams": 0.48976016, "qsc_code_frac_chars_dupe_6grams": 0.33161757, "qsc_code_frac_chars_dupe_7grams": 0.19154529, "qsc_code_frac_chars_dupe_8grams": 0.05727741, "qsc_code_frac_chars_dupe_9grams": 0.0186179, "qsc_code_frac_chars_dupe_10grams": 0.0186179, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.01306391, "qsc_code_frac_chars_whitespace": 0.15192093, "qsc_code_size_file_byte": 12546.0, "qsc_code_num_lines": 344.0, "qsc_code_num_chars_line_max": 105.0, "qsc_code_num_chars_line_mean": 36.47093023, "qsc_code_frac_chars_alphabet": 0.84511278, "qsc_code_frac_chars_comments": 0.10114778, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.22307692, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.00381307, "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.05384615, "qsc_codejava_score_lines_no_logic": 0.29230769, "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} | 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/rooms/special/StorageRoom.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.rooms.special;
import com.shatteredpixel.shatteredpixeldungeon.items.Generator;
import com.shatteredpixel.shatteredpixeldungeon.items.Honeypot;
import com.shatteredpixel.shatteredpixeldungeon.items.Item;
import com.shatteredpixel.shatteredpixeldungeon.items.potions.PotionOfLiquidFlame;
import com.shatteredpixel.shatteredpixeldungeon.levels.Level;
import com.shatteredpixel.shatteredpixeldungeon.levels.Terrain;
import com.shatteredpixel.shatteredpixeldungeon.levels.painters.Painter;
import com.watabou.utils.Random;
public class StorageRoom extends SpecialRoom {
public void paint( Level level ) {
final int floor = Terrain.EMPTY_SP;
Painter.fill( level, this, Terrain.WALL );
Painter.fill( level, this, 1, floor );
boolean honeyPot = Random.Int( 2 ) == 0;
int n = Random.IntRange( 3, 4 );
for (int i=0; i < n; i++) {
int pos;
do {
pos = level.pointToCell(random());
} while (level.map[pos] != floor);
if (honeyPot){
level.drop( new Honeypot(), pos);
honeyPot = false;
} else
level.drop( prize( level ), pos );
}
entrance().set( Door.Type.BARRICADE );
level.addItemToSpawn( new PotionOfLiquidFlame() );
}
private static Item prize( Level level ) {
if (Random.Int(2) != 0){
Item prize = level.findPrizeItem();
if (prize != null)
return prize;
}
return Generator.random( Random.oneOf(
Generator.Category.POTION,
Generator.Category.SCROLL,
Generator.Category.FOOD,
Generator.Category.GOLD
) );
}
}
| 2,341 | StorageRoom | java | en | java | code | {"qsc_code_num_words": 297, "qsc_code_num_chars": 2341.0, "qsc_code_mean_word_length": 5.72727273, "qsc_code_frac_words_unique": 0.49494949, "qsc_code_frac_chars_top_2grams": 0.07995297, "qsc_code_frac_chars_top_3grams": 0.1787184, "qsc_code_frac_chars_top_4grams": 0.18106996, "qsc_code_frac_chars_dupe_5grams": 0.2516167, "qsc_code_frac_chars_dupe_6grams": 0.03292181, "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.0128999, "qsc_code_frac_chars_whitespace": 0.17214865, "qsc_code_size_file_byte": 2341.0, "qsc_code_num_lines": 75.0, "qsc_code_num_chars_line_max": 83.0, "qsc_code_num_chars_line_mean": 31.21333333, "qsc_code_frac_chars_alphabet": 0.86480908, "qsc_code_frac_chars_comments": 0.33361811, "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.04545455, "qsc_codejava_score_lines_no_logic": 0.29545455, "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} | 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/rooms/special/PoolRoom.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.rooms.special;
import com.shatteredpixel.shatteredpixeldungeon.Challenges;
import com.shatteredpixel.shatteredpixeldungeon.Dungeon;
import com.shatteredpixel.shatteredpixeldungeon.actors.mobs.Piranha;
import com.shatteredpixel.shatteredpixeldungeon.items.Generator;
import com.shatteredpixel.shatteredpixeldungeon.items.Heap;
import com.shatteredpixel.shatteredpixeldungeon.items.Item;
import com.shatteredpixel.shatteredpixeldungeon.items.potions.PotionOfInvisibility;
import com.shatteredpixel.shatteredpixeldungeon.levels.Level;
import com.shatteredpixel.shatteredpixeldungeon.levels.Terrain;
import com.shatteredpixel.shatteredpixeldungeon.levels.painters.Painter;
import com.watabou.utils.Random;
public class PoolRoom extends SpecialRoom {
private static final int NPIRANHAS = 3;
@Override
public int minWidth() {
return 6;
}
@Override
public int minHeight() {
return 6;
}
public void paint(Level level ) {
Painter.fill( level, this, Terrain.WALL );
Painter.fill( level, this, 1, Terrain.WATER );
Door door = entrance();
door.set( Door.Type.REGULAR );
int x = -1;
int y = -1;
if (door.x == left) {
x = right - 1;
y = top + height() / 2;
Painter.fill(level, left+1, top+1, 1, height()-2, Terrain.EMPTY_SP);
} else if (door.x == right) {
x = left + 1;
y = top + height() / 2;
Painter.fill(level, right-1, top+1, 1, height()-2, Terrain.EMPTY_SP);
} else if (door.y == top) {
x = left + width() / 2;
y = bottom - 1;
Painter.fill(level, left+1, top+1, width()-2, 1, Terrain.EMPTY_SP);
} else if (door.y == bottom) {
x = left + width() / 2;
y = top + 1;
Painter.fill(level, left+1, bottom-1, width()-2, 1, Terrain.EMPTY_SP);
}
int pos = x + y * level.width();
level.drop( prize( level ), pos ).type =
Random.Int( 3 ) == 0 ? Heap.Type.CHEST : Heap.Type.HEAP;
Painter.set( level, pos, Terrain.PEDESTAL );
level.addItemToSpawn( new PotionOfInvisibility() );
for (int i=0; i < NPIRANHAS; i++) {
Piranha piranha = new Piranha();
do {
piranha.pos = level.pointToCell(random());
} while (level.map[piranha.pos] != Terrain.WATER|| level.findMob( piranha.pos ) != null);
level.mobs.add( piranha );
}
}
private static Item prize( Level level ) {
Item prize;
if (Random.Int(3) == 0){
prize = level.findPrizeItem();
if (prize != null)
return prize;
}
//1 floor set higher in probability, never cursed
do {
if (Random.Int(2) == 0) {
prize = Generator.randomWeapon((Dungeon.depth / 5) + 1);
} else {
prize = Generator.randomArmor((Dungeon.depth / 5) + 1);
}
} while (prize.cursed || Challenges.isItemBlocked(prize));
prize.cursedKnown = true;
//33% chance for an extra update.
if (Random.Int(3) == 0){
prize.upgrade();
}
return prize;
}
}
| 3,685 | PoolRoom | java | en | java | code | {"qsc_code_num_words": 487, "qsc_code_num_chars": 3685.0, "qsc_code_mean_word_length": 5.15195072, "qsc_code_frac_words_unique": 0.35934292, "qsc_code_frac_chars_top_2grams": 0.07453169, "qsc_code_frac_chars_top_3grams": 0.16660024, "qsc_code_frac_chars_top_4grams": 0.17536867, "qsc_code_frac_chars_dupe_5grams": 0.28895974, "qsc_code_frac_chars_dupe_6grams": 0.13112794, "qsc_code_frac_chars_dupe_7grams": 0.08529295, "qsc_code_frac_chars_dupe_8grams": 0.05181347, "qsc_code_frac_chars_dupe_9grams": 0.02949382, "qsc_code_frac_chars_dupe_10grams": 0.02949382, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.02116935, "qsc_code_frac_chars_whitespace": 0.19240163, "qsc_code_size_file_byte": 3685.0, "qsc_code_num_lines": 128.0, "qsc_code_num_chars_line_max": 93.0, "qsc_code_num_chars_line_mean": 28.7890625, "qsc_code_frac_chars_alphabet": 0.8219086, "qsc_code_frac_chars_comments": 0.23419267, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.175, "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.05, "qsc_codejava_score_lines_no_logic": 0.2625, "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/levels/rooms/special/VaultRoom.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.rooms.special;
import com.shatteredpixel.shatteredpixeldungeon.Challenges;
import com.shatteredpixel.shatteredpixeldungeon.Dungeon;
import com.shatteredpixel.shatteredpixeldungeon.items.Generator;
import com.shatteredpixel.shatteredpixeldungeon.items.Heap;
import com.shatteredpixel.shatteredpixeldungeon.items.Item;
import com.shatteredpixel.shatteredpixeldungeon.items.keys.CrystalKey;
import com.shatteredpixel.shatteredpixeldungeon.items.keys.IronKey;
import com.shatteredpixel.shatteredpixeldungeon.levels.Level;
import com.shatteredpixel.shatteredpixeldungeon.levels.Terrain;
import com.shatteredpixel.shatteredpixeldungeon.levels.painters.Painter;
import com.watabou.utils.PathFinder;
import com.watabou.utils.Random;
import java.util.ArrayList;
import java.util.Arrays;
public class VaultRoom extends SpecialRoom {
public void paint( Level level ) {
Painter.fill( level, this, Terrain.WALL );
Painter.fill( level, this, 1, Terrain.EMPTY_SP );
Painter.fill( level, this, 2, Terrain.EMPTY );
int cx = (left + right) / 2;
int cy = (top + bottom) / 2;
int c = cx + cy * level.width();
Random.shuffle(prizeClasses);
Item i1, i2;
i1 = prize( level );
i2 = prize( level );
level.drop( i1, c ).type = Heap.Type.CRYSTAL_CHEST;
level.drop( i2, c + PathFinder.NEIGHBOURS8[Random.Int( 8 )]).type = Heap.Type.CRYSTAL_CHEST;
level.addItemToSpawn( new CrystalKey( Dungeon.depth ) );
entrance().set( Door.Type.LOCKED );
level.addItemToSpawn( new IronKey( Dungeon.depth ) );
}
private Item prize( Level level ) {
Generator.Category cat = prizeClasses.remove(0);
Item prize = null;
do {
prize = Generator.random(cat);
} while (prize == null || Challenges.isItemBlocked(prize));
return prize;
}
private ArrayList<Generator.Category> prizeClasses = new ArrayList<>(
Arrays.asList(Generator.Category.WAND,
Generator.Category.RING,
Generator.Category.ARTIFACT));
}
| 2,771 | VaultRoom | java | en | java | code | {"qsc_code_num_words": 351, "qsc_code_num_chars": 2771.0, "qsc_code_mean_word_length": 5.92877493, "qsc_code_frac_words_unique": 0.45014245, "qsc_code_frac_chars_top_2grams": 0.05189813, "qsc_code_frac_chars_top_3grams": 0.20086497, "qsc_code_frac_chars_top_4grams": 0.21143681, "qsc_code_frac_chars_dupe_5grams": 0.26093224, "qsc_code_frac_chars_dupe_6grams": 0.1057184, "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.01269036, "qsc_code_frac_chars_whitespace": 0.14687838, "qsc_code_size_file_byte": 2771.0, "qsc_code_num_lines": 77.0, "qsc_code_num_chars_line_max": 95.0, "qsc_code_num_chars_line_mean": 35.98701299, "qsc_code_frac_chars_alphabet": 0.86759729, "qsc_code_frac_chars_comments": 0.28184771, "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.04347826, "qsc_codejava_score_lines_no_logic": 0.39130435, "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} | 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/rooms/special/GardenRoom.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.rooms.special;
import com.shatteredpixel.shatteredpixeldungeon.Challenges;
import com.shatteredpixel.shatteredpixeldungeon.Dungeon;
import com.shatteredpixel.shatteredpixeldungeon.actors.blobs.Foliage;
import com.shatteredpixel.shatteredpixeldungeon.levels.Level;
import com.shatteredpixel.shatteredpixeldungeon.levels.Terrain;
import com.shatteredpixel.shatteredpixeldungeon.levels.painters.Painter;
import com.shatteredpixel.shatteredpixeldungeon.plants.BlandfruitBush;
import com.shatteredpixel.shatteredpixeldungeon.plants.Sungrass;
import com.watabou.utils.Random;
public class GardenRoom extends SpecialRoom {
public void paint( Level level ) {
Painter.fill( level, this, Terrain.WALL );
Painter.fill( level, this, 1, Terrain.HIGH_GRASS );
Painter.fill( level, this, 2, Terrain.GRASS );
entrance().set( Door.Type.REGULAR );
if (Dungeon.isChallenged(Challenges.NO_FOOD)) {
if (Random.Int(2) == 0){
level.plant(new Sungrass.Seed(), plantPos( level ));
}
} else {
int bushes = Random.Int(3);
if (bushes == 0) {
level.plant(new Sungrass.Seed(), plantPos( level ));
} else if (bushes == 1) {
level.plant(new BlandfruitBush.Seed(), plantPos( level ));
} else if (Random.Int(5) == 0) {
level.plant(new Sungrass.Seed(), plantPos( level ));
level.plant(new BlandfruitBush.Seed(), plantPos( level ));
}
}
Foliage light = (Foliage)level.blobs.get( Foliage.class );
if (light == null) {
light = new Foliage();
}
for (int i=top + 1; i < bottom; i++) {
for (int j=left + 1; j < right; j++) {
light.seed( level, j + level.width() * i, 1 );
}
}
level.blobs.put( Foliage.class, light );
}
private int plantPos( Level level ){
int pos;
do{
pos = level.pointToCell(random());
} while (level.plants.get(pos) != null);
return pos;
}
}
| 2,668 | GardenRoom | java | en | java | code | {"qsc_code_num_words": 346, "qsc_code_num_chars": 2668.0, "qsc_code_mean_word_length": 5.48554913, "qsc_code_frac_words_unique": 0.42196532, "qsc_code_frac_chars_top_2grams": 0.08061117, "qsc_code_frac_chars_top_3grams": 0.18018967, "qsc_code_frac_chars_top_4grams": 0.18545838, "qsc_code_frac_chars_dupe_5grams": 0.29135933, "qsc_code_frac_chars_dupe_6grams": 0.14172813, "qsc_code_frac_chars_dupe_7grams": 0.11222339, "qsc_code_frac_chars_dupe_8grams": 0.0658588, "qsc_code_frac_chars_dupe_9grams": 0.04531085, "qsc_code_frac_chars_dupe_10grams": 0.0, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.01309255, "qsc_code_frac_chars_whitespace": 0.1697901, "qsc_code_size_file_byte": 2668.0, "qsc_code_num_lines": 78.0, "qsc_code_num_chars_line_max": 73.0, "qsc_code_num_chars_line_mean": 34.20512821, "qsc_code_frac_chars_alphabet": 0.84379233, "qsc_code_frac_chars_comments": 0.29272864, "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.04, "qsc_codejava_score_lines_no_logic": 0.28, "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} | 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/rooms/special/WeakFloorRoom.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.rooms.special;
import com.shatteredpixel.shatteredpixeldungeon.Assets;
import com.shatteredpixel.shatteredpixeldungeon.Dungeon;
import com.shatteredpixel.shatteredpixeldungeon.levels.Level;
import com.shatteredpixel.shatteredpixeldungeon.levels.Terrain;
import com.shatteredpixel.shatteredpixeldungeon.levels.painters.Painter;
import com.shatteredpixel.shatteredpixeldungeon.messages.Messages;
import com.shatteredpixel.shatteredpixeldungeon.tiles.CustomTilemap;
import com.watabou.noosa.Tilemap;
import com.watabou.utils.Point;
import com.watabou.utils.Random;
public class WeakFloorRoom extends SpecialRoom {
public void paint( Level level ) {
Painter.fill( level, this, Terrain.WALL );
Painter.fill( level, this, 1, Terrain.CHASM );
Door door = entrance();
door.set( Door.Type.REGULAR );
Point well = null;
if (door.x == left) {
for (int i=top + 1; i < bottom; i++) {
Painter.drawInside( level, this, new Point( left, i ), Random.IntRange( 1, width() - 4 ), Terrain.EMPTY_SP );
}
well = new Point( right-1, Random.Int( 2 ) == 0 ? top + 2 : bottom - 1 );
} else if (door.x == right) {
for (int i=top + 1; i < bottom; i++) {
Painter.drawInside( level, this, new Point( right, i ), Random.IntRange( 1, width() - 4 ), Terrain.EMPTY_SP );
}
well = new Point( left+1, Random.Int( 2 ) == 0 ? top + 2 : bottom - 1 );
} else if (door.y == top) {
for (int i=left + 1; i < right; i++) {
Painter.drawInside( level, this, new Point( i, top ), Random.IntRange( 1, height() - 4 ), Terrain.EMPTY_SP );
}
well = new Point( Random.Int( 2 ) == 0 ? left + 1 : right - 1, bottom-1 );
} else if (door.y == bottom) {
for (int i=left + 1; i < right; i++) {
Painter.drawInside( level, this, new Point( i, bottom ), Random.IntRange( 1, height() - 4 ), Terrain.EMPTY_SP );
}
well = new Point( Random.Int( 2 ) == 0 ? left + 1 : right - 1, top+2 );
}
Painter.set(level, well, Terrain.CHASM);
CustomTilemap vis = new HiddenWell();
vis.pos(well.x, well.y);
level.customTiles.add(vis);
}
public static class HiddenWell extends CustomTilemap {
{
texture = Assets.WEAK_FLOOR;
tileW = tileH = 1;
}
@Override
public Tilemap create() {
Tilemap v = super.create();
v.map( new int[]{Dungeon.depth/5}, 1);
return v;
}
@Override
public String name(int tileX, int tileY) {
return Messages.get(this, "name");
}
@Override
public String desc(int tileX, int tileY) {
return Messages.get(this, "desc");
}
}
}
| 3,354 | WeakFloorRoom | java | en | java | code | {"qsc_code_num_words": 462, "qsc_code_num_chars": 3354.0, "qsc_code_mean_word_length": 4.93290043, "qsc_code_frac_words_unique": 0.34848485, "qsc_code_frac_chars_top_2grams": 0.039491, "qsc_code_frac_chars_top_3grams": 0.13339184, "qsc_code_frac_chars_top_4grams": 0.13514699, "qsc_code_frac_chars_dupe_5grams": 0.3690215, "qsc_code_frac_chars_dupe_6grams": 0.29179465, "qsc_code_frac_chars_dupe_7grams": 0.25888548, "qsc_code_frac_chars_dupe_8grams": 0.25888548, "qsc_code_frac_chars_dupe_9grams": 0.22641509, "qsc_code_frac_chars_dupe_10grams": 0.22641509, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.01957164, "qsc_code_frac_chars_whitespace": 0.19260584, "qsc_code_size_file_byte": 3354.0, "qsc_code_num_lines": 99.0, "qsc_code_num_chars_line_max": 117.0, "qsc_code_num_chars_line_mean": 33.87878788, "qsc_code_frac_chars_alphabet": 0.82200886, "qsc_code_frac_chars_comments": 0.23285629, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.10769231, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.00310921, "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.06153846, "qsc_codejava_score_lines_no_logic": 0.24615385, "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/levels/rooms/special/StatueRoom.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.rooms.special;
import com.shatteredpixel.shatteredpixeldungeon.Dungeon;
import com.shatteredpixel.shatteredpixeldungeon.actors.mobs.Statue;
import com.shatteredpixel.shatteredpixeldungeon.items.keys.IronKey;
import com.shatteredpixel.shatteredpixeldungeon.levels.Level;
import com.shatteredpixel.shatteredpixeldungeon.levels.Terrain;
import com.shatteredpixel.shatteredpixeldungeon.levels.painters.Painter;
import com.watabou.utils.Point;
public class StatueRoom extends SpecialRoom {
public void paint( Level level ) {
Painter.fill( level, this, Terrain.WALL );
Painter.fill( level, this, 1, Terrain.EMPTY );
Point c = center();
int cx = c.x;
int cy = c.y;
Door door = entrance();
door.set( Door.Type.LOCKED );
level.addItemToSpawn( new IronKey( Dungeon.depth ) );
if (door.x == left) {
Painter.fill( level, right - 1, top + 1, 1, height() - 2 , Terrain.STATUE );
cx = right - 2;
} else if (door.x == right) {
Painter.fill( level, left + 1, top + 1, 1, height() - 2 , Terrain.STATUE );
cx = left + 2;
} else if (door.y == top) {
Painter.fill( level, left + 1, bottom - 1, width() - 2, 1 , Terrain.STATUE );
cy = bottom - 2;
} else if (door.y == bottom) {
Painter.fill( level, left + 1, top + 1, width() - 2, 1 , Terrain.STATUE );
cy = top + 2;
}
Statue statue = new Statue();
statue.pos = cx + cy * level.width();
level.mobs.add( statue );
}
}
| 2,290 | StatueRoom | java | en | java | code | {"qsc_code_num_words": 312, "qsc_code_num_chars": 2290.0, "qsc_code_mean_word_length": 5.06730769, "qsc_code_frac_words_unique": 0.42628205, "qsc_code_frac_chars_top_2grams": 0.07526882, "qsc_code_frac_chars_top_3grams": 0.16824794, "qsc_code_frac_chars_top_4grams": 0.16698292, "qsc_code_frac_chars_dupe_5grams": 0.26755218, "qsc_code_frac_chars_dupe_6grams": 0.12776724, "qsc_code_frac_chars_dupe_7grams": 0.09234662, "qsc_code_frac_chars_dupe_8grams": 0.03542062, "qsc_code_frac_chars_dupe_9grams": 0.03542062, "qsc_code_frac_chars_dupe_10grams": 0.0, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.02067465, "qsc_code_frac_chars_whitespace": 0.19737991, "qsc_code_size_file_byte": 2290.0, "qsc_code_num_lines": 73.0, "qsc_code_num_chars_line_max": 81.0, "qsc_code_num_chars_line_mean": 31.36986301, "qsc_code_frac_chars_alphabet": 0.83949946, "qsc_code_frac_chars_comments": 0.34104803, "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.02777778, "qsc_codejava_score_lines_no_logic": 0.25, "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/levels/rooms/special/PitRoom.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.rooms.special;
import com.shatteredpixel.shatteredpixeldungeon.Challenges;
import com.shatteredpixel.shatteredpixeldungeon.Dungeon;
import com.shatteredpixel.shatteredpixeldungeon.items.Generator;
import com.shatteredpixel.shatteredpixeldungeon.items.Heap;
import com.shatteredpixel.shatteredpixeldungeon.items.Item;
import com.shatteredpixel.shatteredpixeldungeon.items.keys.IronKey;
import com.shatteredpixel.shatteredpixeldungeon.levels.Level;
import com.shatteredpixel.shatteredpixeldungeon.levels.Terrain;
import com.shatteredpixel.shatteredpixeldungeon.levels.painters.Painter;
import com.watabou.utils.Point;
import com.watabou.utils.Random;
public class PitRoom extends SpecialRoom {
public void paint( Level level ) {
Painter.fill( level, this, Terrain.WALL );
Painter.fill( level, this, 1, Terrain.EMPTY );
Door entrance = entrance();
entrance.set( Door.Type.LOCKED );
Point well = null;
if (entrance.x == left) {
well = new Point( right-1, Random.Int( 2 ) == 0 ? top + 1 : bottom - 1 );
} else if (entrance.x == right) {
well = new Point( left+1, Random.Int( 2 ) == 0 ? top + 1 : bottom - 1 );
} else if (entrance.y == top) {
well = new Point( Random.Int( 2 ) == 0 ? left + 1 : right - 1, bottom-1 );
} else if (entrance.y == bottom) {
well = new Point( Random.Int( 2 ) == 0 ? left + 1 : right - 1, top+1 );
}
Painter.set( level, well, Terrain.EMPTY_WELL );
int remains = level.pointToCell(random());
while (level.map[remains] == Terrain.EMPTY_WELL) {
remains = level.pointToCell(random());
}
level.drop( new IronKey( Dungeon.depth ), remains ).type = Heap.Type.SKELETON;
Item mainLoot = null;
do {
switch (Random.Int(3)){
case 0:
mainLoot = Generator.random(Generator.Category.RING);
break;
case 1:
mainLoot = Generator.random(Generator.Category.ARTIFACT);
break;
case 2:
mainLoot = Generator.random(Random.oneOf(
Generator.Category.WEAPON,
Generator.Category.ARMOR));
break;
}
} while ( mainLoot == null || Challenges.isItemBlocked(mainLoot));
level.drop(mainLoot, remains);
int n = Random.IntRange( 1, 2 );
for (int i=0; i < n; i++) {
level.drop( prize( level ), remains ).setHauntedIfCursed(1f);
}
}
private static Item prize( Level level ) {
if (Random.Int(2) != 0){
Item prize = level.findPrizeItem();
if (prize != null)
return prize;
}
return Generator.random( Random.oneOf(
Generator.Category.POTION,
Generator.Category.SCROLL,
Generator.Category.FOOD,
Generator.Category.GOLD
) );
}
@Override
public boolean canPlaceTrap(Point p) {
//the player is already weak after landing, and will likely need to kite the ghost.
//having traps here just seems unfair
return false;
}
}
| 3,628 | PitRoom | java | en | java | code | {"qsc_code_num_words": 467, "qsc_code_num_chars": 3628.0, "qsc_code_mean_word_length": 5.45182013, "qsc_code_frac_words_unique": 0.39186296, "qsc_code_frac_chars_top_2grams": 0.03888452, "qsc_code_frac_chars_top_3grams": 0.14925373, "qsc_code_frac_chars_top_4grams": 0.1555381, "qsc_code_frac_chars_dupe_5grams": 0.29811469, "qsc_code_frac_chars_dupe_6grams": 0.1205813, "qsc_code_frac_chars_dupe_7grams": 0.06480754, "qsc_code_frac_chars_dupe_8grams": 0.05577376, "qsc_code_frac_chars_dupe_9grams": 0.05577376, "qsc_code_frac_chars_dupe_10grams": 0.05577376, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.0162217, "qsc_code_frac_chars_whitespace": 0.18439912, "qsc_code_size_file_byte": 3628.0, "qsc_code_num_lines": 109.0, "qsc_code_num_chars_line_max": 86.0, "qsc_code_num_chars_line_mean": 33.28440367, "qsc_code_frac_chars_alphabet": 0.84420412, "qsc_code_frac_chars_comments": 0.2483462, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.04054054, "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.04054054, "qsc_codejava_score_lines_no_logic": 0.22972973, "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/levels/builders/RegularBuilder.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.builders;
import com.shatteredpixel.shatteredpixeldungeon.levels.rooms.Room;
import com.shatteredpixel.shatteredpixeldungeon.levels.rooms.connection.ConnectionRoom;
import com.shatteredpixel.shatteredpixeldungeon.levels.rooms.connection.MazeConnectionRoom;
import com.shatteredpixel.shatteredpixeldungeon.levels.rooms.secret.SecretRoom;
import com.shatteredpixel.shatteredpixeldungeon.levels.rooms.special.ShopRoom;
import com.shatteredpixel.shatteredpixeldungeon.levels.rooms.standard.EntranceRoom;
import com.shatteredpixel.shatteredpixeldungeon.levels.rooms.standard.ExitRoom;
import com.shatteredpixel.shatteredpixeldungeon.levels.rooms.standard.StandardRoom;
import com.watabou.utils.Random;
import java.util.ArrayList;
import java.util.LinkedHashSet;
//Introduces the concept of a major path, and branches
// with tunnels padding rooms placed in them
public abstract class RegularBuilder extends Builder {
// *** Parameter values for level building logic ***
// note that implementations do not have to use al of these variables
protected float pathVariance = 45f;
public RegularBuilder setPathVariance( float var ){
pathVariance = var;
return this;
}
//path length is the percentage of pathable rooms that are on
protected float pathLength = 0.5f;
//The chance weights for extra rooms to be added to the path
protected float[] pathLenJitterChances = new float[]{0, 1, 0};
public RegularBuilder setPathLength( float len, float[] jitter ){
pathLength = len;
pathLenJitterChances = jitter;
return this;
}
protected float[] pathTunnelChances = new float[]{1, 3, 1};
protected float[] branchTunnelChances = new float[]{2, 2, 1};
public RegularBuilder setTunnelLength( float[] path, float[] branch){
pathTunnelChances = path;
branchTunnelChances = branch;
return this;
}
protected float extraConnectionChance = 0.2f;
public RegularBuilder setExtraConnectionChance( float chance ){
extraConnectionChance = chance;
return this;
}
// *** Room Setup ***
protected Room entrance = null;
protected Room exit = null;
protected Room shop = null;
protected ArrayList<Room> multiConnections = new ArrayList<>();
protected ArrayList<Room> singleConnections = new ArrayList<>();
protected void setupRooms(ArrayList<Room> rooms){
for(Room r : rooms){
r.setEmpty();
}
entrance = exit = shop = null;
singleConnections.clear();
multiConnections.clear();
for (Room r : rooms){
if (r instanceof EntranceRoom){
entrance = r;
} else if (r instanceof ExitRoom) {
exit = r;
} else if (r instanceof ShopRoom && r.maxConnections(Room.ALL) == 1){
shop = r;
} else if (r.maxConnections(Room.ALL) > 1){
multiConnections.add(r);
} else if (r.maxConnections(Room.ALL) == 1){
singleConnections.add(r);
}
}
//this weights larger rooms to be much more likely to appear in the main loop, by placing them earlier in the multiconnections list
weightRooms(multiConnections);
Random.shuffle(multiConnections);
multiConnections = new ArrayList<>(new LinkedHashSet<>(multiConnections));
}
// *** Branch Placement ***
protected void weightRooms(ArrayList<Room> rooms){
for (Room r : rooms.toArray(new Room[0])){
if (r instanceof StandardRoom){
for (int i = 1; i < ((StandardRoom) r).sizeCat.connectionWeight(); i++)
rooms.add(r);
}
}
}
//places the rooms in roomsToBranch into branches from rooms in branchable.
//note that the three arrays should be separate, they may contain the same rooms however
protected void createBranches(ArrayList<Room> rooms, ArrayList<Room> branchable,
ArrayList<Room> roomsToBranch, float[] connChances){
int i = 0;
float angle;
int tries;
Room curr;
ArrayList<Room> connectingRoomsThisBranch = new ArrayList<>();
float[] connectionChances = connChances.clone();
while (i < roomsToBranch.size()){
Room r = roomsToBranch.get(i);
connectingRoomsThisBranch.clear();
do {
curr = Random.element(branchable);
} while( r instanceof SecretRoom && curr instanceof ConnectionRoom);
int connectingRooms = Random.chances(connectionChances);
if (connectingRooms == -1){
connectionChances = connChances.clone();
connectingRooms = Random.chances(connectionChances);
}
connectionChances[connectingRooms]--;
for (int j = 0; j < connectingRooms; j++){
ConnectionRoom t = r instanceof SecretRoom ? new MazeConnectionRoom() : ConnectionRoom.createRoom();
tries = 3;
do {
angle = placeRoom(rooms, curr, t, randomBranchAngle(curr));
tries--;
} while (angle == -1 && tries > 0);
if (angle == -1) {
t.clearConnections();
for (Room c : connectingRoomsThisBranch){
c.clearConnections();
rooms.remove(c);
}
connectingRoomsThisBranch.clear();
break;
} else {
connectingRoomsThisBranch.add(t);
rooms.add(t);
}
curr = t;
}
if (connectingRoomsThisBranch.size() != connectingRooms){
continue;
}
tries = 10;
do {
angle = placeRoom(rooms, curr, r, randomBranchAngle(curr));
tries--;
} while (angle == -1 && tries > 0);
if (angle == -1){
r.clearConnections();
for (Room t : connectingRoomsThisBranch){
t.clearConnections();
rooms.remove(t);
}
connectingRoomsThisBranch.clear();
continue;
}
for (int j = 0; j <connectingRoomsThisBranch.size(); j++){
if (Random.Int(3) <= 1) branchable.add(connectingRoomsThisBranch.get(j));
}
if (r.maxConnections(Room.ALL) > 1 && Random.Int(3) == 0) {
if (r instanceof StandardRoom){
for (int j = 0; j < ((StandardRoom) r).sizeCat.connectionWeight(); j++){
branchable.add(r);
}
} else {
branchable.add(r);
}
}
i++;
}
}
protected float randomBranchAngle( Room r ){
return Random.Float(360f);
}
}
| 6,770 | RegularBuilder | java | en | java | code | {"qsc_code_num_words": 763, "qsc_code_num_chars": 6770.0, "qsc_code_mean_word_length": 6.17955439, "qsc_code_frac_words_unique": 0.31061599, "qsc_code_frac_chars_top_2grams": 0.03244963, "qsc_code_frac_chars_top_3grams": 0.07253446, "qsc_code_frac_chars_top_4grams": 0.08398727, "qsc_code_frac_chars_dupe_5grams": 0.21399788, "qsc_code_frac_chars_dupe_6grams": 0.18091198, "qsc_code_frac_chars_dupe_7grams": 0.12873807, "qsc_code_frac_chars_dupe_8grams": 0.03435843, "qsc_code_frac_chars_dupe_9grams": 0.02163309, "qsc_code_frac_chars_dupe_10grams": 0.02163309, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.01082767, "qsc_code_frac_chars_whitespace": 0.19512555, "qsc_code_size_file_byte": 6770.0, "qsc_code_num_lines": 222.0, "qsc_code_num_chars_line_max": 134.0, "qsc_code_num_chars_line_mean": 30.4954955, "qsc_code_frac_chars_alphabet": 0.85446871, "qsc_code_frac_chars_comments": 0.21610044, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.18543046, "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.05298013, "qsc_codejava_score_lines_no_logic": 0.17880795, "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} |
00-Evan/shattered-pixel-dungeon-gdx | core/src/com/shatteredpixel/shatteredpixeldungeon/levels/builders/LoopBuilder.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.builders;
import com.shatteredpixel.shatteredpixeldungeon.levels.rooms.Room;
import com.shatteredpixel.shatteredpixeldungeon.levels.rooms.connection.ConnectionRoom;
import com.watabou.utils.PointF;
import com.watabou.utils.Random;
import java.util.ArrayList;
//A builder with one core loop as its primary element
public class LoopBuilder extends RegularBuilder {
//These methods allow for the adjusting of the shape of the loop
//by default the loop is a perfect circle, but it can be adjusted
//increasing the exponent will increase the the curvature, making the loop more oval shaped.
private int curveExponent = 0;
//This is a percentage (range 0-1) of the intensity of the curve function
// 0 makes for a perfect linear curve (circle)
// 1 means the curve is completely determined by the curve exponent
private float curveIntensity = 1;
//Adjusts the starting point along the loop.
// a common example, setting to 0.25 will make for a short fat oval instead of a long one.
private float curveOffset = 0;
public LoopBuilder setLoopShape(int exponent, float intensity, float offset){
this.curveExponent = Math.abs(exponent);
curveIntensity = intensity % 1f;
curveOffset = offset % 0.5f;
return this;
}
private float targetAngle( float percentAlong ){
percentAlong += curveOffset;
return 360f * (float)(
curveIntensity * curveEquation(percentAlong)
+ (1-curveIntensity)*(percentAlong)
- curveOffset);
}
private double curveEquation( double x ){
return Math.pow(4, 2*curveExponent)
*(Math.pow((x % 0.5f )-0.25, 2*curveExponent + 1))
+ 0.25 + 0.5*Math.floor(2*x);
}
private PointF loopCenter;
@Override
public ArrayList<Room> build(ArrayList<Room> rooms) {
setupRooms(rooms);
if (entrance == null){
return null;
}
entrance.setSize();
entrance.setPos(0, 0);
float startAngle = Random.Float(0, 360);
ArrayList<Room> loop = new ArrayList<>();
int roomsOnLoop = (int)(multiConnections.size()*pathLength) + Random.chances(pathLenJitterChances);
roomsOnLoop = Math.min(roomsOnLoop, multiConnections.size());
float[] pathTunnels = pathTunnelChances.clone();
for (int i = 0; i <= roomsOnLoop; i++){
if (i == 0)
loop.add(entrance);
else
loop.add(multiConnections.remove(0));
int tunnels = Random.chances(pathTunnels);
if (tunnels == -1){
pathTunnels = pathTunnelChances.clone();
tunnels = Random.chances(pathTunnels);
}
pathTunnels[tunnels]--;
for (int j = 0; j < tunnels; j++){
loop.add(ConnectionRoom.createRoom());
}
}
if (exit != null) loop.add((loop.size()+1)/2, exit);
Room prev = entrance;
float targetAngle;
for (int i = 1; i < loop.size(); i++){
Room r = loop.get(i);
targetAngle = startAngle + targetAngle( i / (float)loop.size());
if (placeRoom(rooms, prev, r, targetAngle) != -1) {
prev = r;
if (!rooms.contains(prev))
rooms.add(prev);
} else {
//FIXME this is lazy, there are ways to do this without relying on chance
return null;
}
}
//FIXME this is still fairly chance reliant
// should just write a general function for stitching two rooms together in builder
while (!prev.connect(entrance)){
ConnectionRoom c = ConnectionRoom.createRoom();
if (placeRoom(loop, prev, c, angleBetweenRooms(prev, entrance)) == -1){
return null;
}
loop.add(c);
rooms.add(c);
prev = c;
}
if (shop != null) {
float angle;
int tries = 10;
do {
angle = placeRoom(loop, entrance, shop, Random.Float(360f));
tries--;
} while (angle == -1 && tries >= 0);
if (angle == -1) return null;
}
loopCenter = new PointF();
for (Room r : loop){
loopCenter.x += (r.left + r.right)/2f;
loopCenter.y += (r.top + r.bottom)/2f;
}
loopCenter.x /= loop.size();
loopCenter.y /= loop.size();
ArrayList<Room> branchable = new ArrayList<>(loop);
ArrayList<Room> roomsToBranch = new ArrayList<>();
roomsToBranch.addAll(multiConnections);
roomsToBranch.addAll(singleConnections);
weightRooms(branchable);
createBranches(rooms, branchable, roomsToBranch, branchTunnelChances);
findNeighbours(rooms);
for (Room r : rooms){
for (Room n : r.neigbours){
if (!n.connected.containsKey(r)
&& Random.Float() < extraConnectionChance){
r.connect(n);
}
}
}
return rooms;
}
@Override
protected float randomBranchAngle( Room r ) {
if (loopCenter == null)
return super.randomBranchAngle( r );
else {
//generate four angles randomly and return the one which points closer to the center
float toCenter = angleBetweenPoints( new PointF((r.left + r.right)/2f, (r.top + r.bottom)/2f), loopCenter);
if (toCenter < 0) toCenter += 360f;
float currAngle = Random.Float(360f);
for( int i = 0; i < 4; i ++){
float newAngle = Random.Float(360f);
if (Math.abs(toCenter - newAngle) < Math.abs(toCenter - currAngle)){
currAngle = newAngle;
}
}
return currAngle;
}
}
}
| 5,866 | LoopBuilder | java | en | java | code | {"qsc_code_num_words": 750, "qsc_code_num_chars": 5866.0, "qsc_code_mean_word_length": 5.32, "qsc_code_frac_words_unique": 0.352, "qsc_code_frac_chars_top_2grams": 0.00877193, "qsc_code_frac_chars_top_3grams": 0.00977444, "qsc_code_frac_chars_top_4grams": 0.01428571, "qsc_code_frac_chars_dupe_5grams": 0.07067669, "qsc_code_frac_chars_dupe_6grams": 0.05313283, "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.01902522, "qsc_code_frac_chars_whitespace": 0.20252301, "qsc_code_size_file_byte": 5866.0, "qsc_code_num_lines": 198.0, "qsc_code_num_chars_line_max": 111.0, "qsc_code_num_chars_line_mean": 29.62626263, "qsc_code_frac_chars_alphabet": 0.83390338, "qsc_code_frac_chars_comments": 0.28264576, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.03816794, "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.00505051, "qsc_code_frac_lines_assert": 0.0, "qsc_codejava_cate_var_zero": 0.0, "qsc_codejava_frac_lines_func_ratio": 0.03053435, "qsc_codejava_score_lines_no_logic": 0.14503817, "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/levels/builders/LineBuilder.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.builders;
import com.shatteredpixel.shatteredpixeldungeon.levels.rooms.Room;
import com.shatteredpixel.shatteredpixeldungeon.levels.rooms.connection.ConnectionRoom;
import com.watabou.utils.Random;
import java.util.ArrayList;
//A simple builder which utilizes a line as its core feature.
public class LineBuilder extends RegularBuilder {
@Override
public ArrayList<Room> build(ArrayList<Room> rooms) {
setupRooms(rooms);
if (entrance == null){
return null;
}
float direction = Random.Float(0, 360);
ArrayList<Room> branchable = new ArrayList<>();
entrance.setSize();
entrance.setPos(0, 0);
branchable.add(entrance);
if (shop != null){
placeRoom(rooms, entrance, shop, direction + 180f);
}
int roomsOnPath = (int)(multiConnections.size()*pathLength) + Random.chances(pathLenJitterChances);
roomsOnPath = Math.min(roomsOnPath, multiConnections.size());
Room curr = entrance;
float[] pathTunnels = pathTunnelChances.clone();
for (int i = 0; i <= roomsOnPath; i++){
if (i == roomsOnPath && exit == null)
continue;
int tunnels = Random.chances(pathTunnels);
if (tunnels == -1){
pathTunnels = pathTunnelChances.clone();
tunnels = Random.chances(pathTunnels);
}
pathTunnels[tunnels]--;
for (int j = 0; j < tunnels; j++){
ConnectionRoom t = ConnectionRoom.createRoom();
placeRoom(rooms, curr, t, direction + Random.Float(-pathVariance, pathVariance));
branchable.add(t);
rooms.add(t);
curr = t;
}
Room r = (i == roomsOnPath ? exit : multiConnections.get(i));
placeRoom(rooms, curr, r, direction + Random.Float(-pathVariance, pathVariance));
branchable.add(r);
curr = r;
}
ArrayList<Room> roomsToBranch = new ArrayList<>();
for (int i = roomsOnPath; i < multiConnections.size(); i++){
roomsToBranch.add(multiConnections.get(i));
}
roomsToBranch.addAll(singleConnections);
weightRooms(branchable);
createBranches(rooms, branchable, roomsToBranch, branchTunnelChances);
findNeighbours(rooms);
for (Room r : rooms){
for (Room n : r.neigbours){
if (!n.connected.containsKey(r)
&& Random.Float() < extraConnectionChance){
r.connect(n);
}
}
}
return rooms;
}
}
| 3,086 | LineBuilder | java | en | java | code | {"qsc_code_num_words": 365, "qsc_code_num_chars": 3086.0, "qsc_code_mean_word_length": 5.90684932, "qsc_code_frac_words_unique": 0.44383562, "qsc_code_frac_chars_top_2grams": 0.02411874, "qsc_code_frac_chars_top_3grams": 0.01808905, "qsc_code_frac_chars_top_4grams": 0.02643785, "qsc_code_frac_chars_dupe_5grams": 0.1419295, "qsc_code_frac_chars_dupe_6grams": 0.12987013, "qsc_code_frac_chars_dupe_7grams": 0.0528757, "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.01153082, "qsc_code_frac_chars_whitespace": 0.18502916, "qsc_code_size_file_byte": 3086.0, "qsc_code_num_lines": 107.0, "qsc_code_num_chars_line_max": 102.0, "qsc_code_num_chars_line_mean": 28.8411215, "qsc_code_frac_chars_alphabet": 0.84572565, "qsc_code_frac_chars_comments": 0.27284511, "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.0, "qsc_codejava_score_lines_no_logic": 0.109375, "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/painters/HallsPainter.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.painters;
import com.shatteredpixel.shatteredpixeldungeon.levels.Level;
import com.shatteredpixel.shatteredpixeldungeon.levels.Terrain;
import com.shatteredpixel.shatteredpixeldungeon.levels.rooms.Room;
import com.watabou.utils.PathFinder;
import com.watabou.utils.Random;
import java.util.ArrayList;
public class HallsPainter extends RegularPainter {
@Override
protected void decorate(Level level, ArrayList<Room> rooms) {
int[] map = level.map;
int w = level.width();
int l = level.length();
for (int i=w + 1; i < l - w - 1; i++) {
if (map[i] == Terrain.EMPTY) {
int count = 0;
for (int j = 0; j < PathFinder.NEIGHBOURS8.length; j++) {
if ((Terrain.flags[map[i + PathFinder.NEIGHBOURS8[j]]] & Terrain.PASSABLE) > 0) {
count++;
}
}
if (Random.Int( 80 ) < count) {
map[i] = Terrain.EMPTY_DECO;
}
} else
if (map[i] == Terrain.WALL &&
map[i-1] != Terrain.WALL_DECO && map[i-w] != Terrain.WALL_DECO &&
Random.Int( 20 ) == 0) {
map[i] = Terrain.WALL_DECO;
}
}
}
}
| 1,915 | HallsPainter | java | en | java | code | {"qsc_code_num_words": 262, "qsc_code_num_chars": 1915.0, "qsc_code_mean_word_length": 4.96183206, "qsc_code_frac_words_unique": 0.47328244, "qsc_code_frac_chars_top_2grams": 0.02153846, "qsc_code_frac_chars_top_3grams": 0.11692308, "qsc_code_frac_chars_top_4grams": 0.13538462, "qsc_code_frac_chars_dupe_5grams": 0.17846154, "qsc_code_frac_chars_dupe_6grams": 0.04307692, "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.01976285, "qsc_code_frac_chars_whitespace": 0.2073107, "qsc_code_size_file_byte": 1915.0, "qsc_code_num_lines": 65.0, "qsc_code_num_chars_line_max": 87.0, "qsc_code_num_chars_line_mean": 29.46153846, "qsc_code_frac_chars_alphabet": 0.83662714, "qsc_code_frac_chars_comments": 0.4078329, "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.03030303, "qsc_codejava_score_lines_no_logic": 0.24242424, "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/levels/painters/SewerPainter.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.painters;
import com.shatteredpixel.shatteredpixeldungeon.levels.Level;
import com.shatteredpixel.shatteredpixeldungeon.levels.Terrain;
import com.shatteredpixel.shatteredpixeldungeon.levels.rooms.Room;
import com.watabou.utils.Random;
import java.util.ArrayList;
public class SewerPainter extends RegularPainter {
@Override
protected void decorate(Level level, ArrayList<Room> rooms) {
int[] map = level.map;
int w = level.width();
int l = level.length();
for (int i=0; i < w; i++) {
if (map[i] == Terrain.WALL &&
map[i + w] == Terrain.WATER &&
Random.Int( 4 ) == 0) {
map[i] = Terrain.WALL_DECO;
}
}
for (int i=w; i < l - w; i++) {
if (map[i] == Terrain.WALL &&
map[i - w] == Terrain.WALL &&
map[i + w] == Terrain.WATER &&
Random.Int( 2 ) == 0) {
map[i] = Terrain.WALL_DECO;
}
}
for (int i=w + 1; i < l - w - 1; i++) {
if (map[i] == Terrain.EMPTY) {
int count =
(map[i + 1] == Terrain.WALL ? 1 : 0) +
(map[i - 1] == Terrain.WALL ? 1 : 0) +
(map[i + w] == Terrain.WALL ? 1 : 0) +
(map[i - w] == Terrain.WALL ? 1 : 0);
if (Random.Int( 16 ) < count * count) {
map[i] = Terrain.EMPTY_DECO;
}
}
}
}
}
| 2,093 | SewerPainter | java | en | java | code | {"qsc_code_num_words": 295, "qsc_code_num_chars": 2093.0, "qsc_code_mean_word_length": 4.48135593, "qsc_code_frac_words_unique": 0.40677966, "qsc_code_frac_chars_top_2grams": 0.03933434, "qsc_code_frac_chars_top_3grams": 0.04992436, "qsc_code_frac_chars_top_4grams": 0.04538578, "qsc_code_frac_chars_dupe_5grams": 0.36308623, "qsc_code_frac_chars_dupe_6grams": 0.2193646, "qsc_code_frac_chars_dupe_7grams": 0.17700454, "qsc_code_frac_chars_dupe_8grams": 0.17700454, "qsc_code_frac_chars_dupe_9grams": 0.17700454, "qsc_code_frac_chars_dupe_10grams": 0.12632375, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.02255639, "qsc_code_frac_chars_whitespace": 0.23745819, "qsc_code_size_file_byte": 2093.0, "qsc_code_num_lines": 74.0, "qsc_code_num_chars_line_max": 72.0, "qsc_code_num_chars_line_mean": 28.28378378, "qsc_code_frac_chars_alphabet": 0.80576441, "qsc_code_frac_chars_comments": 0.37314859, "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": 0.0, "qsc_codejava_frac_lines_func_ratio": 0.02439024, "qsc_codejava_score_lines_no_logic": 0.17073171, "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/levels/painters/CityPainter.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.painters;
import com.shatteredpixel.shatteredpixeldungeon.Dungeon;
import com.shatteredpixel.shatteredpixeldungeon.levels.Level;
import com.shatteredpixel.shatteredpixeldungeon.levels.Terrain;
import com.shatteredpixel.shatteredpixeldungeon.levels.rooms.Room;
import com.shatteredpixel.shatteredpixeldungeon.tiles.DungeonTileSheet;
import com.watabou.utils.Random;
import java.util.ArrayList;
public class CityPainter extends RegularPainter {
@Override
protected void decorate(Level level, ArrayList<Room> rooms) {
int[] map = level.map;
int w = level.width();
int l = level.length();
for (int i=0; i < l - w; i++) {
if (map[i] == Terrain.EMPTY && Random.Int( 10 ) == 0) {
map[i] = Terrain.EMPTY_DECO;
} else if (map[i] == Terrain.WALL
&& !DungeonTileSheet.wallStitcheable(map[i + w])
&& Random.Int( 22 - Dungeon.depth ) == 0) {
map[i] = Terrain.WALL_DECO;
}
}
}
}
| 1,767 | CityPainter | java | en | java | code | {"qsc_code_num_words": 236, "qsc_code_num_chars": 1767.0, "qsc_code_mean_word_length": 5.41101695, "qsc_code_frac_words_unique": 0.51271186, "qsc_code_frac_chars_top_2grams": 0.07987471, "qsc_code_frac_chars_top_3grams": 0.17854346, "qsc_code_frac_chars_top_4grams": 0.17227878, "qsc_code_frac_chars_dupe_5grams": 0.1816758, "qsc_code_frac_chars_dupe_6grams": 0.04385278, "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.01649485, "qsc_code_frac_chars_whitespace": 0.17657046, "qsc_code_size_file_byte": 1767.0, "qsc_code_num_lines": 55.0, "qsc_code_num_chars_line_max": 72.0, "qsc_code_num_chars_line_mean": 32.12727273, "qsc_code_frac_chars_alphabet": 0.86116838, "qsc_code_frac_chars_comments": 0.44199208, "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.04, "qsc_codejava_score_lines_no_logic": 0.36, "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/levels/painters/RegularPainter.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.painters;
import com.shatteredpixel.shatteredpixeldungeon.Dungeon;
import com.shatteredpixel.shatteredpixeldungeon.ShatteredPixelDungeon;
import com.shatteredpixel.shatteredpixeldungeon.levels.Level;
import com.shatteredpixel.shatteredpixeldungeon.levels.Patch;
import com.shatteredpixel.shatteredpixeldungeon.levels.Terrain;
import com.shatteredpixel.shatteredpixeldungeon.levels.rooms.Room;
import com.shatteredpixel.shatteredpixeldungeon.levels.rooms.standard.EmptyRoom;
import com.shatteredpixel.shatteredpixeldungeon.levels.traps.Trap;
import com.watabou.utils.Graph;
import com.watabou.utils.PathFinder;
import com.watabou.utils.Point;
import com.watabou.utils.Random;
import com.watabou.utils.Rect;
import com.watabou.utils.Reflection;
import java.util.ArrayList;
public abstract class RegularPainter extends Painter {
private float waterFill = 0f;
private int waterSmoothness;
public RegularPainter setWater(float fill, int smoothness){
waterFill = fill;
waterSmoothness = smoothness;
return this;
}
private float grassFill = 0f;
private int grassSmoothness;
public RegularPainter setGrass(float fill, int smoothness){
grassFill = fill;
grassSmoothness = smoothness;
return this;
}
private int nTraps = 0;
private Class<? extends Trap>[] trapClasses;
private float[] trapChances;
public RegularPainter setTraps(int num, Class<?>[] classes, float[] chances){
nTraps = num;
trapClasses = (Class<? extends Trap>[]) classes;
trapChances = chances;
return this;
}
@Override
public boolean paint(Level level, ArrayList<Room> rooms) {
//painter can be used without rooms
if (rooms != null) {
int padding = level.feeling == Level.Feeling.CHASM ? 2 : 1;
int leftMost = Integer.MAX_VALUE, topMost = Integer.MAX_VALUE;
for (Room r : rooms) {
if (r.left < leftMost) leftMost = r.left;
if (r.top < topMost) topMost = r.top;
}
leftMost -= padding;
topMost -= padding;
int rightMost = 0, bottomMost = 0;
for (Room r : rooms) {
r.shift(-leftMost, -topMost);
if (r.right > rightMost) rightMost = r.right;
if (r.bottom > bottomMost) bottomMost = r.bottom;
}
rightMost += padding;
bottomMost += padding;
//add 1 to account for 0 values
level.setSize(rightMost + 1, bottomMost + 1);
} else {
//check if the level's size was already initialized by something else
if (level.length() == 0) return false;
//easier than checking for null everywhere
rooms = new ArrayList<>();
}
Random.shuffle(rooms);
for (Room r : rooms.toArray(new Room[0])) {
placeDoors( r );
r.paint( level );
}
paintDoors( level, rooms );
if (waterFill > 0f) {
paintWater( level, rooms );
}
if (grassFill > 0f){
paintGrass( level, rooms );
}
if (nTraps > 0){
paintTraps( level, rooms );
}
decorate( level, rooms );
return true;
}
protected abstract void decorate(Level level, ArrayList<Room> rooms);
private void placeDoors( Room r ) {
for (Room n : r.connected.keySet()) {
Room.Door door = r.connected.get( n );
if (door == null) {
Rect i = r.intersect( n );
ArrayList<Point> doorSpots = new ArrayList<>();
for (Point p : i.getPoints()){
if (r.canConnect(p) && n.canConnect(p))
doorSpots.add(p);
}
if (doorSpots.isEmpty()){
ShatteredPixelDungeon.reportException(
new RuntimeException("Could not place a door! " +
"r=" + r.getClass().getSimpleName() +
" n=" + n.getClass().getSimpleName()));
continue;
}
door = new Room.Door(Random.element(doorSpots));
r.connected.put( n, door );
n.connected.put( r, door );
}
}
}
protected void paintDoors( Level l, ArrayList<Room> rooms ) {
for (Room r : rooms) {
for (Room n : r.connected.keySet()) {
if (joinRooms(l, r, n)) {
continue;
}
Room.Door d = r.connected.get(n);
int door = d.x + d.y * l.width();
if (d.type == Room.Door.Type.REGULAR){
//chance for a hidden door scales from 3/21 on floor 2 to 3/3 on floor 20
if (Dungeon.depth > 1 &&
(Dungeon.depth >= 20 || Random.Int(23 - Dungeon.depth) < Dungeon.depth)) {
d.type = Room.Door.Type.HIDDEN;
Graph.buildDistanceMap(rooms, r);
//don't hide if it would make this room only accessible by hidden doors
if (n.distance == Integer.MAX_VALUE){
d.type = Room.Door.Type.UNLOCKED;
}
} else {
d.type = Room.Door.Type.UNLOCKED;
}
}
switch (d.type) {
case EMPTY:
l.map[door] = Terrain.EMPTY;
break;
case TUNNEL:
l.map[door] = l.tunnelTile();
break;
case UNLOCKED:
l.map[door] = Terrain.DOOR;
break;
case HIDDEN:
l.map[door] = Terrain.SECRET_DOOR;
break;
case BARRICADE:
l.map[door] = Terrain.BARRICADE;
break;
case LOCKED:
l.map[door] = Terrain.LOCKED_DOOR;
break;
}
}
}
}
protected boolean joinRooms( Level l, Room r, Room n ) {
if (!(r instanceof EmptyRoom && n instanceof EmptyRoom)) {
return false;
}
//TODO decide on good probabilities and dimension restrictions
Rect w = r.intersect( n );
if (w.left == w.right) {
if (w.bottom - w.top < 3) {
return false;
}
if (w.height()+1 == Math.max( r.height(), n.height() )) {
return false;
}
if (r.width() + n.width() > 10) {
return false;
}
w.top += 1;
w.bottom -= 0;
w.right++;
Painter.fill( l, w.left, w.top, 1, w.height(), Terrain.EMPTY );
} else {
if (w.right - w.left < 3) {
return false;
}
if (w.width()+1 == Math.max( r.width(), n.width() )) {
return false;
}
if (r.height() + n.height() > 10) {
return false;
}
w.left += 1;
w.right -= 0;
w.bottom++;
Painter.fill( l, w.left, w.top, w.width(), 1, Terrain.EMPTY );
}
return true;
}
protected void paintWater( Level l, ArrayList<Room> rooms ){
boolean[] lake = Patch.generate( l.width(), l.height(), waterFill, waterSmoothness, true );
if (!rooms.isEmpty()){
for (Room r : rooms){
for (Point p : r.waterPlaceablePoints()){
int i = l.pointToCell(p);
if (lake[i] && l.map[i] == Terrain.EMPTY){
l.map[i] = Terrain.WATER;
}
}
}
} else {
for (int i = 0; i < l.length(); i ++) {
if (lake[i] && l.map[i] == Terrain.EMPTY){
l.map[i] = Terrain.WATER;
}
}
}
}
protected void paintGrass( Level l, ArrayList<Room> rooms ) {
boolean[] grass = Patch.generate( l.width(), l.height(), grassFill, grassSmoothness, true );
ArrayList<Integer> grassCells = new ArrayList<>();
if (!rooms.isEmpty()){
for (Room r : rooms){
for (Point p : r.grassPlaceablePoints()){
int i = l.pointToCell(p);
if (grass[i] && l.map[i] == Terrain.EMPTY){
grassCells.add(i);
}
}
}
} else {
for (int i = 0; i < l.length(); i ++) {
if (grass[i] && l.map[i] == Terrain.EMPTY){
grassCells.add(i);
}
}
}
//Adds chaos to grass height distribution. Ratio of high grass depends on fill and smoothing
//Full range is 8.3% to 75%, but most commonly (20% fill with 3 smoothing) is around 60%
//low smoothing, or very low fill, will begin to push the ratio down, normally to 50-30%
for (int i : grassCells) {
if (l.heaps.get(i) != null || l.findMob(i) != null) {
l.map[i] = Terrain.GRASS;
continue;
}
int count = 1;
for (int n : PathFinder.NEIGHBOURS8) {
if (grass[i + n]) {
count++;
}
}
l.map[i] = (Random.Float() < count / 12f) ? Terrain.HIGH_GRASS : Terrain.GRASS;
}
}
protected void paintTraps( Level l, ArrayList<Room> rooms ) {
ArrayList<Integer> validCells = new ArrayList<>();
if (!rooms.isEmpty()){
for (Room r : rooms){
for (Point p : r.trapPlaceablePoints()){
int i = l.pointToCell(p);
if (l.map[i] == Terrain.EMPTY){
validCells.add(i);
}
}
}
} else {
for (int i = 0; i < l.length(); i ++) {
if (l.map[i] == Terrain.EMPTY){
validCells.add(i);
}
}
}
//no more than one trap every 5 valid tiles.
nTraps = Math.min(nTraps, validCells.size()/5);
for (int i = 0; i < nTraps; i++) {
Integer trapPos = Random.element(validCells);
validCells.remove(trapPos); //removes the integer object, not at the index
Trap trap = Reflection.newInstance(trapClasses[Random.chances( trapChances )]).hide();
l.setTrap( trap, trapPos );
//some traps will not be hidden
l.map[trapPos] = trap.visible ? Terrain.TRAP : Terrain.SECRET_TRAP;
}
}
}
| 9,523 | RegularPainter | java | en | java | code | {"qsc_code_num_words": 1226, "qsc_code_num_chars": 9523.0, "qsc_code_mean_word_length": 4.83931485, "qsc_code_frac_words_unique": 0.25285481, "qsc_code_frac_chars_top_2grams": 0.01146132, "qsc_code_frac_chars_top_3grams": 0.00842744, "qsc_code_frac_chars_top_4grams": 0.01820327, "qsc_code_frac_chars_dupe_5grams": 0.22400135, "qsc_code_frac_chars_dupe_6grams": 0.15085117, "qsc_code_frac_chars_dupe_7grams": 0.07854374, "qsc_code_frac_chars_dupe_8grams": 0.07146469, "qsc_code_frac_chars_dupe_9grams": 0.07146469, "qsc_code_frac_chars_dupe_10grams": 0.06135176, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.01148312, "qsc_code_frac_chars_whitespace": 0.24099548, "qsc_code_size_file_byte": 9523.0, "qsc_code_num_lines": 367.0, "qsc_code_num_chars_line_max": 95.0, "qsc_code_num_chars_line_mean": 25.94822888, "qsc_code_frac_chars_alphabet": 0.80935252, "qsc_code_frac_chars_comments": 0.16307886, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.21886792, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.00363864, "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.0027248, "qsc_code_frac_lines_assert": 0.0, "qsc_codejava_cate_var_zero": 0.0, "qsc_codejava_frac_lines_func_ratio": 0.04150943, "qsc_codejava_score_lines_no_logic": 0.15471698, "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/levels/painters/PrisonPainter.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.painters;
import com.shatteredpixel.shatteredpixeldungeon.actors.mobs.npcs.Wandmaker;
import com.shatteredpixel.shatteredpixeldungeon.levels.Level;
import com.shatteredpixel.shatteredpixeldungeon.levels.Terrain;
import com.shatteredpixel.shatteredpixeldungeon.levels.rooms.Room;
import com.shatteredpixel.shatteredpixeldungeon.levels.rooms.standard.EntranceRoom;
import com.watabou.utils.Random;
import java.util.ArrayList;
public class PrisonPainter extends RegularPainter {
@Override
protected void decorate(Level level, ArrayList<Room> rooms) {
for (Room r : rooms) {
if (r instanceof EntranceRoom) {
Wandmaker.Quest.spawnWandmaker(level, r);
break;
}
}
int w = level.width();
int l = level.length();
int[] map = level.map;
for (int i=w + 1; i < l - w - 1; i++) {
if (map[i] == Terrain.EMPTY) {
float c = 0.05f;
if (map[i + 1] == Terrain.WALL && map[i + w] == Terrain.WALL) {
c += 0.2f;
}
if (map[i - 1] == Terrain.WALL && map[i + w] == Terrain.WALL) {
c += 0.2f;
}
if (map[i + 1] == Terrain.WALL && map[i - w] == Terrain.WALL) {
c += 0.2f;
}
if (map[i - 1] == Terrain.WALL && map[i - w] == Terrain.WALL) {
c += 0.2f;
}
if (Random.Float() < c) {
map[i] = Terrain.EMPTY_DECO;
}
}
}
for (int i=0; i < w; i++) {
if (map[i] == Terrain.WALL &&
(map[i + w] == Terrain.EMPTY || map[i + w] == Terrain.EMPTY_SP) &&
Random.Int( 6 ) == 0) {
map[i] = Terrain.WALL_DECO;
}
}
for (int i=w; i < l - w; i++) {
if (map[i] == Terrain.WALL &&
map[i - w] == Terrain.WALL &&
(map[i + w] == Terrain.EMPTY || map[i + w] == Terrain.EMPTY_SP) &&
Random.Int( 3 ) == 0) {
map[i] = Terrain.WALL_DECO;
}
}
}
}
| 2,622 | PrisonPainter | java | en | java | code | {"qsc_code_num_words": 365, "qsc_code_num_chars": 2622.0, "qsc_code_mean_word_length": 4.52876712, "qsc_code_frac_words_unique": 0.35890411, "qsc_code_frac_chars_top_2grams": 0.04597701, "qsc_code_frac_chars_top_3grams": 0.02722323, "qsc_code_frac_chars_top_4grams": 0.06533575, "qsc_code_frac_chars_dupe_5grams": 0.38959468, "qsc_code_frac_chars_dupe_6grams": 0.30490018, "qsc_code_frac_chars_dupe_7grams": 0.18027828, "qsc_code_frac_chars_dupe_8grams": 0.18027828, "qsc_code_frac_chars_dupe_9grams": 0.18027828, "qsc_code_frac_chars_dupe_10grams": 0.18027828, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.01926877, "qsc_code_frac_chars_whitespace": 0.22807018, "qsc_code_size_file_byte": 2622.0, "qsc_code_num_lines": 91.0, "qsc_code_num_chars_line_max": 84.0, "qsc_code_num_chars_line_mean": 28.81318681, "qsc_code_frac_chars_alphabet": 0.79743083, "qsc_code_frac_chars_comments": 0.29786423, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.1754386, "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.01754386, "qsc_codejava_score_lines_no_logic": 0.15789474, "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/levels/rooms/connection/WalkwayRoom.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.rooms.connection;
import com.shatteredpixel.shatteredpixeldungeon.levels.Level;
import com.shatteredpixel.shatteredpixeldungeon.levels.Terrain;
import com.shatteredpixel.shatteredpixeldungeon.levels.painters.Painter;
import com.shatteredpixel.shatteredpixeldungeon.levels.rooms.Room;
import com.watabou.utils.Rect;
public class WalkwayRoom extends PerimeterRoom {
@Override
public void paint(Level level) {
if (Math.min(width(), height()) > 3) {
Painter.fill(level, this, 1, Terrain.CHASM);
}
super.paint(level);
for (Room r : neigbours){
if (r instanceof BridgeRoom || r instanceof RingBridgeRoom || r instanceof WalkwayRoom){
Rect i = intersect(r);
if (i.width() != 0){
i.left++;
i.right--;
} else {
i.top++;
i.bottom--;
}
Painter.fill(level, i.left, i.top, i.width()+1, i.height()+1, Terrain.CHASM);
}
}
}
}
| 1,725 | WalkwayRoom | java | en | java | code | {"qsc_code_num_words": 232, "qsc_code_num_chars": 1725.0, "qsc_code_mean_word_length": 5.32758621, "qsc_code_frac_words_unique": 0.52586207, "qsc_code_frac_chars_top_2grams": 0.06877023, "qsc_code_frac_chars_top_3grams": 0.15372168, "qsc_code_frac_chars_top_4grams": 0.17799353, "qsc_code_frac_chars_dupe_5grams": 0.27184466, "qsc_code_frac_chars_dupe_6grams": 0.04530744, "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.0155587, "qsc_code_frac_chars_whitespace": 0.18028986, "qsc_code_size_file_byte": 1725.0, "qsc_code_num_lines": 55.0, "qsc_code_num_chars_line_max": 92.0, "qsc_code_num_chars_line_mean": 31.36363636, "qsc_code_frac_chars_alphabet": 0.85855728, "qsc_code_frac_chars_comments": 0.45275362, "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.25, "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/levels/rooms/secret/SecretHoneypotRoom.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.rooms.secret;
import com.shatteredpixel.shatteredpixeldungeon.Dungeon;
import com.shatteredpixel.shatteredpixeldungeon.actors.mobs.Bee;
import com.shatteredpixel.shatteredpixeldungeon.items.Honeypot;
import com.shatteredpixel.shatteredpixeldungeon.items.Item;
import com.shatteredpixel.shatteredpixeldungeon.items.bombs.Bomb;
import com.shatteredpixel.shatteredpixeldungeon.levels.Level;
import com.shatteredpixel.shatteredpixeldungeon.levels.Terrain;
import com.shatteredpixel.shatteredpixeldungeon.levels.painters.Painter;
import com.watabou.utils.Point;
public class SecretHoneypotRoom extends SecretRoom {
@Override
public void paint(Level level) {
Painter.fill( level, this, Terrain.WALL );
Painter.fill(level, this, 1, Terrain.EMPTY );
Point brokenPotPos = center();
brokenPotPos.x = (brokenPotPos.x + entrance().x) / 2;
brokenPotPos.y = (brokenPotPos.y + entrance().y) / 2;
Honeypot.ShatteredPot pot = new Honeypot.ShatteredPot();
level.drop(pot, level.pointToCell(brokenPotPos));
Bee bee = new Bee();
bee.spawn( Dungeon.depth );
bee.HP = bee.HT;
bee.pos = level.pointToCell(brokenPotPos);
level.mobs.add( bee );
bee.setPotInfo(level.pointToCell(brokenPotPos), null);
placeItem(new Honeypot(), level);
placeItem( new Bomb().random(), level);
entrance().set(Door.Type.HIDDEN);
}
private void placeItem(Item item, Level level){
int itemPos;
do {
itemPos = level.pointToCell(random());
} while (level.heaps.get(itemPos) != null);
level.drop(item, itemPos);
}
}
| 2,385 | SecretHoneypotRoom | java | en | java | code | {"qsc_code_num_words": 301, "qsc_code_num_chars": 2385.0, "qsc_code_mean_word_length": 5.92026578, "qsc_code_frac_words_unique": 0.47840532, "qsc_code_frac_chars_top_2grams": 0.08585859, "qsc_code_frac_chars_top_3grams": 0.19191919, "qsc_code_frac_chars_top_4grams": 0.19753086, "qsc_code_frac_chars_dupe_5grams": 0.21268238, "qsc_code_frac_chars_dupe_6grams": 0.03142536, "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.00985222, "qsc_code_frac_chars_whitespace": 0.14884696, "qsc_code_size_file_byte": 2385.0, "qsc_code_num_lines": 72.0, "qsc_code_num_chars_line_max": 73.0, "qsc_code_num_chars_line_mean": 33.125, "qsc_code_frac_chars_alphabet": 0.8679803, "qsc_code_frac_chars_comments": 0.32746331, "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.05263158, "qsc_codejava_score_lines_no_logic": 0.34210526, "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} | 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/rooms/secret/SecretLaboratoryRoom.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.rooms.secret;
import com.shatteredpixel.shatteredpixeldungeon.actors.blobs.Alchemy;
import com.shatteredpixel.shatteredpixeldungeon.actors.blobs.Blob;
import com.shatteredpixel.shatteredpixeldungeon.items.potions.Potion;
import com.shatteredpixel.shatteredpixeldungeon.items.potions.PotionOfExperience;
import com.shatteredpixel.shatteredpixeldungeon.items.potions.PotionOfFrost;
import com.shatteredpixel.shatteredpixeldungeon.items.potions.PotionOfHaste;
import com.shatteredpixel.shatteredpixeldungeon.items.potions.PotionOfHealing;
import com.shatteredpixel.shatteredpixeldungeon.items.potions.PotionOfInvisibility;
import com.shatteredpixel.shatteredpixeldungeon.items.potions.PotionOfLevitation;
import com.shatteredpixel.shatteredpixeldungeon.items.potions.PotionOfLiquidFlame;
import com.shatteredpixel.shatteredpixeldungeon.items.potions.PotionOfMindVision;
import com.shatteredpixel.shatteredpixeldungeon.items.potions.PotionOfParalyticGas;
import com.shatteredpixel.shatteredpixeldungeon.items.potions.PotionOfPurity;
import com.shatteredpixel.shatteredpixeldungeon.items.potions.PotionOfToxicGas;
import com.shatteredpixel.shatteredpixeldungeon.levels.Level;
import com.shatteredpixel.shatteredpixeldungeon.levels.Terrain;
import com.shatteredpixel.shatteredpixeldungeon.levels.painters.Painter;
import com.watabou.utils.Point;
import com.watabou.utils.Random;
import com.watabou.utils.Reflection;
import java.util.HashMap;
public class SecretLaboratoryRoom extends SecretRoom {
private static HashMap<Class<? extends Potion>, Float> potionChances = new HashMap<>();
static{
potionChances.put(PotionOfHealing.class, 1f);
potionChances.put(PotionOfMindVision.class, 2f);
potionChances.put(PotionOfFrost.class, 3f);
potionChances.put(PotionOfLiquidFlame.class, 3f);
potionChances.put(PotionOfToxicGas.class, 3f);
potionChances.put(PotionOfHaste.class, 4f);
potionChances.put(PotionOfInvisibility.class, 4f);
potionChances.put(PotionOfLevitation.class, 4f);
potionChances.put(PotionOfParalyticGas.class, 4f);
potionChances.put(PotionOfPurity.class, 4f);
potionChances.put(PotionOfExperience.class, 6f);
}
public void paint( Level level ) {
Painter.fill( level, this, Terrain.WALL );
Painter.fill( level, this, 1, Terrain.EMPTY_SP );
entrance().set( Door.Type.HIDDEN );
Point pot = center();
Painter.set( level, pot, Terrain.ALCHEMY );
Blob.seed( pot.x + level.width() * pot.y, 1+Random.NormalIntRange(20, 30), Alchemy.class, level );
int n = Random.IntRange( 2, 3 );
HashMap<Class<? extends Potion>, Float> chances = new HashMap<>(potionChances);
for (int i=0; i < n; i++) {
int pos;
do {
pos = level.pointToCell(random());
} while (level.map[pos] != Terrain.EMPTY_SP || level.heaps.get( pos ) != null);
Class<?extends Potion> potionCls = Random.chances(chances);
chances.put(potionCls, 0f);
level.drop( Reflection.newInstance(potionCls), pos );
}
}
}
| 3,858 | SecretLaboratoryRoom | java | en | java | code | {"qsc_code_num_words": 442, "qsc_code_num_chars": 3858.0, "qsc_code_mean_word_length": 6.72850679, "qsc_code_frac_words_unique": 0.38687783, "qsc_code_frac_chars_top_2grams": 0.06052455, "qsc_code_frac_chars_top_3grams": 0.22999328, "qsc_code_frac_chars_top_4grams": 0.25151311, "qsc_code_frac_chars_dupe_5grams": 0.36112979, "qsc_code_frac_chars_dupe_6grams": 0.28177539, "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.01129944, "qsc_code_frac_chars_whitespace": 0.12830482, "qsc_code_size_file_byte": 3858.0, "qsc_code_num_lines": 91.0, "qsc_code_num_chars_line_max": 101.0, "qsc_code_num_chars_line_mean": 42.3956044, "qsc_code_frac_chars_alphabet": 0.87303003, "qsc_code_frac_chars_comments": 0.2024365, "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.01754386, "qsc_codejava_score_lines_no_logic": 0.42105263, "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/rooms/secret/SecretWellRoom.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.rooms.secret;
import com.shatteredpixel.shatteredpixeldungeon.actors.blobs.WaterOfAwareness;
import com.shatteredpixel.shatteredpixeldungeon.actors.blobs.WaterOfHealth;
import com.shatteredpixel.shatteredpixeldungeon.actors.blobs.WellWater;
import com.shatteredpixel.shatteredpixeldungeon.levels.Level;
import com.shatteredpixel.shatteredpixeldungeon.levels.Terrain;
import com.shatteredpixel.shatteredpixeldungeon.levels.painters.Painter;
import com.watabou.utils.Point;
import com.watabou.utils.Random;
public class SecretWellRoom extends SecretRoom {
private static final Class<?>[] WATERS =
{WaterOfAwareness.class, WaterOfHealth.class};
@Override
public boolean canConnect(Point p) {
//refuses connections next to corners
return super.canConnect(p) && ((p.x > left+1 && p.x < right-1) || (p.y > top+1 && p.y < bottom-1));
}
public void paint( Level level ) {
Painter.fill( level, this, Terrain.WALL );
Point door = entrance();
Point well;
if (door.x == left){
well = new Point(right-2, door.y);
} else if (door.x == right){
well = new Point(left+2, door.y);
} else if (door.y == top){
well = new Point(door.x, bottom-2);
} else {
well = new Point(door.x, top+2);
}
Painter.fill(level, well.x-1, well.y-1, 3, 3, Terrain.CHASM);
Painter.drawLine(level, door, well, Terrain.EMPTY);
Painter.set( level, well, Terrain.WELL );
@SuppressWarnings("unchecked")
Class<? extends WellWater> waterClass = (Class<? extends WellWater>) Random.element( WATERS );
WellWater.seed(well.x + level.width() * well.y, 1, waterClass, level);
entrance().set( Door.Type.HIDDEN );
}
}
| 2,483 | SecretWellRoom | java | en | java | code | {"qsc_code_num_words": 336, "qsc_code_num_chars": 2483.0, "qsc_code_mean_word_length": 5.35714286, "qsc_code_frac_words_unique": 0.4375, "qsc_code_frac_chars_top_2grams": 0.04, "qsc_code_frac_chars_top_3grams": 0.14777778, "qsc_code_frac_chars_top_4grams": 0.14666667, "qsc_code_frac_chars_dupe_5grams": 0.25722222, "qsc_code_frac_chars_dupe_6grams": 0.14055556, "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.01438849, "qsc_code_frac_chars_whitespace": 0.16028997, "qsc_code_size_file_byte": 2483.0, "qsc_code_num_lines": 71.0, "qsc_code_num_chars_line_max": 102.0, "qsc_code_num_chars_line_mean": 34.97183099, "qsc_code_frac_chars_alphabet": 0.84892086, "qsc_code_frac_chars_comments": 0.32944019, "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.00540541, "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.05263158, "qsc_codejava_score_lines_no_logic": 0.31578947, "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/levels/rooms/secret/RatKingRoom.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.rooms.secret;
import com.shatteredpixel.shatteredpixeldungeon.actors.mobs.npcs.RatKing;
import com.shatteredpixel.shatteredpixeldungeon.items.Gold;
import com.shatteredpixel.shatteredpixeldungeon.items.Heap;
import com.shatteredpixel.shatteredpixeldungeon.items.Item;
import com.shatteredpixel.shatteredpixeldungeon.levels.Level;
import com.shatteredpixel.shatteredpixeldungeon.levels.Terrain;
import com.shatteredpixel.shatteredpixeldungeon.levels.painters.Painter;
import com.shatteredpixel.shatteredpixeldungeon.levels.rooms.Room;
import com.shatteredpixel.shatteredpixeldungeon.levels.rooms.sewerboss.SewerBossEntranceRoom;
import com.watabou.utils.Random;
public class RatKingRoom extends SecretRoom {
@Override
public boolean canConnect(Room r) {
//never connects at the entrance
return !(r instanceof SewerBossEntranceRoom) && super.canConnect(r);
}
//reduced max size to limit chest numbers.
// normally would gen with 8-28, this limits it to 8-16
@Override
public int maxHeight() { return 7; }
public int maxWidth() { return 7; }
public void paint(Level level ) {
Painter.fill( level, this, Terrain.WALL );
Painter.fill( level, this, 1, Terrain.EMPTY_SP );
Door entrance = entrance();
entrance.set( Door.Type.HIDDEN );
int door = entrance.x + entrance.y * level.width();
for (int i=left + 1; i < right; i++) {
addChest( level, (top + 1) * level.width() + i, door );
addChest( level, (bottom - 1) * level.width() + i, door );
}
for (int i=top + 2; i < bottom - 1; i++) {
addChest( level, i * level.width() + left + 1, door );
addChest( level, i * level.width() + right - 1, door );
}
RatKing king = new RatKing();
king.pos = level.pointToCell(random( 2 ));
level.mobs.add( king );
}
private static void addChest( Level level, int pos, int door ) {
if (pos == door - 1 ||
pos == door + 1 ||
pos == door - level.width() ||
pos == door + level.width()) {
return;
}
Item prize = new Gold( Random.IntRange( 10, 25 ) );
level.drop( prize, pos ).type = Heap.Type.CHEST;
}
}
| 2,915 | RatKingRoom | java | en | java | code | {"qsc_code_num_words": 386, "qsc_code_num_chars": 2915.0, "qsc_code_mean_word_length": 5.38860104, "qsc_code_frac_words_unique": 0.43782383, "qsc_code_frac_chars_top_2grams": 0.08173077, "qsc_code_frac_chars_top_3grams": 0.18269231, "qsc_code_frac_chars_top_4grams": 0.19038462, "qsc_code_frac_chars_dupe_5grams": 0.30817308, "qsc_code_frac_chars_dupe_6grams": 0.07980769, "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.0166182, "qsc_code_frac_chars_whitespace": 0.17427101, "qsc_code_size_file_byte": 2915.0, "qsc_code_num_lines": 85.0, "qsc_code_num_chars_line_max": 94.0, "qsc_code_num_chars_line_mean": 34.29411765, "qsc_code_frac_chars_alphabet": 0.84752804, "qsc_code_frac_chars_comments": 0.31217839, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.04166667, "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.10416667, "qsc_codejava_score_lines_no_logic": 0.35416667, "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} | 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/rooms/secret/SecretLarderRoom.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.rooms.secret;
import com.shatteredpixel.shatteredpixeldungeon.Challenges;
import com.shatteredpixel.shatteredpixeldungeon.Dungeon;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Hunger;
import com.shatteredpixel.shatteredpixeldungeon.items.food.ChargrilledMeat;
import com.shatteredpixel.shatteredpixeldungeon.items.food.Food;
import com.shatteredpixel.shatteredpixeldungeon.items.food.Pasty;
import com.shatteredpixel.shatteredpixeldungeon.levels.Level;
import com.shatteredpixel.shatteredpixeldungeon.levels.Terrain;
import com.shatteredpixel.shatteredpixeldungeon.levels.painters.Painter;
import com.shatteredpixel.shatteredpixeldungeon.plants.BlandfruitBush;
import com.watabou.utils.Point;
public class SecretLarderRoom extends SecretRoom {
@Override
public int minHeight() {
return 6;
}
@Override
public int minWidth() {
return 6;
}
@Override
public void paint(Level level) {
Painter.fill(level, this, Terrain.WALL);
Painter.fill(level, this, 1, Terrain.EMPTY_SP);
Point c = center();
Painter.fill(level, c.x-1, c.y-1, 3, 3, Terrain.WATER);
Painter.set(level, c, Terrain.GRASS);
if (!Dungeon.isChallenged(Challenges.NO_FOOD)) {
level.plant(new BlandfruitBush.Seed(), level.pointToCell(c));
}
int extraFood = (int)(Hunger.STARVING - Hunger.HUNGRY) * (1 + Dungeon.depth / 5);
while (extraFood > 0){
Food food;
if (extraFood >= Hunger.STARVING){
food = new Pasty();
extraFood -= Hunger.STARVING;
} else {
food = new ChargrilledMeat();
extraFood -= (Hunger.STARVING - Hunger.HUNGRY);
}
int foodPos;
do {
foodPos = level.pointToCell(random());
} while (level.map[foodPos] != Terrain.EMPTY_SP || level.heaps.get(foodPos) != null);
level.drop(food, foodPos);
}
entrance().set(Door.Type.HIDDEN);
}
}
| 2,663 | SecretLarderRoom | java | en | java | code | {"qsc_code_num_words": 332, "qsc_code_num_chars": 2663.0, "qsc_code_mean_word_length": 5.92168675, "qsc_code_frac_words_unique": 0.45783133, "qsc_code_frac_chars_top_2grams": 0.09511699, "qsc_code_frac_chars_top_3grams": 0.21261445, "qsc_code_frac_chars_top_4grams": 0.22380468, "qsc_code_frac_chars_dupe_5grams": 0.19888098, "qsc_code_frac_chars_dupe_6grams": 0.1093591, "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.01199467, "qsc_code_frac_chars_whitespace": 0.15471273, "qsc_code_size_file_byte": 2663.0, "qsc_code_num_lines": 84.0, "qsc_code_num_chars_line_max": 89.0, "qsc_code_num_chars_line_mean": 31.70238095, "qsc_code_frac_chars_alphabet": 0.86139494, "qsc_code_frac_chars_comments": 0.29327826, "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.06, "qsc_codejava_score_lines_no_logic": 0.38, "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/levels/rooms/secret/SecretHoardRoom.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.rooms.secret;
import com.shatteredpixel.shatteredpixeldungeon.Dungeon;
import com.shatteredpixel.shatteredpixeldungeon.items.Gold;
import com.shatteredpixel.shatteredpixeldungeon.items.Item;
import com.shatteredpixel.shatteredpixeldungeon.levels.Level;
import com.shatteredpixel.shatteredpixeldungeon.levels.Terrain;
import com.shatteredpixel.shatteredpixeldungeon.levels.painters.Painter;
import com.shatteredpixel.shatteredpixeldungeon.levels.traps.DisintegrationTrap;
import com.shatteredpixel.shatteredpixeldungeon.levels.traps.PoisonDartTrap;
import com.shatteredpixel.shatteredpixeldungeon.levels.traps.RockfallTrap;
import com.shatteredpixel.shatteredpixeldungeon.levels.traps.Trap;
import com.watabou.utils.Point;
import com.watabou.utils.Random;
import com.watabou.utils.Reflection;
public class SecretHoardRoom extends SecretRoom {
@Override
public void paint(Level level) {
Painter.fill(level, this, Terrain.WALL);
Painter.fill(level, this, 1, Terrain.EMPTY);
Class<? extends Trap> trapClass;
if (Random.Int(2) == 0){
trapClass = RockfallTrap.class;
} else if (Dungeon.depth >= 10){
trapClass = DisintegrationTrap.class;
} else {
trapClass = PoisonDartTrap.class;
}
int goldPos;
//half of the internal space of the room
int totalGold = ((width()-2)*(height()-2))/2;
//no matter how much gold it drops, roughly equals 8 gold stacks.
float goldRatio = 8 / (float)totalGold;
for (int i = 0; i < totalGold; i++) {
do {
goldPos = level.pointToCell(random());
} while (level.heaps.get(goldPos) != null);
Item gold = new Gold().random();
gold.quantity(Math.round(gold.quantity() * goldRatio));
level.drop(gold, goldPos);
}
for (Point p : getPoints()){
if (Random.Int(2) == 0 && level.map[level.pointToCell(p)] == Terrain.EMPTY){
level.setTrap(Reflection.newInstance(trapClass).reveal(), level.pointToCell(p));
Painter.set(level, p, Terrain.TRAP);
}
}
entrance().set(Door.Type.HIDDEN);
}
@Override
public boolean canPlaceTrap(Point p) {
return false;
}
}
| 2,902 | SecretHoardRoom | java | en | java | code | {"qsc_code_num_words": 367, "qsc_code_num_chars": 2902.0, "qsc_code_mean_word_length": 5.8719346, "qsc_code_frac_words_unique": 0.45504087, "qsc_code_frac_chars_top_2grams": 0.05429234, "qsc_code_frac_chars_top_3grams": 0.19396752, "qsc_code_frac_chars_top_4grams": 0.20417633, "qsc_code_frac_chars_dupe_5grams": 0.26728538, "qsc_code_frac_chars_dupe_6grams": 0.12807425, "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.01214083, "qsc_code_frac_chars_whitespace": 0.14851826, "qsc_code_size_file_byte": 2902.0, "qsc_code_num_lines": 83.0, "qsc_code_num_chars_line_max": 85.0, "qsc_code_num_chars_line_mean": 34.96385542, "qsc_code_frac_chars_alphabet": 0.85997572, "qsc_code_frac_chars_comments": 0.30530669, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.03921569, "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.03921569, "qsc_codejava_score_lines_no_logic": 0.35294118, "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} | 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/rooms/secret/SecretRunestoneRoom.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.rooms.secret;
import com.shatteredpixel.shatteredpixeldungeon.items.Generator;
import com.shatteredpixel.shatteredpixeldungeon.items.potions.PotionOfLiquidFlame;
import com.shatteredpixel.shatteredpixeldungeon.items.stones.StoneOfEnchantment;
import com.shatteredpixel.shatteredpixeldungeon.levels.Level;
import com.shatteredpixel.shatteredpixeldungeon.levels.Terrain;
import com.shatteredpixel.shatteredpixeldungeon.levels.painters.Painter;
import com.watabou.utils.Point;
public class SecretRunestoneRoom extends SecretRoom {
@Override
public void paint(Level level) {
Painter.fill( level, this, Terrain.WALL );
Painter.fill(level, this, 1, Terrain.EMPTY);
Door entrance = entrance();
Point center = center();
if (entrance.x == left || entrance.x == right){
Painter.drawLine(level,
new Point(center.x, top+1),
new Point(center.x, bottom-1),
Terrain.BOOKSHELF);
if (entrance.x == left) {
Painter.fill(level, center.x+1, top+1, right-center.x-1, height()-2, Terrain.EMPTY_SP);
} else {
Painter.fill(level, left+1, top+1, center.x-left-1, height()-2, Terrain.EMPTY_SP);
}
} else {
Painter.drawLine(level,
new Point(left+1, center.y),
new Point(right-1, center.y),
Terrain.BOOKSHELF);
if (entrance.y == top) {
Painter.fill(level, left+1, center.y+1, width()-2, bottom-center.y-1, Terrain.EMPTY_SP);
} else {
Painter.fill(level, left+1, top+1, width()-2, center.y-top-1, Terrain.EMPTY_SP);
}
}
level.addItemToSpawn(new PotionOfLiquidFlame());
int dropPos;
do{
dropPos = level.pointToCell(random());
} while (level.map[dropPos] != Terrain.EMPTY);
level.drop( Generator.random(Generator.Category.STONE), dropPos);
do{
dropPos = level.pointToCell(random());
} while (level.map[dropPos] != Terrain.EMPTY || level.heaps.get(dropPos) != null);
level.drop( Generator.random(Generator.Category.STONE), dropPos);
do{
dropPos = level.pointToCell(random());
} while (level.map[dropPos] != Terrain.EMPTY_SP);
level.drop( new StoneOfEnchantment(), dropPos);
entrance.set(Door.Type.HIDDEN);
}
@Override
public boolean canPlaceWater(Point p) {
return false;
}
@Override
public boolean canPlaceGrass(Point p) {
return false;
}
@Override
public boolean canPlaceCharacter(Point p, Level l) {
return super.canPlaceCharacter(p, l) && l.map[l.pointToCell(p)] != Terrain.EMPTY_SP;
}
}
| 3,268 | SecretRunestoneRoom | java | en | java | code | {"qsc_code_num_words": 428, "qsc_code_num_chars": 3268.0, "qsc_code_mean_word_length": 5.46261682, "qsc_code_frac_words_unique": 0.35747664, "qsc_code_frac_chars_top_2grams": 0.04619333, "qsc_code_frac_chars_top_3grams": 0.11377246, "qsc_code_frac_chars_top_4grams": 0.11291702, "qsc_code_frac_chars_dupe_5grams": 0.41017964, "qsc_code_frac_chars_dupe_6grams": 0.24208725, "qsc_code_frac_chars_dupe_7grams": 0.21813516, "qsc_code_frac_chars_dupe_8grams": 0.18562874, "qsc_code_frac_chars_dupe_9grams": 0.16809239, "qsc_code_frac_chars_dupe_10grams": 0.16809239, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.01384335, "qsc_code_frac_chars_whitespace": 0.16003672, "qsc_code_size_file_byte": 3268.0, "qsc_code_num_lines": 100.0, "qsc_code_num_chars_line_max": 93.0, "qsc_code_num_chars_line_mean": 32.68, "qsc_code_frac_chars_alphabet": 0.83788707, "qsc_code_frac_chars_comments": 0.23898409, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.32307692, "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.12307692, "qsc_codejava_score_lines_no_logic": 0.29230769, "qsc_codejava_frac_words_no_modifier": 0.44444444, "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} |
01-ai/YiDong | client/py/yidong/util.py | from typing import Any, Callable, Generic, Iterable, Iterator, TypeVar
from yidong.model import Pagination, Resource, TaskContainer, TaskResultType, TaskType
class ResourceRef:
def __init__(self, client: "YiDong", rid: str, **kwargs) -> None:
self.client = client
self.rid = rid
self.meta = kwargs
def __call__(self) -> Resource | None:
return self.client.get_resource(self.rid)
def __repr__(self) -> str:
return f"ResourceRef('{self.rid}', {self.meta})"
def __getitem__(self, key: str):
return self.meta[key]
class TaskRef(Generic[TaskType, TaskResultType]):
def __init__(self, client: "YiDong", tid: str) -> None:
self.client = client
self.tid = tid
self.t: TaskContainer[TaskType, TaskResultType] | None = None
def __call__(self, **kwargs) -> TaskResultType | None:
if self.t is None or self.t.result is None:
self.t = self.client.get_task(self.tid, **kwargs)
return self.t.result
def __getattr__(self, name: str) -> Any:
if self.t is None:
return None
return getattr(self.t, name)
def __repr__(self) -> str:
if self.t is None:
return f'TaskRef("{self.tid}")'
else:
return repr(self.t)
T = TypeVar("T")
class PaginationIter(Iterable[T], Generic[T]):
def __init__(
self, page_getter: Callable[[int], Pagination[T]], start_page: int = 1
) -> None:
self.page_getter = page_getter
self.page: Pagination[T] = page_getter(start_page)
self.next_page = start_page + 1
self.next_ele_index = 0
def __iter__(self) -> Iterator[T]:
return self
def __next__(self) -> T:
if self.next_ele_index < len(self.page.list):
x = self.page.list[self.next_ele_index]
self.next_ele_index += 1
if self.next_ele_index >= len(self.page.list):
self.page = self.page_getter(self.next_page)
self.next_page += 1
self.next_ele_index = 0
return x
else:
raise StopIteration()
| 2,150 | util | py | en | python | code | {"qsc_code_num_words": 274, "qsc_code_num_chars": 2150.0, "qsc_code_mean_word_length": 4.46350365, "qsc_code_frac_words_unique": 0.22262774, "qsc_code_frac_chars_top_2grams": 0.04088307, "qsc_code_frac_chars_top_3grams": 0.05396566, "qsc_code_frac_chars_top_4grams": 0.0784955, "qsc_code_frac_chars_dupe_5grams": 0.20850368, "qsc_code_frac_chars_dupe_6grams": 0.1210139, "qsc_code_frac_chars_dupe_7grams": 0.08994276, "qsc_code_frac_chars_dupe_8grams": 0.05396566, "qsc_code_frac_chars_dupe_9grams": 0.05396566, "qsc_code_frac_chars_dupe_10grams": 0.0, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.0038961, "qsc_code_frac_chars_whitespace": 0.28372093, "qsc_code_size_file_byte": 2150.0, "qsc_code_num_lines": 72.0, "qsc_code_num_chars_line_max": 87.0, "qsc_code_num_chars_line_mean": 29.86111111, "qsc_code_frac_chars_alphabet": 0.79025974, "qsc_code_frac_chars_comments": 0.0, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.18867925, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.03348837, "qsc_code_frac_chars_long_word_length": 0.02139535, "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.20754717, "qsc_codepython_cate_var_zero": false, "qsc_codepython_frac_lines_pass": 0.0, "qsc_codepython_frac_lines_import": 0.03773585, "qsc_codepython_frac_lines_simplefunc": 0.07547169811320754, "qsc_codepython_score_lines_no_logic": 0.49056604, "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} |
01-ai/YiDong | client/py/yidong/model.py | from enum import Enum, StrEnum
from typing import Annotated, Generic, Literal, List, TypeVar, Union
from pydantic import BaseModel, Field
T = TypeVar("T")
class ResourceUploadResponse(BaseModel):
id: str
class ResourceFromLocalUpload(BaseModel):
type: Literal["local_upload"] = "local_upload"
path: str | None = None
class ResourceFromRemoteDownload(BaseModel):
type: Literal["remote_download"] = "remote_download"
url: str
class ResourceFromTask(BaseModel):
type: Literal["task"] = "task"
task_id: str
ResourceSource = Annotated[
Union[
ResourceFromLocalUpload,
ResourceFromRemoteDownload,
ResourceFromTask,
],
Field(discriminator="type"),
]
class Resource(BaseModel):
id: str
mime: str
name: str
source: ResourceSource
uploaded_at: str
created_at: str | None
updated_at: str | None
meta: dict | None
url: str
def __getitem__(self, key):
if self.meta:
return self.meta[key]
else:
raise KeyError(key)
class ResourceUrlResponse(BaseModel):
url: str
class Reply(BaseModel, Generic[T]):
code: int
message: str
data: T
class TaskInfo(BaseModel):
id: str
class Pagination(BaseModel, Generic[T]):
page: int
page_size: int
total: int
list: list[T]
def __getitem__(self, i: int) -> T:
return self.list[i]
def __iter__(self):
self._i = 0
return self
def __next__(self) -> T:
if self._i < len(self.list):
x = self.list[self._i]
self._i += 1
return x
else:
raise StopIteration()
class Chapter(BaseModel):
start: float
stop: float
class Summary(BaseModel):
summary: str
meta: dict = {}
#####
class WebhookResponse(BaseModel):
user_id: str
webhook_id: str
url: str
secret: str
status: str
created_at: str
updated_at: str
#####
class PingTask(BaseModel):
type: Literal["ping"] = "ping"
class PingTaskResult(BaseModel):
type: Literal["ping"] = "ping"
class VideoGenerationTask(BaseModel):
type: Literal["video_generation"] = "video_generation"
image_id: str = ""
prompt: str | None = None
class VideoGenerationTaskResult(BaseModel):
type: Literal["video_generation"] = "video_generation"
video_ids: list[str]
class VideoSummaryTask(BaseModel):
type: Literal["video_summary"] = "video_summary"
video_id: str
prompt: str | None = None
chapter_prompt: str | None = None
chapters: list[Chapter] | None = None
display_lang: str = "en"
class VideoSummaryTaskResult(BaseModel):
type: Literal["video_summary"] = "video_summary"
video_id: str
video_summary: Summary | None
chapters: list[Chapter]
chapters_ids: list[str]
chapter_summaries: list[Summary | None]
class VideoScriptTaskElement(BaseModel):
video_id: str
video_summary: Summary
chapters_ids: list[str] | None = None
chapters: list[Chapter]
chapter_summaries: list[Summary]
class VideoScriptTaskResultElement(BaseModel):
video_id: str
chapter_id: str | None = None
chapter: Chapter
data: dict
class VideoScriptTask(BaseModel):
type: Literal["video_script"] = "video_script"
collection: list[VideoScriptTaskElement]
remix_s1_prompt: str
remix_s2_prompt: str
references: list[list[VideoScriptTaskResultElement]] = []
lang: str = "en"
class VideoScriptTaskResult(BaseModel):
type: Literal["video_script"] = "video_script"
styles: list[list[VideoScriptTaskResultElement]]
class BgmConfig(BaseModel):
resource_id: str = ""
volume: float = 1
class GlobalEditorConfig(BaseModel):
bgm_config: BgmConfig = BgmConfig()
video_fill_effect: str = "black_border"
output_width: float | None = None
output_height: float | None = None
class AudioEditorConfig(BaseModel):
resource_id: str = ""
start: float = 0.0
speed: float = 1.0
volume: float = 1
class EffectBase(BaseModel):
style: str = ""
duration: float = 0.5
class EffectConfig(BaseModel):
in_effect: EffectBase = EffectBase()
on_effect: EffectBase = EffectBase()
out_effect: EffectBase = EffectBase()
class FontBase(BaseModel):
text: str = ""
font: str = ""
font_size: int = 0
font_color: str = ""
font_weight: str = ""
class VoiceoverEditorConfig(FontBase):
display: bool = True
position_x: float = 0
position_y: float = 1
style: str = "mask"
stroke_color: str = ""
mask_type: str = "roll_mask"
mask_color: str = "#800080"
class TextoverEditorConfig(FontBase, EffectConfig):
rotate: float = 0.0
position_x: float = 0
position_y: float = -1
stroke_color: str = ""
mask_type: str = "no_effect"
mask_color: str = ""
mask_meta: dict = {}
class ImageEditorConfig(EffectConfig):
resource_id: str = ""
start: float = 0.0
stop: float = 0.0
scale: float = 1.0
position_x: float = 0
position_y: float = -1
rotate: float = 0.0
class VideoEditorConfig(BaseModel):
resource_id: str = ""
position_x: float = 1.0
position_y: float = 1.0
rotate: float = 0.0
animation: str = ""
black_fill: str = "1"
class TransitionEditorConfig(BaseModel):
style: str = ""
duration: float = 0.5
class ChapterEditorConfig(BaseModel):
key: str = ""
audio: AudioEditorConfig = AudioEditorConfig()
voiceover: VoiceoverEditorConfig = VoiceoverEditorConfig()
textovers: List[TextoverEditorConfig] = []
images: List[ImageEditorConfig] = []
video: VideoEditorConfig = VideoEditorConfig()
transition: TransitionEditorConfig = TransitionEditorConfig()
class EditorConfig(BaseModel):
global_editor_config: GlobalEditorConfig = GlobalEditorConfig()
chapter_editor_configs: list[ChapterEditorConfig] = []
class VideoMashupTask(BaseModel):
type: Literal["video_mashup"] = "video_mashup"
video_ids: list[str]
chapters: list[Chapter] | None
voice_overs: list[str]
bgm_id: str
voice_style_id: str
voice_style_text: str
lang: str = "en"
editor_config: EditorConfig | None = None
class VideoMashupTaskResult(BaseModel):
type: Literal["video_mashup"] = "video_mashup"
video_id: str
raw_video_id: str
voice_over_ids: list[str]
bgm_id: str
chapter_ids: list[str]
class VideoConcatTask(BaseModel):
type: Literal["video_concat"] = "video_concat"
video_ids: list[str]
chapters: list[Chapter] = []
class VideoConcatTaskResult(BaseModel):
type: Literal["video_concat"] = "video_concat"
video_id: str
class VideoSnapshotTask(BaseModel):
type: Literal["video_snapshot"] = "video_snapshot"
video_id: str
start: float
step: int
stop: float
class VideoSnapshotTaskResult(BaseModel):
type: Literal["video_snapshot"] = "video_snapshot"
image_ids: list[str]
class DiffusionModel(StrEnum):
SDXL = "sdxl"
FLUX = "flux"
class DiffusionConfig(BaseModel):
model: str = DiffusionModel.SDXL
width: str = "1024"
height: str = "1024"
steps: int = 20
count: int = 1
class ImageGenerationTask(BaseModel):
type: Literal["image_generation"] = "image_generation"
prompt: str = ""
image_id: str = ""
config: DiffusionConfig = DiffusionConfig()
class ImageGenerationTaskResult(BaseModel):
type: Literal["image_generation"] = "image_generation"
generated_image_ids: list[str]
class ImageInpaintTask(BaseModel):
type: Literal["image_inpaint"] = "image_inpaint"
image_id: str = Field(..., min_length=1)
mask_base64: str = Field(..., min_length=1)
prompt: str | None = None
class ImageInpaintTaskResult(BaseModel):
type: Literal["image_inpaint"] = "image_inpaint"
generated_image_ids: list[str]
class ImageRemoveTask(BaseModel):
type: Literal["image_remove"] = "image_remove"
image_id: str = Field(..., min_length=1)
mask_base64: str = Field(..., min_length=1)
class ImageRemoveTaskResult(BaseModel):
type: Literal["image_remove"] = "image_remove"
generated_image_ids: list[str]
Task = Annotated[
Union[
PingTask,
VideoGenerationTask,
VideoSummaryTask,
VideoScriptTask,
VideoMashupTask,
VideoConcatTask,
VideoSnapshotTask,
ImageGenerationTask,
ImageInpaintTask,
ImageRemoveTask,
],
Field(discriminator="type"),
]
TaskType = TypeVar("TaskType", bound=Task)
TaskResult = Annotated[
Union[
PingTaskResult,
VideoGenerationTaskResult,
VideoSummaryTaskResult,
VideoScriptTaskResult,
VideoMashupTaskResult,
VideoConcatTaskResult,
VideoSnapshotTaskResult,
ImageGenerationTaskResult,
ImageInpaintTaskResult,
ImageRemoveTaskResult,
],
Field(discriminator="type"),
]
TaskResultType = TypeVar("TaskResultType", bound=TaskResult)
#####
class TaskRecordType(str, Enum):
created = "created"
submitted = "submitted"
pending = "pending"
processing = "processing"
success = "success"
fail = "fail"
def __repr__(self):
return self.value
class TaskRecord(BaseModel):
time: str
type: TaskRecordType
message: str = ""
class TaskContainer(BaseModel, Generic[TaskType, TaskResultType]):
id: str
task: TaskType
result: TaskResultType | None
records: list[TaskRecord]
def is_done(self) -> bool:
if self.records:
return (
self.records[-1].type == TaskRecordType.success
or self.records[-1].type == TaskRecordType.fail
)
return False
| 9,748 | model | py | en | python | code | {"qsc_code_num_words": 1027, "qsc_code_num_chars": 9748.0, "qsc_code_mean_word_length": 6.13924051, "qsc_code_frac_words_unique": 0.21324245, "qsc_code_frac_chars_top_2grams": 0.02141158, "qsc_code_frac_chars_top_3grams": 0.07295797, "qsc_code_frac_chars_top_4grams": 0.04758128, "qsc_code_frac_chars_dupe_5grams": 0.27311657, "qsc_code_frac_chars_dupe_6grams": 0.24504362, "qsc_code_frac_chars_dupe_7grams": 0.19413164, "qsc_code_frac_chars_dupe_8grams": 0.09008723, "qsc_code_frac_chars_dupe_9grams": 0.04377478, "qsc_code_frac_chars_dupe_10grams": 0.03394132, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.00868056, "qsc_code_frac_chars_whitespace": 0.23184243, "qsc_code_size_file_byte": 9748.0, "qsc_code_num_lines": 442.0, "qsc_code_num_chars_line_max": 69.0, "qsc_code_num_chars_line_mean": 22.05429864, "qsc_code_frac_chars_alphabet": 0.83333333, "qsc_code_frac_chars_comments": 0.0, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.2943038, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.07202301, "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.01898734, "qsc_codepython_cate_var_zero": false, "qsc_codepython_frac_lines_pass": 0.0, "qsc_codepython_frac_lines_import": 0.00949367, "qsc_codepython_frac_lines_simplefunc": 0.006329113924050633, "qsc_codepython_score_lines_no_logic": 0.82911392, "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": 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": 1, "qsc_codepython_frac_lines_print": 0} |
00-Evan/shattered-pixel-dungeon-gdx | core/src/com/shatteredpixel/shatteredpixeldungeon/levels/traps/OozeTrap.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.traps;
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.Ooze;
import com.shatteredpixel.shatteredpixeldungeon.effects.Splash;
public class OozeTrap extends Trap {
{
color = GREEN;
shape = DOTS;
}
@Override
public void activate() {
Char ch = Actor.findChar( pos );
if (ch != null && !ch.flying){
Buff.affect(ch, Ooze.class).set( 20f );
Splash.at( pos, 0x000000, 5);
}
}
}
| 1,437 | OozeTrap | java | en | java | code | {"qsc_code_num_words": 194, "qsc_code_num_chars": 1437.0, "qsc_code_mean_word_length": 5.54639175, "qsc_code_frac_words_unique": 0.58762887, "qsc_code_frac_chars_top_2grams": 0.09479554, "qsc_code_frac_chars_top_3grams": 0.21189591, "qsc_code_frac_chars_top_4grams": 0.20446097, "qsc_code_frac_chars_dupe_5grams": 0.27137546, "qsc_code_frac_chars_dupe_6grams": 0.15427509, "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.02248127, "qsc_code_frac_chars_whitespace": 0.16423104, "qsc_code_size_file_byte": 1437.0, "qsc_code_num_lines": 45.0, "qsc_code_num_chars_line_max": 72.0, "qsc_code_num_chars_line_mean": 31.93333333, "qsc_code_frac_chars_alphabet": 0.8734388, "qsc_code_frac_chars_comments": 0.54349339, "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.01219512, "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.05, "qsc_codejava_score_lines_no_logic": 0.35, "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/traps/RockfallTrap.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.traps;
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.actors.buffs.Buff;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Paralysis;
import com.shatteredpixel.shatteredpixeldungeon.effects.CellEmitter;
import com.shatteredpixel.shatteredpixeldungeon.effects.Speck;
import com.shatteredpixel.shatteredpixeldungeon.levels.RegularLevel;
import com.shatteredpixel.shatteredpixeldungeon.levels.rooms.Room;
import com.shatteredpixel.shatteredpixeldungeon.messages.Messages;
import com.shatteredpixel.shatteredpixeldungeon.utils.BArray;
import com.shatteredpixel.shatteredpixeldungeon.utils.GLog;
import com.watabou.noosa.Camera;
import com.watabou.noosa.audio.Sample;
import com.watabou.utils.PathFinder;
import com.watabou.utils.Point;
import com.watabou.utils.Random;
import java.util.ArrayList;
public class RockfallTrap extends Trap {
{
color = GREY;
shape = DIAMOND;
canBeHidden = false;
}
@Override
public void activate() {
ArrayList<Integer> rockCells = new ArrayList<>();
//determines if the trap is actually in the world, or if it is being spawned for its effect
boolean onGround = Dungeon.level.traps.get(pos) == this;
if (onGround && Dungeon.level instanceof RegularLevel){
Room r = ((RegularLevel) Dungeon.level).room(pos);
int cell;
for (Point p : r.getPoints()){
cell = Dungeon.level.pointToCell(p);
if (!Dungeon.level.solid[cell]){
rockCells.add(cell);
}
}
//if we don't have rooms, then just do 5x5
} else {
PathFinder.buildDistanceMap( pos, BArray.not( Dungeon.level.solid, null ), 2 );
for (int i = 0; i < PathFinder.distance.length; i++) {
if (PathFinder.distance[i] < Integer.MAX_VALUE) {
rockCells.add(i);
}
}
}
boolean seen = false;
for (int cell : rockCells){
if (Dungeon.level.heroFOV[ cell ]){
CellEmitter.get( cell - Dungeon.level.width() ).start(Speck.factory(Speck.ROCK), 0.07f, 10);
seen = true;
}
Char ch = Actor.findChar( cell );
if (ch != null && ch.isAlive()){
int damage = Random.NormalIntRange(5+Dungeon.depth, 10+Dungeon.depth*2);
damage -= ch.drRoll();
ch.damage( Math.max(damage, 0) , this);
Buff.prolong( ch, Paralysis.class, Paralysis.DURATION );
if (!ch.isAlive() && ch == Dungeon.hero){
Dungeon.fail( getClass() );
GLog.n( Messages.get(this, "ondeath") );
}
}
}
if (seen){
Camera.main.shake(3, 0.7f);
Sample.INSTANCE.play(Assets.SND_ROCKS);
}
}
}
| 3,553 | RockfallTrap | java | en | java | code | {"qsc_code_num_words": 450, "qsc_code_num_chars": 3553.0, "qsc_code_mean_word_length": 5.72888889, "qsc_code_frac_words_unique": 0.44222222, "qsc_code_frac_chars_top_2grams": 0.06283941, "qsc_code_frac_chars_top_3grams": 0.20636152, "qsc_code_frac_chars_top_4grams": 0.22187742, "qsc_code_frac_chars_dupe_5grams": 0.22963538, "qsc_code_frac_chars_dupe_6grams": 0.064391, "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.0114094, "qsc_code_frac_chars_whitespace": 0.16127216, "qsc_code_size_file_byte": 3553.0, "qsc_code_num_lines": 111.0, "qsc_code_num_chars_line_max": 97.0, "qsc_code_num_chars_line_mean": 32.00900901, "qsc_code_frac_chars_alphabet": 0.85369128, "qsc_code_frac_chars_comments": 0.2572474, "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.00265252, "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.01408451, "qsc_codejava_score_lines_no_logic": 0.30985915, "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} |
01-ai/YiDong | client/py/yidong/client.py | import inspect
import mimetypes
import os
from datetime import datetime
from time import sleep
from typing import Any, Iterable, get_args
from urllib.parse import urlparse
import httpx
import rich
from jsonargparse import CLI
from pydantic import TypeAdapter, ValidationError
from yidong.config import CONFIG
from yidong.exception import (
YDError,
YDInternalServerError,
YDInvalidReplyError,
convert_reply_to_error,
)
from yidong.model import (
Chapter,
DiffusionConfig,
EditorConfig,
ImageGenerationTask,
ImageGenerationTaskResult,
ImageInpaintTask,
ImageInpaintTaskResult,
ImageRemoveTask,
ImageRemoveTaskResult,
Pagination,
PingTask,
PingTaskResult,
Reply,
Resource,
ResourceUploadResponse,
T,
Task,
TaskContainer,
TaskInfo,
VideoConcatTask,
VideoConcatTaskResult,
VideoGenerationTask,
VideoGenerationTaskResult,
VideoMashupTask,
VideoMashupTaskResult,
VideoScriptTask,
VideoScriptTaskElement,
VideoScriptTaskResult,
VideoScriptTaskResultElement,
VideoSnapshotTask,
VideoSnapshotTaskResult,
VideoSummaryTask,
VideoSummaryTaskResult,
WebhookResponse,
)
from yidong.util import PaginationIter, ResourceRef, TaskRef
class YiDong:
_client: httpx.Client
def __init__(
self, api_key: str = CONFIG.api_key, base_url: str = CONFIG.base_url
) -> None:
"""Initialize the Client
Args:
base_url: The base url of the server.
api_key: The api key for authentication.
"""
self._client = httpx.Client(
base_url=base_url, headers={CONFIG.api_key_header: api_key}
)
def _request(
self,
T: type[T],
method: str,
path: str,
*,
params: dict | None = None,
payload: dict | None = None,
headers: dict | None = None,
content: str | bytes | Iterable[bytes] | None = None,
) -> T:
try:
resp = self._client.request(
method=method,
url=path,
params=params,
json=payload,
headers=headers,
content=content,
)
resp.raise_for_status()
reply = Reply[T].parse_raw(resp.content)
except httpx.HTTPStatusError as e:
raise YDInternalServerError(e.response.status_code, e.response.text)
except ValidationError:
try:
reply = Reply[Any].parse_raw(resp.content)
raise convert_reply_to_error(reply)
except ValidationError:
raise YDInvalidReplyError(resp.content)
return reply.data
def add_resource(
self, file: str | None = None, content_type: str | None = None
) -> Resource | ResourceRef:
"""Add a resource to the server. A resource id will be returned.
Args:
file: It can be either a local file path or a URL. If nothing is
provided, a pre-signed url will be generated which you can use
to upload the file later with the HTTP `PUT` request. Note that
the `Content-Type` header should be set the same as the
`content_type` parameter when uploading. Even if you do not
provide the `content_type` parameter here, you should still set
the `Content-Type` header as the default value of `content_type`
of `application/octet-stream`.
content_type: The mime content type of the file. If not provided, it
will first try to guess the content type from the file
extension. If it fails, it will be set to
`application/octet-stream` by default. You can still update it
later with the `update_resource` method.
"""
if file is None:
r = self._client.put(
f"/resource",
headers={"Content-Type": content_type or "application/octet-stream"},
)
if r.status_code == 307:
return ResourceRef(
self,
r.headers["x-yds-resource-id"],
upload_url=r.headers["Location"],
)
else:
raise YDError(1, "Failed to get pre-signed url", r.text)
elif os.path.exists(file):
headers = {
"Content-Type": content_type
or mimetypes.guess_type(file)[0]
or "application/octet-stream"
}
r = self._client.put(
f"/resource",
headers=headers,
params={"file": file},
)
if r.status_code == 307:
rid = r.headers["x-yds-resource-id"]
url = r.headers["Location"]
with open(file, "rb") as f:
r = self._client.put(
url,
content=f,
headers=headers,
)
return self.get_resource(rid)
else:
raise YDError(1, "Failed to get pre-signed url", r.text)
else:
o = urlparse(file)
if o.scheme in ["http", "https"]:
r = self._request(
ResourceUploadResponse, "put", f"/resource", params={"file": file}
)
return ResourceRef(self, r.id)
else:
raise FileNotFoundError(f"File not found: {file}")
def update_resource(
self, id: str, name: str | None = None, mime: str | None = None
) -> Resource:
"""Update the resource with the given id.
Args:
id: The resource id.
name: The file name of the resource.
mime: The mime content type of the resource.
"""
return self._request(
Resource, "patch", f"/resource/{id}", payload={"name": name, "mime": mime}
)
def list_resource(
self,
page: int = 1,
page_size: int = 10,
source: list[str] = ["local_upload", "remote_download"],
ids: list[str] | None = None,
) -> Pagination[Resource]:
"""Retrieve resources in `page` based on filters of `source`. See also `list_resource_iter`.
Args:
page: The page number, starting from 1.
page_size: The number of resources per page.
source: The source of the resources.
"""
params = {"page": page, "page_size": page_size, "source": source}
if ids:
params["ids"] = ids
return self._request(
Pagination[Resource],
"get",
"/resource",
params=params,
)
def list_resource_iter(self, **kwargs) -> PaginationIter[Resource]:
return PaginationIter[Resource](lambda p: self.list_resource(page=p, **kwargs))
def get_resource(self, id: str) -> Resource:
return self._request(Resource, "get", f"/resource/{id}")
def download_resource(self, id: str, path: str | None = None) -> str:
r = self.get_resource(id)
path = path or r.name or f"{r.id}.{r.mime.split('/')[1]}"
with open(path, "wb") as f:
resp = httpx.get(r.url)
f.write(resp.content)
return path
def delete_resource(self, id: str) -> None:
self._request(bool, "delete", f"/resource/{id}")
#####
def list_webhook(self) -> list[WebhookResponse]:
webhooks = self._request(Pagination[WebhookResponse], "get", "/webhook")
return webhooks.list
# TODO: add scope?
def add_webhook(self, url: str, secret: str) -> WebhookResponse:
return self._request(
WebhookResponse, "post", "/webhook", payload={"url": url, "secret": secret}
)
def enable_webhook(self, webhook_id: str) -> WebhookResponse:
return self._request(
WebhookResponse,
"patch",
f"/webhook/{webhook_id}",
payload={"status": "active"},
)
def disable_webhook(self, webhook_id: str) -> WebhookResponse:
return self._request(
WebhookResponse,
"patch",
f"/webhook/{webhook_id}",
payload={"status": "inactive"},
)
def update_webhook(
self, webhook_id: str, *, url: str | None = None, secret: str | None = None
) -> WebhookResponse:
payload = {}
if url is not None:
payload["url"] = url
if secret is not None:
payload["secret"] = secret
return self._request(
WebhookResponse, "patch", f"/webhook/{webhook_id}", payload=payload
)
#####
def list_task(
self,
page: int = 1,
page_size: int = 10,
ids: list[str] | None = None,
) -> Pagination[TaskContainer]:
params = {"page": page, "page_size": page_size}
if ids:
params["ids"] = ids
return self._request(Pagination[TaskContainer], "get", "/task", params=params)
def list_task_iter(self, **kwargs) -> PaginationIter[TaskContainer]:
return PaginationIter[TaskContainer](lambda p: self.list_task(page=p, **kwargs))
def _get_task(self, id: str) -> TaskContainer:
return self._request(TaskContainer, "get", f"/task/{id}")
def get_task(
self,
id: str,
block: bool = True,
poll_interval: float = 1.0,
timeout: float = 0,
) -> TaskContainer:
"""Get the task detail with the given task id.
Args:
id: The task id. block: Whether to block the request until the task is completed.
poll_interval: The interval to poll the task status.
timeout: The maximum time to wait for the task to finish. By default it will wait infinitely.
"""
if block:
start = datetime.now()
while True:
t = self._get_task(id)
if t.is_done():
return t
else:
if t.records:
print(
f"{id}\t{t.records[-1].time}\t{t.records[-1].type.value}\t{t.records[-1].message}"
)
now = datetime.now()
if timeout > 0 and (now - start).total_seconds() > timeout:
raise TimeoutError(
f"failed to fetch task [{id}] result within {timeout} seconds"
)
sleep(poll_interval)
else:
return self._get_task(id)
def delete_task(self, tid: str) -> bool:
return self._request(bool, "delete", f"/task/{tid}")
def _submit_task(self, payload: dict) -> TaskRef:
caller = inspect.currentframe().f_back.f_code.co_name
task_type, task_result_type = get_args(
inspect.signature(getattr(self, caller)).return_annotation
)
payload = payload | {"type": caller}
res = self._request(
TaskInfo,
"post",
"/task",
payload=TypeAdapter(Task).validate_python(payload).dict(),
)
return TaskRef[task_type, task_result_type](self, res.id)
def image_generation(
self,
prompt: str = "",
image_id: str = "",
config: DiffusionConfig = DiffusionConfig(),
) -> TaskRef[ImageGenerationTask, ImageGenerationTaskResult]:
"""Generate images based on the given prompt or the reference image."""
return self._submit_task(locals())
def image_inpaint(
self,
image_id: str,
mask_base64: str,
prompt: str | None = None,
) -> TaskRef[ImageInpaintTask, ImageInpaintTaskResult]:
"""Image inpaint based on the mask image base64 string and the given prompt."""
return self._submit_task(locals())
def image_remove(
self,
image_id: str,
mask_base64: str,
) -> TaskRef[ImageRemoveTask, ImageRemoveTaskResult]:
"""Image remove based on the mask image base64 string."""
return self._submit_task(locals())
def ping(self) -> TaskRef[PingTask, PingTaskResult]:
"""A simple task to test the health of the server."""
return self._submit_task(locals())
def video_concat(
self, video_ids: list[str], chapters: list[Chapter] = []
) -> TaskRef[VideoConcatTask, VideoConcatTaskResult]:
"""Concatenate multiple videos into one. If `chapters` are provided, they should be of the same length as `video_ids`."""
return self._submit_task(locals())
def video_mashup(
self,
video_ids: list[str],
voice_overs: list[str],
bgm_id: str,
voice_style_id: str,
voice_style_text: str,
chapters: list[Chapter] | None = None,
lang: str = "en",
editor_config: EditorConfig | None = None,
) -> TaskRef[VideoMashupTask, VideoMashupTaskResult]:
"""Create a new video based on the given videos and other elements.
Args:
video_ids: The list of video ids.
chapters: The list of chapters. If not provided, the whole video will be used.
voice_overs: The list of voice over texts.
bgm_id: The background music id. Make sure it exists first.
voice_style_id: The voice style resource id. Make sure it exists first by uploading your voice sample.
voice_style_text: The transcript of the voice style.
lang: The language of the voice over text. We'll choose appropriate font and style based on the language. Make sure the voice style matches the language specified here.
"""
return self._submit_task(locals())
def video_generation(
self,
prompt: str | None = None,
image_id: str = "",
) -> TaskRef[VideoGenerationTask, VideoGenerationTaskResult]:
"""Generate video based on the given prompt and the reference image."""
return self._submit_task(locals())
def video_script(
self,
collection: list[VideoScriptTaskElement],
remix_s1_prompt: str,
remix_s2_prompt: str,
references: list[list[VideoScriptTaskResultElement]],
lang: str = "en",
) -> TaskRef[VideoScriptTask, VideoScriptTaskResult]:
"""
Generate scripts based on a collection of video summarizations.
"""
return self._submit_task(locals())
def video_snapshot(
self, video_id: str, *, start: float = 0.0, step: int = 1, stop: float = 0.0
) -> TaskRef[VideoSnapshotTask, VideoSnapshotTaskResult]:
"""Take snapshots of the video at the given timestamps.
Args:
video_id: The video id.
start: The start timestamp in seconds.
step: The step between each snapshot. (Only integers are allowed for now)
stop: The stop timestamp in seconds. If it is longer than the video duration, only the video duration will be used.
"""
return self._submit_task(locals())
def video_summary(
self,
video_id: str,
prompt: str | None = None,
chapter_prompt: str | None = None,
chapters: list[Chapter] | None = None,
display_lang: str = "en",
) -> TaskRef[VideoSummaryTask, VideoSummaryTaskResult]:
"""
Summarize a video with the given video id. By default, the video will be
split into chapters. The summary of each chapter together with the summary of the whole video will be returned.
Args:
video_id: The video id.
prompt: The prompt for the video summary. If not set, a builtin prompt will be used here.
chapter_prompt: The prompt for the chapter summary. If not set, it will be the same as `prompt`.
chapters: The list of video chapters. If not set, the `chapters` will be extracted automatically.
display_lang: The language for selling_points, product name and so on
"""
return self._submit_task(locals())
def main():
rich.print(CLI(YiDong))
if __name__ == "__main__":
main()
| 16,293 | client | py | en | python | code | {"qsc_code_num_words": 1818, "qsc_code_num_chars": 16293.0, "qsc_code_mean_word_length": 5.08250825, "qsc_code_frac_words_unique": 0.19966997, "qsc_code_frac_chars_top_2grams": 0.02380952, "qsc_code_frac_chars_top_3grams": 0.01547619, "qsc_code_frac_chars_top_4grams": 0.02164502, "qsc_code_frac_chars_dupe_5grams": 0.21525974, "qsc_code_frac_chars_dupe_6grams": 0.15974026, "qsc_code_frac_chars_dupe_7grams": 0.11266234, "qsc_code_frac_chars_dupe_8grams": 0.06396104, "qsc_code_frac_chars_dupe_9grams": 0.05854978, "qsc_code_frac_chars_dupe_10grams": 0.03906926, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.003549, "qsc_code_frac_chars_whitespace": 0.32553857, "qsc_code_size_file_byte": 16293.0, "qsc_code_num_lines": 459.0, "qsc_code_num_chars_line_max": 181.0, "qsc_code_num_chars_line_mean": 35.49673203, "qsc_code_frac_chars_alphabet": 0.83729184, "qsc_code_frac_chars_comments": 0.23120358, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.25149701, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.00299401, "qsc_code_frac_chars_string_length": 0.06435685, "qsc_code_frac_chars_long_word_length": 0.01832789, "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.00217865, "qsc_code_frac_lines_assert": 0.0, "qsc_codepython_cate_ast": 1.0, "qsc_codepython_frac_lines_func_ratio": 0.09281437, "qsc_codepython_cate_var_zero": false, "qsc_codepython_frac_lines_pass": 0.0, "qsc_codepython_frac_lines_import": 0.04491018, "qsc_codepython_frac_lines_simplefunc": 0.023952095808383235, "qsc_codepython_score_lines_no_logic": 0.23652695, "qsc_codepython_frac_lines_print": 0.00598802} | 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} |
01-ai/YiDong | .github/workflows/hf.yml | name: Sync Gradio Demo
on:
push:
branches:
- main
jobs:
detect-changes:
runs-on: ubuntu-latest
outputs:
is_hf_changed: ${{ steps.changed-files.outputs.hf_any_changed }}
steps:
- name: Checkout Repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Get changed files
id: changed-files
uses: tj-actions/changed-files@v41
with:
files_yaml: |
hf:
- example/gradio/**
sync-hf:
runs-on: ubuntu-latest
needs: detect-changes
if: needs.detect-changes.outputs.is_hf_changed == 'true'
steps:
- uses: actions/checkout@v4
- name: Sync Gradio Demo
run: |
git config --global user.email "yi@01.ai"
git config --global user.name "Yi Team"
git clone https://${{ secrets.HF_USER }}:${{ secrets.HF_TOKEN }}@huggingface.co/spaces/01-ai/YiDong 01AI_HF_YIDONG
cd 01AI_HF_YIDONG
cp -r ../example/gradio/* .
git add .
git commit --dry-run || exit 0
git commit -m "Auto Sync from ${{ github.repositoryUrl}}/commit/${{ github.sha}}"
git push | 1,188 | hf | yml | en | yaml | data | {"qsc_code_num_words": 147, "qsc_code_num_chars": 1188.0, "qsc_code_mean_word_length": 4.53741497, "qsc_code_frac_words_unique": 0.4829932, "qsc_code_frac_chars_top_2grams": 0.07196402, "qsc_code_frac_chars_top_3grams": 0.04197901, "qsc_code_frac_chars_top_4grams": 0.05397301, "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.01709402, "qsc_code_frac_chars_whitespace": 0.31060606, "qsc_code_size_file_byte": 1188.0, "qsc_code_num_lines": 41.0, "qsc_code_num_chars_line_max": 126.0, "qsc_code_num_chars_line_mean": 28.97560976, "qsc_code_frac_chars_alphabet": 0.7973138, "qsc_code_frac_chars_comments": 0.0, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.15384615, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.0706476, "qsc_code_frac_chars_long_word_length": 0.02775442, "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} |
01-ai/YiDong | .github/workflows/pypi.yml | name: Release
on:
push:
tags:
- '*.*.*'
permissions:
contents: read
jobs:
pypi-publish:
name: Upload release to PyPI
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./client/py
environment:
name: pypi
url: https://pypi.org/project/yidong/
permissions:
id-token: write
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python 3.10
uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Install Poetry
run: |
curl -sSL https://install.python-poetry.org | python - -y
- name: Update PATH
run: echo "$HOME/.local/bin" >> $GITHUB_PATH
- name: Update Poetry configuration
run: poetry config virtualenvs.create false
- name: Install dependencies
run: poetry install --sync --no-interaction
- name: Package project
run: poetry build
- name: Publish package distributions to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
packages-dir: client/py/dist/ | 1,132 | pypi | yml | en | yaml | data | {"qsc_code_num_words": 131, "qsc_code_num_chars": 1132.0, "qsc_code_mean_word_length": 5.09160305, "qsc_code_frac_words_unique": 0.58778626, "qsc_code_frac_chars_top_2grams": 0.04047976, "qsc_code_frac_chars_top_3grams": 0.0, "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.01147959, "qsc_code_frac_chars_whitespace": 0.30742049, "qsc_code_size_file_byte": 1132.0, "qsc_code_num_lines": 51.0, "qsc_code_num_chars_line_max": 68.0, "qsc_code_num_chars_line_mean": 22.19607843, "qsc_code_frac_chars_alphabet": 0.83928571, "qsc_code_frac_chars_comments": 0.0, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.09756098, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.02206531, "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/levels/traps/WeakeningTrap.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.traps;
import com.shatteredpixel.shatteredpixeldungeon.Dungeon;
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.Weakness;
import com.shatteredpixel.shatteredpixeldungeon.effects.CellEmitter;
import com.shatteredpixel.shatteredpixeldungeon.effects.particles.ShadowParticle;
public class WeakeningTrap extends Trap{
{
color = GREEN;
shape = WAVES;
}
@Override
public void activate() {
if (Dungeon.level.heroFOV[ pos ]){
CellEmitter.get(pos).burst(ShadowParticle.UP, 5);
}
Char ch = Actor.findChar( pos );
if (ch != null){
if (ch.properties().contains(Char.Property.BOSS)
|| ch.properties().contains(Char.Property.MINIBOSS)){
Buff.prolong( ch, Weakness.class, Weakness.DURATION/2f );
}
Buff.prolong( ch, Weakness.class, Weakness.DURATION*2f );
}
}
}
| 1,832 | WeakeningTrap | java | en | java | code | {"qsc_code_num_words": 233, "qsc_code_num_chars": 1832.0, "qsc_code_mean_word_length": 5.96566524, "qsc_code_frac_words_unique": 0.53218884, "qsc_code_frac_chars_top_2grams": 0.09784173, "qsc_code_frac_chars_top_3grams": 0.21870504, "qsc_code_frac_chars_top_4grams": 0.22158273, "qsc_code_frac_chars_dupe_5grams": 0.39280576, "qsc_code_frac_chars_dupe_6grams": 0.18273381, "qsc_code_frac_chars_dupe_7grams": 0.06330935, "qsc_code_frac_chars_dupe_8grams": 0.06330935, "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.01279591, "qsc_code_frac_chars_whitespace": 0.14683406, "qsc_code_size_file_byte": 1832.0, "qsc_code_num_lines": 53.0, "qsc_code_num_chars_line_max": 82.0, "qsc_code_num_chars_line_mean": 34.56603774, "qsc_code_frac_chars_alphabet": 0.87651951, "qsc_code_frac_chars_comments": 0.42631004, "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.32142857, "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/rooms/standard/PlatformRoom.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.rooms.standard;
import com.shatteredpixel.shatteredpixeldungeon.levels.Level;
import com.shatteredpixel.shatteredpixeldungeon.levels.Terrain;
import com.shatteredpixel.shatteredpixeldungeon.levels.painters.Painter;
import com.watabou.utils.Random;
import com.watabou.utils.Rect;
import java.util.ArrayList;
public class PlatformRoom extends StandardRoom {
@Override
public int minWidth() {
return Math.max(super.minWidth(), 6);
}
@Override
public int minHeight() {
return Math.max(super.minHeight(), 6);
}
@Override
public float[] sizeCatProbs() {
return new float[]{6, 3, 1};
}
@Override
public void paint(Level level) {
Painter.fill( level, this, Terrain.WALL );
Painter.fill( level, this, 1, Terrain.CHASM );
ArrayList<Rect> platforms = new ArrayList<>();
splitPlatforms( new Rect(left+2, top+2, right-2, bottom-2), platforms);
for (Rect platform : platforms){
Painter.fill( level, platform.left, platform.top, platform.width()+1, platform.height()+1, Terrain.EMPTY_SP);
}
for (Door door : connected.values()) {
door.set( Door.Type.REGULAR );
Painter.drawInside(level, this, door, 2, Terrain.EMPTY_SP);
}
}
private void splitPlatforms( Rect curPlatform, ArrayList<Rect> allPlatforms ){
int curArea = (curPlatform.width()+1) * (curPlatform.height()+1);
//chance to split scales between 0% and 100% between areas of 25 and 36
if (Random.Float() < (curArea-25)/11f){
if (curPlatform.width() > curPlatform.height() ||
(curPlatform.width() == curPlatform.height() && Random.Int(2) == 0)){
//split the platform
int splitX = Random.IntRange( curPlatform.left+2, curPlatform.right-2);
splitPlatforms( new Rect( curPlatform.left, curPlatform.top, splitX-1, curPlatform.bottom) , allPlatforms);
splitPlatforms( new Rect( splitX+1, curPlatform.top, curPlatform.right, curPlatform.bottom) , allPlatforms);
//add a bridge between
int bridgeY = Random.NormalIntRange(curPlatform.top, curPlatform.bottom);
allPlatforms.add( new Rect( splitX - 1, bridgeY, splitX + 1, bridgeY));
} else {
//split the platform
int splitY = Random.IntRange( curPlatform.top+2, curPlatform.bottom-2);
splitPlatforms( new Rect( curPlatform.left, curPlatform.top, curPlatform.right, splitY-1) , allPlatforms);
splitPlatforms( new Rect( curPlatform.left, splitY+1, curPlatform.right, curPlatform.bottom) , allPlatforms);
//add a bridge between
int bridgeX = Random.NormalIntRange(curPlatform.left, curPlatform.right);
allPlatforms.add( new Rect( bridgeX, splitY-1, bridgeX, splitY+1));
}
} else {
allPlatforms.add(curPlatform);
}
}
}
| 3,531 | PlatformRoom | java | en | java | code | {"qsc_code_num_words": 443, "qsc_code_num_chars": 3531.0, "qsc_code_mean_word_length": 5.68397291, "qsc_code_frac_words_unique": 0.36568849, "qsc_code_frac_chars_top_2grams": 0.01945989, "qsc_code_frac_chars_top_3grams": 0.04169976, "qsc_code_frac_chars_top_4grams": 0.06989674, "qsc_code_frac_chars_dupe_5grams": 0.19857029, "qsc_code_frac_chars_dupe_6grams": 0.11437649, "qsc_code_frac_chars_dupe_7grams": 0.09213662, "qsc_code_frac_chars_dupe_8grams": 0.09213662, "qsc_code_frac_chars_dupe_9grams": 0.05162828, "qsc_code_frac_chars_dupe_10grams": 0.05162828, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.01980874, "qsc_code_frac_chars_whitespace": 0.17077315, "qsc_code_size_file_byte": 3531.0, "qsc_code_num_lines": 104.0, "qsc_code_num_chars_line_max": 114.0, "qsc_code_num_chars_line_mean": 33.95192308, "qsc_code_frac_chars_alphabet": 0.84016393, "qsc_code_frac_chars_comments": 0.26508071, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.10714286, "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.07142857, "qsc_codejava_score_lines_no_logic": 0.19642857, "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/levels/rooms/connection/RingTunnelRoom.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.rooms.connection;
import com.shatteredpixel.shatteredpixeldungeon.levels.Level;
import com.shatteredpixel.shatteredpixeldungeon.levels.Terrain;
import com.shatteredpixel.shatteredpixeldungeon.levels.painters.Painter;
import com.shatteredpixel.shatteredpixeldungeon.levels.rooms.connection.TunnelRoom;
import com.watabou.utils.GameMath;
import com.watabou.utils.Point;
import com.watabou.utils.Rect;
public class RingTunnelRoom extends TunnelRoom {
@Override
public int minWidth() {
return Math.max(5, super.minWidth());
}
@Override
public int minHeight() {
return Math.max(5, super.minHeight());
}
@Override
public void paint(Level level) {
super.paint(level);
int floor = level.tunnelTile();
Rect ring = getConnectionSpace();
Painter.fill( level, ring.left, ring.top, 3, 3, floor);
Painter.fill( level, ring.left+1, ring.top+1, 1, 1, Terrain.WALL);
}
//caches the value so multiple calls will always return the same.
private Rect connSpace;
@Override
protected Rect getConnectionSpace() {
if (connSpace == null) {
Point c = getDoorCenter();
c.x = (int) GameMath.gate(left + 2, c.x, right - 2);
c.y = (int) GameMath.gate(top + 2, c.y, bottom - 2);
connSpace = new Rect(c.x-1, c.y-1, c.x+1, c.y+1);
}
return connSpace;
}
}
| 2,123 | RingTunnelRoom | java | en | java | code | {"qsc_code_num_words": 297, "qsc_code_num_chars": 2123.0, "qsc_code_mean_word_length": 5.22222222, "qsc_code_frac_words_unique": 0.46464646, "qsc_code_frac_chars_top_2grams": 0.04061896, "qsc_code_frac_chars_top_3grams": 0.12250161, "qsc_code_frac_chars_top_4grams": 0.14184397, "qsc_code_frac_chars_dupe_5grams": 0.29271438, "qsc_code_frac_chars_dupe_6grams": 0.11992263, "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.01860203, "qsc_code_frac_chars_whitespace": 0.16439001, "qsc_code_size_file_byte": 2123.0, "qsc_code_num_lines": 73.0, "qsc_code_num_chars_line_max": 84.0, "qsc_code_num_chars_line_mean": 29.08219178, "qsc_code_frac_chars_alphabet": 0.85569335, "qsc_code_frac_chars_comments": 0.3984927, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.10810811, "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.10810811, "qsc_codejava_score_lines_no_logic": 0.37837838, "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/levels/rooms/connection/PerimeterRoom.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.rooms.connection;
import com.shatteredpixel.shatteredpixeldungeon.levels.Level;
import com.shatteredpixel.shatteredpixeldungeon.levels.painters.Painter;
import com.shatteredpixel.shatteredpixeldungeon.levels.rooms.Room;
import com.watabou.utils.Point;
import java.util.ArrayList;
//tunnels along the room's perimeter
public class PerimeterRoom extends ConnectionRoom {
public void paint( Level level ) {
int floor = level.tunnelTile();
fillPerimiterPaths(level, this, floor);
for (Door door : connected.values()) {
door.set( Door.Type.TUNNEL );
}
}
public static void fillPerimiterPaths( Level l, Room r, int floor ){
corners = null;
ArrayList<Point> pointsToFill = new ArrayList<>();
for (Point door : r.connected.values()) {
Point p = new Point(door);
if (p.y == r.top){
p.y++;
} else if (p.y == r.bottom) {
p.y--;
} else if (p.x == r.left){
p.x++;
} else {
p.x--;
}
pointsToFill.add( p );
}
ArrayList<Point> pointsFilled = new ArrayList<>();
pointsFilled.add(pointsToFill.remove(0));
Point from = null, to = null;
int shortestDistance;
while(!pointsToFill.isEmpty()){
shortestDistance = Integer.MAX_VALUE;
for (Point f : pointsFilled){
for (Point t : pointsToFill){
int dist = distanceBetweenPoints(r, f, t);
if (dist < shortestDistance){
from = f;
to = t;
shortestDistance = dist;
}
}
}
fillBetweenPoints(l, r, from, to, floor);
pointsFilled.add(to);
pointsToFill.remove(to);
}
}
private static int spaceBetween(int a, int b){
return Math.abs(a - b)-1;
}
//gets the path distance between two points
private static int distanceBetweenPoints(Room r, Point a, Point b){
//on the same side
if (((a.x == r.left || a.x == r.right) && a.y == b.y)
|| ((a.y == r.top || a.y == r.bottom) && a.x == b.x)){
return Math.max(spaceBetween(a.x, b.x), spaceBetween(a.y, b.y));
}
//otherwise...
//subtract 1 at the end to account for overlap
return
Math.min(spaceBetween(r.left, a.x) + spaceBetween(r.left, b.x),
spaceBetween(r.right, a.x) + spaceBetween(r.right, b.x))
+
Math.min(spaceBetween(r.top, a.y) + spaceBetween(r.top, b.y),
spaceBetween(r.bottom, a.y) + spaceBetween(r.bottom, b.y))
-
1;
}
private static Point[] corners;
//picks the smallest path to fill between two points
private static void fillBetweenPoints(Level level, Room r, Point from, Point to, int floor){
//doors are along the same side
if (((from.x == r.left+1 || from.x == r.right-1) && from.x == to.x)
|| ((from.y == r.top+1 || from.y == r.bottom-1) && from.y == to.y)){
Painter.fill(level,
Math.min(from.x, to.x),
Math.min(from.y, to.y),
spaceBetween(from.x, to.x) + 2,
spaceBetween(from.y, to.y) + 2,
floor);
return;
}
//set up corners
if (corners == null){
corners = new Point[4];
corners[0] = new Point(r.left+1, r.top+1);
corners[1] = new Point(r.right-1, r.top+1);
corners[2] = new Point(r.right-1, r.bottom-1);
corners[3] = new Point(r.left+1, r.bottom-1);
}
//doors on adjacent sides
for (Point c : corners){
if ((c.x == from.x || c.y == from.y) && (c.x == to.x || c.y == to.y)){
Painter.drawLine(level, from, c, floor);
Painter.drawLine(level, c, to, floor);
return;
}
}
//doors on opposite sides
Point side;
if (from.y == r.top+1 || from.y == r.bottom-1){
//connect along the left, or right side
if (spaceBetween(r.left, from.x) + spaceBetween(r.left, to.x) <=
spaceBetween(r.right, from.x) + spaceBetween(r.right, to.x)){
side = new Point(r.left+1, r.top + r.height()/2);
} else {
side = new Point(r.right-1, r.top + r.height()/2);
}
} else {
//connect along the top, or bottom side
if (spaceBetween(r.top, from.y) + spaceBetween(r.top, to.y) <=
spaceBetween(r.bottom, from.y) + spaceBetween(r.bottom, to.y)){
side = new Point(r.left + r.width()/2, r.top+1);
} else {
side = new Point(r.left + r.width()/2, r.bottom-1);
}
}
//treat this as two connections with adjacent sides
fillBetweenPoints(level, r, from, side, floor);
fillBetweenPoints(level, r, side, to, floor);
}
}
| 5,080 | PerimeterRoom | java | en | java | code | {"qsc_code_num_words": 755, "qsc_code_num_chars": 5080.0, "qsc_code_mean_word_length": 4.29801325, "qsc_code_frac_words_unique": 0.24635762, "qsc_code_frac_chars_top_2grams": 0.06409861, "qsc_code_frac_chars_top_3grams": 0.02218798, "qsc_code_frac_chars_top_4grams": 0.02003082, "qsc_code_frac_chars_dupe_5grams": 0.18952234, "qsc_code_frac_chars_dupe_6grams": 0.08659476, "qsc_code_frac_chars_dupe_7grams": 0.05978428, "qsc_code_frac_chars_dupe_8grams": 0.02958398, "qsc_code_frac_chars_dupe_9grams": 0.02958398, "qsc_code_frac_chars_dupe_10grams": 0.01417565, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.01245951, "qsc_code_frac_chars_whitespace": 0.21003937, "qsc_code_size_file_byte": 5080.0, "qsc_code_num_lines": 170.0, "qsc_code_num_chars_line_max": 94.0, "qsc_code_num_chars_line_mean": 29.88235294, "qsc_code_frac_chars_alphabet": 0.79616247, "qsc_code_frac_chars_comments": 0.23937008, "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.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.04385965, "qsc_codejava_score_lines_no_logic": 0.13157895, "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/levels/rooms/connection/TunnelRoom.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.rooms.connection;
import com.shatteredpixel.shatteredpixeldungeon.levels.Level;
import com.shatteredpixel.shatteredpixeldungeon.levels.painters.Painter;
import com.watabou.utils.GameMath;
import com.watabou.utils.Point;
import com.watabou.utils.PointF;
import com.watabou.utils.Random;
import com.watabou.utils.Rect;
//tunnels along the rooms center, with straight lines
public class TunnelRoom extends ConnectionRoom {
public void paint(Level level) {
int floor = level.tunnelTile();
Rect c = getConnectionSpace();
for (Door door : connected.values()) {
Point start;
Point mid;
Point end;
start = new Point(door);
if (start.x == left) start.x++;
else if (start.y == top) start.y++;
else if (start.x == right) start.x--;
else if (start.y == bottom) start.y--;
int rightShift;
int downShift;
if (start.x < c.left) rightShift = c.left - start.x;
else if (start.x > c.right) rightShift = c.right - start.x;
else rightShift = 0;
if (start.y < c.top) downShift = c.top - start.y;
else if (start.y > c.bottom) downShift = c.bottom - start.y;
else downShift = 0;
//always goes inward first
if (door.x == left || door.x == right){
mid = new Point(start.x + rightShift, start.y);
end = new Point(mid.x, mid.y + downShift);
} else {
mid = new Point(start.x, start.y + downShift);
end = new Point(mid.x + rightShift, mid.y);
}
Painter.drawLine( level, start, mid, floor );
Painter.drawLine( level, mid, end, floor );
}
for (Door door : connected.values()) {
door.set( Door.Type.TUNNEL );
}
}
//returns the space which all doors must connect to (usually 1 cell, but can be more)
//Note that, like rooms, this space is inclusive to its right and bottom sides
protected Rect getConnectionSpace(){
Point c = getDoorCenter();
return new Rect(c.x, c.y, c.x, c.y);
}
//returns a point equidistant from all doors this room has
protected final Point getDoorCenter(){
PointF doorCenter = new PointF(0, 0);
for (Door door : connected.values()) {
doorCenter.x += door.x;
doorCenter.y += door.y;
}
Point c = new Point((int)doorCenter.x / connected.size(), (int)doorCenter.y / connected.size());
if (Random.Float() < doorCenter.x % 1) c.x++;
if (Random.Float() < doorCenter.y % 1) c.y++;
c.x = (int)GameMath.gate(left+1, c.x, right-1);
c.y = (int)GameMath.gate(top+1, c.y, bottom-1);
return c;
}
}
| 3,361 | TunnelRoom | java | en | java | code | {"qsc_code_num_words": 485, "qsc_code_num_chars": 3361.0, "qsc_code_mean_word_length": 4.61030928, "qsc_code_frac_words_unique": 0.33608247, "qsc_code_frac_chars_top_2grams": 0.02683363, "qsc_code_frac_chars_top_3grams": 0.03577818, "qsc_code_frac_chars_top_4grams": 0.04695886, "qsc_code_frac_chars_dupe_5grams": 0.19007156, "qsc_code_frac_chars_dupe_6grams": 0.07021467, "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.01060606, "qsc_code_frac_chars_whitespace": 0.21451949, "qsc_code_size_file_byte": 3361.0, "qsc_code_num_lines": 108.0, "qsc_code_num_chars_line_max": 99.0, "qsc_code_num_chars_line_mean": 31.12037037, "qsc_code_frac_chars_alphabet": 0.83636364, "qsc_code_frac_chars_comments": 0.32163047, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.04918033, "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.03278689, "qsc_codejava_score_lines_no_logic": 0.26229508, "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/levels/rooms/connection/RingBridgeRoom.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.rooms.connection;
import com.shatteredpixel.shatteredpixeldungeon.levels.Level;
import com.shatteredpixel.shatteredpixeldungeon.levels.Terrain;
import com.shatteredpixel.shatteredpixeldungeon.levels.painters.Painter;
import com.shatteredpixel.shatteredpixeldungeon.levels.rooms.Room;
import com.watabou.utils.Rect;
public class RingBridgeRoom extends RingTunnelRoom {
@Override
public void paint(Level level) {
Painter.fill(level, this, 1, Terrain.CHASM);
super.paint(level);
for (Room r : neigbours){
if (r instanceof BridgeRoom || r instanceof RingBridgeRoom || r instanceof WalkwayRoom){
Rect i = intersect(r);
if (i.width() != 0){
i.left++;
i.right--;
} else {
i.top++;
i.bottom--;
}
Painter.fill(level, i.left, i.top, i.width()+1, i.height()+1, Terrain.CHASM);
}
}
}
}
| 1,675 | RingBridgeRoom | java | en | java | code | {"qsc_code_num_words": 226, "qsc_code_num_chars": 1675.0, "qsc_code_mean_word_length": 5.39380531, "qsc_code_frac_words_unique": 0.53097345, "qsc_code_frac_chars_top_2grams": 0.06972929, "qsc_code_frac_chars_top_3grams": 0.15586546, "qsc_code_frac_chars_top_4grams": 0.1804758, "qsc_code_frac_chars_dupe_5grams": 0.27563577, "qsc_code_frac_chars_dupe_6grams": 0.04593929, "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.01517341, "qsc_code_frac_chars_whitespace": 0.17373134, "qsc_code_size_file_byte": 1675.0, "qsc_code_num_lines": 52.0, "qsc_code_num_chars_line_max": 92.0, "qsc_code_num_chars_line_mean": 32.21153846, "qsc_code_frac_chars_alphabet": 0.86560694, "qsc_code_frac_chars_comments": 0.46626866, "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.03846154, "qsc_codejava_score_lines_no_logic": 0.26923077, "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/levels/rooms/connection/ConnectionRoom.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.rooms.connection;
import com.shatteredpixel.shatteredpixeldungeon.Dungeon;
import com.shatteredpixel.shatteredpixeldungeon.levels.rooms.Room;
import com.watabou.utils.Point;
import com.watabou.utils.Random;
import com.watabou.utils.Reflection;
import java.util.ArrayList;
public abstract class ConnectionRoom extends Room {
@Override
public int minWidth() { return 3; }
public int maxWidth() { return 10; }
@Override
public int minHeight() { return 3; }
public int maxHeight() { return 10; }
@Override
public int minConnections(int direction) {
if (direction == ALL) return 2;
else return 0;
}
@Override
public boolean canPlaceTrap(Point p) {
//traps cannot appear in connection rooms on floor 1
return super.canPlaceTrap(p) && Dungeon.depth > 1;
}
//FIXME this is a very messy way of handing variable connection rooms
private static ArrayList<Class<?extends ConnectionRoom>> rooms = new ArrayList<>();
static {
rooms.add(TunnelRoom.class);
rooms.add(BridgeRoom.class);
rooms.add(PerimeterRoom.class);
rooms.add(WalkwayRoom.class);
rooms.add(RingTunnelRoom.class);
rooms.add(RingBridgeRoom.class);
}
private static float[][] chances = new float[27][];
static {
chances[1] = new float[]{20, 1, 0, 2, 2, 1};
chances[4] = chances[3] = chances[2] = chances[1];
chances[5] = new float[]{20, 0, 0, 0, 0, 0};
chances[6] = new float[]{0, 0, 22, 3, 0, 0};
chances[10] = chances[9] = chances[8] = chances[7] = chances[6];
chances[11] = new float[]{12, 0, 0, 5, 5, 3};
chances[15] = chances[14] = chances[13] = chances[12] = chances[11];
chances[16] = new float[]{0, 0, 18, 3, 3, 1};
chances[20] = chances[19] = chances[18] = chances[17] = chances[16];
chances[21] = chances[5];
chances[22] = new float[]{15, 4, 0, 2, 3, 2};
chances[26] = chances[25] = chances[24] = chances[23] = chances[22];
}
public static ConnectionRoom createRoom(){
return Reflection.newInstance(rooms.get(Random.chances(chances[Dungeon.depth])));
}
}
| 2,937 | ConnectionRoom | java | en | java | code | {"qsc_code_num_words": 403, "qsc_code_num_chars": 2937.0, "qsc_code_mean_word_length": 4.96029777, "qsc_code_frac_words_unique": 0.41687345, "qsc_code_frac_chars_top_2grams": 0.008004, "qsc_code_frac_chars_top_3grams": 0.03251626, "qsc_code_frac_chars_top_4grams": 0.02851426, "qsc_code_frac_chars_dupe_5grams": 0.11505753, "qsc_code_frac_chars_dupe_6grams": 0.02801401, "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.05211864, "qsc_code_frac_chars_whitespace": 0.19645897, "qsc_code_size_file_byte": 2937.0, "qsc_code_num_lines": 91.0, "qsc_code_num_chars_line_max": 85.0, "qsc_code_num_chars_line_mean": 32.27472527, "qsc_code_frac_chars_alphabet": 0.79491525, "qsc_code_frac_chars_comments": 0.3071161, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.11764706, "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.01098901, "qsc_code_frac_lines_assert": 0.0, "qsc_codejava_cate_var_zero": 1.0, "qsc_codejava_frac_lines_func_ratio": 0.1372549, "qsc_codejava_score_lines_no_logic": 0.2745098, "qsc_codejava_frac_words_no_modifier": 0.875, "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": 1, "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/levels/rooms/connection/BridgeRoom.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.rooms.connection;
import com.shatteredpixel.shatteredpixeldungeon.levels.Level;
import com.shatteredpixel.shatteredpixeldungeon.levels.Terrain;
import com.shatteredpixel.shatteredpixeldungeon.levels.painters.Painter;
import com.shatteredpixel.shatteredpixeldungeon.levels.rooms.Room;
import com.watabou.utils.Rect;
public class BridgeRoom extends TunnelRoom {
@Override
public void paint(Level level) {
if (Math.min(width(), height()) > 3) {
Painter.fill(level, this, 1, Terrain.CHASM);
}
super.paint(level);
for (Room r : neigbours){
if (r instanceof BridgeRoom || r instanceof RingBridgeRoom || r instanceof WalkwayRoom){
Rect i = intersect(r);
if (i.width() != 0){
i.left++;
i.right--;
} else {
i.top++;
i.bottom--;
}
Painter.fill(level, i.left, i.top, i.width()+1, i.height()+1, Terrain.CHASM);
}
}
}
}
| 1,721 | BridgeRoom | java | en | java | code | {"qsc_code_num_words": 232, "qsc_code_num_chars": 1721.0, "qsc_code_mean_word_length": 5.31034483, "qsc_code_frac_words_unique": 0.52586207, "qsc_code_frac_chars_top_2grams": 0.06899351, "qsc_code_frac_chars_top_3grams": 0.15422078, "qsc_code_frac_chars_top_4grams": 0.17857143, "qsc_code_frac_chars_dupe_5grams": 0.27272727, "qsc_code_frac_chars_dupe_6grams": 0.04545455, "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.01560284, "qsc_code_frac_chars_whitespace": 0.18070889, "qsc_code_size_file_byte": 1721.0, "qsc_code_num_lines": 55.0, "qsc_code_num_chars_line_max": 92.0, "qsc_code_num_chars_line_mean": 31.29090909, "qsc_code_frac_chars_alphabet": 0.85815603, "qsc_code_frac_chars_comments": 0.45380593, "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.25, "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/levels/rooms/connection/MazeConnectionRoom.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.rooms.connection;
import com.shatteredpixel.shatteredpixeldungeon.levels.Level;
import com.shatteredpixel.shatteredpixeldungeon.levels.Terrain;
import com.shatteredpixel.shatteredpixeldungeon.levels.features.Maze;
import com.shatteredpixel.shatteredpixeldungeon.levels.painters.Painter;
public class MazeConnectionRoom extends ConnectionRoom {
@Override
public void paint(Level level) {
Painter.fill(level, this, 1, Terrain.EMPTY);
//true = space, false = wall
Maze.allowDiagonals = false;
boolean[][] maze = Maze.generate(this);
Painter.fill(level, this, 1, Terrain.EMPTY);
for (int x = 0; x < maze.length; x++)
for (int y = 0; y < maze[0].length; y++) {
if (maze[x][y] == Maze.FILLED) {
Painter.fill(level, x + left, y + top, 1, 1, Terrain.WALL);
}
}
for (Door door : connected.values()) {
door.set( Door.Type.HIDDEN );
}
}
@Override
public int maxConnections(int direction) {
return 2;
}
}
| 1,793 | MazeConnectionRoom | java | en | java | code | {"qsc_code_num_words": 243, "qsc_code_num_chars": 1793.0, "qsc_code_mean_word_length": 5.31687243, "qsc_code_frac_words_unique": 0.52263374, "qsc_code_frac_chars_top_2grams": 0.06578947, "qsc_code_frac_chars_top_3grams": 0.14705882, "qsc_code_frac_chars_top_4grams": 0.17027864, "qsc_code_frac_chars_dupe_5grams": 0.26934985, "qsc_code_frac_chars_dupe_6grams": 0.09442724, "qsc_code_frac_chars_dupe_7grams": 0.05108359, "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.01694915, "qsc_code_frac_chars_whitespace": 0.17735639, "qsc_code_size_file_byte": 1793.0, "qsc_code_num_lines": 56.0, "qsc_code_num_chars_line_max": 74.0, "qsc_code_num_chars_line_mean": 32.01785714, "qsc_code_frac_chars_alphabet": 0.85898305, "qsc_code_frac_chars_comments": 0.45119911, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.14814815, "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.07407407, "qsc_codejava_score_lines_no_logic": 0.2962963, "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": 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": 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/levels/features/Maze.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.features;
import com.shatteredpixel.shatteredpixeldungeon.levels.rooms.Room;
import com.watabou.utils.Random;
import com.watabou.utils.Rect;
public class Maze {
public static boolean EMPTY = false;
public static boolean FILLED = true;
public static boolean[][] generate(Room r){
boolean[][] maze = new boolean[r.width()][r.height()];
for (int x = 0; x < maze.length; x++) {
for (int y = 0; y < maze[0].length; y++) {
if (x == 0 || x == maze.length - 1 ||
y == 0 || y == maze[0].length - 1) {
maze[x][y] = FILLED;
}
}
}
//set spaces where there are doors
for (Room.Door d : r.connected.values()) {
maze[d.x - r.left][d.y - r.top] = EMPTY;
}
return generate(maze);
}
public static boolean[][] generate(Rect r){
return generate(r.width()+1, r.height()+1);
}
public static boolean[][] generate(Rect r, int[] terrain, int width, int filledTerrainType){
boolean[][] maze = new boolean[r.width()][r.height()];
for (int x = 0; x < maze.length; x++) {
for (int y = 0; y < maze[0].length; y++) {
if (terrain[x + r.left + (y + r.top)*width] == filledTerrainType){
maze[x][y] = FILLED;
}
}
}
return generate(maze);
}
public static boolean[][] generate(int width, int height){
return generate(new boolean[width][height]);
}
public static boolean[][] generate(boolean[][] maze){
int fails = 0;
int x, y, moves;
int[] mov;
while (fails < 2500) {
//find a random wall point
do {
x = Random.Int(maze.length);
y = Random.Int(maze[0].length);
} while (!maze[x][y]);
//decide on how we're going to move
mov = decideDirection(maze, x, y);
if (mov == null) {
fails++;
} else {
fails = 0;
moves = 0;
do {
x += mov[0];
y += mov[1];
maze[x][y] = FILLED;
moves++;
} while (Random.Int(moves) == 0 && checkValidMove(maze, x, y, mov));
}
}
return maze;
}
private static int[] decideDirection(boolean[][] maze, int x, int y){
//attempts to move up
if (Random.Int(4) == 0 && //1 in 4 chance
checkValidMove(maze, x, y, new int[]{0, -1})){
return new int[]{0, -1};
}
//attempts to move right
if (Random.Int(3) == 0 && //1 in 3 chance
checkValidMove(maze, x, y, new int[]{1, 0})){
return new int[]{1, 0};
}
//attempts to move down
if (Random.Int(2) == 0 && //1 in 2 chance
checkValidMove(maze, x, y, new int[]{0, 1})){
return new int[]{0, 1};
}
//attempts to move left
if (
checkValidMove(maze, x, y, new int[]{-1, 0})){
return new int[]{-1, 0};
}
return null;
}
public static boolean allowDiagonals = false;
private static boolean checkValidMove( boolean[][] maze, int x, int y, int[] mov){
int sideX = 1 - Math.abs(mov[0]);
int sideY = 1 - Math.abs(mov[1]);
x += mov[0];
y += mov[1];
if ( x <= 0 || x >= maze.length-1 || y <= 0 || y >= maze[0].length-1){
return false;
} else if (maze[x][y] || maze[x + sideX][y + sideY] || maze[x - sideX][y - sideY]){
return false;
}
x += mov[0];
y += mov[1];
if ( x <= 0 || x >= maze.length-1 || y <= 0 || y >= maze[0].length-1){
return false;
} else if (maze[x][y]){
return false;
} else if (!allowDiagonals && (maze[x + sideX][y + sideY] || maze[x - sideX][y - sideY])){
return false;
}
return true;
}
}
| 4,226 | Maze | java | en | java | code | {"qsc_code_num_words": 623, "qsc_code_num_chars": 4226.0, "qsc_code_mean_word_length": 4.00642055, "qsc_code_frac_words_unique": 0.25521669, "qsc_code_frac_chars_top_2grams": 0.03205128, "qsc_code_frac_chars_top_3grams": 0.02884615, "qsc_code_frac_chars_top_4grams": 0.05408654, "qsc_code_frac_chars_dupe_5grams": 0.35977564, "qsc_code_frac_chars_dupe_6grams": 0.33733974, "qsc_code_frac_chars_dupe_7grams": 0.28084936, "qsc_code_frac_chars_dupe_8grams": 0.24238782, "qsc_code_frac_chars_dupe_9grams": 0.24238782, "qsc_code_frac_chars_dupe_10grams": 0.24238782, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.02723857, "qsc_code_frac_chars_whitespace": 0.24420256, "qsc_code_size_file_byte": 4226.0, "qsc_code_num_lines": 167.0, "qsc_code_num_chars_line_max": 94.0, "qsc_code_num_chars_line_mean": 25.30538922, "qsc_code_frac_chars_alphabet": 0.75422668, "qsc_code_frac_chars_comments": 0.23946995, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.24528302, "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.04716981, "qsc_codejava_score_lines_no_logic": 0.16037736, "qsc_codejava_frac_words_no_modifier": 0.16666667, "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/features/Chasm.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.features;
import com.shatteredpixel.shatteredpixeldungeon.Assets;
import com.shatteredpixel.shatteredpixeldungeon.Badges;
import com.shatteredpixel.shatteredpixeldungeon.Dungeon;
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.hero.Hero;
import com.shatteredpixel.shatteredpixeldungeon.actors.mobs.Mob;
import com.shatteredpixel.shatteredpixeldungeon.items.artifacts.TimekeepersHourglass;
import com.shatteredpixel.shatteredpixeldungeon.items.spells.FeatherFall;
import com.shatteredpixel.shatteredpixeldungeon.levels.RegularLevel;
import com.shatteredpixel.shatteredpixeldungeon.levels.rooms.Room;
import com.shatteredpixel.shatteredpixeldungeon.levels.rooms.special.WeakFloorRoom;
import com.shatteredpixel.shatteredpixeldungeon.messages.Messages;
import com.shatteredpixel.shatteredpixeldungeon.plants.Swiftthistle;
import com.shatteredpixel.shatteredpixeldungeon.scenes.GameScene;
import com.shatteredpixel.shatteredpixeldungeon.scenes.InterlevelScene;
import com.shatteredpixel.shatteredpixeldungeon.sprites.MobSprite;
import com.shatteredpixel.shatteredpixeldungeon.utils.GLog;
import com.shatteredpixel.shatteredpixeldungeon.windows.WndOptions;
import com.watabou.noosa.Camera;
import com.watabou.noosa.Game;
import com.watabou.noosa.audio.Sample;
import com.watabou.utils.Callback;
import com.watabou.utils.Random;
public class Chasm {
public static boolean jumpConfirmed = false;
public static void heroJump( final Hero hero ) {
Game.runOnRenderThread(new Callback() {
@Override
public void call() {
GameScene.show(
new WndOptions( Messages.get(Chasm.class, "chasm"),
Messages.get(Chasm.class, "jump"),
Messages.get(Chasm.class, "yes"),
Messages.get(Chasm.class, "no") ) {
@Override
protected void onSelect( int index ) {
if (index == 0) {
jumpConfirmed = true;
hero.resume();
}
}
}
);
}
});
}
public static void heroFall( int pos ) {
jumpConfirmed = false;
Sample.INSTANCE.play( Assets.SND_FALLING );
Buff buff = Dungeon.hero.buff(TimekeepersHourglass.timeFreeze.class);
if (buff != null) buff.detach();
buff = Dungeon.hero.buff(Swiftthistle.TimeBubble.class);
if (buff != null) buff.detach();
if (Dungeon.hero.isAlive()) {
Dungeon.hero.interrupt();
InterlevelScene.mode = InterlevelScene.Mode.FALL;
if (Dungeon.level instanceof RegularLevel) {
Room room = ((RegularLevel)Dungeon.level).room( pos );
InterlevelScene.fallIntoPit = room != null && room instanceof WeakFloorRoom;
} else {
InterlevelScene.fallIntoPit = false;
}
Game.switchScene( InterlevelScene.class );
} else {
Dungeon.hero.sprite.visible = false;
}
}
public static void heroLand() {
Hero hero = Dungeon.hero;
FeatherFall.FeatherBuff b = hero.buff(FeatherFall.FeatherBuff.class);
if (b != null){
//TODO visuals
b.detach();
return;
}
Camera.main.shake( 4, 1f );
Dungeon.level.occupyCell(hero );
Buff.prolong( hero, Cripple.class, Cripple.DURATION );
//The lower the hero's HP, the more bleed and the less upfront damage.
//Hero has a 50% chance to bleed out at 66% HP, and begins to risk instant-death at 25%
Buff.affect( hero, FallBleed.class).set( Math.round(hero.HT / (6f + (6f*(hero.HP/(float)hero.HT)))));
hero.damage( Math.max( hero.HP / 2, Random.NormalIntRange( hero.HP / 2, hero.HT / 4 )), new Hero.Doom() {
@Override
public void onDeath() {
Badges.validateDeathFromFalling();
Dungeon.fail( Chasm.class );
GLog.n( Messages.get(Chasm.class, "ondeath") );
}
} );
}
public static void mobFall( Mob mob ) {
if (mob.isAlive()) mob.die( Chasm.class );
((MobSprite)mob.sprite).fall();
}
public static class Falling extends Buff {
{
actPriority = VFX_PRIO;
}
@Override
public boolean act() {
heroLand();
detach();
return true;
}
}
public static class FallBleed extends Bleeding implements Hero.Doom {
@Override
public void onDeath() {
Badges.validateDeathFromFalling();
}
}
}
| 5,127 | Chasm | java | en | java | code | {"qsc_code_num_words": 598, "qsc_code_num_chars": 5127.0, "qsc_code_mean_word_length": 6.26254181, "qsc_code_frac_words_unique": 0.37792642, "qsc_code_frac_chars_top_2grams": 0.06008011, "qsc_code_frac_chars_top_3grams": 0.21308411, "qsc_code_frac_chars_top_4grams": 0.23497997, "qsc_code_frac_chars_dupe_5grams": 0.235247, "qsc_code_frac_chars_dupe_6grams": 0.13538051, "qsc_code_frac_chars_dupe_7grams": 0.03364486, "qsc_code_frac_chars_dupe_8grams": 0.03364486, "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.00721601, "qsc_code_frac_chars_whitespace": 0.16208309, "qsc_code_size_file_byte": 5127.0, "qsc_code_num_lines": 159.0, "qsc_code_num_chars_line_max": 108.0, "qsc_code_num_chars_line_mean": 32.24528302, "qsc_code_frac_chars_alphabet": 0.86452514, "qsc_code_frac_chars_comments": 0.18568364, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.13392857, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.00502994, "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.00628931, "qsc_code_frac_lines_assert": 0.0, "qsc_codejava_cate_var_zero": 0.0, "qsc_codejava_frac_lines_func_ratio": 0.08928571, "qsc_codejava_score_lines_no_logic": 0.33928571, "qsc_codejava_frac_words_no_modifier": 0.81818182, "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/features/Door.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.features;
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.levels.Level;
import com.shatteredpixel.shatteredpixeldungeon.levels.Terrain;
import com.shatteredpixel.shatteredpixeldungeon.scenes.GameScene;
import com.watabou.noosa.audio.Sample;
public class Door {
public static void enter( int pos ) {
Level.set( pos, Terrain.OPEN_DOOR );
GameScene.updateMap( pos );
if (Dungeon.level.heroFOV[pos]) {
Dungeon.observe();
Sample.INSTANCE.play( Assets.SND_OPEN );
}
}
public static void leave( int pos ) {
int chars = 0;
for (Char ch : Actor.chars()){
if (ch.pos == pos) chars++;
}
//door does not shut if anything else is also on it
if (Dungeon.level.heaps.get( pos ) == null && chars <= 1) {
Level.set( pos, Terrain.DOOR );
GameScene.updateMap( pos );
if (Dungeon.level.heroFOV[pos])
Dungeon.observe();
}
}
}
| 1,936 | Door | java | en | java | code | {"qsc_code_num_words": 258, "qsc_code_num_chars": 1936.0, "qsc_code_mean_word_length": 5.54651163, "qsc_code_frac_words_unique": 0.48837209, "qsc_code_frac_chars_top_2grams": 0.09503843, "qsc_code_frac_chars_top_3grams": 0.21243885, "qsc_code_frac_chars_top_4grams": 0.2152341, "qsc_code_frac_chars_dupe_5grams": 0.2851153, "qsc_code_frac_chars_dupe_6grams": 0.12718379, "qsc_code_frac_chars_dupe_7grams": 0.08805031, "qsc_code_frac_chars_dupe_8grams": 0.08805031, "qsc_code_frac_chars_dupe_9grams": 0.08805031, "qsc_code_frac_chars_dupe_10grams": 0.08805031, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.01173564, "qsc_code_frac_chars_whitespace": 0.16373967, "qsc_code_size_file_byte": 1936.0, "qsc_code_num_lines": 59.0, "qsc_code_num_chars_line_max": 72.0, "qsc_code_num_chars_line_mean": 32.81355932, "qsc_code_frac_chars_alphabet": 0.8721433, "qsc_code_frac_chars_comments": 0.42975207, "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.06451613, "qsc_codejava_score_lines_no_logic": 0.35483871, "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} | 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/rooms/Room.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.rooms;
import com.shatteredpixel.shatteredpixeldungeon.levels.Level;
import com.watabou.utils.Bundlable;
import com.watabou.utils.Bundle;
import com.watabou.utils.Graph;
import com.watabou.utils.Point;
import com.watabou.utils.Random;
import com.watabou.utils.Rect;
import java.util.ArrayList;
import java.util.Collection;
import java.util.LinkedHashMap;
public abstract class Room extends Rect implements Graph.Node, Bundlable {
public ArrayList<Room> neigbours = new ArrayList<>();
public LinkedHashMap<Room, Door> connected = new LinkedHashMap<>();
public int distance;
public int price = 1;
public Room(){
super();
}
public Room( Rect other ){
super(other);
}
public Room set( Room other ) {
super.set( other );
for (Room r : other.neigbours){
neigbours.add(r);
r.neigbours.remove(other);
r.neigbours.add(this);
}
for (Room r : other.connected.keySet()){
Door d = other.connected.get(r);
r.connected.remove(other);
r.connected.put(this, d);
connected.put(r, d);
}
return this;
}
// **** Spatial logic ****
//Note: when overriding these YOU MUST store any randomly decided values.
//With the same room and the same parameters these should always return
//the same value over multiple calls, even if there's some randomness initially.
public int minWidth(){
return -1;
}
public int maxWidth() { return -1; }
public int minHeight() { return -1; }
public int maxHeight() { return -1; }
public boolean setSize(){
return setSize(minWidth(), maxWidth(), minHeight(), maxHeight());
}
public boolean forceSize( int w, int h ){
return setSize( w, w, h, h );
}
public boolean setSizeWithLimit( int w, int h ){
if ( w < minWidth() || h < minHeight()) {
return false;
} else {
setSize();
if (width() > w || height() > h){
resize(Math.min(width(), w)-1, Math.min(height(), h)-1);
}
return true;
}
}
protected boolean setSize(int minW, int maxW, int minH, int maxH) {
if (minW < minWidth()
|| maxW > maxWidth()
|| minH < minHeight()
|| maxH > maxHeight()
|| minW > maxW
|| minH > maxH){
return false;
} else {
//subtract one because rooms are inclusive to their right and bottom sides
resize(Random.NormalIntRange(minW, maxW) - 1,
Random.NormalIntRange(minH, maxH) - 1);
return true;
}
}
//Width and height are increased by 1 because rooms are inclusive to their right and bottom sides
@Override
public int width() {
return super.width()+1;
}
@Override
public int height() {
return super.height()+1;
}
public Point random() {
return random( 1 );
}
public Point random( int m ) {
return new Point( Random.IntRange( left + m, right - m ),
Random.IntRange( top + m, bottom - m ));
}
//a point is only considered to be inside if it is within the 1 tile perimeter
public boolean inside( Point p ) {
return p.x > left && p.y > top && p.x < right && p.y < bottom;
}
public Point center() {
return new Point(
(left + right) / 2 + (((right - left) % 2) == 1 ? Random.Int( 2 ) : 0),
(top + bottom) / 2 + (((bottom - top) % 2) == 1 ? Random.Int( 2 ) : 0) );
}
// **** Connection logic ****
public static final int ALL = 0;
public static final int LEFT = 1;
public static final int TOP = 2;
public static final int RIGHT = 3;
public static final int BOTTOM = 4;
public int minConnections(int direction){
if (direction == ALL) return 1;
else return 0;
}
public int curConnections(int direction){
if (direction == ALL) {
return connected.size();
} else {
int total = 0;
for (Room r : connected.keySet()){
Rect i = intersect( r );
if (direction == LEFT && i.width() == 0 && i.left == left) total++;
else if (direction == TOP && i.height() == 0 && i.top == top) total++;
else if (direction == RIGHT && i.width() == 0 && i.right == right) total++;
else if (direction == BOTTOM && i.height() == 0 && i.bottom == bottom) total++;
}
return total;
}
}
public int remConnections(int direction){
if (curConnections(ALL) >= maxConnections(ALL)) return 0;
else return maxConnections(direction) - curConnections(direction);
}
public int maxConnections(int direction){
if (direction == ALL) return 16;
else return 4;
}
//only considers point-specific limits, not direction limits
public boolean canConnect(Point p){
//point must be along exactly one edge, no corners.
return (p.x == left || p.x == right) != (p.y == top || p.y == bottom);
}
//only considers direction limits, not point-specific limits
public boolean canConnect(int direction){
return remConnections(direction) > 0;
}
//considers both direction and point limits
public boolean canConnect( Room r ){
Rect i = intersect( r );
boolean foundPoint = false;
for (Point p : i.getPoints()){
if (canConnect(p) && r.canConnect(p)){
foundPoint = true;
break;
}
}
if (!foundPoint) return false;
if (i.width() == 0 && i.left == left)
return canConnect(LEFT) && r.canConnect(LEFT);
else if (i.height() == 0 && i.top == top)
return canConnect(TOP) && r.canConnect(TOP);
else if (i.width() == 0 && i.right == right)
return canConnect(RIGHT) && r.canConnect(RIGHT);
else if (i.height() == 0 && i.bottom == bottom)
return canConnect(BOTTOM) && r.canConnect(BOTTOM);
else
return false;
}
public boolean addNeigbour( Room other ) {
if (neigbours.contains(other))
return true;
Rect i = intersect( other );
if ((i.width() == 0 && i.height() >= 2) ||
(i.height() == 0 && i.width() >= 2)) {
neigbours.add( other );
other.neigbours.add( this );
return true;
}
return false;
}
public boolean connect( Room room ) {
if ((neigbours.contains(room) || addNeigbour(room))
&& !connected.containsKey( room ) && canConnect(room)) {
connected.put( room, null );
room.connected.put( this, null );
return true;
}
return false;
}
public void clearConnections(){
for (Room r : neigbours){
r.neigbours.remove(this);
}
neigbours.clear();
for (Room r : connected.keySet()){
r.connected.remove(this);
}
connected.clear();
}
// **** Painter Logic ****
public abstract void paint(Level level);
//whether or not a painter can make its own modifications to a specific point
public boolean canPlaceWater(Point p){
return inside(p);
}
public final ArrayList<Point> waterPlaceablePoints(){
ArrayList<Point> points = new ArrayList<>();
for (int i = left; i <= right; i++) {
for (int j = top; j <= bottom; j++) {
Point p = new Point(i, j);
if (canPlaceWater(p)) points.add(p);
}
}
return points;
}
//whether or not a painter can make place grass at a specific point
public boolean canPlaceGrass(Point p){
return inside(p);
}
public final ArrayList<Point> grassPlaceablePoints(){
ArrayList<Point> points = new ArrayList<>();
for (int i = left; i <= right; i++) {
for (int j = top; j <= bottom; j++) {
Point p = new Point(i, j);
if (canPlaceGrass(p)) points.add(p);
}
}
return points;
}
//whether or not a painter can place a trap at a specific point
public boolean canPlaceTrap(Point p){
return inside(p);
}
public final ArrayList<Point> trapPlaceablePoints(){
ArrayList<Point> points = new ArrayList<>();
for (int i = left; i <= right; i++) {
for (int j = top; j <= bottom; j++) {
Point p = new Point(i, j);
if (canPlaceTrap(p)) points.add(p);
}
}
return points;
}
//whether or not a character (usually spawned) can be placed here
public boolean canPlaceCharacter(Point p, Level l){
return inside(p);
}
public final ArrayList<Point> charPlaceablePoints(Level l){
ArrayList<Point> points = new ArrayList<>();
for (int i = left; i <= right; i++) {
for (int j = top; j <= bottom; j++) {
Point p = new Point(i, j);
if (canPlaceCharacter(p, l)) points.add(p);
}
}
return points;
}
// **** Graph.Node interface ****
@Override
public int distance() {
return distance;
}
@Override
public void distance( int value ) {
distance = value;
}
@Override
public int price() {
return price;
}
@Override
public void price( int value ) {
price = value;
}
@Override
public Collection<Room> edges() {
ArrayList<Room> edges = new ArrayList<>();
for( Room r : connected.keySet()){
Door d = connected.get(r);
//for the purposes of path building, ignore all doors that are locked, blocked, or hidden
if (d.type == Door.Type.EMPTY || d.type == Door.Type.TUNNEL
|| d.type == Door.Type.UNLOCKED || d.type == Door.Type.REGULAR){
edges.add(r);
}
}
return edges;
}
@Override
public void storeInBundle( Bundle bundle ) {
bundle.put( "left", left );
bundle.put( "top", top );
bundle.put( "right", right );
bundle.put( "bottom", bottom );
}
@Override
public void restoreFromBundle( Bundle bundle ) {
left = bundle.getInt( "left" );
top = bundle.getInt( "top" );
right = bundle.getInt( "right" );
bottom = bundle.getInt( "bottom" );
}
//FIXME currently connections and neighbours are not preserved on load
public void onLevelLoad( Level level ){
//does nothing by default
}
public static class Door extends Point implements Bundlable {
public enum Type {
EMPTY, TUNNEL, REGULAR, UNLOCKED, HIDDEN, BARRICADE, LOCKED
}
public Type type = Type.EMPTY;
public Door(){
}
public Door( Point p ){
super(p);
}
public Door( int x, int y ) {
super( x, y );
}
public void set( Type type ) {
if (type.compareTo( this.type ) > 0) {
this.type = type;
}
}
@Override
public void storeInBundle(Bundle bundle) {
bundle.put("x", x);
bundle.put("y", y);
bundle.put("type", type);
}
@Override
public void restoreFromBundle(Bundle bundle) {
x = bundle.getInt("x");
y = bundle.getInt("y");
type = bundle.getEnum("type", Type.class);
}
}
} | 10,873 | Room | java | en | java | code | {"qsc_code_num_words": 1430, "qsc_code_num_chars": 10873.0, "qsc_code_mean_word_length": 4.84615385, "qsc_code_frac_words_unique": 0.2048951, "qsc_code_frac_chars_top_2grams": 0.01818182, "qsc_code_frac_chars_top_3grams": 0.01385281, "qsc_code_frac_chars_top_4grams": 0.01818182, "qsc_code_frac_chars_dupe_5grams": 0.23520924, "qsc_code_frac_chars_dupe_6grams": 0.1961039, "qsc_code_frac_chars_dupe_7grams": 0.12655123, "qsc_code_frac_chars_dupe_8grams": 0.11659452, "qsc_code_frac_chars_dupe_9grams": 0.1015873, "qsc_code_frac_chars_dupe_10grams": 0.08253968, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.00795441, "qsc_code_frac_chars_whitespace": 0.2253288, "qsc_code_size_file_byte": 10873.0, "qsc_code_num_lines": 425.0, "qsc_code_num_chars_line_max": 99.0, "qsc_code_num_chars_line_mean": 25.58352941, "qsc_code_frac_chars_alphabet": 0.81479283, "qsc_code_frac_chars_comments": 0.18743677, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.18037975, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.00543232, "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.00235294, "qsc_code_frac_lines_assert": 0.0, "qsc_codejava_cate_var_zero": 0.0, "qsc_codejava_frac_lines_func_ratio": 0.16139241, "qsc_codejava_score_lines_no_logic": 0.25949367, "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/levels/rooms/MazeRoom.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.rooms;
import com.shatteredpixel.shatteredpixeldungeon.levels.Level;
import com.shatteredpixel.shatteredpixeldungeon.levels.Terrain;
import com.shatteredpixel.shatteredpixeldungeon.levels.features.Maze;
import com.shatteredpixel.shatteredpixeldungeon.levels.painters.Painter;
//TODO figure out where this should go, tunnel room type perhaps?
public class MazeRoom extends Room {
public void paint( Level level ) {
Painter.fill(level, this, 1, Terrain.EMPTY);
//true = space, false = wall
Maze.allowDiagonals = false;
boolean[][] maze = Maze.generate(this);
Painter.fill(level, this, 1, Terrain.EMPTY);
for (int x = 0; x < maze.length; x++)
for (int y = 0; y < maze[0].length; y++) {
if (maze[x][y] == Maze.FILLED) {
Painter.fill(level, x + left, y + top, 1, 1, Terrain.WALL);
}
}
}
}
| 1,661 | MazeRoom | java | en | java | code | {"qsc_code_num_words": 234, "qsc_code_num_chars": 1661.0, "qsc_code_mean_word_length": 5.16239316, "qsc_code_frac_words_unique": 0.52564103, "qsc_code_frac_chars_top_2grams": 0.07036424, "qsc_code_frac_chars_top_3grams": 0.15728477, "qsc_code_frac_chars_top_4grams": 0.18211921, "qsc_code_frac_chars_dupe_5grams": 0.28807947, "qsc_code_frac_chars_dupe_6grams": 0.10099338, "qsc_code_frac_chars_dupe_7grams": 0.05463576, "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.01747997, "qsc_code_frac_chars_whitespace": 0.17338952, "qsc_code_size_file_byte": 1661.0, "qsc_code_num_lines": 47.0, "qsc_code_num_chars_line_max": 73.0, "qsc_code_num_chars_line_mean": 35.34042553, "qsc_code_frac_chars_alphabet": 0.86234523, "qsc_code_frac_chars_comments": 0.52618904, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.10526316, "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.0212766, "qsc_code_frac_lines_assert": 0.0, "qsc_codejava_cate_var_zero": 1.0, "qsc_codejava_frac_lines_func_ratio": 0.05263158, "qsc_codejava_score_lines_no_logic": 0.31578947, "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": 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": 1, "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/levels/builders/FigureEightBuilder.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.builders;
import com.shatteredpixel.shatteredpixeldungeon.levels.rooms.Room;
import com.shatteredpixel.shatteredpixeldungeon.levels.rooms.connection.ConnectionRoom;
import com.watabou.utils.PointF;
import com.watabou.utils.Random;
import java.util.ArrayList;
public class FigureEightBuilder extends RegularBuilder {
//These methods allow for the adjusting of the shape of the loop
//by default the loop is a perfect circle, but it can be adjusted
//increasing the exponent will increase the the curvature, making the loop more oval shaped.
private int curveExponent = 0;
//This is a percentage (range 0-1) of the intensity of the curve function
// 0 makes for a perfect linear curve (circle)
// 1 means the curve is completely determined by the curve exponent
private float curveIntensity = 1;
//Adjusts the starting point along the loop.
// a common example, setting to 0.25 will make for a short fat oval instead of a long one.
private float curveOffset = 0;
public FigureEightBuilder setLoopShape(int exponent, float intensity, float offset){
this.curveExponent = Math.abs(exponent);
curveIntensity = intensity % 1f;
curveOffset = offset % 0.5f;
return this;
}
private float targetAngle( float percentAlong ){
percentAlong += curveOffset;
return 360f * (float)(
curveIntensity * curveEquation(percentAlong)
+ (1-curveIntensity)*(percentAlong)
- curveOffset);
}
private double curveEquation( double x ){
return Math.pow(4, 2*curveExponent)
*(Math.pow((x % 0.5f )-0.25, 2*curveExponent + 1))
+ 0.25 + 0.5*Math.floor(2*x);
}
private Room landmarkRoom;
public FigureEightBuilder setLandmarkRoom(Room room){
landmarkRoom = room;
return this;
}
ArrayList<Room> firstLoop, secondLoop;
PointF firstLoopCenter, secondLoopCenter;
@Override
public ArrayList<Room> build(ArrayList<Room> rooms) {
setupRooms(rooms);
//TODO might want to make this able to work without an exit. Probably a random room would be landmark and the landmark room would become exit
if (landmarkRoom == null){
landmarkRoom = Random.element(multiConnections);
}
if (multiConnections.contains(landmarkRoom)){
multiConnections.remove(landmarkRoom);
}
float startAngle = Random.Float(0, 180);
int roomsOnLoop = (int)(multiConnections.size()*pathLength) + Random.chances(pathLenJitterChances);
roomsOnLoop = Math.min(roomsOnLoop, multiConnections.size());
int roomsOnFirstLoop = roomsOnLoop/2;
if (roomsOnLoop % 2 == 1) roomsOnFirstLoop += Random.Int(2);
firstLoop = new ArrayList<>();
float[] pathTunnels = pathTunnelChances.clone();
for (int i = 0; i <= roomsOnFirstLoop; i++){
if (i == 0)
firstLoop.add(landmarkRoom);
else
firstLoop.add(multiConnections.remove(0));
int tunnels = Random.chances(pathTunnels);
if (tunnels == -1){
pathTunnels = pathTunnelChances.clone();
tunnels = Random.chances(pathTunnels);
}
pathTunnels[tunnels]--;
for (int j = 0; j < tunnels; j++){
firstLoop.add(ConnectionRoom.createRoom());
}
}
if (entrance != null) firstLoop.add((firstLoop.size()+1)/2, entrance);
int roomsOnSecondLoop = roomsOnLoop - roomsOnFirstLoop;
secondLoop = new ArrayList<>();
for (int i = 0; i <= roomsOnSecondLoop; i++){
if (i == 0)
secondLoop.add(landmarkRoom);
else
secondLoop.add(multiConnections.remove(0));
int tunnels = Random.chances(pathTunnels);
if (tunnels == -1){
pathTunnels = pathTunnelChances.clone();
tunnels = Random.chances(pathTunnels);
}
pathTunnels[tunnels]--;
for (int j = 0; j < tunnels; j++){
secondLoop.add(ConnectionRoom.createRoom());
}
}
if (exit != null) secondLoop.add((secondLoop.size()+1)/2, exit);
landmarkRoom.setSize();
landmarkRoom.setPos(0, 0);
Room prev = landmarkRoom;
float targetAngle;
for (int i = 1; i < firstLoop.size(); i++){
Room r = firstLoop.get(i);
targetAngle = startAngle + targetAngle( i / (float)firstLoop.size());
if (placeRoom(rooms, prev, r, targetAngle) != -1) {
prev = r;
if (!rooms.contains(prev))
rooms.add(prev);
} else {
//FIXME this is lazy, there are ways to do this without relying on chance
return null;
}
}
//FIXME this is still fairly chance reliant
// should just write a general function for stitching two rooms together in builder
while (!prev.connect(landmarkRoom)){
ConnectionRoom c = ConnectionRoom.createRoom();
if (placeRoom(rooms, prev, c, angleBetweenRooms(prev, landmarkRoom)) == -1){
return null;
}
firstLoop.add(c);
rooms.add(c);
prev = c;
}
prev = landmarkRoom;
startAngle += 180f;
for (int i = 1; i < secondLoop.size(); i++){
Room r = secondLoop.get(i);
targetAngle = startAngle + targetAngle( i / (float)secondLoop.size());
if (placeRoom(rooms, prev, r, targetAngle) != -1) {
prev = r;
if (!rooms.contains(prev))
rooms.add(prev);
} else {
//FIXME this is lazy, there are ways to do this without relying on chance
return null;
}
}
//FIXME this is still fairly chance reliant
// should just write a general function for stitching two rooms together in builder
while (!prev.connect(landmarkRoom)){
ConnectionRoom c = ConnectionRoom.createRoom();
if (placeRoom(rooms, prev, c, angleBetweenRooms(prev, landmarkRoom)) == -1){
return null;
}
secondLoop.add(c);
rooms.add(c);
prev = c;
}
if (shop != null) {
float angle;
int tries = 10;
do {
angle = placeRoom(firstLoop, entrance, shop, Random.Float(360f));
tries--;
} while (angle == -1 && tries >= 0);
if (angle == -1) return null;
}
firstLoopCenter = new PointF();
for (Room r : firstLoop){
firstLoopCenter.x += (r.left + r.right)/2f;
firstLoopCenter.y += (r.top + r.bottom)/2f;
}
firstLoopCenter.x /= firstLoop.size();
firstLoopCenter.y /= firstLoop.size();
secondLoopCenter = new PointF();
for (Room r : secondLoop){
secondLoopCenter.x += (r.left + r.right)/2f;
secondLoopCenter.y += (r.top + r.bottom)/2f;
}
secondLoopCenter.x /= secondLoop.size();
secondLoopCenter.y /= secondLoop.size();
ArrayList<Room> branchable = new ArrayList<>(firstLoop);
branchable.addAll(secondLoop);
branchable.remove(landmarkRoom); //remove once so it isn't present twice
ArrayList<Room> roomsToBranch = new ArrayList<>();
roomsToBranch.addAll(multiConnections);
roomsToBranch.addAll(singleConnections);
weightRooms(branchable);
createBranches(rooms, branchable, roomsToBranch, branchTunnelChances);
findNeighbours(rooms);
for (Room r : rooms){
for (Room n : r.neigbours){
if (!n.connected.containsKey(r)
&& Random.Float() < extraConnectionChance){
r.connect(n);
}
}
}
return rooms;
}
@Override
protected float randomBranchAngle( Room r ) {
PointF center;
if (firstLoop.contains(r)){
center = firstLoopCenter;
} else {
center = secondLoopCenter;
}
if (center == null)
return super.randomBranchAngle( r );
else {
//generate four angles randomly and return the one which points closer to the center
float toCenter = angleBetweenPoints( new PointF((r.left + r.right)/2f, (r.top + r.bottom)/2f), center);
if (toCenter < 0) toCenter += 360f;
float currAngle = Random.Float(360f);
for( int i = 0; i < 4; i ++){
float newAngle = Random.Float(360f);
if (Math.abs(toCenter - newAngle) < Math.abs(toCenter - currAngle)){
currAngle = newAngle;
}
}
return currAngle;
}
}
}
| 8,421 | FigureEightBuilder | java | en | java | code | {"qsc_code_num_words": 1023, "qsc_code_num_chars": 8421.0, "qsc_code_mean_word_length": 5.62756598, "qsc_code_frac_words_unique": 0.27859238, "qsc_code_frac_chars_top_2grams": 0.00607956, "qsc_code_frac_chars_top_3grams": 0.00607956, "qsc_code_frac_chars_top_4grams": 0.021539, "qsc_code_frac_chars_dupe_5grams": 0.27253778, "qsc_code_frac_chars_dupe_6grams": 0.24978287, "qsc_code_frac_chars_dupe_7grams": 0.21122112, "qsc_code_frac_chars_dupe_8grams": 0.19037693, "qsc_code_frac_chars_dupe_9grams": 0.19037693, "qsc_code_frac_chars_dupe_10grams": 0.19037693, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.01598579, "qsc_code_frac_chars_whitespace": 0.19771999, "qsc_code_size_file_byte": 8421.0, "qsc_code_num_lines": 278.0, "qsc_code_num_chars_line_max": 144.0, "qsc_code_num_chars_line_mean": 30.29136691, "qsc_code_frac_chars_alphabet": 0.83614565, "qsc_code_frac_chars_comments": 0.23548272, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.2284264, "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.00359712, "qsc_code_frac_lines_assert": 0.0, "qsc_codejava_cate_var_zero": 0.0, "qsc_codejava_frac_lines_func_ratio": 0.02538071, "qsc_codejava_score_lines_no_logic": 0.11675127, "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/levels/builders/BranchesBuilder.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.builders;
import com.shatteredpixel.shatteredpixeldungeon.levels.rooms.Room;
import com.watabou.utils.Random;
import java.util.ArrayList;
//A builder that creates only branches, very simple and very random
public class BranchesBuilder extends RegularBuilder {
@Override
public ArrayList<Room> build(ArrayList<Room> rooms) {
setupRooms( rooms );
if (entrance == null){
return null;
}
ArrayList<Room> branchable = new ArrayList<>();
entrance.setSize();
entrance.setPos(0, 0);
branchable.add(entrance);
if (shop != null){
placeRoom(branchable, entrance, shop, Random.Float(360f));
}
ArrayList<Room> roomsToBranch = new ArrayList<>();
roomsToBranch.addAll(multiConnections);
if (exit != null) roomsToBranch.add(exit);
roomsToBranch.addAll(singleConnections);
createBranches(rooms, branchable, roomsToBranch, branchTunnelChances);
findNeighbours(rooms);
for (Room r : rooms){
for (Room n : r.neigbours){
if (!n.connected.containsKey(r)
&& Random.Float() < extraConnectionChance){
r.connect(n);
}
}
}
return rooms;
}
}
| 1,954 | BranchesBuilder | java | en | java | code | {"qsc_code_num_words": 244, "qsc_code_num_chars": 1954.0, "qsc_code_mean_word_length": 5.75, "qsc_code_frac_words_unique": 0.54918033, "qsc_code_frac_chars_top_2grams": 0.03706344, "qsc_code_frac_chars_top_3grams": 0.02779758, "qsc_code_frac_chars_top_4grams": 0.04062723, "qsc_code_frac_chars_dupe_5grams": 0.05844619, "qsc_code_frac_chars_dupe_6grams": 0.03991447, "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.0137931, "qsc_code_frac_chars_whitespace": 0.18372569, "qsc_code_size_file_byte": 1954.0, "qsc_code_num_lines": 70.0, "qsc_code_num_chars_line_max": 73.0, "qsc_code_num_chars_line_mean": 27.91428571, "qsc_code_frac_chars_alphabet": 0.86583072, "qsc_code_frac_chars_comments": 0.43398158, "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.0, "qsc_codejava_score_lines_no_logic": 0.17142857, "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/builders/Builder.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.builders;
import com.shatteredpixel.shatteredpixeldungeon.levels.rooms.Room;
import com.watabou.utils.GameMath;
import com.watabou.utils.Point;
import com.watabou.utils.PointF;
import com.watabou.utils.Random;
import com.watabou.utils.Rect;
import java.util.ArrayList;
import java.util.Iterator;
public abstract class Builder {
//If builders require additional parameters, they should
// request them in their constructor or other methods
//builders take a list of rooms and returns them as a connected map
//returns null on failure
public abstract ArrayList<Room> build(ArrayList<Room> rooms);
protected static void findNeighbours(ArrayList<Room> rooms){
Room[] ra = rooms.toArray( new Room[0] );
for (int i=0; i < ra.length-1; i++) {
for (int j=i+1; j < ra.length; j++) {
ra[i].addNeigbour( ra[j] );
}
}
}
//returns a rectangle representing the maximum amount of free space from a specific start point
protected static Rect findFreeSpace(Point start, ArrayList<Room> collision, int maxSize){
Rect space = new Rect(start.x-maxSize, start.y-maxSize, start.x+maxSize, start.y+maxSize);
//shallow copy
ArrayList<Room> colliding = new ArrayList<>(collision);
do{
//remove empty rooms and any rooms we aren't currently overlapping
Iterator<Room> it = colliding.iterator();
while (it.hasNext()){
Room room = it.next();
//if not colliding
if ( room.isEmpty()
|| Math.max(space.left, room.left) >= Math.min(space.right, room.right)
|| Math.max(space.top, room.top) >= Math.min(space.bottom, room.bottom) ){
it.remove();
}
}
//iterate through all rooms we are overlapping, and find the closest one
Room closestRoom = null;
int closestDiff = Integer.MAX_VALUE;
boolean inside = true;
int curDiff = 0;
for (Room curRoom : colliding){
if (start.x <= curRoom.left){
inside = false;
curDiff += curRoom.left - start.x;
} else if (start.x >= curRoom.right){
inside = false;
curDiff += start.x - curRoom.right;
}
if (start.y <= curRoom.top){
inside = false;
curDiff += curRoom.top - start.y;
} else if (start.y >= curRoom.bottom){
inside = false;
curDiff += start.y - curRoom.bottom;
}
if (inside){
space.set(start.x, start.y, start.x, start.y);
return space;
}
if (curDiff < closestDiff){
closestDiff = curDiff;
closestRoom = curRoom;
}
}
int wDiff, hDiff;
if (closestRoom != null){
wDiff = Integer.MAX_VALUE;
if (closestRoom.left >= start.x){
wDiff = (space.right - closestRoom.left) * (space.height() + 1);
} else if (closestRoom.right <= start.x){
wDiff = (closestRoom.right - space.left) * (space.height() + 1);
}
hDiff = Integer.MAX_VALUE;
if (closestRoom.top >= start.y){
hDiff = (space.bottom - closestRoom.top) * (space.width() + 1);
} else if (closestRoom.bottom <= start.y){
hDiff = (closestRoom.bottom - space.top) * (space.width() + 1);
}
//reduce by as little as possible to resolve the collision
if (wDiff < hDiff || wDiff == hDiff && Random.Int(2) == 0){
if (closestRoom.left >= start.x && closestRoom.left < space.right) space.right = closestRoom.left;
if (closestRoom.right <= start.x && closestRoom.right > space.left) space.left = closestRoom.right;
} else {
if (closestRoom.top >= start.y && closestRoom.top < space.bottom) space.bottom = closestRoom.top;
if (closestRoom.bottom <= start.y && closestRoom.bottom > space.top) space.top = closestRoom.bottom;
}
colliding.remove(closestRoom);
} else {
colliding.clear();
}
//loop until we are no longer colliding with any rooms
} while (!colliding.isEmpty());
return space;
}
private static final double A = 180 / Math.PI;
//returns the angle in degrees made by the centerpoints of 2 rooms, with 0 being straight up.
protected static float angleBetweenRooms( Room from, Room to){
PointF fromCenter = new PointF((from.left + from.right)/2f, (from.top + from.bottom)/2f);
PointF toCenter = new PointF((to.left + to.right)/2f, (to.top + to.bottom)/2f);
return angleBetweenPoints(fromCenter, toCenter);
}
protected static float angleBetweenPoints( PointF from, PointF to ){
double m = (to.y - from.y)/(to.x - from.x);
float angle = (float)(A*(Math.atan(m) + Math.PI/2.0));
if (from.x > to.x) angle -= 180f;
return angle;
}
//Attempts to place a room such that the angle between the center of the previous room
// and it matches the given angle ([0-360), where 0 is straight up) as closely as possible.
//Note that getting an exactly correct angle is harder the closer that angle is to diagonal.
//Returns the exact angle between the centerpoints of the two rooms, or -1 if placement fails.
protected static float placeRoom( ArrayList<Room> collision, Room prev, Room next, float angle){
//wrap angle around to always be [0-360)
angle %= 360f;
if (angle < 0){
angle += 360f;
}
PointF prevCenter = new PointF((prev.left + prev.right)/2f, (prev.top + prev.bottom)/2f);
// calculating using y = mx+b, straight line formula
double m = Math.tan(angle/A + Math.PI/2.0);
double b = prevCenter.y -m*prevCenter.x;
//using the line equation, we find the point along the prev room where the line exists
Point start;
int direction;
if (Math.abs(m) >= 1){
if (angle < 90 || angle > 270){
direction = Room.TOP;
start = new Point( (int)Math.round((prev.top - b)/m), prev.top);
} else {
direction = Room.BOTTOM;
start = new Point( (int)Math.round((prev.bottom - b)/m), prev.bottom);
}
} else {
if (angle < 180){
direction = Room.RIGHT;
start = new Point(prev.right, (int) Math.round(m * prev.right + b));
} else {
direction = Room.LEFT;
start = new Point(prev.left, (int) Math.round(m * prev.left + b));
}
}
//cap it to a valid connection point for most rooms
if (direction == Room.TOP || direction == Room.BOTTOM) {
start.x = (int) GameMath.gate(prev.left + 1, start.x, prev.right - 1);
} else {
start.y = (int) GameMath.gate(prev.top + 1, start.y, prev.bottom - 1);
}
//space checking
Rect space = findFreeSpace(start, collision, Math.max(next.maxWidth(), next.maxHeight()));
if (!next.setSizeWithLimit(space.width()+1, space.height()+1)){
return -1;
}
//find the ideal center for this new room using the line equation and known dimensions
PointF targetCenter = new PointF();
if (direction == Room.TOP) {
targetCenter.y = prev.top - (next.height() - 1) / 2f;
targetCenter.x = (float) ((targetCenter.y - b) / m);
next.setPos(Math.round(targetCenter.x - (next.width() - 1) / 2f), prev.top - (next.height() - 1));
} else if (direction == Room.BOTTOM) {
targetCenter.y = prev.bottom + (next.height() - 1) / 2f;
targetCenter.x = (float) ((targetCenter.y - b) / m);
next.setPos(Math.round(targetCenter.x - (next.width() - 1) / 2f), prev.bottom);
} else if (direction == Room.RIGHT) {
targetCenter.x = prev.right + (next.width()-1)/2f;
targetCenter.y = (float)(m*targetCenter.x + b);
next.setPos( prev.right, Math.round(targetCenter.y - (next.height()-1)/2f));
} else if (direction == Room.LEFT) {
targetCenter.x = prev.left - (next.width()-1)/2f;
targetCenter.y = (float)(m*targetCenter.x + b);
next.setPos( prev.left - (next.width() - 1), Math.round(targetCenter.y - (next.height()-1)/2f));
}
//perform connection bounds and target checking, move the room if necessary
if (direction == Room.TOP || direction == Room.BOTTOM){
if (next.right < prev.left+2) next.shift(prev.left+2-next.right, 0);
else if (next.left > prev.right-2) next.shift(prev.right-2-next.left, 0);
if (next.right > space.right) next.shift( space.right - next.right, 0);
else if (next.left < space.left) next.shift( space.left - next.left, 0);
} else {
if (next.bottom < prev.top+2) next.shift(0, prev.top+2-next.bottom);
else if (next.top > prev.bottom-2) next.shift(0, prev.bottom-2-next.top);
if (next.bottom > space.bottom) next.shift( 0, space.bottom - next.bottom);
else if (next.top < space.top) next.shift( 0, space.top - next.top);
}
//attempt to connect, return the result angle if successful.
if (next.connect(prev)){
return angleBetweenRooms(prev, next);
} else {
return -1;
}
}
}
| 9,292 | Builder | java | en | java | code | {"qsc_code_num_words": 1314, "qsc_code_num_chars": 9292.0, "qsc_code_mean_word_length": 4.65677321, "qsc_code_frac_words_unique": 0.22222222, "qsc_code_frac_chars_top_2grams": 0.01372773, "qsc_code_frac_chars_top_3grams": 0.01470829, "qsc_code_frac_chars_top_4grams": 0.01715967, "qsc_code_frac_chars_dupe_5grams": 0.19300539, "qsc_code_frac_chars_dupe_6grams": 0.11603203, "qsc_code_frac_chars_dupe_7grams": 0.09086452, "qsc_code_frac_chars_dupe_8grams": 0.06144795, "qsc_code_frac_chars_dupe_9grams": 0.05000817, "qsc_code_frac_chars_dupe_10grams": 0.05000817, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.01538462, "qsc_code_frac_chars_whitespace": 0.20253982, "qsc_code_size_file_byte": 9292.0, "qsc_code_num_lines": 258.0, "qsc_code_num_chars_line_max": 106.0, "qsc_code_num_chars_line_mean": 36.01550388, "qsc_code_frac_chars_alphabet": 0.81039136, "qsc_code_frac_chars_comments": 0.24547998, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.12790698, "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.04069767, "qsc_codejava_score_lines_no_logic": 0.12209302, "qsc_codejava_frac_words_no_modifier": 0.625, "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/rooms/secret/SecretChestChasmRoom.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.rooms.secret;
import com.shatteredpixel.shatteredpixeldungeon.Dungeon;
import com.shatteredpixel.shatteredpixeldungeon.items.Generator;
import com.shatteredpixel.shatteredpixeldungeon.items.Heap;
import com.shatteredpixel.shatteredpixeldungeon.items.keys.GoldenKey;
import com.shatteredpixel.shatteredpixeldungeon.items.potions.PotionOfLevitation;
import com.shatteredpixel.shatteredpixeldungeon.levels.Level;
import com.shatteredpixel.shatteredpixeldungeon.levels.Terrain;
import com.shatteredpixel.shatteredpixeldungeon.levels.painters.Painter;
import com.watabou.utils.Point;
public class SecretChestChasmRoom extends SecretRoom {
//width and height are controlled here so that this room always requires 2 levitation potions
@Override
public int minWidth() {
return 8;
}
@Override
public int maxWidth() {
return 9;
}
@Override
public int minHeight() {
return 8;
}
@Override
public int maxHeight() {
return 9;
}
@Override
public void paint(Level level) {
Painter.fill(level, this, Terrain.WALL);
Painter.fill(level, this, 1, Terrain.CHASM);
int chests = 0;
Point p = new Point(left+3, top+3);
Painter.set(level, p, Terrain.EMPTY_SP);
level.drop(Generator.random(), level.pointToCell(p)).type = Heap.Type.LOCKED_CHEST;
if (level.heaps.get(level.pointToCell(p)) != null) chests++;
p.x = right-3;
Painter.set(level, p, Terrain.EMPTY_SP);
level.drop(Generator.random(), level.pointToCell(p)).type = Heap.Type.LOCKED_CHEST;
if (level.heaps.get(level.pointToCell(p)) != null) chests++;
p.y = bottom-3;
Painter.set(level, p, Terrain.EMPTY_SP);
level.drop(Generator.random(), level.pointToCell(p)).type = Heap.Type.LOCKED_CHEST;
if (level.heaps.get(level.pointToCell(p)) != null) chests++;
p.x = left+3;
Painter.set(level, p, Terrain.EMPTY_SP);
level.drop(Generator.random(), level.pointToCell(p)).type = Heap.Type.LOCKED_CHEST;
if (level.heaps.get(level.pointToCell(p)) != null) chests++;
p = new Point(left+1, top+1);
Painter.set(level, p, Terrain.EMPTY_SP);
if (chests > 0) {
level.drop(new GoldenKey(Dungeon.depth), level.pointToCell(p));
chests--;
}
p.x = right-1;
Painter.set(level, p, Terrain.EMPTY_SP);
if (chests > 0) {
level.drop(new GoldenKey(Dungeon.depth), level.pointToCell(p));
chests--;
}
p.y = bottom-1;
Painter.set(level, p, Terrain.EMPTY_SP);
if (chests > 0) {
level.drop(new GoldenKey(Dungeon.depth), level.pointToCell(p));
chests--;
}
p.x = left+1;
Painter.set(level, p, Terrain.EMPTY_SP);
if (chests > 0) {
level.drop(new GoldenKey(Dungeon.depth), level.pointToCell(p));
chests--;
}
level.addItemToSpawn(new PotionOfLevitation());
entrance().set(Door.Type.HIDDEN);
}
}
| 3,593 | SecretChestChasmRoom | java | en | java | code | {"qsc_code_num_words": 489, "qsc_code_num_chars": 3593.0, "qsc_code_mean_word_length": 5.27402863, "qsc_code_frac_words_unique": 0.32106339, "qsc_code_frac_chars_top_2grams": 0.07444746, "qsc_code_frac_chars_top_3grams": 0.07910043, "qsc_code_frac_chars_top_4grams": 0.13648701, "qsc_code_frac_chars_dupe_5grams": 0.55021326, "qsc_code_frac_chars_dupe_6grams": 0.38735944, "qsc_code_frac_chars_dupe_7grams": 0.3656456, "qsc_code_frac_chars_dupe_8grams": 0.3656456, "qsc_code_frac_chars_dupe_9grams": 0.3656456, "qsc_code_frac_chars_dupe_10grams": 0.3656456, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.01248768, "qsc_code_frac_chars_whitespace": 0.15307542, "qsc_code_size_file_byte": 3593.0, "qsc_code_num_lines": 117.0, "qsc_code_num_chars_line_max": 95.0, "qsc_code_num_chars_line_mean": 30.70940171, "qsc_code_frac_chars_alphabet": 0.83503122, "qsc_code_frac_chars_comments": 0.24325077, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.48684211, "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.06578947, "qsc_codejava_score_lines_no_logic": 0.25, "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/levels/rooms/secret/SecretRoom.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.rooms.secret;
import com.shatteredpixel.shatteredpixeldungeon.GamesInProgress;
import com.shatteredpixel.shatteredpixeldungeon.ShatteredPixelDungeon;
import com.shatteredpixel.shatteredpixeldungeon.actors.hero.HeroClass;
import com.shatteredpixel.shatteredpixeldungeon.levels.rooms.special.SpecialRoom;
import com.watabou.utils.Bundle;
import com.watabou.utils.Random;
import com.watabou.utils.Reflection;
import java.util.ArrayList;
import java.util.Arrays;
public abstract class SecretRoom extends SpecialRoom {
private static final ArrayList<Class<? extends SecretRoom>> ALL_SECRETS = new ArrayList<>( Arrays.asList(
SecretGardenRoom.class, SecretLaboratoryRoom.class, SecretLibraryRoom.class,
SecretLarderRoom.class, SecretWellRoom.class, SecretRunestoneRoom.class,
SecretArtilleryRoom.class, SecretChestChasmRoom.class, SecretHoneypotRoom.class,
SecretHoardRoom.class, SecretMazeRoom.class, SecretSummoningRoom.class));
public static ArrayList<Class<? extends SecretRoom>> runSecrets = new ArrayList<>();
//this is the number of secret rooms per region (whole value),
// plus the chance for an extra secret room (fractional value)
private static float[] baseRegionSecrets = new float[]{1.4f, 1.8f, 2.2f, 2.6f, 3.0f};
private static int[] regionSecretsThisRun = new int[5];
public static void initForRun(){
float[] regionChances = baseRegionSecrets.clone();
if (GamesInProgress.selectedClass == HeroClass.ROGUE){
for (int i = 0; i < regionChances.length; i++){
regionChances[i] += 0.6f;
}
}
for (int i = 0; i < regionSecretsThisRun.length; i++){
regionSecretsThisRun[i] = (int)regionChances[i];
if (Random.Float() < regionChances[i] % 1f){
regionSecretsThisRun[i]++;
}
}
runSecrets = new ArrayList<>(ALL_SECRETS);
Random.shuffle(runSecrets);
}
public static int secretsForFloor(int depth){
if (depth == 1) return 0;
int region = depth/5;
int floor = depth%5;
int floorsLeft = 5 - floor;
float secrets;
if (floorsLeft == 0) {
secrets = regionSecretsThisRun[region];
} else {
secrets = regionSecretsThisRun[region] / (float)floorsLeft;
if (Random.Float() < secrets % 1f){
secrets = (float)Math.ceil(secrets);
} else {
secrets = (float)Math.floor(secrets);
}
}
regionSecretsThisRun[region] -= (int)secrets;
return (int)secrets;
}
public static SecretRoom createRoom(){
SecretRoom r = null;
int index = runSecrets.size();
for (int i = 0; i < 4; i++){
int newidx = Random.Int( runSecrets.size() );
if (newidx < index) index = newidx;
}
r = Reflection.newInstance(runSecrets.get( index ));
runSecrets.add(runSecrets.remove(index));
return r;
}
private static final String ROOMS = "secret_rooms";
private static final String REGIONS = "region_secrets";
public static void restoreRoomsFromBundle( Bundle bundle ) {
runSecrets.clear();
if (bundle.contains( ROOMS )) {
for (Class<? extends SecretRoom> type : bundle.getClassArray(ROOMS)) {
if (type != null) runSecrets.add(type);
}
regionSecretsThisRun = bundle.getIntArray(REGIONS);
} else {
initForRun();
ShatteredPixelDungeon.reportException(new Exception("secrets array didn't exist!"));
}
}
public static void storeRoomsInBundle( Bundle bundle ) {
bundle.put( ROOMS, runSecrets.toArray(new Class[0]) );
bundle.put( REGIONS, regionSecretsThisRun );
}
}
| 4,264 | SecretRoom | java | en | java | code | {"qsc_code_num_words": 501, "qsc_code_num_chars": 4264.0, "qsc_code_mean_word_length": 6.14770459, "qsc_code_frac_words_unique": 0.38922156, "qsc_code_frac_chars_top_2grams": 0.02045455, "qsc_code_frac_chars_top_3grams": 0.06168831, "qsc_code_frac_chars_top_4grams": 0.05714286, "qsc_code_frac_chars_dupe_5grams": 0.06720779, "qsc_code_frac_chars_dupe_6grams": 0.01818182, "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.01212634, "qsc_code_frac_chars_whitespace": 0.16838649, "qsc_code_size_file_byte": 4264.0, "qsc_code_num_lines": 135.0, "qsc_code_num_chars_line_max": 107.0, "qsc_code_num_chars_line_mean": 31.58518519, "qsc_code_frac_chars_alphabet": 0.85645798, "qsc_code_frac_chars_comments": 0.21224203, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.03571429, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.01577851, "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.05952381, "qsc_codejava_score_lines_no_logic": 0.20238095, "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/levels/rooms/secret/SecretGardenRoom.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.rooms.secret;
import com.shatteredpixel.shatteredpixeldungeon.actors.blobs.Foliage;
import com.shatteredpixel.shatteredpixeldungeon.items.wands.WandOfRegrowth;
import com.shatteredpixel.shatteredpixeldungeon.levels.Level;
import com.shatteredpixel.shatteredpixeldungeon.levels.Patch;
import com.shatteredpixel.shatteredpixeldungeon.levels.Terrain;
import com.shatteredpixel.shatteredpixeldungeon.levels.painters.Painter;
import com.shatteredpixel.shatteredpixeldungeon.plants.Starflower;
import com.watabou.utils.Random;
public class SecretGardenRoom extends SecretRoom {
public void paint( Level level ) {
Painter.fill( level, this, Terrain.WALL );
Painter.fill( level, this, 1, Terrain.GRASS );
boolean[] grass = Patch.generate(width()-2, height()-2, 0.5f, 0, true);
for (int i=top + 1; i < bottom; i++) {
for (int j=left + 1; j < right; j++) {
if (grass[xyToPatchCoords(j, i)]) {
level.map[i * level.width() + j] = Terrain.HIGH_GRASS;
}
}
}
entrance().set( Door.Type.HIDDEN );
level.plant(new Starflower.Seed(), plantPos(level));
level.plant(new WandOfRegrowth.Seedpod.Seed(), plantPos( level ));
level.plant(new WandOfRegrowth.Dewcatcher.Seed(), plantPos( level ));
if (Random.Int(2) == 0){
level.plant(new WandOfRegrowth.Seedpod.Seed(), plantPos( level ));
} else {
level.plant(new WandOfRegrowth.Dewcatcher.Seed(), plantPos( level ));
}
Foliage light = (Foliage)level.blobs.get( Foliage.class );
if (light == null) {
light = new Foliage();
}
for (int i=top + 1; i < bottom; i++) {
for (int j=left + 1; j < right; j++) {
light.seed( level, j + level.width() * i, 1 );
}
}
level.blobs.put( Foliage.class, light );
}
private int plantPos( Level level ){
int pos;
do{
pos = level.pointToCell(random());
} while (level.plants.get(pos) != null);
return pos;
}
protected int xyToPatchCoords(int x, int y){
return (x-left-1) + ((y-top-1) * (width()-2));
}
}
| 2,814 | SecretGardenRoom | java | en | java | code | {"qsc_code_num_words": 373, "qsc_code_num_chars": 2814.0, "qsc_code_mean_word_length": 5.29490617, "qsc_code_frac_words_unique": 0.4155496, "qsc_code_frac_chars_top_2grams": 0.06886076, "qsc_code_frac_chars_top_3grams": 0.15392405, "qsc_code_frac_chars_top_4grams": 0.15594937, "qsc_code_frac_chars_dupe_5grams": 0.29620253, "qsc_code_frac_chars_dupe_6grams": 0.18177215, "qsc_code_frac_chars_dupe_7grams": 0.15341772, "qsc_code_frac_chars_dupe_8grams": 0.14481013, "qsc_code_frac_chars_dupe_9grams": 0.03848101, "qsc_code_frac_chars_dupe_10grams": 0.03848101, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.01413882, "qsc_code_frac_chars_whitespace": 0.17057569, "qsc_code_size_file_byte": 2814.0, "qsc_code_num_lines": 84.0, "qsc_code_num_chars_line_max": 76.0, "qsc_code_num_chars_line_mean": 33.5, "qsc_code_frac_chars_alphabet": 0.83204799, "qsc_code_frac_chars_comments": 0.27754087, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.15384615, "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.05769231, "qsc_codejava_score_lines_no_logic": 0.26923077, "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/levels/rooms/secret/SecretSummoningRoom.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.rooms.secret;
import com.shatteredpixel.shatteredpixeldungeon.items.Generator;
import com.shatteredpixel.shatteredpixeldungeon.items.Heap;
import com.shatteredpixel.shatteredpixeldungeon.levels.Level;
import com.shatteredpixel.shatteredpixeldungeon.levels.Terrain;
import com.shatteredpixel.shatteredpixeldungeon.levels.painters.Painter;
import com.shatteredpixel.shatteredpixeldungeon.levels.traps.SummoningTrap;
import com.watabou.utils.Point;
public class SecretSummoningRoom extends SecretRoom {
//minimum of 3x3 traps, max of 6x6 traps
@Override
public int maxWidth() {
return 8;
}
@Override
public int maxHeight() {
return 8;
}
@Override
public void paint(Level level) {
Painter.fill(level, this, Terrain.WALL);
Painter.fill(level, this, 1, Terrain.SECRET_TRAP);
Point center = center();
level.drop(Generator.random(), level.pointToCell(center)).setHauntedIfCursed(1f).type = Heap.Type.SKELETON;
for (Point p : getPoints()){
int cell = level.pointToCell(p);
if (level.map[cell] == Terrain.SECRET_TRAP){
level.setTrap(new SummoningTrap().hide(), cell);
}
}
entrance().set(Door.Type.HIDDEN);
}
}
| 2,001 | SecretSummoningRoom | java | en | java | code | {"qsc_code_num_words": 259, "qsc_code_num_chars": 2001.0, "qsc_code_mean_word_length": 5.7953668, "qsc_code_frac_words_unique": 0.52895753, "qsc_code_frac_chars_top_2grams": 0.07928048, "qsc_code_frac_chars_top_3grams": 0.17721519, "qsc_code_frac_chars_top_4grams": 0.17588274, "qsc_code_frac_chars_dupe_5grams": 0.25316456, "qsc_code_frac_chars_dupe_6grams": 0.03730846, "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.01475797, "qsc_code_frac_chars_whitespace": 0.15342329, "qsc_code_size_file_byte": 2001.0, "qsc_code_num_lines": 64.0, "qsc_code_num_chars_line_max": 110.0, "qsc_code_num_chars_line_mean": 31.265625, "qsc_code_frac_chars_alphabet": 0.87131051, "qsc_code_frac_chars_comments": 0.41029485, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.15625, "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.09375, "qsc_codejava_score_lines_no_logic": 0.40625, "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": 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/rooms/secret/SecretMazeRoom.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.rooms.secret;
import com.shatteredpixel.shatteredpixeldungeon.Challenges;
import com.shatteredpixel.shatteredpixeldungeon.Dungeon;
import com.shatteredpixel.shatteredpixeldungeon.items.Generator;
import com.shatteredpixel.shatteredpixeldungeon.items.Heap;
import com.shatteredpixel.shatteredpixeldungeon.items.Item;
import com.shatteredpixel.shatteredpixeldungeon.levels.Level;
import com.shatteredpixel.shatteredpixeldungeon.levels.Terrain;
import com.shatteredpixel.shatteredpixeldungeon.levels.features.Maze;
import com.shatteredpixel.shatteredpixeldungeon.levels.painters.Painter;
import com.watabou.utils.PathFinder;
import com.watabou.utils.Point;
import com.watabou.utils.Random;
public class SecretMazeRoom extends SecretRoom {
@Override
public int minWidth() {
return 14;
}
@Override
public int minHeight() {
return 14;
}
@Override
public int maxWidth() {
return 18;
}
@Override
public int maxHeight() {
return 18;
}
@Override
public void paint(Level level) {
Painter.fill(level, this, Terrain.WALL);
Painter.fill(level, this, 1, Terrain.EMPTY);
//true = space, false = wall
Maze.allowDiagonals = false;
boolean[][] maze = Maze.generate(this);
boolean[] passable = new boolean[width()*height()];
Painter.fill(level, this, 1, Terrain.EMPTY);
for (int x = 0; x < maze.length; x++) {
for (int y = 0; y < maze[0].length; y++) {
if (maze[x][y] == Maze.FILLED) {
Painter.fill(level, x + left, y + top, 1, 1, Terrain.WALL);
}
passable[x + width()*y] = maze[x][y] == Maze.EMPTY;
}
}
PathFinder.setMapSize(width(), height());
Point entrance = entrance();
int entrancePos = (entrance.x - left) + width()*(entrance.y - top);
PathFinder.buildDistanceMap( entrancePos, passable );
int bestDist = 0;
Point bestDistP = new Point();
for (int i = 0; i < PathFinder.distance.length; i++){
if (PathFinder.distance[i] != Integer.MAX_VALUE
&& PathFinder.distance[i] > bestDist){
bestDist = PathFinder.distance[i];
bestDistP.x = (i % width()) + left;
bestDistP.y = (i / width()) + top;
}
}
Item prize;
//1 floor set higher in probability, never cursed
do {
if (Random.Int(2) == 0) {
prize = Generator.randomWeapon((Dungeon.depth / 5) + 1);
} else {
prize = Generator.randomArmor((Dungeon.depth / 5) + 1);
}
} while (prize.cursed || Challenges.isItemBlocked(prize));
//33% chance for an extra update.
if (Random.Int(3) == 0){
prize.upgrade();
}
level.drop(prize, level.pointToCell(bestDistP)).type = Heap.Type.CHEST;
PathFinder.setMapSize(level.width(), level.height());
entrance().set(Door.Type.HIDDEN);
}
}
| 3,519 | SecretMazeRoom | java | en | java | code | {"qsc_code_num_words": 445, "qsc_code_num_chars": 3519.0, "qsc_code_mean_word_length": 5.54157303, "qsc_code_frac_words_unique": 0.39775281, "qsc_code_frac_chars_top_2grams": 0.04379562, "qsc_code_frac_chars_top_3grams": 0.1540957, "qsc_code_frac_chars_top_4grams": 0.16058394, "qsc_code_frac_chars_dupe_5grams": 0.22100568, "qsc_code_frac_chars_dupe_6grams": 0.04947283, "qsc_code_frac_chars_dupe_7grams": 0.02676399, "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.01547988, "qsc_code_frac_chars_whitespace": 0.17391304, "qsc_code_size_file_byte": 3519.0, "qsc_code_num_lines": 117.0, "qsc_code_num_chars_line_max": 74.0, "qsc_code_num_chars_line_mean": 30.07692308, "qsc_code_frac_chars_alphabet": 0.83281734, "qsc_code_frac_chars_comments": 0.25319693, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.14473684, "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.06578947, "qsc_codejava_score_lines_no_logic": 0.30263158, "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} | 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/rooms/secret/SecretArtilleryRoom.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.rooms.secret;
import com.shatteredpixel.shatteredpixeldungeon.items.Generator;
import com.shatteredpixel.shatteredpixeldungeon.items.bombs.Bomb;
import com.shatteredpixel.shatteredpixeldungeon.levels.Level;
import com.shatteredpixel.shatteredpixeldungeon.levels.Terrain;
import com.shatteredpixel.shatteredpixeldungeon.levels.painters.Painter;
public class SecretArtilleryRoom extends SecretRoom {
@Override
public void paint(Level level) {
Painter.fill(level, this, Terrain.WALL);
Painter.fill(level, this, 1, Terrain.EMPTY_SP);
Painter.set(level, center(), Terrain.STATUE_SP);
for (int i = 0; i < 3; i++){
int itemPos;
do{
itemPos = level.pointToCell(random());
} while ( level.map[itemPos] != Terrain.EMPTY_SP
|| level.heaps.get(itemPos) != null);
if( i == 0 ){
level.drop(new Bomb.DoubleBomb(), itemPos);
} else {
level.drop(Generator.randomMissile(), itemPos);
}
}
entrance().set(Door.Type.HIDDEN);
}
}
| 1,814 | SecretArtilleryRoom | java | en | java | code | {"qsc_code_num_words": 238, "qsc_code_num_chars": 1814.0, "qsc_code_mean_word_length": 5.57563025, "qsc_code_frac_words_unique": 0.54621849, "qsc_code_frac_chars_top_2grams": 0.07686511, "qsc_code_frac_chars_top_3grams": 0.17181613, "qsc_code_frac_chars_top_4grams": 0.16578749, "qsc_code_frac_chars_dupe_5grams": 0.24868124, "qsc_code_frac_chars_dupe_6grams": 0.04220045, "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.01387971, "qsc_code_frac_chars_whitespace": 0.16593164, "qsc_code_size_file_byte": 1814.0, "qsc_code_num_lines": 55.0, "qsc_code_num_chars_line_max": 73.0, "qsc_code_num_chars_line_mean": 32.98181818, "qsc_code_frac_chars_alphabet": 0.86318572, "qsc_code_frac_chars_comments": 0.43054024, "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.03703704, "qsc_codejava_score_lines_no_logic": 0.2962963, "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/levels/rooms/secret/SecretLibraryRoom.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.rooms.secret;
import com.shatteredpixel.shatteredpixeldungeon.ShatteredPixelDungeon;
import com.shatteredpixel.shatteredpixeldungeon.items.scrolls.Scroll;
import com.shatteredpixel.shatteredpixeldungeon.items.scrolls.ScrollOfIdentify;
import com.shatteredpixel.shatteredpixeldungeon.items.scrolls.ScrollOfLullaby;
import com.shatteredpixel.shatteredpixeldungeon.items.scrolls.ScrollOfMagicMapping;
import com.shatteredpixel.shatteredpixeldungeon.items.scrolls.ScrollOfMirrorImage;
import com.shatteredpixel.shatteredpixeldungeon.items.scrolls.ScrollOfRage;
import com.shatteredpixel.shatteredpixeldungeon.items.scrolls.ScrollOfRecharging;
import com.shatteredpixel.shatteredpixeldungeon.items.scrolls.ScrollOfRemoveCurse;
import com.shatteredpixel.shatteredpixeldungeon.items.scrolls.ScrollOfRetribution;
import com.shatteredpixel.shatteredpixeldungeon.items.scrolls.ScrollOfTeleportation;
import com.shatteredpixel.shatteredpixeldungeon.items.scrolls.ScrollOfTerror;
import com.shatteredpixel.shatteredpixeldungeon.items.scrolls.ScrollOfTransmutation;
import com.shatteredpixel.shatteredpixeldungeon.levels.Level;
import com.shatteredpixel.shatteredpixeldungeon.levels.Terrain;
import com.shatteredpixel.shatteredpixeldungeon.levels.painters.Painter;
import com.watabou.utils.Random;
import com.watabou.utils.Reflection;
import java.util.HashMap;
public class SecretLibraryRoom extends SecretRoom {
@Override
public int minWidth() {
return Math.max(7, super.minWidth());
}
@Override
public int minHeight() {
return Math.max(7, super.minHeight());
}
private static HashMap<Class<? extends Scroll>, Float> scrollChances = new HashMap<>();
static{
scrollChances.put( ScrollOfIdentify.class, 1f );
scrollChances.put( ScrollOfRemoveCurse.class, 2f );
scrollChances.put( ScrollOfMagicMapping.class, 3f );
scrollChances.put( ScrollOfMirrorImage.class, 3f );
scrollChances.put( ScrollOfRecharging.class, 3f );
scrollChances.put( ScrollOfLullaby.class, 4f );
scrollChances.put( ScrollOfRetribution.class, 4f );
scrollChances.put( ScrollOfRage.class, 4f );
scrollChances.put( ScrollOfTeleportation.class, 4f );
scrollChances.put( ScrollOfTerror.class, 4f );
scrollChances.put( ScrollOfTransmutation.class, 6f );
}
public void paint( Level level ) {
Painter.fill( level, this, Terrain.WALL );
Painter.fill( level, this, 1, Terrain.BOOKSHELF );
Painter.fillEllipse(level, this, 2, Terrain.EMPTY_SP);
Door entrance = entrance();
if (entrance.x == left || entrance.x == right){
Painter.drawInside(level, this, entrance, (width() - 3) / 2, Terrain.EMPTY_SP);
} else {
Painter.drawInside(level, this, entrance, (height() - 3) / 2, Terrain.EMPTY_SP);
}
entrance.set( Door.Type.HIDDEN );
int n = Random.IntRange( 2, 3 );
HashMap<Class<? extends Scroll>, Float> chances = new HashMap<>(scrollChances);
for (int i=0; i < n; i++) {
int pos;
do {
pos = level.pointToCell(random());
} while (level.map[pos] != Terrain.EMPTY_SP || level.heaps.get( pos ) != null);
Class<?extends Scroll> scrollCls = Random.chances(chances);
chances.put(scrollCls, 0f);
level.drop( Reflection.newInstance(scrollCls), pos );
}
}
}
| 4,082 | SecretLibraryRoom | java | en | java | code | {"qsc_code_num_words": 463, "qsc_code_num_chars": 4082.0, "qsc_code_mean_word_length": 6.71490281, "qsc_code_frac_words_unique": 0.37580994, "qsc_code_frac_chars_top_2grams": 0.05210679, "qsc_code_frac_chars_top_3grams": 0.20778385, "qsc_code_frac_chars_top_4grams": 0.22643937, "qsc_code_frac_chars_dupe_5grams": 0.35445481, "qsc_code_frac_chars_dupe_6grams": 0.23415889, "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.01130902, "qsc_code_frac_chars_whitespace": 0.13351298, "qsc_code_size_file_byte": 4082.0, "qsc_code_num_lines": 101.0, "qsc_code_num_chars_line_max": 89.0, "qsc_code_num_chars_line_mean": 40.41584158, "qsc_code_frac_chars_alphabet": 0.86768448, "qsc_code_frac_chars_comments": 0.19132778, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.02985075, "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.04477612, "qsc_codejava_score_lines_no_logic": 0.35820896, "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} |
01-ai/Yi-1.5 | README.md | <div align="center">
<picture>
<img src="https://raw.githubusercontent.com/01-ai/Yi/main/assets/img/Yi_logo_icon_light.svg" width="150px">
</picture>
</div>
<br/>
<p align="center">
<a href="https://huggingface.co/01-ai">🤗 HuggingFace</a> •
<a href="https://www.modelscope.cn/organization/01ai/">🤖 ModelScope</a> •
<a href="https://wisemodel.cn/organization/01.AI">🟣 wisemodel</a>
<br/>
<a href="https://discord.gg/hYUwWddeAu">👾 Discord</a> •
<a href="https://twitter.com/01ai_yi">🐤 Twitter</a> •
<a href="https://github.com/01-ai/Yi-1.5/issues/2">💬 WeChat</a>
<br/>
<a href="https://arxiv.org/abs/2403.04652">📝 Paper</a> •
<a href="https://01-ai.github.io/">💪 Tech Blog</a> •
<a href="https://github.com/01-ai/Yi/tree/main?tab=readme-ov-file#faq">🙌 FAQ</a> •
<a href="https://github.com/01-ai/Yi/tree/main?tab=readme-ov-file#learning-hub">📗 Learning Hub</a>
</p>
---
- [Intro](#intro)
- [News](#news)
- [Quick Start](#quick-start)
- [Web Demo](#web-demo)
- [Deployment](#deployment)
- [Fine-tuning](#fine-tuning)
- [API](#api)
- [License](#license)
## Intro
Yi-1.5 is an upgraded version of Yi. It is continuously pre-trained on Yi with a high-quality corpus of 500B tokens and fine-tuned on 3M diverse fine-tuning samples.
Compared with Yi, Yi-1.5 delivers stronger performance in coding, math, reasoning, and instruction-following capability, while still maintaining excellent capabilities in language understanding, commonsense reasoning, and reading comprehension.
Yi-1.5 comes in 3 model sizes: 34B, 9B, and 6B. For model details and benchmarks, see [Model Card](https://huggingface.co/collections/01-ai/yi-15-2024-05-663f3ecab5f815a3eaca7ca8).
## News
- 2024-05-13: The Yi-1.5 series models are open-sourced, further improving coding, math, reasoning, and instruction-following abilities.
## Requirements
- Make sure Python 3.10 or a later version is installed.
- Set up the environment and install the required packages.
```bash
pip install -r requirements.txt
```
- Download the Yi-1.5 model from [Hugging Face](https://huggingface.co/01-ai), [ModelScope](https://www.modelscope.cn/organization/01ai/), or [WiseModel](https://wisemodel.cn/organization/01.AI).
## Quick Start
This tutorial runs Yi-1.5-34B-Chat locally on an A800 (80G).
> **💡 Tip**: If you want to get started with the Yi model and explore different methods for inference, check out the [Yi Cookbook](https://github.com/01-ai/Yi/tree/main/Cookbook).
```python
from transformers import AutoModelForCausalLM, AutoTokenizer
model_path = '<your-model-path>'
tokenizer = AutoTokenizer.from_pretrained(model_path, use_fast=False)
# Since transformers 4.35.0, the GPT-Q/AWQ model can be loaded using AutoModelForCausalLM.
model = AutoModelForCausalLM.from_pretrained(
model_path,
device_map="auto",
torch_dtype='auto'
).eval()
# Prompt content: "hi"
messages = [
{"role": "user", "content": "hi"}
]
input_ids = tokenizer.apply_chat_template(conversation=messages, tokenize=True, return_tensors='pt')
output_ids = model.generate(input_ids.to('cuda'), eos_token_id=tokenizer.eos_token_id)
response = tokenizer.decode(output_ids[0][input_ids.shape[1]:], skip_special_tokens=True)
# Model response: "Hello! How can I assist you today?"
print(response)
```
### Ollama
You can run Yi-1.5 models on Ollama locally.
1. After [installing Ollama](https://github.com/ollama/ollama/tree/main/docs), you can start the Ollama service. Note that keep this service running while you use Ollama.
```python
ollama serve
```
2. Run Yi-1.5 models. For more Yi models supported by Ollama, see [Yi tags](https://ollama.com/library/yi/tags).
```python
ollama run yi:v1.5
```
3. Chat with Yi-1.5 via OpenAI-compatible API. For more details on how to use Yi-1.5 via OpenAI API and REST API on Ollama, see [Ollama docs](https://github.com/ollama/ollama/tree/main/docs).
```python
from openai import OpenAI
client = OpenAI(
base_url='http://localhost:11434/v1/',
api_key='ollama', # required but ignored
)
chat_completion = client.chat.completions.create(
messages=[
{
'role': 'user',
'content': 'What is your name',
}
],
model='yi:1.5',
)
```
## Deployment
Prerequisites: Before deploying Yi-1.5 models, make sure you meet the [software and hardware requirements](https://github.com/01-ai/Yi/tree/main?tab=readme-ov-file#software-requirements).
### vLLM
Prerequisites: Download the latest version of [vLLM](https://docs.vllm.ai/en/latest/getting_started/installation.html).
1. Start the server with a chat model.
```bash
python -m vllm.entrypoints.openai.api_server --model 01-ai/Yi-1.5-9B-Chat --served-model-name Yi-1.5-9B-Chat
```
2. Use the chat API.
- HTTP
```bash
curl http://localhost:8000/v1/chat/completions \
-H "Content-Type: application/json" \
-d '{
"model": "Yi-1.5-9B-Chat",
"messages": [
{"role": "system", "content": "You are a helpful assistant."},
{"role": "user", "content": "Who won the world series in 2020?"}
]
}'
```
- Python client
```python
from openai import OpenAI
# Set OpenAI's API key and API base to use vLLM's API server.
openai_api_key = "EMPTY"
openai_api_base = "http://localhost:8000/v1"
client = OpenAI(
api_key=openai_api_key,
base_url=openai_api_base,
)
chat_response = client.chat.completions.create(
model="Yi-1.5-9B-Chat",
messages=[
{"role": "system", "content": "You are a helpful assistant."},
{"role": "user", "content": "Tell me a joke."},
]
)
print("Chat response:", chat_response)
```
## Web Demo
You can activate Yi-1.5-34B-Chat through the [huggingface chat ui](https://huggingface.co/chat/settings/01-ai/Yi-1.5-34B-Chat/) then experience it.
Or you can build it locally by yourself, as follows:
```
python demo/web_demo.py -c <your-model-path>
```
## Fine-tuning
You can use [LLaMA-Factory](https://github.com/hiyouga/LLaMA-Factory), [Swift](https://github.com/modelscope/swift), [XTuner](https://github.com/InternLM/xtuner), and [Firefly](https://github.com/yangjianxin1/Firefly) for fine-tuning. These frameworks all support fine-tuning the Yi series models.
## API
Yi APIs are OpenAI-compatible and provided at [Yi Platform](https://platform.lingyiwanwu.com/). Sign up to get free tokens, and you can also pay-as-you-go at a competitive price. Additionally, Yi APIs are also deployed on [Replicate](https://replicate.com/search?query=01+ai) and [OpenRouter](https://openrouter.ai/models?q=01%20ai).
## License
The code and weights of the Yi-1.5 series models are distributed under the [Apache 2.0 license](https://github.com/01-ai/Yi/blob/main/LICENSE).
If you create derivative works based on this model, please include the following attribution in your derivative works:
This work is a derivative of [The Yi-1.5 Series Model You Base On] by 01.AI, used under the Apache 2.0 License.
<p align="right"> [
<a href="#top">Back to top ⬆️ </a> ]
</p>
| 7,319 | README | md | en | markdown | text | {"qsc_doc_frac_chars_curly_bracket": 0.00191283, "qsc_doc_frac_words_redpajama_stop": 0.1281768, "qsc_doc_num_sentences": 138.0, "qsc_doc_num_words": 1100, "qsc_doc_num_chars": 7319.0, "qsc_doc_num_lines": 212.0, "qsc_doc_mean_word_length": 4.46818182, "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.35181818, "qsc_doc_entropy_unigram": 5.35178857, "qsc_doc_frac_words_all_caps": 0.0198895, "qsc_doc_frac_lines_dupe_lines": 0.25503356, "qsc_doc_frac_chars_dupe_lines": 0.05333333, "qsc_doc_frac_chars_top_2grams": 0.0128179, "qsc_doc_frac_chars_top_3grams": 0.01709054, "qsc_doc_frac_chars_top_4grams": 0.0128179, "qsc_doc_frac_chars_dupe_5grams": 0.21485249, "qsc_doc_frac_chars_dupe_6grams": 0.15808749, "qsc_doc_frac_chars_dupe_7grams": 0.09643947, "qsc_doc_frac_chars_dupe_8grams": 0.08748728, "qsc_doc_frac_chars_dupe_9grams": 0.06632757, "qsc_doc_frac_chars_dupe_10grams": 0.06632757, "qsc_doc_frac_chars_replacement_symbols": 0.0, "qsc_doc_cate_code_related_file_name": 1.0, "qsc_doc_num_chars_sentence_length_mean": 19.91428571, "qsc_doc_frac_chars_hyperlink_html_tag": 0.23391174, "qsc_doc_frac_chars_alphabet": 0.78061732, "qsc_doc_frac_chars_digital": 0.03169598, "qsc_doc_frac_chars_whitespace": 0.17666348, "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/actors/buffs/Momentum.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.actors.buffs;
import com.shatteredpixel.shatteredpixeldungeon.messages.Messages;
import com.shatteredpixel.shatteredpixeldungeon.ui.BuffIndicator;
import com.watabou.noosa.Image;
import com.watabou.utils.Bundle;
public class Momentum extends Buff {
{
type = buffType.POSITIVE;
}
private int stacks = 0;
private int turnsSinceMove = 0;
@Override
public boolean act() {
turnsSinceMove++;
if (turnsSinceMove > 0){
stacks = Math.max(0, stacks - turnsSinceMove);
BuffIndicator.refreshHero();
if (stacks == 0) detach();
}
spend(TICK);
return true;
}
public void gainStack(){
stacks = Math.min(stacks+1, 10);
turnsSinceMove = -1;
BuffIndicator.refreshHero();
}
public int stacks(){
return stacks;
}
public float speedMultiplier(){
//1.33x speed at max stacks
return 1f + (stacks/30f);
}
public int evasionBonus( int excessArmorStr ){
//8 evasion, +2 evasion per excess str, at max stacks
return Math.round((0.8f + 0.2f*excessArmorStr) * stacks);
}
@Override
public int icon() {
return BuffIndicator.MOMENTUM;
}
@Override
public void tintIcon(Image icon) {
if (stacks <= 5) {
icon.hardlight(0.2f * (stacks - 1), 1f, 0f);
} else {
icon.hardlight(1f, 1f - 0.2f*(stacks - 6), 0f);
}
}
@Override
public String toString() {
return Messages.get(this, "name");
}
@Override
public String desc() {
return Messages.get(this, "desc", stacks*10);
}
private static final String STACKS = "stacks";
private static final String TURNS_SINCE = "turnsSinceMove";
@Override
public void storeInBundle(Bundle bundle) {
super.storeInBundle(bundle);
bundle.put(STACKS, stacks);
bundle.put(TURNS_SINCE, turnsSinceMove);
}
@Override
public void restoreFromBundle(Bundle bundle) {
super.restoreFromBundle(bundle);
stacks = bundle.getInt(STACKS);
turnsSinceMove = bundle.getInt(TURNS_SINCE);
}
}
| 2,733 | Momentum | java | en | java | code | {"qsc_code_num_words": 347, "qsc_code_num_chars": 2733.0, "qsc_code_mean_word_length": 5.57060519, "qsc_code_frac_words_unique": 0.45821326, "qsc_code_frac_chars_top_2grams": 0.0506984, "qsc_code_frac_chars_top_3grams": 0.02017589, "qsc_code_frac_chars_top_4grams": 0.02948784, "qsc_code_frac_chars_dupe_5grams": 0.08587688, "qsc_code_frac_chars_dupe_6grams": 0.07242628, "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.02337079, "qsc_code_frac_chars_whitespace": 0.18587633, "qsc_code_size_file_byte": 2733.0, "qsc_code_num_lines": 110.0, "qsc_code_num_chars_line_max": 72.0, "qsc_code_num_chars_line_mean": 24.84545455, "qsc_code_frac_chars_alphabet": 0.84539326, "qsc_code_frac_chars_comments": 0.31503842, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.12676056, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.01495726, "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.15492958, "qsc_codejava_score_lines_no_logic": 0.25352113, "qsc_codejava_frac_words_no_modifier": 0.91666667, "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/actors/buffs/Chill.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.actors.buffs;
import com.shatteredpixel.shatteredpixeldungeon.actors.Char;
import com.shatteredpixel.shatteredpixeldungeon.messages.Messages;
import com.shatteredpixel.shatteredpixeldungeon.sprites.CharSprite;
import com.shatteredpixel.shatteredpixeldungeon.ui.BuffIndicator;
import java.text.DecimalFormat;
public class Chill extends FlavourBuff {
{
type = buffType.NEGATIVE;
announced = true;
}
@Override
public boolean attachTo(Char target) {
//can't chill what's frozen!
if (target.buff(Frost.class) != null) return false;
if (super.attachTo(target)){
Buff.detach( target, Burning.class );
return true;
} else {
return false;
}
}
//reduces speed by 10% for every turn remaining, capping at 50%
public float speedFactor(){
return Math.max(0.5f, 1 - cooldown()*0.1f);
}
@Override
public int icon() {
return BuffIndicator.FROST;
}
@Override
public void fx(boolean on) {
if (on) target.sprite.add(CharSprite.State.CHILLED);
else target.sprite.remove(CharSprite.State.CHILLED);
}
@Override
public String toString() {
return Messages.get(this, "name");
}
@Override
public String desc() {
return Messages.get(this, "desc", dispTurns(), new DecimalFormat("#.##").format((1f-speedFactor())*100f));
}
}
| 2,094 | Chill | java | en | java | code | {"qsc_code_num_words": 275, "qsc_code_num_chars": 2094.0, "qsc_code_mean_word_length": 5.58909091, "qsc_code_frac_words_unique": 0.56727273, "qsc_code_frac_chars_top_2grams": 0.05530254, "qsc_code_frac_chars_top_3grams": 0.12361744, "qsc_code_frac_chars_top_4grams": 0.11450878, "qsc_code_frac_chars_dupe_5grams": 0.05335068, "qsc_code_frac_chars_dupe_6grams": 0.03643461, "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.01711352, "qsc_code_frac_chars_whitespace": 0.16284623, "qsc_code_size_file_byte": 2094.0, "qsc_code_num_lines": 75.0, "qsc_code_num_chars_line_max": 109.0, "qsc_code_num_chars_line_mean": 27.92, "qsc_code_frac_chars_alphabet": 0.85966914, "qsc_code_frac_chars_comments": 0.41642789, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.11904762, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.00981997, "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.14285714, "qsc_codejava_score_lines_no_logic": 0.33333333, "qsc_codejava_frac_words_no_modifier": 0.85714286, "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/actors/buffs/Poison.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.actors.buffs;
import com.shatteredpixel.shatteredpixeldungeon.Badges;
import com.shatteredpixel.shatteredpixeldungeon.Dungeon;
import com.shatteredpixel.shatteredpixeldungeon.actors.Char;
import com.shatteredpixel.shatteredpixeldungeon.actors.hero.Hero;
import com.shatteredpixel.shatteredpixeldungeon.effects.CellEmitter;
import com.shatteredpixel.shatteredpixeldungeon.effects.particles.PoisonParticle;
import com.shatteredpixel.shatteredpixeldungeon.items.rings.RingOfElements;
import com.shatteredpixel.shatteredpixeldungeon.messages.Messages;
import com.shatteredpixel.shatteredpixeldungeon.ui.BuffIndicator;
import com.shatteredpixel.shatteredpixeldungeon.utils.GLog;
import com.watabou.noosa.Image;
import com.watabou.utils.Bundle;
public class Poison extends Buff implements Hero.Doom {
protected float left;
private static final String LEFT = "left";
{
type = buffType.NEGATIVE;
announced = true;
}
@Override
public void storeInBundle( Bundle bundle ) {
super.storeInBundle( bundle );
bundle.put( LEFT, left );
}
@Override
public void restoreFromBundle( Bundle bundle ) {
super.restoreFromBundle( bundle );
left = bundle.getFloat( LEFT );
}
public void set( float duration ) {
this.left = Math.max(duration, left);
}
public void extend( float duration ) {
this.left += duration;
}
@Override
public int icon() {
return BuffIndicator.POISON;
}
@Override
public void tintIcon(Image icon) {
icon.hardlight(0.6f, 0.2f, 0.6f);
}
@Override
public String toString() {
return Messages.get(this, "name");
}
@Override
public String heroMessage() {
return Messages.get(this, "heromsg");
}
@Override
public String desc() {
return Messages.get(this, "desc", dispTurns(left));
}
@Override
public boolean attachTo(Char target) {
if (super.attachTo(target) && target.sprite != null){
CellEmitter.center(target.pos).burst( PoisonParticle.SPLASH, 5 );
return true;
} else
return false;
}
@Override
public boolean act() {
if (target.isAlive()) {
target.damage( (int)(left / 3) + 1, this );
spend( TICK );
if ((left -= TICK) <= 0) {
detach();
}
} else {
detach();
}
return true;
}
@Override
public void onDeath() {
Badges.validateDeathFromPoison();
Dungeon.fail( getClass() );
GLog.n( Messages.get(this, "ondeath") );
}
}
| 3,205 | Poison | java | en | java | code | {"qsc_code_num_words": 381, "qsc_code_num_chars": 3205.0, "qsc_code_mean_word_length": 6.09448819, "qsc_code_frac_words_unique": 0.45406824, "qsc_code_frac_chars_top_2grams": 0.04651163, "qsc_code_frac_chars_top_3grams": 0.18001723, "qsc_code_frac_chars_top_4grams": 0.18949182, "qsc_code_frac_chars_dupe_5grams": 0.12230835, "qsc_code_frac_chars_dupe_6grams": 0.02411714, "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.01016184, "qsc_code_frac_chars_whitespace": 0.17098284, "qsc_code_size_file_byte": 3205.0, "qsc_code_num_lines": 129.0, "qsc_code_num_chars_line_max": 82.0, "qsc_code_num_chars_line_mean": 24.84496124, "qsc_code_frac_chars_alphabet": 0.86375612, "qsc_code_frac_chars_comments": 0.24368175, "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.01072607, "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.14285714, "qsc_codejava_score_lines_no_logic": 0.3452381, "qsc_codejava_frac_words_no_modifier": 0.92307692, "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/actors/buffs/Cripple.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.actors.buffs;
import com.shatteredpixel.shatteredpixeldungeon.messages.Messages;
import com.shatteredpixel.shatteredpixeldungeon.ui.BuffIndicator;
public class Cripple extends FlavourBuff {
public static final float DURATION = 10f;
{
type = buffType.NEGATIVE;
announced = true;
}
@Override
public int icon() {
return BuffIndicator.CRIPPLE;
}
@Override
public String toString() {
return Messages.get(this, "name");
}
@Override
public String heroMessage() {
return Messages.get(this, "heromsg");
}
@Override
public String desc() {
return Messages.get(this, "desc", dispTurns());
}
}
| 1,449 | Cripple | java | en | java | code | {"qsc_code_num_words": 190, "qsc_code_num_chars": 1449.0, "qsc_code_mean_word_length": 5.63157895, "qsc_code_frac_words_unique": 0.6, "qsc_code_frac_chars_top_2grams": 0.05233645, "qsc_code_frac_chars_top_3grams": 0.0364486, "qsc_code_frac_chars_top_4grams": 0.05327103, "qsc_code_frac_chars_dupe_5grams": 0.07663551, "qsc_code_frac_chars_dupe_6grams": 0.05233645, "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.0159396, "qsc_code_frac_chars_whitespace": 0.1773637, "qsc_code_size_file_byte": 1449.0, "qsc_code_num_lines": 54.0, "qsc_code_num_chars_line_max": 72.0, "qsc_code_num_chars_line_mean": 26.83333333, "qsc_code_frac_chars_alphabet": 0.88171141, "qsc_code_frac_chars_comments": 0.53899241, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.15384615, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.02245509, "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.15384615, "qsc_codejava_score_lines_no_logic": 0.26923077, "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/actors/buffs/Slow.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.actors.buffs;
import com.shatteredpixel.shatteredpixeldungeon.actors.Char;
import com.shatteredpixel.shatteredpixeldungeon.items.rings.RingOfElements;
import com.shatteredpixel.shatteredpixeldungeon.messages.Messages;
import com.shatteredpixel.shatteredpixeldungeon.ui.BuffIndicator;
public class Slow extends FlavourBuff {
{
type = buffType.NEGATIVE;
announced = true;
}
public static final float DURATION = 10f;
@Override
public int icon() {
return BuffIndicator.SLOW;
}
@Override
public String toString() {
return Messages.get(this, "name");
}
@Override
public String desc() {
return Messages.get(this, "desc", dispTurns());
}
}
| 1,495 | Slow | java | en | java | code | {"qsc_code_num_words": 194, "qsc_code_num_chars": 1495.0, "qsc_code_mean_word_length": 5.80927835, "qsc_code_frac_words_unique": 0.59793814, "qsc_code_frac_chars_top_2grams": 0.07542147, "qsc_code_frac_chars_top_3grams": 0.16858917, "qsc_code_frac_chars_top_4grams": 0.15616681, "qsc_code_frac_chars_dupe_5grams": 0.07275954, "qsc_code_frac_chars_dupe_6grams": 0.04968944, "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.01522436, "qsc_code_frac_chars_whitespace": 0.16521739, "qsc_code_size_file_byte": 1495.0, "qsc_code_num_lines": 52.0, "qsc_code_num_chars_line_max": 76.0, "qsc_code_num_chars_line_mean": 28.75, "qsc_code_frac_chars_alphabet": 0.88782051, "qsc_code_frac_chars_comments": 0.52240803, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.125, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.01120448, "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.125, "qsc_codejava_score_lines_no_logic": 0.33333333, "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/actors/buffs/Vertigo.java | /*
* 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.actors.buffs;
import com.shatteredpixel.shatteredpixeldungeon.actors.Char;
import com.shatteredpixel.shatteredpixeldungeon.items.rings.RingOfElements;
import com.shatteredpixel.shatteredpixeldungeon.messages.Messages;
import com.shatteredpixel.shatteredpixeldungeon.ui.BuffIndicator;
public class Vertigo extends FlavourBuff {
public static final float DURATION = 10f;
{
type = buffType.NEGATIVE;
announced = true;
}
@Override
public int icon() {
return BuffIndicator.VERTIGO;
}
@Override
public String toString() {
return Messages.get(this, "name");
}
@Override
public String desc() {
return Messages.get(this, "desc", dispTurns());
}
}
| 1,412 | Vertigo | java | en | java | code | {"qsc_code_num_words": 183, "qsc_code_num_chars": 1412.0, "qsc_code_mean_word_length": 5.84699454, "qsc_code_frac_words_unique": 0.59562842, "qsc_code_frac_chars_top_2grams": 0.07943925, "qsc_code_frac_chars_top_3grams": 0.17757009, "qsc_code_frac_chars_top_4grams": 0.16448598, "qsc_code_frac_chars_dupe_5grams": 0.07663551, "qsc_code_frac_chars_dupe_6grams": 0.05233645, "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.00929054, "qsc_code_frac_chars_whitespace": 0.16147309, "qsc_code_size_file_byte": 1412.0, "qsc_code_num_lines": 48.0, "qsc_code_num_chars_line_max": 76.0, "qsc_code_num_chars_line_mean": 29.41666667, "qsc_code_frac_chars_alphabet": 0.89442568, "qsc_code_frac_chars_comments": 0.4907932, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.125, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.01112656, "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.125, "qsc_codejava_score_lines_no_logic": 0.33333333, "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": 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/actors/buffs/Roots.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.actors.buffs;
import com.shatteredpixel.shatteredpixeldungeon.actors.Char;
import com.shatteredpixel.shatteredpixeldungeon.messages.Messages;
import com.shatteredpixel.shatteredpixeldungeon.ui.BuffIndicator;
public class Roots extends FlavourBuff {
{
type = buffType.NEGATIVE;
announced = true;
}
@Override
public boolean attachTo( Char target ) {
if (!target.flying && super.attachTo( target )) {
target.rooted = true;
return true;
} else {
return false;
}
}
@Override
public void detach() {
target.rooted = false;
super.detach();
}
@Override
public int icon() {
return BuffIndicator.ROOTS;
}
@Override
public String toString() {
return Messages.get(this, "name");
}
@Override
public String heroMessage() {
return Messages.get(this, "heromsg");
}
@Override
public String desc() {
return Messages.get(this, "desc", dispTurns());
}
}
| 1,728 | Roots | java | en | java | code | {"qsc_code_num_words": 219, "qsc_code_num_chars": 1728.0, "qsc_code_mean_word_length": 5.71689498, "qsc_code_frac_words_unique": 0.54794521, "qsc_code_frac_chars_top_2grams": 0.06709265, "qsc_code_frac_chars_top_3grams": 0.12140575, "qsc_code_frac_chars_top_4grams": 0.04552716, "qsc_code_frac_chars_dupe_5grams": 0.06549521, "qsc_code_frac_chars_dupe_6grams": 0.04472843, "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.01203966, "qsc_code_frac_chars_whitespace": 0.18287037, "qsc_code_size_file_byte": 1728.0, "qsc_code_num_lines": 69.0, "qsc_code_num_chars_line_max": 72.0, "qsc_code_num_chars_line_mean": 25.04347826, "qsc_code_frac_chars_alphabet": 0.87464589, "qsc_code_frac_chars_comments": 0.45196759, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.15, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.01583949, "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.15, "qsc_codejava_score_lines_no_logic": 0.3, "qsc_codejava_frac_words_no_modifier": 0.85714286, "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/actors/buffs/EarthImbue.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.actors.buffs;
import com.shatteredpixel.shatteredpixeldungeon.actors.Char;
import com.shatteredpixel.shatteredpixeldungeon.effects.CellEmitter;
import com.shatteredpixel.shatteredpixeldungeon.effects.particles.EarthParticle;
import com.shatteredpixel.shatteredpixeldungeon.messages.Messages;
import com.shatteredpixel.shatteredpixeldungeon.ui.BuffIndicator;
import com.watabou.noosa.Image;
//pre-0.7.0, otherwise unused
public class EarthImbue extends FlavourBuff {
{
type = buffType.POSITIVE;
announced = true;
}
public static final float DURATION = 30f;
public void proc(Char enemy){
Buff.affect(enemy, Cripple.class, 2);
CellEmitter.bottom(enemy.pos).start(EarthParticle.FACTORY, 0.05f, 8);
}
@Override
public int icon() {
return BuffIndicator.ROOTS;
}
@Override
public void tintIcon(Image icon) {
greyIcon(icon, 5f, cooldown());
}
@Override
public String toString() {
return Messages.get(this, "name");
}
@Override
public String desc() {
return Messages.get(this, "desc", dispTurns());
}
} | 1,870 | EarthImbue | java | en | java | code | {"qsc_code_num_words": 242, "qsc_code_num_chars": 1870.0, "qsc_code_mean_word_length": 5.83057851, "qsc_code_frac_words_unique": 0.59090909, "qsc_code_frac_chars_top_2grams": 0.07228916, "qsc_code_frac_chars_top_3grams": 0.16158753, "qsc_code_frac_chars_top_4grams": 0.15591779, "qsc_code_frac_chars_dupe_5grams": 0.13040397, "qsc_code_frac_chars_dupe_6grams": 0.03968816, "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.01769912, "qsc_code_frac_chars_whitespace": 0.1540107, "qsc_code_size_file_byte": 1870.0, "qsc_code_num_lines": 65.0, "qsc_code_num_chars_line_max": 81.0, "qsc_code_num_chars_line_mean": 28.76923077, "qsc_code_frac_chars_alphabet": 0.87420986, "qsc_code_frac_chars_comments": 0.43315508, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.11764706, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.00754006, "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.14705882, "qsc_codejava_score_lines_no_logic": 0.35294118, "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/actors/buffs/PinCushion.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.actors.buffs;
import com.shatteredpixel.shatteredpixeldungeon.Dungeon;
import com.shatteredpixel.shatteredpixeldungeon.items.Item;
import com.shatteredpixel.shatteredpixeldungeon.items.weapon.missiles.MissileWeapon;
import com.watabou.utils.Bundle;
import java.util.ArrayList;
import java.util.Collection;
public class PinCushion extends Buff {
private ArrayList<MissileWeapon> items = new ArrayList<>();
public void stick(MissileWeapon projectile){
for (Item item : items){
if (item.isSimilar(projectile)){
item.merge(projectile);
return;
}
}
items.add(projectile);
}
@Override
public void detach() {
for (Item item : items)
Dungeon.level.drop( item, target.pos).sprite.drop();
super.detach();
}
private static final String ITEMS = "items";
@Override
public void storeInBundle(Bundle bundle) {
bundle.put( ITEMS , items );
super.storeInBundle(bundle);
}
@Override
public void restoreFromBundle(Bundle bundle) {
items = new ArrayList<>((Collection<MissileWeapon>) ((Collection<?>) bundle.getCollection(ITEMS)));
super.restoreFromBundle( bundle );
}
}
| 1,939 | PinCushion | java | en | java | code | {"qsc_code_num_words": 245, "qsc_code_num_chars": 1939.0, "qsc_code_mean_word_length": 5.89795918, "qsc_code_frac_words_unique": 0.51020408, "qsc_code_frac_chars_top_2grams": 0.04705882, "qsc_code_frac_chars_top_3grams": 0.10519031, "qsc_code_frac_chars_top_4grams": 0.03944637, "qsc_code_frac_chars_dupe_5grams": 0.12456747, "qsc_code_frac_chars_dupe_6grams": 0.03875433, "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.01042305, "qsc_code_frac_chars_whitespace": 0.15884477, "qsc_code_size_file_byte": 1939.0, "qsc_code_num_lines": 65.0, "qsc_code_num_chars_line_max": 102.0, "qsc_code_num_chars_line_mean": 29.83076923, "qsc_code_frac_chars_alphabet": 0.87553648, "qsc_code_frac_chars_comments": 0.40278494, "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.00431779, "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.11111111, "qsc_codejava_score_lines_no_logic": 0.33333333, "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/actors/buffs/Bleeding.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.actors.buffs;
import com.shatteredpixel.shatteredpixeldungeon.Dungeon;
import com.shatteredpixel.shatteredpixeldungeon.effects.Splash;
import com.shatteredpixel.shatteredpixeldungeon.messages.Messages;
import com.shatteredpixel.shatteredpixeldungeon.ui.BuffIndicator;
import com.shatteredpixel.shatteredpixeldungeon.utils.GLog;
import com.watabou.utils.Bundle;
import com.watabou.utils.PointF;
import static com.watabou.utils.Random.NormalFloat;
public class Bleeding extends Buff {
{
type = buffType.NEGATIVE;
announced = true;
}
protected float level;
private static final String LEVEL = "level";
@Override
public void storeInBundle( Bundle bundle ) {
super.storeInBundle( bundle );
bundle.put( LEVEL, level );
}
@Override
public void restoreFromBundle( Bundle bundle ) {
super.restoreFromBundle( bundle );
level = bundle.getFloat( LEVEL );
}
public void set( float level ) {
this.level = Math.max(this.level, level);
}
@Override
public int icon() {
return BuffIndicator.BLEEDING;
}
@Override
public String toString() {
return Messages.get(this, "name");
}
@Override
public boolean act() {
if (target.isAlive()) {
level = NormalFloat(level / 2f, level);
int dmg = Math.round(level);
if (dmg > 0) {
target.damage( dmg, this );
if (target.sprite.visible) {
Splash.at( target.sprite.center(), -PointF.PI / 2, PointF.PI / 6,
target.sprite.blood(), Math.min( 10 * dmg / target.HT, 10 ) );
}
if (target == Dungeon.hero && !target.isAlive()) {
Dungeon.fail( getClass() );
GLog.n( Messages.get(this, "ondeath") );
}
spend( TICK );
} else {
detach();
}
} else {
detach();
}
return true;
}
@Override
public String heroMessage() {
return Messages.get(this, "heromsg");
}
@Override
public String desc() {
return Messages.get(this, "desc", Math.round(level));
}
}
| 2,772 | Bleeding | java | en | java | code | {"qsc_code_num_words": 339, "qsc_code_num_chars": 2772.0, "qsc_code_mean_word_length": 5.66371681, "qsc_code_frac_words_unique": 0.4719764, "qsc_code_frac_chars_top_2grams": 0.0328125, "qsc_code_frac_chars_top_3grams": 0.11875, "qsc_code_frac_chars_top_4grams": 0.11458333, "qsc_code_frac_chars_dupe_5grams": 0.071875, "qsc_code_frac_chars_dupe_6grams": 0.02916667, "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.01124606, "qsc_code_frac_chars_whitespace": 0.19805195, "qsc_code_size_file_byte": 2772.0, "qsc_code_num_lines": 114.0, "qsc_code_num_chars_line_max": 72.0, "qsc_code_num_chars_line_mean": 24.31578947, "qsc_code_frac_chars_alphabet": 0.85245164, "qsc_code_frac_chars_comments": 0.28174603, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.15714286, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.01356102, "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.11428571, "qsc_codejava_score_lines_no_logic": 0.25714286, "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} |
00-Evan/shattered-pixel-dungeon-gdx | core/src/com/shatteredpixel/shatteredpixeldungeon/actors/buffs/Shadows.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.actors.buffs;
import com.shatteredpixel.shatteredpixeldungeon.Assets;
import com.shatteredpixel.shatteredpixeldungeon.Dungeon;
import com.shatteredpixel.shatteredpixeldungeon.actors.Char;
import com.shatteredpixel.shatteredpixeldungeon.messages.Messages;
import com.shatteredpixel.shatteredpixeldungeon.ui.BuffIndicator;
import com.watabou.noosa.Image;
import com.watabou.noosa.audio.Sample;
import com.watabou.utils.Bundle;
public class Shadows extends Invisibility {
protected float left;
private static final String LEFT = "left";
{
announced = false;
}
@Override
public void storeInBundle( Bundle bundle ) {
super.storeInBundle( bundle );
bundle.put( LEFT, left );
}
@Override
public void restoreFromBundle( Bundle bundle ) {
super.restoreFromBundle( bundle );
left = bundle.getFloat( LEFT );
}
@Override
public boolean attachTo( Char target ) {
if (super.attachTo( target )) {
Sample.INSTANCE.play( Assets.SND_MELD );
if (Dungeon.level != null)
Dungeon.observe();
return true;
} else {
return false;
}
}
@Override
public void detach() {
super.detach();
Dungeon.observe();
}
@Override
public boolean act() {
if (target.isAlive()) {
spend( TICK * 2 );
if (--left <= 0 || Dungeon.hero.visibleEnemies() > 0) {
detach();
}
} else {
detach();
}
return true;
}
public void prolong() {
left = 2;
}
@Override
public int icon() {
return BuffIndicator.SHADOWS;
}
@Override
public void tintIcon(Image icon) {
icon.resetColor();
}
@Override
public String toString() {
return Messages.get(this, "name");
}
@Override
public String desc() {
return Messages.get(this, "desc");
}
}
| 2,555 | Shadows | java | en | java | code | {"qsc_code_num_words": 308, "qsc_code_num_chars": 2555.0, "qsc_code_mean_word_length": 5.83766234, "qsc_code_frac_words_unique": 0.48051948, "qsc_code_frac_chars_top_2grams": 0.07007786, "qsc_code_frac_chars_top_3grams": 0.12680756, "qsc_code_frac_chars_top_4grams": 0.12235818, "qsc_code_frac_chars_dupe_5grams": 0.04560623, "qsc_code_frac_chars_dupe_6grams": 0.03114572, "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.01019913, "qsc_code_frac_chars_whitespace": 0.19412916, "qsc_code_size_file_byte": 2555.0, "qsc_code_num_lines": 115.0, "qsc_code_num_chars_line_max": 72.0, "qsc_code_num_chars_line_mean": 22.2173913, "qsc_code_frac_chars_alphabet": 0.86304031, "qsc_code_frac_chars_comments": 0.30567515, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.23287671, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.00676437, "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.1369863, "qsc_codejava_score_lines_no_logic": 0.31506849, "qsc_codejava_frac_words_no_modifier": 0.90909091, "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/actors/buffs/Doom.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.actors.buffs;
import com.shatteredpixel.shatteredpixeldungeon.messages.Messages;
import com.shatteredpixel.shatteredpixeldungeon.sprites.CharSprite;
import com.shatteredpixel.shatteredpixeldungeon.ui.BuffIndicator;
public class Doom extends Buff {
{
type = buffType.NEGATIVE;
announced = true;
}
@Override
public void fx(boolean on) {
if (on) target.sprite.add( CharSprite.State.DARKENED );
else if (target.invisible == 0) target.sprite.remove( CharSprite.State.DARKENED );
}
@Override
public int icon() {
return BuffIndicator.CORRUPT;
}
@Override
public String toString() {
return Messages.get(this, "name");
}
@Override
public String desc() {
return Messages.get(this, "desc");
}
}
| 1,556 | Doom | java | en | java | code | {"qsc_code_num_words": 205, "qsc_code_num_chars": 1556.0, "qsc_code_mean_word_length": 5.62926829, "qsc_code_frac_words_unique": 0.59512195, "qsc_code_frac_chars_top_2grams": 0.05892548, "qsc_code_frac_chars_top_3grams": 0.13171577, "qsc_code_frac_chars_top_4grams": 0.04939341, "qsc_code_frac_chars_dupe_5grams": 0.07105719, "qsc_code_frac_chars_dupe_6grams": 0.04852686, "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.01395349, "qsc_code_frac_chars_whitespace": 0.17095116, "qsc_code_size_file_byte": 1556.0, "qsc_code_num_lines": 55.0, "qsc_code_num_chars_line_max": 85.0, "qsc_code_num_chars_line_mean": 28.29090909, "qsc_code_frac_chars_alphabet": 0.88062016, "qsc_code_frac_chars_comments": 0.50192802, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.14814815, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.01032258, "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.14814815, "qsc_codejava_score_lines_no_logic": 0.2962963, "qsc_codejava_frac_words_no_modifier": 0.8, "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} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.