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/PrisonLevel.java
/* * Pixel Dungeon * Copyright (C) 2012-2015 Oleg Dolya * * Shattered Pixel Dungeon * Copyright (C) 2014-2019 Evan Debenham * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/> */ package com.shatteredpixel.shatteredpixeldungeon.levels; import com.shatteredpixel.shatteredpixeldungeon.Assets; import com.shatteredpixel.shatteredpixeldungeon.Dungeon; import com.shatteredpixel.shatteredpixeldungeon.actors.mobs.npcs.Wandmaker; import com.watabou.noosa.Halo; import com.shatteredpixel.shatteredpixeldungeon.effects.particles.FlameParticle; import com.shatteredpixel.shatteredpixeldungeon.levels.painters.Painter; import com.shatteredpixel.shatteredpixeldungeon.levels.painters.PrisonPainter; import com.shatteredpixel.shatteredpixeldungeon.levels.rooms.Room; import com.shatteredpixel.shatteredpixeldungeon.levels.traps.AlarmTrap; import com.shatteredpixel.shatteredpixeldungeon.levels.traps.BurningTrap; import com.shatteredpixel.shatteredpixeldungeon.levels.traps.ChillingTrap; import com.shatteredpixel.shatteredpixeldungeon.levels.traps.ConfusionTrap; import com.shatteredpixel.shatteredpixeldungeon.levels.traps.FlockTrap; import com.shatteredpixel.shatteredpixeldungeon.levels.traps.GrippingTrap; import com.shatteredpixel.shatteredpixeldungeon.levels.traps.OozeTrap; import com.shatteredpixel.shatteredpixeldungeon.levels.traps.PoisonDartTrap; import com.shatteredpixel.shatteredpixeldungeon.levels.traps.ShockingTrap; import com.shatteredpixel.shatteredpixeldungeon.levels.traps.SummoningTrap; import com.shatteredpixel.shatteredpixeldungeon.levels.traps.TeleportationTrap; import com.shatteredpixel.shatteredpixeldungeon.levels.traps.ToxicTrap; import com.shatteredpixel.shatteredpixeldungeon.messages.Messages; import com.shatteredpixel.shatteredpixeldungeon.tiles.DungeonTilemap; import com.watabou.noosa.Group; import com.watabou.noosa.particles.Emitter; import com.watabou.utils.PointF; import com.watabou.utils.Random; import java.util.ArrayList; public class PrisonLevel extends RegularLevel { { color1 = 0x6a723d; color2 = 0x88924c; } @Override protected ArrayList<Room> initRooms() { return Wandmaker.Quest.spawnRoom(super.initRooms()); } @Override protected int standardRooms() { //6 to 8, average 6.66 return 6+Random.chances(new float[]{4, 2, 2}); } @Override protected int specialRooms() { //1 to 3, average 1.83 return 1+Random.chances(new float[]{3, 4, 3}); } @Override protected Painter painter() { return new PrisonPainter() .setWater(feeling == Feeling.WATER ? 0.90f : 0.30f, 4) .setGrass(feeling == Feeling.GRASS ? 0.80f : 0.20f, 3) .setTraps(nTraps(), trapClasses(), trapChances()); } @Override public String tilesTex() { return Assets.TILES_PRISON; } @Override public String waterTex() { return Assets.WATER_PRISON; } @Override protected Class<?>[] trapClasses() { return new Class[]{ ChillingTrap.class, ShockingTrap.class, ToxicTrap.class, BurningTrap.class, PoisonDartTrap.class, AlarmTrap.class, OozeTrap.class, GrippingTrap.class, ConfusionTrap.class, FlockTrap.class, SummoningTrap.class, TeleportationTrap.class, }; } @Override protected float[] trapChances() { return new float[]{ 8, 8, 8, 8, 8, 4, 4, 4, 2, 2, 2, 2 }; } @Override public String tileName( int tile ) { switch (tile) { case Terrain.WATER: return Messages.get(PrisonLevel.class, "water_name"); default: return super.tileName( tile ); } } @Override public String tileDesc(int tile) { switch (tile) { case Terrain.EMPTY_DECO: return Messages.get(PrisonLevel.class, "empty_deco_desc"); case Terrain.BOOKSHELF: return Messages.get(PrisonLevel.class, "bookshelf_desc"); default: return super.tileDesc( tile ); } } @Override public Group addVisuals() { super.addVisuals(); addPrisonVisuals(this, visuals); return visuals; } public static void addPrisonVisuals(Level level, Group group){ for (int i=0; i < level.length(); i++) { if (level.map[i] == Terrain.WALL_DECO) { group.add( new Torch( i ) ); } } } public static class Torch extends Emitter { private int pos; public Torch( int pos ) { super(); this.pos = pos; PointF p = DungeonTilemap.tileCenterToWorld( pos ); pos( p.x - 1, p.y + 2, 2, 0 ); pour( FlameParticle.FACTORY, 0.15f ); add( new Halo( 12, 0xFFFFCC, 0.4f ).point( p.x, p.y + 1 ) ); } @Override public void update() { if (visible = (pos < Dungeon.level.heroFOV.length && Dungeon.level.heroFOV[pos])) { super.update(); } } } }
5,180
PrisonLevel
java
en
java
code
{"qsc_code_num_words": 614, "qsc_code_num_chars": 5180.0, "qsc_code_mean_word_length": 6.27361564, "qsc_code_frac_words_unique": 0.34690554, "qsc_code_frac_chars_top_2grams": 0.06074766, "qsc_code_frac_chars_top_3grams": 0.21703011, "qsc_code_frac_chars_top_4grams": 0.23987539, "qsc_code_frac_chars_dupe_5grams": 0.27596054, "qsc_code_frac_chars_dupe_6grams": 0.2305296, "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.0199095, "qsc_code_frac_chars_whitespace": 0.14671815, "qsc_code_size_file_byte": 5180.0, "qsc_code_num_lines": 169.0, "qsc_code_num_chars_line_max": 120.0, "qsc_code_num_chars_line_mean": 30.65088757, "qsc_code_frac_chars_alphabet": 0.85158371, "qsc_code_frac_chars_comments": 0.15926641, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.1300813, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.00895317, "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.00550964, "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.08130081, "qsc_codejava_score_lines_no_logic": 0.32520325, "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}
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/HallsLevel.java
/* * Pixel Dungeon * Copyright (C) 2012-2015 Oleg Dolya * * Shattered Pixel Dungeon * Copyright (C) 2014-2019 Evan Debenham * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/> */ package com.shatteredpixel.shatteredpixeldungeon.levels; import com.shatteredpixel.shatteredpixeldungeon.Assets; import com.shatteredpixel.shatteredpixeldungeon.Dungeon; import com.shatteredpixel.shatteredpixeldungeon.items.Torch; import com.shatteredpixel.shatteredpixeldungeon.levels.painters.HallsPainter; import com.shatteredpixel.shatteredpixeldungeon.levels.painters.Painter; import com.shatteredpixel.shatteredpixeldungeon.levels.traps.BlazingTrap; import com.shatteredpixel.shatteredpixeldungeon.levels.traps.CorrosionTrap; import com.shatteredpixel.shatteredpixeldungeon.levels.traps.CursingTrap; import com.shatteredpixel.shatteredpixeldungeon.levels.traps.DisarmingTrap; import com.shatteredpixel.shatteredpixeldungeon.levels.traps.DisintegrationTrap; import com.shatteredpixel.shatteredpixeldungeon.levels.traps.DistortionTrap; import com.shatteredpixel.shatteredpixeldungeon.levels.traps.ExplosiveTrap; import com.shatteredpixel.shatteredpixeldungeon.levels.traps.FlashingTrap; import com.shatteredpixel.shatteredpixeldungeon.levels.traps.FrostTrap; import com.shatteredpixel.shatteredpixeldungeon.levels.traps.GrimTrap; import com.shatteredpixel.shatteredpixeldungeon.levels.traps.GuardianTrap; import com.shatteredpixel.shatteredpixeldungeon.levels.traps.PitfallTrap; import com.shatteredpixel.shatteredpixeldungeon.levels.traps.RockfallTrap; import com.shatteredpixel.shatteredpixeldungeon.levels.traps.StormTrap; import com.shatteredpixel.shatteredpixeldungeon.levels.traps.SummoningTrap; import com.shatteredpixel.shatteredpixeldungeon.levels.traps.WarpingTrap; import com.shatteredpixel.shatteredpixeldungeon.levels.traps.WeakeningTrap; import com.shatteredpixel.shatteredpixeldungeon.messages.Messages; import com.shatteredpixel.shatteredpixeldungeon.tiles.DungeonTilemap; import com.watabou.glwrap.Blending; import com.watabou.noosa.Game; import com.watabou.noosa.Group; import com.watabou.noosa.particles.PixelParticle; import com.watabou.utils.PointF; import com.watabou.utils.Random; public class HallsLevel extends RegularLevel { { viewDistance = Math.min( 26 - Dungeon.depth, viewDistance ); color1 = 0x801500; color2 = 0xa68521; } @Override protected int standardRooms() { //8 to 10, average 8.67 return 8+Random.chances(new float[]{3, 2, 1}); } @Override protected int specialRooms() { //2 to 3, average 2.5 return 2 + Random.chances(new float[]{1, 1}); } @Override protected Painter painter() { return new HallsPainter() .setWater(feeling == Feeling.WATER ? 0.70f : 0.15f, 6) .setGrass(feeling == Feeling.GRASS ? 0.65f : 0.10f, 3) .setTraps(nTraps(), trapClasses(), trapChances()); } @Override public void create() { addItemToSpawn( new Torch() ); super.create(); } @Override public String tilesTex() { return Assets.TILES_HALLS; } @Override public String waterTex() { return Assets.WATER_HALLS; } @Override protected Class<?>[] trapClasses() { return new Class[]{ FrostTrap.class, StormTrap.class, CorrosionTrap.class, BlazingTrap.class, DisintegrationTrap.class, ExplosiveTrap.class, RockfallTrap.class, FlashingTrap.class, GuardianTrap.class, WeakeningTrap.class, SummoningTrap.class, WarpingTrap.class, CursingTrap.class, GrimTrap.class, PitfallTrap.class, DisarmingTrap.class, DistortionTrap.class }; } @Override protected float[] trapChances() { return new float[]{ 8, 8, 8, 8, 8, 4, 4, 4, 4, 4, 2, 2, 2, 2, 1, 1, 1 }; } @Override public String tileName( int tile ) { switch (tile) { case Terrain.WATER: return Messages.get(HallsLevel.class, "water_name"); case Terrain.GRASS: return Messages.get(HallsLevel.class, "grass_name"); case Terrain.HIGH_GRASS: return Messages.get(HallsLevel.class, "high_grass_name"); case Terrain.STATUE: case Terrain.STATUE_SP: return Messages.get(HallsLevel.class, "statue_name"); default: return super.tileName( tile ); } } @Override public String tileDesc(int tile) { switch (tile) { case Terrain.WATER: return Messages.get(HallsLevel.class, "water_desc"); case Terrain.STATUE: case Terrain.STATUE_SP: return Messages.get(HallsLevel.class, "statue_desc"); case Terrain.BOOKSHELF: return Messages.get(HallsLevel.class, "bookshelf_desc"); default: return super.tileDesc( tile ); } } @Override public Group addVisuals() { super.addVisuals(); addHallsVisuals( this, visuals ); return visuals; } public static void addHallsVisuals( Level level, Group group ) { for (int i=0; i < level.length(); i++) { if (level.map[i] == Terrain.WATER) { group.add( new Stream( i ) ); } } } private static class Stream extends Group { private int pos; private float delay; public Stream( int pos ) { super(); this.pos = pos; delay = Random.Float( 2 ); } @Override public void update() { if (visible = (pos < Dungeon.level.heroFOV.length && Dungeon.level.heroFOV[pos])) { super.update(); if ((delay -= Game.elapsed) <= 0) { delay = Random.Float( 2 ); PointF p = DungeonTilemap.tileToWorld( pos ); ((FireParticle)recycle( FireParticle.class )).reset( p.x + Random.Float( DungeonTilemap.SIZE ), p.y + Random.Float( DungeonTilemap.SIZE ) ); } } } @Override public void draw() { Blending.setLightMode(); super.draw(); Blending.setNormalMode(); } } public static class FireParticle extends PixelParticle.Shrinking { public FireParticle() { super(); color( 0xEE7722 ); lifespan = 1f; acc.set( 0, +80 ); } public void reset( float x, float y ) { revive(); this.x = x; this.y = y; left = lifespan; speed.set( 0, -40 ); size = 4; } @Override public void update() { super.update(); float p = left / lifespan; am = p > 0.8f ? (1 - p) * 5 : 1; } } }
6,718
HallsLevel
java
en
java
code
{"qsc_code_num_words": 774, "qsc_code_num_chars": 6718.0, "qsc_code_mean_word_length": 6.2622739, "qsc_code_frac_words_unique": 0.2997416, "qsc_code_frac_chars_top_2grams": 0.05570456, "qsc_code_frac_chars_top_3grams": 0.19599752, "qsc_code_frac_chars_top_4grams": 0.21786672, "qsc_code_frac_chars_dupe_5grams": 0.31504023, "qsc_code_frac_chars_dupe_6grams": 0.30307407, "qsc_code_frac_chars_dupe_7grams": 0.0594182, "qsc_code_frac_chars_dupe_8grams": 0.0594182, "qsc_code_frac_chars_dupe_9grams": 0.0594182, "qsc_code_frac_chars_dupe_10grams": 0.0594182, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.01857143, "qsc_code_frac_chars_whitespace": 0.16641858, "qsc_code_size_file_byte": 6718.0, "qsc_code_num_lines": 234.0, "qsc_code_num_chars_line_max": 122.0, "qsc_code_num_chars_line_mean": 28.70940171, "qsc_code_frac_chars_alphabet": 0.84696429, "qsc_code_frac_chars_comments": 0.12280441, "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.01374512, "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.00407263, "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.08092486, "qsc_codejava_score_lines_no_logic": 0.27745665, "qsc_codejava_frac_words_no_modifier": 0.93333333, "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/CavesLevel.java
/* * Pixel Dungeon * Copyright (C) 2012-2015 Oleg Dolya * * Shattered Pixel Dungeon * Copyright (C) 2014-2019 Evan Debenham * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/> */ package com.shatteredpixel.shatteredpixeldungeon.levels; import com.shatteredpixel.shatteredpixeldungeon.Assets; import com.shatteredpixel.shatteredpixeldungeon.Dungeon; import com.shatteredpixel.shatteredpixeldungeon.actors.mobs.npcs.Blacksmith; import com.shatteredpixel.shatteredpixeldungeon.levels.painters.CavesPainter; import com.shatteredpixel.shatteredpixeldungeon.levels.painters.Painter; import com.shatteredpixel.shatteredpixeldungeon.levels.rooms.Room; import com.shatteredpixel.shatteredpixeldungeon.levels.traps.BurningTrap; import com.shatteredpixel.shatteredpixeldungeon.levels.traps.ConfusionTrap; import com.shatteredpixel.shatteredpixeldungeon.levels.traps.CorrosionTrap; import com.shatteredpixel.shatteredpixeldungeon.levels.traps.ExplosiveTrap; import com.shatteredpixel.shatteredpixeldungeon.levels.traps.FrostTrap; import com.shatteredpixel.shatteredpixeldungeon.levels.traps.GrippingTrap; import com.shatteredpixel.shatteredpixeldungeon.levels.traps.GuardianTrap; import com.shatteredpixel.shatteredpixeldungeon.levels.traps.PitfallTrap; import com.shatteredpixel.shatteredpixeldungeon.levels.traps.PoisonDartTrap; import com.shatteredpixel.shatteredpixeldungeon.levels.traps.RockfallTrap; import com.shatteredpixel.shatteredpixeldungeon.levels.traps.StormTrap; import com.shatteredpixel.shatteredpixeldungeon.levels.traps.SummoningTrap; import com.shatteredpixel.shatteredpixeldungeon.levels.traps.WarpingTrap; import com.shatteredpixel.shatteredpixeldungeon.messages.Messages; import com.shatteredpixel.shatteredpixeldungeon.tiles.DungeonTilemap; import com.watabou.noosa.Game; import com.watabou.noosa.Group; import com.watabou.noosa.particles.PixelParticle; import com.watabou.utils.PointF; import com.watabou.utils.Random; import java.util.ArrayList; public class CavesLevel extends RegularLevel { { color1 = 0x534f3e; color2 = 0xb9d661; viewDistance = Math.min(6, viewDistance); } @Override protected ArrayList<Room> initRooms() { return Blacksmith.Quest.spawn(super.initRooms()); } @Override protected int standardRooms() { //6 to 9, average 7.333 return 6+Random.chances(new float[]{2, 3, 3, 1}); } @Override protected int specialRooms() { //1 to 3, average 2.2 return 1+Random.chances(new float[]{2, 4, 4}); } @Override protected Painter painter() { return new CavesPainter() .setWater(feeling == Feeling.WATER ? 0.85f : 0.30f, 6) .setGrass(feeling == Feeling.GRASS ? 0.65f : 0.15f, 3) .setTraps(nTraps(), trapClasses(), trapChances()); } @Override public String tilesTex() { return Assets.TILES_CAVES; } @Override public String waterTex() { return Assets.WATER_CAVES; } @Override protected Class<?>[] trapClasses() { return new Class[]{ BurningTrap.class, PoisonDartTrap.class, FrostTrap.class, StormTrap.class, CorrosionTrap.class, GrippingTrap.class, ExplosiveTrap.class, RockfallTrap.class, GuardianTrap.class, ConfusionTrap.class, SummoningTrap.class, WarpingTrap.class, PitfallTrap.class }; } @Override protected float[] trapChances() { return new float[]{ 8, 8, 8, 8, 8, 4, 4, 4, 4, 2, 2, 2, 1 }; } @Override public String tileName( int tile ) { switch (tile) { case Terrain.GRASS: return Messages.get(CavesLevel.class, "grass_name"); case Terrain.HIGH_GRASS: return Messages.get(CavesLevel.class, "high_grass_name"); case Terrain.WATER: return Messages.get(CavesLevel.class, "water_name"); default: return super.tileName( tile ); } } @Override public String tileDesc( int tile ) { switch (tile) { case Terrain.ENTRANCE: return Messages.get(CavesLevel.class, "entrance_desc"); case Terrain.EXIT: return Messages.get(CavesLevel.class, "exit_desc"); case Terrain.HIGH_GRASS: return Messages.get(CavesLevel.class, "high_grass_desc"); case Terrain.WALL_DECO: return Messages.get(CavesLevel.class, "wall_deco_desc"); case Terrain.BOOKSHELF: return Messages.get(CavesLevel.class, "bookshelf_desc"); default: return super.tileDesc( tile ); } } @Override public Group addVisuals() { super.addVisuals(); addCavesVisuals( this, visuals ); return visuals; } public static void addCavesVisuals( Level level, Group group ) { for (int i=0; i < level.length(); i++) { if (level.map[i] == Terrain.WALL_DECO) { group.add( new Vein( i ) ); } } } private static class Vein extends Group { private int pos; private float delay; public Vein( int pos ) { super(); this.pos = pos; delay = Random.Float( 2 ); } @Override public void update() { if (visible = (pos < Dungeon.level.heroFOV.length && Dungeon.level.heroFOV[pos])) { super.update(); if ((delay -= Game.elapsed) <= 0) { //pickaxe can remove the ore, should remove the sparkling too. if (Dungeon.level.map[pos] != Terrain.WALL_DECO){ kill(); return; } delay = Random.Float(); PointF p = DungeonTilemap.tileToWorld( pos ); ((Sparkle)recycle( Sparkle.class )).reset( p.x + Random.Float( DungeonTilemap.SIZE ), p.y + Random.Float( DungeonTilemap.SIZE ) ); } } } } public static final class Sparkle extends PixelParticle { public void reset( float x, float y ) { revive(); this.x = x; this.y = y; left = lifespan = 0.5f; } @Override public void update() { super.update(); float p = left / lifespan; size( (am = p < 0.5f ? p * 2 : (1 - p) * 2) * 2 ); } } }
6,330
CavesLevel
java
en
java
code
{"qsc_code_num_words": 748, "qsc_code_num_chars": 6330.0, "qsc_code_mean_word_length": 6.0828877, "qsc_code_frac_words_unique": 0.30614973, "qsc_code_frac_chars_top_2grams": 0.05142857, "qsc_code_frac_chars_top_3grams": 0.18373626, "qsc_code_frac_chars_top_4grams": 0.20307692, "qsc_code_frac_chars_dupe_5grams": 0.30373626, "qsc_code_frac_chars_dupe_6grams": 0.2421978, "qsc_code_frac_chars_dupe_7grams": 0.02681319, "qsc_code_frac_chars_dupe_8grams": 0.02681319, "qsc_code_frac_chars_dupe_9grams": 0.02681319, "qsc_code_frac_chars_dupe_10grams": 0.02681319, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.01651167, "qsc_code_frac_chars_whitespace": 0.16761453, "qsc_code_size_file_byte": 6330.0, "qsc_code_num_lines": 218.0, "qsc_code_num_chars_line_max": 118.0, "qsc_code_num_chars_line_mean": 29.03669725, "qsc_code_frac_chars_alphabet": 0.8470298, "qsc_code_frac_chars_comments": 0.14012638, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.14465409, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.01836885, "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.00293902, "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.0754717, "qsc_codejava_score_lines_no_logic": 0.27672956, "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/levels/Level.java
/* * Pixel Dungeon * Copyright (C) 2012-2015 Oleg Dolya * * Shattered Pixel Dungeon * Copyright (C) 2014-2019 Evan Debenham * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/> */ package com.shatteredpixel.shatteredpixeldungeon.levels; import com.shatteredpixel.shatteredpixeldungeon.Assets; import com.shatteredpixel.shatteredpixeldungeon.Challenges; import com.shatteredpixel.shatteredpixeldungeon.Dungeon; import com.shatteredpixel.shatteredpixeldungeon.ShatteredPixelDungeon; import com.shatteredpixel.shatteredpixeldungeon.Statistics; import com.shatteredpixel.shatteredpixeldungeon.actors.Actor; import com.shatteredpixel.shatteredpixeldungeon.actors.Char; import com.shatteredpixel.shatteredpixeldungeon.actors.blobs.Blob; import com.shatteredpixel.shatteredpixeldungeon.actors.blobs.SmokeScreen; import com.shatteredpixel.shatteredpixeldungeon.actors.blobs.WellWater; import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Awareness; import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Blindness; import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Buff; import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.LockedFloor; import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.MagicalSight; import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.MindVision; import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Shadows; import com.shatteredpixel.shatteredpixeldungeon.actors.hero.Hero; import com.shatteredpixel.shatteredpixeldungeon.actors.hero.HeroClass; import com.shatteredpixel.shatteredpixeldungeon.actors.hero.HeroSubClass; import com.shatteredpixel.shatteredpixeldungeon.actors.mobs.Bestiary; import com.shatteredpixel.shatteredpixeldungeon.actors.mobs.Mob; import com.shatteredpixel.shatteredpixeldungeon.actors.mobs.npcs.Sheep; import com.shatteredpixel.shatteredpixeldungeon.effects.particles.FlowParticle; import com.shatteredpixel.shatteredpixeldungeon.effects.particles.WindParticle; import com.shatteredpixel.shatteredpixeldungeon.items.Generator; import com.shatteredpixel.shatteredpixeldungeon.items.Heap; import com.shatteredpixel.shatteredpixeldungeon.items.Item; import com.shatteredpixel.shatteredpixeldungeon.items.Stylus; import com.shatteredpixel.shatteredpixeldungeon.items.Torch; import com.shatteredpixel.shatteredpixeldungeon.items.artifacts.DriedRose; import com.shatteredpixel.shatteredpixeldungeon.items.artifacts.TimekeepersHourglass; import com.shatteredpixel.shatteredpixeldungeon.items.food.SmallRation; import com.shatteredpixel.shatteredpixeldungeon.items.potions.PotionOfStrength; import com.shatteredpixel.shatteredpixeldungeon.items.scrolls.ScrollOfUpgrade; import com.shatteredpixel.shatteredpixeldungeon.items.stones.StoneOfEnchantment; import com.shatteredpixel.shatteredpixeldungeon.items.stones.StoneOfIntuition; import com.shatteredpixel.shatteredpixeldungeon.items.wands.WandOfWarding; import com.shatteredpixel.shatteredpixeldungeon.levels.features.Chasm; import com.shatteredpixel.shatteredpixeldungeon.levels.features.Door; import com.shatteredpixel.shatteredpixeldungeon.levels.features.HighGrass; import com.shatteredpixel.shatteredpixeldungeon.levels.painters.Painter; import com.shatteredpixel.shatteredpixeldungeon.levels.traps.Trap; import com.shatteredpixel.shatteredpixeldungeon.mechanics.ShadowCaster; import com.shatteredpixel.shatteredpixeldungeon.messages.Messages; import com.shatteredpixel.shatteredpixeldungeon.plants.Plant; import com.shatteredpixel.shatteredpixeldungeon.plants.Swiftthistle; import com.shatteredpixel.shatteredpixeldungeon.scenes.GameScene; import com.shatteredpixel.shatteredpixeldungeon.sprites.ItemSprite; import com.shatteredpixel.shatteredpixeldungeon.tiles.CustomTilemap; import com.shatteredpixel.shatteredpixeldungeon.utils.BArray; import com.shatteredpixel.shatteredpixeldungeon.utils.GLog; import com.watabou.noosa.Game; import com.watabou.noosa.Group; import com.watabou.noosa.audio.Sample; import com.watabou.utils.Bundlable; import com.watabou.utils.Bundle; import com.watabou.utils.PathFinder; import com.watabou.utils.Point; import com.watabou.utils.Random; import com.watabou.utils.Reflection; import com.watabou.utils.SparseArray; import java.util.ArrayList; import java.util.Arrays; import java.util.Collection; import java.util.HashMap; import java.util.HashSet; public abstract class Level implements Bundlable { public static enum Feeling { NONE, CHASM, WATER, GRASS, DARK } protected int width; protected int height; protected int length; protected static final float TIME_TO_RESPAWN = 50; public int version; public int[] map; public boolean[] visited; public boolean[] mapped; public boolean[] discoverable; public int viewDistance = Dungeon.isChallenged( Challenges.DARKNESS ) ? 2 : 8; public boolean[] heroFOV; public boolean[] passable; public boolean[] losBlocking; public boolean[] flamable; public boolean[] secret; public boolean[] solid; public boolean[] avoid; public boolean[] water; public boolean[] pit; public Feeling feeling = Feeling.NONE; public int entrance; public int exit; //when a boss level has become locked. public boolean locked = false; public HashSet<Mob> mobs; public SparseArray<Heap> heaps; public HashMap<Class<? extends Blob>,Blob> blobs; public SparseArray<Plant> plants; public SparseArray<Trap> traps; public HashSet<CustomTilemap> customTiles; public HashSet<CustomTilemap> customWalls; protected ArrayList<Item> itemsToSpawn = new ArrayList<>(); protected Group visuals; public int color1 = 0x004400; public int color2 = 0x88CC44; private static final String VERSION = "version"; private static final String WIDTH = "width"; private static final String HEIGHT = "height"; private static final String MAP = "map"; private static final String VISITED = "visited"; private static final String MAPPED = "mapped"; private static final String ENTRANCE = "entrance"; private static final String EXIT = "exit"; private static final String LOCKED = "locked"; private static final String HEAPS = "heaps"; private static final String PLANTS = "plants"; private static final String TRAPS = "traps"; private static final String CUSTOM_TILES= "customTiles"; private static final String CUSTOM_WALLS= "customWalls"; private static final String MOBS = "mobs"; private static final String BLOBS = "blobs"; private static final String FEELING = "feeling"; public void create() { Random.seed( Dungeon.seedCurDepth() ); if (!(Dungeon.bossLevel() || Dungeon.depth == 21) /*final shop floor*/) { if (Dungeon.isChallenged(Challenges.NO_FOOD)){ addItemToSpawn( new SmallRation() ); } else { addItemToSpawn(Generator.random(Generator.Category.FOOD)); } if (Dungeon.isChallenged(Challenges.DARKNESS)){ addItemToSpawn( new Torch() ); } if (Dungeon.posNeeded()) { addItemToSpawn( new PotionOfStrength() ); Dungeon.LimitedDrops.STRENGTH_POTIONS.count++; } if (Dungeon.souNeeded()) { addItemToSpawn( new ScrollOfUpgrade() ); Dungeon.LimitedDrops.UPGRADE_SCROLLS.count++; } if (Dungeon.asNeeded()) { addItemToSpawn( new Stylus() ); Dungeon.LimitedDrops.ARCANE_STYLI.count++; } //one scroll of transmutation is guaranteed to spawn somewhere on chapter 2-4 int enchChapter = (int)((Dungeon.seed / 10) % 3) + 1; if ( Dungeon.depth / 5 == enchChapter && Dungeon.seed % 4 + 1 == Dungeon.depth % 5){ addItemToSpawn( new StoneOfEnchantment() ); } if ( Dungeon.depth == ((Dungeon.seed % 3) + 1)){ addItemToSpawn( new StoneOfIntuition() ); } DriedRose rose = Dungeon.hero.belongings.getItem( DriedRose.class ); if (rose != null && rose.isIdentified() && !rose.cursed){ //aim to drop 1 petal every 2 floors int petalsNeeded = (int) Math.ceil((float)((Dungeon.depth / 2) - rose.droppedPetals) / 3); for (int i=1; i <= petalsNeeded; i++) { //the player may miss a single petal and still max their rose. if (rose.droppedPetals < 11) { addItemToSpawn(new DriedRose.Petal()); rose.droppedPetals++; } } } if (Dungeon.depth > 1) { switch (Random.Int( 10 )) { case 0: if (!Dungeon.bossLevel( Dungeon.depth + 1 )) { feeling = Feeling.CHASM; } break; case 1: feeling = Feeling.WATER; break; case 2: feeling = Feeling.GRASS; break; case 3: feeling = Feeling.DARK; addItemToSpawn(new Torch()); viewDistance = Math.round(viewDistance/2f); break; } } } do { width = height = length = 0; mobs = new HashSet<>(); heaps = new SparseArray<>(); blobs = new HashMap<>(); plants = new SparseArray<>(); traps = new SparseArray<>(); customTiles = new HashSet<>(); customWalls = new HashSet<>(); } while (!build()); buildFlagMaps(); cleanWalls(); createMobs(); createItems(); Random.seed(); } public void setSize(int w, int h){ width = w; height = h; length = w * h; map = new int[length]; Arrays.fill( map, feeling == Level.Feeling.CHASM ? Terrain.CHASM : Terrain.WALL ); visited = new boolean[length]; mapped = new boolean[length]; heroFOV = new boolean[length]; passable = new boolean[length]; losBlocking = new boolean[length]; flamable = new boolean[length]; secret = new boolean[length]; solid = new boolean[length]; avoid = new boolean[length]; water = new boolean[length]; pit = new boolean[length]; PathFinder.setMapSize(w, h); } public void reset() { for (Mob mob : mobs.toArray( new Mob[0] )) { if (!mob.reset()) { mobs.remove( mob ); } } createMobs(); } @Override public void restoreFromBundle( Bundle bundle ) { version = bundle.getInt( VERSION ); //saves from before 0.6.5c are not supported if (version < ShatteredPixelDungeon.v0_6_5c){ throw new RuntimeException("old save"); } setSize( bundle.getInt(WIDTH), bundle.getInt(HEIGHT)); mobs = new HashSet<>(); heaps = new SparseArray<>(); blobs = new HashMap<>(); plants = new SparseArray<>(); traps = new SparseArray<>(); customTiles = new HashSet<>(); customWalls = new HashSet<>(); map = bundle.getIntArray( MAP ); visited = bundle.getBooleanArray( VISITED ); mapped = bundle.getBooleanArray( MAPPED ); entrance = bundle.getInt( ENTRANCE ); exit = bundle.getInt( EXIT ); locked = bundle.getBoolean( LOCKED ); Collection<Bundlable> collection = bundle.getCollection( HEAPS ); for (Bundlable h : collection) { Heap heap = (Heap)h; if (!heap.isEmpty()) heaps.put( heap.pos, heap ); } collection = bundle.getCollection( PLANTS ); for (Bundlable p : collection) { Plant plant = (Plant)p; plants.put( plant.pos, plant ); } collection = bundle.getCollection( TRAPS ); for (Bundlable p : collection) { Trap trap = (Trap)p; traps.put( trap.pos, trap ); } collection = bundle.getCollection( CUSTOM_TILES ); for (Bundlable p : collection) { CustomTilemap vis = (CustomTilemap)p; customTiles.add(vis); } collection = bundle.getCollection( CUSTOM_WALLS ); for (Bundlable p : collection) { CustomTilemap vis = (CustomTilemap)p; customWalls.add(vis); } collection = bundle.getCollection( MOBS ); for (Bundlable m : collection) { Mob mob = (Mob)m; if (mob != null) { mobs.add( mob ); } } collection = bundle.getCollection( BLOBS ); for (Bundlable b : collection) { Blob blob = (Blob)b; blobs.put( blob.getClass(), blob ); } feeling = bundle.getEnum( FEELING, Feeling.class ); if (feeling == Feeling.DARK) viewDistance = Math.round(viewDistance/2f); if (bundle.contains( "mobs_to_spawn" )) { for (Class<? extends Mob> mob : bundle.getClassArray("mobs_to_spawn")) { if (mob != null) mobsToSpawn.add(mob); } } buildFlagMaps(); cleanWalls(); } @Override public void storeInBundle( Bundle bundle ) { bundle.put( VERSION, Game.versionCode ); bundle.put( WIDTH, width ); bundle.put( HEIGHT, height ); bundle.put( MAP, map ); bundle.put( VISITED, visited ); bundle.put( MAPPED, mapped ); bundle.put( ENTRANCE, entrance ); bundle.put( EXIT, exit ); bundle.put( LOCKED, locked ); bundle.put( HEAPS, heaps.valueList() ); bundle.put( PLANTS, plants.valueList() ); bundle.put( TRAPS, traps.valueList() ); bundle.put( CUSTOM_TILES, customTiles ); bundle.put( CUSTOM_WALLS, customWalls ); bundle.put( MOBS, mobs ); bundle.put( BLOBS, blobs.values() ); bundle.put( FEELING, feeling ); bundle.put( "mobs_to_spawn", mobsToSpawn.toArray(new Class[0])); } public int tunnelTile() { return feeling == Feeling.CHASM ? Terrain.EMPTY_SP : Terrain.EMPTY; } public int width() { return width; } public int height() { return height; } public int length() { return length; } public String tilesTex() { return null; } public String waterTex() { return null; } abstract protected boolean build(); private ArrayList<Class<?extends Mob>> mobsToSpawn = new ArrayList<>(); public Mob createMob() { if (mobsToSpawn == null || mobsToSpawn.isEmpty()) { mobsToSpawn = Bestiary.getMobRotation(Dungeon.depth); } return Reflection.newInstance(mobsToSpawn.remove(0)); } abstract protected void createMobs(); abstract protected void createItems(); public void seal(){ if (!locked) { locked = true; Buff.affect(Dungeon.hero, LockedFloor.class); } } public void unseal(){ if (locked) { locked = false; } } public Group addVisuals() { if (visuals == null || visuals.parent == null){ visuals = new Group(); } else { visuals.clear(); visuals.camera = null; } for (int i=0; i < length(); i++) { if (pit[i]) { visuals.add( new WindParticle.Wind( i ) ); if (i >= width() && water[i-width()]) { visuals.add( new FlowParticle.Flow( i - width() ) ); } } } return visuals; } public int nMobs() { return 0; } public Mob findMob( int pos ){ for (Mob mob : mobs){ if (mob.pos == pos){ return mob; } } return null; } public Actor respawner() { return new Actor() { { actPriority = BUFF_PRIO; //as if it were a buff. } @Override protected boolean act() { int count = 0; for (Mob mob : mobs.toArray(new Mob[0])){ if (mob.alignment == Char.Alignment.ENEMY) count++; } if (count < nMobs()) { Mob mob = createMob(); mob.state = mob.WANDERING; mob.pos = randomRespawnCell(); if (Dungeon.hero.isAlive() && mob.pos != -1 && distance(Dungeon.hero.pos, mob.pos) >= 4) { GameScene.add( mob ); if (Statistics.amuletObtained) { mob.beckon( Dungeon.hero.pos ); } } } spend(respawnTime()); return true; } }; } public float respawnTime(){ if (Statistics.amuletObtained){ return TIME_TO_RESPAWN/2f; } else if (Dungeon.level.feeling == Feeling.DARK){ return 2*TIME_TO_RESPAWN/3f; } else { return TIME_TO_RESPAWN; } } public int randomRespawnCell() { int cell; do { cell = Random.Int( length() ); } while ((Dungeon.level == this && heroFOV[cell]) || !passable[cell] || Actor.findChar( cell ) != null); return cell; } public int randomDestination() { int cell; do { cell = Random.Int( length() ); } while (!passable[cell]); return cell; } public void addItemToSpawn( Item item ) { if (item != null) { itemsToSpawn.add( item ); } } public Item findPrizeItem(){ return findPrizeItem(null); } public Item findPrizeItem(Class<?extends Item> match){ if (itemsToSpawn.size() == 0) return null; if (match == null){ Item item = Random.element(itemsToSpawn); itemsToSpawn.remove(item); return item; } for (Item item : itemsToSpawn){ if (match.isInstance(item)){ itemsToSpawn.remove( item ); return item; } } return null; } public void buildFlagMaps() { for (int i=0; i < length(); i++) { int flags = Terrain.flags[map[i]]; passable[i] = (flags & Terrain.PASSABLE) != 0; losBlocking[i] = (flags & Terrain.LOS_BLOCKING) != 0; flamable[i] = (flags & Terrain.FLAMABLE) != 0; secret[i] = (flags & Terrain.SECRET) != 0; solid[i] = (flags & Terrain.SOLID) != 0; avoid[i] = (flags & Terrain.AVOID) != 0; water[i] = (flags & Terrain.LIQUID) != 0; pit[i] = (flags & Terrain.PIT) != 0; } SmokeScreen s = (SmokeScreen)blobs.get(SmokeScreen.class); if (s != null && s.volume > 0){ for (int i=0; i < length(); i++) { losBlocking[i] = losBlocking[i] || s.cur[i] > 0; } } int lastRow = length() - width(); for (int i=0; i < width(); i++) { passable[i] = avoid[i] = false; losBlocking[i] = true; passable[lastRow + i] = avoid[lastRow + i] = false; losBlocking[lastRow + i] = true; } for (int i=width(); i < lastRow; i += width()) { passable[i] = avoid[i] = false; losBlocking[i] = true; passable[i + width()-1] = avoid[i + width()-1] = false; losBlocking[i + width()-1] = true; } } public void destroy( int pos ) { set( pos, Terrain.EMBERS ); } protected void cleanWalls() { discoverable = new boolean[length()]; for (int i=0; i < length(); i++) { boolean d = false; for (int j=0; j < PathFinder.NEIGHBOURS9.length; j++) { int n = i + PathFinder.NEIGHBOURS9[j]; if (n >= 0 && n < length() && map[n] != Terrain.WALL && map[n] != Terrain.WALL_DECO) { d = true; break; } } discoverable[i] = d; } } public static void set( int cell, int terrain ){ set( cell, terrain, Dungeon.level ); } public static void set( int cell, int terrain, Level level ) { Painter.set( level, cell, terrain ); if (terrain != Terrain.TRAP && terrain != Terrain.SECRET_TRAP && terrain != Terrain.INACTIVE_TRAP){ level.traps.remove( cell ); } int flags = Terrain.flags[terrain]; level.passable[cell] = (flags & Terrain.PASSABLE) != 0; level.losBlocking[cell] = (flags & Terrain.LOS_BLOCKING) != 0; level.flamable[cell] = (flags & Terrain.FLAMABLE) != 0; level.secret[cell] = (flags & Terrain.SECRET) != 0; level.solid[cell] = (flags & Terrain.SOLID) != 0; level.avoid[cell] = (flags & Terrain.AVOID) != 0; level.pit[cell] = (flags & Terrain.PIT) != 0; level.water[cell] = terrain == Terrain.WATER; SmokeScreen s = (SmokeScreen)level.blobs.get(SmokeScreen.class); if (s != null && s.volume > 0){ level.losBlocking[cell] = level.losBlocking[cell] || s.cur[cell] > 0; } } public Heap drop( Item item, int cell ) { if (item == null || Challenges.isItemBlocked(item)){ //create a dummy heap, give it a dummy sprite, don't add it to the game, and return it. //effectively nullifies whatever the logic calling this wants to do, including dropping items. Heap heap = new Heap(); ItemSprite sprite = heap.sprite = new ItemSprite(); sprite.link(heap); return heap; } Heap heap = heaps.get( cell ); if (heap == null) { heap = new Heap(); heap.seen = Dungeon.level == this && heroFOV[cell]; heap.pos = cell; heap.drop(item); if (map[cell] == Terrain.CHASM || (Dungeon.level != null && pit[cell])) { Dungeon.dropToChasm( item ); GameScene.discard( heap ); } else { heaps.put( cell, heap ); GameScene.add( heap ); } } else if (heap.type == Heap.Type.LOCKED_CHEST || heap.type == Heap.Type.CRYSTAL_CHEST) { int n; do { n = cell + PathFinder.NEIGHBOURS8[Random.Int( 8 )]; } while (!passable[n] && !avoid[n]); return drop( item, n ); } else { heap.drop(item); } if (Dungeon.level != null) { pressCell( cell ); } return heap; } public Plant plant( Plant.Seed seed, int pos ) { if (Dungeon.isChallenged(Challenges.NO_HERBALISM)){ return null; } Plant plant = plants.get( pos ); if (plant != null) { plant.wither(); } if (map[pos] == Terrain.HIGH_GRASS || map[pos] == Terrain.FURROWED_GRASS || map[pos] == Terrain.EMPTY || map[pos] == Terrain.EMBERS || map[pos] == Terrain.EMPTY_DECO) { set(pos, Terrain.GRASS, this); GameScene.updateMap(pos); } plant = seed.couch( pos, this ); plants.put( pos, plant ); GameScene.plantSeed( pos ); return plant; } public void uproot( int pos ) { plants.remove(pos); GameScene.updateMap( pos ); plants.remove( pos ); } public Trap setTrap( Trap trap, int pos ){ Trap existingTrap = traps.get(pos); if (existingTrap != null){ traps.remove( pos ); } trap.set( pos ); traps.put( pos, trap ); GameScene.updateMap( pos ); return trap; } public void disarmTrap( int pos ) { set(pos, Terrain.INACTIVE_TRAP); GameScene.updateMap(pos); } public void discover( int cell ) { set( cell, Terrain.discover( map[cell] ) ); Trap trap = traps.get( cell ); if (trap != null) trap.reveal(); GameScene.updateMap( cell ); } public int fallCell( boolean fallIntoPit ) { int result; do { result = randomRespawnCell(); } while (traps.get(result) != null || findMob(result) != null || heaps.get(result) != null); return result; } public void occupyCell( Char ch ){ if (!ch.flying){ if (pit[ch.pos]){ if (ch == Dungeon.hero) { Chasm.heroFall(ch.pos); } else if (ch instanceof Mob) { Chasm.mobFall( (Mob)ch ); } return; } //characters which are not the hero or a sheep 'soft' press cells pressCell( ch.pos, ch instanceof Hero || ch instanceof Sheep); } else { if (map[ch.pos] == Terrain.DOOR){ Door.enter( ch.pos ); } } } //public method for forcing the hard press of a cell. e.g. when an item lands on it public void pressCell( int cell ){ pressCell( cell, true ); } //a 'soft' press ignores hidden traps //a 'hard' press triggers all things private void pressCell( int cell, boolean hard ) { Trap trap = null; switch (map[cell]) { case Terrain.SECRET_TRAP: if (hard) { trap = traps.get( cell ); GLog.i(Messages.get(Level.class, "hidden_trap", trap.name)); } break; case Terrain.TRAP: trap = traps.get( cell ); break; case Terrain.HIGH_GRASS: case Terrain.FURROWED_GRASS: HighGrass.trample( this, cell); break; case Terrain.WELL: WellWater.affectCell( cell ); break; case Terrain.DOOR: Door.enter( cell ); break; } if (trap != null) { TimekeepersHourglass.timeFreeze timeFreeze = Dungeon.hero.buff(TimekeepersHourglass.timeFreeze.class); Swiftthistle.TimeBubble bubble = Dungeon.hero.buff(Swiftthistle.TimeBubble.class); if (bubble != null){ Sample.INSTANCE.play(Assets.SND_TRAP); discover(cell); bubble.setDelayedPress(cell); } else if (timeFreeze != null){ Sample.INSTANCE.play(Assets.SND_TRAP); discover(cell); timeFreeze.setDelayedPress(cell); } else { if (Dungeon.hero.pos == cell) { Dungeon.hero.interrupt(); } trap.trigger(); } } Plant plant = plants.get( cell ); if (plant != null) { plant.trigger(); } } public void updateFieldOfView( Char c, boolean[] fieldOfView ) { int cx = c.pos % width(); int cy = c.pos / width(); boolean sighted = c.buff( Blindness.class ) == null && c.buff( Shadows.class ) == null && c.buff( TimekeepersHourglass.timeStasis.class ) == null && c.isAlive(); if (sighted) { boolean[] blocking; if (c instanceof Hero && ((Hero) c).subClass == HeroSubClass.WARDEN) { blocking = Dungeon.level.losBlocking.clone(); for (int i = 0; i < blocking.length; i++){ if (blocking[i] && (Dungeon.level.map[i] == Terrain.HIGH_GRASS || Dungeon.level.map[i] == Terrain.FURROWED_GRASS)){ blocking[i] = false; } } } else { blocking = Dungeon.level.losBlocking; } int viewDist = c.viewDistance; if (c instanceof Hero && ((Hero) c).subClass == HeroSubClass.SNIPER) viewDist *= 1.5f; ShadowCaster.castShadow( cx, cy, fieldOfView, blocking, viewDist ); } else { BArray.setFalse(fieldOfView); } int sense = 1; //Currently only the hero can get mind vision if (c.isAlive() && c == Dungeon.hero) { for (Buff b : c.buffs( MindVision.class )) { sense = Math.max( ((MindVision)b).distance, sense ); } if (c.buff(MagicalSight.class) != null){ sense = 8; } if (((Hero)c).subClass == HeroSubClass.SNIPER){ sense *= 1.5f; } } //uses rounding if (!sighted || sense > 1) { int[][] rounding = ShadowCaster.rounding; int left, right; int pos; for (int y = Math.max(0, cy - sense); y <= Math.min(height()-1, cy + sense); y++) { if (rounding[sense][Math.abs(cy - y)] < Math.abs(cy - y)) { left = cx - rounding[sense][Math.abs(cy - y)]; } else { left = sense; while (rounding[sense][left] < rounding[sense][Math.abs(cy - y)]){ left--; } left = cx - left; } right = Math.min(width()-1, cx + cx - left); left = Math.max(0, left); pos = left + y * width(); System.arraycopy(discoverable, pos, fieldOfView, pos, right - left + 1); } } //Currently only the hero can get mind vision or awareness if (c.isAlive() && c == Dungeon.hero) { Dungeon.hero.mindVisionEnemies.clear(); if (c.buff( MindVision.class ) != null) { for (Mob mob : mobs) { int p = mob.pos; if (!fieldOfView[p]){ Dungeon.hero.mindVisionEnemies.add(mob); } } } else if (((Hero)c).heroClass == HeroClass.HUNTRESS) { for (Mob mob : mobs) { int p = mob.pos; if (distance( c.pos, p) == 2) { if (!fieldOfView[p]){ Dungeon.hero.mindVisionEnemies.add(mob); } } } } for (Mob m : Dungeon.hero.mindVisionEnemies) { for (int i : PathFinder.NEIGHBOURS9) { fieldOfView[m.pos + i] = true; } } if (c.buff( Awareness.class ) != null) { for (Heap heap : heaps.valueList()) { int p = heap.pos; for (int i : PathFinder.NEIGHBOURS9) fieldOfView[p+i] = true; } } for (Mob ward : mobs){ if (ward instanceof WandOfWarding.Ward){ if (ward.fieldOfView == null || ward.fieldOfView.length != length()){ ward.fieldOfView = new boolean[length()]; Dungeon.level.updateFieldOfView( ward, ward.fieldOfView ); } for (Mob m : mobs){ if (ward.fieldOfView[m.pos] && !fieldOfView[m.pos] && !Dungeon.hero.mindVisionEnemies.contains(m)){ Dungeon.hero.mindVisionEnemies.add(m); } } BArray.or(fieldOfView, ward.fieldOfView, fieldOfView); } } } if (c == Dungeon.hero) { for (Heap heap : heaps.valueList()) if (!heap.seen && fieldOfView[heap.pos]) heap.seen = true; } } public int distance( int a, int b ) { int ax = a % width(); int ay = a / width(); int bx = b % width(); int by = b / width(); return Math.max( Math.abs( ax - bx ), Math.abs( ay - by ) ); } public boolean adjacent( int a, int b ) { return distance( a, b ) == 1; } //uses pythagorean theorum for true distance, as if there was no movement grid public float trueDistance(int a, int b){ int ax = a % width(); int ay = a / width(); int bx = b % width(); int by = b / width(); return (float)Math.sqrt(Math.pow(Math.abs( ax - bx ), 2) + Math.pow(Math.abs( ay - by ), 2)); } //returns true if the input is a valid tile within the level public boolean insideMap( int tile ){ //top and bottom row and beyond return !((tile < width || tile >= length - width) || //left and right column (tile % width == 0 || tile % width == width-1)); } public Point cellToPoint( int cell ){ return new Point(cell % width(), cell / width()); } public int pointToCell( Point p ){ return p.x + p.y*width(); } public String tileName( int tile ) { switch (tile) { case Terrain.CHASM: return Messages.get(Level.class, "chasm_name"); case Terrain.EMPTY: case Terrain.EMPTY_SP: case Terrain.EMPTY_DECO: case Terrain.SECRET_TRAP: return Messages.get(Level.class, "floor_name"); case Terrain.GRASS: return Messages.get(Level.class, "grass_name"); case Terrain.WATER: return Messages.get(Level.class, "water_name"); case Terrain.WALL: case Terrain.WALL_DECO: case Terrain.SECRET_DOOR: return Messages.get(Level.class, "wall_name"); case Terrain.DOOR: return Messages.get(Level.class, "closed_door_name"); case Terrain.OPEN_DOOR: return Messages.get(Level.class, "open_door_name"); case Terrain.ENTRANCE: return Messages.get(Level.class, "entrace_name"); case Terrain.EXIT: return Messages.get(Level.class, "exit_name"); case Terrain.EMBERS: return Messages.get(Level.class, "embers_name"); case Terrain.FURROWED_GRASS: return Messages.get(Level.class, "furrowed_grass_name"); case Terrain.LOCKED_DOOR: return Messages.get(Level.class, "locked_door_name"); case Terrain.PEDESTAL: return Messages.get(Level.class, "pedestal_name"); case Terrain.BARRICADE: return Messages.get(Level.class, "barricade_name"); case Terrain.HIGH_GRASS: return Messages.get(Level.class, "high_grass_name"); case Terrain.LOCKED_EXIT: return Messages.get(Level.class, "locked_exit_name"); case Terrain.UNLOCKED_EXIT: return Messages.get(Level.class, "unlocked_exit_name"); case Terrain.SIGN: return Messages.get(Level.class, "sign_name"); case Terrain.WELL: return Messages.get(Level.class, "well_name"); case Terrain.EMPTY_WELL: return Messages.get(Level.class, "empty_well_name"); case Terrain.STATUE: case Terrain.STATUE_SP: return Messages.get(Level.class, "statue_name"); case Terrain.INACTIVE_TRAP: return Messages.get(Level.class, "inactive_trap_name"); case Terrain.BOOKSHELF: return Messages.get(Level.class, "bookshelf_name"); case Terrain.ALCHEMY: return Messages.get(Level.class, "alchemy_name"); default: return Messages.get(Level.class, "default_name"); } } public String tileDesc( int tile ) { switch (tile) { case Terrain.CHASM: return Messages.get(Level.class, "chasm_desc"); case Terrain.WATER: return Messages.get(Level.class, "water_desc"); case Terrain.ENTRANCE: return Messages.get(Level.class, "entrance_desc"); case Terrain.EXIT: case Terrain.UNLOCKED_EXIT: return Messages.get(Level.class, "exit_desc"); case Terrain.EMBERS: return Messages.get(Level.class, "embers_desc"); case Terrain.HIGH_GRASS: case Terrain.FURROWED_GRASS: return Messages.get(Level.class, "high_grass_desc"); case Terrain.LOCKED_DOOR: return Messages.get(Level.class, "locked_door_desc"); case Terrain.LOCKED_EXIT: return Messages.get(Level.class, "locked_exit_desc"); case Terrain.BARRICADE: return Messages.get(Level.class, "barricade_desc"); case Terrain.SIGN: return Messages.get(Level.class, "sign_desc"); case Terrain.INACTIVE_TRAP: return Messages.get(Level.class, "inactive_trap_desc"); case Terrain.STATUE: case Terrain.STATUE_SP: return Messages.get(Level.class, "statue_desc"); case Terrain.ALCHEMY: return Messages.get(Level.class, "alchemy_desc"); case Terrain.EMPTY_WELL: return Messages.get(Level.class, "empty_well_desc"); default: return ""; } } }
32,083
Level
java
en
java
code
{"qsc_code_num_words": 3842, "qsc_code_num_chars": 32083.0, "qsc_code_mean_word_length": 5.53695992, "qsc_code_frac_words_unique": 0.14836023, "qsc_code_frac_chars_top_2grams": 0.02623043, "qsc_code_frac_chars_top_3grams": 0.094674, "qsc_code_frac_chars_top_4grams": 0.10755418, "qsc_code_frac_chars_dupe_5grams": 0.30653881, "qsc_code_frac_chars_dupe_6grams": 0.22671932, "qsc_code_frac_chars_dupe_7grams": 0.14078879, "qsc_code_frac_chars_dupe_8grams": 0.13594698, "qsc_code_frac_chars_dupe_9grams": 0.10642599, "qsc_code_frac_chars_dupe_10grams": 0.05885395, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.0054134, "qsc_code_frac_chars_whitespace": 0.19966961, "qsc_code_size_file_byte": 32083.0, "qsc_code_num_lines": 1153.0, "qsc_code_num_chars_line_max": 121.0, "qsc_code_num_chars_line_mean": 27.82567216, "qsc_code_frac_chars_alphabet": 0.82307123, "qsc_code_frac_chars_comments": 0.05588629, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.18486486, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.02195444, "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.00052823, "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.05513514, "qsc_codejava_score_lines_no_logic": 0.17513514, "qsc_codejava_frac_words_no_modifier": 0.94230769, "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/sprites/KingSprite.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.sprites; import com.shatteredpixel.shatteredpixeldungeon.Assets; import com.watabou.noosa.TextureFilm; public class KingSprite extends MobSprite { public KingSprite() { super(); texture( Assets.KING ); TextureFilm frames = new TextureFilm( texture, 16, 16 ); idle = new Animation( 12, true ); idle.frames( frames, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2 ); run = new Animation( 15, true ); run.frames( frames, 3, 4, 5, 6, 7, 8 ); attack = new Animation( 15, false ); attack.frames( frames, 9, 10, 11 ); die = new Animation( 8, false ); die.frames( frames, 12, 13, 14, 15 ); play( idle ); } }
1,475
KingSprite
java
en
java
code
{"qsc_code_num_words": 215, "qsc_code_num_chars": 1475.0, "qsc_code_mean_word_length": 4.74883721, "qsc_code_frac_words_unique": 0.5627907, "qsc_code_frac_chars_top_2grams": 0.0215475, "qsc_code_frac_chars_top_3grams": 0.02938296, "qsc_code_frac_chars_top_4grams": 0.03525955, "qsc_code_frac_chars_dupe_5grams": 0.0920666, "qsc_code_frac_chars_dupe_6grams": 0.06660137, "qsc_code_frac_chars_dupe_7grams": 0.01175318, "qsc_code_frac_chars_dupe_8grams": 0.01175318, "qsc_code_frac_chars_dupe_9grams": 0.01175318, "qsc_code_frac_chars_dupe_10grams": 0.01175318, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.05222603, "qsc_code_frac_chars_whitespace": 0.20813559, "qsc_code_size_file_byte": 1475.0, "qsc_code_num_lines": 49.0, "qsc_code_num_chars_line_max": 72.0, "qsc_code_num_chars_line_mean": 30.10204082, "qsc_code_frac_chars_alphabet": 0.82191781, "qsc_code_frac_chars_comments": 0.52949153, "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.15789474, "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/sprites/PrismaticSprite.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.sprites; import com.shatteredpixel.shatteredpixeldungeon.Dungeon; import com.shatteredpixel.shatteredpixeldungeon.actors.Char; import com.shatteredpixel.shatteredpixeldungeon.actors.mobs.npcs.PrismaticImage; import com.watabou.noosa.Game; import com.watabou.noosa.TextureFilm; public class PrismaticSprite extends MobSprite { private static final int FRAME_WIDTH = 12; private static final int FRAME_HEIGHT = 15; public PrismaticSprite() { super(); texture( Dungeon.hero.heroClass.spritesheet() ); updateArmor( 0 ); idle(); } @Override public void link( Char ch ) { super.link( ch ); updateArmor( ((PrismaticImage)ch).armTier ); } public void updateArmor( int tier ) { TextureFilm film = new TextureFilm( HeroSprite.tiers(), tier, FRAME_WIDTH, FRAME_HEIGHT ); idle = new Animation( 1, true ); idle.frames( film, 0, 0, 0, 1, 0, 0, 1, 1 ); run = new Animation( 20, true ); run.frames( film, 2, 3, 4, 5, 6, 7 ); die = new Animation( 20, false ); die.frames( film, 0 ); attack = new Animation( 15, false ); attack.frames( film, 13, 14, 15, 0 ); idle(); } @Override public void update() { super.update(); if (flashTime <= 0){ float interval = (Game.timeTotal % 9 ) /3f; tint(interval > 2 ? interval - 2 : Math.max(0, 1 - interval), interval > 1 ? Math.max(0, 2-interval): interval, interval > 2 ? Math.max(0, 3-interval): interval-1, 0.5f); } } }
2,274
PrismaticSprite
java
en
java
code
{"qsc_code_num_words": 310, "qsc_code_num_chars": 2274.0, "qsc_code_mean_word_length": 5.09354839, "qsc_code_frac_words_unique": 0.48709677, "qsc_code_frac_chars_top_2grams": 0.02849905, "qsc_code_frac_chars_top_3grams": 0.09626346, "qsc_code_frac_chars_top_4grams": 0.0360988, "qsc_code_frac_chars_dupe_5grams": 0.19886004, "qsc_code_frac_chars_dupe_6grams": 0.03546548, "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.03657205, "qsc_code_frac_chars_whitespace": 0.19437115, "qsc_code_size_file_byte": 2274.0, "qsc_code_num_lines": 79.0, "qsc_code_num_chars_line_max": 93.0, "qsc_code_num_chars_line_mean": 28.78481013, "qsc_code_frac_chars_alphabet": 0.82532751, "qsc_code_frac_chars_comments": 0.34300792, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.09302326, "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.06976744, "qsc_codejava_score_lines_no_logic": 0.20930233, "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/sprites/GuardSprite.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.sprites; import com.shatteredpixel.shatteredpixeldungeon.Assets; import com.shatteredpixel.shatteredpixeldungeon.effects.particles.ShadowParticle; import com.watabou.noosa.MovieClip; import com.watabou.noosa.TextureFilm; public class GuardSprite extends MobSprite { public GuardSprite() { super(); texture( Assets.GUARD ); TextureFilm frames = new TextureFilm( texture, 12, 16 ); idle = new Animation( 2, true ); idle.frames( frames, 0, 0, 0, 1, 0, 0, 1, 1 ); run = new MovieClip.Animation( 15, true ); run.frames( frames, 2, 3, 4, 5, 6, 7 ); attack = new MovieClip.Animation( 12, false ); attack.frames( frames, 8, 9, 10 ); die = new MovieClip.Animation( 8, false ); die.frames( frames, 11, 12, 13, 14 ); play( idle ); } @Override public void play( Animation anim ) { if (anim == die) { emitter().burst( ShadowParticle.UP, 4 ); } super.play( anim ); } }
1,734
GuardSprite
java
en
java
code
{"qsc_code_num_words": 241, "qsc_code_num_chars": 1734.0, "qsc_code_mean_word_length": 5.11618257, "qsc_code_frac_words_unique": 0.54356846, "qsc_code_frac_chars_top_2grams": 0.02919708, "qsc_code_frac_chars_top_3grams": 0.03163017, "qsc_code_frac_chars_top_4grams": 0.04622871, "qsc_code_frac_chars_dupe_5grams": 0.06650446, "qsc_code_frac_chars_dupe_6grams": 0.04541768, "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.03829787, "qsc_code_frac_chars_whitespace": 0.18685121, "qsc_code_size_file_byte": 1734.0, "qsc_code_num_lines": 59.0, "qsc_code_num_chars_line_max": 82.0, "qsc_code_num_chars_line_mean": 29.38983051, "qsc_code_frac_chars_alphabet": 0.83617021, "qsc_code_frac_chars_comments": 0.45040369, "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.21428571, "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/sprites/BatSprite.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.sprites; import com.shatteredpixel.shatteredpixeldungeon.Assets; import com.watabou.noosa.TextureFilm; public class BatSprite extends MobSprite { public BatSprite() { super(); texture( Assets.BAT ); TextureFilm frames = new TextureFilm( texture, 15, 15 ); idle = new Animation( 8, true ); idle.frames( frames, 0, 1 ); run = new Animation( 12, true ); run.frames( frames, 0, 1 ); attack = new Animation( 12, false ); attack.frames( frames, 2, 3, 0, 1 ); die = new Animation( 12, false ); die.frames( frames, 4, 5, 6 ); play( idle ); } }
1,418
BatSprite
java
en
java
code
{"qsc_code_num_words": 199, "qsc_code_num_chars": 1418.0, "qsc_code_mean_word_length": 5.00502513, "qsc_code_frac_words_unique": 0.57286432, "qsc_code_frac_chars_top_2grams": 0.04819277, "qsc_code_frac_chars_top_3grams": 0.03915663, "qsc_code_frac_chars_top_4grams": 0.05722892, "qsc_code_frac_chars_dupe_5grams": 0.08232932, "qsc_code_frac_chars_dupe_6grams": 0.0562249, "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.03460515, "qsc_code_frac_chars_whitespace": 0.20521862, "qsc_code_size_file_byte": 1418.0, "qsc_code_num_lines": 49.0, "qsc_code_num_chars_line_max": 72.0, "qsc_code_num_chars_line_mean": 28.93877551, "qsc_code_frac_chars_alphabet": 0.84915705, "qsc_code_frac_chars_comments": 0.55077574, "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.15789474, "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/sprites/SheepSprite.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.sprites; import com.shatteredpixel.shatteredpixeldungeon.Assets; import com.watabou.noosa.TextureFilm; import com.watabou.utils.Random; public class SheepSprite extends MobSprite { public SheepSprite() { super(); texture( Assets.SHEEP ); TextureFilm frames = new TextureFilm( texture, 16, 15 ); idle = new Animation( 8, true ); idle.frames( frames, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 3, 0 ); run = idle.clone(); attack = idle.clone(); die = new Animation( 20, false ); die.frames( frames, 0 ); play( idle ); curFrame = Random.Int( curAnim.frames.length ); } }
1,444
SheepSprite
java
en
java
code
{"qsc_code_num_words": 206, "qsc_code_num_chars": 1444.0, "qsc_code_mean_word_length": 4.94660194, "qsc_code_frac_words_unique": 0.5776699, "qsc_code_frac_chars_top_2grams": 0.02158979, "qsc_code_frac_chars_top_3grams": 0.02944063, "qsc_code_frac_chars_top_4grams": 0.03532875, "qsc_code_frac_chars_dupe_5grams": 0.0922473, "qsc_code_frac_chars_dupe_6grams": 0.06673209, "qsc_code_frac_chars_dupe_7grams": 0.01177625, "qsc_code_frac_chars_dupe_8grams": 0.01177625, "qsc_code_frac_chars_dupe_9grams": 0.01177625, "qsc_code_frac_chars_dupe_10grams": 0.01177625, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.03537532, "qsc_code_frac_chars_whitespace": 0.19736842, "qsc_code_size_file_byte": 1444.0, "qsc_code_num_lines": 48.0, "qsc_code_num_chars_line_max": 73.0, "qsc_code_num_chars_line_mean": 30.08333333, "qsc_code_frac_chars_alphabet": 0.84383089, "qsc_code_frac_chars_comments": 0.54085873, "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.21052632, "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/sprites/EyeSprite.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.sprites; import com.shatteredpixel.shatteredpixeldungeon.Assets; import com.shatteredpixel.shatteredpixeldungeon.actors.Actor; import com.shatteredpixel.shatteredpixeldungeon.actors.Char; import com.shatteredpixel.shatteredpixeldungeon.actors.mobs.Eye; import com.shatteredpixel.shatteredpixeldungeon.effects.Beam; import com.shatteredpixel.shatteredpixeldungeon.effects.MagicMissile; import com.shatteredpixel.shatteredpixeldungeon.tiles.DungeonTilemap; import com.watabou.noosa.TextureFilm; import com.watabou.noosa.particles.Emitter; public class EyeSprite extends MobSprite { private int zapPos; private Animation charging; private Emitter chargeParticles; public EyeSprite() { super(); texture( Assets.EYE ); TextureFilm frames = new TextureFilm( texture, 16, 18 ); idle = new Animation( 8, true ); idle.frames( frames, 0, 1, 2 ); charging = new Animation( 12, true); charging.frames( frames, 3, 4 ); chargeParticles = centerEmitter(); chargeParticles.autoKill = false; chargeParticles.pour(MagicMissile.MagicParticle.ATTRACTING, 0.05f); chargeParticles.on = false; run = new Animation( 12, true ); run.frames( frames, 5, 6 ); attack = new Animation( 8, false ); attack.frames( frames, 4, 3 ); zap = attack.clone(); die = new Animation( 8, false ); die.frames( frames, 7, 8, 9 ); play( idle ); } @Override public void link(Char ch) { super.link(ch); if (((Eye)ch).beamCharged) play(charging); } @Override public void update() { super.update(); chargeParticles.pos(center()); chargeParticles.visible = visible; } public void charge( int pos ){ turnTo(ch.pos, pos); play(charging); } @Override public void play(Animation anim) { chargeParticles.on = anim == charging; super.play(anim); } @Override public void zap( int pos ) { zapPos = pos; super.zap( pos ); } @Override public void onComplete( Animation anim ) { super.onComplete( anim ); if (anim == zap) { idle(); if (Actor.findChar(zapPos) != null){ parent.add(new Beam.DeathRay(center(), Actor.findChar(zapPos).sprite.center())); } else { parent.add(new Beam.DeathRay(center(), DungeonTilemap.raisedTileCenterToWorld(zapPos))); } ((Eye)ch).deathGaze(); ch.next(); } else if (anim == die){ chargeParticles.killAndErase(); } } }
3,174
EyeSprite
java
en
java
code
{"qsc_code_num_words": 390, "qsc_code_num_chars": 3174.0, "qsc_code_mean_word_length": 5.81794872, "qsc_code_frac_words_unique": 0.42564103, "qsc_code_frac_chars_top_2grams": 0.03569855, "qsc_code_frac_chars_top_3grams": 0.13397973, "qsc_code_frac_chars_top_4grams": 0.13574262, "qsc_code_frac_chars_dupe_5grams": 0.20008814, "qsc_code_frac_chars_dupe_6grams": 0.05112384, "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.01636848, "qsc_code_frac_chars_whitespace": 0.17233774, "qsc_code_size_file_byte": 3174.0, "qsc_code_num_lines": 118.0, "qsc_code_num_chars_line_max": 93.0, "qsc_code_num_chars_line_mean": 26.89830508, "qsc_code_frac_chars_alphabet": 0.8473544, "qsc_code_frac_chars_comments": 0.24606175, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.06493506, "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.07792208, "qsc_codejava_score_lines_no_logic": 0.24675325, "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/sprites/MimicSprite.java
/* * Pixel Dungeon * Copyright (C) 2012-2015 Oleg Dolya * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/> */ package com.shatteredpixel.shatteredpixeldungeon.sprites; import com.watabou.noosa.TextureFilm; import com.shatteredpixel.shatteredpixeldungeon.Assets; public class MimicSprite extends MobSprite { public MimicSprite() { super(); texture( Assets.MIMIC ); TextureFilm frames = new TextureFilm( texture, 16, 16 ); idle = new Animation( 5, true ); idle.frames( frames, 0, 0, 0, 1, 1 ); run = new Animation( 10, true ); run.frames( frames, 0, 1, 2, 3, 3, 2, 1 ); attack = new Animation( 10, false ); attack.frames( frames, 0, 4, 5, 6 ); die = new Animation( 5, false ); die.frames( frames, 7, 8, 9 ); play( idle ); } @Override public int blood() { return 0xFFcb9700; } }
1,434
MimicSprite
java
en
java
code
{"qsc_code_num_words": 204, "qsc_code_num_chars": 1434.0, "qsc_code_mean_word_length": 4.88235294, "qsc_code_frac_words_unique": 0.56862745, "qsc_code_frac_chars_top_2grams": 0.04819277, "qsc_code_frac_chars_top_3grams": 0.03915663, "qsc_code_frac_chars_top_4grams": 0.05722892, "qsc_code_frac_chars_dupe_5grams": 0.08232932, "qsc_code_frac_chars_dupe_6grams": 0.0562249, "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.03788546, "qsc_code_frac_chars_whitespace": 0.20850767, "qsc_code_size_file_byte": 1434.0, "qsc_code_num_lines": 51.0, "qsc_code_num_chars_line_max": 72.0, "qsc_code_num_chars_line_mean": 28.11764706, "qsc_code_frac_chars_alphabet": 0.83964758, "qsc_code_frac_chars_comments": 0.4944212, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.0, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.0, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.0137931, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0, "qsc_codejava_cate_var_zero": 0.0, "qsc_codejava_frac_lines_func_ratio": 0.04347826, "qsc_codejava_score_lines_no_logic": 0.2173913, "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/sprites/ImpSprite.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.sprites; import com.shatteredpixel.shatteredpixeldungeon.Assets; import com.shatteredpixel.shatteredpixeldungeon.actors.Char; import com.shatteredpixel.shatteredpixeldungeon.actors.mobs.npcs.Imp; import com.shatteredpixel.shatteredpixeldungeon.effects.Speck; import com.watabou.noosa.TextureFilm; public class ImpSprite extends MobSprite { public ImpSprite() { super(); texture( Assets.IMP ); TextureFilm frames = new TextureFilm( texture, 12, 14 ); idle = new Animation( 10, true ); idle.frames( frames, 0, 1, 2, 3, 0, 1, 2, 3, 0, 0, 0, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 0, 1, 2, 3, 0, 1, 2, 3, 0, 1, 3, 0, 0, 0, 4, 4, 4, 4, 4, 4, 4, 4, 0, 0, 0, 4, 4, 4, 4, 4, 4, 4, 4 ); run = new Animation( 20, true ); run.frames( frames, 0 ); die = new Animation( 10, false ); die.frames( frames, 0, 3, 2, 1, 0, 3, 2, 1, 0 ); play( idle ); } @Override public void link( Char ch ) { super.link( ch ); if (ch instanceof Imp) { alpha( 0.4f ); } } @Override public void onComplete( Animation anim ) { if (anim == die) { emitter().burst( Speck.factory( Speck.WOOL ), 15 ); killAndErase(); } else { super.onComplete( anim ); } } }
2,035
ImpSprite
java
en
java
code
{"qsc_code_num_words": 301, "qsc_code_num_chars": 2035.0, "qsc_code_mean_word_length": 4.52491694, "qsc_code_frac_words_unique": 0.44518272, "qsc_code_frac_chars_top_2grams": 0.03377386, "qsc_code_frac_chars_top_3grams": 0.04405286, "qsc_code_frac_chars_top_4grams": 0.04992658, "qsc_code_frac_chars_dupe_5grams": 0.17988253, "qsc_code_frac_chars_dupe_6grams": 0.08076358, "qsc_code_frac_chars_dupe_7grams": 0.03891336, "qsc_code_frac_chars_dupe_8grams": 0.03891336, "qsc_code_frac_chars_dupe_9grams": 0.03891336, "qsc_code_frac_chars_dupe_10grams": 0.0256975, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.05930087, "qsc_code_frac_chars_whitespace": 0.21277641, "qsc_code_size_file_byte": 2035.0, "qsc_code_num_lines": 72.0, "qsc_code_num_chars_line_max": 104.0, "qsc_code_num_chars_line_mean": 28.26388889, "qsc_code_frac_chars_alphabet": 0.79088639, "qsc_code_frac_chars_comments": 0.38378378, "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.05263158, "qsc_codejava_score_lines_no_logic": 0.21052632, "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/sprites/DiscardedItemSprite.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.sprites; import com.watabou.noosa.Game; public class DiscardedItemSprite extends ItemSprite { public DiscardedItemSprite() { super(); originToCenter(); angularSpeed = 720; } @Override public void drop() { scale.set( 1 ); am = 1; if (emitter != null) emitter.killAndErase(); } @Override public void update() { super.update(); scale.set( scale.x * 0.9f ); if ((am -= Game.elapsed) <= 0) { remove(); } } }
1,285
DiscardedItemSprite
java
en
java
code
{"qsc_code_num_words": 174, "qsc_code_num_chars": 1285.0, "qsc_code_mean_word_length": 5.16666667, "qsc_code_frac_words_unique": 0.63793103, "qsc_code_frac_chars_top_2grams": 0.03670745, "qsc_code_frac_chars_top_3grams": 0.04338154, "qsc_code_frac_chars_top_4grams": 0.06340378, "qsc_code_frac_chars_dupe_5grams": 0.09121246, "qsc_code_frac_chars_dupe_6grams": 0.06229143, "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.0245098, "qsc_code_frac_chars_whitespace": 0.20622568, "qsc_code_size_file_byte": 1285.0, "qsc_code_num_lines": 52.0, "qsc_code_num_chars_line_max": 72.0, "qsc_code_num_chars_line_mean": 24.71153846, "qsc_code_frac_chars_alphabet": 0.85686275, "qsc_code_frac_chars_comments": 0.6077821, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.08695652, "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.08695652, "qsc_codejava_score_lines_no_logic": 0.17391304, "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": 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/sprites/ThiefSprite.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.sprites; import com.shatteredpixel.shatteredpixeldungeon.Assets; import com.watabou.noosa.TextureFilm; public class ThiefSprite extends MobSprite { public ThiefSprite() { super(); texture( Assets.THIEF ); TextureFilm film = new TextureFilm( texture, 12, 13 ); idle = new Animation( 1, true ); idle.frames( film, 0, 0, 0, 1, 0, 0, 0, 0, 1 ); run = new Animation( 15, true ); run.frames( film, 0, 0, 2, 3, 3, 4 ); die = new Animation( 10, false ); die.frames( film, 5, 6, 7, 8, 9 ); attack = new Animation( 12, false ); attack.frames( film, 10, 11, 12, 0 ); idle(); } }
1,447
ThiefSprite
java
en
java
code
{"qsc_code_num_words": 211, "qsc_code_num_chars": 1447.0, "qsc_code_mean_word_length": 4.75829384, "qsc_code_frac_words_unique": 0.56398104, "qsc_code_frac_chars_top_2grams": 0.01195219, "qsc_code_frac_chars_top_3grams": 0.03884462, "qsc_code_frac_chars_top_4grams": 0.05677291, "qsc_code_frac_chars_dupe_5grams": 0.08167331, "qsc_code_frac_chars_dupe_6grams": 0.05577689, "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.04790941, "qsc_code_frac_chars_whitespace": 0.20663442, "qsc_code_size_file_byte": 1447.0, "qsc_code_num_lines": 48.0, "qsc_code_num_chars_line_max": 72.0, "qsc_code_num_chars_line_mean": 30.14583333, "qsc_code_frac_chars_alphabet": 0.82665505, "qsc_code_frac_chars_comments": 0.53973739, "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.15789474, "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/sprites/GreatCrabSprite.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.sprites; import com.shatteredpixel.shatteredpixeldungeon.Assets; import com.watabou.noosa.MovieClip; import com.watabou.noosa.TextureFilm; public class GreatCrabSprite extends MobSprite { public GreatCrabSprite() { super(); texture( Assets.CRAB ); TextureFilm frames = new TextureFilm( texture, 16, 16 ); idle = new MovieClip.Animation( 5, true ); idle.frames( frames, 16, 17, 16, 18 ); run = new MovieClip.Animation( 10, true ); run.frames( frames, 19, 20, 21, 22 ); attack = new MovieClip.Animation( 12, false ); attack.frames( frames, 23, 24, 25 ); die = new MovieClip.Animation( 12, false ); die.frames( frames, 26, 27, 28, 29 ); play( idle ); } @Override public int blood() { return 0xFFFFEA80; } }
1,577
GreatCrabSprite
java
en
java
code
{"qsc_code_num_words": 218, "qsc_code_num_chars": 1577.0, "qsc_code_mean_word_length": 5.19266055, "qsc_code_frac_words_unique": 0.58715596, "qsc_code_frac_chars_top_2grams": 0.04240283, "qsc_code_frac_chars_top_3grams": 0.07420495, "qsc_code_frac_chars_top_4grams": 0.05035336, "qsc_code_frac_chars_dupe_5grams": 0.12190813, "qsc_code_frac_chars_dupe_6grams": 0.04946996, "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.04761905, "qsc_code_frac_chars_whitespace": 0.18769816, "qsc_code_size_file_byte": 1577.0, "qsc_code_num_lines": 55.0, "qsc_code_num_chars_line_max": 72.0, "qsc_code_num_chars_line_mean": 28.67272727, "qsc_code_frac_chars_alphabet": 0.83606557, "qsc_code_frac_chars_comments": 0.49524413, "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.01256281, "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.04166667, "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}
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/sprites/YogSprite.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.sprites; import com.shatteredpixel.shatteredpixeldungeon.Assets; import com.shatteredpixel.shatteredpixeldungeon.actors.Char; import com.shatteredpixel.shatteredpixeldungeon.effects.Splash; import com.watabou.noosa.TextureFilm; public class YogSprite extends MobSprite { public YogSprite() { super(); perspectiveRaise = 0.2f; texture( Assets.YOG ); TextureFilm frames = new TextureFilm( texture, 20, 19 ); idle = new Animation( 10, true ); idle.frames( frames, 0, 1, 2, 2, 1, 0, 3, 4, 4, 3, 0, 5, 6, 6, 5 ); run = new Animation( 12, true ); run.frames( frames, 0 ); attack = new Animation( 12, false ); attack.frames( frames, 0 ); die = new Animation( 10, false ); die.frames( frames, 0, 7, 8, 9 ); play( idle ); } @Override public void link(Char ch) { super.link(ch); renderShadow = false; } @Override public void die() { super.die(); Splash.at( center(), blood(), 12 ); } }
1,778
YogSprite
java
en
java
code
{"qsc_code_num_words": 246, "qsc_code_num_chars": 1778.0, "qsc_code_mean_word_length": 5.05284553, "qsc_code_frac_words_unique": 0.53252033, "qsc_code_frac_chars_top_2grams": 0.05470636, "qsc_code_frac_chars_top_3grams": 0.12228479, "qsc_code_frac_chars_top_4grams": 0.0458568, "qsc_code_frac_chars_dupe_5grams": 0.06596943, "qsc_code_frac_chars_dupe_6grams": 0.04505229, "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.03784163, "qsc_code_frac_chars_whitespace": 0.19741282, "qsc_code_size_file_byte": 1778.0, "qsc_code_num_lines": 66.0, "qsc_code_num_chars_line_max": 72.0, "qsc_code_num_chars_line_mean": 26.93939394, "qsc_code_frac_chars_alphabet": 0.83321654, "qsc_code_frac_chars_comments": 0.43925759, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.0625, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.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.0625, "qsc_codejava_score_lines_no_logic": 0.21875, "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/sprites/DM300Sprite.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.sprites; import com.shatteredpixel.shatteredpixeldungeon.Assets; import com.shatteredpixel.shatteredpixeldungeon.effects.Speck; import com.watabou.noosa.TextureFilm; public class DM300Sprite extends MobSprite { public DM300Sprite() { super(); texture( Assets.DM300 ); TextureFilm frames = new TextureFilm( texture, 22, 20 ); idle = new Animation( 10, true ); idle.frames( frames, 0, 1 ); run = new Animation( 10, true ); run.frames( frames, 2, 3 ); attack = new Animation( 15, false ); attack.frames( frames, 4, 5, 6 ); die = new Animation( 20, false ); die.frames( frames, 0, 7, 0, 7, 0, 7, 0, 7, 0, 7, 0, 7, 8 ); play( idle ); } @Override public void onComplete( Animation anim ) { super.onComplete( anim ); if (anim == die) { emitter().burst( Speck.factory( Speck.WOOL ), 15 ); } } @Override public int blood() { return 0xFFFFFF88; } }
1,748
DM300Sprite
java
en
java
code
{"qsc_code_num_words": 239, "qsc_code_num_chars": 1748.0, "qsc_code_mean_word_length": 5.06276151, "qsc_code_frac_words_unique": 0.54811715, "qsc_code_frac_chars_top_2grams": 0.00991736, "qsc_code_frac_chars_top_3grams": 0.01239669, "qsc_code_frac_chars_top_4grams": 0.01652893, "qsc_code_frac_chars_dupe_5grams": 0.07768595, "qsc_code_frac_chars_dupe_6grams": 0.05619835, "qsc_code_frac_chars_dupe_7grams": 0.00991736, "qsc_code_frac_chars_dupe_8grams": 0.00991736, "qsc_code_frac_chars_dupe_9grams": 0.00991736, "qsc_code_frac_chars_dupe_10grams": 0.00991736, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.04542177, "qsc_code_frac_chars_whitespace": 0.20652174, "qsc_code_size_file_byte": 1748.0, "qsc_code_num_lines": 65.0, "qsc_code_num_chars_line_max": 72.0, "qsc_code_num_chars_line_mean": 26.89230769, "qsc_code_frac_chars_alphabet": 0.82696467, "qsc_code_frac_chars_comments": 0.44679634, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.06451613, "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.01034126, "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.22580645, "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/sprites/UndeadSprite.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.sprites; import com.shatteredpixel.shatteredpixeldungeon.Assets; import com.shatteredpixel.shatteredpixeldungeon.Dungeon; import com.shatteredpixel.shatteredpixeldungeon.effects.Speck; import com.watabou.noosa.TextureFilm; public class UndeadSprite extends MobSprite { public UndeadSprite() { super(); texture( Assets.UNDEAD ); TextureFilm frames = new TextureFilm( texture, 12, 16 ); idle = new Animation( 12, true ); idle.frames( frames, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 3 ); run = new Animation( 15, true ); run.frames( frames, 4, 5, 6, 7, 8, 9 ); attack = new Animation( 15, false ); attack.frames( frames, 14, 15, 16 ); die = new Animation( 12, false ); die.frames( frames, 10, 11, 12, 13 ); play( idle ); } @Override public void die() { super.die(); if (Dungeon.level.heroFOV[ch.pos]) { emitter().burst( Speck.factory( Speck.BONE ), 3 ); } } @Override public int blood() { return 0xFFcccccc; } }
1,817
UndeadSprite
java
en
java
code
{"qsc_code_num_words": 253, "qsc_code_num_chars": 1817.0, "qsc_code_mean_word_length": 5.0, "qsc_code_frac_words_unique": 0.54150198, "qsc_code_frac_chars_top_2grams": 0.01897233, "qsc_code_frac_chars_top_3grams": 0.02608696, "qsc_code_frac_chars_top_4grams": 0.03162055, "qsc_code_frac_chars_dupe_5grams": 0.07509881, "qsc_code_frac_chars_dupe_6grams": 0.05454545, "qsc_code_frac_chars_dupe_7grams": 0.01027668, "qsc_code_frac_chars_dupe_8grams": 0.01027668, "qsc_code_frac_chars_dupe_9grams": 0.01027668, "qsc_code_frac_chars_dupe_10grams": 0.01027668, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.04595336, "qsc_code_frac_chars_whitespace": 0.19757843, "qsc_code_size_file_byte": 1817.0, "qsc_code_num_lines": 64.0, "qsc_code_num_chars_line_max": 73.0, "qsc_code_num_chars_line_mean": 28.390625, "qsc_code_frac_chars_alphabet": 0.82167353, "qsc_code_frac_chars_comments": 0.42982939, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.0625, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.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.00965251, "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.0625, "qsc_codejava_score_lines_no_logic": 0.25, "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/sprites/BeeSprite.java
/* * Pixel Dungeon * Copyright (C) 2012-2015 Oleg Dolya * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/> */ package com.shatteredpixel.shatteredpixeldungeon.sprites; import com.watabou.noosa.TextureFilm; import com.shatteredpixel.shatteredpixeldungeon.Assets; public class BeeSprite extends MobSprite { public BeeSprite() { super(); texture( Assets.BEE ); TextureFilm frames = new TextureFilm( texture, 16, 16 ); idle = new Animation( 12, true ); idle.frames( frames, 0, 1, 1, 0, 2, 2 ); run = new Animation( 15, true ); run.frames( frames, 0, 1, 1, 0, 2, 2 ); attack = new Animation( 20, false ); attack.frames( frames, 3, 4, 5, 6 ); die = new Animation( 20, false ); die.frames( frames, 7, 8, 9, 10 ); play( idle ); } @Override public int blood() { return 0xffd500; } }
1,432
BeeSprite
java
en
java
code
{"qsc_code_num_words": 205, "qsc_code_num_chars": 1432.0, "qsc_code_mean_word_length": 4.83902439, "qsc_code_frac_words_unique": 0.5804878, "qsc_code_frac_chars_top_2grams": 0.0483871, "qsc_code_frac_chars_top_3grams": 0.03931452, "qsc_code_frac_chars_top_4grams": 0.05745968, "qsc_code_frac_chars_dupe_5grams": 0.11895161, "qsc_code_frac_chars_dupe_6grams": 0.09274194, "qsc_code_frac_chars_dupe_7grams": 0.03629032, "qsc_code_frac_chars_dupe_8grams": 0.03629032, "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.04063604, "qsc_code_frac_chars_whitespace": 0.20949721, "qsc_code_size_file_byte": 1432.0, "qsc_code_num_lines": 51.0, "qsc_code_num_chars_line_max": 72.0, "qsc_code_num_chars_line_mean": 28.07843137, "qsc_code_frac_chars_alphabet": 0.83568905, "qsc_code_frac_chars_comments": 0.49511173, "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.01106501, "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.2173913, "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/sprites/GooSprite.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.sprites; import com.shatteredpixel.shatteredpixeldungeon.Assets; import com.shatteredpixel.shatteredpixeldungeon.actors.Char; import com.watabou.noosa.TextureFilm; import com.watabou.noosa.particles.Emitter; import com.watabou.noosa.particles.Emitter.Factory; import com.watabou.noosa.particles.PixelParticle; import com.watabou.utils.PointF; import com.watabou.utils.Random; public class GooSprite extends MobSprite { private Animation pump; private Animation pumpAttack; private Emitter spray; public GooSprite() { super(); texture( Assets.GOO ); TextureFilm frames = new TextureFilm( texture, 20, 14 ); idle = new Animation( 10, true ); idle.frames( frames, 2, 1, 0, 0, 1 ); run = new Animation( 15, true ); run.frames( frames, 3, 2, 1, 2 ); pump = new Animation( 20, true ); pump.frames( frames, 4, 3, 2, 1, 0 ); pumpAttack = new Animation ( 20, false ); pumpAttack.frames( frames, 4, 3, 2, 1, 0, 7); attack = new Animation( 10, false ); attack.frames( frames, 8, 9, 10 ); die = new Animation( 10, false ); die.frames( frames, 5, 6, 7 ); play(idle); spray = centerEmitter(); spray.autoKill = false; spray.pour( GooParticle.FACTORY, 0.04f ); spray.on = false; } @Override public void link(Char ch) { super.link(ch); if (ch.HP*2 <= ch.HT) spray(true); } public void pumpUp() { play( pump ); } public void pumpAttack() { play(pumpAttack); } @Override public int blood() { return 0xFF000000; } public void spray(boolean on){ spray.on = on; } @Override public void update() { super.update(); spray.pos(center()); spray.visible = visible; } public static class GooParticle extends PixelParticle.Shrinking { public static final Emitter.Factory FACTORY = new Factory() { @Override public void emit( Emitter emitter, int index, float x, float y ) { ((GooParticle)emitter.recycle( GooParticle.class )).reset( x, y ); } }; public GooParticle() { super(); color( 0x000000 ); lifespan = 0.3f; acc.set( 0, +50 ); } public void reset( float x, float y ) { revive(); this.x = x; this.y = y; left = lifespan; size = 4; speed.polar( -Random.Float( PointF.PI ), Random.Float( 32, 48 ) ); } @Override public void update() { super.update(); float p = left / lifespan; am = p > 0.5f ? (1 - p) * 2f : 1; } } @Override public void onComplete( Animation anim ) { super.onComplete(anim); if (anim == pumpAttack) { idle(); ch.onAttackComplete(); } else if (anim == die) { spray.killAndErase(); } } }
3,427
GooSprite
java
en
java
code
{"qsc_code_num_words": 455, "qsc_code_num_chars": 3427.0, "qsc_code_mean_word_length": 5.04615385, "qsc_code_frac_words_unique": 0.41098901, "qsc_code_frac_chars_top_2grams": 0.03919861, "qsc_code_frac_chars_top_3grams": 0.04181185, "qsc_code_frac_chars_top_4grams": 0.03658537, "qsc_code_frac_chars_dupe_5grams": 0.12630662, "qsc_code_frac_chars_dupe_6grams": 0.10191638, "qsc_code_frac_chars_dupe_7grams": 0.01480836, "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.03433001, "qsc_code_frac_chars_whitespace": 0.20951269, "qsc_code_size_file_byte": 3427.0, "qsc_code_num_lines": 151.0, "qsc_code_num_chars_line_max": 72.0, "qsc_code_num_chars_line_mean": 22.69536424, "qsc_code_frac_chars_alphabet": 0.81321521, "qsc_code_frac_chars_comments": 0.22789612, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.12371134, "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.00680272, "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.10309278, "qsc_codejava_score_lines_no_logic": 0.2371134, "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/utils/GLog.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.utils; import com.shatteredpixel.shatteredpixeldungeon.messages.Messages; import com.watabou.utils.DeviceCompat; import com.watabou.utils.Signal; public class GLog { public static final String TAG = "GAME"; public static final String POSITIVE = "++ "; public static final String NEGATIVE = "-- "; public static final String WARNING = "** "; public static final String HIGHLIGHT = "@@ "; public static Signal<String> update = new Signal<>(); public static void i( String text, Object... args ) { if (args.length > 0) { text = Messages.format( text, args ); } DeviceCompat.log(TAG, text); update.dispatch( text ); } public static void p( String text, Object... args ) { i( POSITIVE + text, args ); } public static void n( String text, Object... args ) { i( NEGATIVE + text, args ); } public static void w( String text, Object... args ) { i( WARNING + text, args ); } public static void h( String text, Object... args ) { i( HIGHLIGHT + text, args ); } }
1,844
GLog
java
en
java
code
{"qsc_code_num_words": 250, "qsc_code_num_chars": 1844.0, "qsc_code_mean_word_length": 5.144, "qsc_code_frac_words_unique": 0.46, "qsc_code_frac_chars_top_2grams": 0.10264386, "qsc_code_frac_chars_top_3grams": 0.06609642, "qsc_code_frac_chars_top_4grams": 0.08942457, "qsc_code_frac_chars_dupe_5grams": 0.18506998, "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.01222826, "qsc_code_frac_chars_whitespace": 0.20173536, "qsc_code_size_file_byte": 1844.0, "qsc_code_num_lines": 63.0, "qsc_code_num_chars_line_max": 72.0, "qsc_code_num_chars_line_mean": 29.26984127, "qsc_code_frac_chars_alphabet": 0.86141304, "qsc_code_frac_chars_comments": 0.42353579, "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.01505174, "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.16129032, "qsc_codejava_score_lines_no_logic": 0.29032258, "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/utils/BArray.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.utils; public class BArray { private static boolean[] falseArray; //This is MUCH faster than making a new boolean[] or using Arrays.fill; public static void setFalse( boolean[] toBeFalse ){ if (falseArray == null || falseArray.length < toBeFalse.length) falseArray = new boolean[toBeFalse.length]; System.arraycopy(falseArray, 0, toBeFalse, 0, toBeFalse.length); } public static boolean[] and( boolean[] a, boolean[] b, boolean[] result ) { int length = a.length; if (result == null) { result = new boolean[length]; } for (int i=0; i < length; i++) { result[i] = a[i] && b[i]; } return result; } public static boolean[] or( boolean[] a, boolean[] b, boolean[] result ){ return or( a, b, 0, a.length, result); } public static boolean[] or( boolean[] a, boolean[] b, int offset, int length, boolean[] result ) { if (result == null) { result = new boolean[length]; } for (int i=offset; i < offset+length; i++) { result[i] = a[i] || b[i]; } return result; } public static boolean[] not( boolean[] a, boolean[] result ) { int length = a.length; if (result == null) { result = new boolean[length]; } for (int i=0; i < length; i++) { result[i] = !a[i]; } return result; } public static boolean[] is( int[] a, boolean[] result, int v1 ) { int length = a.length; if (result == null) { result = new boolean[length]; } for (int i=0; i < length; i++) { result[i] = a[i] == v1; } return result; } public static boolean[] isOneOf( int[] a, boolean[] result, int... v ) { int length = a.length; int nv = v.length; if (result == null) { result = new boolean[length]; } for (int i=0; i < length; i++) { result[i] = false; for (int j=0; j < nv; j++) { if (a[i] == v[j]) { result[i] = true; break; } } } return result; } public static boolean[] isNot( int[] a, boolean[] result, int v1 ) { int length = a.length; if (result == null) { result = new boolean[length]; } for (int i=0; i < length; i++) { result[i] = a[i] != v1; } return result; } public static boolean[] isNotOneOf( int[] a, boolean[] result, int... v ) { int length = a.length; int nv = v.length; if (result == null) { result = new boolean[length]; } for (int i=0; i < length; i++) { result[i] = true; for (int j=0; j < nv; j++) { if (a[i] == v[j]) { result[i] = false; break; } } } return result; } }
3,383
BArray
java
en
java
code
{"qsc_code_num_words": 471, "qsc_code_num_chars": 3383.0, "qsc_code_mean_word_length": 4.31422505, "qsc_code_frac_words_unique": 0.25690021, "qsc_code_frac_chars_top_2grams": 0.05757874, "qsc_code_frac_chars_top_3grams": 0.07480315, "qsc_code_frac_chars_top_4grams": 0.06200787, "qsc_code_frac_chars_dupe_5grams": 0.51919291, "qsc_code_frac_chars_dupe_6grams": 0.49114173, "qsc_code_frac_chars_dupe_7grams": 0.43405512, "qsc_code_frac_chars_dupe_8grams": 0.43405512, "qsc_code_frac_chars_dupe_9grams": 0.43405512, "qsc_code_frac_chars_dupe_10grams": 0.40403543, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.0127186, "qsc_code_frac_chars_whitespace": 0.25628141, "qsc_code_size_file_byte": 3383.0, "qsc_code_num_lines": 155.0, "qsc_code_num_chars_line_max": 100.0, "qsc_code_num_chars_line_mean": 21.82580645, "qsc_code_frac_chars_alphabet": 0.79491256, "qsc_code_frac_chars_comments": 0.25184747, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.47368421, "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.02105263, "qsc_codejava_score_lines_no_logic": 0.10526316, "qsc_codejava_frac_words_no_modifier": 0.33333333, "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/messages/Languages.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.messages; import java.util.Locale; public enum Languages { ENGLISH("english", "", Status.REVIEWED, null, null), //KOREAN("한국어", "ko", Status.UNREVIEWED, new String[]{"Flameblast12", "GameConqueror", "Korean2017"}, new String[]{"Cocoa", "WondarRabb1t", "ddojin0115", "eeeei", "hancyel", "linterpreteur", "lsiebnie" }), RUSSIAN("русский", "ru", Status.UNREVIEWED, new String[]{"ConsideredHamster", "Inevielle", "yarikonline"}, new String[]{"AttHawk46", "BlueberryShortcake", "HerrGotlieb", "HoloTheWise", "Ilbko", "JleHuBbluKoT", "MrXantar", "Raymundo", "Shamahan", "apxwn", "kirusyaga", "perefrazz", "roman.yagodin", "un_logic", "Вoвa"}), GERMAN("deutsch", "de", Status.UNREVIEWED, new String[]{"Dallukas", "KrystalCroft", "Wuzzy", "Zap0", "bernhardreiter", "davedude"}, new String[]{"Abracadabra", "Ceeee", "DarkPixel", "ErichME", "Faquarl", "LenzB", "Sarius", "SirEddi", "Sorpl3x", "ThunfischGott", "Topicranger", "apxwn", "azrdev", "carrageen", "gekko303", "johannes.schobel", "karoshi42", "koryphea", "luciocarreras", "niemand", "oragothen", "spixi"}), SPANISH("español", "es", Status.REVIEWED, new String[]{"Kiroto", "Kohru", "airman12", "grayscales"}, new String[]{"Alesxanderk", "CorvosUtopy", "Dewstend", "Dyrran", "Fervoreking", "Illyatwo2", "JPCHZ", "STKmonoqui", "alfongad", "benzarr410", "chepe567.jc", "ctrijueque", "dhg121", "javifs", "jonismack1", "tres.14159"}), FRENCH("français", "fr", Status.UNREVIEWED, new String[]{"Emether", "Xalofar", "canc42", "kultissim", "minikrob"}, new String[]{"Alsydis", "Axce", "Basttee", "Dekadisk", "Draal", "Neopolitan", "Nyrnx", "RomTheMareep", "SpeagleZNT", "TheKappaDuWeb", "Tronche2Cake", "Ygdrazil", "antoine9298", "go11um", "levilbatard", "linterpreteur", "maeltur70", "marmous", "solthaar", "vavavoum", "speagle"}), //CHINESE("中文", "zh", Status.UNREVIEWED, new String[]{"Jinkeloid(zdx00793)"}, new String[]{"931451545", "HoofBumpBlurryface", "Lery", "Lyn-0401", "ShatteredFlameBlast", "endlesssolitude", "hmdzl001", "tempest102"}), POLISH("polski", "pl", Status.UNREVIEWED, new String[]{"Deksippos", "kuadziw", "szymex73"}, new String[]{"Chasseur", "Darden", "KarixDaii", "MJedi", "MrKukurykpl", "Odiihinia", "Peperos", "Scharnvirk", "VasteelXolotl", "bvader95", "dusakus", "michaub", "ozziezombie", "szczoteczka22", "transportowiec96"}), PORTUGUESE("português", "pt", Status.UNREVIEWED, new String[]{"Chacal.Ex", "TDF2001", "matheus208"}, new String[]{"Bigode935", "ChainedFreaK", "Helen0903", "JST", "MadHorus", "Matie", "Tio_P_(Krampus)", "ancientorange", "danypr23", "denis.gnl", "ismael.henriques12", "mfcord", "owenreilly", "rafazago", "try31"}), ITALIAN("italiano", "it", Status.REVIEWED, new String[]{"bizzolino", "funnydwarf"}, new String[]{"4est", "DaniMare", "Danzl", "andrearubbino00", "nessunluogo", "righi.a", "umby000"}), CZECH("čeština", "cs", Status.REVIEWED, new String[]{"ObisMike"}, new String[]{"AshenShugar", "Buba237", "JStrange", "RealBrofessor", "chuckjirka"}), TURKISH("türkçe", "tr", Status.INCOMPLETE, new String[]{"LokiofMillenium", "emrebnk"}, new String[]{"AGORAAA", "AcuriousPotato", "alpekin98", "denizakalin", "erdemozdemir98", "melezorus34", "mitux"}), FINNISH("suomi", "fi", Status.INCOMPLETE, new String[]{"TenguTheKnight"}, null ), HUNGARIAN("magyar", "hu", Status.UNREVIEWED, new String[]{"dorheim", "szalaik"}, new String[]{"Navetelen", "clarovani", "dhialub", "nanometer", "nardomaa", "savarall"}), //JAPANESE("日本語", "ja", Status.INCOMPLETE, null, new String[]{"Gosamaru", "amama", "librada", "mocklike"}), INDONESIAN("indonésien","in", Status.INCOMPLETE, new String[]{"rakapratama"}, new String[]{"ZangieF347", "esprogarap"}), CATALAN("català", "ca", Status.INCOMPLETE, new String[]{"Illyatwo2"}, new String[]{"n1ngu"}), BASQUE("euskara", "eu", Status.REVIEWED, new String[]{"Deathrevenge", "Osoitz"}, null), ESPERANTO("esperanto", "eo", Status.UNREVIEWED, new String[]{"Verdulo"}, new String[]{"Raizin"}); public enum Status{ //below 80% complete languages are not added. INCOMPLETE, //80-99% complete UNREVIEWED, //100% complete REVIEWED //100% reviewed } private String name; private String code; private Status status; private String[] reviewers; private String[] translators; Languages(String name, String code, Status status, String[] reviewers, String[] translators){ this.name = name; this.code = code; this.status = status; this.reviewers = reviewers; this.translators = translators; } public String nativeName(){ return name; } public String code(){ return code; } public Status status(){ return status; } public String[] reviewers() { if (reviewers == null) return new String[]{}; else return reviewers.clone(); } public String[] translators() { if (translators == null) return new String[]{}; else return translators.clone(); } public static Languages matchLocale(Locale locale){ return matchCode(locale.getLanguage()); } public static Languages matchCode(String code){ for (Languages lang : Languages.values()){ if (lang.code().equals(code)) return lang; } return ENGLISH; } }
6,028
Languages
java
en
java
code
{"qsc_code_num_words": 636, "qsc_code_num_chars": 6028.0, "qsc_code_mean_word_length": 6.45440252, "qsc_code_frac_words_unique": 0.58647799, "qsc_code_frac_chars_top_2grams": 0.07673569, "qsc_code_frac_chars_top_3grams": 0.04165652, "qsc_code_frac_chars_top_4grams": 0.05481121, "qsc_code_frac_chars_dupe_5grams": 0.03410475, "qsc_code_frac_chars_dupe_6grams": 0.02777101, "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.02867521, "qsc_code_frac_chars_whitespace": 0.13221632, "qsc_code_size_file_byte": 6028.0, "qsc_code_num_lines": 102.0, "qsc_code_num_chars_line_max": 425.0, "qsc_code_num_chars_line_mean": 59.09803922, "qsc_code_frac_chars_alphabet": 0.75606959, "qsc_code_frac_chars_comments": 0.23606503, "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.35852334, "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.234375, "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": null, "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/messages/Messages.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.messages; import com.shatteredpixel.shatteredpixeldungeon.ShatteredPixelDungeon; import com.watabou.utils.DeviceCompat; import java.util.Arrays; import java.util.Enumeration; import java.util.HashMap; import java.util.HashSet; import java.util.IllegalFormatException; import java.util.Locale; import java.util.ResourceBundle; /* Simple wrapper class for java resource bundles. The core idea here is that each string resource's key is a combination of the class definition and a local value. An object or static method would usually call this with an object/class reference (usually its own) and a local key. This means that an object can just ask for "name" rather than, say, "items.weapon.enchantments.death.name" */ public class Messages { /* use hashmap for two reasons. Firstly because android 2.2 doesn't support resourcebundle.containskey(), secondly so I can read in and combine multiple properties files, resulting in a more clean structure for organizing all the strings, instead of one big file. ..Yes R.string would do this for me, but that's not multiplatform */ private static HashMap<String, String> strings; private static Languages lang; public static Languages lang(){ return lang; } /** * Setup Methods */ private static String[] prop_files = new String[]{ "com.shatteredpixel.shatteredpixeldungeon.messages.actors.actors", "com.shatteredpixel.shatteredpixeldungeon.messages.items.items", "com.shatteredpixel.shatteredpixeldungeon.messages.journal.journal", "com.shatteredpixel.shatteredpixeldungeon.messages.levels.levels", "com.shatteredpixel.shatteredpixeldungeon.messages.plants.plants", "com.shatteredpixel.shatteredpixeldungeon.messages.scenes.scenes", "com.shatteredpixel.shatteredpixeldungeon.messages.ui.ui", "com.shatteredpixel.shatteredpixeldungeon.messages.windows.windows", "com.shatteredpixel.shatteredpixeldungeon.messages.misc.misc" }; static{ //FIXME: change when other languages are added setup(Languages.ENGLISH); } public static void setup( Languages lang ){ strings = new HashMap<>(); Messages.lang = lang; Locale locale = new Locale(lang.code()); for (String file : prop_files) { ResourceBundle bundle = ResourceBundle.getBundle( file, locale); Enumeration<String> keys = bundle.getKeys(); while (keys.hasMoreElements()) { String key = keys.nextElement(); String value = bundle.getString(key); if (DeviceCompat.usesISO_8859_1()) { try { value = new String(value.getBytes("ISO-8859-1"), "UTF-8"); } catch (Exception e) { ShatteredPixelDungeon.reportException(e); } } strings.put(key, value); } } } /** * Resource grabbing methods */ public static String get(String key, Object...args){ return get(null, key, args); } public static String get(Object o, String k, Object...args){ return get(o.getClass(), k, args); } public static String get(Class c, String k, Object...args){ String key; if (c != null){ key = c.getName().replace("com.shatteredpixel.shatteredpixeldungeon.", ""); key += "." + k; } else key = k; if (strings.containsKey(key.toLowerCase(Locale.ENGLISH))){ if (args.length > 0) return format(strings.get(key.toLowerCase(Locale.ENGLISH)), args); else return strings.get(key.toLowerCase(Locale.ENGLISH)); } else { //this is so child classes can inherit properties from their parents. //in cases where text is commonly grabbed as a utility from classes that aren't mean to be instantiated //(e.g. flavourbuff.dispTurns()) using .class directly is probably smarter to prevent unnecessary recursive calls. if (c != null && c.getSuperclass() != null){ return get(c.getSuperclass(), k, args); } else { return "!!!NO TEXT FOUND!!!"; } } } /** * String Utility Methods */ public static String format( String format, Object...args ) { try { return String.format(Locale.ENGLISH, format, args); } catch (IllegalFormatException e) { ShatteredPixelDungeon.reportException( e ); return format; } } public static String capitalize( String str ){ if (str.length() == 0) return str; else return Character.toTitleCase( str.charAt( 0 ) ) + str.substring( 1 ); } //Words which should not be capitalized in title case, mostly prepositions which appear ingame //This list is not comprehensive! private static final HashSet<String> noCaps = new HashSet<>( Arrays.asList(new String[]{ //English "a", "an", "and", "of", "by", "to", "the", "x" }) ); public static String titleCase( String str ){ //English capitalizes every word except for a few exceptions if (lang == Languages.ENGLISH){ String result = ""; //split by any unicode space character for (String word : str.split("(?<=\\p{Zs})")){ if (noCaps.contains(word.trim().toLowerCase(Locale.ENGLISH).replaceAll(":|[0-9]", ""))){ result += word; } else { result += capitalize(word); } } //first character is always capitalized. return capitalize(result); } //Otherwise, use sentence case return capitalize(str); } }
5,978
Messages
java
en
java
code
{"qsc_code_num_words": 757, "qsc_code_num_chars": 5978.0, "qsc_code_mean_word_length": 5.5984148, "qsc_code_frac_words_unique": 0.39498018, "qsc_code_frac_chars_top_2grams": 0.04813591, "qsc_code_frac_chars_top_3grams": 0.10759792, "qsc_code_frac_chars_top_4grams": 0.10854176, "qsc_code_frac_chars_dupe_5grams": 0.04860783, "qsc_code_frac_chars_dupe_6grams": 0.03067485, "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.0073275, "qsc_code_frac_chars_whitespace": 0.17815323, "qsc_code_size_file_byte": 5978.0, "qsc_code_num_lines": 191.0, "qsc_code_num_chars_line_max": 118.0, "qsc_code_num_chars_line_mean": 31.29842932, "qsc_code_frac_chars_alphabet": 0.85528191, "qsc_code_frac_chars_comments": 0.37738374, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.06542056, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.17942519, "qsc_code_frac_chars_long_word_length": 0.16062315, "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.0052356, "qsc_code_frac_lines_assert": 0.0, "qsc_codejava_cate_var_zero": 0.0, "qsc_codejava_frac_lines_func_ratio": 0.12149533, "qsc_codejava_score_lines_no_logic": 0.26168224, "qsc_codejava_frac_words_no_modifier": 0.57142857, "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/sprites/TenguSprite.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.sprites; import com.shatteredpixel.shatteredpixeldungeon.Assets; import com.shatteredpixel.shatteredpixeldungeon.Dungeon; import com.shatteredpixel.shatteredpixeldungeon.items.Item; import com.shatteredpixel.shatteredpixeldungeon.scenes.GameScene; import com.watabou.noosa.TextureFilm; import com.watabou.utils.Callback; public class TenguSprite extends MobSprite { public TenguSprite() { super(); texture( Assets.TENGU ); TextureFilm frames = new TextureFilm( texture, 14, 16 ); idle = new Animation( 2, true ); idle.frames( frames, 0, 0, 0, 1 ); run = new Animation( 15, false ); run.frames( frames, 2, 3, 4, 5, 0 ); attack = new Animation( 15, false ); attack.frames( frames, 6, 7, 7, 0 ); zap = attack.clone(); die = new Animation( 8, false ); die.frames( frames, 8, 9, 10, 10, 10, 10, 10, 10 ); play( run.clone() ); } @Override public void idle() { isMoving = false; super.idle(); } @Override public void move( int from, int to ) { place( to ); play( run ); turnTo( from , to ); isMoving = true; if (Dungeon.level.water[to]) { GameScene.ripple( to ); } } @Override public void attack( int cell ) { if (!Dungeon.level.adjacent( cell, ch.pos )) { ((MissileSprite)parent.recycle( MissileSprite.class )). reset( ch.pos, cell, new TenguShuriken(), new Callback() { @Override public void call() { ch.onAttackComplete(); } } ); play( zap ); turnTo( ch.pos , cell ); } else { super.attack( cell ); } } @Override public void onComplete( Animation anim ) { if (anim == run) { synchronized (this){ isMoving = false; idle(); notifyAll(); } } else { super.onComplete( anim ); } } public static class TenguShuriken extends Item { { image = ItemSpriteSheet.SHURIKEN; } } }
2,701
TenguSprite
java
en
java
code
{"qsc_code_num_words": 338, "qsc_code_num_chars": 2701.0, "qsc_code_mean_word_length": 5.30769231, "qsc_code_frac_words_unique": 0.46745562, "qsc_code_frac_chars_top_2grams": 0.03010033, "qsc_code_frac_chars_top_3grams": 0.10590858, "qsc_code_frac_chars_top_4grams": 0.09810479, "qsc_code_frac_chars_dupe_5grams": 0.05239688, "qsc_code_frac_chars_dupe_6grams": 0.03121516, "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.02572654, "qsc_code_frac_chars_whitespace": 0.22288041, "qsc_code_size_file_byte": 2701.0, "qsc_code_num_lines": 119.0, "qsc_code_num_chars_line_max": 72.0, "qsc_code_num_chars_line_mean": 22.69747899, "qsc_code_frac_chars_alphabet": 0.82896617, "qsc_code_frac_chars_comments": 0.28915217, "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.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.06944444, "qsc_codejava_score_lines_no_logic": 0.16666667, "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/sprites/RotLasherSprite.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.sprites; import com.shatteredpixel.shatteredpixeldungeon.Assets; import com.watabou.noosa.TextureFilm; public class RotLasherSprite extends MobSprite { public RotLasherSprite() { super(); texture( Assets.ROT_LASH ); TextureFilm frames = new TextureFilm( texture, 12, 16 ); idle = new Animation( 0, true ); idle.frames( frames, 0); run = new Animation( 0, true ); run.frames( frames, 0); attack = new Animation( 24, false ); attack.frames( frames, 0, 1, 2, 2, 1 ); die = new Animation( 12, false ); die.frames( frames, 3, 4, 5, 6 ); play( idle ); } }
1,417
RotLasherSprite
java
en
java
code
{"qsc_code_num_words": 200, "qsc_code_num_chars": 1417.0, "qsc_code_mean_word_length": 5.055, "qsc_code_frac_words_unique": 0.575, "qsc_code_frac_chars_top_2grams": 0.04747774, "qsc_code_frac_chars_top_3grams": 0.03857567, "qsc_code_frac_chars_top_4grams": 0.05637982, "qsc_code_frac_chars_dupe_5grams": 0.08110781, "qsc_code_frac_chars_dupe_6grams": 0.0553907, "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.03324584, "qsc_code_frac_chars_whitespace": 0.19336627, "qsc_code_size_file_byte": 1417.0, "qsc_code_num_lines": 49.0, "qsc_code_num_chars_line_max": 72.0, "qsc_code_num_chars_line_mean": 28.91836735, "qsc_code_frac_chars_alphabet": 0.85126859, "qsc_code_frac_chars_comments": 0.55116443, "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.15789474, "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/sprites/GolemSprite.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.sprites; import com.shatteredpixel.shatteredpixeldungeon.Assets; import com.shatteredpixel.shatteredpixeldungeon.effects.particles.ElmoParticle; import com.watabou.noosa.TextureFilm; public class GolemSprite extends MobSprite { public GolemSprite() { super(); texture( Assets.GOLEM ); TextureFilm frames = new TextureFilm( texture, 16, 16 ); idle = new Animation( 4, true ); idle.frames( frames, 0, 1 ); run = new Animation( 12, true ); run.frames( frames, 2, 3, 4, 5 ); attack = new Animation( 10, false ); attack.frames( frames, 6, 7, 8 ); die = new Animation( 15, false ); die.frames( frames, 9, 10, 11, 12, 13 ); play( idle ); } @Override public int blood() { return 0xFF80706c; } @Override public void onComplete( Animation anim ) { if (anim == die) { emitter().burst( ElmoParticle.FACTORY, 4 ); } super.onComplete( anim ); } }
1,736
GolemSprite
java
en
java
code
{"qsc_code_num_words": 232, "qsc_code_num_chars": 1736.0, "qsc_code_mean_word_length": 5.25862069, "qsc_code_frac_words_unique": 0.57758621, "qsc_code_frac_chars_top_2grams": 0.03934426, "qsc_code_frac_chars_top_3grams": 0.03196721, "qsc_code_frac_chars_top_4grams": 0.04672131, "qsc_code_frac_chars_dupe_5grams": 0.06721311, "qsc_code_frac_chars_dupe_6grams": 0.04590164, "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.03815695, "qsc_code_frac_chars_whitespace": 0.19988479, "qsc_code_size_file_byte": 1736.0, "qsc_code_num_lines": 63.0, "qsc_code_num_chars_line_max": 80.0, "qsc_code_num_chars_line_mean": 27.55555556, "qsc_code_frac_chars_alphabet": 0.84017279, "qsc_code_frac_chars_comments": 0.44988479, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.06451613, "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.0104712, "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.22580645, "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/sprites/WraithSprite.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.sprites; import com.shatteredpixel.shatteredpixeldungeon.Assets; import com.watabou.noosa.TextureFilm; public class WraithSprite extends MobSprite { public WraithSprite() { super(); texture( Assets.WRAITH ); TextureFilm frames = new TextureFilm( texture, 14, 15 ); idle = new Animation( 5, true ); idle.frames( frames, 0, 1 ); run = new Animation( 10, true ); run.frames( frames, 0, 1 ); attack = new Animation( 10, false ); attack.frames( frames, 0, 2, 3 ); die = new Animation( 8, false ); die.frames( frames, 0, 4, 5, 6, 7 ); play( idle ); } @Override public int blood() { return 0x88000000; } }
1,488
WraithSprite
java
en
java
code
{"qsc_code_num_words": 206, "qsc_code_num_chars": 1488.0, "qsc_code_mean_word_length": 5.0631068, "qsc_code_frac_words_unique": 0.58737864, "qsc_code_frac_chars_top_2grams": 0.04602109, "qsc_code_frac_chars_top_3grams": 0.04985618, "qsc_code_frac_chars_top_4grams": 0.05465005, "qsc_code_frac_chars_dupe_5grams": 0.07861937, "qsc_code_frac_chars_dupe_6grams": 0.05369128, "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.04064352, "qsc_code_frac_chars_whitespace": 0.2063172, "qsc_code_size_file_byte": 1488.0, "qsc_code_num_lines": 54.0, "qsc_code_num_chars_line_max": 72.0, "qsc_code_num_chars_line_mean": 27.55555556, "qsc_code_frac_chars_alphabet": 0.84250635, "qsc_code_frac_chars_comments": 0.52486559, "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.01414427, "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.2173913, "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/sprites/ShopkeeperSprite.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.sprites; import com.shatteredpixel.shatteredpixeldungeon.Assets; import com.watabou.noosa.TextureFilm; import com.watabou.noosa.particles.PixelParticle; public class ShopkeeperSprite extends MobSprite { private PixelParticle coin; public ShopkeeperSprite() { super(); texture( Assets.KEEPER ); TextureFilm film = new TextureFilm( texture, 14, 14 ); idle = new Animation( 10, true ); idle.frames( film, 1, 1, 1, 1, 1, 0, 0, 0, 0 ); die = new Animation( 20, false ); die.frames( film, 0 ); run = idle.clone(); attack = idle.clone(); idle(); } @Override public void onComplete( Animation anim ) { super.onComplete( anim ); if (visible && anim == idle) { if (coin == null) { coin = new PixelParticle(); parent.add( coin ); } coin.reset( x + (flipHorizontal ? 0 : 13), y + 7, 0xFFFF00, 1, 0.5f ); coin.speed.y = -40; coin.acc.y = +160; } } }
1,746
ShopkeeperSprite
java
en
java
code
{"qsc_code_num_words": 238, "qsc_code_num_chars": 1746.0, "qsc_code_mean_word_length": 5.05042017, "qsc_code_frac_words_unique": 0.56722689, "qsc_code_frac_chars_top_2grams": 0.00665557, "qsc_code_frac_chars_top_3grams": 0.03244592, "qsc_code_frac_chars_top_4grams": 0.04742097, "qsc_code_frac_chars_dupe_5grams": 0.06821963, "qsc_code_frac_chars_dupe_6grams": 0.04658902, "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.03607504, "qsc_code_frac_chars_whitespace": 0.20618557, "qsc_code_size_file_byte": 1746.0, "qsc_code_num_lines": 64.0, "qsc_code_num_chars_line_max": 74.0, "qsc_code_num_chars_line_mean": 27.28125, "qsc_code_frac_chars_alphabet": 0.83116883, "qsc_code_frac_chars_comments": 0.44730813, "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.00829016, "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.03125, "qsc_codejava_score_lines_no_logic": 0.1875, "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/sprites/LarvaSprite.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.sprites; import com.shatteredpixel.shatteredpixeldungeon.Assets; import com.shatteredpixel.shatteredpixeldungeon.effects.Splash; import com.watabou.noosa.TextureFilm; public class LarvaSprite extends MobSprite { public LarvaSprite() { super(); texture( Assets.LARVA ); TextureFilm frames = new TextureFilm( texture, 12, 8 ); idle = new Animation( 5, true ); idle.frames( frames, 4, 4, 4, 4, 4, 5, 5 ); run = new Animation( 12, true ); run.frames( frames, 0, 1, 2, 3 ); attack = new Animation( 15, false ); attack.frames( frames, 6, 5, 7 ); die = new Animation( 10, false ); die.frames( frames, 8 ); play( idle ); } @Override public int blood() { return 0xbbcc66; } @Override public void die() { Splash.at( center(), blood(), 10 ); super.die(); } }
1,646
LarvaSprite
java
en
java
code
{"qsc_code_num_words": 226, "qsc_code_num_chars": 1646.0, "qsc_code_mean_word_length": 5.07964602, "qsc_code_frac_words_unique": 0.55309735, "qsc_code_frac_chars_top_2grams": 0.04181185, "qsc_code_frac_chars_top_3grams": 0.03397213, "qsc_code_frac_chars_top_4grams": 0.04965157, "qsc_code_frac_chars_dupe_5grams": 0.07142857, "qsc_code_frac_chars_dupe_6grams": 0.04878049, "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.03579589, "qsc_code_frac_chars_whitespace": 0.20230863, "qsc_code_size_file_byte": 1646.0, "qsc_code_num_lines": 61.0, "qsc_code_num_chars_line_max": 72.0, "qsc_code_num_chars_line_mean": 26.98360656, "qsc_code_frac_chars_alphabet": 0.8385377, "qsc_code_frac_chars_comments": 0.4744836, "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.00924855, "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.06896552, "qsc_codejava_score_lines_no_logic": 0.24137931, "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/sprites/SnakeSprite.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.sprites; import com.shatteredpixel.shatteredpixeldungeon.Assets; import com.watabou.noosa.TextureFilm; public class SnakeSprite extends MobSprite { public SnakeSprite() { super(); texture( Assets.SNAKE ); TextureFilm frames = new TextureFilm( texture, 12, 11 ); //many frames here as we want the rising/falling to be slow but the tongue to be fast idle = new Animation( 10, true ); idle.frames( frames, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 3, 2, 1, 1); run = new Animation( 8, true ); run.frames( frames, 4, 5, 6, 7 ); attack = new Animation( 15, false ); attack.frames( frames, 8, 9, 10, 9, 0); die = new Animation( 10, false ); die.frames( frames, 11, 12, 13 ); play(idle); } }
1,630
SnakeSprite
java
en
java
code
{"qsc_code_num_words": 248, "qsc_code_num_chars": 1630.0, "qsc_code_mean_word_length": 4.44758065, "qsc_code_frac_words_unique": 0.52016129, "qsc_code_frac_chars_top_2grams": 0.02538531, "qsc_code_frac_chars_top_3grams": 0.03535811, "qsc_code_frac_chars_top_4grams": 0.04351768, "qsc_code_frac_chars_dupe_5grams": 0.09700816, "qsc_code_frac_chars_dupe_6grams": 0.07343608, "qsc_code_frac_chars_dupe_7grams": 0.02266546, "qsc_code_frac_chars_dupe_8grams": 0.02266546, "qsc_code_frac_chars_dupe_9grams": 0.02266546, "qsc_code_frac_chars_dupe_10grams": 0.01359927, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.05835962, "qsc_code_frac_chars_whitespace": 0.22208589, "qsc_code_size_file_byte": 1630.0, "qsc_code_num_lines": 53.0, "qsc_code_num_chars_line_max": 88.0, "qsc_code_num_chars_line_mean": 30.75471698, "qsc_code_frac_chars_alphabet": 0.8115142, "qsc_code_frac_chars_comments": 0.53067485, "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.15, "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/sprites/SkeletonSprite.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.sprites; import com.shatteredpixel.shatteredpixeldungeon.Assets; import com.shatteredpixel.shatteredpixeldungeon.Dungeon; import com.shatteredpixel.shatteredpixeldungeon.effects.Speck; import com.watabou.noosa.TextureFilm; public class SkeletonSprite extends MobSprite { public SkeletonSprite() { super(); texture( Assets.SKELETON ); TextureFilm frames = new TextureFilm( texture, 12, 15 ); idle = new Animation( 12, true ); idle.frames( frames, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 3 ); run = new Animation( 15, true ); run.frames( frames, 4, 5, 6, 7, 8, 9 ); attack = new Animation( 15, false ); attack.frames( frames, 14, 15, 16 ); die = new Animation( 12, false ); die.frames( frames, 10, 11, 12, 13 ); play( idle ); } @Override public void die() { super.die(); if (Dungeon.level.heroFOV[ch.pos]) { emitter().burst( Speck.factory( Speck.BONE ), 6 ); } } @Override public int blood() { return 0xFFcccccc; } }
1,823
SkeletonSprite
java
en
java
code
{"qsc_code_num_words": 253, "qsc_code_num_chars": 1823.0, "qsc_code_mean_word_length": 5.02371542, "qsc_code_frac_words_unique": 0.54150198, "qsc_code_frac_chars_top_2grams": 0.01888277, "qsc_code_frac_chars_top_3grams": 0.02596381, "qsc_code_frac_chars_top_4grams": 0.03147128, "qsc_code_frac_chars_dupe_5grams": 0.0747443, "qsc_code_frac_chars_dupe_6grams": 0.05428796, "qsc_code_frac_chars_dupe_7grams": 0.01022817, "qsc_code_frac_chars_dupe_8grams": 0.01022817, "qsc_code_frac_chars_dupe_9grams": 0.01022817, "qsc_code_frac_chars_dupe_10grams": 0.01022817, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.04576503, "qsc_code_frac_chars_whitespace": 0.19692814, "qsc_code_size_file_byte": 1823.0, "qsc_code_num_lines": 64.0, "qsc_code_num_chars_line_max": 73.0, "qsc_code_num_chars_line_mean": 28.484375, "qsc_code_frac_chars_alphabet": 0.82240437, "qsc_code_frac_chars_comments": 0.4284147, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.0625, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.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.00959693, "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.0625, "qsc_codejava_score_lines_no_logic": 0.25, "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/sprites/NewbornElementalSprite.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.sprites; import com.shatteredpixel.shatteredpixeldungeon.Assets; import com.shatteredpixel.shatteredpixeldungeon.actors.Char; import com.watabou.noosa.MovieClip; import com.watabou.noosa.TextureFilm; public class NewbornElementalSprite extends MobSprite{ public NewbornElementalSprite() { super(); texture( Assets.ELEMENTAL ); int ofs = 21; TextureFilm frames = new TextureFilm( texture, 12, 14 ); idle = new MovieClip.Animation( 10, true ); idle.frames( frames, ofs+0, ofs+1, ofs+2 ); run = new MovieClip.Animation( 12, true ); run.frames( frames, ofs+0, ofs+1, ofs+3 ); attack = new MovieClip.Animation( 15, false ); attack.frames( frames, ofs+4, ofs+5, ofs+6 ); die = new MovieClip.Animation( 15, false ); die.frames( frames, ofs+7, ofs+8, ofs+9, ofs+10, ofs+11, ofs+12, ofs+13, ofs+12 ); play( idle ); } @Override public void link( Char ch ) { super.link( ch ); add( CharSprite.State.BURNING ); } @Override public void die() { super.die(); remove( CharSprite.State.BURNING ); } @Override public int blood() { return 0xFFFF7D13; } }
1,930
NewbornElementalSprite
java
en
java
code
{"qsc_code_num_words": 269, "qsc_code_num_chars": 1930.0, "qsc_code_mean_word_length": 5.12267658, "qsc_code_frac_words_unique": 0.51301115, "qsc_code_frac_chars_top_2grams": 0.02612482, "qsc_code_frac_chars_top_3grams": 0.06095791, "qsc_code_frac_chars_top_4grams": 0.0413643, "qsc_code_frac_chars_dupe_5grams": 0.18577649, "qsc_code_frac_chars_dupe_6grams": 0.07402032, "qsc_code_frac_chars_dupe_7grams": 0.03338171, "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.03605313, "qsc_code_frac_chars_whitespace": 0.18082902, "qsc_code_size_file_byte": 1930.0, "qsc_code_num_lines": 72.0, "qsc_code_num_chars_line_max": 85.0, "qsc_code_num_chars_line_mean": 26.80555556, "qsc_code_frac_chars_alphabet": 0.83554712, "qsc_code_frac_chars_comments": 0.40466321, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.08333333, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.0, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.00870322, "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.08333333, "qsc_codejava_score_lines_no_logic": 0.25, "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/sprites/MobSprite.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.sprites; import com.shatteredpixel.shatteredpixeldungeon.tiles.DungeonTilemap; import com.shatteredpixel.shatteredpixeldungeon.actors.mobs.Mob; import com.watabou.noosa.tweeners.AlphaTweener; import com.watabou.noosa.tweeners.ScaleTweener; import com.watabou.utils.PointF; import com.watabou.utils.Random; public class MobSprite extends CharSprite { private static final float FADE_TIME = 3f; private static final float FALL_TIME = 1f; @Override public void update() { sleeping = ch != null && ((Mob)ch).state == ((Mob)ch).SLEEPING; super.update(); } @Override public void onComplete( Animation anim ) { super.onComplete( anim ); if (anim == die) { parent.add( new AlphaTweener( this, 0, FADE_TIME ) { @Override protected void onComplete() { MobSprite.this.killAndErase(); parent.erase( this ); } } ); } } public void fall() { origin.set( width / 2, height - DungeonTilemap.SIZE / 2 ); angularSpeed = Random.Int( 2 ) == 0 ? -720 : 720; parent.add( new ScaleTweener( this, new PointF( 0, 0 ), FALL_TIME ) { @Override protected void onComplete() { MobSprite.this.killAndErase(); parent.erase( this ); } @Override protected void updateValues( float progress ) { super.updateValues( progress ); am = 1 - progress; } } ); } }
2,163
MobSprite
java
en
java
code
{"qsc_code_num_words": 276, "qsc_code_num_chars": 2163.0, "qsc_code_mean_word_length": 5.50362319, "qsc_code_frac_words_unique": 0.51449275, "qsc_code_frac_chars_top_2grams": 0.0355497, "qsc_code_frac_chars_top_3grams": 0.04213298, "qsc_code_frac_chars_top_4grams": 0.03752469, "qsc_code_frac_chars_dupe_5grams": 0.19091508, "qsc_code_frac_chars_dupe_6grams": 0.13561554, "qsc_code_frac_chars_dupe_7grams": 0.09874918, "qsc_code_frac_chars_dupe_8grams": 0.09874918, "qsc_code_frac_chars_dupe_9grams": 0.09874918, "qsc_code_frac_chars_dupe_10grams": 0.09874918, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.01896552, "qsc_code_frac_chars_whitespace": 0.19556172, "qsc_code_size_file_byte": 2163.0, "qsc_code_num_lines": 75.0, "qsc_code_num_chars_line_max": 72.0, "qsc_code_num_chars_line_mean": 28.84, "qsc_code_frac_chars_alphabet": 0.85402299, "qsc_code_frac_chars_comments": 0.36107258, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.28888889, "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.13333333, "qsc_codejava_score_lines_no_logic": 0.28888889, "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/sprites/ScorpioSprite.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.sprites; import com.shatteredpixel.shatteredpixeldungeon.Assets; import com.shatteredpixel.shatteredpixeldungeon.Dungeon; import com.shatteredpixel.shatteredpixeldungeon.items.Item; import com.watabou.noosa.TextureFilm; import com.watabou.utils.Callback; public class ScorpioSprite extends MobSprite { private int cellToAttack; public ScorpioSprite() { super(); texture( Assets.SCORPIO ); TextureFilm frames = new TextureFilm( texture, 18, 17 ); idle = new Animation( 12, true ); idle.frames( frames, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 1, 2, 1, 2 ); run = new Animation( 8, true ); run.frames( frames, 5, 5, 6, 6 ); attack = new Animation( 15, false ); attack.frames( frames, 0, 3, 4 ); zap = attack.clone(); die = new Animation( 12, false ); die.frames( frames, 0, 7, 8, 9, 10 ); play( idle ); } @Override public int blood() { return 0xFF44FF22; } @Override public void attack( int cell ) { if (!Dungeon.level.adjacent( cell, ch.pos )) { cellToAttack = cell; turnTo( ch.pos , cell ); play( zap ); } else { super.attack( cell ); } } @Override public void onComplete( Animation anim ) { if (anim == zap) { idle(); ((MissileSprite)parent.recycle( MissileSprite.class )). reset( ch.pos, cellToAttack, new ScorpioShot(), new Callback() { @Override public void call() { ch.onAttackComplete(); } } ); } else { super.onComplete( anim ); } } public class ScorpioShot extends Item { { image = ItemSpriteSheet.FISHING_SPEAR; } } }
2,410
ScorpioSprite
java
en
java
code
{"qsc_code_num_words": 309, "qsc_code_num_chars": 2410.0, "qsc_code_mean_word_length": 5.25242718, "qsc_code_frac_words_unique": 0.49514563, "qsc_code_frac_chars_top_2grams": 0.008626, "qsc_code_frac_chars_top_3grams": 0.01109057, "qsc_code_frac_chars_top_4grams": 0.01232286, "qsc_code_frac_chars_dupe_5grams": 0.05545287, "qsc_code_frac_chars_dupe_6grams": 0.03943315, "qsc_code_frac_chars_dupe_7grams": 0.00492914, "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.03183024, "qsc_code_frac_chars_whitespace": 0.21784232, "qsc_code_size_file_byte": 2410.0, "qsc_code_num_lines": 99.0, "qsc_code_num_chars_line_max": 72.0, "qsc_code_num_chars_line_mean": 24.34343434, "qsc_code_frac_chars_alphabet": 0.82917772, "qsc_code_frac_chars_comments": 0.32406639, "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.00613874, "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.06896552, "qsc_codejava_score_lines_no_logic": 0.22413793, "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/sprites/MirrorSprite.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.sprites; import com.shatteredpixel.shatteredpixeldungeon.Dungeon; import com.shatteredpixel.shatteredpixeldungeon.actors.Char; import com.shatteredpixel.shatteredpixeldungeon.actors.mobs.npcs.MirrorImage; import com.watabou.noosa.TextureFilm; public class MirrorSprite extends MobSprite { private static final int FRAME_WIDTH = 12; private static final int FRAME_HEIGHT = 15; public MirrorSprite() { super(); texture( Dungeon.hero.heroClass.spritesheet() ); updateArmor( 0 ); idle(); } @Override public void link( Char ch ) { super.link( ch ); updateArmor( ((MirrorImage)ch).armTier ); } public void updateArmor( int tier ) { TextureFilm film = new TextureFilm( HeroSprite.tiers(), tier, FRAME_WIDTH, FRAME_HEIGHT ); idle = new Animation( 1, true ); idle.frames( film, 0, 0, 0, 1, 0, 0, 1, 1 ); run = new Animation( 20, true ); run.frames( film, 2, 3, 4, 5, 6, 7 ); die = new Animation( 20, false ); die.frames( film, 0 ); attack = new Animation( 15, false ); attack.frames( film, 13, 14, 15, 0 ); idle(); } }
1,910
MirrorSprite
java
en
java
code
{"qsc_code_num_words": 261, "qsc_code_num_chars": 1910.0, "qsc_code_mean_word_length": 5.19157088, "qsc_code_frac_words_unique": 0.53256705, "qsc_code_frac_chars_top_2grams": 0.0501845, "qsc_code_frac_chars_top_3grams": 0.11217712, "qsc_code_frac_chars_top_4grams": 0.04206642, "qsc_code_frac_chars_dupe_5grams": 0.17269373, "qsc_code_frac_chars_dupe_6grams": 0.04132841, "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.03292447, "qsc_code_frac_chars_whitespace": 0.18900524, "qsc_code_size_file_byte": 1910.0, "qsc_code_num_lines": 64.0, "qsc_code_num_chars_line_max": 93.0, "qsc_code_num_chars_line_mean": 29.84375, "qsc_code_frac_chars_alphabet": 0.84183344, "qsc_code_frac_chars_comments": 0.40890052, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.0625, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.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.0625, "qsc_codejava_score_lines_no_logic": 0.21875, "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/sprites/ShieldedSprite.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.sprites; import com.shatteredpixel.shatteredpixeldungeon.Assets; import com.watabou.noosa.TextureFilm; public class ShieldedSprite extends MobSprite { public ShieldedSprite() { super(); texture( Assets.BRUTE ); TextureFilm frames = new TextureFilm( texture, 12, 16 ); idle = new Animation( 2, true ); idle.frames( frames, 21, 21, 21, 22, 21, 21, 22, 22 ); run = new Animation( 12, true ); run.frames( frames, 25, 26, 27, 28 ); attack = new Animation( 12, false ); attack.frames( frames, 23, 24 ); die = new Animation( 12, false ); die.frames( frames, 29, 30, 31 ); play( idle ); } }
1,465
ShieldedSprite
java
en
java
code
{"qsc_code_num_words": 205, "qsc_code_num_chars": 1465.0, "qsc_code_mean_word_length": 5.02926829, "qsc_code_frac_words_unique": 0.5804878, "qsc_code_frac_chars_top_2grams": 0.04655674, "qsc_code_frac_chars_top_3grams": 0.03782735, "qsc_code_frac_chars_top_4grams": 0.05528613, "qsc_code_frac_chars_dupe_5grams": 0.07953443, "qsc_code_frac_chars_dupe_6grams": 0.0543162, "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.05308219, "qsc_code_frac_chars_whitespace": 0.20273038, "qsc_code_size_file_byte": 1465.0, "qsc_code_num_lines": 49.0, "qsc_code_num_chars_line_max": 72.0, "qsc_code_num_chars_line_mean": 29.89795918, "qsc_code_frac_chars_alphabet": 0.82962329, "qsc_code_frac_chars_comments": 0.5331058, "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.15789474, "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/sprites/BlacksmithSprite.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.sprites; import com.shatteredpixel.shatteredpixeldungeon.Assets; import com.shatteredpixel.shatteredpixeldungeon.Dungeon; import com.shatteredpixel.shatteredpixeldungeon.actors.Char; import com.shatteredpixel.shatteredpixeldungeon.effects.Speck; import com.watabou.noosa.TextureFilm; import com.watabou.noosa.audio.Sample; import com.watabou.noosa.particles.Emitter; public class BlacksmithSprite extends MobSprite { private Emitter emitter; public BlacksmithSprite() { super(); texture( Assets.TROLL ); TextureFilm frames = new TextureFilm( texture, 13, 16 ); idle = new Animation( 15, true ); idle.frames( frames, 0, 0, 0, 0, 0, 0, 0, 1, 2, 2, 2, 3 ); run = new Animation( 20, true ); run.frames( frames, 0 ); die = new Animation( 20, false ); die.frames( frames, 0 ); play( idle ); } @Override public void link( Char ch ) { super.link( ch ); emitter = new Emitter(); emitter.autoKill = false; emitter.pos( x + 7, y + 12 ); parent.add( emitter ); } @Override public void update() { super.update(); if (emitter != null) { emitter.visible = visible; } } @Override public void onComplete( Animation anim ) { super.onComplete( anim ); //FIXME should figure out why onComplete is called constantly when an animation is paused if (visible && emitter != null && anim == idle && !paused) { emitter.burst( Speck.factory( Speck.FORGE ), 3 ); float volume = 0.2f / (Dungeon.level.distance( ch.pos, Dungeon.hero.pos )); Sample.INSTANCE.play( Assets.SND_EVOKE, volume, volume, 0.8f ); } } }
2,420
BlacksmithSprite
java
en
java
code
{"qsc_code_num_words": 321, "qsc_code_num_chars": 2420.0, "qsc_code_mean_word_length": 5.30529595, "qsc_code_frac_words_unique": 0.4953271, "qsc_code_frac_chars_top_2grams": 0.03699354, "qsc_code_frac_chars_top_3grams": 0.11156782, "qsc_code_frac_chars_top_4grams": 0.10334703, "qsc_code_frac_chars_dupe_5grams": 0.05226072, "qsc_code_frac_chars_dupe_6grams": 0.03699354, "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.02502554, "qsc_code_frac_chars_whitespace": 0.19090909, "qsc_code_size_file_byte": 2420.0, "qsc_code_num_lines": 85.0, "qsc_code_num_chars_line_max": 92.0, "qsc_code_num_chars_line_mean": 28.47058824, "qsc_code_frac_chars_alphabet": 0.84473953, "qsc_code_frac_chars_comments": 0.35950413, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.06382979, "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.01176471, "qsc_code_frac_lines_assert": 0.0, "qsc_codejava_cate_var_zero": 0.0, "qsc_codejava_frac_lines_func_ratio": 0.06382979, "qsc_codejava_score_lines_no_logic": 0.25531915, "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": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 1, "qsc_code_frac_lines_assert": 0, "qsc_codejava_cate_var_zero": 0, "qsc_codejava_frac_lines_func_ratio": 0, "qsc_codejava_score_lines_no_logic": 0, "qsc_codejava_frac_lines_print": 0}
00-Evan/shattered-pixel-dungeon-gdx
core/src/com/shatteredpixel/shatteredpixeldungeon/sprites/PiranhaSprite.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.sprites; import com.shatteredpixel.shatteredpixeldungeon.Assets; import com.shatteredpixel.shatteredpixeldungeon.actors.Char; import com.shatteredpixel.shatteredpixeldungeon.scenes.GameScene; import com.watabou.noosa.TextureFilm; public class PiranhaSprite extends MobSprite { public PiranhaSprite() { super(); renderShadow = false; perspectiveRaise = 0.2f; texture( Assets.PIRANHA ); TextureFilm frames = new TextureFilm( texture, 12, 16 ); idle = new Animation( 8, true ); idle.frames( frames, 0, 1, 2, 1 ); run = new Animation( 20, true ); run.frames( frames, 0, 1, 2, 1 ); attack = new Animation( 20, false ); attack.frames( frames, 3, 4, 5, 6, 7, 8, 9, 10, 11 ); die = new Animation( 4, false ); die.frames( frames, 12, 13, 14 ); play( idle ); } @Override public void link(Char ch) { super.link(ch); renderShadow = false; } @Override public void onComplete( Animation anim ) { super.onComplete( anim ); if (anim == attack) { GameScene.ripple( ch.pos ); } } }
1,875
PiranhaSprite
java
en
java
code
{"qsc_code_num_words": 252, "qsc_code_num_chars": 1875.0, "qsc_code_mean_word_length": 5.23015873, "qsc_code_frac_words_unique": 0.53968254, "qsc_code_frac_chars_top_2grams": 0.05159332, "qsc_code_frac_chars_top_3grams": 0.11532625, "qsc_code_frac_chars_top_4grams": 0.04324734, "qsc_code_frac_chars_dupe_5grams": 0.08649469, "qsc_code_frac_chars_dupe_6grams": 0.06676783, "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.03590426, "qsc_code_frac_chars_whitespace": 0.19786667, "qsc_code_size_file_byte": 1875.0, "qsc_code_num_lines": 69.0, "qsc_code_num_chars_line_max": 72.0, "qsc_code_num_chars_line_mean": 27.17391304, "qsc_code_frac_chars_alphabet": 0.84042553, "qsc_code_frac_chars_comments": 0.41653333, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.11428571, "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.05714286, "qsc_codejava_score_lines_no_logic": 0.2, "qsc_codejava_frac_words_no_modifier": 0.66666667, "qsc_codejava_frac_words_legal_var_name": 1.0, "qsc_codejava_frac_words_legal_func_name": 1.0, "qsc_codejava_frac_words_legal_class_name": 1.0, "qsc_codejava_frac_lines_print": 0.0}
1
{"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codejava_cate_var_zero": 0, "qsc_codejava_frac_lines_func_ratio": 0, "qsc_codejava_score_lines_no_logic": 0, "qsc_codejava_frac_lines_print": 0}
00-Evan/shattered-pixel-dungeon-gdx
core/src/com/shatteredpixel/shatteredpixeldungeon/sprites/RatSprite.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.sprites; import com.shatteredpixel.shatteredpixeldungeon.Assets; import com.watabou.noosa.TextureFilm; public class RatSprite extends MobSprite { public RatSprite() { super(); texture( Assets.RAT ); TextureFilm frames = new TextureFilm( texture, 16, 15 ); idle = new Animation( 2, true ); idle.frames( frames, 0, 0, 0, 1 ); run = new Animation( 10, true ); run.frames( frames, 6, 7, 8, 9, 10 ); attack = new Animation( 15, false ); attack.frames( frames, 2, 3, 4, 5, 0 ); die = new Animation( 10, false ); die.frames( frames, 11, 12, 13, 14 ); play( idle ); } }
1,444
RatSprite
java
en
java
code
{"qsc_code_num_words": 206, "qsc_code_num_chars": 1444.0, "qsc_code_mean_word_length": 4.89320388, "qsc_code_frac_words_unique": 0.58737864, "qsc_code_frac_chars_top_2grams": 0.04761905, "qsc_code_frac_chars_top_3grams": 0.03869048, "qsc_code_frac_chars_top_4grams": 0.05654762, "qsc_code_frac_chars_dupe_5grams": 0.08134921, "qsc_code_frac_chars_dupe_6grams": 0.05555556, "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.04450262, "qsc_code_frac_chars_whitespace": 0.20637119, "qsc_code_size_file_byte": 1444.0, "qsc_code_num_lines": 49.0, "qsc_code_num_chars_line_max": 72.0, "qsc_code_num_chars_line_mean": 29.46938776, "qsc_code_frac_chars_alphabet": 0.83507853, "qsc_code_frac_chars_comments": 0.54085873, "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.15789474, "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/sprites/FetidRatSprite.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.sprites; import com.shatteredpixel.shatteredpixeldungeon.Assets; import com.shatteredpixel.shatteredpixeldungeon.actors.Char; import com.shatteredpixel.shatteredpixeldungeon.effects.Speck; import com.watabou.noosa.TextureFilm; import com.watabou.noosa.particles.Emitter; public class FetidRatSprite extends MobSprite { private Emitter cloud; public FetidRatSprite() { super(); texture( Assets.RAT ); TextureFilm frames = new TextureFilm( texture, 16, 15 ); idle = new Animation( 2, true ); idle.frames( frames, 32, 32, 32, 33 ); run = new Animation( 10, true ); run.frames( frames, 38, 39, 40, 41, 42 ); attack = new Animation( 15, false ); attack.frames( frames, 34, 35, 36, 37, 32 ); die = new Animation( 10, false ); die.frames( frames, 43, 44, 45, 46 ); play( idle ); } @Override public void link( Char ch ) { super.link( ch ); if (cloud == null) { cloud = emitter(); cloud.pour( Speck.factory( Speck.STENCH ), 0.7f ); } } @Override public void update() { super.update(); if (cloud != null) { cloud.visible = visible; } } @Override public void kill() { super.kill(); if (cloud != null) { cloud.on = false; } } }
2,043
FetidRatSprite
java
en
java
code
{"qsc_code_num_words": 273, "qsc_code_num_chars": 2043.0, "qsc_code_mean_word_length": 5.17582418, "qsc_code_frac_words_unique": 0.53479853, "qsc_code_frac_chars_top_2grams": 0.03184713, "qsc_code_frac_chars_top_3grams": 0.10757254, "qsc_code_frac_chars_top_4grams": 0.0403397, "qsc_code_frac_chars_dupe_5grams": 0.05803255, "qsc_code_frac_chars_dupe_6grams": 0.03963199, "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.04044118, "qsc_code_frac_chars_whitespace": 0.20117474, "qsc_code_size_file_byte": 2043.0, "qsc_code_num_lines": 83.0, "qsc_code_num_chars_line_max": 72.0, "qsc_code_num_chars_line_mean": 24.61445783, "qsc_code_frac_chars_alphabet": 0.82536765, "qsc_code_frac_chars_comments": 0.38228096, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.11111111, "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.06666667, "qsc_codejava_score_lines_no_logic": 0.22222222, "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/sprites/MissileSprite.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.sprites; import com.shatteredpixel.shatteredpixeldungeon.Dungeon; import com.shatteredpixel.shatteredpixeldungeon.items.Item; import com.shatteredpixel.shatteredpixeldungeon.items.weapon.SpiritBow; import com.shatteredpixel.shatteredpixeldungeon.items.weapon.melee.Crossbow; import com.shatteredpixel.shatteredpixeldungeon.items.weapon.missiles.Bolas; import com.shatteredpixel.shatteredpixeldungeon.items.weapon.missiles.FishingSpear; import com.shatteredpixel.shatteredpixeldungeon.items.weapon.missiles.HeavyBoomerang; import com.shatteredpixel.shatteredpixeldungeon.items.weapon.missiles.Javelin; import com.shatteredpixel.shatteredpixeldungeon.items.weapon.missiles.Kunai; import com.shatteredpixel.shatteredpixeldungeon.items.weapon.missiles.Shuriken; import com.shatteredpixel.shatteredpixeldungeon.items.weapon.missiles.ThrowingKnife; import com.shatteredpixel.shatteredpixeldungeon.items.weapon.missiles.ThrowingSpear; import com.shatteredpixel.shatteredpixeldungeon.items.weapon.missiles.Trident; import com.shatteredpixel.shatteredpixeldungeon.items.weapon.missiles.darts.Dart; import com.shatteredpixel.shatteredpixeldungeon.tiles.DungeonTilemap; import com.watabou.noosa.Visual; import com.watabou.noosa.tweeners.PosTweener; import com.watabou.noosa.tweeners.Tweener; import com.watabou.utils.Callback; import com.watabou.utils.PointF; import java.util.HashMap; public class MissileSprite extends ItemSprite implements Tweener.Listener { private static final float SPEED = 240f; private Callback callback; public void reset( int from, int to, Item item, Callback listener ) { reset( DungeonTilemap.tileToWorld( from ), DungeonTilemap.tileToWorld( to ), item, listener); } public void reset( Visual from, Visual to, Item item, Callback listener ) { reset(from.center(this), to.center(this), item, listener ); } public void reset( Visual from, int to, Item item, Callback listener ) { reset(from.center(this), DungeonTilemap.tileToWorld( to ), item, listener ); } public void reset( int from, Visual to, Item item, Callback listener ) { reset(DungeonTilemap.tileToWorld( from ), to.center(this), item, listener ); } public void reset( PointF from, PointF to, Item item, Callback listener) { revive(); if (item == null) view(0, null); else view( item ); setup( from, to, item, listener ); } private static final int DEFAULT_ANGULAR_SPEED = 720; private static final HashMap<Class<?extends Item>, Integer> ANGULAR_SPEEDS = new HashMap<>(); static { ANGULAR_SPEEDS.put(Dart.class, 0); ANGULAR_SPEEDS.put(ThrowingKnife.class, 0); ANGULAR_SPEEDS.put(FishingSpear.class, 0); ANGULAR_SPEEDS.put(ThrowingSpear.class, 0); ANGULAR_SPEEDS.put(Kunai.class, 0); ANGULAR_SPEEDS.put(Javelin.class, 0); ANGULAR_SPEEDS.put(Trident.class, 0); ANGULAR_SPEEDS.put(SpiritBow.SpiritArrow.class, 0); ANGULAR_SPEEDS.put(ScorpioSprite.ScorpioShot.class, 0); //720 is default ANGULAR_SPEEDS.put(HeavyBoomerang.class,1440); ANGULAR_SPEEDS.put(Bolas.class, 1440); ANGULAR_SPEEDS.put(Shuriken.class, 2160); ANGULAR_SPEEDS.put(TenguSprite.TenguShuriken.class, 2160); } //TODO it might be nice to have a source and destination angle, to improve thrown weapon visuals private void setup( PointF from, PointF to, Item item, Callback listener ){ originToCenter(); this.callback = listener; point( from ); PointF d = PointF.diff( to, from ); speed.set(d).normalize().scale(SPEED); angularSpeed = DEFAULT_ANGULAR_SPEED; for (Class<?extends Item> cls : ANGULAR_SPEEDS.keySet()){ if (cls.isAssignableFrom(item.getClass())){ angularSpeed = ANGULAR_SPEEDS.get(cls); break; } } angle = 135 - (float)(Math.atan2( d.x, d.y ) / 3.1415926 * 180); if (d.x >= 0){ flipHorizontal = false; updateFrame(); } else { angularSpeed = -angularSpeed; angle += 90; flipHorizontal = true; updateFrame(); } float speed = SPEED; if (item instanceof Dart && Dungeon.hero.belongings.weapon instanceof Crossbow){ speed *= 3f; } else if (item instanceof SpiritBow.SpiritArrow || item instanceof ScorpioSprite.ScorpioShot || item instanceof TenguSprite.TenguShuriken){ speed *= 1.5f; } PosTweener tweener = new PosTweener( this, to, d.length() / speed ); tweener.listener = this; parent.add( tweener ); } @Override public void onComplete( Tweener tweener ) { kill(); if (callback != null) { callback.call(); } } }
5,398
MissileSprite
java
en
java
code
{"qsc_code_num_words": 653, "qsc_code_num_chars": 5398.0, "qsc_code_mean_word_length": 6.08422665, "qsc_code_frac_words_unique": 0.31087289, "qsc_code_frac_chars_top_2grams": 0.04530581, "qsc_code_frac_chars_top_3grams": 0.15303297, "qsc_code_frac_chars_top_4grams": 0.16612132, "qsc_code_frac_chars_dupe_5grams": 0.42839164, "qsc_code_frac_chars_dupe_6grams": 0.33274604, "qsc_code_frac_chars_dupe_7grams": 0.29096401, "qsc_code_frac_chars_dupe_8grams": 0.12937327, "qsc_code_frac_chars_dupe_9grams": 0.05285678, "qsc_code_frac_chars_dupe_10grams": 0.0, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.01605454, "qsc_code_frac_chars_whitespace": 0.15765098, "qsc_code_size_file_byte": 5398.0, "qsc_code_num_lines": 160.0, "qsc_code_num_chars_line_max": 98.0, "qsc_code_num_chars_line_mean": 33.7375, "qsc_code_frac_chars_alphabet": 0.85770838, "qsc_code_frac_chars_comments": 0.16543164, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.01886792, "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.00625, "qsc_code_frac_lines_assert": 0.0, "qsc_codejava_cate_var_zero": 0.0, "qsc_codejava_frac_lines_func_ratio": 0.06603774, "qsc_codejava_score_lines_no_logic": 0.28301887, "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/sprites/ElementalSprite.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.sprites; import com.shatteredpixel.shatteredpixeldungeon.Assets; import com.shatteredpixel.shatteredpixeldungeon.actors.Char; import com.watabou.noosa.TextureFilm; public class ElementalSprite extends MobSprite { public ElementalSprite() { super(); texture( Assets.ELEMENTAL ); TextureFilm frames = new TextureFilm( texture, 12, 14 ); idle = new Animation( 10, true ); idle.frames( frames, 0, 1, 2 ); run = new Animation( 12, true ); run.frames( frames, 0, 1, 3 ); attack = new Animation( 15, false ); attack.frames( frames, 4, 5, 6 ); die = new Animation( 15, false ); die.frames( frames, 7, 8, 9, 10, 11, 12, 13, 12 ); play( idle ); } @Override public void link( Char ch ) { super.link( ch ); add( State.BURNING ); } @Override public void die() { super.die(); remove( State.BURNING ); } @Override public int blood() { return 0xFFFF7D13; } }
1,750
ElementalSprite
java
en
java
code
{"qsc_code_num_words": 238, "qsc_code_num_chars": 1750.0, "qsc_code_mean_word_length": 5.12184874, "qsc_code_frac_words_unique": 0.56302521, "qsc_code_frac_chars_top_2grams": 0.03937654, "qsc_code_frac_chars_top_3grams": 0.03199344, "qsc_code_frac_chars_top_4grams": 0.04675964, "qsc_code_frac_chars_dupe_5grams": 0.06726825, "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.03948313, "qsc_code_frac_chars_whitespace": 0.204, "qsc_code_size_file_byte": 1750.0, "qsc_code_num_lines": 67.0, "qsc_code_num_chars_line_max": 72.0, "qsc_code_num_chars_line_mean": 26.11940299, "qsc_code_frac_chars_alphabet": 0.8356066, "qsc_code_frac_chars_comments": 0.44628571, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.08823529, "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.01031992, "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.08823529, "qsc_codejava_score_lines_no_logic": 0.23529412, "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/sprites/RottingFistSprite.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.sprites; import com.shatteredpixel.shatteredpixeldungeon.Assets; import com.watabou.noosa.Camera; import com.watabou.noosa.TextureFilm; public class RottingFistSprite extends MobSprite { private static final float FALL_SPEED = 64; public RottingFistSprite() { super(); texture( Assets.ROTTING ); TextureFilm frames = new TextureFilm( texture, 24, 17 ); idle = new Animation( 2, true ); idle.frames( frames, 0, 0, 1 ); run = new Animation( 3, true ); run.frames( frames, 0, 1 ); attack = new Animation( 2, false ); attack.frames( frames, 0 ); die = new Animation( 10, false ); die.frames( frames, 0, 2, 3, 4 ); play( idle ); } @Override public void attack( int cell ) { super.attack( cell ); speed.set( 0, -FALL_SPEED ); acc.set( 0, FALL_SPEED * 4 ); } @Override public void onComplete( Animation anim ) { super.onComplete( anim ); if (anim == attack) { speed.set( 0 ); acc.set( 0 ); place( ch.pos ); Camera.main.shake( 4, 0.2f ); } } }
1,862
RottingFistSprite
java
en
java
code
{"qsc_code_num_words": 257, "qsc_code_num_chars": 1862.0, "qsc_code_mean_word_length": 4.94941634, "qsc_code_frac_words_unique": 0.52140078, "qsc_code_frac_chars_top_2grams": 0.03773585, "qsc_code_frac_chars_top_3grams": 0.0408805, "qsc_code_frac_chars_top_4grams": 0.04481132, "qsc_code_frac_chars_dupe_5grams": 0.06446541, "qsc_code_frac_chars_dupe_6grams": 0.04402516, "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.0313779, "qsc_code_frac_chars_whitespace": 0.21267454, "qsc_code_size_file_byte": 1862.0, "qsc_code_num_lines": 72.0, "qsc_code_num_chars_line_max": 72.0, "qsc_code_num_chars_line_mean": 25.86111111, "qsc_code_frac_chars_alphabet": 0.83628922, "qsc_code_frac_chars_comments": 0.41944146, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.05405405, "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.05405405, "qsc_codejava_score_lines_no_logic": 0.16216216, "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/sprites/CrabSprite.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.sprites; import com.shatteredpixel.shatteredpixeldungeon.Assets; import com.watabou.noosa.TextureFilm; public class CrabSprite extends MobSprite { public CrabSprite() { super(); texture( Assets.CRAB ); TextureFilm frames = new TextureFilm( texture, 16, 16 ); idle = new Animation( 5, true ); idle.frames( frames, 0, 1, 0, 2 ); run = new Animation( 15, true ); run.frames( frames, 3, 4, 5, 6 ); attack = new Animation( 12, false ); attack.frames( frames, 7, 8, 9 ); die = new Animation( 12, false ); die.frames( frames, 10, 11, 12, 13 ); play( idle ); } @Override public int blood() { return 0xFFFFEA80; } }
1,480
CrabSprite
java
en
java
code
{"qsc_code_num_words": 209, "qsc_code_num_chars": 1480.0, "qsc_code_mean_word_length": 5.0, "qsc_code_frac_words_unique": 0.59808612, "qsc_code_frac_chars_top_2grams": 0.04593301, "qsc_code_frac_chars_top_3grams": 0.03732057, "qsc_code_frac_chars_top_4grams": 0.05454545, "qsc_code_frac_chars_dupe_5grams": 0.0784689, "qsc_code_frac_chars_dupe_6grams": 0.05358852, "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.04215852, "qsc_code_frac_chars_whitespace": 0.19864865, "qsc_code_size_file_byte": 1480.0, "qsc_code_num_lines": 54.0, "qsc_code_num_chars_line_max": 72.0, "qsc_code_num_chars_line_mean": 27.40740741, "qsc_code_frac_chars_alphabet": 0.83895447, "qsc_code_frac_chars_comments": 0.5277027, "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.01430615, "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.2173913, "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/sprites/RotHeartSprite.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.sprites; import com.shatteredpixel.shatteredpixeldungeon.Assets; import com.shatteredpixel.shatteredpixeldungeon.actors.Char; import com.shatteredpixel.shatteredpixeldungeon.effects.Speck; import com.watabou.noosa.MovieClip; import com.watabou.noosa.TextureFilm; import com.watabou.noosa.particles.Emitter; public class RotHeartSprite extends MobSprite { private Emitter cloud; public RotHeartSprite(){ super(); perspectiveRaise = 0.2f; texture( Assets.ROT_HEART ); TextureFilm frames = new TextureFilm( texture, 16, 16 ); idle = new MovieClip.Animation( 1, true ); idle.frames( frames, 0); run = new MovieClip.Animation( 1, true ); run.frames( frames, 0 ); attack = new MovieClip.Animation( 1, false ); attack.frames( frames, 0 ); die = new MovieClip.Animation( 8, false ); die.frames( frames, 1, 2, 3, 4, 5, 6, 7, 7, 7 ); play( idle ); } @Override public void link( Char ch ) { super.link( ch ); renderShadow = false; if (cloud == null) { cloud = emitter(); cloud.pour( Speck.factory(Speck.TOXIC), 0.7f ); } } @Override public void turnTo(int from, int to) { //do nothing } @Override public void update() { super.update(); if (cloud != null) { cloud.visible = visible; } } @Override public void die() { super.die(); if (cloud != null) { cloud.on = false; } } }
2,190
RotHeartSprite
java
en
java
code
{"qsc_code_num_words": 292, "qsc_code_num_chars": 2190.0, "qsc_code_mean_word_length": 5.25684932, "qsc_code_frac_words_unique": 0.49657534, "qsc_code_frac_chars_top_2grams": 0.03517915, "qsc_code_frac_chars_top_3grams": 0.0990228, "qsc_code_frac_chars_top_4grams": 0.03713355, "qsc_code_frac_chars_dupe_5grams": 0.08729642, "qsc_code_frac_chars_dupe_6grams": 0.03648208, "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.02316384, "qsc_code_frac_chars_whitespace": 0.19178082, "qsc_code_size_file_byte": 2190.0, "qsc_code_num_lines": 93.0, "qsc_code_num_chars_line_max": 72.0, "qsc_code_num_chars_line_mean": 23.5483871, "qsc_code_frac_chars_alphabet": 0.8440678, "qsc_code_frac_chars_comments": 0.36210046, "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.0, "qsc_code_frac_lines_assert": 0.0, "qsc_codejava_cate_var_zero": 0.0, "qsc_codejava_frac_lines_func_ratio": 0.07843137, "qsc_codejava_score_lines_no_logic": 0.23529412, "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/sprites/SpinnerSprite.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.sprites; import com.shatteredpixel.shatteredpixeldungeon.Assets; import com.shatteredpixel.shatteredpixeldungeon.actors.Char; import com.watabou.noosa.TextureFilm; public class SpinnerSprite extends MobSprite { public SpinnerSprite() { super(); perspectiveRaise = 0f; texture( Assets.SPINNER ); TextureFilm frames = new TextureFilm( texture, 16, 16 ); idle = new Animation( 10, true ); idle.frames( frames, 0, 0, 0, 0, 0, 1, 0, 1 ); run = new Animation( 15, true ); run.frames( frames, 0, 2, 0, 3 ); attack = new Animation( 12, false ); attack.frames( frames, 0, 4, 5, 0 ); die = new Animation( 12, false ); die.frames( frames, 6, 7, 8, 9 ); play( idle ); } @Override public void link(Char ch) { super.link(ch); if (parent != null) parent.sendToBack(this); renderShadow = false; } @Override public int blood() { return 0xFFBFE5B8; } }
1,734
SpinnerSprite
java
en
java
code
{"qsc_code_num_words": 239, "qsc_code_num_chars": 1734.0, "qsc_code_mean_word_length": 5.08786611, "qsc_code_frac_words_unique": 0.56066946, "qsc_code_frac_chars_top_2grams": 0.03947368, "qsc_code_frac_chars_top_3grams": 0.03207237, "qsc_code_frac_chars_top_4grams": 0.046875, "qsc_code_frac_chars_dupe_5grams": 0.06743421, "qsc_code_frac_chars_dupe_6grams": 0.04605263, "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.03818444, "qsc_code_frac_chars_whitespace": 0.19953864, "qsc_code_size_file_byte": 1734.0, "qsc_code_num_lines": 64.0, "qsc_code_num_chars_line_max": 72.0, "qsc_code_num_chars_line_mean": 27.09375, "qsc_code_frac_chars_alphabet": 0.83789625, "qsc_code_frac_chars_comments": 0.45040369, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.06451613, "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.01049318, "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.22580645, "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/sprites/CausticSlimeSprite.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.sprites; import com.shatteredpixel.shatteredpixeldungeon.Assets; import com.watabou.noosa.TextureFilm; public class CausticSlimeSprite extends MobSprite { public CausticSlimeSprite() { super(); texture( Assets.SLIME ); TextureFilm frames = new TextureFilm( texture, 14, 12 ); int c = 9; idle = new Animation( 3, true ); idle.frames( frames, c+0, c+1, c+1, c+0 ); run = new Animation( 10, true ); run.frames( frames, c+0, c+2, c+3, c+3, c+2, c+0 ); attack = new Animation( 10, false ); attack.frames( frames, c+2, c+3, c+4, c+5, c+2 ); die = new Animation( 10, false ); die.frames( frames, c+0, c+5, c+6, c+7 ); play(idle); } }
1,516
CausticSlimeSprite
java
en
java
code
{"qsc_code_num_words": 229, "qsc_code_num_chars": 1516.0, "qsc_code_mean_word_length": 4.57641921, "qsc_code_frac_words_unique": 0.51091703, "qsc_code_frac_chars_top_2grams": 0.00954198, "qsc_code_frac_chars_top_3grams": 0.04961832, "qsc_code_frac_chars_top_4grams": 0.05438931, "qsc_code_frac_chars_dupe_5grams": 0.12977099, "qsc_code_frac_chars_dupe_6grams": 0.05343511, "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.0397351, "qsc_code_frac_chars_whitespace": 0.20316623, "qsc_code_size_file_byte": 1516.0, "qsc_code_num_lines": 53.0, "qsc_code_num_chars_line_max": 72.0, "qsc_code_num_chars_line_mean": 28.60377358, "qsc_code_frac_chars_alphabet": 0.82781457, "qsc_code_frac_chars_comments": 0.51451187, "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.15, "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/sprites/WardSprite.java
package com.shatteredpixel.shatteredpixeldungeon.sprites; import com.shatteredpixel.shatteredpixeldungeon.Assets; import com.shatteredpixel.shatteredpixeldungeon.actors.Actor; import com.shatteredpixel.shatteredpixeldungeon.actors.Char; import com.shatteredpixel.shatteredpixeldungeon.effects.Beam; import com.shatteredpixel.shatteredpixeldungeon.effects.MagicMissile; import com.shatteredpixel.shatteredpixeldungeon.items.wands.WandOfWarding; import com.shatteredpixel.shatteredpixeldungeon.tiles.DungeonTilemap; import com.watabou.noosa.Game; import com.watabou.noosa.tweeners.AlphaTweener; public class WardSprite extends MobSprite { private Animation tierIdles[] = new Animation[7]; public WardSprite(){ super(); texture(Assets.WARDS); tierIdles[1] = new Animation( 1, true ); tierIdles[1].frames(texture.uvRect(0, 0, 9, 10)); tierIdles[2] = new Animation( 1, true ); tierIdles[2].frames(texture.uvRect(10, 0, 21, 12)); tierIdles[3] = new Animation( 1, true ); tierIdles[3].frames(texture.uvRect(22, 0, 37, 16)); tierIdles[4] = new Animation( 1, true ); tierIdles[4].frames(texture.uvRect(38, 0, 44, 13)); tierIdles[5] = new Animation( 1, true ); tierIdles[5].frames(texture.uvRect(45, 0, 51, 15)); tierIdles[6] = new Animation( 1, true ); tierIdles[6].frames(texture.uvRect(52, 0, 60, 15)); } @Override public void zap( int pos ) { idle(); flash(); emitter().burst(MagicMissile.WardParticle.UP, 2); if (Actor.findChar(pos) != null){ parent.add(new Beam.DeathRay(center(), Actor.findChar(pos).sprite.center())); } else { parent.add(new Beam.DeathRay(center(), DungeonTilemap.raisedTileCenterToWorld(pos))); } ((WandOfWarding.Ward)ch).onZapComplete(); } @Override public void turnTo(int from, int to) { //do nothing } @Override public void die() { super.die(); //cancels die animation and fades out immediately play(idle, true); emitter().burst(MagicMissile.WardParticle.UP, 10); parent.add( new AlphaTweener( this, 0, 2f ) { @Override protected void onComplete() { WardSprite.this.killAndErase(); parent.erase( this ); } } ); } public void linkVisuals( Char ch ){ if (ch == null) return; updateTier( ((WandOfWarding.Ward)ch).tier ); } public void updateTier(int tier){ idle = tierIdles[tier]; run = idle.clone(); attack = idle.clone(); die = idle.clone(); //always render first if (parent != null) { parent.sendToBack(this); } idle(); if (tier <= 3){ shadowWidth = shadowHeight = 1f; perspectiveRaise = (16 - height()) / 32f; //center of the cell } else { shadowWidth = 1.2f; shadowHeight = 0.25f; perspectiveRaise = 6 / 16f; //6 pixels } } private float baseY = Float.NaN; @Override public void place(int cell) { super.place(cell); baseY = y; } @Override public void update() { super.update(); //if tier is greater than 3 if (perspectiveRaise >= 6 / 16f && !paused){ if (Float.isNaN(baseY)) baseY = y; y = baseY + (float) Math.sin(Game.timeTotal); shadowOffset = 0.25f - 0.8f*(float) Math.sin(Game.timeTotal); } } }
3,140
WardSprite
java
en
java
code
{"qsc_code_num_words": 381, "qsc_code_num_chars": 3140.0, "qsc_code_mean_word_length": 5.6351706, "qsc_code_frac_words_unique": 0.37270341, "qsc_code_frac_chars_top_2grams": 0.03772706, "qsc_code_frac_chars_top_3grams": 0.14159292, "qsc_code_frac_chars_top_4grams": 0.14345599, "qsc_code_frac_chars_dupe_5grams": 0.2533768, "qsc_code_frac_chars_dupe_6grams": 0.02794597, "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.03378119, "qsc_code_frac_chars_whitespace": 0.17038217, "qsc_code_size_file_byte": 3140.0, "qsc_code_num_lines": 127.0, "qsc_code_num_chars_line_max": 89.0, "qsc_code_num_chars_line_mean": 24.72440945, "qsc_code_frac_chars_alphabet": 0.79040307, "qsc_code_frac_chars_comments": 0.04426752, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.10638298, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.0, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.0, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0, "qsc_codejava_cate_var_zero": 0.0, "qsc_codejava_frac_lines_func_ratio": 0.08510638, "qsc_codejava_score_lines_no_logic": 0.19148936, "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/sprites/GnollSprite.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.sprites; import com.shatteredpixel.shatteredpixeldungeon.Assets; import com.watabou.noosa.TextureFilm; public class GnollSprite extends MobSprite { public GnollSprite() { super(); texture( Assets.GNOLL ); TextureFilm frames = new TextureFilm( texture, 12, 15 ); idle = new Animation( 2, true ); idle.frames( frames, 0, 0, 0, 1, 0, 0, 1, 1 ); run = new Animation( 12, true ); run.frames( frames, 4, 5, 6, 7 ); attack = new Animation( 12, false ); attack.frames( frames, 2, 3, 0 ); die = new Animation( 12, false ); die.frames( frames, 8, 9, 10 ); play( idle ); } }
1,446
GnollSprite
java
en
java
code
{"qsc_code_num_words": 206, "qsc_code_num_chars": 1446.0, "qsc_code_mean_word_length": 4.90291262, "qsc_code_frac_words_unique": 0.56796117, "qsc_code_frac_chars_top_2grams": 0.04752475, "qsc_code_frac_chars_top_3grams": 0.03861386, "qsc_code_frac_chars_top_4grams": 0.05643564, "qsc_code_frac_chars_dupe_5grams": 0.08118812, "qsc_code_frac_chars_dupe_6grams": 0.05544554, "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.04094077, "qsc_code_frac_chars_whitespace": 0.20608575, "qsc_code_size_file_byte": 1446.0, "qsc_code_num_lines": 49.0, "qsc_code_num_chars_line_max": 72.0, "qsc_code_num_chars_line_mean": 29.51020408, "qsc_code_frac_chars_alphabet": 0.83885017, "qsc_code_frac_chars_comments": 0.54011065, "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.15789474, "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/sprites/GhostSprite.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.sprites; import com.shatteredpixel.shatteredpixeldungeon.Assets; import com.shatteredpixel.shatteredpixeldungeon.effects.Speck; import com.shatteredpixel.shatteredpixeldungeon.effects.particles.ShaftParticle; import com.watabou.glwrap.Blending; import com.watabou.noosa.TextureFilm; public class GhostSprite extends MobSprite { public GhostSprite() { super(); texture( Assets.GHOST ); TextureFilm frames = new TextureFilm( texture, 14, 15 ); idle = new Animation( 5, true ); idle.frames( frames, 0, 1 ); run = new Animation( 10, true ); run.frames( frames, 0, 1 ); attack = new Animation( 10, false ); attack.frames( frames, 0, 2, 3 ); die = new Animation( 8, false ); die.frames( frames, 0, 4, 5, 6, 7 ); play( idle ); } @Override public void draw() { Blending.setLightMode(); super.draw(); Blending.setNormalMode(); } @Override public void die() { super.die(); emitter().start( ShaftParticle.FACTORY, 0.3f, 4 ); emitter().start( Speck.factory( Speck.LIGHT ), 0.2f, 3 ); } @Override public int blood() { return 0xFFFFFF; } }
1,933
GhostSprite
java
en
java
code
{"qsc_code_num_words": 256, "qsc_code_num_chars": 1933.0, "qsc_code_mean_word_length": 5.359375, "qsc_code_frac_words_unique": 0.53515625, "qsc_code_frac_chars_top_2grams": 0.03279883, "qsc_code_frac_chars_top_3grams": 0.11078717, "qsc_code_frac_chars_top_4grams": 0.04154519, "qsc_code_frac_chars_dupe_5grams": 0.13411079, "qsc_code_frac_chars_dupe_6grams": 0.04081633, "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.0292249, "qsc_code_frac_chars_whitespace": 0.18572168, "qsc_code_size_file_byte": 1933.0, "qsc_code_num_lines": 71.0, "qsc_code_num_chars_line_max": 81.0, "qsc_code_num_chars_line_mean": 27.22535211, "qsc_code_frac_chars_alphabet": 0.84243964, "qsc_code_frac_chars_comments": 0.40403518, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.07894737, "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.00694444, "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.26315789, "qsc_codejava_frac_words_no_modifier": 0.75, "qsc_codejava_frac_words_legal_var_name": 1.0, "qsc_codejava_frac_words_legal_func_name": 1.0, "qsc_codejava_frac_words_legal_class_name": 1.0, "qsc_codejava_frac_lines_print": 0.0}
1
{"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codejava_cate_var_zero": 0, "qsc_codejava_frac_lines_func_ratio": 0, "qsc_codejava_score_lines_no_logic": 0, "qsc_codejava_frac_lines_print": 0}
01010111/zerolib
README.md
![zerolib logo](https://raw.githubusercontent.com/01010111/zerolib/storage/zerolib.png) # ZEROLIB ![build status](https://api.travis-ci.org/01010111/zerolib.png) Zerolib is a framework agnostic library of extensions, utilities, and other helpful classes for making games! **notice: this library is in an alpha state, and may introduce breaking changes with updates** ## Installing With Haxe installed, use this command to install: ``` haxelib install zerolib ``` Then, add the following to your game's `hxml`: ``` -lib zerolib ``` Then you'll be set! ## Usage This library is split into two distinct sections, Extensions, and Utilities. Check the [API](http://01010111.com/zerolib/) for specific usage instructions! ### .extensions Extensions are a neat language feature of Haxe. They can add functionality to preexisting classes. Learn more about using Extensions [here](https://github.com/01010111/zerolib/wiki/Extensions)! ### .utilities A handful of utilities like vectors, a tweening library, a A* haxe implementation, and more! **[Browse the API](http://01010111.com/zerolib/)**
1,096
README
md
en
markdown
text
{"qsc_doc_frac_chars_curly_bracket": 0.0, "qsc_doc_frac_words_redpajama_stop": 0.21186441, "qsc_doc_num_sentences": 19.0, "qsc_doc_num_words": 156, "qsc_doc_num_chars": 1096.0, "qsc_doc_num_lines": 35.0, "qsc_doc_mean_word_length": 5.33974359, "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.6025641, "qsc_doc_entropy_unigram": 4.29129511, "qsc_doc_frac_words_all_caps": 0.02118644, "qsc_doc_frac_lines_dupe_lines": 0.16666667, "qsc_doc_frac_chars_dupe_lines": 0.01131008, "qsc_doc_frac_chars_top_2grams": 0.05402161, "qsc_doc_frac_chars_top_3grams": 0.04321729, "qsc_doc_frac_chars_top_4grams": 0.04321729, "qsc_doc_frac_chars_dupe_5grams": 0.06722689, "qsc_doc_frac_chars_dupe_6grams": 0.06722689, "qsc_doc_frac_chars_dupe_7grams": 0.0, "qsc_doc_frac_chars_dupe_8grams": 0.0, "qsc_doc_frac_chars_dupe_9grams": 0.0, "qsc_doc_frac_chars_dupe_10grams": 0.0, "qsc_doc_frac_chars_replacement_symbols": 0.0, "qsc_doc_cate_code_related_file_name": 1.0, "qsc_doc_num_chars_sentence_length_mean": 18.58928571, "qsc_doc_frac_chars_hyperlink_html_tag": 0.21259124, "qsc_doc_frac_chars_alphabet": 0.8312369, "qsc_doc_frac_chars_digital": 0.04192872, "qsc_doc_frac_chars_whitespace": 0.12956204, "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/windows/WndChallenges.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.windows; import com.shatteredpixel.shatteredpixeldungeon.Challenges; import com.shatteredpixel.shatteredpixeldungeon.SPDSettings; import com.shatteredpixel.shatteredpixeldungeon.ShatteredPixelDungeon; import com.shatteredpixel.shatteredpixeldungeon.messages.Messages; import com.shatteredpixel.shatteredpixeldungeon.scenes.PixelScene; import com.shatteredpixel.shatteredpixeldungeon.ui.CheckBox; import com.shatteredpixel.shatteredpixeldungeon.ui.IconButton; import com.shatteredpixel.shatteredpixeldungeon.ui.Icons; import com.shatteredpixel.shatteredpixeldungeon.ui.RenderedTextBlock; import com.shatteredpixel.shatteredpixeldungeon.ui.Window; import java.util.ArrayList; public class WndChallenges extends Window { private static final int WIDTH = 120; private static final int TTL_HEIGHT = 18; private static final int BTN_HEIGHT = 18; private static final int GAP = 1; private boolean editable; private ArrayList<CheckBox> boxes; public WndChallenges( int checked, boolean editable ) { super(); this.editable = editable; RenderedTextBlock title = PixelScene.renderTextBlock( Messages.get(this, "title"), 12 ); title.hardlight( TITLE_COLOR ); title.setPos( (WIDTH - title.width()) / 2, (TTL_HEIGHT - title.height()) / 2 ); PixelScene.align(title); add( title ); boxes = new ArrayList<>(); float pos = TTL_HEIGHT; for (int i=0; i < Challenges.NAME_IDS.length; i++) { final String challenge = Challenges.NAME_IDS[i]; CheckBox cb = new CheckBox( Messages.get(Challenges.class, challenge) ); cb.checked( (checked & Challenges.MASKS[i]) != 0 ); cb.active = editable; if (i > 0) { pos += GAP; } cb.setRect( 0, pos, WIDTH-16, BTN_HEIGHT ); add( cb ); boxes.add( cb ); IconButton info = new IconButton(Icons.get(Icons.INFO)){ @Override protected void onClick() { super.onClick(); ShatteredPixelDungeon.scene().add( new WndMessage(Messages.get(Challenges.class, challenge+"_desc")) ); } }; info.setRect(cb.right(), pos, 16, BTN_HEIGHT); add(info); pos = cb.bottom(); } resize( WIDTH, (int)pos ); } @Override public void onBackPressed() { if (editable) { int value = 0; for (int i=0; i < boxes.size(); i++) { if (boxes.get( i ).checked()) { value |= Challenges.MASKS[i]; } } SPDSettings.challenges( value ); } super.onBackPressed(); } }
3,261
WndChallenges
java
en
java
code
{"qsc_code_num_words": 398, "qsc_code_num_chars": 3261.0, "qsc_code_mean_word_length": 5.81155779, "qsc_code_frac_words_unique": 0.39447236, "qsc_code_frac_chars_top_2grams": 0.08084738, "qsc_code_frac_chars_top_3grams": 0.18071768, "qsc_code_frac_chars_top_4grams": 0.19022914, "qsc_code_frac_chars_dupe_5grams": 0.19801124, "qsc_code_frac_chars_dupe_6grams": 0.04928664, "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.01458489, "qsc_code_frac_chars_whitespace": 0.18000613, "qsc_code_size_file_byte": 3261.0, "qsc_code_num_lines": 113.0, "qsc_code_num_chars_line_max": 91.0, "qsc_code_num_chars_line_mean": 28.85840708, "qsc_code_frac_chars_alphabet": 0.85041137, "qsc_code_frac_chars_comments": 0.23949709, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.05555556, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.00403063, "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.04166667, "qsc_codejava_score_lines_no_logic": 0.23611111, "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/windows/WndTitledMessage.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.windows; import com.shatteredpixel.shatteredpixeldungeon.SPDSettings; import com.shatteredpixel.shatteredpixeldungeon.scenes.PixelScene; import com.shatteredpixel.shatteredpixeldungeon.ui.RenderedTextBlock; import com.shatteredpixel.shatteredpixeldungeon.ui.Window; import com.watabou.noosa.Image; import com.watabou.noosa.ui.Component; public class WndTitledMessage extends Window { protected static final int WIDTH_P = 120; protected static final int WIDTH_L = 160; protected static final int GAP = 2; public WndTitledMessage( Image icon, String title, String message ) { this( new IconTitle( icon, title ), message ); } public WndTitledMessage( Component titlebar, String message ) { super(); int width = SPDSettings.landscape() ? WIDTH_L : WIDTH_P; titlebar.setRect( 0, 0, width, 0 ); add(titlebar); RenderedTextBlock text = PixelScene.renderTextBlock( 6 ); text.text( message, width ); text.setPos( titlebar.left(), titlebar.bottom() + 2*GAP ); add( text ); resize( width, (int)text.bottom() + 2 ); } }
1,887
WndTitledMessage
java
en
java
code
{"qsc_code_num_words": 247, "qsc_code_num_chars": 1887.0, "qsc_code_mean_word_length": 5.68421053, "qsc_code_frac_words_unique": 0.51417004, "qsc_code_frac_chars_top_2grams": 0.03846154, "qsc_code_frac_chars_top_3grams": 0.13532764, "qsc_code_frac_chars_top_4grams": 0.12535613, "qsc_code_frac_chars_dupe_5grams": 0.16381766, "qsc_code_frac_chars_dupe_6grams": 0.03988604, "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.01908397, "qsc_code_frac_chars_whitespace": 0.16693164, "qsc_code_size_file_byte": 1887.0, "qsc_code_num_lines": 58.0, "qsc_code_num_chars_line_max": 72.0, "qsc_code_num_chars_line_mean": 32.53448276, "qsc_code_frac_chars_alphabet": 0.8740458, "qsc_code_frac_chars_comments": 0.41388447, "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.26923077, "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/windows/WndSettings.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.windows; import com.badlogic.gdx.Application; import com.badlogic.gdx.Gdx; import com.shatteredpixel.shatteredpixeldungeon.Assets; import com.shatteredpixel.shatteredpixeldungeon.SPDSettings; import com.shatteredpixel.shatteredpixeldungeon.ShatteredPixelDungeon; import com.shatteredpixel.shatteredpixeldungeon.messages.Messages; import com.shatteredpixel.shatteredpixeldungeon.scenes.GameScene; import com.shatteredpixel.shatteredpixeldungeon.scenes.PixelScene; import com.shatteredpixel.shatteredpixeldungeon.ui.CheckBox; import com.shatteredpixel.shatteredpixeldungeon.ui.OptionSlider; import com.shatteredpixel.shatteredpixeldungeon.ui.RedButton; import com.shatteredpixel.shatteredpixeldungeon.ui.RenderedTextBlock; import com.shatteredpixel.shatteredpixeldungeon.ui.Toolbar; import com.watabou.noosa.Game; import com.watabou.noosa.Group; import com.watabou.noosa.audio.Sample; import com.watabou.utils.DeviceCompat; public class WndSettings extends WndTabbed { private static final String TXT_SWITCH_FULL = "Switch to fullscreen"; private static final String TXT_SWITCH_WIN = "Switch to windowed"; private static final String TXT_BINDINGS = "Key bindings"; private static final int WIDTH = 112; private static final int HEIGHT = 138; private static final int SLIDER_HEIGHT = 24; private static final int BTN_HEIGHT = 18; private static final int GAP_TINY = 2; private static final int GAP_SML = 6; private static final int GAP_LRG = 18; private DisplayTab display; private UITab ui; private AudioTab audio; private static int last_index = 0; public WndSettings() { super(); display = new DisplayTab(); add( display ); ui = new UITab(); add( ui ); audio = new AudioTab(); add( audio ); add( new LabeledTab(Messages.get(this, "display")){ @Override protected void select(boolean value) { super.select(value); display.visible = display.active = value; if (value) last_index = 0; } }); add( new LabeledTab(Messages.get(this, "ui")){ @Override protected void select(boolean value) { super.select(value); ui.visible = ui.active = value; if (value) last_index = 1; } }); add( new LabeledTab(Messages.get(this, "audio")){ @Override protected void select(boolean value) { super.select(value); audio.visible = audio.active = value; if (value) last_index = 2; } }); resize(WIDTH, HEIGHT); layoutTabs(); select(last_index); } private class DisplayTab extends Group { public DisplayTab() { super(); OptionSlider scale = new OptionSlider(Messages.get(this, "scale"), (int)Math.ceil(2* Game.density)+ "X", PixelScene.maxDefaultZoom + "X", (int)Math.ceil(2* Game.density), PixelScene.maxDefaultZoom ) { @Override protected void onChange() { if (getSelectedValue() != SPDSettings.scale()) { SPDSettings.scale(getSelectedValue()); ShatteredPixelDungeon.seamlessResetScene(); } } }; if ((int)Math.ceil(2* Game.density) < PixelScene.maxDefaultZoom) { scale.setSelectedValue(PixelScene.defaultZoom); scale.setRect(0, 0, WIDTH, SLIDER_HEIGHT); add(scale); } RedButton btnResolution = new RedButton(Gdx.graphics.isFullscreen() ? TXT_SWITCH_WIN : TXT_SWITCH_FULL ) { @Override protected void onClick() { SPDSettings.fullscreen(!SPDSettings.fullscreen()); } }; btnResolution.enable( DeviceCompat.supportsFullScreen() ); btnResolution.setRect(0, scale.bottom() + GAP_TINY, WIDTH, BTN_HEIGHT); add(btnResolution); OptionSlider brightness = new OptionSlider(Messages.get(this, "brightness"), Messages.get(this, "dark"), Messages.get(this, "bright"), -2, 2) { @Override protected void onChange() { SPDSettings.brightness(getSelectedValue()); } }; brightness.setSelectedValue(SPDSettings.brightness()); brightness.setRect(0, btnResolution.bottom() + GAP_LRG, WIDTH, SLIDER_HEIGHT); add(brightness); OptionSlider tileGrid = new OptionSlider(Messages.get(this, "visual_grid"), Messages.get(this, "off"), Messages.get(this, "high"), -1, 3) { @Override protected void onChange() { SPDSettings.visualGrid(getSelectedValue()); } }; tileGrid.setSelectedValue(SPDSettings.visualGrid()); tileGrid.setRect(0, brightness.bottom() + GAP_TINY, WIDTH, SLIDER_HEIGHT); add(tileGrid); } } private class UITab extends Group { public UITab(){ super(); RenderedTextBlock barDesc = PixelScene.renderTextBlock(Messages.get(this, "mode"), 9); barDesc.setPos((WIDTH-barDesc.width())/2f, GAP_TINY); PixelScene.align(barDesc); add(barDesc); RedButton btnSplit = new RedButton(Messages.get(this, "split")){ @Override protected void onClick() { SPDSettings.toolbarMode(Toolbar.Mode.SPLIT.name()); Toolbar.updateLayout(); } }; btnSplit.setRect( 0, barDesc.bottom() + GAP_TINY, 36, 16); add(btnSplit); RedButton btnGrouped = new RedButton(Messages.get(this, "group")){ @Override protected void onClick() { SPDSettings.toolbarMode(Toolbar.Mode.GROUP.name()); Toolbar.updateLayout(); } }; btnGrouped.setRect( btnSplit.right()+GAP_TINY, btnSplit.top(), 36, 16); add(btnGrouped); RedButton btnCentered = new RedButton(Messages.get(this, "center")){ @Override protected void onClick() { SPDSettings.toolbarMode(Toolbar.Mode.CENTER.name()); Toolbar.updateLayout(); } }; btnCentered.setRect(btnGrouped.right()+GAP_TINY, btnSplit.top(), 36, 16); add(btnCentered); CheckBox chkFlipToolbar = new CheckBox(Messages.get(this, "flip_toolbar")){ @Override protected void onClick() { super.onClick(); SPDSettings.flipToolbar(checked()); Toolbar.updateLayout(); } }; chkFlipToolbar.setRect(0, btnGrouped.bottom() + GAP_TINY, WIDTH, BTN_HEIGHT); chkFlipToolbar.checked(SPDSettings.flipToolbar()); add(chkFlipToolbar); final CheckBox chkFlipTags = new CheckBox(Messages.get(this, "flip_indicators")){ @Override protected void onClick() { super.onClick(); SPDSettings.flipTags(checked()); GameScene.layoutTags(); } }; chkFlipTags.setRect(0, chkFlipToolbar.bottom() + GAP_TINY, WIDTH, BTN_HEIGHT); chkFlipTags.checked(SPDSettings.flipTags()); add(chkFlipTags); /* if (Gdx.app.getType() == Application.ApplicationType.Android || Gdx.app.getType() == Application.ApplicationType.iOS) { OptionSlider slots = new OptionSlider("Quickslots", "0", "4", 0, 4) { @Override protected void onChange() { SPDSettings.quickSlots(getSelectedValue()); Toolbar.updateLayout(); } }; slots.setSelectedValue(SPDSettings.quickSlots()); slots.setRect(0, chkFlipTags.bottom() + GAP_LRG, WIDTH, SLIDER_HEIGHT); add(slots); } else*/ if (Gdx.app.getType() == Application.ApplicationType.Desktop) { RedButton btnKeymap = new RedButton(TXT_BINDINGS) { @Override protected void onClick() { Game.scene().add(new WndKeymap()); } }; btnKeymap.setRect(0, chkFlipTags.bottom() + GAP_LRG, WIDTH, BTN_HEIGHT); add(btnKeymap); } } } private class AudioTab extends Group { public AudioTab() { OptionSlider musicVol = new OptionSlider(Messages.get(this, "music_vol"), "0", "10", 0, 10) { @Override protected void onChange() { SPDSettings.musicVol(getSelectedValue()); } }; musicVol.setSelectedValue(SPDSettings.musicVol()); musicVol.setRect(0, 0, WIDTH, SLIDER_HEIGHT); add(musicVol); CheckBox musicMute = new CheckBox(Messages.get(this, "music_mute")){ @Override protected void onClick() { super.onClick(); SPDSettings.music(!checked()); } }; musicMute.setRect(0, musicVol.bottom() + GAP_TINY, WIDTH, BTN_HEIGHT); musicMute.checked(!SPDSettings.music()); add(musicMute); OptionSlider SFXVol = new OptionSlider(Messages.get(this, "sfx_vol"), "0", "10", 0, 10) { @Override protected void onChange() { SPDSettings.SFXVol(getSelectedValue()); } }; SFXVol.setSelectedValue(SPDSettings.SFXVol()); SFXVol.setRect(0, musicMute.bottom() + GAP_LRG, WIDTH, SLIDER_HEIGHT); add(SFXVol); CheckBox btnSound = new CheckBox( Messages.get(this, "sfx_mute") ) { @Override protected void onClick() { super.onClick(); SPDSettings.soundFx(!checked()); Sample.INSTANCE.play( Assets.SND_CLICK ); } }; btnSound.setRect(0, SFXVol.bottom() + GAP_TINY, WIDTH, BTN_HEIGHT); btnSound.checked(!SPDSettings.soundFx()); add( btnSound ); resize( WIDTH, (int)btnSound.bottom()); } } }
9,492
WndSettings
java
en
java
code
{"qsc_code_num_words": 1042, "qsc_code_num_chars": 9492.0, "qsc_code_mean_word_length": 6.30806142, "qsc_code_frac_words_unique": 0.23416507, "qsc_code_frac_chars_top_2grams": 0.03347026, "qsc_code_frac_chars_top_3grams": 0.04564126, "qsc_code_frac_chars_top_4grams": 0.07363457, "qsc_code_frac_chars_dupe_5grams": 0.38840712, "qsc_code_frac_chars_dupe_6grams": 0.24600639, "qsc_code_frac_chars_dupe_7grams": 0.15533242, "qsc_code_frac_chars_dupe_8grams": 0.10801765, "qsc_code_frac_chars_dupe_9grams": 0.04001217, "qsc_code_frac_chars_dupe_10grams": 0.01490948, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.01112817, "qsc_code_frac_chars_whitespace": 0.17635904, "qsc_code_size_file_byte": 9492.0, "qsc_code_num_lines": 307.0, "qsc_code_num_chars_line_max": 126.0, "qsc_code_num_chars_line_mean": 30.91856678, "qsc_code_frac_chars_alphabet": 0.82962394, "qsc_code_frac_chars_comments": 0.13453434, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.27777778, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.02385879, "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.07264957, "qsc_codejava_score_lines_no_logic": 0.17521368, "qsc_codejava_frac_words_no_modifier": 0.80952381, "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/windows/WndHardNotification.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.windows; import com.shatteredpixel.shatteredpixeldungeon.ui.RedButton; import com.watabou.noosa.Game; import com.watabou.noosa.Image; import com.watabou.noosa.ui.Component; //a notification window that the player can't get rid of quickly, good for forcibly telling a message //USE THIS SPARINGLY public class WndHardNotification extends WndTitledMessage{ RedButton btnOkay; private double timeLeft; private String btnMessage; public WndHardNotification( Image icon, String title, String message, String btnMessage, int time) { this(new IconTitle(icon, title), message, btnMessage, time); } public WndHardNotification(Component titlebar, String message, String btnMessage, int time) { super(titlebar, message); timeLeft = time; this.btnMessage = btnMessage; btnOkay = new RedButton(btnMessage + " (" + time +")"){ @Override protected void onClick() { hide(); } }; btnOkay.setRect(0, height + GAP, width, 16); btnOkay.enable(false); add(btnOkay); resize(width, (int) btnOkay.bottom()); } @Override public void update() { super.update(); timeLeft -= Game.elapsed; if (timeLeft <= 0 ){ btnOkay.enable(true); btnOkay.text(btnMessage); } else { btnOkay.text(btnMessage + " (" + (int)Math.ceil(timeLeft) + ")"); } } @Override public void onBackPressed() { if (timeLeft <= 0 ) super.onBackPressed(); } }
2,207
WndHardNotification
java
en
java
code
{"qsc_code_num_words": 282, "qsc_code_num_chars": 2207.0, "qsc_code_mean_word_length": 5.65602837, "qsc_code_frac_words_unique": 0.5177305, "qsc_code_frac_chars_top_2grams": 0.02257053, "qsc_code_frac_chars_top_3grams": 0.02445141, "qsc_code_frac_chars_top_4grams": 0.03573668, "qsc_code_frac_chars_dupe_5grams": 0.09655172, "qsc_code_frac_chars_dupe_6grams": 0.08025078, "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.01210121, "qsc_code_frac_chars_whitespace": 0.17625736, "qsc_code_size_file_byte": 2207.0, "qsc_code_num_lines": 78.0, "qsc_code_num_chars_line_max": 102.0, "qsc_code_num_chars_line_mean": 28.29487179, "qsc_code_frac_chars_alphabet": 0.86523652, "qsc_code_frac_chars_comments": 0.40869959, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.06976744, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.0045977, "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.06976744, "qsc_codejava_score_lines_no_logic": 0.25581395, "qsc_codejava_frac_words_no_modifier": 0.75, "qsc_codejava_frac_words_legal_var_name": 1.0, "qsc_codejava_frac_words_legal_func_name": 1.0, "qsc_codejava_frac_words_legal_class_name": 1.0, "qsc_codejava_frac_lines_print": 0.0}
1
{"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codejava_cate_var_zero": 0, "qsc_codejava_frac_lines_func_ratio": 0, "qsc_codejava_score_lines_no_logic": 0, "qsc_codejava_frac_lines_print": 0}
00-Evan/shattered-pixel-dungeon-gdx
core/src/com/shatteredpixel/shatteredpixeldungeon/windows/WndInfoCell.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.windows; import com.shatteredpixel.shatteredpixeldungeon.Dungeon; import com.shatteredpixel.shatteredpixeldungeon.actors.blobs.Blob; import com.shatteredpixel.shatteredpixeldungeon.levels.Terrain; import com.shatteredpixel.shatteredpixeldungeon.messages.Messages; import com.shatteredpixel.shatteredpixeldungeon.scenes.PixelScene; import com.shatteredpixel.shatteredpixeldungeon.tiles.CustomTilemap; import com.shatteredpixel.shatteredpixeldungeon.tiles.DungeonTerrainTilemap; import com.shatteredpixel.shatteredpixeldungeon.tiles.DungeonTilemap; import com.shatteredpixel.shatteredpixeldungeon.ui.RenderedTextBlock; import com.shatteredpixel.shatteredpixeldungeon.ui.Window; import com.watabou.noosa.Image; public class WndInfoCell extends Window { private static final float GAP = 2; private static final int WIDTH = 120; public WndInfoCell( int cell ) { super(); int tile = Dungeon.level.map[cell]; if (Dungeon.level.water[cell]) { tile = Terrain.WATER; } else if (Dungeon.level.pit[cell]) { tile = Terrain.CHASM; } CustomTilemap customTile = null; Image customImage = null; int x = cell % Dungeon.level.width(); int y = cell / Dungeon.level.width(); for (CustomTilemap i : Dungeon.level.customTiles){ if ((x >= i.tileX && x < i.tileX+i.tileW) && (y >= i.tileY && y < i.tileY+i.tileH)){ if ((customImage = i.image(x - i.tileX, y - i.tileY)) != null) { x -= i.tileX; y -= i.tileY; customTile = i; break; } } } String desc = ""; IconTitle titlebar = new IconTitle(); if (customTile != null){ titlebar.icon(customImage); String customName = customTile.name(x, y); if (customName != null) { titlebar.label(customName); } else { titlebar.label(Dungeon.level.tileName(tile)); } String customDesc = customTile.desc(x, y); if (customDesc != null) { desc += customDesc; } else { desc += Dungeon.level.tileDesc(tile); } } else { if (tile == Terrain.WATER) { Image water = new Image(Dungeon.level.waterTex()); water.frame(0, 0, DungeonTilemap.SIZE, DungeonTilemap.SIZE); titlebar.icon(water); } else { titlebar.icon(DungeonTerrainTilemap.tile( cell, tile )); } titlebar.label(Dungeon.level.tileName(tile)); desc += Dungeon.level.tileDesc(tile); } titlebar.setRect(0, 0, WIDTH, 0); add(titlebar); RenderedTextBlock info = PixelScene.renderTextBlock(6); add(info); for (Blob blob:Dungeon.level.blobs.values()) { if (blob.volume > 0 && blob.cur[cell] > 0 && blob.tileDesc() != null) { if (desc.length() > 0) { desc += "\n\n"; } desc += blob.tileDesc(); } } info.text( desc.length() == 0 ? Messages.get(this, "nothing") : desc ); info.maxWidth(WIDTH); info.setPos(titlebar.left(), titlebar.bottom() + 2*GAP); resize( WIDTH, (int)info.bottom()+2 ); } }
3,700
WndInfoCell
java
en
java
code
{"qsc_code_num_words": 456, "qsc_code_num_chars": 3700.0, "qsc_code_mean_word_length": 5.63815789, "qsc_code_frac_words_unique": 0.37061404, "qsc_code_frac_chars_top_2grams": 0.05600933, "qsc_code_frac_chars_top_3grams": 0.16258265, "qsc_code_frac_chars_top_4grams": 0.17113963, "qsc_code_frac_chars_dupe_5grams": 0.18630883, "qsc_code_frac_chars_dupe_6grams": 0.06145469, "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.01086957, "qsc_code_frac_chars_whitespace": 0.17945946, "qsc_code_size_file_byte": 3700.0, "qsc_code_num_lines": 123.0, "qsc_code_num_chars_line_max": 77.0, "qsc_code_num_chars_line_mean": 30.08130081, "qsc_code_frac_chars_alphabet": 0.83596838, "qsc_code_frac_chars_comments": 0.21108108, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.09638554, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.00376841, "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.14457831, "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}
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/windows/WndLangs.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.windows; import com.shatteredpixel.shatteredpixeldungeon.Chrome; import com.shatteredpixel.shatteredpixeldungeon.SPDSettings; import com.shatteredpixel.shatteredpixeldungeon.ShatteredPixelDungeon; import com.shatteredpixel.shatteredpixeldungeon.messages.Languages; import com.shatteredpixel.shatteredpixeldungeon.messages.Messages; import com.shatteredpixel.shatteredpixeldungeon.scenes.PixelScene; import com.shatteredpixel.shatteredpixeldungeon.ui.RedButton; import com.shatteredpixel.shatteredpixeldungeon.ui.RenderedTextBlock; import com.shatteredpixel.shatteredpixeldungeon.ui.Window; import com.watabou.noosa.ColorBlock; import com.watabou.noosa.Game; import java.util.ArrayList; import java.util.Arrays; import java.util.Locale; public class WndLangs extends Window { private int WIDTH_P = 120; private int WIDTH_L = 171; private int MIN_HEIGHT = 110; private int BTN_WIDTH = 50; private int BTN_HEIGHT = 12; public WndLangs(){ super(); final ArrayList<Languages> langs = new ArrayList<>(Arrays.asList(Languages.values())); Languages nativeLang = Languages.matchLocale(Locale.getDefault()); langs.remove(nativeLang); //move the native language to the top. langs.add(0, nativeLang); final Languages currLang = Messages.lang(); //language buttons layout int y = 0; for (int i = 0; i < langs.size(); i++){ final int langIndex = i; RedButton btn = new RedButton(Messages.titleCase(langs.get(i).nativeName())){ @Override protected void onClick() { super.onClick(); Messages.setup(langs.get(langIndex)); ShatteredPixelDungeon.seamlessResetScene(new Game.SceneChangeCallback() { @Override public void beforeCreate() { //SPDSettings.language(langs.get(langIndex)); //Game.platform.resetGenerators(); } @Override public void afterCreate() { //do nothing } }); } }; if (currLang == langs.get(i)){ btn.textColor(TITLE_COLOR); } else { switch (langs.get(i).status()) { case INCOMPLETE: btn.textColor(0x888888); break; case UNREVIEWED: btn.textColor(0xBBBBBB); break; } } btn.setSize(BTN_WIDTH, BTN_HEIGHT); if (SPDSettings.landscape() && i % 2 == 1){ btn.setPos(BTN_WIDTH+1, y-(BTN_HEIGHT + 1)); } else { btn.setPos(0, y); y += BTN_HEIGHT; if (SPDSettings.landscape()) y++; } add(btn); } y = Math.max(MIN_HEIGHT, y); resize(SPDSettings.landscape() ? WIDTH_L : WIDTH_P, y); int textLeft = width - 65; int textWidth = width - textLeft; ColorBlock separator = new ColorBlock(1, y, 0xFF000000); separator.x = textLeft - 2.5f; add(separator); //language info layout. RenderedTextBlock title = PixelScene.renderTextBlock( Messages.titleCase(currLang.nativeName()) , 9 ); title.setPos( textLeft + (textWidth - title.width())/2f, 2 ); title.hardlight(TITLE_COLOR); PixelScene.align(title); add(title); if (currLang == Languages.ENGLISH){ RenderedTextBlock info = PixelScene.renderTextBlock(6); info.text("This is the source language, written by the developer.", width - textLeft); info.setPos(textLeft, title.bottom() + 4); add(info); } else { RenderedTextBlock info = PixelScene.renderTextBlock(6); switch (currLang.status()) { case REVIEWED: info.text(Messages.get(this, "completed"), width - textLeft); break; case UNREVIEWED: info.text(Messages.get(this, "unreviewed"), width - textLeft); break; case INCOMPLETE: info.text(Messages.get(this, "unfinished"), width - textLeft); break; } info.setPos(textLeft, title.bottom() + 4); add(info); RedButton creditsBtn = new RedButton(Messages.titleCase(Messages.get(this, "credits"))){ @Override protected void onClick() { super.onClick(); String creds = ""; String creds2 = ""; String[] reviewers = currLang.reviewers(); String[] translators = currLang.translators(); boolean wide = false; if (SPDSettings.landscape() && (reviewers.length + translators.length) > 10){ wide = true; } int i; if (reviewers.length > 0){ creds += Messages.titleCase(Messages.get(WndLangs.class, "reviewers")) + "\n"; creds2 += ""; for ( i = 0; i < reviewers.length; i++){ if (wide && i % 2 == 1){ creds2 += "-" + reviewers[i] + "\n"; } else { creds += "-" + reviewers[i] + "\n"; } } creds += "\n"; creds2 += "\n"; if (i % 2 == 1) creds2 += "\n"; } if (reviewers.length > 0 || translators.length > 0){ creds += Messages.titleCase(Messages.get(WndLangs.class, "translators")) + "\n"; creds2 += "\n"; //reviewers are also translators for ( i = 0; i < reviewers.length; i++){ if (wide && i % 2 == 1){ creds2 += "-" + reviewers[i] + "\n"; } else { creds += "-" + reviewers[i] + "\n"; } } for (int j = 0; j < translators.length; j++){ if (wide && (j + i) % 2 == 1){ creds2 += "-" + translators[j] + "\n"; } else { creds += "-" + translators[j] + "\n"; } } } creds = creds.substring(0, creds.length()-1); Window credits = new Window( 0, 0, 0, Chrome.get(Chrome.Type.TOAST) ); int w = wide? 135 : 65; RenderedTextBlock title = PixelScene.renderTextBlock(6); title.text(Messages.titleCase(Messages.get(WndLangs.class, "credits")) , w); title.hardlight(SHPX_COLOR); title.setPos((w - title.width())/2, 0); credits.add(title); RenderedTextBlock text = PixelScene.renderTextBlock(5); text.setHightlighting(false); text.text(creds, 65); text.setPos(0, title.bottom() + 2); credits.add(text); if (wide){ RenderedTextBlock rightColumn = PixelScene.renderTextBlock(5); rightColumn.setHightlighting(false); rightColumn.text(creds2, 65); rightColumn.setPos(70, title.bottom() + 8.5f); credits.add(rightColumn); } credits.resize(w, (int)text.bottom()); parent.add(credits); } }; creditsBtn.setSize(creditsBtn.reqWidth() + 2, 16); creditsBtn.setPos(textLeft + (textWidth - creditsBtn.width()) / 2f, y - 18); add(creditsBtn); RenderedTextBlock transifex_text = PixelScene.renderTextBlock(6); transifex_text.text(Messages.get(this, "transifex"), width - textLeft); transifex_text.setPos(textLeft, creditsBtn.top() - 2 - transifex_text.height()); add(transifex_text); } } @Override public void hide() { super.hide(); //resets generators because there's no need to retain chars for languages not selected ShatteredPixelDungeon.seamlessResetScene(new Game.SceneChangeCallback() { @Override public void beforeCreate() { //Game.platform.resetGenerators(); } @Override public void afterCreate() { //do nothing } }); } }
7,767
WndLangs
java
en
java
code
{"qsc_code_num_words": 880, "qsc_code_num_chars": 7767.0, "qsc_code_mean_word_length": 5.72840909, "qsc_code_frac_words_unique": 0.28181818, "qsc_code_frac_chars_top_2grams": 0.01963896, "qsc_code_frac_chars_top_3grams": 0.07538187, "qsc_code_frac_chars_top_4grams": 0.07855584, "qsc_code_frac_chars_dupe_5grams": 0.25907558, "qsc_code_frac_chars_dupe_6grams": 0.16127752, "qsc_code_frac_chars_dupe_7grams": 0.12616544, "qsc_code_frac_chars_dupe_8grams": 0.12616544, "qsc_code_frac_chars_dupe_9grams": 0.11148582, "qsc_code_frac_chars_dupe_10grams": 0.02697877, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.02010461, "qsc_code_frac_chars_whitespace": 0.21230848, "qsc_code_size_file_byte": 7767.0, "qsc_code_num_lines": 255.0, "qsc_code_num_chars_line_max": 105.0, "qsc_code_num_chars_line_mean": 30.45882353, "qsc_code_frac_chars_alphabet": 0.80385747, "qsc_code_frac_chars_comments": 0.14445732, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.27225131, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.0234763, "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.00391272, "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.03664921, "qsc_codejava_score_lines_no_logic": 0.12041885, "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/windows/WndResurrect.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.windows; import com.shatteredpixel.shatteredpixeldungeon.Statistics; import com.shatteredpixel.shatteredpixeldungeon.actors.hero.Hero; import com.shatteredpixel.shatteredpixeldungeon.items.Ankh; import com.shatteredpixel.shatteredpixeldungeon.messages.Messages; import com.shatteredpixel.shatteredpixeldungeon.scenes.InterlevelScene; import com.shatteredpixel.shatteredpixeldungeon.scenes.PixelScene; import com.shatteredpixel.shatteredpixeldungeon.sprites.ItemSprite; import com.shatteredpixel.shatteredpixeldungeon.ui.RedButton; import com.shatteredpixel.shatteredpixeldungeon.ui.RenderedTextBlock; import com.shatteredpixel.shatteredpixeldungeon.ui.Window; import com.watabou.noosa.Game; public class WndResurrect extends Window { private static final int WIDTH = 120; private static final int BTN_HEIGHT = 20; private static final float GAP = 2; public static WndResurrect instance; public static Object causeOfDeath; public WndResurrect( final Ankh ankh, Object causeOfDeath ) { super(); instance = this; WndResurrect.causeOfDeath = causeOfDeath; IconTitle titlebar = new IconTitle(); titlebar.icon( new ItemSprite( ankh.image(), null ) ); titlebar.label( Messages.titleCase(ankh.name()) ); titlebar.setRect( 0, 0, WIDTH, 0 ); add( titlebar ); RenderedTextBlock message = PixelScene.renderTextBlock( Messages.get(this, "message"), 6 ); message.maxWidth(WIDTH); message.setPos(0, titlebar.bottom() + GAP); add( message ); RedButton btnYes = new RedButton( Messages.get(this, "yes") ) { @Override protected void onClick() { hide(); Statistics.ankhsUsed++; InterlevelScene.mode = InterlevelScene.Mode.RESURRECT; Game.switchScene( InterlevelScene.class ); } }; btnYes.setRect( 0, message.top() + message.height() + GAP, WIDTH, BTN_HEIGHT ); add( btnYes ); RedButton btnNo = new RedButton( Messages.get(this, "no") ) { @Override protected void onClick() { hide(); //Rankings.INSTANCE.submit( false, WndResurrect.causeOfDeath.getClass() ); Hero.reallyDie( WndResurrect.causeOfDeath ); } }; btnNo.setRect( 0, btnYes.bottom() + GAP, WIDTH, BTN_HEIGHT ); add( btnNo ); resize( WIDTH, (int)btnNo.bottom() ); } @Override public void destroy() { super.destroy(); instance = null; } @Override public void onBackPressed() { } }
3,205
WndResurrect
java
en
java
code
{"qsc_code_num_words": 370, "qsc_code_num_chars": 3205.0, "qsc_code_mean_word_length": 6.38108108, "qsc_code_frac_words_unique": 0.43783784, "qsc_code_frac_chars_top_2grams": 0.07920373, "qsc_code_frac_chars_top_3grams": 0.17704363, "qsc_code_frac_chars_top_4grams": 0.18636171, "qsc_code_frac_chars_dupe_5grams": 0.20245659, "qsc_code_frac_chars_dupe_6grams": 0.02371876, "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.01117318, "qsc_code_frac_chars_whitespace": 0.16224649, "qsc_code_size_file_byte": 3205.0, "qsc_code_num_lines": 100.0, "qsc_code_num_chars_line_max": 94.0, "qsc_code_num_chars_line_mean": 32.05, "qsc_code_frac_chars_alphabet": 0.86815642, "qsc_code_frac_chars_comments": 0.26677067, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.16129032, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.00510638, "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.29032258, "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/utils/DungeonSeed.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.utils; import com.watabou.utils.Random; //This class defines the parameters for seeds in ShatteredPD and contains a few convenience methods public class DungeonSeed { private static long TOTAL_SEEDS = 5429503678976L; //26^9 possible seeds public static long randomSeed(){ return Random.Long( TOTAL_SEEDS ); } //Seed codes take the form @@@-@@@-@@@ where @ is any letter from A to Z (only uppercase) //This is effectively a base-26 number system, therefore 26^9 unique seeds are possible. //Seed codes exist to make sharing and inputting seeds easier //ZZZ-ZZZ-ZZZ is much easier to enter and share than 5,429,503,678,975 //Takes a seed code (@@@@@@@@@) and converts it to the equivalent long value public static long convertFromCode( String code ){ if (code.length() != 9) throw new IllegalArgumentException("codes must be 9 A-Z characters."); long result = 0; for (int i = 8; i >= 0; i--) { char c = code.charAt(i); if (c > 'Z' || c < 'A') throw new IllegalArgumentException("codes must be 9 A-Z characters."); result += (c - 65) * Math.pow(26, (8 - i)); } return result; } //Takes a long value and converts it to the equivalent seed code public static String convertToCode( long seed ){ if (seed < 0 || seed >= TOTAL_SEEDS) throw new IllegalArgumentException("seeds must be within the range [0, TOTAL_SEEDS)"); //this almost gives us the right answer, but its 0-p instead of A-Z String interrim = Long.toString(seed, 26); String result = ""; //so we convert for (int i = 0; i < 9; i++) { if (i < interrim.length()){ char c = interrim.charAt(i); if (c <= '9') c += 17; //convert 0-9 to A-J else c -= 22; //convert a-p to K-Z result += c; } else { result = 'A' + result; //pad with A (zeroes) until we reach length of 9 } } return result; } //Using this we can let users input 'fun' plaintext seeds and convert them to a long equivalent. // This is basically the same as string.hashcode except with long, and accounting for overflow // to ensure the produced seed is always in the range [0, TOTAL_SEEDS) public static long convertFromText( String inputText ){ long total = 0; for (char c : inputText.toCharArray()){ total = 31 * total + c; } if (total < 0) total += Long.MAX_VALUE; total %= TOTAL_SEEDS; return total; } }
3,191
DungeonSeed
java
en
java
code
{"qsc_code_num_words": 487, "qsc_code_num_chars": 3191.0, "qsc_code_mean_word_length": 4.48459959, "qsc_code_frac_words_unique": 0.42710472, "qsc_code_frac_chars_top_2grams": 0.02747253, "qsc_code_frac_chars_top_3grams": 0.01785714, "qsc_code_frac_chars_top_4grams": 0.0260989, "qsc_code_frac_chars_dupe_5grams": 0.13186813, "qsc_code_frac_chars_dupe_6grams": 0.1025641, "qsc_code_frac_chars_dupe_7grams": 0.05128205, "qsc_code_frac_chars_dupe_8grams": 0.05128205, "qsc_code_frac_chars_dupe_9grams": 0.05128205, "qsc_code_frac_chars_dupe_10grams": 0.05128205, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.03256553, "qsc_code_frac_chars_whitespace": 0.21090567, "qsc_code_size_file_byte": 3191.0, "qsc_code_num_lines": 98.0, "qsc_code_num_chars_line_max": 100.0, "qsc_code_num_chars_line_mean": 32.56122449, "qsc_code_frac_chars_alphabet": 0.83478952, "qsc_code_frac_chars_comments": 0.55750548, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.08695652, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.08002833, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.0, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0, "qsc_codejava_cate_var_zero": 0.0, "qsc_codejava_frac_lines_func_ratio": 0.08695652, "qsc_codejava_score_lines_no_logic": 0.19565217, "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/Grid_Board
main/ShareTech140.c
/******************************************************************************* * Size: 140 px * Bpp: 1 * Opts: --bpp 1 --size 140 --no-compress --stride 1 --align 1 --font ShareTech-Regular.ttf --range 32-127,160-255,8211,8212,8216,8217,8220,8221,8226,8230,215,247,8722,8800,8804,8805,8364,163,165,8482,174,169 --format lvgl -o ShareTech140.c ******************************************************************************/ #ifdef __has_include #if __has_include("lvgl.h") #ifndef LV_LVGL_H_INCLUDE_SIMPLE #define LV_LVGL_H_INCLUDE_SIMPLE #endif #endif #endif #ifdef LV_LVGL_H_INCLUDE_SIMPLE #include "lvgl.h" #else #include "lvgl/lvgl.h" #endif #ifndef SHARETECH140 #define SHARETECH140 1 #endif #if SHARETECH140 /*----------------- * BITMAPS *----------------*/ /*Store the image of the glyphs*/ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { /* U+0020 " " */ 0x0, /* U+0021 "!" */ 0x7f, 0xf9, 0xff, 0xe7, 0xff, 0x9f, 0xfe, 0x7f, 0xf9, 0xff, 0xe7, 0xff, 0x9f, 0xfe, 0x7f, 0xf9, 0xff, 0xe7, 0xff, 0x9f, 0xfe, 0x7f, 0xf9, 0xff, 0xe7, 0xff, 0x9f, 0xfe, 0x7f, 0xf9, 0xff, 0xe7, 0xff, 0x9f, 0xfe, 0x7f, 0xf9, 0xff, 0xe7, 0xff, 0x9f, 0xfe, 0x7f, 0xf9, 0xff, 0xe7, 0xff, 0x9f, 0xfe, 0x7f, 0xf9, 0xff, 0xe7, 0xff, 0x9f, 0xfe, 0x7f, 0xf9, 0xff, 0xe7, 0xff, 0x9f, 0xfe, 0x7f, 0xf9, 0xff, 0xe7, 0xff, 0x9f, 0xfe, 0x7f, 0xf9, 0xff, 0xe7, 0xff, 0x9f, 0xfe, 0x7f, 0xf9, 0xff, 0xe7, 0xff, 0x9f, 0xfe, 0x7f, 0xf9, 0xff, 0xe7, 0xff, 0x9f, 0xfe, 0x7f, 0xf9, 0xff, 0xe7, 0xff, 0x9f, 0xfe, 0x7f, 0xf9, 0xff, 0xe7, 0xff, 0x9f, 0xfe, 0x7f, 0xf9, 0xff, 0xe7, 0xff, 0x9f, 0xfe, 0x7f, 0xf9, 0xff, 0xe7, 0xff, 0x9f, 0xfe, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, /* U+0022 "\"" */ 0xff, 0xf8, 0x3, 0xff, 0xff, 0xff, 0x0, 0x7f, 0xff, 0xff, 0xe0, 0xf, 0xff, 0xff, 0xfc, 0x1, 0xff, 0xff, 0xff, 0x80, 0x3f, 0xff, 0xff, 0xf0, 0x7, 0xff, 0xff, 0xfe, 0x0, 0xff, 0xff, 0xff, 0xc0, 0x1f, 0xff, 0xff, 0xf8, 0x3, 0xff, 0xff, 0xff, 0x0, 0x7f, 0xff, 0xff, 0xe0, 0xf, 0xff, 0xff, 0xfc, 0x1, 0xff, 0xff, 0xff, 0x80, 0x3f, 0xff, 0xff, 0xf0, 0x7, 0xff, 0xff, 0xfe, 0x0, 0xff, 0xff, 0xff, 0xc0, 0x1f, 0xff, 0x7f, 0xf0, 0x1, 0xff, 0xcf, 0xfe, 0x0, 0x3f, 0xf9, 0xff, 0xc0, 0x7, 0xff, 0x3f, 0xf8, 0x0, 0xff, 0xe7, 0xff, 0x0, 0x1f, 0xfc, 0xff, 0xe0, 0x3, 0xff, 0x9f, 0xfc, 0x0, 0x7f, 0xf3, 0xff, 0x80, 0xf, 0xfe, 0x3f, 0xe0, 0x0, 0xff, 0x87, 0xfc, 0x0, 0x1f, 0xf0, 0xff, 0x80, 0x3, 0xfe, 0x1f, 0xf0, 0x0, 0x7f, 0xc3, 0xfe, 0x0, 0xf, 0xf8, 0x7f, 0xc0, 0x1, 0xff, 0xf, 0xf8, 0x0, 0x3f, 0xe1, 0xff, 0x0, 0x7, 0xfc, 0x1f, 0xc0, 0x0, 0x7f, 0x3, 0xf8, 0x0, 0xf, 0xe0, /* U+0023 "#" */ 0x0, 0x3f, 0xf8, 0x0, 0xff, 0xe0, 0x0, 0x1, 0xff, 0xc0, 0x7, 0xff, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x7f, 0xf0, 0x1, 0xff, 0xc0, 0x0, 0x3, 0xff, 0x80, 0xf, 0xfe, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0xff, 0xe0, 0x3, 0xff, 0x80, 0x0, 0x7, 0xff, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0xff, 0xe0, 0x0, 0x1, 0xff, 0xc0, 0x7, 0xff, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x7f, 0xf0, 0x1, 0xff, 0xc0, 0x0, 0x3, 0xff, 0x80, 0xf, 0xfe, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0xff, 0xe0, 0x3, 0xff, 0x80, 0x0, 0x7, 0xff, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0xff, 0xe0, 0x0, 0x1, 0xff, 0xc0, 0x7, 0xff, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x7f, 0xf0, 0x1, 0xff, 0xc0, 0x0, 0x3, 0xff, 0x80, 0xf, 0xfe, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0xff, 0xe0, 0x3, 0xff, 0x80, 0x0, 0x7, 0xff, 0x0, 0x1f, 0xfc, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0xf, 0xfe, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x7f, 0xf0, 0x1, 0xff, 0xc0, 0x0, 0x3, 0xff, 0x80, 0xf, 0xfe, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0xff, 0xe0, 0x3, 0xff, 0x80, 0x0, 0x7, 0xff, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0xff, 0xe0, 0x0, 0x1, 0xff, 0xc0, 0x7, 0xff, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x7f, 0xf0, 0x1, 0xff, 0xc0, 0x0, 0x3, 0xff, 0x80, 0xf, 0xfe, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0xff, 0xe0, 0x3, 0xff, 0x80, 0x0, 0x7, 0xff, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0xff, 0xe0, 0x0, 0x1, 0xff, 0xc0, 0x7, 0xff, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x7f, 0xf0, 0x1, 0xff, 0xc0, 0x0, 0x3, 0xff, 0x80, 0xf, 0xfe, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0xff, 0xe0, 0x3, 0xff, 0x80, 0x0, 0x7, 0xff, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0xff, 0xe0, 0x0, 0x1, 0xff, 0xc0, 0x7, 0xff, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x7f, 0xf0, 0x1, 0xff, 0xc0, 0x0, 0x3, 0xff, 0x80, 0xf, 0xfe, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0xff, 0xe0, 0x3, 0xff, 0x80, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x1, 0xff, 0xc0, 0x7, 0xff, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x7f, 0xf0, 0x1, 0xff, 0xc0, 0x0, 0x3, 0xff, 0x80, 0xf, 0xfe, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0xff, 0xe0, 0x3, 0xff, 0x80, 0x0, 0x7, 0xff, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0xff, 0xe0, 0x0, 0x1, 0xff, 0xc0, 0x7, 0xff, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x7f, 0xf0, 0x1, 0xff, 0xc0, 0x0, 0x3, 0xff, 0x80, 0xf, 0xfe, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0xff, 0xe0, 0x3, 0xff, 0x80, 0x0, 0x7, 0xff, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0xff, 0xe0, 0x0, 0x1, 0xff, 0xc0, 0x7, 0xff, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x7f, 0xf0, 0x1, 0xff, 0xc0, 0x0, 0x3, 0xff, 0x80, 0xf, 0xfe, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0xff, 0xe0, 0x3, 0xff, 0x80, 0x0, 0x7, 0xff, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0xff, 0xe0, 0x0, 0x1, 0xff, 0xc0, 0x7, 0xff, 0x0, 0x0, /* U+0024 "$" */ 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xf0, 0x0, 0xf, 0xff, 0xff, 0xff, 0xc0, 0x0, 0xff, 0xff, 0xff, 0xff, 0x0, 0xf, 0xff, 0xff, 0xff, 0xfc, 0x0, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0x1, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xf, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xc1, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0x0, 0x0, 0x0, 0x1, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x7, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x3, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x7, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xff, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0x0, 0x1, 0xff, 0xff, 0xff, 0xff, 0x0, 0x3, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x3, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x7, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x7, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x7, 0xff, 0xff, 0xff, 0xe0, 0x0, 0x1, 0xff, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0x7f, 0xff, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x80, 0x0, 0x0, 0x0, 0x7f, 0xfc, 0x0, 0x0, 0x0, 0x3, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xfe, 0xf, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xc0, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x3, 0xff, 0xff, 0xff, 0xff, 0xf0, 0xf, 0xff, 0xff, 0xff, 0xff, 0x80, 0x3f, 0xff, 0xff, 0xff, 0xfc, 0x0, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x3, 0xff, 0xff, 0xff, 0xfc, 0x0, 0xf, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x3f, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, /* U+0025 "%" */ 0x0, 0xf, 0xff, 0x80, 0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x3, 0xff, 0x80, 0x0, 0x0, 0x1, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x1, 0xff, 0xe0, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x1, 0xff, 0xe0, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x1, 0xff, 0xc0, 0x0, 0x3, 0xff, 0x80, 0x0, 0x0, 0x3, 0xff, 0x0, 0x1, 0xff, 0x80, 0x0, 0xf, 0xfe, 0x0, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x3, 0xff, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0, 0x1f, 0xf8, 0x0, 0x3, 0xff, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x3f, 0xf0, 0x0, 0x7, 0xfe, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x7f, 0xe0, 0x0, 0xf, 0xfc, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xff, 0xc0, 0x0, 0x1f, 0xf8, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x1, 0xff, 0x80, 0x0, 0x3f, 0xf0, 0x0, 0xf, 0xfe, 0x0, 0x0, 0x0, 0x3, 0xff, 0x0, 0x0, 0x7f, 0xe0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0, 0x7, 0xfe, 0x0, 0x0, 0xff, 0xc0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0xf, 0xfc, 0x0, 0x1, 0xff, 0x80, 0x0, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x1f, 0xf8, 0x0, 0x3, 0xff, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x3f, 0xf0, 0x0, 0x7, 0xfe, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x7f, 0xe0, 0x0, 0xf, 0xfc, 0x0, 0xf, 0xfe, 0x0, 0x0, 0x0, 0x0, 0xff, 0xc0, 0x0, 0x1f, 0xf8, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0, 0x1, 0xff, 0x80, 0x0, 0x3f, 0xf0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x3, 0xff, 0x0, 0x0, 0x7f, 0xe0, 0x0, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x7, 0xfe, 0x0, 0x0, 0xff, 0xc0, 0x1, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xfc, 0x0, 0x1, 0xff, 0x80, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x1f, 0xf8, 0x0, 0x3, 0xff, 0x0, 0xf, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xf0, 0x0, 0x7, 0xfe, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xe0, 0x0, 0xf, 0xfc, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0xff, 0xc0, 0x0, 0x1f, 0xf8, 0x0, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x1, 0xff, 0x80, 0x0, 0x3f, 0xf0, 0x1, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x3, 0xff, 0x0, 0x0, 0x7f, 0xe0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x7, 0xfe, 0x0, 0x0, 0xff, 0xc0, 0xf, 0xfe, 0x0, 0x0, 0x0, 0x0, 0xf, 0xfc, 0x0, 0x1, 0xff, 0x80, 0x1f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xf8, 0x0, 0x3, 0xff, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xf0, 0x0, 0x7, 0xfe, 0x0, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xe0, 0x0, 0xf, 0xfc, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xc0, 0x0, 0x1f, 0xf8, 0x7, 0xff, 0x80, 0x3, 0xff, 0xe0, 0x1, 0xff, 0x80, 0x0, 0x3f, 0xf0, 0xf, 0xfe, 0x0, 0x3f, 0xff, 0xf8, 0x3, 0xff, 0x0, 0x0, 0x7f, 0xe0, 0x3f, 0xfc, 0x1, 0xff, 0xff, 0xfc, 0x7, 0xfe, 0x0, 0x0, 0xff, 0xc0, 0x7f, 0xf8, 0x7, 0xff, 0xff, 0xfc, 0xf, 0xfc, 0x0, 0x1, 0xff, 0x80, 0xff, 0xe0, 0x1f, 0xff, 0xff, 0xfc, 0x1f, 0xfc, 0x0, 0x7, 0xfe, 0x3, 0xff, 0xc0, 0x7f, 0xff, 0xff, 0xfc, 0x1f, 0xf8, 0x0, 0xf, 0xfc, 0x7, 0xff, 0x81, 0xff, 0xff, 0xff, 0xfc, 0x3f, 0xf8, 0x0, 0x3f, 0xf8, 0xf, 0xfe, 0x7, 0xff, 0xff, 0xff, 0xfc, 0x7f, 0xf8, 0x0, 0xff, 0xf0, 0x3f, 0xfc, 0xf, 0xff, 0x0, 0x7f, 0xf8, 0x7f, 0xf8, 0x3, 0xff, 0xc0, 0x7f, 0xf8, 0x3f, 0xfc, 0x0, 0x7f, 0xf8, 0xff, 0xff, 0xff, 0xff, 0x80, 0xff, 0xe0, 0x7f, 0xf0, 0x0, 0x7f, 0xf0, 0xff, 0xff, 0xff, 0xfe, 0x3, 0xff, 0xc0, 0xff, 0xc0, 0x0, 0x7f, 0xe0, 0xff, 0xff, 0xff, 0xf8, 0x7, 0xff, 0x83, 0xff, 0x80, 0x0, 0xff, 0xc0, 0xff, 0xff, 0xff, 0xe0, 0xf, 0xfe, 0x7, 0xfe, 0x0, 0x0, 0xff, 0xc0, 0xff, 0xff, 0xff, 0x80, 0x3f, 0xfc, 0xf, 0xfc, 0x0, 0x1, 0xff, 0x80, 0xff, 0xff, 0xfe, 0x0, 0x7f, 0xf0, 0x1f, 0xf8, 0x0, 0x3, 0xff, 0x0, 0x7f, 0xff, 0xf0, 0x0, 0xff, 0xe0, 0x3f, 0xf0, 0x0, 0x7, 0xfe, 0x0, 0x1f, 0xff, 0x0, 0x3, 0xff, 0xc0, 0x7f, 0xe0, 0x0, 0xf, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x0, 0xff, 0xc0, 0x0, 0x1f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x1, 0xff, 0x80, 0x0, 0x3f, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x3, 0xff, 0x0, 0x0, 0x7f, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0x7, 0xfe, 0x0, 0x0, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0xf, 0xfc, 0x0, 0x1, 0xff, 0x80, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x1f, 0xf8, 0x0, 0x3, 0xff, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x0, 0x3f, 0xf0, 0x0, 0x7, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x7f, 0xe0, 0x0, 0xf, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0xff, 0xc0, 0x0, 0x1f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0x1, 0xff, 0x80, 0x0, 0x3f, 0xf0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x3, 0xff, 0x0, 0x0, 0x7f, 0xe0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x7, 0xfe, 0x0, 0x0, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x0, 0xf, 0xfc, 0x0, 0x1, 0xff, 0x80, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x1f, 0xf8, 0x0, 0x3, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x3f, 0xf0, 0x0, 0x7, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x7f, 0xe0, 0x0, 0xf, 0xfc, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0xff, 0xc0, 0x0, 0x1f, 0xf8, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x1, 0xff, 0x80, 0x0, 0x3f, 0xf0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x0, 0x3, 0xff, 0x0, 0x0, 0x7f, 0xe0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x7, 0xfe, 0x0, 0x0, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0xf, 0xfc, 0x0, 0x1, 0xff, 0x80, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x1f, 0xf8, 0x0, 0x3, 0xff, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x3f, 0xf0, 0x0, 0x7, 0xfe, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x7f, 0xe0, 0x0, 0xf, 0xfc, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0xff, 0xc0, 0x0, 0x1f, 0xf8, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x1, 0xff, 0x80, 0x0, 0x3f, 0xf0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x3, 0xff, 0x0, 0x0, 0x7f, 0xe0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x7, 0xff, 0x0, 0x1, 0xff, 0x80, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x7, 0xfe, 0x0, 0x3, 0xff, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0xf, 0xfe, 0x0, 0xf, 0xfe, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xff, 0x80, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xc0, 0x0, /* U+0026 "&" */ 0x0, 0x0, 0x1f, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x0, 0xf, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0x3, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x1, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x7f, 0xff, 0x80, 0x0, 0x7f, 0xf8, 0x0, 0x3f, 0xff, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0xf, 0xff, 0x80, 0x0, 0x7, 0xff, 0x80, 0x7, 0xff, 0xc0, 0x0, 0x1, 0xff, 0xe0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x7, 0xff, 0x80, 0xf, 0xff, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x7, 0xff, 0x80, 0xf, 0xff, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x7, 0xff, 0x80, 0xf, 0xff, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x7, 0xff, 0x80, 0xf, 0xff, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x7, 0xff, 0x80, 0xf, 0xff, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x7, 0xff, 0x80, 0xf, 0xff, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x7, 0xff, 0x80, 0xf, 0xff, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x7, 0xff, 0x80, 0xf, 0xff, 0x80, 0x0, 0x1, 0xff, 0xe0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x7f, 0xfc, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x1f, 0xff, 0x0, 0x0, 0x7, 0xff, 0x80, 0x3, 0xff, 0xf0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0xff, 0xff, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x0, 0xf, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xff, 0x80, 0x0, /* U+0027 "'" */ 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x7f, 0xf3, 0xff, 0x9f, 0xfc, 0xff, 0xe7, 0xff, 0x3f, 0xf9, 0xff, 0xcf, 0xfe, 0x3f, 0xe1, 0xff, 0xf, 0xf8, 0x7f, 0xc3, 0xfe, 0x1f, 0xf0, 0xff, 0x87, 0xfc, 0x1f, 0xc0, 0xfe, 0x0, /* U+0028 "(" */ 0x0, 0x0, 0xff, 0xf0, 0x0, 0x1f, 0xfe, 0x0, 0x3, 0xff, 0xe0, 0x0, 0x7f, 0xfc, 0x0, 0xf, 0xff, 0x80, 0x1, 0xff, 0xf0, 0x0, 0x1f, 0xfe, 0x0, 0x3, 0xff, 0xe0, 0x0, 0x7f, 0xfc, 0x0, 0x7, 0xff, 0x80, 0x0, 0xff, 0xf0, 0x0, 0x1f, 0xff, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x3f, 0xfe, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x7f, 0xf8, 0x0, 0x7, 0xff, 0x80, 0x0, 0xff, 0xf0, 0x0, 0xf, 0xff, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x1f, 0xfe, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x1f, 0xfe, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x3f, 0xfc, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x3f, 0xf8, 0x0, 0x7, 0xff, 0x80, 0x0, 0x7f, 0xf8, 0x0, 0x7, 0xff, 0x80, 0x0, 0x7f, 0xf8, 0x0, 0x7, 0xff, 0x80, 0x0, 0x7f, 0xf8, 0x0, 0x7, 0xff, 0x0, 0x0, 0xff, 0xf0, 0x0, 0xf, 0xff, 0x0, 0x0, 0xff, 0xf0, 0x0, 0xf, 0xff, 0x0, 0x0, 0xff, 0xf0, 0x0, 0xf, 0xff, 0x0, 0x0, 0xff, 0xf0, 0x0, 0xf, 0xff, 0x0, 0x0, 0xff, 0xf0, 0x0, 0xf, 0xff, 0x0, 0x0, 0xff, 0xf0, 0x0, 0xf, 0xff, 0x0, 0x0, 0xff, 0xf0, 0x0, 0xf, 0xff, 0x0, 0x0, 0xff, 0xf0, 0x0, 0xf, 0xff, 0x0, 0x0, 0xff, 0xf0, 0x0, 0xf, 0xff, 0x0, 0x0, 0xff, 0xf0, 0x0, 0xf, 0xff, 0x0, 0x0, 0xff, 0xf0, 0x0, 0xf, 0xff, 0x0, 0x0, 0xff, 0xf0, 0x0, 0xf, 0xff, 0x0, 0x0, 0xff, 0xf0, 0x0, 0xf, 0xff, 0x0, 0x0, 0xff, 0xf0, 0x0, 0xf, 0xff, 0x0, 0x0, 0xff, 0xf0, 0x0, 0xf, 0xff, 0x0, 0x0, 0xff, 0xf0, 0x0, 0xf, 0xff, 0x0, 0x0, 0xff, 0xf0, 0x0, 0xf, 0xff, 0x0, 0x0, 0xff, 0xf0, 0x0, 0xf, 0xff, 0x0, 0x0, 0xff, 0xf0, 0x0, 0xf, 0xff, 0x0, 0x0, 0xff, 0xf0, 0x0, 0xf, 0xff, 0x0, 0x0, 0xff, 0xf0, 0x0, 0xf, 0xff, 0x0, 0x0, 0xff, 0xf0, 0x0, 0xf, 0xff, 0x0, 0x0, 0xff, 0xf0, 0x0, 0xf, 0xff, 0x0, 0x0, 0xff, 0xf0, 0x0, 0xf, 0xff, 0x0, 0x0, 0xff, 0xf0, 0x0, 0xf, 0xff, 0x0, 0x0, 0xff, 0xf0, 0x0, 0xf, 0xff, 0x0, 0x0, 0xff, 0xf0, 0x0, 0xf, 0xff, 0x0, 0x0, 0xff, 0xf0, 0x0, 0xf, 0xff, 0x0, 0x0, 0xff, 0xf0, 0x0, 0xf, 0xff, 0x0, 0x0, 0xff, 0xf0, 0x0, 0xf, 0xff, 0x0, 0x0, 0xff, 0xf0, 0x0, 0xf, 0xff, 0x0, 0x0, 0xff, 0xf0, 0x0, 0xf, 0xff, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x7, 0xff, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x7, 0xff, 0x80, 0x0, 0x7f, 0xf8, 0x0, 0x7, 0xff, 0x80, 0x0, 0x7f, 0xf8, 0x0, 0x3, 0xff, 0x80, 0x0, 0x3f, 0xfc, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x3f, 0xfc, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x1f, 0xfe, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0xff, 0xf0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x7, 0xff, 0x80, 0x0, 0x3f, 0xfc, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x1f, 0xfe, 0x0, 0x1, 0xff, 0xe0, 0x0, 0xf, 0xff, 0x0, 0x0, 0xff, 0xf8, 0x0, 0x7, 0xff, 0x80, 0x0, 0x3f, 0xfc, 0x0, 0x3, 0xff, 0xe0, 0x0, 0x1f, 0xff, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x7f, 0xfc, 0x0, 0x3, 0xff, 0xe0, 0x0, 0x1f, 0xff, /* U+0029 ")" */ 0xff, 0xf0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x3f, 0xfc, 0x0, 0x3, 0xff, 0xe0, 0x0, 0x1f, 0xff, 0x0, 0x0, 0xff, 0xf8, 0x0, 0x7, 0xff, 0x80, 0x0, 0x7f, 0xfc, 0x0, 0x3, 0xff, 0xe0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0xff, 0xf0, 0x0, 0xf, 0xff, 0x80, 0x0, 0x7f, 0xf8, 0x0, 0x7, 0xff, 0xc0, 0x0, 0x3f, 0xfc, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0xff, 0xe0, 0x0, 0xf, 0xff, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x7f, 0xf8, 0x0, 0x7, 0xff, 0x80, 0x0, 0x3f, 0xfc, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x3f, 0xfc, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x1f, 0xfe, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x1f, 0xfe, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x1f, 0xfe, 0x0, 0x1, 0xff, 0xe0, 0x0, 0xf, 0xfe, 0x0, 0x0, 0xff, 0xf0, 0x0, 0xf, 0xff, 0x0, 0x0, 0xff, 0xf0, 0x0, 0xf, 0xff, 0x0, 0x0, 0xff, 0xf0, 0x0, 0xf, 0xff, 0x0, 0x0, 0xff, 0xf0, 0x0, 0xf, 0xff, 0x0, 0x0, 0xff, 0xf0, 0x0, 0xf, 0xff, 0x0, 0x0, 0xff, 0xf0, 0x0, 0xf, 0xff, 0x0, 0x0, 0xff, 0xf0, 0x0, 0xf, 0xff, 0x0, 0x0, 0xff, 0xf0, 0x0, 0xf, 0xff, 0x0, 0x0, 0xff, 0xf0, 0x0, 0xf, 0xff, 0x0, 0x0, 0xff, 0xf0, 0x0, 0xf, 0xff, 0x0, 0x0, 0xff, 0xf0, 0x0, 0xf, 0xff, 0x0, 0x0, 0xff, 0xf0, 0x0, 0xf, 0xff, 0x0, 0x0, 0xff, 0xf0, 0x0, 0xf, 0xff, 0x0, 0x0, 0xff, 0xf0, 0x0, 0xf, 0xff, 0x0, 0x0, 0xff, 0xf0, 0x0, 0xf, 0xff, 0x0, 0x0, 0xff, 0xf0, 0x0, 0xf, 0xff, 0x0, 0x0, 0xff, 0xf0, 0x0, 0xf, 0xff, 0x0, 0x0, 0xff, 0xf0, 0x0, 0xf, 0xff, 0x0, 0x0, 0xff, 0xf0, 0x0, 0xf, 0xff, 0x0, 0x0, 0xff, 0xf0, 0x0, 0xf, 0xff, 0x0, 0x0, 0xff, 0xf0, 0x0, 0xf, 0xff, 0x0, 0x0, 0xff, 0xf0, 0x0, 0xf, 0xff, 0x0, 0x0, 0xff, 0xf0, 0x0, 0xf, 0xff, 0x0, 0x0, 0xff, 0xf0, 0x0, 0xf, 0xff, 0x0, 0x0, 0xff, 0xf0, 0x0, 0xf, 0xff, 0x0, 0x0, 0xff, 0xf0, 0x0, 0xf, 0xff, 0x0, 0x0, 0xff, 0xf0, 0x0, 0xf, 0xff, 0x0, 0x0, 0xff, 0xf0, 0x0, 0xf, 0xff, 0x0, 0x0, 0xff, 0xf0, 0x0, 0xf, 0xff, 0x0, 0x0, 0xff, 0xf0, 0x0, 0xf, 0xff, 0x0, 0x0, 0xff, 0xf0, 0x0, 0xf, 0xff, 0x0, 0x0, 0xff, 0xf0, 0x0, 0xf, 0xff, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x1f, 0xfe, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x1f, 0xfe, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x1f, 0xfe, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x1f, 0xfc, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x3f, 0xfc, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x3f, 0xf8, 0x0, 0x7, 0xff, 0x80, 0x0, 0x7f, 0xf8, 0x0, 0x7, 0xff, 0x80, 0x0, 0xff, 0xf0, 0x0, 0xf, 0xff, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x1f, 0xfe, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x3f, 0xfc, 0x0, 0x7, 0xff, 0x80, 0x0, 0x7f, 0xf8, 0x0, 0xf, 0xff, 0x0, 0x1, 0xff, 0xf0, 0x0, 0x3f, 0xfe, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x7f, 0xfc, 0x0, 0xf, 0xff, 0x80, 0x0, 0xff, 0xf0, 0x0, 0x1f, 0xfe, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x7f, 0xfc, 0x0, 0xf, 0xff, 0x80, 0x0, /* U+002A "*" */ 0x0, 0x0, 0x7, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0x80, 0x0, 0x0, 0x10, 0x0, 0x3, 0xff, 0x80, 0x0, 0x0, 0x1c, 0x0, 0x1, 0xff, 0x80, 0x0, 0x30, 0x1f, 0x80, 0x1, 0xff, 0x80, 0x1, 0xf8, 0x3f, 0xe0, 0x1, 0xff, 0x80, 0xf, 0xf8, 0x3f, 0xfc, 0x1, 0xff, 0x0, 0x3f, 0xf8, 0x3f, 0xff, 0x1, 0xff, 0x1, 0xff, 0xfc, 0x7f, 0xff, 0xe1, 0xff, 0x7, 0xff, 0xfc, 0x7f, 0xff, 0xf9, 0xff, 0x3f, 0xff, 0xfc, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x7, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x1, 0xff, 0xef, 0xff, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc7, 0xff, 0x80, 0x0, 0x0, 0x7, 0xff, 0xc7, 0xff, 0xc0, 0x0, 0x0, 0xf, 0xff, 0x83, 0xff, 0xc0, 0x0, 0x0, 0xf, 0xff, 0x3, 0xff, 0xe0, 0x0, 0x0, 0x1f, 0xff, 0x1, 0xff, 0xf0, 0x0, 0x0, 0x3f, 0xfe, 0x0, 0xff, 0xf8, 0x0, 0x0, 0x7f, 0xfc, 0x0, 0xff, 0xfc, 0x0, 0x0, 0xff, 0xfc, 0x0, 0x7f, 0xfe, 0x0, 0x1, 0xff, 0xf8, 0x0, 0x3f, 0xff, 0x0, 0x3, 0xff, 0xf0, 0x0, 0x3f, 0xff, 0x0, 0x7, 0xff, 0xf0, 0x0, 0x1f, 0xff, 0x80, 0x7, 0xff, 0xe0, 0x0, 0x1f, 0xff, 0x80, 0x1, 0xff, 0xe0, 0x0, 0xf, 0xff, 0x0, 0x0, 0xff, 0xc0, 0x0, 0x7, 0xfe, 0x0, 0x0, 0x7f, 0x80, 0x0, 0x7, 0xf8, 0x0, 0x0, 0x1f, 0x80, 0x0, 0x3, 0xf0, 0x0, 0x0, 0xf, 0x0, 0x0, 0x1, 0xe0, 0x0, 0x0, 0x6, 0x0, 0x0, 0x1, 0x80, 0x0, /* U+002B "+" */ 0x0, 0x0, 0x7, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0x80, 0x0, 0x3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0x7, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0x80, 0x0, 0x0, /* U+002C "," */ 0x3, 0xff, 0xf0, 0x3f, 0xff, 0x3, 0xff, 0xf0, 0x3f, 0xff, 0x3, 0xff, 0xf0, 0x3f, 0xff, 0x3, 0xff, 0xf0, 0x3f, 0xff, 0x3, 0xff, 0xf0, 0x3f, 0xff, 0x3, 0xff, 0xf0, 0x3f, 0xff, 0x3, 0xff, 0xf0, 0x3f, 0xff, 0x3, 0xff, 0xf0, 0x7f, 0xfe, 0x7, 0xff, 0xe0, 0x7f, 0xfc, 0x7, 0xff, 0xc0, 0xff, 0xf8, 0xf, 0xff, 0x80, 0xff, 0xf8, 0x1f, 0xff, 0x1, 0xff, 0xf0, 0x1f, 0xfe, 0x1, 0xff, 0xe0, 0x3f, 0xfc, 0x3, 0xff, 0xc0, 0x3f, 0xf8, 0x7, 0xff, 0x80, 0x7f, 0xf0, 0x7, 0xff, 0x0, 0x7f, 0xf0, 0x0, /* U+002D "-" */ 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, /* U+002E "." */ 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, /* U+002F "/" */ 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x0, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x0, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x3, 0xff, 0x80, 0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x3, 0xff, 0x80, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x0, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x3, 0xff, 0x80, 0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x3, 0xff, 0x80, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x7, 0xff, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x0, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0, 0x3, 0xff, 0x80, 0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x3, 0xff, 0x80, 0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x7, 0xff, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x0, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x0, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x3, 0xff, 0x80, 0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x0, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x3, 0xff, 0x80, 0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x3, 0xff, 0x80, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x0, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0, 0x3, 0xff, 0x80, 0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x3, 0xff, 0x80, 0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x7, 0xff, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x0, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x3, 0xff, 0x80, 0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x0, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x3, 0xff, 0x80, 0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x3, 0xff, 0x80, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x0, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, /* U+0030 "0" */ 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xfe, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0x0, 0x1, 0xff, 0xff, 0xff, 0xff, 0x80, 0x3, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xe0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x1f, 0xff, 0xf0, 0xf, 0xff, 0xf8, 0x3f, 0xff, 0x80, 0x1, 0xff, 0xfc, 0x3f, 0xff, 0x0, 0x0, 0xff, 0xfc, 0x3f, 0xfe, 0x0, 0x0, 0x7f, 0xfc, 0x7f, 0xfc, 0x0, 0x0, 0x3f, 0xfe, 0x7f, 0xf8, 0x0, 0x0, 0x1f, 0xfe, 0x7f, 0xf8, 0x0, 0x0, 0x1f, 0xfe, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xfe, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0x7f, 0xf0, 0x0, 0x0, 0x1f, 0xfe, 0x7f, 0xf8, 0x0, 0x0, 0x1f, 0xfe, 0x7f, 0xf8, 0x0, 0x0, 0x1f, 0xfe, 0x7f, 0xfc, 0x0, 0x0, 0x3f, 0xfe, 0x3f, 0xfe, 0x0, 0x0, 0x7f, 0xfc, 0x3f, 0xff, 0x0, 0x0, 0xff, 0xfc, 0x3f, 0xff, 0x80, 0x1, 0xff, 0xfc, 0x1f, 0xff, 0xf0, 0xf, 0xff, 0xf8, 0xf, 0xff, 0xff, 0xff, 0xff, 0xf0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x3, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x1, 0xff, 0xff, 0xff, 0xff, 0x80, 0x0, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x3, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, /* U+0031 "1" */ 0x0, 0x0, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xf0, 0x0, 0x0, 0x3, 0xff, 0xff, 0x80, 0x0, 0x0, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x7, 0xff, 0xff, 0xff, 0x0, 0x0, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xc0, 0x0, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x7, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x3f, 0xff, 0xff, 0xff, 0x80, 0x1, 0xff, 0xff, 0xbf, 0xfc, 0x0, 0xf, 0xff, 0xf1, 0xff, 0xe0, 0x0, 0x7f, 0xfc, 0xf, 0xff, 0x0, 0x3, 0xff, 0x0, 0x7f, 0xf8, 0x0, 0x1f, 0xe0, 0x3, 0xff, 0xc0, 0x0, 0xf8, 0x0, 0x1f, 0xfe, 0x0, 0x7, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xf9, 0xff, 0xff, 0xff, 0xff, 0xff, 0xcf, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xf3, 0xff, 0xff, 0xff, 0xff, 0xff, 0x9f, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe7, 0xff, 0xff, 0xff, 0xff, 0xff, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xf9, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, /* U+0032 "2" */ 0x1f, 0xff, 0xfe, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x80, 0x0, 0x7, 0xff, 0xff, 0xff, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xfe, 0x0, 0x1, 0xff, 0xff, 0xff, 0xfc, 0x0, 0xf, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xc0, 0x3, 0xff, 0xff, 0xff, 0xff, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xfc, 0x0, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x3, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x80, 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x7f, 0xfc, 0x0, 0x0, 0x0, 0x3, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x0, 0x0, 0x0, 0x1, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x80, 0x0, 0x0, 0x0, 0xff, 0xf8, 0x0, 0x0, 0x0, 0xf, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7f, 0xfc, 0x0, 0x0, 0x0, 0x7, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x7f, 0xfe, 0x0, 0x0, 0x0, 0x3, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0x0, 0x0, 0x0, 0x3, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x80, 0x0, 0x0, 0x1, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x80, 0x0, 0x0, 0x0, 0xff, 0xfc, 0x0, 0x0, 0x0, 0xf, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x7, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x7f, 0xfe, 0x0, 0x0, 0x0, 0x7, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0x0, 0x0, 0x0, 0x3, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x80, 0x0, 0x0, 0x1, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x80, 0x0, 0x0, 0x0, 0xff, 0xfc, 0x0, 0x0, 0x0, 0xf, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x7, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x7f, 0xfe, 0x0, 0x0, 0x0, 0x7, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0x0, 0x0, 0x0, 0x3, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0x0, 0x0, 0x0, 0x1, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x80, 0x0, 0x0, 0x1, 0xff, 0xf8, 0x0, 0x0, 0x0, 0xf, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xff, 0xfc, 0x0, 0x0, 0x0, 0xf, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7f, 0xfe, 0x0, 0x0, 0x0, 0x7, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x0, 0x3, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, /* U+0033 "3" */ 0xff, 0xff, 0xfc, 0x0, 0x0, 0xff, 0xff, 0xff, 0xc0, 0x0, 0xff, 0xff, 0xff, 0xf8, 0x0, 0xff, 0xff, 0xff, 0xfc, 0x0, 0xff, 0xff, 0xff, 0xff, 0x0, 0xff, 0xff, 0xff, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xc0, 0xff, 0xff, 0xff, 0xff, 0xe0, 0xff, 0xff, 0xff, 0xff, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x7, 0xff, 0xf8, 0x0, 0x0, 0x1, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x7f, 0xfc, 0x0, 0x0, 0x0, 0x7f, 0xfc, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x7f, 0xfc, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0xff, 0xf8, 0x0, 0x0, 0x3, 0xff, 0xf8, 0x0, 0x0, 0xf, 0xff, 0xf0, 0x7, 0xff, 0xff, 0xff, 0xe0, 0x7, 0xff, 0xff, 0xff, 0xc0, 0x7, 0xff, 0xff, 0xff, 0x80, 0x7, 0xff, 0xff, 0xff, 0x0, 0x7, 0xff, 0xff, 0xfe, 0x0, 0x7, 0xff, 0xff, 0xff, 0x80, 0x7, 0xff, 0xff, 0xff, 0xc0, 0x7, 0xff, 0xff, 0xff, 0xe0, 0x7, 0xff, 0xff, 0xff, 0xf0, 0x7, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x7, 0xff, 0xf8, 0x0, 0x0, 0x0, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x7f, 0xfc, 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x0, 0xff, 0xfc, 0x0, 0x0, 0x3, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xf8, 0xff, 0xff, 0xff, 0xff, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xe0, 0xff, 0xff, 0xff, 0xff, 0xc0, 0xff, 0xff, 0xff, 0xff, 0x0, 0xff, 0xff, 0xff, 0xfc, 0x0, 0xff, 0xff, 0xff, 0xf0, 0x0, 0xff, 0xff, 0xfe, 0x0, 0x0, /* U+0034 "4" */ 0x0, 0x3, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0xff, 0xf0, 0x0, 0x7, 0xff, 0x0, 0x3f, 0xfc, 0x0, 0x3, 0xff, 0xc0, 0xf, 0xff, 0x0, 0x0, 0xff, 0xf0, 0x3, 0xff, 0xc0, 0x0, 0x3f, 0xfc, 0x0, 0xff, 0xf0, 0x0, 0xf, 0xff, 0x0, 0x3f, 0xfc, 0x0, 0x3, 0xff, 0xc0, 0xf, 0xff, 0x0, 0x1, 0xff, 0xe0, 0x3, 0xff, 0xc0, 0x0, 0x7f, 0xf8, 0x0, 0xff, 0xf0, 0x0, 0x1f, 0xfe, 0x0, 0x3f, 0xfc, 0x0, 0x7, 0xff, 0x80, 0xf, 0xff, 0x0, 0x3, 0xff, 0xe0, 0x3, 0xff, 0xc0, 0x0, 0xff, 0xf0, 0x0, 0xff, 0xf0, 0x0, 0x3f, 0xfc, 0x0, 0x3f, 0xfc, 0x0, 0xf, 0xff, 0x0, 0xf, 0xff, 0x0, 0x3, 0xff, 0xc0, 0x3, 0xff, 0xc0, 0x1, 0xff, 0xf0, 0x0, 0xff, 0xf0, 0x0, 0x7f, 0xf8, 0x0, 0x3f, 0xfc, 0x0, 0x1f, 0xfe, 0x0, 0xf, 0xff, 0x0, 0x7, 0xff, 0x80, 0x3, 0xff, 0xc0, 0x1, 0xff, 0xe0, 0x0, 0xff, 0xf0, 0x0, 0xff, 0xf8, 0x0, 0x3f, 0xfc, 0x0, 0x3f, 0xfc, 0x0, 0xf, 0xff, 0x0, 0xf, 0xff, 0x0, 0x3, 0xff, 0xc0, 0x3, 0xff, 0xc0, 0x0, 0xff, 0xf0, 0x1, 0xff, 0xf0, 0x0, 0x3f, 0xfc, 0x0, 0x7f, 0xfc, 0x0, 0xf, 0xff, 0x0, 0x1f, 0xfe, 0x0, 0x3, 0xff, 0xc0, 0x7, 0xff, 0x80, 0x0, 0xff, 0xf0, 0x1, 0xff, 0xe0, 0x0, 0x3f, 0xfc, 0x0, 0xff, 0xf8, 0x0, 0xf, 0xff, 0x0, 0x3f, 0xfe, 0x0, 0x3, 0xff, 0xc0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, /* U+0035 "5" */ 0x3f, 0xff, 0xff, 0xff, 0xfe, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xf, 0xff, 0xff, 0xff, 0xff, 0x87, 0xff, 0xff, 0xff, 0xff, 0xc3, 0xff, 0xff, 0xff, 0xff, 0xe1, 0xff, 0xff, 0xff, 0xff, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x7f, 0xff, 0xff, 0xff, 0xfc, 0x3f, 0xff, 0xff, 0xff, 0xfe, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xf, 0xff, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xfe, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xf0, 0x0, 0x1f, 0xff, 0xff, 0xff, 0x0, 0xf, 0xff, 0xff, 0xff, 0xe0, 0x7, 0xff, 0xff, 0xff, 0xf8, 0x3, 0xff, 0xff, 0xff, 0xfe, 0x1, 0xff, 0xff, 0xff, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x7f, 0xff, 0xff, 0xff, 0xf8, 0x3f, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x1, 0xff, 0xff, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x80, 0x0, 0x0, 0x7, 0xff, 0xe0, 0x0, 0x0, 0x1, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x1, 0xff, 0xf0, 0x0, 0x0, 0x1, 0xff, 0xf8, 0x0, 0x0, 0x1, 0xff, 0xf8, 0x0, 0x0, 0x3, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x7f, 0xff, 0xff, 0xff, 0xfe, 0x3f, 0xff, 0xff, 0xff, 0xfe, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xf, 0xff, 0xff, 0xff, 0xff, 0x7, 0xff, 0xff, 0xff, 0xff, 0x3, 0xff, 0xff, 0xff, 0xfe, 0x1, 0xff, 0xff, 0xff, 0xfc, 0x0, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, /* U+0036 "6" */ 0x0, 0x0, 0x1f, 0xff, 0xff, 0x80, 0x0, 0x3, 0xff, 0xff, 0xff, 0x80, 0x0, 0xf, 0xff, 0xff, 0xff, 0x80, 0x0, 0x3f, 0xff, 0xff, 0xff, 0x80, 0x0, 0xff, 0xff, 0xff, 0xff, 0x80, 0x1, 0xff, 0xff, 0xff, 0xff, 0x80, 0x3, 0xff, 0xff, 0xff, 0xff, 0x80, 0x7, 0xff, 0xff, 0xff, 0xff, 0x80, 0xf, 0xff, 0xff, 0xff, 0xff, 0x80, 0x1f, 0xff, 0xff, 0xff, 0xff, 0x80, 0x1f, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0x80, 0x0, 0x0, 0x0, 0x3f, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0xff, 0xf0, 0x0, 0x3, 0xff, 0xfc, 0xff, 0xf0, 0x0, 0x0, 0xff, 0xfc, 0xff, 0xf0, 0x0, 0x0, 0x7f, 0xfe, 0xff, 0xf0, 0x0, 0x0, 0x3f, 0xfe, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xfe, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xfe, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0x7f, 0xf0, 0x0, 0x0, 0xf, 0xfe, 0x7f, 0xf8, 0x0, 0x0, 0x1f, 0xfe, 0x7f, 0xf8, 0x0, 0x0, 0x1f, 0xfe, 0x7f, 0xfc, 0x0, 0x0, 0x3f, 0xfe, 0x3f, 0xfe, 0x0, 0x0, 0x7f, 0xfc, 0x3f, 0xff, 0x0, 0x0, 0xff, 0xfc, 0x3f, 0xff, 0x80, 0x1, 0xff, 0xfc, 0x1f, 0xff, 0xe0, 0x7, 0xff, 0xf8, 0xf, 0xff, 0xff, 0xff, 0xff, 0xf0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x3, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x1, 0xff, 0xff, 0xff, 0xff, 0x80, 0x0, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x3, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7f, 0xfe, 0x0, 0x0, /* U+0037 "7" */ 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x7, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x0, 0x0, 0x0, 0x3, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x3, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x7f, 0xfc, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x7f, 0xfc, 0x0, 0x0, 0x0, 0xf, 0xff, 0x80, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x7f, 0xfc, 0x0, 0x0, 0x0, 0xf, 0xff, 0x80, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0xf, 0xff, 0x80, 0x0, 0x0, 0x1, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x1, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x0, 0x7, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x0, 0x7, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x7, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x0, 0x0, 0x0, 0x3, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x0, 0x0, 0x0, 0x3, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x3, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x7f, 0xfc, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x7f, 0xfc, 0x0, 0x0, 0x0, 0xf, 0xff, 0x80, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x7f, 0xfc, 0x0, 0x0, 0x0, 0xf, 0xff, 0x80, 0x0, 0x0, 0x1, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0xf, 0xff, 0x80, 0x0, 0x0, 0x1, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x1, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x0, 0x7, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x0, 0x7, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x7, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, /* U+0038 "8" */ 0x0, 0x0, 0x3f, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0x80, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xfe, 0x0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x1, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0xff, 0xfe, 0x0, 0x3f, 0xff, 0xc0, 0x3f, 0xfe, 0x0, 0x1, 0xff, 0xf0, 0x1f, 0xff, 0x0, 0x0, 0x3f, 0xfe, 0x7, 0xff, 0xc0, 0x0, 0xf, 0xff, 0x81, 0xff, 0xe0, 0x0, 0x1, 0xff, 0xe0, 0x7f, 0xf8, 0x0, 0x0, 0x7f, 0xf8, 0x3f, 0xfc, 0x0, 0x0, 0xf, 0xff, 0xf, 0xff, 0x0, 0x0, 0x3, 0xff, 0xc3, 0xff, 0xc0, 0x0, 0x0, 0xff, 0xf0, 0xff, 0xf0, 0x0, 0x0, 0x3f, 0xfc, 0x3f, 0xfc, 0x0, 0x0, 0xf, 0xff, 0xf, 0xff, 0x0, 0x0, 0x3, 0xff, 0xc3, 0xff, 0xc0, 0x0, 0x0, 0xff, 0xf0, 0xff, 0xf0, 0x0, 0x0, 0x3f, 0xfc, 0x3f, 0xfc, 0x0, 0x0, 0xf, 0xff, 0xf, 0xff, 0x0, 0x0, 0x3, 0xff, 0xc3, 0xff, 0xc0, 0x0, 0x0, 0xff, 0xf0, 0xff, 0xf0, 0x0, 0x0, 0x3f, 0xfc, 0x3f, 0xfc, 0x0, 0x0, 0xf, 0xff, 0xf, 0xff, 0x0, 0x0, 0x3, 0xff, 0xc3, 0xff, 0xc0, 0x0, 0x0, 0xff, 0xf0, 0xff, 0xf0, 0x0, 0x0, 0x3f, 0xfc, 0x3f, 0xfc, 0x0, 0x0, 0xf, 0xff, 0xf, 0xff, 0x0, 0x0, 0x3, 0xff, 0xc3, 0xff, 0xc0, 0x0, 0x0, 0xff, 0xf0, 0xff, 0xf0, 0x0, 0x0, 0x3f, 0xfc, 0x3f, 0xfe, 0x0, 0x0, 0x1f, 0xfe, 0x7, 0xff, 0x80, 0x0, 0x7, 0xff, 0x81, 0xff, 0xf0, 0x0, 0x3, 0xff, 0xe0, 0x7f, 0xfc, 0x0, 0x0, 0xff, 0xf8, 0xf, 0xff, 0x80, 0x0, 0x7f, 0xfc, 0x3, 0xff, 0xf0, 0x0, 0x3f, 0xff, 0x0, 0x7f, 0xff, 0x80, 0x7f, 0xff, 0x80, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x3, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xf8, 0x0, 0xf, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x1, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x1, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0x80, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x7, 0xff, 0xf8, 0x0, 0x7f, 0xff, 0x83, 0xff, 0xf0, 0x0, 0x3, 0xff, 0xf0, 0xff, 0xf8, 0x0, 0x0, 0x7f, 0xfc, 0x7f, 0xfc, 0x0, 0x0, 0xf, 0xff, 0x9f, 0xfe, 0x0, 0x0, 0x1, 0xff, 0xe7, 0xff, 0x80, 0x0, 0x0, 0x7f, 0xfb, 0xff, 0xe0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x80, 0x0, 0x0, 0x7f, 0xf9, 0xff, 0xe0, 0x0, 0x0, 0x1f, 0xfe, 0x7f, 0xfc, 0x0, 0x0, 0xf, 0xff, 0x9f, 0xff, 0x0, 0x0, 0x7, 0xff, 0xe3, 0xff, 0xe0, 0x0, 0x3, 0xff, 0xf0, 0xff, 0xff, 0x0, 0x3, 0xff, 0xfc, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x0, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, 0xf, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x0, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x0, 0xf, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xf0, 0x0, 0x0, /* U+0039 "9" */ 0x0, 0x0, 0x7f, 0xfe, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xfc, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0x0, 0x1, 0xff, 0xff, 0xff, 0xff, 0x80, 0x3, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xe0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xf0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x1f, 0xff, 0xe0, 0x7, 0xff, 0xf8, 0x3f, 0xff, 0x80, 0x1, 0xff, 0xf8, 0x3f, 0xff, 0x0, 0x0, 0xff, 0xfc, 0x3f, 0xfe, 0x0, 0x0, 0x7f, 0xfc, 0x7f, 0xfc, 0x0, 0x0, 0x3f, 0xfe, 0x7f, 0xf8, 0x0, 0x0, 0x1f, 0xfe, 0x7f, 0xf8, 0x0, 0x0, 0x1f, 0xfe, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xfe, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0x7f, 0xf8, 0x0, 0x0, 0xf, 0xff, 0x7f, 0xf8, 0x0, 0x0, 0xf, 0xff, 0x7f, 0xfc, 0x0, 0x0, 0xf, 0xff, 0x7f, 0xfe, 0x0, 0x0, 0xf, 0xff, 0x3f, 0xff, 0x0, 0x0, 0xf, 0xff, 0x3f, 0xff, 0xc0, 0x0, 0xf, 0xff, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0x0, 0xf, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x1, 0xff, 0xfc, 0x0, 0x0, 0x0, 0xf, 0xff, 0xf8, 0x0, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x0, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x0, 0xff, 0xff, 0xff, 0xff, 0x80, 0x0, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x0, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x0, 0xff, 0xff, 0xf8, 0x0, 0x0, /* U+003A ":" */ 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, /* U+003B ";" */ 0x3, 0xff, 0xf0, 0x3f, 0xff, 0x3, 0xff, 0xf0, 0x3f, 0xff, 0x3, 0xff, 0xf0, 0x3f, 0xff, 0x3, 0xff, 0xf0, 0x3f, 0xff, 0x3, 0xff, 0xf0, 0x3f, 0xff, 0x3, 0xff, 0xf0, 0x3f, 0xff, 0x3, 0xff, 0xf0, 0x3f, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xf0, 0x3f, 0xff, 0x3, 0xff, 0xf0, 0x3f, 0xff, 0x3, 0xff, 0xf0, 0x3f, 0xff, 0x3, 0xff, 0xf0, 0x3f, 0xff, 0x3, 0xff, 0xf0, 0x3f, 0xff, 0x3, 0xff, 0xf0, 0x3f, 0xff, 0x3, 0xff, 0xf0, 0x3f, 0xff, 0x3, 0xff, 0xf0, 0x7f, 0xfe, 0x7, 0xff, 0xe0, 0x7f, 0xfc, 0x7, 0xff, 0xc0, 0xff, 0xf8, 0xf, 0xff, 0x80, 0xff, 0xf8, 0x1f, 0xff, 0x1, 0xff, 0xf0, 0x1f, 0xfe, 0x1, 0xff, 0xe0, 0x3f, 0xfc, 0x3, 0xff, 0xc0, 0x3f, 0xf8, 0x7, 0xff, 0x80, 0x7f, 0xf0, 0x7, 0xff, 0x0, 0x7f, 0xf0, 0x0, /* U+003C "<" */ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3e, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xfe, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xff, 0x80, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xf8, 0x0, 0x0, 0xf, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x1, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x7, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x3, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x3, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xff, 0x80, 0x0, 0x0, 0xf, 0xff, 0xff, 0xff, 0x80, 0x0, 0x0, 0xf, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xff, 0x80, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, /* U+003D "=" */ 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, /* U+003E ">" */ 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3e, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xff, 0x80, 0x0, 0x0, 0x3, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0x1, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x3, 0xff, 0xff, 0xff, 0x80, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x3, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x3, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xff, 0x0, 0x0, 0x1, 0xff, 0xff, 0xff, 0xe0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0x7, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0xf, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7e, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x18, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, /* U+003F "?" */ 0xff, 0xff, 0xf8, 0x0, 0x3, 0xff, 0xff, 0xfe, 0x0, 0xf, 0xff, 0xff, 0xff, 0x0, 0x3f, 0xff, 0xff, 0xff, 0x0, 0xff, 0xff, 0xff, 0xfe, 0x3, 0xff, 0xff, 0xff, 0xfc, 0xf, 0xff, 0xff, 0xff, 0xf8, 0x3f, 0xff, 0xff, 0xff, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xff, 0xff, 0x80, 0x0, 0x0, 0xff, 0xff, 0x0, 0x0, 0x0, 0xff, 0xfc, 0x0, 0x0, 0x0, 0xff, 0xf8, 0x0, 0x0, 0x3, 0xff, 0xe0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x1f, 0xff, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x1f, 0xff, 0x0, 0x0, 0x0, 0x7f, 0xfc, 0x0, 0x0, 0x3, 0xff, 0xe0, 0x0, 0x0, 0xf, 0xff, 0x80, 0x0, 0x0, 0x7f, 0xfe, 0x0, 0x0, 0x3, 0xff, 0xf8, 0x0, 0x0, 0x1f, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xfe, 0x0, 0x0, 0x3, 0xff, 0xf8, 0x0, 0x0, 0x1f, 0xff, 0xc0, 0x0, 0x0, 0xff, 0xfe, 0x0, 0x0, 0x7, 0xff, 0xf0, 0x0, 0x0, 0x3f, 0xff, 0xc0, 0x0, 0x1, 0xff, 0xfe, 0x0, 0x0, 0xf, 0xff, 0xf0, 0x0, 0x0, 0x3f, 0xff, 0x80, 0x0, 0x1, 0xff, 0xfc, 0x0, 0x0, 0xf, 0xff, 0xe0, 0x0, 0x0, 0x7f, 0xff, 0x0, 0x0, 0x3, 0xff, 0xf8, 0x0, 0x0, 0x1f, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xfe, 0x0, 0x0, 0x1, 0xff, 0xf8, 0x0, 0x0, 0x7, 0xff, 0xc0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xfc, 0x0, 0x0, 0x3, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xc0, 0x0, 0x0, 0x3f, 0xff, 0x0, 0x0, 0x0, 0xff, 0xfc, 0x0, 0x0, 0x3, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xc0, 0x0, 0x0, 0x3f, 0xff, 0x0, 0x0, 0x0, 0xff, 0xfc, 0x0, 0x0, 0x3, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xc0, 0x0, 0x0, 0x3f, 0xff, 0x0, 0x0, 0x0, 0xff, 0xfc, 0x0, 0x0, 0x3, 0xff, 0xf0, 0x0, 0x0, /* U+0040 "@" */ 0x0, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x0, 0x0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0xf, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xf0, 0x1f, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xf8, 0x3f, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xf8, 0x3f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xfc, 0x3f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xfc, 0x7f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x7f, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xff, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x1, 0xff, 0xff, 0xff, 0xff, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x7, 0xff, 0xff, 0xff, 0xff, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x1, 0xff, 0xfe, 0x0, 0x7, 0xff, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x1, 0xff, 0xf0, 0x0, 0x7, 0xff, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x3, 0xff, 0xe0, 0x0, 0x7, 0xff, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x3, 0xff, 0xc0, 0x0, 0x7, 0xff, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x3, 0xff, 0x80, 0x0, 0x7, 0xff, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x7, 0xff, 0x80, 0x0, 0x7, 0xff, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x7, 0xff, 0x80, 0x0, 0x7, 0xff, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x7, 0xff, 0x0, 0x0, 0x7, 0xff, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x7, 0xff, 0x0, 0x0, 0x7, 0xff, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x7, 0xff, 0x0, 0x0, 0x7, 0xff, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x7, 0xff, 0x0, 0x0, 0x7, 0xff, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x7, 0xff, 0x0, 0x0, 0x7, 0xff, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x7, 0xff, 0x0, 0x0, 0x7, 0xff, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x7, 0xff, 0x0, 0x0, 0x7, 0xff, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x7, 0xff, 0x0, 0x0, 0x7, 0xff, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x7, 0xff, 0x0, 0x0, 0x7, 0xff, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x7, 0xff, 0x0, 0x0, 0x7, 0xff, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x7, 0xff, 0x0, 0x0, 0x7, 0xff, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x7, 0xff, 0x0, 0x0, 0x7, 0xff, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x7, 0xff, 0x0, 0x0, 0x7, 0xff, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x7, 0xff, 0x0, 0x0, 0x7, 0xff, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x7, 0xff, 0x0, 0x0, 0x7, 0xff, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x7, 0xff, 0x0, 0x0, 0x7, 0xff, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x7, 0xff, 0x0, 0x0, 0x7, 0xff, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x7, 0xff, 0x0, 0x0, 0x7, 0xff, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x7, 0xff, 0x0, 0x0, 0x7, 0xff, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x7, 0xff, 0x0, 0x0, 0x7, 0xff, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x7, 0xff, 0x0, 0x0, 0x7, 0xff, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x7, 0xff, 0x0, 0x0, 0x7, 0xff, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x7, 0xff, 0x0, 0x0, 0x7, 0xff, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x7, 0xff, 0x0, 0x0, 0x7, 0xff, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x7, 0xff, 0x80, 0x0, 0x7, 0xff, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x7, 0xff, 0x80, 0x0, 0xf, 0xff, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x3, 0xff, 0x80, 0x0, 0xf, 0xff, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x3, 0xff, 0xc0, 0x0, 0x1f, 0xff, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x3, 0xff, 0xf0, 0x0, 0x3f, 0xff, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x3, 0xff, 0xfc, 0x1, 0xff, 0xff, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x1f, 0xfe, 0xff, 0xf0, 0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x1f, 0xfe, 0xff, 0xf0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x3f, 0xfe, 0xff, 0xf0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x7f, 0xfe, 0xff, 0xf0, 0x0, 0x3f, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xf0, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xf0, 0x0, 0xf, 0xff, 0xff, 0xe0, 0x7f, 0xff, 0xff, 0xf8, 0xff, 0xf0, 0x0, 0x3, 0xff, 0xff, 0x80, 0x3f, 0xff, 0xff, 0xf0, 0xff, 0xf0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xc0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0x80, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xfe, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xe0, 0x0, 0x7f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x0, 0x0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x0, 0x0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x0, 0x0, 0x3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x0, 0x0, 0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x0, 0x0, /* U+0041 "A" */ 0x0, 0x0, 0x0, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xfe, 0x7f, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xfe, 0x7f, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xfe, 0x7f, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xfe, 0x7f, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xfe, 0x7f, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xfc, 0x3f, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xfc, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfc, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfc, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xf8, 0x1f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xf8, 0x1f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xf8, 0x1f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xf8, 0x1f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xf8, 0x1f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xf0, 0xf, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xf0, 0xf, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0xf, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0xf, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0x7, 0xff, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xe0, 0x7, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xe0, 0x7, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xe0, 0x7, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xe0, 0x7, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xe0, 0x3, 0xff, 0x80, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x3, 0xff, 0x80, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x3, 0xff, 0x80, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x3, 0xff, 0x80, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0x80, 0x1, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0x80, 0x1, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0x80, 0x1, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0x80, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0xff, 0xe0, 0x0, 0x0, 0x7, 0xff, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x0, 0x7, 0xff, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x0, 0x7, 0xff, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x1, 0xff, 0xe0, 0xf, 0xff, 0x80, 0x0, 0x0, 0x0, 0xff, 0xf0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf8, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x3f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xfc, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x7f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x7f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, /* U+0042 "B" */ 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xfc, 0x0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x3, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0x83, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8f, 0xff, 0x0, 0x0, 0x1f, 0xff, 0xe3, 0xff, 0xc0, 0x0, 0x1, 0xff, 0xf8, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xff, 0x3f, 0xfc, 0x0, 0x0, 0x7, 0xff, 0xcf, 0xff, 0x0, 0x0, 0x0, 0xff, 0xf3, 0xff, 0xc0, 0x0, 0x0, 0x3f, 0xfc, 0xff, 0xf0, 0x0, 0x0, 0x7, 0xff, 0xbf, 0xfc, 0x0, 0x0, 0x1, 0xff, 0xef, 0xff, 0x0, 0x0, 0x0, 0x7f, 0xfb, 0xff, 0xc0, 0x0, 0x0, 0x1f, 0xfe, 0xff, 0xf0, 0x0, 0x0, 0x7, 0xff, 0xbf, 0xfc, 0x0, 0x0, 0x1, 0xff, 0xef, 0xff, 0x0, 0x0, 0x0, 0x7f, 0xfb, 0xff, 0xc0, 0x0, 0x0, 0x1f, 0xfe, 0xff, 0xf0, 0x0, 0x0, 0x7, 0xff, 0xbf, 0xfc, 0x0, 0x0, 0x1, 0xff, 0xef, 0xff, 0x0, 0x0, 0x0, 0x7f, 0xfb, 0xff, 0xc0, 0x0, 0x0, 0x1f, 0xfe, 0xff, 0xf0, 0x0, 0x0, 0x7, 0xff, 0xbf, 0xfc, 0x0, 0x0, 0x1, 0xff, 0xef, 0xff, 0x0, 0x0, 0x0, 0x7f, 0xfb, 0xff, 0xc0, 0x0, 0x0, 0x1f, 0xfe, 0xff, 0xf0, 0x0, 0x0, 0x7, 0xff, 0xbf, 0xfc, 0x0, 0x0, 0x1, 0xff, 0xef, 0xff, 0x0, 0x0, 0x0, 0x7f, 0xfb, 0xff, 0xc0, 0x0, 0x0, 0x3f, 0xfc, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0x3f, 0xfc, 0x0, 0x0, 0x7, 0xff, 0xcf, 0xff, 0x0, 0x0, 0x1, 0xff, 0xe3, 0xff, 0xc0, 0x0, 0x0, 0xff, 0xf8, 0xff, 0xf0, 0x0, 0x0, 0xff, 0xfe, 0x3f, 0xfc, 0x0, 0x0, 0xff, 0xff, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0x83, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xf0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x3, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0xff, 0xf0, 0x0, 0x1, 0xff, 0xfe, 0x3f, 0xfc, 0x0, 0x0, 0xf, 0xff, 0xcf, 0xff, 0x0, 0x0, 0x1, 0xff, 0xf3, 0xff, 0xc0, 0x0, 0x0, 0x3f, 0xfe, 0xff, 0xf0, 0x0, 0x0, 0x7, 0xff, 0xbf, 0xfc, 0x0, 0x0, 0x1, 0xff, 0xef, 0xff, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x1f, 0xfe, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xbf, 0xfc, 0x0, 0x0, 0x7, 0xff, 0xef, 0xff, 0x0, 0x0, 0x3, 0xff, 0xfb, 0xff, 0xc0, 0x0, 0x3, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xf, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x3, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x0, /* U+0043 "C" */ 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x7f, 0xff, 0xff, 0xfc, 0x0, 0x3f, 0xff, 0xff, 0xff, 0x80, 0x1f, 0xff, 0xff, 0xff, 0xf0, 0xf, 0xff, 0xff, 0xff, 0xfe, 0x3, 0xff, 0xff, 0xff, 0xff, 0xc0, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xf, 0xff, 0xff, 0xff, 0xff, 0xe1, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x7f, 0xff, 0xc0, 0x0, 0x0, 0x1f, 0xff, 0xe0, 0x0, 0x0, 0x3, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x7f, 0xfc, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x0, 0x3, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x7f, 0xfe, 0x0, 0x0, 0x0, 0xf, 0xff, 0xe0, 0x0, 0x0, 0x0, 0xff, 0xff, 0x80, 0x0, 0x0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xe1, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x1f, 0xff, 0xff, 0xff, 0xff, 0x81, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x1f, 0xff, 0xff, 0xff, 0xfe, 0x1, 0xff, 0xff, 0xff, 0xff, 0xc0, 0xf, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x7f, 0xff, 0xff, 0xff, 0x0, 0x3, 0xff, 0xff, 0xff, 0xe0, 0x0, 0x7, 0xff, 0xff, 0xfc, /* U+0044 "D" */ 0xff, 0xff, 0xff, 0xff, 0x80, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0x0, 0x3, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xe0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe3, 0xff, 0xc0, 0x0, 0x3, 0xff, 0xfe, 0x7f, 0xf8, 0x0, 0x0, 0xf, 0xff, 0xcf, 0xff, 0x0, 0x0, 0x0, 0xff, 0xfd, 0xff, 0xe0, 0x0, 0x0, 0xf, 0xff, 0xbf, 0xfc, 0x0, 0x0, 0x0, 0xff, 0xf7, 0xff, 0x80, 0x0, 0x0, 0x1f, 0xfe, 0xff, 0xf0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0xf, 0xff, 0x7f, 0xf8, 0x0, 0x0, 0x1, 0xff, 0xef, 0xff, 0x0, 0x0, 0x0, 0x7f, 0xfd, 0xff, 0xe0, 0x0, 0x0, 0x1f, 0xff, 0xbf, 0xfc, 0x0, 0x0, 0x7, 0xff, 0xf7, 0xff, 0x80, 0x0, 0x3, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x9f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x7, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x0, /* U+0045 "E" */ 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xf8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8f, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xf8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8f, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xf8, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, /* U+0046 "F" */ 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8f, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xf8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8f, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xf8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8f, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, /* U+0047 "G" */ 0x0, 0x0, 0x1f, 0xff, 0xff, 0xf0, 0x0, 0x3, 0xff, 0xff, 0xff, 0xf0, 0x0, 0xf, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xf0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x1, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x3, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xf0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x1f, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0x80, 0x0, 0x0, 0x0, 0x3f, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0x7f, 0xf8, 0x0, 0x0, 0xf, 0xff, 0x7f, 0xf8, 0x0, 0x0, 0xf, 0xff, 0x7f, 0xfc, 0x0, 0x0, 0xf, 0xff, 0x3f, 0xfe, 0x0, 0x0, 0xf, 0xff, 0x3f, 0xff, 0x0, 0x0, 0xf, 0xff, 0x3f, 0xff, 0x80, 0x0, 0xf, 0xff, 0x1f, 0xff, 0xf0, 0x0, 0xf, 0xff, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0x3, 0xff, 0xff, 0xff, 0xff, 0xff, 0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0x0, 0xf, 0xff, 0xff, 0xff, 0xff, 0x0, 0x3, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xff, /* U+0048 "H" */ 0xff, 0xf0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x3, 0xff, 0xc0, /* U+0049 "I" */ 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, /* U+004A "J" */ 0x3, 0xff, 0xff, 0xff, 0xfe, 0x7, 0xff, 0xff, 0xff, 0xfc, 0xf, 0xff, 0xff, 0xff, 0xf8, 0x1f, 0xff, 0xff, 0xff, 0xf0, 0x3f, 0xff, 0xff, 0xff, 0xe0, 0x7f, 0xff, 0xff, 0xff, 0xc0, 0xff, 0xff, 0xff, 0xff, 0x81, 0xff, 0xff, 0xff, 0xff, 0x3, 0xff, 0xff, 0xff, 0xfe, 0x7, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x3, 0xff, 0xe0, 0x0, 0x0, 0xf, 0xff, 0x80, 0x0, 0x0, 0x3f, 0xff, 0x0, 0x0, 0x0, 0xff, 0xfe, 0x0, 0x0, 0xf, 0xff, 0xf8, 0xff, 0xff, 0xff, 0xff, 0xe1, 0xff, 0xff, 0xff, 0xff, 0xc3, 0xff, 0xff, 0xff, 0xff, 0x7, 0xff, 0xff, 0xff, 0xfc, 0xf, 0xff, 0xff, 0xff, 0xf0, 0x1f, 0xff, 0xff, 0xff, 0xc0, 0x3f, 0xff, 0xff, 0xfe, 0x0, 0x7f, 0xff, 0xff, 0xf0, 0x0, 0xff, 0xff, 0xff, 0x80, 0x1, 0xff, 0xff, 0xf0, 0x0, 0x0, /* U+004B "K" */ 0xff, 0xf0, 0x0, 0x0, 0x3, 0xff, 0xe7, 0xff, 0x80, 0x0, 0x0, 0x3f, 0xfe, 0x3f, 0xfc, 0x0, 0x0, 0x3, 0xff, 0xf1, 0xff, 0xe0, 0x0, 0x0, 0x1f, 0xff, 0xf, 0xff, 0x0, 0x0, 0x1, 0xff, 0xf0, 0x7f, 0xf8, 0x0, 0x0, 0xf, 0xff, 0x83, 0xff, 0xc0, 0x0, 0x0, 0xff, 0xf8, 0x1f, 0xfe, 0x0, 0x0, 0xf, 0xff, 0xc0, 0xff, 0xf0, 0x0, 0x0, 0x7f, 0xfc, 0x7, 0xff, 0x80, 0x0, 0x7, 0xff, 0xc0, 0x3f, 0xfc, 0x0, 0x0, 0x7f, 0xfe, 0x1, 0xff, 0xe0, 0x0, 0x3, 0xff, 0xe0, 0xf, 0xff, 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x7f, 0xf8, 0x0, 0x1, 0xff, 0xf0, 0x3, 0xff, 0xc0, 0x0, 0x1f, 0xff, 0x0, 0x1f, 0xfe, 0x0, 0x1, 0xff, 0xf8, 0x0, 0xff, 0xf0, 0x0, 0xf, 0xff, 0x80, 0x7, 0xff, 0x80, 0x0, 0xff, 0xf8, 0x0, 0x3f, 0xfc, 0x0, 0x7, 0xff, 0xc0, 0x1, 0xff, 0xe0, 0x0, 0x7f, 0xfc, 0x0, 0xf, 0xff, 0x0, 0x7, 0xff, 0xc0, 0x0, 0x7f, 0xf8, 0x0, 0x3f, 0xfe, 0x0, 0x3, 0xff, 0xc0, 0x3, 0xff, 0xe0, 0x0, 0x1f, 0xfe, 0x0, 0x3f, 0xff, 0x0, 0x0, 0xff, 0xf0, 0x1, 0xff, 0xf0, 0x0, 0x7, 0xff, 0x80, 0x1f, 0xff, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0xff, 0xf8, 0x0, 0x1, 0xff, 0xe0, 0xf, 0xff, 0x80, 0x0, 0xf, 0xff, 0x0, 0xff, 0xfc, 0x0, 0x0, 0x7f, 0xf8, 0x7, 0xff, 0xc0, 0x0, 0x3, 0xff, 0xc0, 0x7f, 0xfc, 0x0, 0x0, 0x1f, 0xfe, 0x3, 0xff, 0xe0, 0x0, 0x0, 0xff, 0xf0, 0x3f, 0xfe, 0x0, 0x0, 0x7, 0xff, 0x83, 0xff, 0xe0, 0x0, 0x0, 0x3f, 0xfc, 0x1f, 0xff, 0x0, 0x0, 0x1, 0xff, 0xe1, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xf, 0xff, 0x80, 0x0, 0x0, 0x7f, 0xf8, 0xff, 0xf8, 0x0, 0x0, 0x3, 0xff, 0xcf, 0xff, 0x80, 0x0, 0x0, 0x1f, 0xfe, 0x7f, 0xfc, 0x0, 0x0, 0x0, 0xff, 0xf7, 0xff, 0xc0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xff, 0x80, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x1, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x3, 0xff, 0xfc, 0xff, 0xf8, 0x0, 0x0, 0x1f, 0xff, 0xe7, 0xff, 0xc0, 0x0, 0x0, 0xff, 0xfe, 0x1f, 0xff, 0x0, 0x0, 0x7, 0xff, 0xf0, 0xff, 0xf8, 0x0, 0x0, 0x3f, 0xff, 0x7, 0xff, 0xe0, 0x0, 0x1, 0xff, 0xf0, 0x1f, 0xff, 0x0, 0x0, 0xf, 0xff, 0x80, 0xff, 0xfc, 0x0, 0x0, 0x7f, 0xf8, 0x3, 0xff, 0xe0, 0x0, 0x3, 0xff, 0xc0, 0x1f, 0xff, 0x80, 0x0, 0x1f, 0xfe, 0x0, 0x7f, 0xfc, 0x0, 0x0, 0xff, 0xf0, 0x3, 0xff, 0xf0, 0x0, 0x7, 0xff, 0x80, 0xf, 0xff, 0x80, 0x0, 0x3f, 0xfc, 0x0, 0x7f, 0xfe, 0x0, 0x1, 0xff, 0xe0, 0x1, 0xff, 0xf0, 0x0, 0xf, 0xff, 0x0, 0xf, 0xff, 0xc0, 0x0, 0x7f, 0xf8, 0x0, 0x3f, 0xfe, 0x0, 0x3, 0xff, 0xc0, 0x1, 0xff, 0xf8, 0x0, 0x1f, 0xfe, 0x0, 0x7, 0xff, 0xc0, 0x0, 0xff, 0xf0, 0x0, 0x3f, 0xff, 0x0, 0x7, 0xff, 0x80, 0x0, 0xff, 0xf8, 0x0, 0x3f, 0xfc, 0x0, 0x7, 0xff, 0xe0, 0x1, 0xff, 0xe0, 0x0, 0x1f, 0xff, 0x0, 0xf, 0xff, 0x0, 0x0, 0xff, 0xfc, 0x0, 0x7f, 0xf8, 0x0, 0x3, 0xff, 0xe0, 0x3, 0xff, 0xc0, 0x0, 0x1f, 0xff, 0x80, 0x1f, 0xfe, 0x0, 0x0, 0x7f, 0xfc, 0x0, 0xff, 0xf0, 0x0, 0x3, 0xff, 0xf0, 0x7, 0xff, 0x80, 0x0, 0xf, 0xff, 0x80, 0x3f, 0xfc, 0x0, 0x0, 0x7f, 0xfe, 0x1, 0xff, 0xe0, 0x0, 0x1, 0xff, 0xf0, 0xf, 0xff, 0x0, 0x0, 0xf, 0xff, 0xc0, 0x7f, 0xf8, 0x0, 0x0, 0x3f, 0xfe, 0x3, 0xff, 0xc0, 0x0, 0x1, 0xff, 0xf8, 0x1f, 0xfe, 0x0, 0x0, 0x7, 0xff, 0xc0, 0xff, 0xf0, 0x0, 0x0, 0x3f, 0xff, 0x7, 0xff, 0x80, 0x0, 0x0, 0xff, 0xf8, 0x3f, 0xfc, 0x0, 0x0, 0x7, 0xff, 0xe1, 0xff, 0xe0, 0x0, 0x0, 0x1f, 0xff, 0xf, 0xff, 0x0, 0x0, 0x0, 0xff, 0xfc, 0x7f, 0xf8, 0x0, 0x0, 0x3, 0xff, 0xe3, 0xff, 0xc0, 0x0, 0x0, 0x1f, 0xff, 0x9f, 0xfe, 0x0, 0x0, 0x0, 0x7f, 0xfc, 0xff, 0xf0, 0x0, 0x0, 0x3, 0xff, 0xf7, 0xff, 0x80, 0x0, 0x0, 0xf, 0xff, 0x80, /* U+004C "L" */ 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, /* U+004D "M" */ 0xff, 0xff, 0xf0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x3, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x7, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xe0, 0x0, 0x3, 0xff, 0x7f, 0xff, 0xff, 0x7f, 0xf0, 0x0, 0x1, 0xff, 0xbf, 0xff, 0xff, 0xbf, 0xf8, 0x0, 0x0, 0xff, 0xdf, 0xff, 0xff, 0xdf, 0xfe, 0x0, 0x0, 0xff, 0xef, 0xff, 0xff, 0xe7, 0xff, 0x0, 0x0, 0x7f, 0xe7, 0xff, 0xff, 0xf3, 0xff, 0x80, 0x0, 0x3f, 0xf3, 0xff, 0xff, 0xf9, 0xff, 0xc0, 0x0, 0x1f, 0xf9, 0xff, 0xff, 0xfc, 0x7f, 0xf0, 0x0, 0x1f, 0xf8, 0xff, 0xff, 0xfe, 0x3f, 0xf8, 0x0, 0xf, 0xfc, 0x7f, 0xff, 0xff, 0x1f, 0xfc, 0x0, 0x7, 0xfe, 0x3f, 0xff, 0xff, 0x8f, 0xfe, 0x0, 0x7, 0xff, 0x1f, 0xff, 0xff, 0xc3, 0xff, 0x80, 0x3, 0xff, 0xf, 0xff, 0xff, 0xe1, 0xff, 0xc0, 0x1, 0xff, 0x87, 0xff, 0xff, 0xf0, 0xff, 0xe0, 0x0, 0xff, 0xc3, 0xff, 0xff, 0xf8, 0x3f, 0xf0, 0x0, 0xff, 0xe1, 0xff, 0xff, 0xfc, 0x1f, 0xfc, 0x0, 0x7f, 0xe0, 0xff, 0xff, 0xfe, 0xf, 0xfe, 0x0, 0x3f, 0xf0, 0x7f, 0xff, 0xff, 0x7, 0xff, 0x0, 0x1f, 0xf8, 0x3f, 0xff, 0xff, 0x81, 0xff, 0x80, 0x1f, 0xf8, 0x1f, 0xff, 0xff, 0xc0, 0xff, 0xe0, 0xf, 0xfc, 0xf, 0xff, 0xff, 0xe0, 0x7f, 0xf0, 0x7, 0xfe, 0x7, 0xff, 0xff, 0xf0, 0x3f, 0xf8, 0x3, 0xff, 0x3, 0xff, 0xff, 0xf8, 0xf, 0xfc, 0x3, 0xff, 0x1, 0xff, 0xff, 0xfc, 0x7, 0xff, 0x1, 0xff, 0x80, 0xff, 0xff, 0xfe, 0x3, 0xff, 0x80, 0xff, 0xc0, 0x7f, 0xff, 0xff, 0x0, 0xff, 0xc0, 0x7f, 0xc0, 0x3f, 0xff, 0xff, 0x80, 0x7f, 0xf0, 0x7f, 0xe0, 0x1f, 0xff, 0xff, 0xc0, 0x3f, 0xf8, 0x3f, 0xf0, 0xf, 0xff, 0xff, 0xe0, 0x1f, 0xfc, 0x1f, 0xf8, 0x7, 0xff, 0xff, 0xf0, 0x7, 0xfe, 0xf, 0xf8, 0x3, 0xff, 0xff, 0xf8, 0x3, 0xff, 0x8f, 0xfc, 0x1, 0xff, 0xff, 0xfc, 0x1, 0xff, 0xc7, 0xfe, 0x0, 0xff, 0xff, 0xfe, 0x0, 0xff, 0xe3, 0xff, 0x0, 0x7f, 0xff, 0xff, 0x0, 0x3f, 0xf1, 0xff, 0x0, 0x3f, 0xff, 0xff, 0x80, 0x1f, 0xfd, 0xff, 0x80, 0x1f, 0xff, 0xff, 0xc0, 0xf, 0xfe, 0xff, 0xc0, 0xf, 0xff, 0xff, 0xe0, 0x3, 0xff, 0x7f, 0xc0, 0x7, 0xff, 0xff, 0xf0, 0x1, 0xff, 0xbf, 0xe0, 0x3, 0xff, 0xff, 0xf8, 0x0, 0xff, 0xff, 0xf0, 0x1, 0xff, 0xff, 0xfc, 0x0, 0x7f, 0xff, 0xf8, 0x0, 0xff, 0xff, 0xfe, 0x0, 0x1f, 0xff, 0xf8, 0x0, 0x7f, 0xff, 0xff, 0x0, 0xf, 0xff, 0xfc, 0x0, 0x3f, 0xff, 0xff, 0x80, 0x7, 0xff, 0xfe, 0x0, 0x1f, 0xff, 0xff, 0xc0, 0x3, 0xff, 0xff, 0x0, 0xf, 0xff, 0xff, 0xe0, 0x0, 0xff, 0xff, 0x0, 0x7, 0xff, 0xff, 0xf0, 0x0, 0x7f, 0xff, 0x80, 0x3, 0xff, 0xff, 0xf8, 0x0, 0x3f, 0xff, 0xc0, 0x1, 0xff, 0xff, 0xfc, 0x0, 0xf, 0xff, 0xc0, 0x0, 0xff, 0xff, 0xfe, 0x0, 0x7, 0xff, 0xe0, 0x0, 0x7f, 0xff, 0xff, 0x0, 0x3, 0xff, 0xf0, 0x0, 0x3f, 0xff, 0xff, 0x80, 0x1, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xc0, 0x0, 0x7f, 0xf8, 0x0, 0xf, 0xff, 0xff, 0xe0, 0x0, 0x3f, 0xfc, 0x0, 0x7, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, /* U+004E "N" */ 0xff, 0xff, 0xf0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x3, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0x80, 0x0, 0x7, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x1, 0xff, 0xff, 0xff, 0xff, 0x80, 0x0, 0xf, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xe0, 0x0, 0x3, 0xff, 0xff, 0xff, 0xff, 0x80, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x0, 0x7, 0xff, 0xff, 0xfb, 0xff, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xdf, 0xfc, 0x0, 0x1, 0xff, 0xff, 0xfe, 0xff, 0xe0, 0x0, 0xf, 0xff, 0xff, 0xf7, 0xff, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x9f, 0xf8, 0x0, 0x3, 0xff, 0xff, 0xfc, 0xff, 0xe0, 0x0, 0x1f, 0xff, 0xff, 0xe7, 0xff, 0x0, 0x0, 0xff, 0xff, 0xff, 0x3f, 0xf8, 0x0, 0x7, 0xff, 0xff, 0xf8, 0xff, 0xc0, 0x0, 0x3f, 0xff, 0xff, 0xc7, 0xff, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x3f, 0xf8, 0x0, 0xf, 0xff, 0xff, 0xf1, 0xff, 0xc0, 0x0, 0x7f, 0xff, 0xff, 0x87, 0xfe, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x3f, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xe1, 0xff, 0xc0, 0x0, 0xff, 0xff, 0xff, 0xf, 0xfe, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x3f, 0xf0, 0x0, 0x3f, 0xff, 0xff, 0xc1, 0xff, 0x80, 0x1, 0xff, 0xff, 0xfe, 0xf, 0xfe, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x7f, 0xf0, 0x0, 0x7f, 0xff, 0xff, 0x83, 0xff, 0x80, 0x3, 0xff, 0xff, 0xfc, 0xf, 0xfc, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x7f, 0xf0, 0x0, 0xff, 0xff, 0xff, 0x3, 0xff, 0x80, 0x7, 0xff, 0xff, 0xf8, 0x1f, 0xfc, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x7f, 0xe0, 0x1, 0xff, 0xff, 0xfe, 0x3, 0xff, 0x80, 0xf, 0xff, 0xff, 0xf0, 0x1f, 0xfc, 0x0, 0x7f, 0xff, 0xff, 0x80, 0xff, 0xe0, 0x3, 0xff, 0xff, 0xfc, 0x3, 0xff, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x1f, 0xfc, 0x0, 0xff, 0xff, 0xff, 0x0, 0xff, 0xe0, 0x7, 0xff, 0xff, 0xf8, 0x7, 0xff, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x1f, 0xf8, 0x1, 0xff, 0xff, 0xfe, 0x0, 0xff, 0xc0, 0xf, 0xff, 0xff, 0xf0, 0x7, 0xff, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x3f, 0xf8, 0x3, 0xff, 0xff, 0xfc, 0x1, 0xff, 0xc0, 0x1f, 0xff, 0xff, 0xe0, 0x7, 0xfe, 0x0, 0xff, 0xff, 0xff, 0x0, 0x3f, 0xf8, 0x7, 0xff, 0xff, 0xf8, 0x1, 0xff, 0xc0, 0x3f, 0xff, 0xff, 0xc0, 0xf, 0xfe, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x3f, 0xf0, 0xf, 0xff, 0xff, 0xf0, 0x1, 0xff, 0xc0, 0x7f, 0xff, 0xff, 0x80, 0xf, 0xfe, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x7f, 0xf0, 0x1f, 0xff, 0xff, 0xe0, 0x1, 0xff, 0x80, 0xff, 0xff, 0xff, 0x0, 0xf, 0xfe, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x7f, 0xf0, 0x3f, 0xff, 0xff, 0xc0, 0x3, 0xff, 0x81, 0xff, 0xff, 0xfe, 0x0, 0xf, 0xfc, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x7f, 0xf0, 0x7f, 0xff, 0xff, 0x80, 0x3, 0xff, 0x83, 0xff, 0xff, 0xfc, 0x0, 0x1f, 0xfc, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0xff, 0xe0, 0xff, 0xff, 0xff, 0x0, 0x3, 0xff, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xfc, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0xff, 0xe1, 0xff, 0xff, 0xfe, 0x0, 0x7, 0xff, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x1f, 0xf8, 0x7f, 0xff, 0xff, 0x80, 0x0, 0xff, 0xe3, 0xff, 0xff, 0xfc, 0x0, 0x7, 0xff, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x3f, 0xf8, 0xff, 0xff, 0xff, 0x0, 0x0, 0xff, 0xc7, 0xff, 0xff, 0xf8, 0x0, 0x7, 0xff, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x3f, 0xf9, 0xff, 0xff, 0xfe, 0x0, 0x1, 0xff, 0xcf, 0xff, 0xff, 0xf0, 0x0, 0x7, 0xfe, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x3f, 0xfb, 0xff, 0xff, 0xfc, 0x0, 0x1, 0xff, 0xdf, 0xff, 0xff, 0xe0, 0x0, 0xf, 0xfe, 0xff, 0xff, 0xff, 0x0, 0x0, 0x7f, 0xf7, 0xff, 0xff, 0xf8, 0x0, 0x1, 0xff, 0xbf, 0xff, 0xff, 0xc0, 0x0, 0xf, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x3, 0xff, 0xff, 0xff, 0xff, 0x80, 0x0, 0xf, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xe0, 0x0, 0x3, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x3, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0x80, 0x0, 0x3, 0xff, 0xff, 0xc0, /* U+004F "O" */ 0x0, 0x0, 0x1f, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xff, 0x80, 0x0, 0x1, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x7f, 0xff, 0xc0, 0x0, 0x7f, 0xff, 0xc1, 0xff, 0xfc, 0x0, 0x0, 0x1f, 0xff, 0xc3, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xff, 0x87, 0xff, 0xc0, 0x0, 0x0, 0x1f, 0xff, 0x1f, 0xff, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x3f, 0xfd, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x3f, 0xfb, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1f, 0xfc, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x7f, 0xf9, 0xff, 0xe0, 0x0, 0x0, 0x0, 0xff, 0xf3, 0xff, 0xe0, 0x0, 0x0, 0x3, 0xff, 0xe3, 0xff, 0xe0, 0x0, 0x0, 0xf, 0xff, 0x87, 0xff, 0xe0, 0x0, 0x0, 0x3f, 0xff, 0xf, 0xff, 0xe0, 0x0, 0x0, 0xff, 0xfe, 0xf, 0xff, 0xf8, 0x0, 0xf, 0xff, 0xf8, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x0, 0xf, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x7, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xe0, 0x0, 0x0, /* U+0050 "P" */ 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0x80, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xe0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0x3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x3f, 0xfc, 0x0, 0x0, 0x7f, 0xff, 0x9f, 0xfe, 0x0, 0x0, 0xf, 0xff, 0xcf, 0xff, 0x0, 0x0, 0x1, 0xff, 0xf7, 0xff, 0x80, 0x0, 0x0, 0xff, 0xfb, 0xff, 0xc0, 0x0, 0x0, 0x3f, 0xfd, 0xff, 0xe0, 0x0, 0x0, 0x1f, 0xfe, 0xff, 0xf0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xff, 0xf7, 0xff, 0x80, 0x0, 0x0, 0x7f, 0xfb, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xfd, 0xff, 0xe0, 0x0, 0x0, 0x7f, 0xfe, 0xff, 0xf0, 0x0, 0x0, 0x7f, 0xfe, 0x7f, 0xf8, 0x0, 0x0, 0xff, 0xff, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x87, 0xff, 0xff, 0xff, 0xff, 0xff, 0x83, 0xff, 0xff, 0xff, 0xff, 0xff, 0x81, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xe0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, /* U+0051 "Q" */ 0x0, 0x0, 0x1f, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x1, 0xff, 0xff, 0x0, 0x1, 0xff, 0xff, 0x0, 0xf, 0xff, 0xe0, 0x0, 0x0, 0xff, 0xfe, 0x0, 0x3f, 0xff, 0x0, 0x0, 0x1, 0xff, 0xf8, 0x0, 0xff, 0xf8, 0x0, 0x0, 0x3, 0xff, 0xe0, 0x7, 0xff, 0xc0, 0x0, 0x0, 0x7, 0xff, 0xc0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0xf, 0xff, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0xf, 0xff, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0xf, 0xff, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0xf, 0xff, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0xf, 0xff, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0xf, 0xff, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0xf, 0xff, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0xf, 0xff, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0xf, 0xff, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0xf, 0xff, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0xf, 0xff, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0xf, 0xff, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0xf, 0xff, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0xf, 0xff, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0xf, 0xff, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x1f, 0xff, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x0, 0x7f, 0xfc, 0x0, 0xff, 0xfc, 0x0, 0x0, 0x7, 0xff, 0xe0, 0x3, 0xff, 0xf8, 0x0, 0x0, 0x3f, 0xff, 0x80, 0x7, 0xff, 0xfc, 0x0, 0x7, 0xff, 0xfc, 0x0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x3, 0xff, 0xff, 0xff, 0xfb, 0xff, 0xf8, 0x0, 0x3, 0xff, 0xff, 0xff, 0x87, 0xff, 0xf0, 0x0, 0x0, 0x7f, 0xff, 0xe0, 0xf, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x18, 0x0, /* U+0052 "R" */ 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, 0xff, 0xf0, 0x0, 0x1, 0xff, 0xfe, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x7f, 0xfe, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xff, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xff, 0x0, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0x0, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x7, 0xff, 0x80, 0xff, 0xf0, 0x0, 0x0, 0x7, 0xff, 0x80, 0xff, 0xf0, 0x0, 0x0, 0x7, 0xff, 0x80, 0xff, 0xf0, 0x0, 0x0, 0x7, 0xff, 0x80, 0xff, 0xf0, 0x0, 0x0, 0x7, 0xff, 0x80, 0xff, 0xf0, 0x0, 0x0, 0x7, 0xff, 0x80, 0xff, 0xf0, 0x0, 0x0, 0x7, 0xff, 0x80, 0xff, 0xf0, 0x0, 0x0, 0x7, 0xff, 0x80, 0xff, 0xf0, 0x0, 0x0, 0x7, 0xff, 0x80, 0xff, 0xf0, 0x0, 0x0, 0x7, 0xff, 0x80, 0xff, 0xf0, 0x0, 0x0, 0x7, 0xff, 0x80, 0xff, 0xf0, 0x0, 0x0, 0x7, 0xff, 0x80, 0xff, 0xf0, 0x0, 0x0, 0x7, 0xff, 0x80, 0xff, 0xf0, 0x0, 0x0, 0x7, 0xff, 0x80, 0xff, 0xf0, 0x0, 0x0, 0x7, 0xff, 0x80, 0xff, 0xf0, 0x0, 0x0, 0x7, 0xff, 0x80, 0xff, 0xf0, 0x0, 0x0, 0x7, 0xff, 0x80, 0xff, 0xf0, 0x0, 0x0, 0x7, 0xff, 0x80, 0xff, 0xf0, 0x0, 0x0, 0x7, 0xff, 0x80, 0xff, 0xf0, 0x0, 0x0, 0x7, 0xff, 0x80, 0xff, 0xf0, 0x0, 0x0, 0x7, 0xff, 0x80, 0xff, 0xf0, 0x0, 0x0, 0x7, 0xff, 0x80, 0xff, 0xf0, 0x0, 0x0, 0x7, 0xff, 0x80, 0xff, 0xf0, 0x0, 0x0, 0x7, 0xff, 0x80, 0xff, 0xf0, 0x0, 0x0, 0x7, 0xff, 0x80, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0x0, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xff, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xff, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x7f, 0xfe, 0x0, 0xff, 0xf0, 0x0, 0x1, 0xff, 0xfe, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x7f, 0xfc, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x7f, 0xfc, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x1f, 0xff, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x1f, 0xff, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x1f, 0xff, 0x0, 0x0, 0xff, 0xf0, 0x0, 0xf, 0xff, 0x80, 0x0, 0xff, 0xf0, 0x0, 0xf, 0xff, 0x80, 0x0, 0xff, 0xf0, 0x0, 0x7, 0xff, 0xc0, 0x0, 0xff, 0xf0, 0x0, 0x7, 0xff, 0xc0, 0x0, 0xff, 0xf0, 0x0, 0x3, 0xff, 0xe0, 0x0, 0xff, 0xf0, 0x0, 0x3, 0xff, 0xe0, 0x0, 0xff, 0xf0, 0x0, 0x1, 0xff, 0xf0, 0x0, 0xff, 0xf0, 0x0, 0x1, 0xff, 0xf0, 0x0, 0xff, 0xf0, 0x0, 0x1, 0xff, 0xf8, 0x0, 0xff, 0xf0, 0x0, 0x0, 0xff, 0xf8, 0x0, 0xff, 0xf0, 0x0, 0x0, 0xff, 0xf8, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x7f, 0xfc, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x7f, 0xfc, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x3f, 0xfe, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x3f, 0xfe, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x3f, 0xff, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xff, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xff, 0x80, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0x80, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0x80, 0xff, 0xf0, 0x0, 0x0, 0x7, 0xff, 0xc0, 0xff, 0xf0, 0x0, 0x0, 0x7, 0xff, 0xc0, 0xff, 0xf0, 0x0, 0x0, 0x3, 0xff, 0xe0, 0xff, 0xf0, 0x0, 0x0, 0x3, 0xff, 0xe0, 0xff, 0xf0, 0x0, 0x0, 0x3, 0xff, 0xf0, 0xff, 0xf0, 0x0, 0x0, 0x1, 0xff, 0xf0, 0xff, 0xf0, 0x0, 0x0, 0x1, 0xff, 0xf8, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xf8, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xf8, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x7f, 0xfc, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x7f, 0xfc, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3f, 0xfe, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3f, 0xfe, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3f, 0xff, /* U+0053 "S" */ 0x0, 0x0, 0x1f, 0xff, 0xff, 0xf0, 0x0, 0xf, 0xff, 0xff, 0xff, 0xc0, 0x0, 0xff, 0xff, 0xff, 0xff, 0x0, 0xf, 0xff, 0xff, 0xff, 0xfc, 0x0, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0x1, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xf, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xc1, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0x0, 0x0, 0x0, 0x1, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x7, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x1, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x80, 0x0, 0x0, 0x0, 0x3f, 0xff, 0x80, 0x0, 0x0, 0x0, 0x7f, 0xff, 0x80, 0x0, 0x0, 0x1, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x3, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x7, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xe0, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0x80, 0x0, 0x7f, 0xff, 0xff, 0xff, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x7, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x3, 0xff, 0x80, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x0, 0x1, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xf8, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xe0, 0xff, 0xff, 0xff, 0xff, 0xff, 0x3, 0xff, 0xff, 0xff, 0xff, 0xf8, 0xf, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x3f, 0xff, 0xff, 0xff, 0xfe, 0x0, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x3, 0xff, 0xff, 0xff, 0xff, 0x0, 0xf, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x3f, 0xff, 0xff, 0xff, 0x0, 0x0, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x0, /* U+0054 "T" */ 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, /* U+0055 "U" */ 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xe7, 0xff, 0x80, 0x0, 0x0, 0x1f, 0xfe, 0x7f, 0xf8, 0x0, 0x0, 0x1, 0xff, 0xe7, 0xff, 0xc0, 0x0, 0x0, 0x3f, 0xfe, 0x3f, 0xfe, 0x0, 0x0, 0x7, 0xff, 0xc3, 0xff, 0xf0, 0x0, 0x0, 0xff, 0xfc, 0x3f, 0xff, 0x80, 0x0, 0x1f, 0xff, 0xc1, 0xff, 0xff, 0x0, 0xf, 0xff, 0xf8, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x1, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x0, 0xf, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x3, 0xff, 0xf8, 0x0, 0x0, /* U+0056 "V" */ 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0xf, 0xff, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0xf, 0xff, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x7f, 0xfc, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x3f, 0xf8, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0xf, 0xff, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0xf, 0xff, 0x0, 0x0, 0x0, 0xff, 0xf0, 0xf, 0xff, 0x0, 0x0, 0x0, 0xff, 0xf0, 0xf, 0xff, 0x0, 0x0, 0x0, 0xff, 0xf0, 0xf, 0xff, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x7, 0xff, 0x0, 0x0, 0x0, 0xff, 0xe0, 0x7, 0xff, 0x80, 0x0, 0x1, 0xff, 0xe0, 0x7, 0xff, 0x80, 0x0, 0x1, 0xff, 0xe0, 0x7, 0xff, 0x80, 0x0, 0x1, 0xff, 0xe0, 0x7, 0xff, 0x80, 0x0, 0x1, 0xff, 0xe0, 0x7, 0xff, 0x80, 0x0, 0x1, 0xff, 0xc0, 0x3, 0xff, 0xc0, 0x0, 0x1, 0xff, 0xc0, 0x3, 0xff, 0xc0, 0x0, 0x3, 0xff, 0xc0, 0x3, 0xff, 0xc0, 0x0, 0x3, 0xff, 0xc0, 0x3, 0xff, 0xc0, 0x0, 0x3, 0xff, 0x80, 0x3, 0xff, 0xc0, 0x0, 0x3, 0xff, 0x80, 0x1, 0xff, 0xc0, 0x0, 0x3, 0xff, 0x80, 0x1, 0xff, 0xe0, 0x0, 0x7, 0xff, 0x80, 0x1, 0xff, 0xe0, 0x0, 0x7, 0xff, 0x80, 0x1, 0xff, 0xe0, 0x0, 0x7, 0xff, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x7, 0xff, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x7, 0xff, 0x0, 0x0, 0xff, 0xf0, 0x0, 0xf, 0xff, 0x0, 0x0, 0xff, 0xf0, 0x0, 0xf, 0xff, 0x0, 0x0, 0xff, 0xf0, 0x0, 0xf, 0xfe, 0x0, 0x0, 0xff, 0xf0, 0x0, 0xf, 0xfe, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0xf, 0xfe, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0xf, 0xfe, 0x0, 0xff, 0xe0, 0x0, 0x0, 0xf, 0xfe, 0x0, 0xff, 0xe0, 0x0, 0x0, 0xf, 0xff, 0x0, 0xff, 0xe0, 0x0, 0x0, 0x7, 0xff, 0x0, 0xff, 0xe0, 0x0, 0x0, 0x7, 0xff, 0x0, 0xff, 0xe0, 0x0, 0x0, 0x7, 0xff, 0x1, 0xff, 0xc0, 0x0, 0x0, 0x7, 0xff, 0x1, 0xff, 0xc0, 0x0, 0x0, 0x7, 0xff, 0x81, 0xff, 0xc0, 0x0, 0x0, 0x7, 0xff, 0x81, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0x81, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0x83, 0xff, 0x80, 0x0, 0x0, 0x3, 0xff, 0x83, 0xff, 0x80, 0x0, 0x0, 0x3, 0xff, 0x83, 0xff, 0x80, 0x0, 0x0, 0x3, 0xff, 0xc3, 0xff, 0x80, 0x0, 0x0, 0x1, 0xff, 0xc3, 0xff, 0x0, 0x0, 0x0, 0x1, 0xff, 0xc7, 0xff, 0x0, 0x0, 0x0, 0x1, 0xff, 0xc7, 0xff, 0x0, 0x0, 0x0, 0x1, 0xff, 0xc7, 0xff, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe7, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xe7, 0xfe, 0x0, 0x0, 0x0, 0x0, 0xff, 0xef, 0xfe, 0x0, 0x0, 0x0, 0x0, 0xff, 0xef, 0xfe, 0x0, 0x0, 0x0, 0x0, 0xff, 0xef, 0xfe, 0x0, 0x0, 0x0, 0x0, 0xff, 0xef, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xf0, 0x0, 0x0, /* U+0057 "W" */ 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0x7f, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xdf, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xf7, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xfd, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0x7f, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xdf, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xf7, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xfd, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x7f, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xdf, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf7, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfd, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x7f, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0x9f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xe7, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xf9, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xfe, 0x7f, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0x9f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xe7, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xf9, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xfe, 0x7f, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0x8f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xe3, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xf8, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xfe, 0x3f, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0x8f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xe3, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xf8, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xfe, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0x8f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xe3, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xf8, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xfe, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xf, 0xfe, 0x0, 0x3, 0xff, 0x80, 0x0, 0xff, 0xc3, 0xff, 0x80, 0x1, 0xff, 0xe0, 0x0, 0x3f, 0xf0, 0xff, 0xe0, 0x0, 0x7f, 0xfc, 0x0, 0xf, 0xfc, 0x3f, 0xf8, 0x0, 0x1f, 0xff, 0x0, 0x3, 0xff, 0xf, 0xfe, 0x0, 0x7, 0xff, 0xc0, 0x0, 0xff, 0xc3, 0xff, 0x80, 0x3, 0xff, 0xf8, 0x0, 0x3f, 0xf0, 0xff, 0xe0, 0x0, 0xff, 0xfe, 0x0, 0xf, 0xfc, 0x3f, 0xf8, 0x0, 0x3f, 0xff, 0x80, 0x3, 0xff, 0xf, 0xfe, 0x0, 0xf, 0xff, 0xe0, 0x0, 0xff, 0xc1, 0xff, 0x80, 0x7, 0xff, 0xfc, 0x0, 0x3f, 0xf0, 0x7f, 0xe0, 0x1, 0xff, 0xff, 0x0, 0xf, 0xfc, 0x1f, 0xf8, 0x0, 0x7f, 0xff, 0xc0, 0x3, 0xff, 0x7, 0xfe, 0x0, 0x1f, 0xff, 0xf0, 0x0, 0xff, 0xc1, 0xff, 0x80, 0xf, 0xff, 0xfe, 0x0, 0x3f, 0xf0, 0x7f, 0xe0, 0x3, 0xff, 0xff, 0x80, 0xf, 0xfc, 0x1f, 0xf8, 0x0, 0xff, 0xbf, 0xe0, 0x3, 0xff, 0x7, 0xff, 0x0, 0x3f, 0xef, 0xf8, 0x1, 0xff, 0xc1, 0xff, 0xc0, 0x1f, 0xfb, 0xff, 0x0, 0x7f, 0xf0, 0x7f, 0xf0, 0x7, 0xfc, 0xff, 0xc0, 0x1f, 0xfc, 0x1f, 0xfc, 0x1, 0xff, 0x3f, 0xf0, 0x7, 0xff, 0x7, 0xff, 0x0, 0xff, 0xc7, 0xfc, 0x1, 0xff, 0x81, 0xff, 0xc0, 0x3f, 0xf1, 0xff, 0x80, 0x7f, 0xe0, 0x7f, 0xf0, 0xf, 0xf8, 0x7f, 0xe0, 0x1f, 0xf8, 0x1f, 0xfc, 0x3, 0xfe, 0x1f, 0xf8, 0x7, 0xfe, 0x7, 0xff, 0x1, 0xff, 0x87, 0xfe, 0x1, 0xff, 0x81, 0xff, 0xc0, 0x7f, 0xe0, 0xff, 0xc0, 0x7f, 0xe0, 0x7f, 0xf0, 0x1f, 0xf0, 0x3f, 0xf0, 0x1f, 0xf8, 0x1f, 0xfc, 0x7, 0xfc, 0xf, 0xfc, 0x7, 0xfe, 0x7, 0xff, 0x3, 0xff, 0x3, 0xff, 0x1, 0xff, 0x80, 0xff, 0xc0, 0xff, 0xc0, 0x7f, 0xe0, 0x7f, 0xe0, 0x3f, 0xf0, 0x3f, 0xe0, 0x1f, 0xf8, 0x1f, 0xf8, 0xf, 0xfc, 0xf, 0xf8, 0x7, 0xfe, 0x7, 0xfe, 0x3, 0xff, 0x7, 0xfe, 0x1, 0xff, 0xc1, 0xff, 0x80, 0xff, 0xc1, 0xff, 0x80, 0x7f, 0xf0, 0x7f, 0xe0, 0x3f, 0xf0, 0x7f, 0xc0, 0xf, 0xfc, 0x1f, 0xf8, 0xf, 0xfc, 0x1f, 0xf0, 0x3, 0xff, 0x7, 0xfe, 0x3, 0xff, 0xf, 0xfc, 0x0, 0xff, 0xe3, 0xff, 0x80, 0xff, 0xe3, 0xff, 0x0, 0x3f, 0xf8, 0xff, 0xe0, 0x3f, 0xf8, 0xff, 0xc0, 0x7, 0xfe, 0x3f, 0xf8, 0xf, 0xfe, 0x3f, 0xe0, 0x1, 0xff, 0x8f, 0xfe, 0x3, 0xff, 0x9f, 0xf8, 0x0, 0x7f, 0xf3, 0xff, 0x80, 0xff, 0xe7, 0xfe, 0x0, 0x1f, 0xfc, 0xff, 0xc0, 0x3f, 0xf9, 0xff, 0x80, 0x7, 0xff, 0x3f, 0xf0, 0xf, 0xfe, 0x7f, 0xc0, 0x0, 0xff, 0xcf, 0xfc, 0x3, 0xff, 0xbf, 0xf0, 0x0, 0x3f, 0xfb, 0xff, 0x0, 0xff, 0xef, 0xfc, 0x0, 0xf, 0xfe, 0xff, 0xc0, 0x3f, 0xfb, 0xff, 0x0, 0x3, 0xff, 0xbf, 0xf0, 0xf, 0xfe, 0xff, 0x80, 0x0, 0x7f, 0xef, 0xfc, 0x3, 0xff, 0xff, 0xe0, 0x0, 0x1f, 0xff, 0xff, 0x0, 0xff, 0xff, 0xf8, 0x0, 0x7, 0xff, 0xff, 0xc0, 0x1f, 0xff, 0xfe, 0x0, 0x1, 0xff, 0xff, 0xf0, 0x7, 0xff, 0xff, 0x0, 0x0, 0x7f, 0xff, 0xfc, 0x1, 0xff, 0xff, 0xc0, 0x0, 0xf, 0xff, 0xff, 0x0, 0x7f, 0xff, 0xf0, 0x0, 0x3, 0xff, 0xff, 0xc0, 0x1f, 0xff, 0xfc, 0x0, 0x0, 0xff, 0xff, 0xf0, 0x7, 0xff, 0xfe, 0x0, 0x0, 0x3f, 0xff, 0xfc, 0x1, 0xff, 0xff, 0x80, 0x0, 0x7, 0xff, 0xff, 0x0, /* U+0058 "X" */ 0x3f, 0xff, 0x0, 0x0, 0x0, 0x7, 0xff, 0xc1, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xf8, 0x1f, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0x80, 0xff, 0xf8, 0x0, 0x0, 0x0, 0xff, 0xf8, 0xf, 0xff, 0x80, 0x0, 0x0, 0x1f, 0xff, 0x0, 0x7f, 0xfc, 0x0, 0x0, 0x1, 0xff, 0xf0, 0x7, 0xff, 0xc0, 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x7f, 0xfe, 0x0, 0x0, 0x3, 0xff, 0xe0, 0x3, 0xff, 0xe0, 0x0, 0x0, 0x7f, 0xfc, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x7, 0xff, 0xc0, 0x1, 0xff, 0xf0, 0x0, 0x0, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0x0, 0x0, 0xf, 0xff, 0x80, 0x0, 0xff, 0xf8, 0x0, 0x0, 0xff, 0xf0, 0x0, 0xf, 0xff, 0x80, 0x0, 0x1f, 0xff, 0x0, 0x0, 0x7f, 0xfc, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x7, 0xff, 0xc0, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x3, 0xff, 0xe0, 0x0, 0x7f, 0xfc, 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x7, 0xff, 0x80, 0x0, 0x1, 0xff, 0xf0, 0x0, 0xff, 0xf8, 0x0, 0x0, 0x1f, 0xff, 0x0, 0xf, 0xff, 0x80, 0x0, 0x0, 0xff, 0xf8, 0x1, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0x80, 0x1f, 0xff, 0x0, 0x0, 0x0, 0x7f, 0xfc, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x7, 0xff, 0xc0, 0x3f, 0xfe, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xe0, 0x7f, 0xfc, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x7, 0xff, 0x80, 0x0, 0x0, 0x1, 0xff, 0xf0, 0xff, 0xf8, 0x0, 0x0, 0x0, 0xf, 0xff, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf9, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x9f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf9, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xbf, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf9, 0xff, 0xe0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x9f, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xf, 0xff, 0x80, 0x0, 0x0, 0x1, 0xff, 0xe0, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x7, 0xff, 0x80, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x7f, 0xfc, 0x0, 0x0, 0x0, 0x7f, 0xfc, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x3f, 0xfe, 0x0, 0x0, 0x0, 0xff, 0xf8, 0x1, 0xff, 0xe0, 0x0, 0x0, 0xf, 0xff, 0x80, 0x1f, 0xff, 0x0, 0x0, 0x1, 0xff, 0xf0, 0x1, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xff, 0x0, 0xf, 0xff, 0x80, 0x0, 0x3, 0xff, 0xe0, 0x0, 0xff, 0xf8, 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x7, 0xff, 0xc0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x7f, 0xfc, 0x0, 0x0, 0x7f, 0xfc, 0x0, 0x3, 0xff, 0xe0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0xff, 0xf8, 0x0, 0x3, 0xff, 0xe0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x1f, 0xff, 0x0, 0x1, 0xff, 0xf0, 0x0, 0x1, 0xff, 0xf0, 0x0, 0x1f, 0xff, 0x0, 0x0, 0xf, 0xff, 0x80, 0x3, 0xff, 0xe0, 0x0, 0x0, 0xff, 0xf8, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0xf, 0xff, 0xc0, 0x7, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xfc, 0x0, 0x7f, 0xfc, 0x0, 0x0, 0x7, 0xff, 0xe0, 0xf, 0xff, 0x80, 0x0, 0x0, 0x3f, 0xfe, 0x0, 0xff, 0xf8, 0x0, 0x0, 0x3, 0xff, 0xf0, 0x1f, 0xff, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x1, 0xff, 0xf0, 0x0, 0x0, 0x1, 0xff, 0xf8, 0x3f, 0xff, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x83, 0xff, 0xe0, 0x0, 0x0, 0x0, 0xff, 0xf8, 0x3f, 0xfe, 0x0, 0x0, 0x0, 0xf, 0xff, 0xc7, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7f, 0xfc, 0x7f, 0xfc, 0x0, 0x0, 0x0, 0x7, 0xff, 0xef, 0xff, 0x80, 0x0, 0x0, 0x0, 0x3f, 0xfe, /* U+0059 "Y" */ 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfd, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xf7, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x8f, 0xff, 0x80, 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x3f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x7f, 0xfc, 0x0, 0x0, 0x0, 0x7, 0xff, 0xc1, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x3, 0xff, 0xe0, 0x0, 0x0, 0x0, 0xff, 0xf8, 0xf, 0xff, 0x80, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x3f, 0xff, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x0, 0x7f, 0xfc, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x1, 0xff, 0xf0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x3, 0xff, 0xe0, 0x0, 0x0, 0xf, 0xff, 0x0, 0xf, 0xff, 0x80, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x1f, 0xff, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x7f, 0xfc, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0xff, 0xf8, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x3, 0xff, 0xe0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x7, 0xff, 0xc0, 0x0, 0x7, 0xff, 0xc0, 0x0, 0x1f, 0xff, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0xff, 0xf8, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x7, 0xff, 0xc0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0xf, 0xff, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x3f, 0xfe, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x1, 0xff, 0xf0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x7, 0xff, 0x80, 0x0, 0x0, 0xf, 0xff, 0x80, 0x1f, 0xfc, 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x3, 0xff, 0x80, 0x0, 0x0, 0x1, 0xff, 0xf0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x7f, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x83, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0xf, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xfc, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf1, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xe7, 0xff, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xbf, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, /* U+005A "Z" */ 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x80, 0x0, 0x0, 0x0, 0xf, 0xff, 0x80, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x1, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x80, 0x0, 0x0, 0x0, 0xf, 0xff, 0x80, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x1, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x1, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x80, 0x0, 0x0, 0x0, 0xf, 0xff, 0x80, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x1, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x1, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x80, 0x0, 0x0, 0x0, 0xf, 0xff, 0x80, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, /* U+005B "[" */ 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x0, 0x7f, 0xf0, 0x0, 0xf, 0xfe, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x3f, 0xf8, 0x0, 0x7, 0xff, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x1f, 0xfc, 0x0, 0x3, 0xff, 0x80, 0x0, 0x7f, 0xf0, 0x0, 0xf, 0xfe, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x3f, 0xf8, 0x0, 0x7, 0xff, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x1f, 0xfc, 0x0, 0x3, 0xff, 0x80, 0x0, 0x7f, 0xf0, 0x0, 0xf, 0xfe, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x3f, 0xf8, 0x0, 0x7, 0xff, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x1f, 0xfc, 0x0, 0x3, 0xff, 0x80, 0x0, 0x7f, 0xf0, 0x0, 0xf, 0xfe, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x3f, 0xf8, 0x0, 0x7, 0xff, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x1f, 0xfc, 0x0, 0x3, 0xff, 0x80, 0x0, 0x7f, 0xf0, 0x0, 0xf, 0xfe, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x3f, 0xf8, 0x0, 0x7, 0xff, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x1f, 0xfc, 0x0, 0x3, 0xff, 0x80, 0x0, 0x7f, 0xf0, 0x0, 0xf, 0xfe, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x3f, 0xf8, 0x0, 0x7, 0xff, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x1f, 0xfc, 0x0, 0x3, 0xff, 0x80, 0x0, 0x7f, 0xf0, 0x0, 0xf, 0xfe, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x3f, 0xf8, 0x0, 0x7, 0xff, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x1f, 0xfc, 0x0, 0x3, 0xff, 0x80, 0x0, 0x7f, 0xf0, 0x0, 0xf, 0xfe, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x3f, 0xf8, 0x0, 0x7, 0xff, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x1f, 0xfc, 0x0, 0x3, 0xff, 0x80, 0x0, 0x7f, 0xf0, 0x0, 0xf, 0xfe, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x3f, 0xf8, 0x0, 0x7, 0xff, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x1f, 0xfc, 0x0, 0x3, 0xff, 0x80, 0x0, 0x7f, 0xf0, 0x0, 0xf, 0xfe, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x3f, 0xf8, 0x0, 0x7, 0xff, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x1f, 0xfc, 0x0, 0x3, 0xff, 0x80, 0x0, 0x7f, 0xf0, 0x0, 0xf, 0xfe, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x3f, 0xf8, 0x0, 0x7, 0xff, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x1f, 0xfc, 0x0, 0x3, 0xff, 0x80, 0x0, 0x7f, 0xf0, 0x0, 0xf, 0xfe, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x3f, 0xf8, 0x0, 0x7, 0xff, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x1f, 0xfc, 0x0, 0x3, 0xff, 0x80, 0x0, 0x7f, 0xf0, 0x0, 0xf, 0xfe, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x3f, 0xf8, 0x0, 0x7, 0xff, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x1f, 0xfc, 0x0, 0x3, 0xff, 0x80, 0x0, 0x7f, 0xf0, 0x0, 0xf, 0xfe, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x3f, 0xf8, 0x0, 0x7, 0xff, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, /* U+005C "\\" */ 0xff, 0xe0, 0x0, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x0, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0x80, 0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x3, 0xff, 0x80, 0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x0, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x3, 0xff, 0x80, 0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x0, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x3, 0xff, 0x80, 0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x3, 0xff, 0x80, 0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x0, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x0, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0x80, 0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x3, 0xff, 0x80, 0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x0, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x3, 0xff, 0x80, 0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x0, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x3, 0xff, 0x80, 0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x3, 0xff, 0x80, 0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x0, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x0, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x3, 0xff, 0x80, 0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x3, 0xff, 0x80, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x0, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0x80, 0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x3, 0xff, 0x80, 0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x0, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf0, /* U+005D "]" */ 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x3, 0xff, 0x80, 0x0, 0x7f, 0xf0, 0x0, 0xf, 0xfe, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x3f, 0xf8, 0x0, 0x7, 0xff, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x1f, 0xfc, 0x0, 0x3, 0xff, 0x80, 0x0, 0x7f, 0xf0, 0x0, 0xf, 0xfe, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x3f, 0xf8, 0x0, 0x7, 0xff, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x1f, 0xfc, 0x0, 0x3, 0xff, 0x80, 0x0, 0x7f, 0xf0, 0x0, 0xf, 0xfe, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x3f, 0xf8, 0x0, 0x7, 0xff, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x1f, 0xfc, 0x0, 0x3, 0xff, 0x80, 0x0, 0x7f, 0xf0, 0x0, 0xf, 0xfe, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x3f, 0xf8, 0x0, 0x7, 0xff, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x1f, 0xfc, 0x0, 0x3, 0xff, 0x80, 0x0, 0x7f, 0xf0, 0x0, 0xf, 0xfe, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x3f, 0xf8, 0x0, 0x7, 0xff, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x1f, 0xfc, 0x0, 0x3, 0xff, 0x80, 0x0, 0x7f, 0xf0, 0x0, 0xf, 0xfe, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x3f, 0xf8, 0x0, 0x7, 0xff, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x1f, 0xfc, 0x0, 0x3, 0xff, 0x80, 0x0, 0x7f, 0xf0, 0x0, 0xf, 0xfe, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x3f, 0xf8, 0x0, 0x7, 0xff, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x1f, 0xfc, 0x0, 0x3, 0xff, 0x80, 0x0, 0x7f, 0xf0, 0x0, 0xf, 0xfe, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x3f, 0xf8, 0x0, 0x7, 0xff, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x1f, 0xfc, 0x0, 0x3, 0xff, 0x80, 0x0, 0x7f, 0xf0, 0x0, 0xf, 0xfe, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x3f, 0xf8, 0x0, 0x7, 0xff, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x1f, 0xfc, 0x0, 0x3, 0xff, 0x80, 0x0, 0x7f, 0xf0, 0x0, 0xf, 0xfe, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x3f, 0xf8, 0x0, 0x7, 0xff, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x1f, 0xfc, 0x0, 0x3, 0xff, 0x80, 0x0, 0x7f, 0xf0, 0x0, 0xf, 0xfe, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x3f, 0xf8, 0x0, 0x7, 0xff, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x1f, 0xfc, 0x0, 0x3, 0xff, 0x80, 0x0, 0x7f, 0xf0, 0x0, 0xf, 0xfe, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x3f, 0xf8, 0x0, 0x7, 0xff, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x1f, 0xfc, 0x0, 0x3, 0xff, 0x80, 0x0, 0x7f, 0xf0, 0x0, 0xf, 0xfe, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x3f, 0xf8, 0x0, 0x7, 0xff, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x1f, 0xfc, 0x0, 0x3, 0xff, 0x80, 0x0, 0x7f, 0xf0, 0x0, 0xf, 0xfe, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x3f, 0xf8, 0x0, 0x7, 0xff, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, /* U+005E "^" */ 0x0, 0x0, 0xf, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf7, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf7, 0xff, 0x80, 0x0, 0x0, 0x0, 0xff, 0xf3, 0xff, 0x80, 0x0, 0x0, 0x1, 0xff, 0xe3, 0xff, 0x80, 0x0, 0x0, 0x1, 0xff, 0xe3, 0xff, 0xc0, 0x0, 0x0, 0x1, 0xff, 0xc1, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc1, 0xff, 0xe0, 0x0, 0x0, 0x3, 0xff, 0x81, 0xff, 0xe0, 0x0, 0x0, 0x7, 0xff, 0x80, 0xff, 0xe0, 0x0, 0x0, 0x7, 0xff, 0x80, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0xf, 0xfe, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0xf, 0xff, 0x0, 0x0, 0xff, 0xf0, 0x0, 0xf, 0xff, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x7, 0xff, 0x80, 0x1, 0xff, 0xe0, 0x0, 0x7, 0xff, 0x80, 0x1, 0xff, 0xe0, 0x0, 0x7, 0xff, 0xc0, 0x3, 0xff, 0xe0, 0x0, 0x3, 0xff, 0xc0, 0x3, 0xff, 0xc0, 0x0, 0x3, 0xff, 0xc0, 0x3, 0xff, 0xc0, 0x0, 0x3, 0xff, 0xe0, 0x7, 0xff, 0x80, 0x0, 0x1, 0xff, 0xe0, 0x7, 0xff, 0x80, 0x0, 0x1, 0xff, 0xf0, 0xf, 0xff, 0x80, 0x0, 0x0, 0xff, 0xf0, 0xf, 0xff, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x1f, 0xff, 0x0, 0x0, 0x0, 0xff, 0xf8, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x7f, 0xfc, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x7f, 0xfc, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x7f, 0xfc, 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x1f, 0xff, /* U+005F "_" */ 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, /* U+0060 "`" */ 0x7f, 0xff, 0x0, 0x0, 0xff, 0xfe, 0x0, 0x1, 0xff, 0xf8, 0x0, 0x3, 0xff, 0xf0, 0x0, 0xf, 0xff, 0xe0, 0x0, 0x1f, 0xff, 0xc0, 0x0, 0x3f, 0xff, 0x80, 0x0, 0x7f, 0xfe, 0x0, 0x0, 0xff, 0xfc, 0x0, 0x1, 0xff, 0xf8, 0x0, 0x3, 0xff, 0xf0, 0x0, 0x7, 0xff, 0xc0, 0x0, 0xf, 0xff, 0x80, 0x0, 0x1f, 0xff, 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x3, 0xff, 0xc0, /* U+0061 "a" */ 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xff, 0x80, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0x80, 0x0, 0x3, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0xf, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x3, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0x80, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x1, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x7, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0xff, 0xfe, 0x0, 0x0, 0x7f, 0xf8, 0x7, 0xff, 0xe0, 0x0, 0x1, 0xff, 0xe0, 0x1f, 0xff, 0x0, 0x0, 0x7, 0xff, 0x80, 0x7f, 0xf8, 0x0, 0x0, 0x1f, 0xfe, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x7f, 0xf8, 0xf, 0xff, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x3f, 0xfc, 0x0, 0x0, 0x7, 0xff, 0x80, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xfe, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xf8, 0xf, 0xff, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x3f, 0xfc, 0x0, 0x0, 0x7, 0xff, 0x80, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xfe, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xf8, 0xf, 0xff, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x3f, 0xfc, 0x0, 0x0, 0x7, 0xff, 0x80, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xfe, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xf8, 0xf, 0xff, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x3f, 0xfc, 0x0, 0x0, 0x7, 0xff, 0x80, 0xff, 0xf8, 0x0, 0x0, 0x3f, 0xfe, 0x1, 0xff, 0xe0, 0x0, 0x0, 0xff, 0xf8, 0x7, 0xff, 0xc0, 0x0, 0x7, 0xff, 0xf0, 0x1f, 0xff, 0xc0, 0x0, 0x3f, 0xff, 0xf0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x3f, 0xff, 0xff, 0xff, 0xdf, 0xff, 0xc0, 0x7f, 0xff, 0xff, 0xfe, 0x3f, 0xff, 0x0, 0x3f, 0xff, 0xff, 0xf0, 0x3f, 0xfc, 0x0, 0x1f, 0xff, 0xfe, 0x0, 0x3f, 0xf0, /* U+0062 "b" */ 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x7f, 0xfe, 0x0, 0x0, 0xff, 0xf3, 0xff, 0xff, 0xf0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0xff, 0xff, 0x80, 0x3, 0xff, 0xfc, 0xff, 0xfe, 0x0, 0x0, 0xff, 0xfc, 0xff, 0xfc, 0x0, 0x0, 0x7f, 0xfe, 0xff, 0xf8, 0x0, 0x0, 0x3f, 0xfe, 0xff, 0xf8, 0x0, 0x0, 0x1f, 0xfe, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xfe, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xfe, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xfe, 0xff, 0xf0, 0x0, 0x0, 0x3f, 0xfe, 0xff, 0xf0, 0x0, 0x0, 0x7f, 0xfe, 0xff, 0xf0, 0x0, 0x0, 0xff, 0xfc, 0xff, 0xf0, 0x0, 0x3, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x0, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x0, /* U+0063 "c" */ 0x0, 0x0, 0x7f, 0xff, 0xfe, 0x0, 0xf, 0xff, 0xff, 0xfc, 0x0, 0xff, 0xff, 0xff, 0xf8, 0x7, 0xff, 0xff, 0xff, 0xf0, 0x1f, 0xff, 0xff, 0xff, 0xe0, 0x7f, 0xff, 0xff, 0xff, 0xc1, 0xff, 0xff, 0xff, 0xff, 0x87, 0xff, 0xff, 0xff, 0xff, 0x1f, 0xff, 0xff, 0xff, 0xfe, 0x3f, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0x0, 0x0, 0x1, 0xff, 0xf8, 0x0, 0x0, 0x7, 0xff, 0xe0, 0x0, 0x0, 0xf, 0xff, 0x80, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x7f, 0xfc, 0x0, 0x0, 0x0, 0xff, 0xfc, 0x0, 0x0, 0x0, 0xff, 0xfc, 0x0, 0x0, 0x1, 0xff, 0xfe, 0x0, 0x0, 0x1, 0xff, 0xff, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xff, 0xff, 0xc3, 0xff, 0xff, 0xff, 0xff, 0x83, 0xff, 0xff, 0xff, 0xff, 0x7, 0xff, 0xff, 0xff, 0xfe, 0x3, 0xff, 0xff, 0xff, 0xfc, 0x3, 0xff, 0xff, 0xff, 0xf8, 0x1, 0xff, 0xff, 0xff, 0xf0, 0x0, 0xff, 0xff, 0xff, 0xe0, 0x0, 0xf, 0xff, 0xff, 0xc0, /* U+0064 "d" */ 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x7, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xfc, 0x0, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0x81, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0x0, 0x0, 0x1f, 0xfe, 0x7f, 0xfe, 0x0, 0x0, 0xf, 0xff, 0x7f, 0xfe, 0x0, 0x0, 0x7, 0xff, 0xbf, 0xfe, 0x0, 0x0, 0x3, 0xff, 0xdf, 0xfe, 0x0, 0x0, 0x1, 0xff, 0xef, 0xff, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x3, 0xff, 0xdf, 0xfe, 0x0, 0x0, 0x1, 0xff, 0xef, 0xff, 0x0, 0x0, 0x1, 0xff, 0xf7, 0xff, 0xc0, 0x0, 0x0, 0xff, 0xfb, 0xff, 0xf0, 0x0, 0x0, 0xff, 0xfc, 0xff, 0xfc, 0x0, 0x0, 0xff, 0xfe, 0x7f, 0xff, 0x80, 0x3, 0xff, 0xff, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xf8, 0xf, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x3, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x7f, 0xff, 0xff, 0xf7, 0xff, 0x0, 0xf, 0xff, 0xff, 0xe3, 0xff, 0x80, 0x0, 0x3f, 0xff, 0x1, 0xff, 0xc0, /* U+0065 "e" */ 0x0, 0x0, 0xff, 0xff, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x1, 0xff, 0xff, 0xff, 0xf0, 0x0, 0xf, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xf8, 0x0, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x3, 0xff, 0xff, 0xff, 0xff, 0xf8, 0xf, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xf0, 0xff, 0xfe, 0x0, 0x1f, 0xff, 0xe3, 0xff, 0xf0, 0x0, 0xf, 0xff, 0xc7, 0xff, 0xc0, 0x0, 0x7, 0xff, 0xcf, 0xff, 0x0, 0x0, 0xf, 0xff, 0x9f, 0xfe, 0x0, 0x0, 0xf, 0xff, 0x7f, 0xfc, 0x0, 0x0, 0x1f, 0xfe, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x3, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x3, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x3, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x3, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x3, 0xff, 0xff, 0xff, 0xff, 0x80, 0x3, 0xff, 0xff, 0xff, 0xff, 0x0, 0x1, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xfc, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf8, 0x0, /* U+0066 "f" */ 0x0, 0x0, 0xf, 0xff, 0xff, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x0, 0x1, 0xff, 0xff, 0xff, 0x0, 0x3, 0xff, 0xff, 0xff, 0x0, 0x7, 0xff, 0xff, 0xff, 0x0, 0xf, 0xff, 0xff, 0xff, 0x0, 0x1f, 0xff, 0xff, 0xff, 0x0, 0x1f, 0xff, 0xff, 0xff, 0x0, 0x3f, 0xff, 0xff, 0xff, 0x0, 0x3f, 0xff, 0xff, 0xff, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x0, 0x7f, 0xfc, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, /* U+0067 "g" */ 0x0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x3, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc3, 0xff, 0xfc, 0x0, 0x0, 0xf, 0xff, 0xf, 0xff, 0xc0, 0x0, 0x0, 0x3f, 0xfc, 0x7f, 0xfe, 0x0, 0x0, 0x0, 0xff, 0xf1, 0xff, 0xf0, 0x0, 0x0, 0x3, 0xff, 0xc7, 0xff, 0x80, 0x0, 0x0, 0xf, 0xff, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xf3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xcf, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xf3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xcf, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xf3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xcf, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xf3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xcf, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x7f, 0xf8, 0x0, 0x0, 0x1, 0xff, 0xe1, 0xff, 0xe0, 0x0, 0x0, 0x7, 0xff, 0x87, 0xff, 0xc0, 0x0, 0x0, 0x3f, 0xfe, 0x1f, 0xff, 0x80, 0x0, 0x1, 0xff, 0xf0, 0x3f, 0xff, 0x0, 0x0, 0xf, 0xff, 0xc0, 0xff, 0xff, 0x0, 0x0, 0xff, 0xff, 0x3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x0, 0x1, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0x7, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x1, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0x80, 0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x80, 0x0, 0x0, 0x0, 0x3, 0xff, 0xfe, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x0, /* U+0068 "h" */ 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x7f, 0xff, 0x0, 0x0, 0xff, 0xf3, 0xff, 0xff, 0xf0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0x80, 0x3, 0xff, 0xfc, 0xff, 0xfe, 0x0, 0x0, 0xff, 0xfc, 0xff, 0xfc, 0x0, 0x0, 0x3f, 0xfe, 0xff, 0xf8, 0x0, 0x0, 0x3f, 0xfe, 0xff, 0xf8, 0x0, 0x0, 0x1f, 0xfe, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xfe, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, /* U+0069 "i" */ 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xbf, 0xfd, 0xff, 0xef, 0xff, 0x7f, 0xfb, 0xff, 0xdf, 0xfe, 0xff, 0xf7, 0xff, 0xbf, 0xfd, 0xff, 0xef, 0xff, 0x7f, 0xfb, 0xff, 0xdf, 0xfe, 0xff, 0xf7, 0xff, 0xbf, 0xfd, 0xff, 0xef, 0xff, 0x7f, 0xfb, 0xff, 0xdf, 0xfe, 0xff, 0xf7, 0xff, 0xbf, 0xfd, 0xff, 0xef, 0xff, 0x7f, 0xfb, 0xff, 0xdf, 0xfe, 0xff, 0xf7, 0xff, 0xbf, 0xfd, 0xff, 0xef, 0xff, 0x7f, 0xfb, 0xff, 0xdf, 0xfe, 0xff, 0xf7, 0xff, 0xbf, 0xfd, 0xff, 0xef, 0xff, 0x7f, 0xfb, 0xff, 0xdf, 0xfe, 0xff, 0xf7, 0xff, 0xbf, 0xfd, 0xff, 0xef, 0xff, 0x7f, 0xfb, 0xff, 0xdf, 0xfe, 0xff, 0xf7, 0xff, 0xbf, 0xfd, 0xff, 0xef, 0xff, 0x7f, 0xfb, 0xff, 0xdf, 0xfe, 0xff, 0xf7, 0xff, 0xbf, 0xfd, 0xff, 0xef, 0xff, 0x7f, 0xfb, 0xff, 0xc0, /* U+006A "j" */ 0x0, 0x0, 0x7f, 0xfc, 0x0, 0x1, 0xff, 0xf0, 0x0, 0x7, 0xff, 0xc0, 0x0, 0x1f, 0xff, 0x0, 0x0, 0x7f, 0xfc, 0x0, 0x1, 0xff, 0xf0, 0x0, 0x7, 0xff, 0xc0, 0x0, 0x1f, 0xff, 0x0, 0x0, 0x7f, 0xfc, 0x0, 0x1, 0xff, 0xf0, 0x0, 0x7, 0xff, 0xc0, 0x0, 0x1f, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x7, 0xff, 0xc0, 0x0, 0x3f, 0xfe, 0xff, 0xff, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xef, 0xff, 0xff, 0xff, 0x3f, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xff, 0xf, 0xff, 0xff, 0xf8, 0x3f, 0xff, 0xff, 0xc0, 0xff, 0xff, 0xfc, 0x3, 0xff, 0xff, 0x80, 0x0, /* U+006B "k" */ 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x7, 0xff, 0xf7, 0xff, 0x80, 0x0, 0x7, 0xff, 0xf3, 0xff, 0xc0, 0x0, 0x7, 0xff, 0xf1, 0xff, 0xe0, 0x0, 0x7, 0xff, 0xf0, 0xff, 0xf0, 0x0, 0x7, 0xff, 0xf0, 0x7f, 0xf8, 0x0, 0x7, 0xff, 0xf0, 0x3f, 0xfc, 0x0, 0x7, 0xff, 0xf0, 0x1f, 0xfe, 0x0, 0x3, 0xff, 0xf0, 0xf, 0xff, 0x0, 0x3, 0xff, 0xf8, 0x7, 0xff, 0x80, 0x3, 0xff, 0xf8, 0x3, 0xff, 0xc0, 0x3, 0xff, 0xf8, 0x1, 0xff, 0xe0, 0x3, 0xff, 0xf8, 0x0, 0xff, 0xf0, 0x3, 0xff, 0xf8, 0x0, 0x7f, 0xf8, 0x3, 0xff, 0xf8, 0x0, 0x3f, 0xfc, 0x3, 0xff, 0xf8, 0x0, 0x1f, 0xfe, 0x1, 0xff, 0xf8, 0x0, 0xf, 0xff, 0x1, 0xff, 0xfc, 0x0, 0x7, 0xff, 0x81, 0xff, 0xfc, 0x0, 0x3, 0xff, 0xc1, 0xff, 0xfc, 0x0, 0x1, 0xff, 0xe1, 0xff, 0xfc, 0x0, 0x0, 0xff, 0xf1, 0xff, 0xfc, 0x0, 0x0, 0x7f, 0xf9, 0xff, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0xff, 0xfc, 0x0, 0x0, 0x1f, 0xfe, 0xff, 0xfc, 0x0, 0x0, 0xf, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x7, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x1, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x80, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xfc, 0x0, 0x0, 0xf, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x7, 0xff, 0xff, 0xff, 0x80, 0x0, 0x3, 0xff, 0xff, 0xff, 0xe0, 0x0, 0x1, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xff, 0xfe, 0x7f, 0xfc, 0x0, 0x0, 0x7f, 0xfe, 0x3f, 0xfe, 0x0, 0x0, 0x3f, 0xfe, 0xf, 0xff, 0x80, 0x0, 0x1f, 0xfe, 0x7, 0xff, 0xc0, 0x0, 0xf, 0xff, 0x1, 0xff, 0xf0, 0x0, 0x7, 0xff, 0x80, 0xff, 0xfc, 0x0, 0x3, 0xff, 0xc0, 0x3f, 0xfe, 0x0, 0x1, 0xff, 0xe0, 0x1f, 0xff, 0x80, 0x0, 0xff, 0xf0, 0x7, 0xff, 0xc0, 0x0, 0x7f, 0xf8, 0x1, 0xff, 0xf0, 0x0, 0x3f, 0xfc, 0x0, 0xff, 0xfc, 0x0, 0x1f, 0xfe, 0x0, 0x3f, 0xfe, 0x0, 0xf, 0xff, 0x0, 0x1f, 0xff, 0x80, 0x7, 0xff, 0x80, 0x7, 0xff, 0xc0, 0x3, 0xff, 0xc0, 0x3, 0xff, 0xf0, 0x1, 0xff, 0xe0, 0x0, 0xff, 0xf8, 0x0, 0xff, 0xf0, 0x0, 0x7f, 0xfe, 0x0, 0x7f, 0xf8, 0x0, 0x1f, 0xff, 0x80, 0x3f, 0xfc, 0x0, 0xf, 0xff, 0xc0, 0x1f, 0xfe, 0x0, 0x3, 0xff, 0xf0, 0xf, 0xff, 0x0, 0x0, 0xff, 0xf8, 0x7, 0xff, 0x80, 0x0, 0x7f, 0xfe, 0x3, 0xff, 0xc0, 0x0, 0x1f, 0xff, 0x1, 0xff, 0xe0, 0x0, 0xf, 0xff, 0xc0, 0xff, 0xf0, 0x0, 0x3, 0xff, 0xf0, 0x7f, 0xf8, 0x0, 0x1, 0xff, 0xf8, 0x3f, 0xfc, 0x0, 0x0, 0x7f, 0xfe, 0x1f, 0xfe, 0x0, 0x0, 0x3f, 0xff, 0xf, 0xff, 0x0, 0x0, 0xf, 0xff, 0xc7, 0xff, 0x80, 0x0, 0x3, 0xff, 0xe3, 0xff, 0xc0, 0x0, 0x1, 0xff, 0xf9, 0xff, 0xe0, 0x0, 0x0, 0x7f, 0xfe, 0xff, 0xf0, 0x0, 0x0, 0x3f, 0xff, 0x7f, 0xf8, 0x0, 0x0, 0xf, 0xff, 0xc0, /* U+006C "l" */ 0xff, 0xf0, 0xf, 0xff, 0x0, 0xff, 0xf0, 0xf, 0xff, 0x0, 0xff, 0xf0, 0xf, 0xff, 0x0, 0xff, 0xf0, 0xf, 0xff, 0x0, 0xff, 0xf0, 0xf, 0xff, 0x0, 0xff, 0xf0, 0xf, 0xff, 0x0, 0xff, 0xf0, 0xf, 0xff, 0x0, 0xff, 0xf0, 0xf, 0xff, 0x0, 0xff, 0xf0, 0xf, 0xff, 0x0, 0xff, 0xf0, 0xf, 0xff, 0x0, 0xff, 0xf0, 0xf, 0xff, 0x0, 0xff, 0xf0, 0xf, 0xff, 0x0, 0xff, 0xf0, 0xf, 0xff, 0x0, 0xff, 0xf0, 0xf, 0xff, 0x0, 0xff, 0xf0, 0xf, 0xff, 0x0, 0xff, 0xf0, 0xf, 0xff, 0x0, 0xff, 0xf0, 0xf, 0xff, 0x0, 0xff, 0xf0, 0xf, 0xff, 0x0, 0xff, 0xf0, 0xf, 0xff, 0x0, 0xff, 0xf0, 0xf, 0xff, 0x0, 0xff, 0xf0, 0xf, 0xff, 0x0, 0xff, 0xf0, 0xf, 0xff, 0x0, 0xff, 0xf0, 0xf, 0xff, 0x0, 0xff, 0xf0, 0xf, 0xff, 0x0, 0xff, 0xf0, 0xf, 0xff, 0x0, 0xff, 0xf0, 0xf, 0xff, 0x0, 0xff, 0xf0, 0xf, 0xff, 0x0, 0xff, 0xf0, 0xf, 0xff, 0x0, 0xff, 0xf0, 0xf, 0xff, 0x0, 0xff, 0xf0, 0xf, 0xff, 0x0, 0xff, 0xf0, 0xf, 0xff, 0x0, 0xff, 0xf0, 0xf, 0xff, 0x0, 0xff, 0xf0, 0xf, 0xff, 0x0, 0xff, 0xf0, 0xf, 0xff, 0x0, 0xff, 0xf0, 0xf, 0xff, 0x0, 0xff, 0xf0, 0xf, 0xff, 0x0, 0xff, 0xf0, 0xf, 0xff, 0x0, 0xff, 0xf0, 0xf, 0xff, 0x0, 0xff, 0xf0, 0xf, 0xff, 0x0, 0xff, 0xf0, 0xf, 0xff, 0x0, 0xff, 0xf0, 0xf, 0xff, 0x0, 0xff, 0xf0, 0xf, 0xff, 0x0, 0xff, 0xf0, 0xf, 0xff, 0x0, 0xff, 0xf8, 0xf, 0xff, 0xc0, 0xff, 0xff, 0xf7, 0xff, 0xff, 0x7f, 0xff, 0xf7, 0xff, 0xff, 0x3f, 0xff, 0xf1, 0xff, 0xff, 0x1f, 0xff, 0xf0, 0x7f, 0xff, 0x3, 0xff, 0xf0, 0xf, 0xff, /* U+006D "m" */ 0xff, 0xe0, 0x3f, 0xfc, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x1, 0xff, 0xc7, 0xff, 0xff, 0x80, 0x1, 0xff, 0xff, 0xc0, 0x3, 0xff, 0xbf, 0xff, 0xff, 0xe0, 0xf, 0xff, 0xff, 0xf0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x3f, 0xff, 0xff, 0xf0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf8, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xf7, 0xff, 0xff, 0xff, 0xf8, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf3, 0xff, 0xff, 0x0, 0x3f, 0xff, 0xff, 0x80, 0x1f, 0xff, 0xe7, 0xff, 0xf0, 0x0, 0x1f, 0xff, 0xfe, 0x0, 0xf, 0xff, 0xcf, 0xff, 0xc0, 0x0, 0xf, 0xff, 0xf0, 0x0, 0x7, 0xff, 0xdf, 0xff, 0x0, 0x0, 0x1f, 0xff, 0xe0, 0x0, 0xf, 0xff, 0xbf, 0xfe, 0x0, 0x0, 0x1f, 0xff, 0x80, 0x0, 0xf, 0xff, 0x7f, 0xf8, 0x0, 0x0, 0x3f, 0xff, 0x0, 0x0, 0x1f, 0xfe, 0xff, 0xf0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x3, 0xff, 0xc0, /* U+006E "n" */ 0xff, 0xe0, 0x7f, 0xff, 0x0, 0x0, 0xff, 0xe3, 0xff, 0xff, 0xf0, 0x0, 0xff, 0xef, 0xff, 0xff, 0xfe, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0x80, 0x3, 0xff, 0xfc, 0xff, 0xfe, 0x0, 0x0, 0xff, 0xfc, 0xff, 0xfc, 0x0, 0x0, 0x3f, 0xfe, 0xff, 0xf8, 0x0, 0x0, 0x3f, 0xfe, 0xff, 0xf8, 0x0, 0x0, 0x1f, 0xfe, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xfe, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, /* U+006F "o" */ 0x0, 0x0, 0x7f, 0xff, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xf8, 0x0, 0x0, 0xf, 0xff, 0xff, 0xff, 0x80, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xf, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xf, 0xff, 0xf0, 0x0, 0x7f, 0xff, 0x87, 0xff, 0xe0, 0x0, 0xf, 0xff, 0xc7, 0xff, 0xe0, 0x0, 0x3, 0xff, 0xf3, 0xff, 0xe0, 0x0, 0x0, 0xff, 0xf9, 0xff, 0xe0, 0x0, 0x0, 0x3f, 0xfc, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xfe, 0xff, 0xf0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x3f, 0xfd, 0xff, 0xe0, 0x0, 0x0, 0x3f, 0xfc, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xfe, 0x7f, 0xfc, 0x0, 0x0, 0x1f, 0xff, 0x3f, 0xff, 0x0, 0x0, 0x1f, 0xff, 0x8f, 0xff, 0xc0, 0x0, 0x1f, 0xff, 0x87, 0xff, 0xf8, 0x0, 0x3f, 0xff, 0xc1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xe0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x3, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xe0, 0x0, 0x7, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x80, 0x0, 0x0, 0x3, 0xff, 0xf8, 0x0, 0x0, /* U+0070 "p" */ 0xff, 0xe0, 0x7f, 0xfe, 0x0, 0x0, 0xff, 0xe3, 0xff, 0xff, 0xf0, 0x0, 0xff, 0xef, 0xff, 0xff, 0xfc, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0xff, 0xff, 0x80, 0x3, 0xff, 0xfc, 0xff, 0xfe, 0x0, 0x0, 0xff, 0xfc, 0xff, 0xfc, 0x0, 0x0, 0x7f, 0xfe, 0xff, 0xf8, 0x0, 0x0, 0x3f, 0xfe, 0xff, 0xf8, 0x0, 0x0, 0x1f, 0xfe, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xfe, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xfe, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xfe, 0xff, 0xf0, 0x0, 0x0, 0x3f, 0xfe, 0xff, 0xf0, 0x0, 0x0, 0x7f, 0xfe, 0xff, 0xf0, 0x0, 0x0, 0xff, 0xfc, 0xff, 0xf0, 0x0, 0x3, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x0, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, /* U+0071 "q" */ 0x0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0x80, 0x3, 0xff, 0xff, 0xff, 0xff, 0xc0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xcf, 0xff, 0xf0, 0x0, 0x1, 0xff, 0xe7, 0xff, 0xe0, 0x0, 0x0, 0xff, 0xf7, 0xff, 0xe0, 0x0, 0x0, 0x7f, 0xfb, 0xff, 0xe0, 0x0, 0x0, 0x3f, 0xfd, 0xff, 0xe0, 0x0, 0x0, 0x1f, 0xfe, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x3f, 0xfd, 0xff, 0xe0, 0x0, 0x0, 0x1f, 0xfe, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xff, 0x7f, 0xfc, 0x0, 0x0, 0xf, 0xff, 0xbf, 0xff, 0x0, 0x0, 0xf, 0xff, 0xcf, 0xff, 0xc0, 0x0, 0xf, 0xff, 0xe7, 0xff, 0xf8, 0x0, 0x3f, 0xff, 0xf3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x0, 0xff, 0xff, 0xfe, 0x7f, 0xf8, 0x0, 0x3, 0xff, 0xf0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, /* U+0072 "r" */ 0xff, 0xe0, 0x3f, 0xff, 0xff, 0xf0, 0xff, 0xff, 0xff, 0xf9, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x1f, 0xff, 0xe0, 0x0, 0xf, 0xff, 0xe0, 0x0, 0x7, 0xff, 0xe0, 0x0, 0x3, 0xff, 0xe0, 0x0, 0x1, 0xff, 0xf0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, /* U+0073 "s" */ 0x0, 0x1, 0xff, 0xff, 0xf8, 0x0, 0x3f, 0xff, 0xff, 0xf8, 0x0, 0xff, 0xff, 0xff, 0xf8, 0x3, 0xff, 0xff, 0xff, 0xf8, 0x7, 0xff, 0xff, 0xff, 0xf8, 0xf, 0xff, 0xff, 0xff, 0xf8, 0x1f, 0xff, 0xff, 0xff, 0xf8, 0x3f, 0xff, 0xff, 0xff, 0xf8, 0x3f, 0xff, 0xff, 0xff, 0xf8, 0x7f, 0xff, 0xff, 0xff, 0xf8, 0x7f, 0xff, 0x0, 0x0, 0x0, 0x7f, 0xfc, 0x0, 0x0, 0x0, 0xff, 0xf8, 0x0, 0x0, 0x0, 0xff, 0xf8, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xf8, 0x0, 0x0, 0x0, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x7f, 0xfc, 0x0, 0x0, 0x0, 0x7f, 0xff, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xe0, 0x0, 0x3f, 0xff, 0xff, 0xfc, 0x0, 0x3f, 0xff, 0xff, 0xff, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xc0, 0xf, 0xff, 0xff, 0xff, 0xe0, 0xf, 0xff, 0xff, 0xff, 0xf0, 0x3, 0xff, 0xff, 0xff, 0xf8, 0x1, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x3f, 0xff, 0xff, 0xfc, 0x0, 0x7, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x7f, 0xfe, 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x0, 0xff, 0xfe, 0x7f, 0xff, 0xff, 0xff, 0xfe, 0x7f, 0xff, 0xff, 0xff, 0xfc, 0x7f, 0xff, 0xff, 0xff, 0xfc, 0x7f, 0xff, 0xff, 0xff, 0xf8, 0x7f, 0xff, 0xff, 0xff, 0xf0, 0x7f, 0xff, 0xff, 0xff, 0xe0, 0x7f, 0xff, 0xff, 0xff, 0xc0, 0x7f, 0xff, 0xff, 0xff, 0x0, 0x7f, 0xff, 0xff, 0xf8, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, /* U+0074 "t" */ 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x1f, 0xff, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x3, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xfc, 0x0, 0xff, 0xff, 0xff, 0xe0, 0x3, 0xff, 0xff, 0xff, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x7f, 0xff, 0xff, 0xc0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x7, 0xff, 0xff, 0xf0, 0x0, 0x1f, 0xff, 0xff, 0x80, 0x0, 0x3f, 0xff, 0xfc, 0x0, 0x0, 0x7f, 0xff, 0xe0, /* U+0075 "u" */ 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x3, 0xff, 0xdf, 0xfe, 0x0, 0x0, 0x7, 0xff, 0xbf, 0xfc, 0x0, 0x0, 0x1f, 0xff, 0x7f, 0xfc, 0x0, 0x0, 0x3f, 0xfe, 0xff, 0xf8, 0x0, 0x0, 0xff, 0xfc, 0xff, 0xfc, 0x0, 0x3, 0xff, 0xf9, 0xff, 0xfe, 0x0, 0x3f, 0xff, 0xf3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc3, 0xff, 0xff, 0xff, 0xff, 0xff, 0x87, 0xff, 0xff, 0xff, 0xff, 0xff, 0x7, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x7, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x3, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x1, 0xff, 0xff, 0xff, 0x7f, 0xf0, 0x0, 0xff, 0xff, 0xf8, 0xff, 0xe0, 0x0, 0x1f, 0xff, 0x1, 0xff, 0xc0, /* U+0076 "v" */ 0xff, 0xf8, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x7f, 0xf9, 0xff, 0xe0, 0x0, 0x0, 0x0, 0xff, 0xf3, 0xff, 0xe0, 0x0, 0x0, 0x1, 0xff, 0xe7, 0xff, 0xc0, 0x0, 0x0, 0x7, 0xff, 0xcf, 0xff, 0x80, 0x0, 0x0, 0xf, 0xff, 0xf, 0xff, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x1f, 0xff, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x3f, 0xfe, 0x0, 0x0, 0x0, 0xff, 0xf8, 0x7f, 0xfc, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x7f, 0xf8, 0x0, 0x0, 0x3, 0xff, 0xc0, 0xff, 0xf8, 0x0, 0x0, 0x7, 0xff, 0x81, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xfe, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x3f, 0xfc, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xf8, 0x7, 0xff, 0xc0, 0x0, 0x0, 0xff, 0xf0, 0xf, 0xff, 0x80, 0x0, 0x3, 0xff, 0xc0, 0xf, 0xff, 0x0, 0x0, 0x7, 0xff, 0x80, 0x1f, 0xfe, 0x0, 0x0, 0xf, 0xff, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x7f, 0xfc, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0xff, 0xf0, 0x0, 0xff, 0xf0, 0x0, 0x1, 0xff, 0xe0, 0x1, 0xff, 0xf0, 0x0, 0x3, 0xff, 0x80, 0x1, 0xff, 0xe0, 0x0, 0xf, 0xff, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x1f, 0xfe, 0x0, 0x7, 0xff, 0x80, 0x0, 0x3f, 0xfc, 0x0, 0xf, 0xff, 0x80, 0x0, 0x7f, 0xf0, 0x0, 0xf, 0xff, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x1f, 0xfe, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x3f, 0xfc, 0x0, 0x7, 0xff, 0x80, 0x0, 0x7f, 0xfc, 0x0, 0xf, 0xfe, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x7f, 0xf8, 0x0, 0x1, 0xff, 0xe0, 0x0, 0xff, 0xf0, 0x0, 0x3, 0xff, 0xe0, 0x1, 0xff, 0xc0, 0x0, 0x3, 0xff, 0xc0, 0x3, 0xff, 0x80, 0x0, 0x7, 0xff, 0x80, 0xf, 0xff, 0x0, 0x0, 0xf, 0xff, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0xf, 0xff, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0x3f, 0xfc, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x7f, 0xf8, 0x3, 0xff, 0x80, 0x0, 0x0, 0x7f, 0xf8, 0x7, 0xff, 0x0, 0x0, 0x0, 0xff, 0xf0, 0xf, 0xfe, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x3f, 0xfc, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x7f, 0xf0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0xff, 0xe0, 0x0, 0x0, 0x7, 0xff, 0x81, 0xff, 0xc0, 0x0, 0x0, 0xf, 0xff, 0x7, 0xff, 0x80, 0x0, 0x0, 0xf, 0xfe, 0xf, 0xfe, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x1f, 0xfc, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x7f, 0xf1, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xff, 0xf3, 0xff, 0x80, 0x0, 0x0, 0x1, 0xff, 0xe7, 0xff, 0x0, 0x0, 0x0, 0x3, 0xff, 0xdf, 0xfc, 0x0, 0x0, 0x0, 0x3, 0xff, 0xbf, 0xf8, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xfe, 0x0, 0x0, 0x0, /* U+0077 "w" */ 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0x9f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xe7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf9, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x7f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x9f, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xc3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xf, 0xff, 0x0, 0x0, 0x7, 0xff, 0xc0, 0x0, 0x3, 0xff, 0xc3, 0xff, 0xe0, 0x0, 0x1, 0xff, 0xf0, 0x0, 0x0, 0xff, 0xe0, 0x7f, 0xf8, 0x0, 0x0, 0x7f, 0xfc, 0x0, 0x0, 0x3f, 0xf8, 0x1f, 0xfe, 0x0, 0x0, 0x1f, 0xff, 0x80, 0x0, 0x1f, 0xfe, 0x7, 0xff, 0x80, 0x0, 0xf, 0xff, 0xe0, 0x0, 0x7, 0xff, 0x81, 0xff, 0xe0, 0x0, 0x3, 0xff, 0xf8, 0x0, 0x1, 0xff, 0xe0, 0x7f, 0xfc, 0x0, 0x0, 0xff, 0xfe, 0x0, 0x0, 0x7f, 0xf0, 0xf, 0xff, 0x0, 0x0, 0x3f, 0xff, 0xc0, 0x0, 0x1f, 0xfc, 0x3, 0xff, 0xc0, 0x0, 0x1f, 0xff, 0xf0, 0x0, 0x7, 0xff, 0x0, 0xff, 0xf0, 0x0, 0x7, 0xff, 0xfc, 0x0, 0x3, 0xff, 0xc0, 0x3f, 0xfc, 0x0, 0x1, 0xff, 0xff, 0x0, 0x0, 0xff, 0xf0, 0xf, 0xff, 0x0, 0x0, 0x7f, 0xff, 0xc0, 0x0, 0x3f, 0xf8, 0x1, 0xff, 0xe0, 0x0, 0x3f, 0xff, 0xf8, 0x0, 0xf, 0xfe, 0x0, 0x7f, 0xf8, 0x0, 0xf, 0xff, 0xfe, 0x0, 0x3, 0xff, 0x80, 0x1f, 0xfe, 0x0, 0x3, 0xff, 0xff, 0x80, 0x1, 0xff, 0xe0, 0x7, 0xff, 0x80, 0x0, 0xff, 0xff, 0xe0, 0x0, 0x7f, 0xf8, 0x1, 0xff, 0xe0, 0x0, 0x7f, 0xff, 0xfc, 0x0, 0x1f, 0xfc, 0x0, 0x3f, 0xfc, 0x0, 0x1f, 0xff, 0xff, 0x0, 0x7, 0xff, 0x0, 0xf, 0xff, 0x0, 0x7, 0xff, 0xff, 0xc0, 0x1, 0xff, 0xc0, 0x3, 0xff, 0xc0, 0x1, 0xff, 0xff, 0xf0, 0x0, 0x7f, 0xf0, 0x0, 0xff, 0xf0, 0x0, 0xff, 0xef, 0xfe, 0x0, 0x3f, 0xfc, 0x0, 0x3f, 0xfc, 0x0, 0x3f, 0xfb, 0xff, 0x80, 0xf, 0xfe, 0x0, 0x7, 0xff, 0x80, 0xf, 0xfc, 0xff, 0xe0, 0x3, 0xff, 0x80, 0x1, 0xff, 0xe0, 0x3, 0xff, 0x3f, 0xf8, 0x0, 0xff, 0xe0, 0x0, 0x7f, 0xf8, 0x1, 0xff, 0xcf, 0xff, 0x0, 0x3f, 0xf8, 0x0, 0x1f, 0xfe, 0x0, 0x7f, 0xf1, 0xff, 0xc0, 0x1f, 0xfe, 0x0, 0x7, 0xff, 0x80, 0x1f, 0xf8, 0x7f, 0xf0, 0x7, 0xff, 0x0, 0x0, 0xff, 0xe0, 0x7, 0xfe, 0x1f, 0xfc, 0x1, 0xff, 0xc0, 0x0, 0x3f, 0xfc, 0x3, 0xff, 0x87, 0xff, 0x80, 0x7f, 0xf0, 0x0, 0xf, 0xff, 0x0, 0xff, 0xe0, 0xff, 0xe0, 0x1f, 0xfc, 0x0, 0x3, 0xff, 0xc0, 0x3f, 0xf0, 0x3f, 0xf8, 0xf, 0xff, 0x0, 0x0, 0xff, 0xf0, 0xf, 0xfc, 0xf, 0xfe, 0x3, 0xff, 0x80, 0x0, 0x1f, 0xfc, 0x7, 0xff, 0x3, 0xff, 0xc0, 0xff, 0xe0, 0x0, 0x7, 0xff, 0x81, 0xff, 0xc0, 0x7f, 0xf0, 0x3f, 0xf8, 0x0, 0x1, 0xff, 0xe0, 0x7f, 0xe0, 0x1f, 0xfc, 0xf, 0xfe, 0x0, 0x0, 0x7f, 0xf8, 0x3f, 0xf8, 0x7, 0xff, 0x3, 0xff, 0x80, 0x0, 0x1f, 0xfe, 0xf, 0xfe, 0x1, 0xff, 0xc1, 0xff, 0xc0, 0x0, 0x3, 0xff, 0x83, 0xff, 0x80, 0x7f, 0xf8, 0x7f, 0xf0, 0x0, 0x0, 0xff, 0xe0, 0xff, 0xc0, 0xf, 0xfe, 0x1f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x7f, 0xf0, 0x3, 0xff, 0x87, 0xff, 0x0, 0x0, 0xf, 0xff, 0x1f, 0xfc, 0x0, 0xff, 0xe1, 0xff, 0xc0, 0x0, 0x3, 0xff, 0xc7, 0xfe, 0x0, 0x3f, 0xfc, 0xff, 0xe0, 0x0, 0x0, 0x7f, 0xf1, 0xff, 0x80, 0x7, 0xff, 0x3f, 0xf8, 0x0, 0x0, 0x1f, 0xfc, 0xff, 0xe0, 0x1, 0xff, 0xcf, 0xfe, 0x0, 0x0, 0x7, 0xff, 0xbf, 0xf8, 0x0, 0x7f, 0xf3, 0xff, 0x80, 0x0, 0x1, 0xff, 0xef, 0xfc, 0x0, 0x1f, 0xfe, 0xff, 0xe0, 0x0, 0x0, 0x7f, 0xfb, 0xff, 0x0, 0x3, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xc0, 0x0, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x3, 0xff, 0xff, 0xf0, 0x0, 0x3f, 0xff, 0xff, 0x0, 0x0, 0x0, 0xff, 0xff, 0xf8, 0x0, 0xf, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x3f, 0xff, 0xfe, 0x0, 0x3, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0x80, 0x0, 0x7f, 0xff, 0xf8, 0x0, 0x0, 0x1, 0xff, 0xff, 0xe0, 0x0, 0x1f, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xf0, 0x0, 0x7, 0xff, 0xff, 0x80, 0x0, 0x0, 0x1f, 0xff, 0xfc, 0x0, 0x1, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x7, 0xff, 0xff, 0x0, 0x0, 0x3f, 0xff, 0xf8, 0x0, 0x0, 0x1, 0xff, 0xff, 0xc0, 0x0, 0xf, 0xff, 0xfc, 0x0, 0x0, /* U+0078 "x" */ 0x3f, 0xfe, 0x0, 0x0, 0x1, 0xff, 0xf0, 0xff, 0xfc, 0x0, 0x0, 0xf, 0xff, 0x81, 0xff, 0xf0, 0x0, 0x0, 0x3f, 0xfe, 0x7, 0xff, 0xe0, 0x0, 0x1, 0xff, 0xf0, 0xf, 0xff, 0x80, 0x0, 0x7, 0xff, 0xc0, 0x3f, 0xff, 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x7f, 0xfc, 0x0, 0x0, 0xff, 0xf8, 0x1, 0xff, 0xf8, 0x0, 0x7, 0xff, 0xc0, 0x3, 0xff, 0xe0, 0x0, 0x1f, 0xfe, 0x0, 0xf, 0xff, 0xc0, 0x0, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x3f, 0xfe, 0x0, 0x1f, 0xff, 0x0, 0x0, 0xff, 0xfc, 0x0, 0x7f, 0xf8, 0x0, 0x1, 0xff, 0xf0, 0x3, 0xff, 0xe0, 0x0, 0x7, 0xff, 0xe0, 0xf, 0xff, 0x0, 0x0, 0xf, 0xff, 0x80, 0x7f, 0xf8, 0x0, 0x0, 0x3f, 0xff, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x7f, 0xfc, 0xf, 0xff, 0x0, 0x0, 0x1, 0xff, 0xf8, 0x7f, 0xfc, 0x0, 0x0, 0x3, 0xff, 0xe1, 0xff, 0xe0, 0x0, 0x0, 0x7, 0xff, 0xcf, 0xff, 0x80, 0x0, 0x0, 0x1f, 0xff, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x80, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x80, 0x0, 0x0, 0x3, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x7f, 0xfc, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0xff, 0xf8, 0x0, 0x0, 0x3, 0xff, 0xe1, 0xff, 0xe0, 0x0, 0x0, 0xf, 0xff, 0x7, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xfc, 0xf, 0xff, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x3f, 0xfe, 0x0, 0x0, 0xf, 0xff, 0x80, 0x7f, 0xfc, 0x0, 0x0, 0x7f, 0xfc, 0x1, 0xff, 0xf0, 0x0, 0x1, 0xff, 0xf0, 0x3, 0xff, 0xe0, 0x0, 0xf, 0xff, 0x80, 0xf, 0xff, 0x80, 0x0, 0x3f, 0xfe, 0x0, 0x1f, 0xff, 0x0, 0x1, 0xff, 0xf0, 0x0, 0x7f, 0xfc, 0x0, 0x7, 0xff, 0xc0, 0x0, 0xff, 0xf8, 0x0, 0x3f, 0xfe, 0x0, 0x3, 0xff, 0xf0, 0x1, 0xff, 0xf0, 0x0, 0x7, 0xff, 0xc0, 0x7, 0xff, 0xc0, 0x0, 0x1f, 0xff, 0x80, 0x3f, 0xfe, 0x0, 0x0, 0x3f, 0xfe, 0x0, 0xff, 0xf8, 0x0, 0x0, 0xff, 0xfc, 0x7, 0xff, 0xc0, 0x0, 0x1, 0xff, 0xf0, 0x1f, 0xff, 0x0, 0x0, 0x7, 0xff, 0xe0, 0xff, 0xf8, 0x0, 0x0, 0xf, 0xff, 0xc3, 0xff, 0xe0, 0x0, 0x0, 0x3f, 0xff, 0x1f, 0xff, 0x0, 0x0, 0x0, 0x7f, 0xfe, 0xff, 0xfc, 0x0, 0x0, 0x1, 0xff, 0xfb, 0xff, 0xe0, 0x0, 0x0, 0x3, 0xff, 0xf0, /* U+0079 "y" */ 0xff, 0xf8, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x7f, 0xfb, 0xff, 0xe0, 0x0, 0x0, 0x0, 0xff, 0xf3, 0xff, 0xc0, 0x0, 0x0, 0x1, 0xff, 0xe7, 0xff, 0xc0, 0x0, 0x0, 0x7, 0xff, 0x8f, 0xff, 0x80, 0x0, 0x0, 0xf, 0xff, 0xf, 0xff, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x1f, 0xff, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x3f, 0xfe, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x3f, 0xfc, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x7f, 0xf8, 0x0, 0x0, 0x3, 0xff, 0xc0, 0xff, 0xf8, 0x0, 0x0, 0x7, 0xff, 0x81, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xfe, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x3f, 0xfc, 0x3, 0xff, 0xe0, 0x0, 0x0, 0x7f, 0xf8, 0x7, 0xff, 0xc0, 0x0, 0x0, 0xff, 0xf0, 0x7, 0xff, 0x80, 0x0, 0x1, 0xff, 0xc0, 0xf, 0xff, 0x0, 0x0, 0x7, 0xff, 0x80, 0x1f, 0xff, 0x0, 0x0, 0xf, 0xff, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x7f, 0xfc, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x7f, 0xf8, 0x0, 0x1, 0xff, 0xe0, 0x0, 0xff, 0xf0, 0x0, 0x3, 0xff, 0x80, 0x1, 0xff, 0xe0, 0x0, 0x7, 0xff, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x1f, 0xfe, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x3f, 0xfc, 0x0, 0x7, 0xff, 0x80, 0x0, 0x7f, 0xf0, 0x0, 0xf, 0xff, 0x80, 0x0, 0xff, 0xe0, 0x0, 0xf, 0xff, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x1f, 0xfe, 0x0, 0x7, 0xff, 0x80, 0x0, 0x3f, 0xfc, 0x0, 0xf, 0xfe, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0xff, 0xf0, 0x0, 0xff, 0xe0, 0x0, 0x0, 0xff, 0xe0, 0x1, 0xff, 0xc0, 0x0, 0x1, 0xff, 0xe0, 0x3, 0xff, 0x80, 0x0, 0x3, 0xff, 0xc0, 0x7, 0xff, 0x0, 0x0, 0x3, 0xff, 0x80, 0x1f, 0xfc, 0x0, 0x0, 0x7, 0xff, 0x80, 0x3f, 0xf8, 0x0, 0x0, 0xf, 0xff, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0xff, 0xe0, 0x0, 0x0, 0x1f, 0xfc, 0x3, 0xff, 0x80, 0x0, 0x0, 0x3f, 0xfc, 0x7, 0xff, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0xf, 0xfe, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0x1f, 0xfc, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x7f, 0xf0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0xff, 0xe0, 0x0, 0x0, 0x1, 0xff, 0xc1, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0x83, 0xff, 0x0, 0x0, 0x0, 0x7, 0xff, 0x8f, 0xfe, 0x0, 0x0, 0x0, 0x7, 0xff, 0x1f, 0xfc, 0x0, 0x0, 0x0, 0xf, 0xfe, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x7f, 0xe0, 0x0, 0x0, 0x0, 0x1f, 0xfc, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x3f, 0xfb, 0xff, 0x80, 0x0, 0x0, 0x0, 0x7f, 0xf7, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x30, 0x0, 0x0, 0x0, 0x0, 0x0, /* U+007A "z" */ 0x1f, 0xff, 0xff, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x7f, 0xff, 0xff, 0xff, 0xff, 0x8f, 0xff, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xc7, 0xff, 0xff, 0xff, 0xff, 0xf8, 0xff, 0xff, 0xff, 0xff, 0xff, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0xf, 0xff, 0x80, 0x0, 0x0, 0x1, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x7f, 0xfe, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x80, 0x0, 0x0, 0x3, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x0, 0x0, 0x0, 0x7, 0xff, 0xe0, 0x0, 0x0, 0x1, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x0, 0xf, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x7f, 0xfe, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x80, 0x0, 0x0, 0x3, 0xff, 0xe0, 0x0, 0x0, 0x0, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x3f, 0xff, 0x0, 0x0, 0x0, 0x7, 0xff, 0xc0, 0x0, 0x0, 0x1, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x7f, 0xfe, 0x0, 0x0, 0x0, 0xf, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x7f, 0xfc, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x80, 0x0, 0x0, 0x7, 0xff, 0xe0, 0x0, 0x0, 0x0, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x3f, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xc0, 0x0, 0x0, 0x1, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x7f, 0xfe, 0x0, 0x0, 0x0, 0xf, 0xff, 0x80, 0x0, 0x0, 0x3, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x0, 0x0, 0x0, 0x7, 0xff, 0xe0, 0x0, 0x0, 0x1, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x3f, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xc0, 0x0, 0x0, 0x1, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x7f, 0xfe, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x80, 0x0, 0x0, 0x3, 0xff, 0xe0, 0x0, 0x0, 0x0, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x0, 0x0, 0x0, 0x7, 0xff, 0xe0, 0x0, 0x0, 0x1, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x0, 0xf, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x7f, 0xfc, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xfd, 0xff, 0xff, 0xff, 0xff, 0xff, 0xbf, 0xff, 0xff, 0xff, 0xff, 0xf7, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xff, 0xff, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xef, 0xff, 0xff, 0xff, 0xff, 0xfd, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, /* U+007B "{" */ 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x7f, 0xff, 0x0, 0x1, 0xff, 0xff, 0x0, 0x3, 0xff, 0xff, 0x0, 0x7, 0xff, 0xff, 0x0, 0xf, 0xff, 0xff, 0x0, 0xf, 0xff, 0xff, 0x0, 0x1f, 0xff, 0xff, 0x0, 0x1f, 0xff, 0xff, 0x0, 0x1f, 0xff, 0xff, 0x0, 0x1f, 0xff, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x1, 0xff, 0xf0, 0x0, 0x7, 0xff, 0xe0, 0x0, 0xff, 0xff, 0xe0, 0x0, 0xff, 0xff, 0xc0, 0x0, 0xff, 0xff, 0x80, 0x0, 0xff, 0xff, 0x80, 0x0, 0xff, 0xfe, 0x0, 0x0, 0xff, 0xfc, 0x0, 0x0, 0xff, 0xf8, 0x0, 0x0, 0xff, 0xc0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0xff, 0xfc, 0x0, 0x0, 0xff, 0xff, 0x0, 0x0, 0xff, 0xff, 0x80, 0x0, 0xff, 0xff, 0x80, 0x0, 0xff, 0xff, 0xc0, 0x0, 0xff, 0xff, 0xe0, 0x0, 0x7, 0xff, 0xe0, 0x0, 0x1, 0xff, 0xf0, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x1f, 0xff, 0x0, 0x0, 0x1f, 0xff, 0xff, 0x0, 0x1f, 0xff, 0xff, 0x0, 0x1f, 0xff, 0xff, 0x0, 0xf, 0xff, 0xff, 0x0, 0xf, 0xff, 0xff, 0x0, 0x7, 0xff, 0xff, 0x0, 0x3, 0xff, 0xff, 0x0, 0x1, 0xff, 0xff, 0x0, 0x0, 0x7f, 0xff, 0x0, 0x0, 0xf, 0xff, /* U+007C "|" */ 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, /* U+007D "}" */ 0xff, 0xf0, 0x0, 0x0, 0xff, 0xfe, 0x0, 0x0, 0xff, 0xff, 0x80, 0x0, 0xff, 0xff, 0xc0, 0x0, 0xff, 0xff, 0xe0, 0x0, 0xff, 0xff, 0xf0, 0x0, 0xff, 0xff, 0xf0, 0x0, 0xff, 0xff, 0xf8, 0x0, 0xff, 0xff, 0xf8, 0x0, 0xff, 0xff, 0xf8, 0x0, 0x0, 0xff, 0xf8, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x0, 0xf, 0xff, 0x80, 0x0, 0x7, 0xff, 0xe0, 0x0, 0x7, 0xff, 0xff, 0x0, 0x3, 0xff, 0xff, 0x0, 0x1, 0xff, 0xff, 0x0, 0x1, 0xff, 0xff, 0x0, 0x0, 0xff, 0xff, 0x0, 0x0, 0x3f, 0xff, 0x0, 0x0, 0x1f, 0xff, 0x0, 0x0, 0x3, 0xff, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x3f, 0xff, 0x0, 0x0, 0xff, 0xff, 0x0, 0x1, 0xff, 0xff, 0x0, 0x1, 0xff, 0xff, 0x0, 0x3, 0xff, 0xff, 0x0, 0x7, 0xff, 0xff, 0x0, 0x7, 0xff, 0xe0, 0x0, 0xf, 0xff, 0x80, 0x0, 0xf, 0xfe, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0xff, 0xf8, 0x0, 0xff, 0xff, 0xf8, 0x0, 0xff, 0xff, 0xf8, 0x0, 0xff, 0xff, 0xf8, 0x0, 0xff, 0xff, 0xf0, 0x0, 0xff, 0xff, 0xf0, 0x0, 0xff, 0xff, 0xe0, 0x0, 0xff, 0xff, 0xc0, 0x0, 0xff, 0xff, 0x80, 0x0, 0xff, 0xfe, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, /* U+007E "~" */ 0x0, 0x1f, 0xc0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf8, 0x0, 0x0, 0x3, 0x3, 0xff, 0xff, 0x0, 0x0, 0xf, 0xf, 0xff, 0xff, 0xe0, 0x0, 0x3f, 0x3f, 0xff, 0xff, 0xf8, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0x3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0x80, 0xf, 0xff, 0xff, 0xfe, 0xfe, 0x0, 0x1, 0xff, 0xff, 0xf8, 0xf0, 0x0, 0x0, 0x3f, 0xff, 0xc0, 0xc0, 0x0, 0x0, 0x7, 0xff, 0x0, 0x0, 0x0, 0x0, 0x1, 0xfc, 0x0, /* U+00A0 " " */ 0x0, /* U+00A1 "¡" */ 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe7, 0xff, 0x9f, 0xfe, 0x7f, 0xf9, 0xff, 0xe7, 0xff, 0x9f, 0xfe, 0x7f, 0xf9, 0xff, 0xe7, 0xff, 0x9f, 0xfe, 0x7f, 0xf9, 0xff, 0xe7, 0xff, 0x9f, 0xfe, 0x7f, 0xf9, 0xff, 0xe7, 0xff, 0x9f, 0xfe, 0x7f, 0xf9, 0xff, 0xe7, 0xff, 0x9f, 0xfe, 0x7f, 0xf9, 0xff, 0xe7, 0xff, 0x9f, 0xfe, 0x7f, 0xf9, 0xff, 0xe7, 0xff, 0x9f, 0xfe, 0x7f, 0xf9, 0xff, 0xe7, 0xff, 0x9f, 0xfe, 0x7f, 0xf9, 0xff, 0xe7, 0xff, 0x9f, 0xfe, 0x7f, 0xf9, 0xff, 0xe7, 0xff, 0x9f, 0xfe, 0x7f, 0xf9, 0xff, 0xe7, 0xff, 0x9f, 0xfe, 0x7f, 0xf9, 0xff, 0xe7, 0xff, 0x9f, 0xfe, 0x7f, 0xf9, 0xff, 0xe7, 0xff, 0x9f, 0xfe, 0x7f, 0xf9, 0xff, 0xe7, 0xff, 0x9f, 0xfe, 0x7f, 0xf9, 0xff, 0xe7, 0xff, 0x9f, 0xfe, 0x7f, 0xf9, 0xff, 0xe7, 0xff, 0x9f, 0xfe, 0x7f, 0xf9, 0xff, 0xe0, /* U+00A2 "¢" */ 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0x80, 0x0, 0x0, 0x7, 0xff, 0x0, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0x80, 0x0, 0x0, 0x1f, 0xff, 0xff, 0x80, 0x7, 0xff, 0xff, 0xff, 0x0, 0x3f, 0xff, 0xff, 0xfe, 0x1, 0xff, 0xff, 0xff, 0xfc, 0x7, 0xff, 0xff, 0xff, 0xf8, 0x3f, 0xff, 0xff, 0xff, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xe1, 0xff, 0xff, 0xff, 0xff, 0xc7, 0xff, 0xff, 0xff, 0xff, 0x9f, 0xff, 0xff, 0xff, 0xff, 0x3f, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xfe, 0x0, 0x0, 0x1, 0xff, 0xf8, 0x0, 0x0, 0x3, 0xff, 0xe0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x0, 0x0, 0x0, 0x3f, 0xff, 0x0, 0x0, 0x0, 0x3f, 0xff, 0x0, 0x0, 0x0, 0x7f, 0xff, 0x80, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xf8, 0xff, 0xff, 0xff, 0xff, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xe1, 0xff, 0xff, 0xff, 0xff, 0xc1, 0xff, 0xff, 0xff, 0xff, 0x81, 0xff, 0xff, 0xff, 0xff, 0x0, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x7f, 0xff, 0xff, 0xfc, 0x0, 0x3f, 0xff, 0xff, 0xf8, 0x0, 0x7, 0xff, 0xff, 0xf0, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0x80, 0x0, 0x0, 0x7, 0xff, 0x0, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0x80, 0x0, 0x0, 0x7, 0xff, 0x0, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xe0, 0x0, /* U+00A3 "£" */ 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0x80, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xff, 0x80, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xe0, 0x0, 0xf, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x7, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x3, 0xff, 0xff, 0xff, 0xff, 0x80, 0x1, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x0, 0x7f, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0x80, 0x0, 0x0, 0x0, 0xf, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xc0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x3, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xc0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x3, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, /* U+00A4 "¤" */ 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x70, 0x1, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xc0, 0x1f, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0x1, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xfc, 0x1f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf1, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xdf, 0xff, 0xc0, 0xf, 0xff, 0xfe, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xf, 0xff, 0xff, 0xff, 0x7, 0xff, 0xfb, 0xff, 0xfd, 0xff, 0xff, 0xff, 0xff, 0x7f, 0xff, 0x8f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x3, 0xff, 0xfe, 0x0, 0x0, 0xff, 0xff, 0x80, 0x0, 0x1f, 0xff, 0xc0, 0x0, 0x1, 0xff, 0xf8, 0x0, 0x0, 0xff, 0xfc, 0x0, 0x0, 0x7, 0xff, 0xe0, 0x0, 0x7, 0xff, 0xc0, 0x0, 0x0, 0x1f, 0xff, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x3, 0xff, 0xe0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x7, 0xff, 0xc0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0xff, 0xf8, 0x0, 0x0, 0x3, 0xff, 0xe0, 0x0, 0x7, 0xff, 0xe0, 0x0, 0x0, 0x3f, 0xff, 0x0, 0x0, 0x3f, 0xff, 0x80, 0x0, 0x3, 0xff, 0xf0, 0x0, 0x1, 0xff, 0xff, 0x0, 0x0, 0x7f, 0xff, 0xc0, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xbf, 0xff, 0xdf, 0xff, 0xe1, 0xff, 0xff, 0xff, 0xf0, 0xff, 0xff, 0x7f, 0xfe, 0x0, 0x7f, 0xff, 0xf0, 0x3, 0xff, 0xf1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x7, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xf0, 0x1f, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0x0, 0x7e, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xf0, 0x1, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0x0, 0x6, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x30, 0x0, /* U+00A5 "¥" */ 0xff, 0xf8, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x7f, 0xfc, 0x0, 0x0, 0x0, 0x3, 0xff, 0xe7, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7f, 0xfc, 0x3f, 0xfe, 0x0, 0x0, 0x0, 0x7, 0xff, 0xc3, 0xff, 0xe0, 0x0, 0x0, 0x0, 0xff, 0xf8, 0x3f, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0x81, 0xff, 0xf0, 0x0, 0x0, 0x1, 0xff, 0xf0, 0x1f, 0xff, 0x80, 0x0, 0x0, 0x1f, 0xff, 0x0, 0xff, 0xf8, 0x0, 0x0, 0x3, 0xff, 0xe0, 0xf, 0xff, 0x80, 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x7f, 0xfc, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x7, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xfc, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x7, 0xff, 0x80, 0x3, 0xff, 0xe0, 0x0, 0x0, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0x0, 0x0, 0xf, 0xff, 0x0, 0x1, 0xff, 0xf0, 0x0, 0x1, 0xff, 0xf0, 0x0, 0x1f, 0xff, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0xff, 0xf8, 0x0, 0x3, 0xff, 0xe0, 0x0, 0xf, 0xff, 0x80, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x7f, 0xfc, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x7, 0xff, 0xc0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x7, 0xff, 0x80, 0x0, 0x3, 0xff, 0xe0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0xf, 0xff, 0x0, 0x0, 0x1, 0xff, 0xf0, 0x1, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xff, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0xff, 0xf8, 0x3, 0xff, 0xe0, 0x0, 0x0, 0xf, 0xff, 0x80, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x7f, 0xfc, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x7, 0xff, 0xc0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x7, 0xff, 0x80, 0x0, 0x0, 0x3, 0xff, 0xe0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0xf, 0xff, 0x0, 0x0, 0x0, 0x1, 0xff, 0xf1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0xff, 0xfb, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xbf, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xfb, 0xff, 0x80, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, /* U+00A6 "¦" */ 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, /* U+00A7 "§" */ 0x0, 0x0, 0x7f, 0xff, 0xf8, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x7, 0xff, 0xff, 0xfe, 0x0, 0xf, 0xff, 0xff, 0xff, 0x0, 0xf, 0xff, 0xff, 0xff, 0x80, 0x1f, 0xff, 0xff, 0xff, 0xc0, 0xf, 0xff, 0xff, 0xff, 0xe0, 0xf, 0xff, 0xff, 0xff, 0xf0, 0xf, 0xff, 0xff, 0xff, 0xf8, 0x7, 0xff, 0xff, 0xff, 0xfc, 0x7, 0xff, 0xf0, 0x0, 0x0, 0x3, 0xff, 0xe0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x3, 0xff, 0xe0, 0x0, 0x0, 0x1, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xf8, 0x0, 0xf, 0xff, 0xff, 0xff, 0x0, 0x7, 0xff, 0xff, 0xff, 0xe0, 0x1, 0xff, 0xff, 0xff, 0xf8, 0x1, 0xff, 0xff, 0xff, 0xfe, 0x1, 0xff, 0xff, 0xff, 0xff, 0x1, 0xff, 0xff, 0xff, 0xff, 0xc0, 0xff, 0xff, 0xff, 0xff, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x7f, 0xfc, 0x0, 0xff, 0xfe, 0x7f, 0xf8, 0x0, 0x1f, 0xff, 0x3f, 0xfc, 0x0, 0x7, 0xff, 0x9f, 0xfc, 0x0, 0x3, 0xff, 0xdf, 0xfe, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x1f, 0xfe, 0xff, 0xf0, 0x0, 0xf, 0xfe, 0x7f, 0xf8, 0x0, 0xf, 0xff, 0x3f, 0xfe, 0x0, 0x7, 0xff, 0x9f, 0xff, 0xc0, 0xf, 0xff, 0x87, 0xff, 0xff, 0xff, 0xff, 0xc3, 0xff, 0xff, 0xff, 0xff, 0xc0, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x3f, 0xff, 0xff, 0xff, 0xe0, 0x1f, 0xff, 0xff, 0xff, 0xe0, 0x7, 0xff, 0xff, 0xff, 0xe0, 0x1, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x3f, 0xff, 0xff, 0xfe, 0x0, 0x7, 0xff, 0xff, 0xff, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x7, 0xff, 0xe0, 0x0, 0x0, 0x1, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x1, 0xff, 0xf0, 0x0, 0x0, 0x3, 0xff, 0xf8, 0xf, 0xff, 0xff, 0xff, 0xf8, 0x7, 0xff, 0xff, 0xff, 0xfc, 0x3, 0xff, 0xff, 0xff, 0xfc, 0x1, 0xff, 0xff, 0xff, 0xfc, 0x0, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x7f, 0xff, 0xff, 0xfc, 0x0, 0x3f, 0xff, 0xff, 0xfc, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x7, 0xff, 0xff, 0x80, 0x0, 0x0, /* U+00A8 "¨" */ 0xff, 0xf0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0xf, 0xff, /* U+00A9 "©" */ 0x0, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x3, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xc0, 0x7f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xfc, 0x1f, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xc3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf8, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf3, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xfe, 0x7f, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xdf, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfb, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x1, 0xff, 0xfe, 0x0, 0x0, 0x3f, 0xff, 0xff, 0x0, 0x0, 0x1, 0xff, 0xff, 0xc0, 0x0, 0x7, 0xff, 0xff, 0xe0, 0x0, 0x0, 0xff, 0xff, 0xf8, 0x0, 0x0, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x3f, 0xff, 0xff, 0x0, 0x0, 0x1f, 0xff, 0xff, 0x80, 0x0, 0xf, 0xff, 0xff, 0xe0, 0x0, 0x3, 0xff, 0xff, 0xf0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x7f, 0xff, 0xfe, 0x0, 0x0, 0xff, 0xff, 0xff, 0x80, 0x0, 0xf, 0xff, 0xff, 0xc0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xf8, 0x0, 0x3, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0x0, 0x0, 0xff, 0x80, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xe0, 0x0, 0x1f, 0xe0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xfc, 0x0, 0x3, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0x80, 0x0, 0x7f, 0x80, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xf0, 0x0, 0xf, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xfe, 0x0, 0x1, 0xfe, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xc0, 0x0, 0x3f, 0xc0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xf8, 0x0, 0x7, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0x0, 0x0, 0xff, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xe0, 0x0, 0x1f, 0xe0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xfc, 0x0, 0x3, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0x80, 0x0, 0x7f, 0x80, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xf0, 0x0, 0xf, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xfe, 0x0, 0x1, 0xfe, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xc0, 0x0, 0x3f, 0xc0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xf8, 0x0, 0x7, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0x0, 0x0, 0xff, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xe0, 0x0, 0x1f, 0xe0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xfc, 0x0, 0x3, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0x80, 0x0, 0x7f, 0x80, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xf0, 0x0, 0xf, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xfe, 0x0, 0x1, 0xfe, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xc0, 0x0, 0x3f, 0xc0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xf8, 0x0, 0x7, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0x0, 0x0, 0xff, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xe0, 0x0, 0x1f, 0xe0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xfc, 0x0, 0x3, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0x80, 0x0, 0x7f, 0x80, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xf0, 0x0, 0xf, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xfe, 0x0, 0x1, 0xfe, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xc0, 0x0, 0x3f, 0xc0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xf8, 0x0, 0x7, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0x0, 0x0, 0xff, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xe0, 0x0, 0x1f, 0xe0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xfc, 0x0, 0x3, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0x80, 0x0, 0x7f, 0xc0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xf0, 0x0, 0x7, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xfe, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xc0, 0x0, 0x1f, 0xff, 0xff, 0xf0, 0x0, 0x1, 0xff, 0xff, 0xf8, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x3f, 0xff, 0xff, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xc0, 0x0, 0x7, 0xff, 0xff, 0xe0, 0x0, 0x1, 0xff, 0xff, 0xf8, 0x0, 0x0, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x1f, 0xff, 0xff, 0x0, 0x0, 0x1f, 0xff, 0xff, 0x80, 0x0, 0x0, 0xff, 0xff, 0xe0, 0x0, 0x3, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x3, 0xff, 0xfc, 0x0, 0x0, 0x7f, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x7f, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xcf, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xf9, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xf, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xe0, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xf8, 0xf, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xfe, 0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x0, /* U+00AA "ª" */ 0xf, 0xff, 0xff, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf0, 0x0, 0x3, 0xff, 0xff, 0xfe, 0x0, 0x1, 0xff, 0xff, 0xff, 0xc0, 0x0, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x7f, 0xff, 0xff, 0xfc, 0x0, 0x3f, 0xff, 0xff, 0xff, 0x0, 0x1f, 0xff, 0xff, 0xff, 0x80, 0x0, 0x0, 0x3, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0x0, 0x1f, 0xf8, 0x0, 0x0, 0x0, 0x7, 0xfc, 0x0, 0x0, 0x0, 0x3, 0xff, 0x0, 0x0, 0x0, 0x1, 0xff, 0x80, 0x0, 0x0, 0x0, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7f, 0xe0, 0x0, 0x0, 0x0, 0x3f, 0xf0, 0x0, 0x0, 0x0, 0x1f, 0xf8, 0x0, 0x0, 0x0, 0xf, 0xfc, 0x0, 0x0, 0x0, 0x7, 0xfe, 0x0, 0x1, 0xff, 0xff, 0xff, 0x0, 0xf, 0xff, 0xff, 0xff, 0x80, 0xf, 0xff, 0xff, 0xff, 0xc0, 0x1f, 0xff, 0xff, 0xff, 0xe0, 0x1f, 0xff, 0xff, 0xff, 0xf0, 0xf, 0xff, 0xff, 0xff, 0xf8, 0xf, 0xff, 0xff, 0xff, 0xfc, 0x7, 0xff, 0xff, 0xff, 0xfe, 0x7, 0xff, 0xc0, 0x3, 0xff, 0x3, 0xff, 0x80, 0x1, 0xff, 0x81, 0xff, 0x80, 0x0, 0xff, 0xc1, 0xff, 0xc0, 0x0, 0x7f, 0xe0, 0xff, 0xc0, 0x0, 0x3f, 0xf0, 0x7f, 0xe0, 0x0, 0x1f, 0xf8, 0x3f, 0xf0, 0x0, 0xf, 0xfc, 0x1f, 0xf8, 0x0, 0x7, 0xfe, 0xf, 0xfc, 0x0, 0x3, 0xff, 0x7, 0xfe, 0x0, 0x1, 0xff, 0x83, 0xff, 0x0, 0x0, 0xff, 0xc1, 0xff, 0x80, 0x0, 0x7f, 0xe0, 0xff, 0xc0, 0x0, 0x3f, 0xf0, 0x7f, 0xf0, 0x0, 0x1f, 0xf8, 0x3f, 0xf8, 0x0, 0x1f, 0xfc, 0xf, 0xff, 0x0, 0x1f, 0xfe, 0x7, 0xff, 0xff, 0xff, 0xff, 0x83, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x7f, 0xff, 0xff, 0xff, 0xff, 0x1f, 0xff, 0xff, 0xff, 0xff, 0x83, 0xff, 0xff, 0xff, 0xff, 0xc0, 0xff, 0xff, 0xfc, 0xff, 0xe0, 0x7, 0xff, 0xf8, 0x1f, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xf8, 0x1f, 0xff, 0xff, 0xff, 0xfc, 0xf, 0xff, 0xff, 0xff, 0xfe, 0x7, 0xff, 0xff, 0xff, 0xff, 0x3, 0xff, 0xff, 0xff, 0xff, 0x81, 0xff, 0xff, 0xff, 0xff, 0xc0, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x7f, 0xff, 0xff, 0xff, 0xf0, 0x3f, 0xff, 0xff, 0xff, 0xf8, 0x1f, 0xff, 0xff, 0xff, 0xfc, 0x0, /* U+00AB "«" */ 0x0, 0x7, 0xfc, 0x0, 0x1f, 0xf0, 0x0, 0x7f, 0xe0, 0x0, 0xff, 0x80, 0x3, 0xfe, 0x0, 0xf, 0xfc, 0x0, 0x3f, 0xf0, 0x0, 0x7f, 0xe0, 0x1, 0xff, 0x80, 0x7, 0xfe, 0x0, 0xf, 0xfc, 0x0, 0x3f, 0xf0, 0x0, 0xff, 0xc0, 0x1, 0xff, 0x80, 0x7, 0xfe, 0x0, 0x1f, 0xf8, 0x0, 0x7f, 0xf0, 0x0, 0xff, 0xc0, 0x3, 0xff, 0x0, 0xf, 0xfe, 0x0, 0x3f, 0xf8, 0x0, 0x7f, 0xe0, 0x1, 0xff, 0xc0, 0x7, 0xff, 0x0, 0xf, 0xfc, 0x0, 0x3f, 0xf8, 0x0, 0xff, 0xe0, 0x1, 0xff, 0xc0, 0x7, 0xff, 0x0, 0x1f, 0xfc, 0x0, 0x7f, 0xf0, 0x0, 0xff, 0xe0, 0x3, 0xff, 0x80, 0xf, 0xff, 0x0, 0x3f, 0xfc, 0x0, 0x7f, 0xf0, 0x1, 0xff, 0xe0, 0x7, 0xff, 0x80, 0xf, 0xfe, 0x0, 0x3f, 0xfc, 0x0, 0xff, 0xf0, 0x1, 0xff, 0xc0, 0x7, 0xff, 0x80, 0x1f, 0xfe, 0x0, 0x7f, 0xf8, 0x0, 0xff, 0xf0, 0x3, 0xff, 0xc0, 0xf, 0xff, 0x0, 0x3f, 0xfe, 0x0, 0x7f, 0xf8, 0x1, 0xff, 0xe0, 0x7, 0xff, 0xc0, 0xf, 0xff, 0x0, 0x3f, 0xfe, 0x0, 0xff, 0xf8, 0x1, 0xff, 0xe0, 0x7, 0xff, 0xc0, 0x1f, 0xff, 0x0, 0x3f, 0xfe, 0x0, 0xff, 0xf8, 0x1, 0xff, 0xf0, 0x3, 0xff, 0xc0, 0x7, 0xff, 0x80, 0x1f, 0xff, 0x0, 0x3f, 0xfc, 0x0, 0xff, 0xf8, 0x1, 0xff, 0xf0, 0x3, 0xff, 0xc0, 0x7, 0xff, 0x80, 0x1f, 0xfe, 0x0, 0x3f, 0xfc, 0x0, 0x7f, 0xf8, 0x0, 0xff, 0xf0, 0x3, 0xff, 0xc0, 0x7, 0xff, 0x80, 0xf, 0xfe, 0x0, 0x1f, 0xfc, 0x0, 0x7f, 0xf8, 0x0, 0xff, 0xf0, 0x3, 0xff, 0xc0, 0x7, 0xff, 0x80, 0xf, 0xfe, 0x0, 0x1f, 0xfc, 0x0, 0x7f, 0xf8, 0x0, 0xff, 0xe0, 0x1, 0xff, 0xc0, 0x3, 0xff, 0x80, 0xf, 0xfe, 0x0, 0x1f, 0xfc, 0x0, 0x3f, 0xf0, 0x0, 0x7f, 0xe0, 0x1, 0xff, 0xc0, 0x3, 0xff, 0x80, 0xf, 0xfe, 0x0, 0x1f, 0xfc, 0x0, 0x3f, 0xf0, 0x0, 0x7f, 0xe0, 0x1, 0xff, 0xc0, 0x3, 0xff, 0x80, 0x7, 0xfe, 0x0, 0xf, 0xfc, 0x0, 0x3f, 0xf0, 0x0, 0x7f, 0xe0, 0x0, 0xff, 0xc0, 0x1, 0xff, 0x80, 0x7, 0xfe, 0x0, 0xf, 0xfc, 0x0, 0x3f, 0xf0, 0x0, 0x7f, 0xe0, 0x0, 0xff, 0xc0, 0x1, 0xff, 0x0, 0x7, 0xfe, 0x0, 0xf, 0xfc, 0x0, 0x1f, 0xf0, 0x0, 0x3f, 0xe0, 0x0, 0xff, 0x80, /* U+00AC "¬" */ 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, /* U+00AD "­" */ 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, /* U+00AE "®" */ 0x0, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x3, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xc0, 0x7f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xfc, 0x1f, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xc3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf8, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf3, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xfe, 0x7f, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xdf, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfb, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xf8, 0x0, 0x3, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x7, 0xff, 0xff, 0xe0, 0x0, 0xf, 0xff, 0xff, 0xfc, 0x0, 0x0, 0xff, 0xff, 0xfc, 0x0, 0x1, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x1f, 0xff, 0xff, 0x80, 0x0, 0x3f, 0xff, 0xff, 0xfc, 0x0, 0x3, 0xff, 0xff, 0xf0, 0x0, 0x7, 0xff, 0xff, 0xff, 0x80, 0x0, 0x7f, 0xff, 0xfe, 0x0, 0x0, 0xff, 0x0, 0x3f, 0xf8, 0x0, 0xf, 0xff, 0xff, 0xc0, 0x0, 0x1f, 0xe0, 0x1, 0xff, 0x0, 0x1, 0xff, 0xff, 0xf8, 0x0, 0x3, 0xfc, 0x0, 0x3f, 0xf0, 0x0, 0x3f, 0xff, 0xff, 0x0, 0x0, 0x7f, 0x80, 0x3, 0xfe, 0x0, 0x7, 0xff, 0xff, 0xe0, 0x0, 0xf, 0xf0, 0x0, 0x7f, 0xc0, 0x0, 0xff, 0xff, 0xfc, 0x0, 0x1, 0xfe, 0x0, 0xf, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0x80, 0x0, 0x3f, 0xc0, 0x1, 0xff, 0x0, 0x3, 0xff, 0xff, 0xf0, 0x0, 0x7, 0xf8, 0x0, 0x3f, 0xe0, 0x0, 0x7f, 0xff, 0xfe, 0x0, 0x0, 0xff, 0x0, 0x7, 0xfc, 0x0, 0xf, 0xff, 0xff, 0xc0, 0x0, 0x1f, 0xe0, 0x0, 0xff, 0x80, 0x1, 0xff, 0xff, 0xf8, 0x0, 0x3, 0xfc, 0x0, 0x1f, 0xf0, 0x0, 0x3f, 0xff, 0xff, 0x0, 0x0, 0x7f, 0x80, 0x3, 0xfe, 0x0, 0x7, 0xff, 0xff, 0xe0, 0x0, 0xf, 0xf0, 0x0, 0x7f, 0xc0, 0x0, 0xff, 0xff, 0xfc, 0x0, 0x1, 0xfe, 0x0, 0xf, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0x80, 0x0, 0x3f, 0xc0, 0x1, 0xff, 0x0, 0x3, 0xff, 0xff, 0xf0, 0x0, 0x7, 0xf8, 0x0, 0x3f, 0xe0, 0x0, 0x7f, 0xff, 0xfe, 0x0, 0x0, 0xff, 0x0, 0xf, 0xfc, 0x0, 0xf, 0xff, 0xff, 0xc0, 0x0, 0x1f, 0xe0, 0x1, 0xff, 0x0, 0x1, 0xff, 0xff, 0xf8, 0x0, 0x3, 0xfc, 0x0, 0xff, 0xe0, 0x0, 0x3f, 0xff, 0xff, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xf8, 0x0, 0x7, 0xff, 0xff, 0xe0, 0x0, 0xf, 0xff, 0xff, 0xff, 0x0, 0x0, 0xff, 0xff, 0xfc, 0x0, 0x1, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x1f, 0xff, 0xff, 0x80, 0x0, 0x3f, 0xff, 0xff, 0xe0, 0x0, 0x3, 0xff, 0xff, 0xf0, 0x0, 0x7, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x7f, 0xff, 0xfe, 0x0, 0x0, 0xff, 0xff, 0xfc, 0x0, 0x0, 0xf, 0xff, 0xff, 0xc0, 0x0, 0x1f, 0xe0, 0x7f, 0xc0, 0x0, 0x1, 0xff, 0xff, 0xf8, 0x0, 0x3, 0xfc, 0x7, 0xf8, 0x0, 0x0, 0x3f, 0xff, 0xff, 0x0, 0x0, 0x7f, 0x80, 0xff, 0x80, 0x0, 0x7, 0xff, 0xff, 0xe0, 0x0, 0xf, 0xf0, 0xf, 0xf0, 0x0, 0x0, 0xff, 0xff, 0xfc, 0x0, 0x1, 0xfe, 0x1, 0xff, 0x0, 0x0, 0x1f, 0xff, 0xff, 0x80, 0x0, 0x3f, 0xc0, 0x1f, 0xe0, 0x0, 0x3, 0xff, 0xff, 0xf0, 0x0, 0x7, 0xf8, 0x3, 0xfe, 0x0, 0x0, 0x7f, 0xff, 0xfe, 0x0, 0x0, 0xff, 0x0, 0x3f, 0xc0, 0x0, 0xf, 0xff, 0xff, 0xc0, 0x0, 0x1f, 0xe0, 0x7, 0xfc, 0x0, 0x1, 0xff, 0xff, 0xf8, 0x0, 0x3, 0xfc, 0x0, 0x7f, 0x80, 0x0, 0x3f, 0xff, 0xff, 0x0, 0x0, 0x7f, 0x80, 0xf, 0xf8, 0x0, 0x7, 0xff, 0xff, 0xe0, 0x0, 0xf, 0xf0, 0x0, 0xff, 0x0, 0x0, 0xff, 0xff, 0xfc, 0x0, 0x1, 0xfe, 0x0, 0x1f, 0xf0, 0x0, 0x1f, 0xff, 0xff, 0x80, 0x0, 0x3f, 0xc0, 0x1, 0xfe, 0x0, 0x3, 0xff, 0xff, 0xf0, 0x0, 0x7, 0xf8, 0x0, 0x3f, 0xe0, 0x0, 0x7f, 0xff, 0xfe, 0x0, 0x0, 0xff, 0x0, 0x3, 0xfc, 0x0, 0xf, 0xff, 0xff, 0xc0, 0x0, 0x1f, 0xe0, 0x0, 0x7f, 0xc0, 0x1, 0xff, 0xff, 0xf8, 0x0, 0x3, 0xfc, 0x0, 0x7, 0xf8, 0x0, 0x3f, 0xff, 0xff, 0x0, 0x0, 0x7f, 0x80, 0x0, 0xff, 0x80, 0x7, 0xff, 0xff, 0xe0, 0x0, 0xf, 0xf0, 0x0, 0xf, 0xf0, 0x0, 0xff, 0xff, 0xfc, 0x0, 0x1, 0xfe, 0x0, 0x1, 0xff, 0x0, 0x1f, 0xff, 0xff, 0x80, 0x0, 0x3f, 0xc0, 0x0, 0x1f, 0xe0, 0x3, 0xff, 0xff, 0xf0, 0x0, 0x7, 0xf8, 0x0, 0x3, 0xfe, 0x0, 0x7f, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x7f, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xcf, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xf9, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xf, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xe0, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xf8, 0xf, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xfe, 0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x0, /* U+00AF "¯" */ 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, /* U+00B0 "°" */ 0x0, 0x7, 0xff, 0xe0, 0x0, 0x0, 0x3f, 0xff, 0xfc, 0x0, 0x1, 0xff, 0xff, 0xff, 0x80, 0x3, 0xff, 0xff, 0xff, 0xc0, 0x7, 0xff, 0xff, 0xff, 0xe0, 0xf, 0xff, 0xff, 0xff, 0xf0, 0x1f, 0xff, 0xff, 0xff, 0xf8, 0x3f, 0xff, 0xff, 0xff, 0xfc, 0x3f, 0xfe, 0x0, 0x7f, 0xfc, 0x7f, 0xf8, 0x0, 0x1f, 0xfe, 0x7f, 0xf0, 0x0, 0xf, 0xfe, 0x7f, 0xe0, 0x0, 0x7, 0xfe, 0xff, 0xe0, 0x0, 0x7, 0xff, 0xff, 0xc0, 0x0, 0x3, 0xff, 0xff, 0xc0, 0x0, 0x3, 0xff, 0xff, 0xc0, 0x0, 0x3, 0xff, 0xff, 0xc0, 0x0, 0x3, 0xff, 0xff, 0xc0, 0x0, 0x3, 0xff, 0xff, 0xc0, 0x0, 0x3, 0xff, 0xff, 0xc0, 0x0, 0x3, 0xff, 0xff, 0xc0, 0x0, 0x3, 0xff, 0xff, 0xc0, 0x0, 0x3, 0xff, 0xff, 0xc0, 0x0, 0x3, 0xff, 0xff, 0xc0, 0x0, 0x3, 0xff, 0xff, 0xc0, 0x0, 0x3, 0xff, 0xff, 0xc0, 0x0, 0x3, 0xff, 0xff, 0xc0, 0x0, 0x3, 0xff, 0xff, 0xc0, 0x0, 0x3, 0xff, 0xff, 0xc0, 0x0, 0x3, 0xff, 0xff, 0xe0, 0x0, 0x7, 0xff, 0x7f, 0xe0, 0x0, 0x7, 0xfe, 0x7f, 0xf0, 0x0, 0xf, 0xfe, 0x7f, 0xf8, 0x0, 0x1f, 0xfe, 0x3f, 0xfe, 0x0, 0x7f, 0xfc, 0x3f, 0xff, 0xff, 0xff, 0xfc, 0x1f, 0xff, 0xff, 0xff, 0xf8, 0xf, 0xff, 0xff, 0xff, 0xf0, 0x7, 0xff, 0xff, 0xff, 0xe0, 0x3, 0xff, 0xff, 0xff, 0xc0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x3f, 0xff, 0xfc, 0x0, 0x0, 0x7, 0xff, 0xe0, 0x0, /* U+00B1 "±" */ 0x0, 0x0, 0x7, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0x80, 0x0, 0x3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0x7, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, /* U+00B2 "²" */ 0x3f, 0xff, 0xf0, 0x0, 0xf, 0xff, 0xff, 0xc0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0xff, 0xff, 0xff, 0xc0, 0x3f, 0xff, 0xff, 0xf8, 0xf, 0xff, 0xff, 0xff, 0x3, 0xff, 0xff, 0xff, 0xe0, 0xff, 0xff, 0xff, 0xf8, 0x3f, 0xff, 0xff, 0xff, 0x0, 0x0, 0xf, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x0, 0x3, 0xff, 0x80, 0x0, 0x0, 0x7f, 0xe0, 0x0, 0x0, 0x1f, 0xf8, 0x0, 0x0, 0x7, 0xfe, 0x0, 0x0, 0x1, 0xff, 0x80, 0x0, 0x0, 0x7f, 0xe0, 0x0, 0x0, 0x1f, 0xf8, 0x0, 0x0, 0x7, 0xfe, 0x0, 0x0, 0x1, 0xff, 0x80, 0x0, 0x0, 0x7f, 0xe0, 0x0, 0x0, 0x1f, 0xf8, 0x0, 0x0, 0x7, 0xfe, 0x0, 0x0, 0x1, 0xff, 0x80, 0x0, 0x0, 0x7f, 0xe0, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0xf, 0xfc, 0x0, 0x0, 0x3, 0xff, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x7, 0xff, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x3, 0xff, 0x80, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, /* U+00B3 "³" */ 0xff, 0xff, 0xe0, 0x1, 0xff, 0xff, 0xf8, 0x3, 0xff, 0xff, 0xfc, 0x7, 0xff, 0xff, 0xfe, 0xf, 0xff, 0xff, 0xfe, 0x1f, 0xff, 0xff, 0xfe, 0x3f, 0xff, 0xff, 0xfe, 0x7f, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x1, 0xff, 0xf8, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x3, 0xff, 0x80, 0x0, 0x7, 0xff, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x3, 0xff, 0x80, 0x0, 0x7, 0xff, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x3, 0xff, 0xe0, 0x0, 0xf, 0xff, 0x81, 0xff, 0xff, 0xfe, 0x3, 0xff, 0xff, 0xf8, 0x7, 0xff, 0xff, 0xe0, 0xf, 0xff, 0xff, 0x80, 0x1f, 0xff, 0xff, 0x0, 0x3f, 0xff, 0xff, 0x0, 0x7f, 0xff, 0xff, 0x0, 0xff, 0xff, 0xff, 0x1, 0xff, 0xff, 0xff, 0x0, 0x0, 0x3f, 0xff, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x1f, 0xf8, 0x0, 0x0, 0x3f, 0xf0, 0x0, 0x0, 0x7f, 0xe0, 0x0, 0x0, 0xff, 0xc0, 0x0, 0x1, 0xff, 0x80, 0x0, 0x3, 0xff, 0x0, 0x0, 0x7, 0xfe, 0x0, 0x0, 0xf, 0xfc, 0x0, 0x0, 0x1f, 0xf8, 0x0, 0x0, 0x3f, 0xf0, 0x0, 0x0, 0x7f, 0xe0, 0x0, 0x0, 0xff, 0xc0, 0x0, 0x1, 0xff, 0x80, 0x0, 0x3, 0xff, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x3, 0xff, 0xef, 0xff, 0xff, 0xff, 0xdf, 0xff, 0xff, 0xff, 0x3f, 0xff, 0xff, 0xfe, 0x7f, 0xff, 0xff, 0xf8, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0x83, 0xff, 0xff, 0xfe, 0x7, 0xff, 0xff, 0xf0, 0xf, 0xff, 0xfe, 0x0, 0x0, /* U+00B4 "´" */ 0x0, 0x3, 0xff, 0xfc, 0x0, 0xf, 0xff, 0xe0, 0x0, 0x7f, 0xff, 0x0, 0x3, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xc0, 0x0, 0x7f, 0xfe, 0x0, 0x3, 0xff, 0xf0, 0x0, 0x1f, 0xff, 0x80, 0x0, 0xff, 0xfc, 0x0, 0x3, 0xff, 0xe0, 0x0, 0x1f, 0xff, 0x0, 0x0, 0xff, 0xf8, 0x0, 0x7, 0xff, 0xc0, 0x0, 0x1f, 0xff, 0x0, 0x0, 0xff, 0xf8, 0x0, 0x7, 0xff, 0xc0, 0x0, 0x3f, 0xfe, 0x0, 0x1, 0xff, 0xf0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, /* U+00B5 "µ" */ 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x7, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xf8, 0x0, 0x0, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x3, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xf8, 0xff, 0xff, 0xfe, 0x1f, 0xff, 0x1, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, /* U+00B6 "¶" */ 0x0, 0x0, 0x7f, 0xff, 0xf0, 0xf, 0xfe, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x1f, 0xfc, 0x0, 0xff, 0xff, 0xff, 0xc0, 0x3f, 0xf8, 0x7, 0xff, 0xff, 0xff, 0x80, 0x7f, 0xf0, 0x3f, 0xff, 0xff, 0xff, 0x0, 0xff, 0xe0, 0xff, 0xff, 0xff, 0xfe, 0x1, 0xff, 0xc3, 0xff, 0xff, 0xff, 0xfc, 0x3, 0xff, 0x87, 0xff, 0xff, 0xff, 0xf8, 0x7, 0xff, 0x1f, 0xff, 0xff, 0xff, 0xf0, 0xf, 0xfe, 0x7f, 0xff, 0xff, 0xff, 0xe0, 0x1f, 0xfc, 0xff, 0xff, 0x80, 0x0, 0x0, 0x3f, 0xf9, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x7f, 0xf7, 0xff, 0xe0, 0x0, 0x0, 0x0, 0xff, 0xef, 0xff, 0x80, 0x0, 0x0, 0x1, 0xff, 0xdf, 0xfe, 0x0, 0x0, 0x0, 0x3, 0xff, 0xbf, 0xfc, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x1, 0xff, 0xdf, 0xfe, 0x0, 0x0, 0x0, 0x3, 0xff, 0xbf, 0xfc, 0x0, 0x0, 0x0, 0x7, 0xff, 0x7f, 0xfc, 0x0, 0x0, 0x0, 0xf, 0xfe, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x1f, 0xfc, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x3f, 0xf9, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x7f, 0xf1, 0xff, 0xff, 0xff, 0xff, 0x0, 0xff, 0xe3, 0xff, 0xff, 0xff, 0xfe, 0x1, 0xff, 0xc3, 0xff, 0xff, 0xff, 0xfc, 0x3, 0xff, 0x83, 0xff, 0xff, 0xff, 0xf8, 0x7, 0xff, 0x3, 0xff, 0xff, 0xff, 0xf0, 0xf, 0xfe, 0x3, 0xff, 0xff, 0xff, 0xe0, 0x1f, 0xfc, 0x1, 0xff, 0xff, 0xff, 0xc0, 0x3f, 0xf8, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x7f, 0xf0, 0x0, 0xf, 0xff, 0xff, 0x0, 0xff, 0xe0, 0x0, 0x0, 0x1f, 0xfe, 0x1, 0xff, 0xc0, 0x0, 0x0, 0x3f, 0xfc, 0x3, 0xff, 0x80, 0x0, 0x0, 0x7f, 0xf8, 0x7, 0xff, 0x0, 0x0, 0x0, 0xff, 0xf0, 0xf, 0xfe, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x1f, 0xfc, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x3f, 0xf8, 0x0, 0x0, 0x7, 0xff, 0x80, 0x7f, 0xf0, 0x0, 0x0, 0xf, 0xff, 0x0, 0xff, 0xe0, 0x0, 0x0, 0x1f, 0xfe, 0x1, 0xff, 0xc0, 0x0, 0x0, 0x3f, 0xfc, 0x3, 0xff, 0x80, 0x0, 0x0, 0x7f, 0xf8, 0x7, 0xff, 0x0, 0x0, 0x0, 0xff, 0xf0, 0xf, 0xfe, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x1f, 0xfc, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x3f, 0xf8, 0x0, 0x0, 0x7, 0xff, 0x80, 0x7f, 0xf0, 0x0, 0x0, 0xf, 0xff, 0x0, 0xff, 0xe0, 0x0, 0x0, 0x1f, 0xfe, 0x1, 0xff, 0xc0, 0x0, 0x0, 0x3f, 0xfc, 0x3, 0xff, 0x80, 0x0, 0x0, 0x7f, 0xf8, 0x7, 0xff, 0x0, 0x0, 0x0, 0xff, 0xf0, 0xf, 0xfe, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x1f, 0xfc, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x3f, 0xf8, 0x0, 0x0, 0x7, 0xff, 0x80, 0x7f, 0xf0, 0x0, 0x0, 0xf, 0xff, 0x0, 0xff, 0xe0, 0x0, 0x0, 0x1f, 0xfe, 0x1, 0xff, 0xc0, 0x0, 0x0, 0x3f, 0xfc, 0x3, 0xff, 0x80, 0x0, 0x0, 0x7f, 0xf8, 0x7, 0xff, 0x0, 0x0, 0x0, 0xff, 0xf0, 0xf, 0xfe, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x1f, 0xfc, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x3f, 0xf8, 0x0, 0x0, 0x7, 0xff, 0x80, 0x7f, 0xf0, 0x0, 0x0, 0xf, 0xff, 0x0, 0xff, 0xe0, 0x0, 0x0, 0x1f, 0xfe, 0x1, 0xff, 0xc0, 0x0, 0x0, 0x3f, 0xfc, 0x3, 0xff, 0x80, 0x0, 0x0, 0x7f, 0xf8, 0x7, 0xff, 0x0, 0x0, 0x0, 0xff, 0xf0, 0xf, 0xfe, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x1f, 0xfc, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x3f, 0xf8, 0x0, 0x0, 0x7, 0xff, 0x80, 0x7f, 0xf0, 0x0, 0x0, 0xf, 0xff, 0x0, 0xff, 0xe0, 0x0, 0x0, 0x1f, 0xfe, 0x1, 0xff, 0xc0, 0x0, 0x0, 0x3f, 0xfc, 0x3, 0xff, 0x80, 0x0, 0x0, 0x7f, 0xf8, 0x7, 0xff, 0x0, 0x0, 0x0, 0xff, 0xf0, 0xf, 0xfe, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x1f, 0xfc, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x3f, 0xf8, 0x0, 0x0, 0x7, 0xff, 0x80, 0x7f, 0xf0, 0x0, 0x0, 0xf, 0xff, 0x0, 0xff, 0xe0, 0x0, 0x0, 0x1f, 0xfe, 0x1, 0xff, 0xc0, 0x0, 0x0, 0x3f, 0xfc, 0x3, 0xff, 0x80, 0x0, 0x0, 0x7f, 0xf8, 0x7, 0xff, 0x0, 0x0, 0x0, 0xff, 0xf0, 0xf, 0xfe, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x1f, 0xfc, /* U+00B7 "·" */ 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, /* U+00B8 "¸" */ 0x3f, 0xf0, 0x0, 0x3f, 0xf0, 0x0, 0x3f, 0xf0, 0x0, 0x3f, 0xf0, 0x0, 0x3f, 0xf0, 0x0, 0x3f, 0xf0, 0x0, 0x3f, 0xf0, 0x0, 0x3f, 0xf0, 0x0, 0x3f, 0xf0, 0x0, 0x3f, 0xf0, 0x0, 0x3f, 0xff, 0xc0, 0x3f, 0xff, 0xf0, 0x3f, 0xff, 0xfc, 0x3f, 0xff, 0xfc, 0x3f, 0xff, 0xfe, 0x3f, 0xff, 0xfe, 0x3f, 0xff, 0xfe, 0x0, 0xf, 0xff, 0x0, 0x7, 0xff, 0x0, 0x3, 0xff, 0x0, 0x3, 0xff, 0x0, 0x3, 0xff, 0x0, 0x3, 0xff, 0x0, 0x3, 0xff, 0x0, 0x7, 0xff, 0x0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xf8, 0xff, 0xff, 0xf0, 0xff, 0xff, 0xe0, 0xff, 0xff, 0x0, /* U+00B9 "¹" */ 0x0, 0xf, 0xff, 0x0, 0x0, 0x1f, 0xff, 0xc0, 0x0, 0x1f, 0xff, 0xf0, 0x0, 0x3f, 0xff, 0xfc, 0x0, 0x3f, 0xff, 0xff, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0xf, 0xff, 0xff, 0xf0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0xff, 0xff, 0xff, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0xf, 0xfe, 0x3f, 0xf0, 0x3, 0xfc, 0xf, 0xfc, 0x0, 0xfc, 0x3, 0xff, 0x0, 0x38, 0x0, 0xff, 0xc0, 0x8, 0x0, 0x3f, 0xf0, 0x0, 0x0, 0xf, 0xfc, 0x0, 0x0, 0x3, 0xff, 0x0, 0x0, 0x0, 0xff, 0xc0, 0x0, 0x0, 0x3f, 0xf0, 0x0, 0x0, 0xf, 0xfc, 0x0, 0x0, 0x3, 0xff, 0x0, 0x0, 0x0, 0xff, 0xc0, 0x0, 0x0, 0x3f, 0xf0, 0x0, 0x0, 0xf, 0xfc, 0x0, 0x0, 0x3, 0xff, 0x0, 0x0, 0x0, 0xff, 0xc0, 0x0, 0x0, 0x3f, 0xf0, 0x0, 0x0, 0xf, 0xfc, 0x0, 0x0, 0x3, 0xff, 0x0, 0x0, 0x0, 0xff, 0xc0, 0x0, 0x0, 0x3f, 0xf0, 0x0, 0x0, 0xf, 0xfc, 0x0, 0x0, 0x3, 0xff, 0x0, 0x0, 0x0, 0xff, 0xc0, 0x0, 0x0, 0x3f, 0xf0, 0x0, 0x0, 0xf, 0xfc, 0x0, 0x0, 0x3, 0xff, 0x0, 0x0, 0x0, 0xff, 0xc0, 0x0, 0x0, 0x3f, 0xf0, 0x0, 0x0, 0xf, 0xfc, 0x0, 0x0, 0x3, 0xff, 0x0, 0x0, 0x0, 0xff, 0xc0, 0x0, 0x0, 0x3f, 0xf0, 0x0, 0x0, 0xf, 0xfc, 0x0, 0x0, 0x3, 0xff, 0x0, 0x0, 0x0, 0xff, 0xc0, 0x0, 0x0, 0x3f, 0xf0, 0x0, 0x0, 0xf, 0xfc, 0x0, 0x0, 0x3, 0xff, 0x0, 0x0, 0x0, 0xff, 0xc0, 0x0, 0x0, 0x3f, 0xf0, 0x0, 0x0, 0xf, 0xfc, 0x0, 0x0, 0x3, 0xff, 0x0, 0x0, 0x0, 0xff, 0xc0, 0x0, 0x0, 0x3f, 0xf0, 0x0, 0x0, 0xf, 0xfc, 0x0, 0x0, 0x3, 0xff, 0x0, 0x0, 0x0, 0xff, 0xc0, 0x0, 0x0, 0x3f, 0xf0, 0x0, 0x0, 0xf, 0xfc, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xdf, 0xff, 0xff, 0xff, 0xf7, 0xff, 0xff, 0xff, 0xfd, 0xff, 0xff, 0xff, 0xff, 0x7f, 0xff, 0xff, 0xff, 0xdf, 0xff, 0xff, 0xff, 0xf7, 0xff, 0xff, 0xff, 0xfd, 0xff, 0xff, 0xff, 0xff, 0x7f, 0xff, 0xff, 0xff, 0xc0, /* U+00BA "º" */ 0x0, 0xf, 0xff, 0xc0, 0x0, 0x0, 0xff, 0xff, 0xf0, 0x0, 0xf, 0xff, 0xff, 0xfc, 0x0, 0x3f, 0xff, 0xff, 0xfc, 0x0, 0xff, 0xff, 0xff, 0xfc, 0x3, 0xff, 0xff, 0xff, 0xfc, 0xf, 0xff, 0xff, 0xff, 0xfc, 0x1f, 0xff, 0xff, 0xff, 0xf8, 0x7f, 0xfc, 0x0, 0xff, 0xf8, 0xff, 0xe0, 0x0, 0x7f, 0xf1, 0xff, 0x80, 0x0, 0x7f, 0xe7, 0xff, 0x0, 0x0, 0xff, 0xef, 0xfc, 0x0, 0x0, 0xff, 0xdf, 0xf8, 0x0, 0x1, 0xff, 0xbf, 0xf0, 0x0, 0x3, 0xff, 0x7f, 0xe0, 0x0, 0x7, 0xfe, 0xff, 0xc0, 0x0, 0xf, 0xfd, 0xff, 0x80, 0x0, 0x1f, 0xfb, 0xff, 0x0, 0x0, 0x3f, 0xf7, 0xfe, 0x0, 0x0, 0x7f, 0xef, 0xfc, 0x0, 0x0, 0xff, 0xdf, 0xf8, 0x0, 0x1, 0xff, 0xbf, 0xf0, 0x0, 0x3, 0xff, 0x7f, 0xe0, 0x0, 0x7, 0xfe, 0xff, 0xc0, 0x0, 0xf, 0xfd, 0xff, 0x80, 0x0, 0x1f, 0xfb, 0xff, 0x0, 0x0, 0x3f, 0xf7, 0xfe, 0x0, 0x0, 0x7f, 0xef, 0xfc, 0x0, 0x0, 0xff, 0xdf, 0xf8, 0x0, 0x1, 0xff, 0xbf, 0xf0, 0x0, 0x3, 0xff, 0x7f, 0xe0, 0x0, 0x7, 0xfe, 0xff, 0xc0, 0x0, 0xf, 0xfd, 0xff, 0x80, 0x0, 0x1f, 0xfb, 0xff, 0x0, 0x0, 0x3f, 0xf7, 0xfe, 0x0, 0x0, 0x7f, 0xef, 0xfc, 0x0, 0x0, 0xff, 0xdf, 0xf8, 0x0, 0x1, 0xff, 0xbf, 0xf0, 0x0, 0x3, 0xff, 0x7f, 0xe0, 0x0, 0x7, 0xfe, 0xff, 0xe0, 0x0, 0x1f, 0xfc, 0xff, 0xc0, 0x0, 0x3f, 0xf1, 0xff, 0xc0, 0x0, 0xff, 0xe3, 0xff, 0xe0, 0x7, 0xff, 0xc3, 0xff, 0xff, 0xff, 0xff, 0x7, 0xff, 0xff, 0xff, 0xfe, 0x7, 0xff, 0xff, 0xff, 0xf8, 0x7, 0xff, 0xff, 0xff, 0xe0, 0x7, 0xff, 0xff, 0xff, 0x80, 0x7, 0xff, 0xff, 0xfe, 0x0, 0x1, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x7f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, /* U+00BB "»" */ 0x7f, 0xc0, 0x1, 0xff, 0x0, 0x3, 0xfe, 0x0, 0xf, 0xfc, 0x0, 0x1f, 0xf8, 0x0, 0x3f, 0xe0, 0x0, 0x7f, 0xc0, 0x1, 0xff, 0x80, 0x3, 0xff, 0x0, 0xf, 0xfc, 0x0, 0x1f, 0xf8, 0x0, 0x3f, 0xf0, 0x0, 0xff, 0xe0, 0x1, 0xff, 0x80, 0x3, 0xff, 0x0, 0xf, 0xfc, 0x0, 0x1f, 0xf8, 0x0, 0x7f, 0xf0, 0x0, 0xff, 0xe0, 0x1, 0xff, 0x80, 0x3, 0xff, 0x0, 0xf, 0xfe, 0x0, 0x1f, 0xfc, 0x0, 0x7f, 0xf0, 0x0, 0xff, 0xe0, 0x1, 0xff, 0xc0, 0x3, 0xff, 0x80, 0xf, 0xfe, 0x0, 0x1f, 0xfc, 0x0, 0x7f, 0xf0, 0x0, 0xff, 0xe0, 0x1, 0xff, 0xc0, 0x3, 0xff, 0x80, 0xf, 0xfe, 0x0, 0x1f, 0xfc, 0x0, 0x7f, 0xf8, 0x0, 0xff, 0xf0, 0x1, 0xff, 0xc0, 0x7, 0xff, 0x80, 0xf, 0xff, 0x0, 0x1f, 0xfe, 0x0, 0x7f, 0xf8, 0x0, 0xff, 0xf0, 0x3, 0xff, 0xc0, 0x7, 0xff, 0x80, 0xf, 0xff, 0x0, 0x1f, 0xfe, 0x0, 0x7f, 0xf8, 0x0, 0xff, 0xf0, 0x3, 0xff, 0xe0, 0x7, 0xff, 0xc0, 0xf, 0xff, 0x0, 0x1f, 0xfe, 0x0, 0x7f, 0xfc, 0x0, 0xff, 0xf8, 0x3, 0xff, 0xe0, 0x7, 0xff, 0xc0, 0xf, 0xff, 0x0, 0x3f, 0xfe, 0x0, 0x7f, 0xf8, 0x1, 0xff, 0xf0, 0x7, 0xff, 0xc0, 0xf, 0xff, 0x0, 0x3f, 0xfe, 0x0, 0xff, 0xf8, 0x1, 0xff, 0xe0, 0x7, 0xff, 0x80, 0x1f, 0xff, 0x0, 0x3f, 0xfc, 0x0, 0xff, 0xf0, 0x3, 0xff, 0xc0, 0x7, 0xff, 0x80, 0x1f, 0xfe, 0x0, 0x7f, 0xf8, 0x0, 0xff, 0xf0, 0x3, 0xff, 0xc0, 0xf, 0xff, 0x0, 0x1f, 0xfe, 0x0, 0x7f, 0xf8, 0x0, 0xff, 0xe0, 0x3, 0xff, 0x80, 0xf, 0xff, 0x0, 0x1f, 0xfc, 0x0, 0x7f, 0xf0, 0x1, 0xff, 0xc0, 0x3, 0xff, 0x80, 0xf, 0xfe, 0x0, 0x3f, 0xf8, 0x0, 0x7f, 0xf0, 0x1, 0xff, 0xc0, 0x7, 0xff, 0x0, 0xf, 0xfe, 0x0, 0x3f, 0xf8, 0x0, 0xff, 0xe0, 0x1, 0xff, 0x80, 0x7, 0xff, 0x0, 0x1f, 0xfc, 0x0, 0x3f, 0xf0, 0x0, 0xff, 0xc0, 0x3, 0xff, 0x80, 0x7, 0xfe, 0x0, 0x1f, 0xf8, 0x0, 0x7f, 0xf0, 0x0, 0xff, 0xc0, 0x3, 0xff, 0x0, 0x7, 0xfe, 0x0, 0x1f, 0xf8, 0x0, 0x7f, 0xe0, 0x0, 0xff, 0x80, 0x3, 0xff, 0x0, 0xf, 0xfc, 0x0, 0x1f, 0xf0, 0x0, 0x7f, 0xc0, 0x1, 0xff, 0x80, 0x3, 0xfe, 0x0, 0xf, 0xf8, 0x0, 0x0, /* U+00BC "¼" */ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0x80, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x3, 0xff, 0x80, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x0, 0x0, 0x0, 0xf, 0xfe, 0x3f, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xfc, 0xf, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x0, 0x0, 0xfc, 0x3, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x38, 0x0, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x8, 0x0, 0x3f, 0xf0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xfc, 0x0, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xf0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xfc, 0x0, 0x0, 0x0, 0x7, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0x0, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xf0, 0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xfc, 0x0, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xc0, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xf0, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xfc, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0x0, 0x0, 0x0, 0xf, 0xfe, 0x1, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0x80, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x3f, 0xf0, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x3f, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xfc, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0xf, 0xfc, 0x0, 0x0, 0x0, 0x3, 0xff, 0x0, 0x0, 0x0, 0x1f, 0xfc, 0x3, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xc0, 0x0, 0x0, 0xf, 0xfe, 0x1, 0xff, 0x80, 0x0, 0x0, 0x0, 0x3f, 0xf0, 0x0, 0x0, 0x3, 0xff, 0x80, 0x7f, 0xe0, 0x0, 0x0, 0x0, 0xf, 0xfc, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x1f, 0xf8, 0x0, 0x0, 0x0, 0x3, 0xff, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0x7, 0xfe, 0x0, 0x0, 0x0, 0x0, 0xff, 0xc0, 0x0, 0x0, 0x1f, 0xfc, 0x3, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xf0, 0x0, 0x0, 0xf, 0xff, 0x0, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xfc, 0x0, 0x0, 0x3, 0xff, 0x80, 0x3f, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0x0, 0x0, 0x0, 0xff, 0xe0, 0xf, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xf8, 0x7, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xf0, 0x0, 0x0, 0x1f, 0xfc, 0x1, 0xff, 0x80, 0x0, 0x0, 0x0, 0xf, 0xfc, 0x0, 0x0, 0x7, 0xff, 0x0, 0x7f, 0xe0, 0x0, 0x0, 0x0, 0x3, 0xff, 0x0, 0x0, 0x3, 0xff, 0x80, 0x1f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0xff, 0xc0, 0x0, 0x0, 0xff, 0xe0, 0xf, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xf0, 0x0, 0x0, 0x3f, 0xf8, 0x3, 0xff, 0x0, 0x0, 0x0, 0x0, 0xf, 0xfc, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x3, 0xff, 0x0, 0x0, 0x7, 0xff, 0x0, 0x3f, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xc0, 0x0, 0x1, 0xff, 0xc0, 0x1f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xf0, 0x0, 0x0, 0xff, 0xe0, 0x7, 0xfe, 0x0, 0x0, 0x0, 0x0, 0xf, 0xfc, 0x0, 0x0, 0x3f, 0xf8, 0x1, 0xff, 0x80, 0x0, 0x0, 0x0, 0x3, 0xff, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x7f, 0xe0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xc0, 0x0, 0x7, 0xff, 0x0, 0x3f, 0xf8, 0x1f, 0xf8, 0x0, 0x0, 0x3f, 0xf0, 0x0, 0x1, 0xff, 0xc0, 0xf, 0xfc, 0x7, 0xfe, 0x0, 0x0, 0xf, 0xfc, 0x0, 0x0, 0xff, 0xf0, 0x3, 0xff, 0x1, 0xff, 0x80, 0x0, 0x3, 0xff, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0xff, 0xc0, 0x7f, 0xe0, 0x0, 0x0, 0xff, 0xc0, 0x0, 0xf, 0xfe, 0x0, 0x7f, 0xf0, 0x1f, 0xf8, 0x0, 0x0, 0x3f, 0xf0, 0x0, 0x7, 0xff, 0x0, 0x1f, 0xf8, 0x7, 0xfe, 0x0, 0x0, 0xf, 0xfc, 0x0, 0x1, 0xff, 0xc0, 0x7, 0xfe, 0x1, 0xff, 0x80, 0x7f, 0xff, 0xff, 0xff, 0xc0, 0x7f, 0xf0, 0x1, 0xff, 0x80, 0x7f, 0xe0, 0x1f, 0xff, 0xff, 0xff, 0xf0, 0x3f, 0xf8, 0x0, 0xff, 0xe0, 0x1f, 0xf8, 0x7, 0xff, 0xff, 0xff, 0xfc, 0xf, 0xfe, 0x0, 0x3f, 0xf8, 0x7, 0xfe, 0x1, 0xff, 0xff, 0xff, 0xff, 0x3, 0xff, 0x80, 0xf, 0xfc, 0x1, 0xff, 0x80, 0x7f, 0xff, 0xff, 0xff, 0xc1, 0xff, 0xc0, 0x3, 0xff, 0x0, 0x7f, 0xe0, 0x1f, 0xff, 0xff, 0xff, 0xf0, 0x7f, 0xf0, 0x1, 0xff, 0xc0, 0x1f, 0xf8, 0x7, 0xff, 0xff, 0xff, 0xfc, 0x1f, 0xfc, 0x0, 0x7f, 0xf0, 0x7, 0xfe, 0x1, 0xff, 0xff, 0xff, 0xff, 0xf, 0xfe, 0x0, 0x1f, 0xf8, 0x1, 0xff, 0x80, 0x7f, 0xff, 0xff, 0xff, 0xc3, 0xff, 0x80, 0x7, 0xfe, 0x0, 0x7f, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x3, 0xff, 0x80, 0x1f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0xff, 0xe0, 0x7, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x3f, 0xf0, 0x1, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0xf, 0xfe, 0x0, 0xf, 0xfc, 0x0, 0x7f, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0x80, 0x3, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xe0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x0, 0x3, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0x80, 0x0, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x3, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x0, 0x0, 0x0, 0x0, 0x7, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x1, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x7, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0x80, 0x0, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xe0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x7, 0xfe, 0x0, 0x0, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0x80, 0x0, 0x0, 0x0, 0x7, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xe0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0x80, 0x0, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xe0, 0x0, 0x0, 0x0, 0x3, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xf8, 0x0, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, /* U+00BD "½" */ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xe0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x7, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xf8, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xf0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x1, 0xff, 0x80, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0x3, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0xf, 0xfc, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xf8, 0x0, 0x0, 0x0, 0x3, 0xff, 0x8f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xf0, 0x0, 0x0, 0x0, 0x7, 0xfc, 0x1f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xc0, 0x3f, 0xf0, 0x0, 0x0, 0x0, 0x1, 0xff, 0x80, 0x0, 0x0, 0x0, 0x1e, 0x0, 0x7f, 0xe0, 0x0, 0x0, 0x0, 0x3, 0xff, 0x0, 0x0, 0x0, 0x0, 0x20, 0x0, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0x80, 0x0, 0x0, 0x0, 0x1f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xfe, 0x0, 0x0, 0x0, 0x0, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xfc, 0x0, 0x0, 0x0, 0x1, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xf8, 0x0, 0x0, 0x0, 0x7, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xe0, 0x0, 0x0, 0x0, 0x1f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0x80, 0x0, 0x0, 0x0, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0x0, 0x0, 0x0, 0x1, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xfe, 0x0, 0x0, 0x0, 0x7, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xfc, 0x0, 0x0, 0x0, 0xf, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xf8, 0x0, 0x0, 0x0, 0x1f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xf0, 0x0, 0x0, 0x0, 0x7f, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xe0, 0x0, 0x0, 0x0, 0xff, 0xc0, 0x3f, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0x80, 0x7f, 0xff, 0xfe, 0x0, 0x0, 0x1, 0xff, 0x80, 0x0, 0x0, 0x7, 0xfe, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x3, 0xff, 0x0, 0x0, 0x0, 0xf, 0xfc, 0x1, 0xff, 0xff, 0xff, 0x80, 0x0, 0x7, 0xfe, 0x0, 0x0, 0x0, 0x3f, 0xf8, 0x3, 0xff, 0xff, 0xff, 0x80, 0x0, 0xf, 0xfc, 0x0, 0x0, 0x0, 0x7f, 0xe0, 0x7, 0xff, 0xff, 0xff, 0x80, 0x0, 0x1f, 0xf8, 0x0, 0x0, 0x0, 0xff, 0xc0, 0xf, 0xff, 0xff, 0xff, 0x80, 0x0, 0x3f, 0xf0, 0x0, 0x0, 0x3, 0xff, 0x80, 0x1f, 0xff, 0xff, 0xff, 0x0, 0x0, 0x7f, 0xe0, 0x0, 0x0, 0x7, 0xfe, 0x0, 0x3f, 0xff, 0xff, 0xff, 0x0, 0x0, 0xff, 0xc0, 0x0, 0x0, 0xf, 0xfc, 0x0, 0x0, 0x0, 0x7f, 0xfe, 0x0, 0x1, 0xff, 0x80, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x3, 0xff, 0x0, 0x0, 0x0, 0x7f, 0xe0, 0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x7, 0xfe, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0xf, 0xfc, 0x0, 0x0, 0x3, 0xff, 0x80, 0x0, 0x0, 0x0, 0x3f, 0xf0, 0x0, 0x1f, 0xf8, 0x0, 0x0, 0x7, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xe0, 0x0, 0x3f, 0xf0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xc0, 0x0, 0x7f, 0xe0, 0x0, 0x0, 0x3f, 0xf0, 0x0, 0x0, 0x0, 0x1, 0xff, 0x80, 0x0, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xe0, 0x0, 0x0, 0x0, 0x3, 0xff, 0x0, 0x1, 0xff, 0x80, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7, 0xfe, 0x0, 0x3, 0xff, 0x0, 0x0, 0x3, 0xff, 0x0, 0x0, 0x0, 0x0, 0xf, 0xfc, 0x0, 0x7, 0xfe, 0x0, 0x0, 0x7, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xf8, 0x0, 0xf, 0xfc, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xf0, 0x0, 0x1f, 0xf8, 0x0, 0x0, 0x3f, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xe0, 0x0, 0x3f, 0xf0, 0x0, 0x0, 0x7f, 0xe0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xc0, 0x0, 0x7f, 0xe0, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x1, 0xff, 0x80, 0x0, 0xff, 0xc0, 0x0, 0x3, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0x0, 0x1, 0xff, 0x80, 0x0, 0xf, 0xfe, 0x0, 0x0, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x3, 0xff, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xf8, 0x0, 0x7, 0xfe, 0x0, 0x0, 0x3f, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xf0, 0x0, 0xf, 0xfc, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x1f, 0xf8, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xc7, 0xff, 0xff, 0xff, 0xfc, 0x3, 0xff, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xf, 0xff, 0xff, 0xff, 0xf8, 0xf, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x1f, 0xff, 0xff, 0xff, 0xf0, 0x1f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xf8, 0x3f, 0xff, 0xff, 0xff, 0xe0, 0x3f, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x7f, 0xff, 0xff, 0xff, 0xc0, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0xff, 0xff, 0xff, 0xff, 0x81, 0xff, 0x80, 0x0, 0x0, 0x0, 0x7, 0xff, 0x1, 0xff, 0xff, 0xff, 0xff, 0x3, 0xff, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x3, 0xff, 0xff, 0xff, 0xfe, 0xf, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x7, 0xff, 0xff, 0xff, 0xfc, 0x1f, 0xf8, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0x80, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xf8, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0x80, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xfc, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xc0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0x80, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xfc, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xc0, 0x0, 0x0, 0x7, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0x80, 0x0, 0x0, 0xf, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x7, 0xff, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0xf, 0xfc, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xff, 0xff, 0x80, 0x0, 0x0, 0x3, 0xff, 0x80, 0x0, 0x0, 0x3, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x7, 0xfe, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, /* U+00BE "¾" */ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x0, 0x0, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x1, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x7, 0xff, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xf8, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x7, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0x80, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x0, 0x0, 0x3, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x0, 0x7, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x3, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0x80, 0x0, 0x7, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xe0, 0x0, 0x3, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x80, 0x0, 0xf, 0xff, 0x0, 0xff, 0x80, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x1f, 0xfe, 0x3, 0xff, 0x0, 0x0, 0x3, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x3f, 0xf8, 0x7, 0xfe, 0x0, 0x0, 0x7, 0xff, 0xff, 0xe0, 0x0, 0x0, 0xff, 0xf0, 0xf, 0xfc, 0x0, 0x0, 0xf, 0xff, 0xff, 0x80, 0x0, 0x1, 0xff, 0xe0, 0x1f, 0xf0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0x0, 0x0, 0x3, 0xff, 0x80, 0x7f, 0xe0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0x0, 0x0, 0xf, 0xff, 0x0, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x0, 0x0, 0x1f, 0xfc, 0x1, 0xff, 0x80, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x3f, 0xf8, 0x3, 0xff, 0x0, 0x0, 0x1, 0xff, 0xff, 0xff, 0x0, 0x0, 0xff, 0xf0, 0xf, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0x0, 0x1, 0xff, 0xc0, 0x1f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x3, 0xff, 0x80, 0x3f, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0xf, 0xff, 0x0, 0x7f, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x1f, 0xfc, 0x1, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xf8, 0x0, 0x7f, 0xf8, 0x3, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xf0, 0x0, 0xff, 0xf0, 0x7, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xe0, 0x1, 0xff, 0xc0, 0xf, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xc0, 0x7, 0xff, 0x80, 0x3f, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0x80, 0xf, 0xff, 0x0, 0x7f, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0x0, 0x1f, 0xfc, 0x0, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xfe, 0x0, 0x7f, 0xf8, 0x1, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0xf, 0xfc, 0x0, 0xff, 0xf0, 0x7, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xf8, 0x1, 0xff, 0xc0, 0xf, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xf0, 0x7, 0xff, 0x80, 0x1f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xe0, 0xf, 0xff, 0x0, 0x3f, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xc0, 0x1f, 0xfc, 0x0, 0xff, 0xe0, 0x7f, 0xe0, 0x0, 0x0, 0x1, 0xff, 0x80, 0x7f, 0xf8, 0x1, 0xff, 0x80, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0x0, 0xff, 0xe0, 0x3, 0xff, 0x1, 0xff, 0x80, 0x0, 0x0, 0xf, 0xfe, 0x1, 0xff, 0xc0, 0x7, 0xfe, 0x3, 0xff, 0x0, 0x0, 0x0, 0x1f, 0xfc, 0x7, 0xff, 0x80, 0x1f, 0xfc, 0x7, 0xfe, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0xf, 0xfe, 0x0, 0x3f, 0xf0, 0xf, 0xfc, 0x0, 0x0, 0x3, 0xff, 0xe0, 0x3f, 0xfc, 0x0, 0x7f, 0xe0, 0x1f, 0xf8, 0xf, 0xff, 0xff, 0xff, 0xc0, 0x7f, 0xf8, 0x0, 0xff, 0xc0, 0x3f, 0xf0, 0x1f, 0xff, 0xff, 0xff, 0x0, 0xff, 0xe0, 0x3, 0xff, 0x80, 0x7f, 0xe0, 0x3f, 0xff, 0xff, 0xfe, 0x3, 0xff, 0xc0, 0x7, 0xfe, 0x0, 0xff, 0xc0, 0x7f, 0xff, 0xff, 0xf8, 0x7, 0xff, 0x80, 0xf, 0xfc, 0x1, 0xff, 0x80, 0xff, 0xff, 0xff, 0xf0, 0xf, 0xfe, 0x0, 0x1f, 0xf8, 0x3, 0xff, 0x1, 0xff, 0xff, 0xff, 0xc0, 0x3f, 0xfc, 0x0, 0x7f, 0xf0, 0x7, 0xfe, 0x3, 0xff, 0xff, 0xfe, 0x0, 0x7f, 0xf8, 0x0, 0xff, 0xe0, 0xf, 0xfc, 0x7, 0xff, 0xff, 0xf0, 0x0, 0xff, 0xe0, 0x1, 0xff, 0x80, 0x1f, 0xf8, 0xf, 0xff, 0xfe, 0x0, 0x3, 0xff, 0xc0, 0x3, 0xff, 0x0, 0x3f, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0xf, 0xfe, 0x0, 0x7f, 0xe0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x1f, 0xfc, 0x0, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x3f, 0xf0, 0x1, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x7f, 0xe0, 0x3, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xe0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x1, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x7, 0xff, 0x0, 0x3, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0x80, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x7, 0xff, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0xf, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xf0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xe0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0x80, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x7, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xfc, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xf8, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xf0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xe0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0x80, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xfe, 0x0, 0x0, 0x0, 0x3, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, /* U+00BF "¿" */ 0x0, 0x0, 0xff, 0xfc, 0x0, 0x0, 0x3, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xc0, 0x0, 0x0, 0x3f, 0xff, 0x0, 0x0, 0x0, 0xff, 0xfc, 0x0, 0x0, 0x3, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xc0, 0x0, 0x0, 0x3f, 0xff, 0x0, 0x0, 0x0, 0xff, 0xfc, 0x0, 0x0, 0x3, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xc0, 0x0, 0x0, 0x3f, 0xff, 0x0, 0x0, 0x0, 0xff, 0xfc, 0x0, 0x0, 0x3, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x1, 0xff, 0xf8, 0x0, 0x0, 0x7, 0xff, 0xe0, 0x0, 0x0, 0x3f, 0xff, 0x80, 0x0, 0x1, 0xff, 0xfc, 0x0, 0x0, 0xf, 0xff, 0xe0, 0x0, 0x0, 0x7f, 0xff, 0x0, 0x0, 0x3, 0xff, 0xf8, 0x0, 0x0, 0x1f, 0xff, 0xc0, 0x0, 0x0, 0xff, 0xff, 0x0, 0x0, 0x7, 0xff, 0xf8, 0x0, 0x0, 0x3f, 0xff, 0xc0, 0x0, 0x0, 0xff, 0xfe, 0x0, 0x0, 0x7, 0xff, 0xf0, 0x0, 0x0, 0x3f, 0xff, 0x80, 0x0, 0x1, 0xff, 0xfc, 0x0, 0x0, 0x7, 0xff, 0xf0, 0x0, 0x0, 0x3f, 0xff, 0x80, 0x0, 0x1, 0xff, 0xfc, 0x0, 0x0, 0x7, 0xff, 0xe0, 0x0, 0x0, 0x1f, 0xff, 0x0, 0x0, 0x0, 0xff, 0xfc, 0x0, 0x0, 0x3, 0xff, 0xe0, 0x0, 0x0, 0xf, 0xff, 0x80, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0xf, 0xff, 0x80, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x7f, 0xfc, 0x0, 0x0, 0x1, 0xff, 0xf0, 0x0, 0x0, 0x3, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xf0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xfc, 0x7f, 0xff, 0xff, 0xff, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xc1, 0xff, 0xff, 0xff, 0xff, 0x3, 0xff, 0xff, 0xff, 0xfc, 0x7, 0xff, 0xff, 0xff, 0xf0, 0xf, 0xff, 0xff, 0xff, 0xc0, 0xf, 0xff, 0xff, 0xff, 0x0, 0x7, 0xff, 0xff, 0xfc, 0x0, 0x1, 0xff, 0xff, 0xf0, /* U+00C0 "À" */ 0x0, 0x3, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xfe, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xfe, 0x7f, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xfe, 0x7f, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xfe, 0x7f, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xfe, 0x7f, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xfc, 0x7f, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xfc, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfc, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfc, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfc, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xf8, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xf8, 0x1f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xf8, 0x1f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xf8, 0x1f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xf0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xf0, 0xf, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0xf, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0xf, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xe0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xe0, 0x7, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xe0, 0x7, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xe0, 0x7, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xe0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x3, 0xff, 0x80, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x3, 0xff, 0x80, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0x80, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0x80, 0x1, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0x80, 0x1, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0x80, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x7, 0xff, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x7, 0xff, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x0, 0x7, 0xff, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x3, 0xff, 0xe0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x1, 0xff, 0xe0, 0xf, 0xff, 0x80, 0x0, 0x0, 0x1, 0xff, 0xf0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x1, 0xff, 0xf0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf8, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf8, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x3f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xfc, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xfc, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x7f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x7f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, /* U+00C1 "Á" */ 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xfe, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xfe, 0x7f, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xfe, 0x7f, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xfe, 0x7f, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xfc, 0x7f, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xfc, 0x7f, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xfc, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfc, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfc, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xf8, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xf8, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xf8, 0x1f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xf8, 0x1f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xf0, 0x1f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xf0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xf0, 0xf, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0xf, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xe0, 0xf, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xe0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xe0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xe0, 0x7, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xc0, 0x7, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xc0, 0x7, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xc0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x3, 0xff, 0x80, 0x0, 0x0, 0x1, 0xff, 0x80, 0x3, 0xff, 0x80, 0x0, 0x0, 0x1, 0xff, 0x80, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0x80, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0x80, 0x1, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x7, 0xff, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x7, 0xff, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x7, 0xfe, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x0, 0x7, 0xfe, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xfc, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xfc, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x1f, 0xf8, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x1f, 0xf8, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xf0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xf0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x3, 0xff, 0xe0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x1, 0xff, 0xe0, 0xf, 0xff, 0x80, 0x0, 0x0, 0x1, 0xff, 0xf0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x1, 0xff, 0xf0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf8, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf8, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x3f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xfc, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xfc, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x7f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x7f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, /* U+00C2 "Â" */ 0x0, 0x0, 0x0, 0x7f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfe, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xfc, 0x7f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf8, 0x3f, 0xff, 0x0, 0x0, 0x0, 0x1, 0xff, 0xf8, 0x1f, 0xff, 0x80, 0x0, 0x0, 0x3, 0xff, 0xf0, 0xf, 0xff, 0xc0, 0x0, 0x0, 0x7, 0xff, 0xe0, 0x7, 0xff, 0xe0, 0x0, 0x0, 0xf, 0xff, 0xc0, 0x3, 0xff, 0xe0, 0x0, 0x0, 0x1f, 0xff, 0x80, 0x1, 0xff, 0xf0, 0x0, 0x0, 0x3f, 0xff, 0x0, 0x0, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xfe, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xfe, 0x7f, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xfe, 0x7f, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xfe, 0x7f, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xfe, 0x7f, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xfc, 0x7f, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xfc, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfc, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfc, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfc, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xf8, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xf8, 0x1f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xf8, 0x1f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xf8, 0x1f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xf0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xf0, 0xf, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0xf, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0xf, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xe0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xe0, 0x7, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xe0, 0x7, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xe0, 0x7, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xe0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x3, 0xff, 0x80, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x3, 0xff, 0x80, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0x80, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0x80, 0x1, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0x80, 0x1, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0x80, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x7, 0xff, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x7, 0xff, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x0, 0x7, 0xff, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x3, 0xff, 0xe0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x1, 0xff, 0xe0, 0xf, 0xff, 0x80, 0x0, 0x0, 0x1, 0xff, 0xf0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x1, 0xff, 0xf0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf8, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf8, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x3f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xfc, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xfc, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x7f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x7f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, /* U+00C3 "Ã" */ 0x0, 0x0, 0xf, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x1, 0x80, 0x0, 0x0, 0x1f, 0xff, 0xf8, 0x0, 0x1e, 0x0, 0x0, 0x1, 0xff, 0xff, 0xf8, 0x1, 0xf8, 0x0, 0x0, 0xf, 0xff, 0xff, 0xfc, 0x1f, 0xe0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0x80, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x3, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x3f, 0xe0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0xfc, 0x0, 0x3f, 0xff, 0xfc, 0x0, 0x0, 0x3, 0xc0, 0x0, 0x3f, 0xff, 0xc0, 0x0, 0x0, 0xc, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0x7f, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xfd, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xf3, 0xff, 0x80, 0x0, 0x0, 0x0, 0x1, 0xff, 0xcf, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xf8, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xe1, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x3, 0xff, 0x87, 0xff, 0x0, 0x0, 0x0, 0x0, 0xf, 0xfe, 0x1f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xf0, 0x7f, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xc1, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x3, 0xff, 0x80, 0x0, 0x0, 0x0, 0x1f, 0xfc, 0xf, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x1, 0xff, 0x80, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x7, 0xfe, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x3f, 0xf8, 0x7, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xe0, 0x1f, 0xfc, 0x0, 0x0, 0x0, 0x3, 0xff, 0x80, 0x7f, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xfc, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0x3, 0xff, 0x80, 0x0, 0x0, 0x1, 0xff, 0xc0, 0xf, 0xfe, 0x0, 0x0, 0x0, 0x7, 0xff, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xe0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0x80, 0x7, 0xff, 0x0, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x7, 0xff, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0xf, 0xfe, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x7, 0xff, 0x0, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x1, 0xff, 0xc0, 0x0, 0xf, 0xfe, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x3, 0xff, 0x80, 0x0, 0xf, 0xff, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x7, 0xff, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x7, 0xff, 0x80, 0x0, 0x0, 0xf, 0xff, 0x80, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x7, 0xff, 0xc0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0xf, 0xff, 0x81, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x7, 0xff, 0xc3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf1, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xe7, 0xff, 0x80, 0x0, 0x0, 0x0, 0xf, 0xff, 0x9f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xfb, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xfc, /* U+00C4 "Ä" */ 0x0, 0xf, 0xff, 0x0, 0x0, 0xff, 0xc0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x1, 0xff, 0x80, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x3, 0xff, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x7, 0xff, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0xf, 0xfe, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xef, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0x9f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x7, 0xfe, 0x7f, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfc, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xf8, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xe1, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xc3, 0xff, 0x80, 0x0, 0x0, 0x0, 0x3, 0xff, 0x87, 0xff, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xf, 0xfe, 0xf, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xf8, 0x1f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0xff, 0xe0, 0x7f, 0xf0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x7f, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0x0, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x7, 0xfe, 0x1, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x1f, 0xfc, 0x3, 0xff, 0x80, 0x0, 0x0, 0x0, 0x3f, 0xf8, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0x7, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xc0, 0xf, 0xfe, 0x0, 0x0, 0x0, 0x3, 0xff, 0x80, 0x1f, 0xfc, 0x0, 0x0, 0x0, 0x7, 0xff, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0xff, 0xe0, 0x0, 0x0, 0x0, 0xff, 0xe0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0x80, 0x3, 0xff, 0x80, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x7, 0xff, 0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x3, 0xff, 0x80, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0x7, 0xff, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x3, 0xff, 0x80, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x1, 0xff, 0xc0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x7, 0xff, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0xf, 0xfe, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x7, 0xff, 0x80, 0x0, 0x0, 0xf, 0xff, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x7f, 0xfc, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x1, 0xff, 0xe0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x3, 0xff, 0xe0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x7, 0xff, 0xc0, 0x7f, 0xfc, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x3f, 0xfe, 0xf, 0xff, 0x80, 0x0, 0x0, 0x0, 0x7f, 0xfc, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x1, 0xff, 0xf1, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xe3, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x7, 0xff, 0x8f, 0xff, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x9f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x7f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfe, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfd, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xfc, /* U+00C5 "Å" */ 0x0, 0x0, 0x0, 0x1f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xf8, 0x1f, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xf0, 0xf, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xf0, 0x7, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xe0, 0x7, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xe0, 0x7, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xe0, 0x7, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xe0, 0x7, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xe0, 0x7, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xe0, 0x7, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xe0, 0x7, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xe0, 0x7, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xe0, 0x7, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xf0, 0x7, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xf0, 0xf, 0xf8, 0x0, 0x0, 0x0, 0x0, 0xf, 0xf8, 0x1f, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xfe, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xfe, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xfe, 0x7f, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xfe, 0x7f, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xfe, 0x7f, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xfc, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0xf, 0xfc, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfc, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfc, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xf8, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xf8, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xf8, 0x1f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xf8, 0x1f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xf8, 0x1f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xf0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0xf, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0xf, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0xf, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xe0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xe0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xe0, 0x7, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xe0, 0x7, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xe0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x3, 0xff, 0x80, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0x80, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0x80, 0x1, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0x80, 0x1, 0xff, 0xc0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x7, 0xff, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x7, 0xff, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x7, 0xff, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x0, 0x7, 0xff, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x3, 0xff, 0xe0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x1, 0xff, 0xe0, 0xf, 0xff, 0x80, 0x0, 0x0, 0x1, 0xff, 0xe0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x1, 0xff, 0xf0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf8, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf8, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x3f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xfc, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xfc, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x7f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, /* U+00C6 "Æ" */ 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xfe, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xbf, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfd, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xc7, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf1, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xf, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x7f, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfc, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0x1f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x7, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x3, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x0, 0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x0, 0x7, 0xff, 0x80, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x0, 0x1, 0xff, 0xc0, 0x0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xf8, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xcf, 0xff, 0x80, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xf3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xbf, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xfd, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xef, 0xff, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, /* U+00C7 "Ç" */ 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x7f, 0xff, 0xff, 0xfc, 0x0, 0x3f, 0xff, 0xff, 0xff, 0x80, 0x1f, 0xff, 0xff, 0xff, 0xf0, 0xf, 0xff, 0xff, 0xff, 0xfe, 0x3, 0xff, 0xff, 0xff, 0xff, 0xc0, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xf, 0xff, 0xff, 0xff, 0xff, 0xe1, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x7f, 0xff, 0xc0, 0x0, 0x0, 0x1f, 0xff, 0xe0, 0x0, 0x0, 0x3, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x7f, 0xfc, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x0, 0x3, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x7f, 0xfe, 0x0, 0x0, 0x0, 0xf, 0xff, 0xe0, 0x0, 0x0, 0x0, 0xff, 0xff, 0x80, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xe1, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x1f, 0xff, 0xff, 0xff, 0xff, 0x81, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x1f, 0xff, 0xff, 0xff, 0xfe, 0x1, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x1f, 0xff, 0xff, 0xff, 0xf8, 0x0, 0xff, 0xff, 0xff, 0xff, 0x0, 0x3, 0xff, 0xff, 0xff, 0xe0, 0x0, 0x7, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x7f, 0xe0, 0x0, 0x0, 0x0, 0xf, 0xfc, 0x0, 0x0, 0x0, 0x1, 0xff, 0x80, 0x0, 0x0, 0x0, 0x3f, 0xff, 0x80, 0x0, 0x0, 0x7, 0xff, 0xfe, 0x0, 0x0, 0x0, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x1f, 0xff, 0xfe, 0x0, 0x0, 0x3, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x7f, 0xff, 0xfc, 0x0, 0x0, 0xf, 0xff, 0xff, 0x80, 0x0, 0x1, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x7, 0xff, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xe0, 0x0, 0x0, 0x0, 0xf, 0xfc, 0x0, 0x0, 0x0, 0x1, 0xff, 0x80, 0x0, 0x0, 0x0, 0x3f, 0xf0, 0x0, 0x0, 0x0, 0x7, 0xfe, 0x0, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xc0, 0x0, 0x3, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x0, 0x0, 0xf, 0xff, 0xff, 0xc0, 0x0, 0x1, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x3f, 0xff, 0xfc, 0x0, 0x0, 0x7, 0xff, 0xff, 0x0, 0x0, 0x0, 0xff, 0xff, 0x0, 0x0, /* U+00C8 "È" */ 0xf, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0x80, 0x0, 0x0, 0x0, 0x7f, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x1, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x1, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x3, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xe0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x80, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xf8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8f, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xf8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8f, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xf8, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, /* U+00C9 "É" */ 0x0, 0x0, 0x0, 0xf, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0x80, 0x0, 0x0, 0x3, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x7, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x80, 0x0, 0x0, 0x0, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x7, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x0, 0x1, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x80, 0x0, 0x0, 0x0, 0x7f, 0xfc, 0x0, 0x0, 0x0, 0x3, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xf8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8f, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xf8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8f, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xf8, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, /* U+00CA "Ê" */ 0x0, 0x0, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x7, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xe0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x7, 0xff, 0xff, 0x80, 0x0, 0x0, 0x3f, 0xff, 0xff, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0xf, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x7f, 0xfc, 0xff, 0xf8, 0x0, 0x3, 0xff, 0xe3, 0xff, 0xf0, 0x0, 0x1f, 0xff, 0x7, 0xff, 0xe0, 0x0, 0xff, 0xf8, 0xf, 0xff, 0xc0, 0x7, 0xff, 0xe0, 0x1f, 0xff, 0x80, 0x3f, 0xff, 0x0, 0x3f, 0xff, 0x1, 0xff, 0xf8, 0x0, 0x7f, 0xfe, 0xf, 0xff, 0xc0, 0x0, 0xff, 0xfc, 0x3f, 0xfe, 0x0, 0x1, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xf8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8f, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xf8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8f, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xf8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, /* U+00CB "Ë" */ 0x1f, 0xfe, 0x0, 0x1, 0xff, 0xe0, 0x7f, 0xf8, 0x0, 0x7, 0xff, 0x81, 0xff, 0xe0, 0x0, 0x1f, 0xfe, 0x7, 0xff, 0x80, 0x0, 0x7f, 0xf8, 0x1f, 0xfe, 0x0, 0x1, 0xff, 0xe0, 0x7f, 0xf8, 0x0, 0x7, 0xff, 0x81, 0xff, 0xe0, 0x0, 0x1f, 0xfe, 0x7, 0xff, 0x80, 0x0, 0x7f, 0xf8, 0x1f, 0xfe, 0x0, 0x1, 0xff, 0xe0, 0x7f, 0xf8, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xf0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, /* U+00CC "Ì" */ 0xff, 0xff, 0x0, 0x0, 0x3f, 0xff, 0xc0, 0x0, 0xf, 0xff, 0xf0, 0x0, 0x3, 0xff, 0xf8, 0x0, 0x0, 0x7f, 0xfe, 0x0, 0x0, 0x1f, 0xff, 0x80, 0x0, 0x7, 0xff, 0xe0, 0x0, 0x1, 0xff, 0xf8, 0x0, 0x0, 0x7f, 0xfe, 0x0, 0x0, 0x1f, 0xff, 0x80, 0x0, 0x3, 0xff, 0xe0, 0x0, 0x0, 0xff, 0xf8, 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0xf, 0xff, 0x80, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xfd, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0x7f, 0xff, 0xff, 0xff, 0xbf, 0xff, 0xff, 0xff, 0xdf, 0xff, 0xff, 0xff, 0xef, 0xff, 0xff, 0xff, 0xf7, 0xff, 0xff, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x3, 0xff, 0xc0, 0x7, 0xff, 0xff, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xfd, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0x7f, 0xff, 0xff, 0xff, 0xbf, 0xff, 0xff, 0xff, 0xdf, 0xff, 0xff, 0xff, 0xef, 0xff, 0xff, 0xff, 0xf7, 0xff, 0xff, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xfc, /* U+00CD "Í" */ 0x0, 0x0, 0x7f, 0xff, 0x80, 0x0, 0x7f, 0xff, 0x0, 0x0, 0x7f, 0xff, 0x0, 0x0, 0x7f, 0xff, 0x0, 0x0, 0x7f, 0xff, 0x0, 0x0, 0x7f, 0xff, 0x0, 0x0, 0x7f, 0xff, 0x0, 0x0, 0x7f, 0xfe, 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xff, 0xf7, 0xff, 0xff, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xfd, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0x7f, 0xff, 0xff, 0xff, 0xbf, 0xff, 0xff, 0xff, 0xdf, 0xff, 0xff, 0xff, 0xef, 0xff, 0xff, 0xff, 0xf7, 0xff, 0xff, 0xff, 0xf8, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x7, 0xff, 0x80, 0xf, 0xff, 0xff, 0xff, 0xf7, 0xff, 0xff, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xfd, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0x7f, 0xff, 0xff, 0xff, 0xbf, 0xff, 0xff, 0xff, 0xdf, 0xff, 0xff, 0xff, 0xef, 0xff, 0xff, 0xff, 0xf7, 0xff, 0xff, 0xff, 0xf8, /* U+00CE "Î" */ 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x80, 0x0, 0x0, 0x3, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xe0, 0x0, 0x0, 0xf, 0xff, 0xff, 0x0, 0x0, 0x1, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x7, 0xff, 0xff, 0xfe, 0x0, 0x0, 0xff, 0xf9, 0xff, 0xf0, 0x0, 0x1f, 0xff, 0x1f, 0xff, 0x80, 0x3, 0xff, 0xf0, 0xff, 0xfc, 0x0, 0x7f, 0xfe, 0x7, 0xff, 0xe0, 0xf, 0xff, 0xc0, 0x3f, 0xff, 0x1, 0xff, 0xf8, 0x1, 0xff, 0xf8, 0x3f, 0xff, 0x0, 0xf, 0xff, 0xc7, 0xff, 0xe0, 0x0, 0x7f, 0xfe, 0xff, 0xfc, 0x0, 0x3, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xc0, 0x3, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xc0, 0x3, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xc0, 0x3, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xc0, 0x3, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xc0, 0x3, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xc0, 0x3, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xc0, 0x3, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xc0, 0x3, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xc0, 0x3, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xc0, 0x3, 0xff, 0xff, 0xff, 0xfc, 0x0, /* U+00CF "Ï" */ 0xff, 0xf0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xff, 0xf0, 0xf, 0xff, 0xff, 0xff, 0xf0, 0xf, 0xff, 0xff, 0xff, 0xf0, 0xf, 0xff, 0xff, 0xff, 0xf0, 0xf, 0xff, 0xff, 0xff, 0xf0, 0xf, 0xff, 0xff, 0xff, 0xf0, 0xf, 0xff, 0xff, 0xff, 0xf0, 0xf, 0xff, 0xff, 0xff, 0xf0, 0xf, 0xff, 0xff, 0xff, 0xf0, 0xf, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0xf, 0xff, 0xff, 0xff, 0xf0, 0xf, 0xff, 0xff, 0xff, 0xf0, 0xf, 0xff, 0xff, 0xff, 0xf0, 0xf, 0xff, 0xff, 0xff, 0xf0, 0xf, 0xff, 0xff, 0xff, 0xf0, 0xf, 0xff, 0xff, 0xff, 0xf0, 0xf, 0xff, 0xff, 0xff, 0xf0, 0xf, 0xff, 0xff, 0xff, 0xf0, 0xf, 0xff, 0xff, 0xff, 0xf0, 0xf, 0xff, 0xff, 0xff, 0xf0, /* U+00D0 "Ð" */ 0x0, 0x7f, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0x80, 0x0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x7f, 0xff, 0xc0, 0x7, 0xff, 0x80, 0x0, 0x0, 0xff, 0xfc, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x7, 0xff, 0xe0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x1, 0xff, 0xf0, 0x7, 0xff, 0x80, 0x0, 0x0, 0xf, 0xff, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x7, 0xff, 0x80, 0x0, 0x0, 0xf, 0xff, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x7, 0xff, 0x80, 0x0, 0x0, 0xf, 0xff, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x7, 0xff, 0x80, 0x0, 0x0, 0xf, 0xff, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x7, 0xff, 0x80, 0x0, 0x0, 0xf, 0xff, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x7, 0xff, 0x80, 0x0, 0x0, 0xf, 0xff, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x7, 0xff, 0x80, 0x0, 0x0, 0xf, 0xff, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x7, 0xff, 0x80, 0x0, 0x0, 0xf, 0xff, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x7, 0xff, 0x80, 0x0, 0x0, 0xf, 0xff, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x7, 0xff, 0x80, 0x0, 0x0, 0xf, 0xff, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x7, 0xff, 0x80, 0x0, 0x0, 0xf, 0xff, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x7, 0xff, 0x80, 0x0, 0x0, 0xf, 0xff, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x7, 0xff, 0x80, 0x0, 0x0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0xf, 0xff, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x7, 0xff, 0x80, 0x0, 0x0, 0xf, 0xff, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x7, 0xff, 0x80, 0x0, 0x0, 0xf, 0xff, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x7, 0xff, 0x80, 0x0, 0x0, 0xf, 0xff, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x7, 0xff, 0x80, 0x0, 0x0, 0xf, 0xff, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x7, 0xff, 0x80, 0x0, 0x0, 0xf, 0xff, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x7, 0xff, 0x80, 0x0, 0x0, 0xf, 0xff, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x7, 0xff, 0x80, 0x0, 0x0, 0xf, 0xff, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x7, 0xff, 0x80, 0x0, 0x0, 0xf, 0xff, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x7, 0xff, 0x80, 0x0, 0x0, 0xf, 0xff, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x7, 0xff, 0x80, 0x0, 0x0, 0xf, 0xff, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x7, 0xff, 0x80, 0x0, 0x0, 0xf, 0xff, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x7, 0xff, 0x80, 0x0, 0x0, 0xf, 0xff, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x7, 0xff, 0x80, 0x0, 0x0, 0xf, 0xff, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x7, 0xff, 0x80, 0x0, 0x0, 0xf, 0xff, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x7, 0xff, 0x80, 0x0, 0x0, 0xf, 0xff, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x3, 0xff, 0xe0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x7f, 0xfe, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0xf, 0xff, 0xe0, 0x7, 0xff, 0x80, 0x0, 0x3, 0xff, 0xfc, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0x7, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x0, /* U+00D1 "Ñ" */ 0x0, 0x0, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x60, 0x0, 0x7, 0xff, 0xfc, 0x0, 0xf, 0x0, 0x1, 0xff, 0xff, 0xfc, 0x0, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x3f, 0xc0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0x80, 0x1, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, 0xf, 0xf8, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x7e, 0x0, 0x1f, 0xff, 0xfe, 0x0, 0x3, 0xc0, 0x0, 0x3f, 0xff, 0xc0, 0x0, 0x18, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xe0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0x80, 0x0, 0x7, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xe0, 0x0, 0x1, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0xf, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xe0, 0x0, 0x3, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x7, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x1, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x0, 0xf, 0xff, 0xff, 0xf7, 0xfe, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xbf, 0xf8, 0x0, 0x3, 0xff, 0xff, 0xfd, 0xff, 0xc0, 0x0, 0x1f, 0xff, 0xff, 0xef, 0xfe, 0x0, 0x0, 0xff, 0xff, 0xff, 0x3f, 0xf0, 0x0, 0x7, 0xff, 0xff, 0xf9, 0xff, 0xc0, 0x0, 0x3f, 0xff, 0xff, 0xcf, 0xfe, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x7f, 0xf0, 0x0, 0xf, 0xff, 0xff, 0xf1, 0xff, 0x80, 0x0, 0x7f, 0xff, 0xff, 0x8f, 0xfe, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x7f, 0xf0, 0x0, 0x1f, 0xff, 0xff, 0xe3, 0xff, 0x80, 0x0, 0xff, 0xff, 0xff, 0xf, 0xfc, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x7f, 0xf0, 0x0, 0x3f, 0xff, 0xff, 0xc3, 0xff, 0x80, 0x1, 0xff, 0xff, 0xfe, 0x1f, 0xfc, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x7f, 0xe0, 0x0, 0x7f, 0xff, 0xff, 0x83, 0xff, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x1f, 0xfc, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0xff, 0xe0, 0x0, 0xff, 0xff, 0xff, 0x7, 0xff, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x1f, 0xf8, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0xff, 0xe0, 0x1, 0xff, 0xff, 0xfe, 0x7, 0xff, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x3f, 0xf8, 0x0, 0x7f, 0xff, 0xff, 0x80, 0xff, 0xc0, 0x3, 0xff, 0xff, 0xfc, 0x7, 0xff, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x3f, 0xf8, 0x0, 0xff, 0xff, 0xff, 0x1, 0xff, 0xc0, 0x7, 0xff, 0xff, 0xf8, 0x7, 0xfe, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x3f, 0xf8, 0x1, 0xff, 0xff, 0xfe, 0x1, 0xff, 0xc0, 0xf, 0xff, 0xff, 0xf0, 0xf, 0xfe, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x3f, 0xf0, 0x3, 0xff, 0xff, 0xfc, 0x1, 0xff, 0x80, 0x1f, 0xff, 0xff, 0xe0, 0xf, 0xfe, 0x0, 0xff, 0xff, 0xff, 0x0, 0x7f, 0xf0, 0x7, 0xff, 0xff, 0xf8, 0x3, 0xff, 0x80, 0x3f, 0xff, 0xff, 0xc0, 0xf, 0xfc, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x7f, 0xf0, 0xf, 0xff, 0xff, 0xf0, 0x3, 0xff, 0x80, 0x7f, 0xff, 0xff, 0x80, 0x1f, 0xfc, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x7f, 0xe0, 0x1f, 0xff, 0xff, 0xe0, 0x3, 0xff, 0x80, 0xff, 0xff, 0xff, 0x0, 0x1f, 0xfc, 0x7, 0xff, 0xff, 0xf8, 0x0, 0xff, 0xe0, 0x3f, 0xff, 0xff, 0xc0, 0x3, 0xff, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x1f, 0xfc, 0xf, 0xff, 0xff, 0xf0, 0x0, 0xff, 0xe0, 0x7f, 0xff, 0xff, 0x80, 0x7, 0xff, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x1f, 0xf8, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0xff, 0xe0, 0xff, 0xff, 0xff, 0x0, 0x7, 0xff, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x3f, 0xf8, 0x3f, 0xff, 0xff, 0xc0, 0x1, 0xff, 0xc1, 0xff, 0xff, 0xfe, 0x0, 0x7, 0xfe, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x3f, 0xf8, 0x7f, 0xff, 0xff, 0x80, 0x1, 0xff, 0xc3, 0xff, 0xff, 0xfc, 0x0, 0xf, 0xfe, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x3f, 0xf0, 0xff, 0xff, 0xff, 0x0, 0x1, 0xff, 0xc7, 0xff, 0xff, 0xf8, 0x0, 0xf, 0xfe, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x7f, 0xf1, 0xff, 0xff, 0xfe, 0x0, 0x1, 0xff, 0x8f, 0xff, 0xff, 0xf0, 0x0, 0xf, 0xfe, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x7f, 0xf3, 0xff, 0xff, 0xfc, 0x0, 0x3, 0xff, 0x9f, 0xff, 0xff, 0xe0, 0x0, 0xf, 0xfc, 0xff, 0xff, 0xff, 0x0, 0x0, 0x7f, 0xf7, 0xff, 0xff, 0xf8, 0x0, 0x3, 0xff, 0xbf, 0xff, 0xff, 0xc0, 0x0, 0x1f, 0xfd, 0xff, 0xff, 0xfe, 0x0, 0x0, 0xff, 0xef, 0xff, 0xff, 0xf0, 0x0, 0x3, 0xff, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x0, 0x7, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x7, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0x80, 0x0, 0x7, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xe0, 0x0, 0x1, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0x7, 0xff, 0xff, 0x80, /* U+00D2 "Ò" */ 0x0, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x3, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x7, 0xff, 0xfc, 0x0, 0x7, 0xff, 0xfc, 0x1f, 0xff, 0xc0, 0x0, 0x1, 0xff, 0xfc, 0x3f, 0xff, 0x0, 0x0, 0x1, 0xff, 0xf8, 0x7f, 0xfc, 0x0, 0x0, 0x1, 0xff, 0xf1, 0xff, 0xf0, 0x0, 0x0, 0x1, 0xff, 0xf3, 0xff, 0xc0, 0x0, 0x0, 0x1, 0xff, 0xe7, 0xff, 0x80, 0x0, 0x0, 0x3, 0xff, 0xdf, 0xfe, 0x0, 0x0, 0x0, 0x3, 0xff, 0xbf, 0xfc, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x1, 0xff, 0xcf, 0xff, 0x0, 0x0, 0x0, 0x7, 0xff, 0x9f, 0xfe, 0x0, 0x0, 0x0, 0xf, 0xff, 0x3f, 0xfe, 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x3f, 0xfe, 0x0, 0x0, 0x0, 0xff, 0xf8, 0x7f, 0xfe, 0x0, 0x0, 0x3, 0xff, 0xf0, 0xff, 0xfe, 0x0, 0x0, 0xf, 0xff, 0xe0, 0xff, 0xff, 0x80, 0x0, 0xff, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x1, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x3, 0xff, 0xfe, 0x0, 0x0, 0x0, /* U+00D3 "Ó" */ 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x3, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x7, 0xff, 0xfc, 0x0, 0x7, 0xff, 0xfc, 0x1f, 0xff, 0xc0, 0x0, 0x1, 0xff, 0xfc, 0x3f, 0xff, 0x0, 0x0, 0x1, 0xff, 0xf8, 0x7f, 0xfc, 0x0, 0x0, 0x1, 0xff, 0xf1, 0xff, 0xf0, 0x0, 0x0, 0x1, 0xff, 0xf3, 0xff, 0xc0, 0x0, 0x0, 0x1, 0xff, 0xe7, 0xff, 0x80, 0x0, 0x0, 0x3, 0xff, 0xdf, 0xfe, 0x0, 0x0, 0x0, 0x3, 0xff, 0xbf, 0xfc, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x1, 0xff, 0xcf, 0xff, 0x0, 0x0, 0x0, 0x7, 0xff, 0x9f, 0xfe, 0x0, 0x0, 0x0, 0xf, 0xff, 0x3f, 0xfe, 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x3f, 0xfe, 0x0, 0x0, 0x0, 0xff, 0xf8, 0x7f, 0xfe, 0x0, 0x0, 0x3, 0xff, 0xf0, 0xff, 0xfe, 0x0, 0x0, 0xf, 0xff, 0xe0, 0xff, 0xff, 0x80, 0x0, 0xff, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x1, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x3, 0xff, 0xfe, 0x0, 0x0, 0x0, /* U+00D4 "Ô" */ 0x0, 0x0, 0x7, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0x80, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x1, 0xff, 0xff, 0xff, 0x80, 0x0, 0x0, 0x7, 0xff, 0xcf, 0xff, 0x80, 0x0, 0x0, 0x1f, 0xff, 0x8f, 0xff, 0x80, 0x0, 0x0, 0x7f, 0xfe, 0xf, 0xff, 0x80, 0x0, 0x1, 0xff, 0xf8, 0x1f, 0xff, 0x80, 0x0, 0x7, 0xff, 0xe0, 0x1f, 0xff, 0x80, 0x0, 0x1f, 0xff, 0x80, 0x1f, 0xff, 0x80, 0x0, 0x3f, 0xfe, 0x0, 0x1f, 0xff, 0x80, 0x0, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0x80, 0x3, 0xff, 0xe0, 0x0, 0x1f, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x1, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0xf, 0xff, 0xf8, 0x0, 0xf, 0xff, 0xf8, 0x3f, 0xff, 0x80, 0x0, 0x3, 0xff, 0xf8, 0x7f, 0xfe, 0x0, 0x0, 0x3, 0xff, 0xf0, 0xff, 0xf8, 0x0, 0x0, 0x3, 0xff, 0xe3, 0xff, 0xe0, 0x0, 0x0, 0x3, 0xff, 0xe7, 0xff, 0x80, 0x0, 0x0, 0x3, 0xff, 0xcf, 0xff, 0x0, 0x0, 0x0, 0x7, 0xff, 0xbf, 0xfc, 0x0, 0x0, 0x0, 0x7, 0xff, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x3, 0xff, 0x9f, 0xfe, 0x0, 0x0, 0x0, 0xf, 0xff, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x7f, 0xfc, 0x0, 0x0, 0x0, 0x7f, 0xfc, 0x7f, 0xfc, 0x0, 0x0, 0x1, 0xff, 0xf0, 0xff, 0xfc, 0x0, 0x0, 0x7, 0xff, 0xe1, 0xff, 0xfc, 0x0, 0x0, 0x1f, 0xff, 0xc1, 0xff, 0xff, 0x0, 0x1, 0xff, 0xff, 0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x3, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x3, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x3, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x1, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xfc, 0x0, 0x0, 0x0, /* U+00D5 "Õ" */ 0x0, 0x0, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0xc, 0x0, 0x0, 0x7f, 0xff, 0xe0, 0x0, 0x38, 0x0, 0x3, 0xff, 0xff, 0xf0, 0x1, 0xf0, 0x0, 0xf, 0xff, 0xff, 0xfc, 0xf, 0xe0, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0x80, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x1, 0xff, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x3, 0xf0, 0x0, 0xff, 0xff, 0xf0, 0x0, 0x7, 0x80, 0x0, 0x7f, 0xff, 0x80, 0x0, 0xc, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x1, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x0, 0xf, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0x0, 0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x3, 0xff, 0xfe, 0x0, 0x3, 0xff, 0xfe, 0xf, 0xff, 0xe0, 0x0, 0x0, 0xff, 0xfe, 0x1f, 0xff, 0x80, 0x0, 0x0, 0xff, 0xfc, 0x3f, 0xfe, 0x0, 0x0, 0x0, 0xff, 0xf8, 0xff, 0xf8, 0x0, 0x0, 0x0, 0xff, 0xf9, 0xff, 0xe0, 0x0, 0x0, 0x0, 0xff, 0xf3, 0xff, 0xc0, 0x0, 0x0, 0x1, 0xff, 0xef, 0xff, 0x0, 0x0, 0x0, 0x1, 0xff, 0xdf, 0xfe, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0xff, 0xe7, 0xff, 0x80, 0x0, 0x0, 0x3, 0xff, 0xcf, 0xff, 0x0, 0x0, 0x0, 0x7, 0xff, 0x9f, 0xff, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x1f, 0xff, 0x0, 0x0, 0x0, 0x7f, 0xfc, 0x3f, 0xff, 0x0, 0x0, 0x1, 0xff, 0xf8, 0x7f, 0xff, 0x0, 0x0, 0x7, 0xff, 0xf0, 0x7f, 0xff, 0xc0, 0x0, 0x7f, 0xff, 0xc0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x0, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xff, 0x80, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0x0, 0x0, 0x0, /* U+00D6 "Ö" */ 0x0, 0xff, 0xf0, 0x0, 0xf, 0xff, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x1f, 0xfe, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x3f, 0xfc, 0x0, 0x7, 0xff, 0x80, 0x0, 0x7f, 0xf8, 0x0, 0xf, 0xff, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x1f, 0xfe, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x3f, 0xfc, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x7f, 0xf8, 0x0, 0x7, 0xff, 0x80, 0x0, 0xff, 0xf0, 0x0, 0xf, 0xff, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xff, 0x80, 0x0, 0x1, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x7f, 0xff, 0xc0, 0x0, 0x7f, 0xff, 0xc1, 0xff, 0xfc, 0x0, 0x0, 0x1f, 0xff, 0xc3, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xff, 0x87, 0xff, 0xc0, 0x0, 0x0, 0x1f, 0xff, 0x1f, 0xff, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x3f, 0xfd, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x3f, 0xfb, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1f, 0xfc, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x7f, 0xf9, 0xff, 0xe0, 0x0, 0x0, 0x0, 0xff, 0xf3, 0xff, 0xe0, 0x0, 0x0, 0x3, 0xff, 0xe3, 0xff, 0xe0, 0x0, 0x0, 0xf, 0xff, 0x87, 0xff, 0xe0, 0x0, 0x0, 0x3f, 0xff, 0xf, 0xff, 0xe0, 0x0, 0x0, 0xff, 0xfe, 0xf, 0xff, 0xf8, 0x0, 0xf, 0xff, 0xf8, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x0, 0xf, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x7, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xe0, 0x0, 0x0, /* U+00D7 "×" */ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc0, 0x0, 0x0, 0x0, 0x60, 0x0, 0xf0, 0x0, 0x0, 0x0, 0x78, 0x0, 0xfc, 0x0, 0x0, 0x0, 0x7e, 0x0, 0xff, 0x0, 0x0, 0x0, 0x7f, 0x80, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xe0, 0xff, 0xf0, 0x0, 0x0, 0x7f, 0xf8, 0xff, 0xfc, 0x0, 0x0, 0x7f, 0xfe, 0x7f, 0xff, 0x0, 0x0, 0x7f, 0xff, 0x1f, 0xff, 0xc0, 0x0, 0x7f, 0xff, 0x7, 0xff, 0xf0, 0x0, 0x7f, 0xff, 0x1, 0xff, 0xfc, 0x0, 0x7f, 0xff, 0x0, 0x7f, 0xff, 0x0, 0x7f, 0xff, 0x0, 0x1f, 0xff, 0xc0, 0x7f, 0xff, 0x0, 0xf, 0xff, 0xf0, 0x7f, 0xff, 0x80, 0x3, 0xff, 0xfc, 0x7f, 0xff, 0x80, 0x0, 0xff, 0xff, 0x7f, 0xff, 0x80, 0x0, 0x3f, 0xff, 0xff, 0xff, 0x80, 0x0, 0xf, 0xff, 0xff, 0xff, 0x80, 0x0, 0x3, 0xff, 0xff, 0xff, 0x80, 0x0, 0x0, 0xff, 0xff, 0xff, 0x80, 0x0, 0x0, 0x3f, 0xff, 0xff, 0x80, 0x0, 0x0, 0xf, 0xff, 0xff, 0x80, 0x0, 0x0, 0x3, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0x0, 0x0, 0x7f, 0xff, 0xbf, 0xff, 0xc0, 0x0, 0x7f, 0xff, 0x8f, 0xff, 0xf0, 0x0, 0x7f, 0xff, 0x83, 0xff, 0xfc, 0x0, 0x7f, 0xff, 0x80, 0xff, 0xff, 0x0, 0x7f, 0xff, 0x80, 0x3f, 0xff, 0xc0, 0x7f, 0xff, 0x80, 0xf, 0xff, 0xf0, 0x7f, 0xff, 0x80, 0x3, 0xff, 0xfc, 0x7f, 0xff, 0x80, 0x0, 0xff, 0xff, 0x3f, 0xff, 0x80, 0x0, 0x3f, 0xff, 0x8f, 0xff, 0x80, 0x0, 0xf, 0xff, 0x83, 0xff, 0x0, 0x0, 0x1, 0xff, 0x80, 0xff, 0x0, 0x0, 0x0, 0x7f, 0x80, 0x3f, 0x0, 0x0, 0x0, 0x1f, 0x80, 0xf, 0x0, 0x0, 0x0, 0x7, 0x80, 0x3, 0x0, 0x0, 0x0, 0x1, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, /* U+00D8 "Ø" */ 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x7, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xff, 0x80, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0x7, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x1, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xf, 0xff, 0xf8, 0x0, 0x3f, 0xff, 0xf8, 0x3f, 0xff, 0x80, 0x0, 0xff, 0xff, 0xf8, 0x7f, 0xfe, 0x0, 0x1, 0xff, 0xff, 0xf0, 0xff, 0xf8, 0x0, 0x3, 0xff, 0xff, 0xe3, 0xff, 0xe0, 0x0, 0x7, 0xff, 0xff, 0xe7, 0xff, 0x80, 0x0, 0x1f, 0xff, 0xff, 0xcf, 0xff, 0x0, 0x0, 0x3f, 0xff, 0xff, 0x9f, 0xfc, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x7f, 0xf8, 0x0, 0x0, 0xff, 0xcf, 0xff, 0xff, 0xf0, 0x0, 0x3, 0xff, 0x9f, 0xff, 0xff, 0xe0, 0x0, 0x7, 0xff, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0xf, 0xfe, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x3f, 0xf8, 0xff, 0xff, 0xff, 0x0, 0x0, 0x7f, 0xf1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0xff, 0xe3, 0xff, 0xff, 0xfc, 0x0, 0x1, 0xff, 0x87, 0xff, 0xff, 0xf8, 0x0, 0x7, 0xff, 0xf, 0xff, 0xff, 0xf0, 0x0, 0xf, 0xfe, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x1f, 0xfc, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x7f, 0xf0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0xff, 0xe0, 0xff, 0xff, 0xff, 0x0, 0x1, 0xff, 0xc1, 0xff, 0xff, 0xfe, 0x0, 0x3, 0xff, 0x83, 0xff, 0xff, 0xfc, 0x0, 0xf, 0xfe, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xfc, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x3f, 0xf8, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0xff, 0xe0, 0x3f, 0xff, 0xff, 0xc0, 0x1, 0xff, 0xc0, 0x7f, 0xff, 0xff, 0x80, 0x3, 0xff, 0x80, 0xff, 0xff, 0xff, 0x0, 0x7, 0xff, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x1f, 0xfc, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x3f, 0xf8, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x7f, 0xf0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0xff, 0xe0, 0x1f, 0xff, 0xff, 0xe0, 0x3, 0xff, 0x80, 0x3f, 0xff, 0xff, 0xc0, 0x7, 0xff, 0x0, 0x7f, 0xff, 0xff, 0x80, 0xf, 0xfe, 0x0, 0xff, 0xff, 0xff, 0x0, 0x3f, 0xf8, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x7f, 0xf0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0xff, 0xe0, 0x7, 0xff, 0xff, 0xf8, 0x1, 0xff, 0xc0, 0xf, 0xff, 0xff, 0xf0, 0x7, 0xff, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0xf, 0xfe, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x1f, 0xfc, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x7f, 0xf8, 0x0, 0xff, 0xff, 0xff, 0x0, 0xff, 0xe0, 0x1, 0xff, 0xff, 0xfe, 0x1, 0xff, 0xc0, 0x3, 0xff, 0xff, 0xfc, 0x3, 0xff, 0x80, 0x7, 0xff, 0xff, 0xf8, 0xf, 0xfe, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x1f, 0xfc, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x3f, 0xf8, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x7f, 0xf0, 0x0, 0x7f, 0xff, 0xff, 0x81, 0xff, 0xc0, 0x0, 0xff, 0xff, 0xff, 0x3, 0xff, 0x80, 0x1, 0xff, 0xff, 0xfe, 0x7, 0xff, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x1f, 0xfc, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x3f, 0xf8, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x7f, 0xf0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0xff, 0xe0, 0x0, 0x3f, 0xff, 0xff, 0xc3, 0xff, 0x80, 0x0, 0x7f, 0xff, 0xff, 0x87, 0xff, 0x0, 0x0, 0xff, 0xff, 0xff, 0xf, 0xfe, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x3f, 0xfc, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x7f, 0xf0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0xff, 0xe0, 0x0, 0xf, 0xff, 0xff, 0xf1, 0xff, 0xc0, 0x0, 0x1f, 0xff, 0xff, 0xe7, 0xff, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xcf, 0xfe, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x9f, 0xfc, 0x0, 0x0, 0xff, 0xff, 0xff, 0x3f, 0xf8, 0x0, 0x1, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x0, 0x3, 0xff, 0x9f, 0xff, 0xff, 0xc0, 0x0, 0xf, 0xff, 0x3f, 0xff, 0xff, 0x80, 0x0, 0x1f, 0xfe, 0x7f, 0xff, 0xff, 0x0, 0x0, 0x7f, 0xfc, 0xff, 0xff, 0xfc, 0x0, 0x1, 0xff, 0xf0, 0xff, 0xff, 0xf8, 0x0, 0x7, 0xff, 0xe1, 0xff, 0xff, 0xf0, 0x0, 0x1f, 0xff, 0xc1, 0xff, 0xff, 0xc0, 0x1, 0xff, 0xff, 0x3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x3, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x3, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x3, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x3, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x7, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x0, 0xf, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x3f, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x7, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, /* U+00D9 "Ù" */ 0x3, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xe7, 0xff, 0x80, 0x0, 0x0, 0x1f, 0xfe, 0x7f, 0xf8, 0x0, 0x0, 0x1, 0xff, 0xe7, 0xff, 0xc0, 0x0, 0x0, 0x3f, 0xfe, 0x3f, 0xfe, 0x0, 0x0, 0x7, 0xff, 0xc3, 0xff, 0xf0, 0x0, 0x0, 0xff, 0xfc, 0x3f, 0xff, 0x80, 0x0, 0x1f, 0xff, 0xc1, 0xff, 0xff, 0x0, 0xf, 0xff, 0xf8, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x1, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x0, 0xf, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x3, 0xff, 0xf8, 0x0, 0x0, /* U+00DA "Ú" */ 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0x80, 0x0, 0x0, 0x0, 0x7, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x80, 0x0, 0x0, 0x0, 0x3, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xe7, 0xff, 0x80, 0x0, 0x0, 0x1f, 0xfe, 0x7f, 0xf8, 0x0, 0x0, 0x1, 0xff, 0xe7, 0xff, 0xc0, 0x0, 0x0, 0x3f, 0xfe, 0x3f, 0xfe, 0x0, 0x0, 0x7, 0xff, 0xc3, 0xff, 0xf0, 0x0, 0x0, 0xff, 0xfc, 0x3f, 0xff, 0x80, 0x0, 0x1f, 0xff, 0xc1, 0xff, 0xff, 0x0, 0xf, 0xff, 0xf8, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x1, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x0, 0xf, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x3, 0xff, 0xf8, 0x0, 0x0, /* U+00DB "Û" */ 0x0, 0x0, 0x1f, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0xf, 0xff, 0xbf, 0xff, 0x0, 0x0, 0x1, 0xff, 0xf1, 0xff, 0xf8, 0x0, 0x0, 0x3f, 0xfe, 0xf, 0xff, 0xc0, 0x0, 0x7, 0xff, 0xc0, 0x7f, 0xfc, 0x0, 0x0, 0xff, 0xfc, 0x3, 0xff, 0xe0, 0x0, 0x1f, 0xff, 0x80, 0x1f, 0xff, 0x0, 0x3, 0xff, 0xf0, 0x0, 0xff, 0xf8, 0x0, 0x3f, 0xfe, 0x0, 0x7, 0xff, 0xc0, 0x7, 0xff, 0xc0, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xfe, 0x7f, 0xf8, 0x0, 0x0, 0x1, 0xff, 0xe7, 0xff, 0x80, 0x0, 0x0, 0x1f, 0xfe, 0x7f, 0xfc, 0x0, 0x0, 0x3, 0xff, 0xe3, 0xff, 0xe0, 0x0, 0x0, 0x7f, 0xfc, 0x3f, 0xff, 0x0, 0x0, 0xf, 0xff, 0xc3, 0xff, 0xf8, 0x0, 0x1, 0xff, 0xfc, 0x1f, 0xff, 0xf0, 0x0, 0xff, 0xff, 0x81, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x3, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0x80, 0x0, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x3, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x0, 0xf, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0x80, 0x0, 0x0, /* U+00DC "Ü" */ 0x1, 0xff, 0xe0, 0x0, 0x1f, 0xfe, 0x0, 0x1f, 0xfe, 0x0, 0x1, 0xff, 0xe0, 0x1, 0xff, 0xe0, 0x0, 0x1f, 0xfe, 0x0, 0x1f, 0xfe, 0x0, 0x1, 0xff, 0xe0, 0x1, 0xff, 0xe0, 0x0, 0x1f, 0xfe, 0x0, 0x1f, 0xfe, 0x0, 0x1, 0xff, 0xe0, 0x1, 0xff, 0xe0, 0x0, 0x1f, 0xfe, 0x0, 0x1f, 0xfe, 0x0, 0x1, 0xff, 0xe0, 0x1, 0xff, 0xe0, 0x0, 0x1f, 0xfe, 0x0, 0x1f, 0xfe, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xe7, 0xff, 0x80, 0x0, 0x0, 0x1f, 0xfe, 0x7f, 0xf8, 0x0, 0x0, 0x1, 0xff, 0xe7, 0xff, 0xc0, 0x0, 0x0, 0x3f, 0xfe, 0x3f, 0xfe, 0x0, 0x0, 0x7, 0xff, 0xc3, 0xff, 0xf0, 0x0, 0x0, 0xff, 0xfc, 0x3f, 0xff, 0x80, 0x0, 0x1f, 0xff, 0xc1, 0xff, 0xff, 0x0, 0xf, 0xff, 0xf8, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x1, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x0, 0xf, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x3, 0xff, 0xf8, 0x0, 0x0, /* U+00DD "Ý" */ 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfd, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xf7, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x8f, 0xff, 0x80, 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x3f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x7f, 0xfc, 0x0, 0x0, 0x0, 0x7, 0xff, 0xc1, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x3, 0xff, 0xe0, 0x0, 0x0, 0x0, 0xff, 0xf8, 0xf, 0xff, 0x80, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x3f, 0xff, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x0, 0x7f, 0xfc, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x1, 0xff, 0xf0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x3, 0xff, 0xe0, 0x0, 0x0, 0xf, 0xff, 0x0, 0xf, 0xff, 0x80, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x1f, 0xff, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x7f, 0xfc, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0xff, 0xf8, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x3, 0xff, 0xe0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x7, 0xff, 0xc0, 0x0, 0x7, 0xff, 0xc0, 0x0, 0x1f, 0xff, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0xff, 0xf8, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x7, 0xff, 0xc0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0xf, 0xff, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x3f, 0xfe, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x1, 0xff, 0xf0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x7, 0xff, 0x80, 0x0, 0x0, 0xf, 0xff, 0x80, 0x1f, 0xfc, 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x3, 0xff, 0x80, 0x0, 0x0, 0x1, 0xff, 0xf0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x7f, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x83, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0xf, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xfc, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf1, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xe7, 0xff, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xbf, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, /* U+00DE "Þ" */ 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xfe, 0x0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x3, 0xff, 0xff, 0xff, 0xff, 0xff, 0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8f, 0xff, 0x0, 0x0, 0x1f, 0xff, 0xe7, 0xff, 0x80, 0x0, 0x3, 0xff, 0xf3, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xfd, 0xff, 0xe0, 0x0, 0x0, 0x3f, 0xfe, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0x7f, 0xf8, 0x0, 0x0, 0x7, 0xff, 0xbf, 0xfc, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x3f, 0xfd, 0xff, 0xe0, 0x0, 0x0, 0x1f, 0xfe, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xff, 0x7f, 0xf8, 0x0, 0x0, 0x1f, 0xff, 0xbf, 0xfc, 0x0, 0x0, 0x1f, 0xff, 0x9f, 0xfe, 0x0, 0x0, 0x3f, 0xff, 0xcf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0x80, 0xf, 0xff, 0xff, 0xff, 0xff, 0x0, 0x7, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, /* U+00DF "ß" */ 0x0, 0x0, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0xf, 0xff, 0xff, 0xff, 0x0, 0x0, 0x1, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x3, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0x80, 0x3, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0xf, 0xff, 0xe0, 0x0, 0xff, 0xff, 0x0, 0xff, 0xfc, 0x0, 0x1, 0xff, 0xf8, 0x7, 0xff, 0xc0, 0x0, 0x7, 0xff, 0xe0, 0x3f, 0xfc, 0x0, 0x0, 0x1f, 0xff, 0x3, 0xff, 0xe0, 0x0, 0x0, 0x7f, 0xf8, 0x1f, 0xfe, 0x0, 0x0, 0x3, 0xff, 0xc0, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0x7, 0xff, 0x80, 0x0, 0x0, 0x7f, 0xf8, 0x3f, 0xfc, 0x0, 0x0, 0x3, 0xff, 0xc1, 0xff, 0xe0, 0x0, 0x0, 0x1f, 0xfe, 0xf, 0xff, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x7f, 0xf8, 0x0, 0x0, 0x7, 0xff, 0x83, 0xff, 0xc0, 0x0, 0x0, 0x3f, 0xfc, 0x1f, 0xfe, 0x0, 0x0, 0x1, 0xff, 0xe0, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0x7, 0xff, 0x80, 0x0, 0x0, 0x7f, 0xf8, 0x3f, 0xfc, 0x0, 0x0, 0x3, 0xff, 0xc1, 0xff, 0xe0, 0x0, 0x0, 0x1f, 0xfe, 0xf, 0xff, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x7f, 0xf8, 0x0, 0x0, 0x7, 0xff, 0x83, 0xff, 0xc0, 0x0, 0x0, 0x3f, 0xfc, 0x1f, 0xfe, 0x0, 0x0, 0x7f, 0xff, 0xe0, 0xff, 0xf0, 0x0, 0x3f, 0xff, 0xff, 0x7, 0xff, 0x80, 0x7, 0xff, 0xff, 0xf8, 0x3f, 0xfc, 0x0, 0x7f, 0xff, 0xff, 0xc1, 0xff, 0xe0, 0x7, 0xff, 0xff, 0xfe, 0xf, 0xff, 0x0, 0x7f, 0xff, 0xff, 0xf0, 0x7f, 0xf8, 0x7, 0xff, 0xff, 0xff, 0x83, 0xff, 0xc0, 0x3f, 0xff, 0xff, 0xfc, 0x1f, 0xfe, 0x3, 0xff, 0xff, 0xff, 0xe0, 0xff, 0xf0, 0x1f, 0xff, 0xc0, 0x0, 0x7, 0xff, 0x80, 0xff, 0xf8, 0x0, 0x0, 0x3f, 0xfc, 0xf, 0xff, 0x80, 0x0, 0x1, 0xff, 0xe0, 0x7f, 0xf8, 0x0, 0x0, 0xf, 0xff, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xf8, 0x1f, 0xfe, 0x0, 0x0, 0x3, 0xff, 0xc0, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xfe, 0x7, 0xff, 0x80, 0x0, 0x0, 0xff, 0xf0, 0x3f, 0xfc, 0x0, 0x0, 0x7, 0xff, 0x81, 0xff, 0xe0, 0x0, 0x0, 0x3f, 0xfc, 0xf, 0xff, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x7f, 0xf8, 0x0, 0x0, 0xf, 0xff, 0x3, 0xff, 0xe0, 0x0, 0x0, 0x7f, 0xf8, 0xf, 0xff, 0x80, 0x0, 0x3, 0xff, 0xc0, 0x7f, 0xfe, 0x0, 0x0, 0x1f, 0xfe, 0x3, 0xff, 0xff, 0xf0, 0x0, 0xff, 0xf0, 0xf, 0xff, 0xff, 0xf0, 0x7, 0xff, 0x80, 0x7f, 0xff, 0xff, 0xe0, 0x3f, 0xfc, 0x1, 0xff, 0xff, 0xff, 0x81, 0xff, 0xe0, 0x7, 0xff, 0xff, 0xff, 0xf, 0xff, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x7f, 0xf8, 0x0, 0x7f, 0xff, 0xff, 0xe3, 0xff, 0xc0, 0x1, 0xff, 0xff, 0xff, 0x9f, 0xfe, 0x0, 0x3, 0xff, 0xff, 0xfc, 0xff, 0xf0, 0x0, 0x3, 0xff, 0xff, 0xf7, 0xff, 0x80, 0x0, 0x0, 0x1f, 0xff, 0xbf, 0xfc, 0x0, 0x0, 0x0, 0x7f, 0xfd, 0xff, 0xe0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x7f, 0xfb, 0xff, 0xc0, 0x0, 0x0, 0x7, 0xff, 0xdf, 0xfe, 0x0, 0x0, 0x0, 0x7f, 0xfe, 0xff, 0xf0, 0x1f, 0xff, 0xff, 0xff, 0xe7, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0x3f, 0xfc, 0x7, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xe0, 0x3f, 0xff, 0xff, 0xff, 0x8f, 0xff, 0x1, 0xff, 0xff, 0xff, 0xf8, 0x7f, 0xf8, 0xf, 0xff, 0xff, 0xff, 0x83, 0xff, 0xc0, 0x7f, 0xff, 0xff, 0xf0, 0x1f, 0xfe, 0x3, 0xff, 0xff, 0xff, 0x0, 0xff, 0xf0, 0x1f, 0xff, 0xff, 0xe0, 0x7, 0xff, 0x80, 0xff, 0xff, 0xf0, 0x0, 0x0, /* U+00E0 "à" */ 0x0, 0x3f, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x0, 0xf, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x0, 0x3, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x0, 0xf, 0xff, 0xff, 0xff, 0xff, 0x80, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x7, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x1, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0x80, 0x1, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x3, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0xf, 0xff, 0xe0, 0x0, 0x7, 0xff, 0x80, 0x7f, 0xfe, 0x0, 0x0, 0x1f, 0xfe, 0x1, 0xff, 0xf0, 0x0, 0x0, 0x7f, 0xf8, 0x7, 0xff, 0x80, 0x0, 0x1, 0xff, 0xe0, 0x1f, 0xfe, 0x0, 0x0, 0x7, 0xff, 0x80, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xfe, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xf8, 0xf, 0xff, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x3f, 0xfc, 0x0, 0x0, 0x7, 0xff, 0x80, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xfe, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xf8, 0xf, 0xff, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x3f, 0xfc, 0x0, 0x0, 0x7, 0xff, 0x80, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xfe, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xf8, 0xf, 0xff, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x3f, 0xfc, 0x0, 0x0, 0x7, 0xff, 0x80, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xfe, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xf8, 0xf, 0xff, 0x80, 0x0, 0x3, 0xff, 0xe0, 0x1f, 0xfe, 0x0, 0x0, 0xf, 0xff, 0x80, 0x7f, 0xfc, 0x0, 0x0, 0x7f, 0xff, 0x1, 0xff, 0xfc, 0x0, 0x3, 0xff, 0xff, 0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xcf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x3, 0xff, 0xff, 0xff, 0xfd, 0xff, 0xfc, 0x7, 0xff, 0xff, 0xff, 0xe3, 0xff, 0xf0, 0x3, 0xff, 0xff, 0xff, 0x3, 0xff, 0xc0, 0x1, 0xff, 0xff, 0xe0, 0x3, 0xff, /* U+00E1 "á" */ 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x0, 0xf, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x0, 0x3, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x0, 0xf, 0xff, 0xff, 0xff, 0xff, 0x80, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x7, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x1, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0x80, 0x1, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x3, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0xf, 0xff, 0xe0, 0x0, 0x7, 0xff, 0x80, 0x7f, 0xfe, 0x0, 0x0, 0x1f, 0xfe, 0x1, 0xff, 0xf0, 0x0, 0x0, 0x7f, 0xf8, 0x7, 0xff, 0x80, 0x0, 0x1, 0xff, 0xe0, 0x1f, 0xfe, 0x0, 0x0, 0x7, 0xff, 0x80, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xfe, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xf8, 0xf, 0xff, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x3f, 0xfc, 0x0, 0x0, 0x7, 0xff, 0x80, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xfe, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xf8, 0xf, 0xff, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x3f, 0xfc, 0x0, 0x0, 0x7, 0xff, 0x80, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xfe, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xf8, 0xf, 0xff, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x3f, 0xfc, 0x0, 0x0, 0x7, 0xff, 0x80, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xfe, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xf8, 0xf, 0xff, 0x80, 0x0, 0x3, 0xff, 0xe0, 0x1f, 0xfe, 0x0, 0x0, 0xf, 0xff, 0x80, 0x7f, 0xfc, 0x0, 0x0, 0x7f, 0xff, 0x1, 0xff, 0xfc, 0x0, 0x3, 0xff, 0xff, 0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xcf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x3, 0xff, 0xff, 0xff, 0xfd, 0xff, 0xfc, 0x7, 0xff, 0xff, 0xff, 0xe3, 0xff, 0xf0, 0x3, 0xff, 0xff, 0xff, 0x3, 0xff, 0xc0, 0x1, 0xff, 0xff, 0xe0, 0x3, 0xff, /* U+00E2 "â" */ 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x7f, 0xfd, 0xff, 0xf8, 0x0, 0x0, 0x3, 0xff, 0xe3, 0xff, 0xe0, 0x0, 0x0, 0x1f, 0xff, 0x7, 0xff, 0xc0, 0x0, 0x0, 0xff, 0xf8, 0xf, 0xff, 0x80, 0x0, 0x7, 0xff, 0xe0, 0x1f, 0xff, 0x0, 0x0, 0x3f, 0xff, 0x0, 0x7f, 0xfe, 0x0, 0x0, 0xff, 0xf8, 0x0, 0xff, 0xfc, 0x0, 0x7, 0xff, 0xc0, 0x1, 0xff, 0xf8, 0x0, 0x3f, 0xfe, 0x0, 0x3, 0xff, 0xe0, 0x1, 0xff, 0xf8, 0x0, 0x7, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x0, 0xf, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x0, 0x3, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x0, 0xf, 0xff, 0xff, 0xff, 0xff, 0x80, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x7, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x1, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0x80, 0x1, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x3, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0xf, 0xff, 0xe0, 0x0, 0x7, 0xff, 0x80, 0x7f, 0xfe, 0x0, 0x0, 0x1f, 0xfe, 0x1, 0xff, 0xf0, 0x0, 0x0, 0x7f, 0xf8, 0x7, 0xff, 0x80, 0x0, 0x1, 0xff, 0xe0, 0x1f, 0xfe, 0x0, 0x0, 0x7, 0xff, 0x80, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xfe, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xf8, 0xf, 0xff, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x3f, 0xfc, 0x0, 0x0, 0x7, 0xff, 0x80, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xfe, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xf8, 0xf, 0xff, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x3f, 0xfc, 0x0, 0x0, 0x7, 0xff, 0x80, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xfe, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xf8, 0xf, 0xff, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x3f, 0xfc, 0x0, 0x0, 0x7, 0xff, 0x80, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xfe, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xf8, 0xf, 0xff, 0x80, 0x0, 0x3, 0xff, 0xe0, 0x1f, 0xfe, 0x0, 0x0, 0xf, 0xff, 0x80, 0x7f, 0xfc, 0x0, 0x0, 0x7f, 0xff, 0x1, 0xff, 0xfc, 0x0, 0x3, 0xff, 0xff, 0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xcf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x3, 0xff, 0xff, 0xff, 0xfd, 0xff, 0xfc, 0x7, 0xff, 0xff, 0xff, 0xe3, 0xff, 0xf0, 0x3, 0xff, 0xff, 0xff, 0x3, 0xff, 0xc0, 0x1, 0xff, 0xff, 0xe0, 0x3, 0xff, /* U+00E3 "ã" */ 0x0, 0x3, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x20, 0x0, 0x3, 0xff, 0xf8, 0x0, 0x3, 0x80, 0x0, 0x1f, 0xff, 0xf8, 0x0, 0x1e, 0x0, 0x1, 0xff, 0xff, 0xfc, 0x1, 0xf8, 0x0, 0xf, 0xff, 0xff, 0xfc, 0x1f, 0xe0, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0x80, 0x0, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x3, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x0, 0xf, 0xf8, 0x3f, 0xff, 0xff, 0xe0, 0x0, 0x3f, 0x80, 0x1f, 0xff, 0xff, 0x0, 0x0, 0xf8, 0x0, 0x1f, 0xff, 0xf8, 0x0, 0x3, 0x80, 0x0, 0x1f, 0xff, 0x80, 0x0, 0x8, 0x0, 0x0, 0x1f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xff, 0x80, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0x80, 0x0, 0x3, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0xf, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x3, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0x80, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x1, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x7, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0xff, 0xfe, 0x0, 0x0, 0x7f, 0xf8, 0x7, 0xff, 0xe0, 0x0, 0x1, 0xff, 0xe0, 0x1f, 0xff, 0x0, 0x0, 0x7, 0xff, 0x80, 0x7f, 0xf8, 0x0, 0x0, 0x1f, 0xfe, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x7f, 0xf8, 0xf, 0xff, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x3f, 0xfc, 0x0, 0x0, 0x7, 0xff, 0x80, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xfe, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xf8, 0xf, 0xff, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x3f, 0xfc, 0x0, 0x0, 0x7, 0xff, 0x80, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xfe, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xf8, 0xf, 0xff, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x3f, 0xfc, 0x0, 0x0, 0x7, 0xff, 0x80, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xfe, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xf8, 0xf, 0xff, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x3f, 0xfc, 0x0, 0x0, 0x7, 0xff, 0x80, 0xff, 0xf8, 0x0, 0x0, 0x3f, 0xfe, 0x1, 0xff, 0xe0, 0x0, 0x0, 0xff, 0xf8, 0x7, 0xff, 0xc0, 0x0, 0x7, 0xff, 0xf0, 0x1f, 0xff, 0xc0, 0x0, 0x3f, 0xff, 0xf0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x3f, 0xff, 0xff, 0xff, 0xdf, 0xff, 0xc0, 0x7f, 0xff, 0xff, 0xfe, 0x3f, 0xff, 0x0, 0x3f, 0xff, 0xff, 0xf0, 0x3f, 0xfc, 0x0, 0x1f, 0xff, 0xff, 0x0, 0x3f, 0xf0, /* U+00E4 "ä" */ 0x7, 0xff, 0x80, 0x0, 0x7f, 0xf8, 0x0, 0x1f, 0xfe, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x7f, 0xf8, 0x0, 0x7, 0xff, 0x80, 0x1, 0xff, 0xe0, 0x0, 0x1f, 0xfe, 0x0, 0x7, 0xff, 0x80, 0x0, 0x7f, 0xf8, 0x0, 0x1f, 0xfe, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x7f, 0xf8, 0x0, 0x7, 0xff, 0x80, 0x1, 0xff, 0xe0, 0x0, 0x1f, 0xfe, 0x0, 0x7, 0xff, 0x80, 0x0, 0x7f, 0xf8, 0x0, 0x1f, 0xfe, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xe0, 0x0, 0x1, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x7, 0xff, 0xff, 0xff, 0xff, 0x80, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x1, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xe0, 0x0, 0x7, 0xff, 0xff, 0xff, 0xff, 0x80, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0xf, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x3f, 0xff, 0x80, 0x0, 0x1f, 0xfe, 0x1, 0xff, 0xf8, 0x0, 0x0, 0x7f, 0xf8, 0x7, 0xff, 0xc0, 0x0, 0x1, 0xff, 0xe0, 0x1f, 0xfe, 0x0, 0x0, 0x7, 0xff, 0x80, 0x7f, 0xf8, 0x0, 0x0, 0x1f, 0xfe, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xf8, 0xf, 0xff, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x3f, 0xfc, 0x0, 0x0, 0x7, 0xff, 0x80, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xfe, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xf8, 0xf, 0xff, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x3f, 0xfc, 0x0, 0x0, 0x7, 0xff, 0x80, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xfe, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xf8, 0xf, 0xff, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x3f, 0xfc, 0x0, 0x0, 0x7, 0xff, 0x80, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xfe, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xf8, 0xf, 0xff, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x3f, 0xfe, 0x0, 0x0, 0xf, 0xff, 0x80, 0x7f, 0xf8, 0x0, 0x0, 0x3f, 0xfe, 0x1, 0xff, 0xf0, 0x0, 0x1, 0xff, 0xfc, 0x7, 0xff, 0xf0, 0x0, 0xf, 0xff, 0xfc, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xf, 0xff, 0xff, 0xff, 0xf7, 0xff, 0xf0, 0x1f, 0xff, 0xff, 0xff, 0x8f, 0xff, 0xc0, 0xf, 0xff, 0xff, 0xf8, 0x1f, 0xff, 0x0, 0x3, 0xff, 0xff, 0x80, 0xf, 0xfc, /* U+00E5 "å" */ 0x0, 0x0, 0x3f, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x1, 0xff, 0x3, 0xfe, 0x0, 0x0, 0x0, 0xf, 0xf8, 0x7, 0xf8, 0x0, 0x0, 0x0, 0x3f, 0xe0, 0xf, 0xf0, 0x0, 0x0, 0x0, 0xff, 0x0, 0x3f, 0xc0, 0x0, 0x0, 0x3, 0xfc, 0x0, 0xff, 0x0, 0x0, 0x0, 0xf, 0xf0, 0x3, 0xfc, 0x0, 0x0, 0x0, 0x3f, 0xc0, 0xf, 0xf0, 0x0, 0x0, 0x0, 0xff, 0x0, 0x3f, 0xc0, 0x0, 0x0, 0x3, 0xfc, 0x0, 0xff, 0x0, 0x0, 0x0, 0xf, 0xf0, 0x3, 0xfc, 0x0, 0x0, 0x0, 0x3f, 0xc0, 0xf, 0xf0, 0x0, 0x0, 0x0, 0xff, 0x0, 0x3f, 0xc0, 0x0, 0x0, 0x3, 0xfe, 0x0, 0xff, 0x0, 0x0, 0x0, 0x7, 0xf8, 0x7, 0xf8, 0x0, 0x0, 0x0, 0x1f, 0xf0, 0x3f, 0xe0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x1, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0x80, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0x0, 0x1, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x7, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x1, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0x80, 0x1, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x3, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0xf, 0xff, 0xe0, 0x0, 0x7, 0xff, 0x80, 0x7f, 0xfe, 0x0, 0x0, 0x1f, 0xfe, 0x1, 0xff, 0xf0, 0x0, 0x0, 0x7f, 0xf8, 0x7, 0xff, 0x80, 0x0, 0x1, 0xff, 0xe0, 0x1f, 0xfe, 0x0, 0x0, 0x7, 0xff, 0x80, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xfe, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xf8, 0xf, 0xff, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x3f, 0xfc, 0x0, 0x0, 0x7, 0xff, 0x80, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xfe, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xf8, 0xf, 0xff, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x3f, 0xfc, 0x0, 0x0, 0x7, 0xff, 0x80, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xfe, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xf8, 0xf, 0xff, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x3f, 0xfc, 0x0, 0x0, 0x7, 0xff, 0x80, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xfe, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xf8, 0xf, 0xff, 0x80, 0x0, 0x3, 0xff, 0xe0, 0x1f, 0xfe, 0x0, 0x0, 0xf, 0xff, 0x80, 0x7f, 0xfc, 0x0, 0x0, 0x7f, 0xff, 0x1, 0xff, 0xfc, 0x0, 0x3, 0xff, 0xff, 0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xcf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x3, 0xff, 0xff, 0xff, 0xfd, 0xff, 0xfc, 0x7, 0xff, 0xff, 0xff, 0xe3, 0xff, 0xf0, 0x3, 0xff, 0xff, 0xfe, 0x7, 0xff, 0xc0, 0x0, 0xff, 0xff, 0xe0, 0x7, 0xff, /* U+00E6 "æ" */ 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x3f, 0xff, 0xe0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xf0, 0x0, 0xff, 0xff, 0xff, 0x80, 0x0, 0x3f, 0xff, 0xff, 0xff, 0x80, 0xff, 0xff, 0xff, 0xf8, 0x0, 0xf, 0xff, 0xff, 0xff, 0xf8, 0xff, 0xff, 0xff, 0xff, 0x80, 0x3, 0xff, 0xff, 0xff, 0xff, 0x7f, 0xff, 0xff, 0xff, 0xf0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0xf, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0x0, 0x0, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0x80, 0x0, 0xf, 0xff, 0x80, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xc0, 0x0, 0x3, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xf0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf8, 0x0, 0x0, 0x1f, 0xff, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0xf, 0xff, 0x0, 0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xcf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf3, 0xff, 0xf8, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xfc, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xfc, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xe0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x1, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf8, 0x0, 0x0, 0x3f, 0xff, 0x80, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0xf, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xc0, 0x0, 0x7, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x1, 0xff, 0xfc, 0x0, 0x3, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xbf, 0xff, 0xff, 0xff, 0xf8, 0x1, 0xff, 0xff, 0xff, 0xff, 0xc7, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xe0, 0xff, 0xff, 0xff, 0xff, 0x80, 0x7, 0xff, 0xff, 0xff, 0xf0, 0xf, 0xff, 0xff, 0xff, 0xe0, 0x0, 0x3f, 0xff, 0xff, 0xf0, 0x0, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x0, 0xff, 0xff, 0xf0, 0x0, 0x3, 0xff, 0xff, 0xfe, 0x0, /* U+00E7 "ç" */ 0x0, 0x0, 0x7f, 0xff, 0xfe, 0x0, 0xf, 0xff, 0xff, 0xfc, 0x0, 0xff, 0xff, 0xff, 0xf8, 0x7, 0xff, 0xff, 0xff, 0xf0, 0x1f, 0xff, 0xff, 0xff, 0xe0, 0x7f, 0xff, 0xff, 0xff, 0xc1, 0xff, 0xff, 0xff, 0xff, 0x87, 0xff, 0xff, 0xff, 0xff, 0x1f, 0xff, 0xff, 0xff, 0xfe, 0x3f, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0x0, 0x0, 0x1, 0xff, 0xf8, 0x0, 0x0, 0x7, 0xff, 0xe0, 0x0, 0x0, 0xf, 0xff, 0x80, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x7f, 0xfc, 0x0, 0x0, 0x0, 0xff, 0xfc, 0x0, 0x0, 0x0, 0xff, 0xfc, 0x0, 0x0, 0x1, 0xff, 0xfe, 0x0, 0x0, 0x1, 0xff, 0xff, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xff, 0xff, 0xc3, 0xff, 0xff, 0xff, 0xff, 0x83, 0xff, 0xff, 0xff, 0xff, 0x3, 0xff, 0xff, 0xff, 0xfe, 0x3, 0xff, 0xff, 0xff, 0xfc, 0x3, 0xff, 0xff, 0xff, 0xf8, 0x1, 0xff, 0xff, 0xff, 0xf0, 0x0, 0xff, 0xff, 0xff, 0xe0, 0x0, 0x1f, 0xff, 0xff, 0xc0, 0x0, 0x3f, 0xf0, 0x0, 0x0, 0x0, 0x7f, 0xe0, 0x0, 0x0, 0x0, 0xff, 0xc0, 0x0, 0x0, 0x1, 0xff, 0xfc, 0x0, 0x0, 0x3, 0xff, 0xff, 0x0, 0x0, 0x7, 0xff, 0xff, 0x0, 0x0, 0xf, 0xff, 0xff, 0x0, 0x0, 0x1f, 0xff, 0xff, 0x0, 0x0, 0x3f, 0xff, 0xfe, 0x0, 0x0, 0x7f, 0xff, 0xfc, 0x0, 0x0, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x3f, 0xf0, 0x0, 0x0, 0x0, 0x7f, 0xe0, 0x0, 0x0, 0x0, 0xff, 0xc0, 0x0, 0x0, 0x1, 0xff, 0x80, 0x0, 0x0, 0x3, 0xff, 0x0, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0xf, 0xff, 0xff, 0xe0, 0x0, 0x1f, 0xff, 0xff, 0xc0, 0x0, 0x3f, 0xff, 0xff, 0x80, 0x0, 0x7f, 0xff, 0xfe, 0x0, 0x0, 0xff, 0xff, 0xf8, 0x0, 0x1, 0xff, 0xff, 0xe0, 0x0, 0x3, 0xff, 0xff, 0x80, 0x0, 0x7, 0xff, 0xf8, 0x0, /* U+00E8 "è" */ 0x1, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x3, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x3, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x3, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x3, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x3, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x3, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xc0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xfc, 0x0, 0x3, 0xff, 0xff, 0xff, 0xfc, 0x0, 0xf, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xfe, 0x0, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x3, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x7, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x3f, 0xff, 0x80, 0x7, 0xff, 0xf8, 0xff, 0xfc, 0x0, 0x3, 0xff, 0xf1, 0xff, 0xf0, 0x0, 0x1, 0xff, 0xf3, 0xff, 0xc0, 0x0, 0x3, 0xff, 0xe7, 0xff, 0x80, 0x0, 0x3, 0xff, 0xdf, 0xff, 0x0, 0x0, 0x7, 0xff, 0xbf, 0xfc, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0x0, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x0, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0x80, 0x0, 0x1f, 0xff, 0xff, 0xff, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfe, 0x0, /* U+00E9 "é" */ 0x0, 0x0, 0x0, 0xf, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0x80, 0x0, 0x0, 0x0, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x3, 0xff, 0xf8, 0x0, 0x0, 0x0, 0xf, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x80, 0x0, 0x0, 0x0, 0x7f, 0xfe, 0x0, 0x0, 0x0, 0x1, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x7, 0xff, 0xe0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x80, 0x0, 0x0, 0x0, 0x3f, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x3, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xfc, 0x0, 0x0, 0x0, 0x1, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xc0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xfc, 0x0, 0x3, 0xff, 0xff, 0xff, 0xfc, 0x0, 0xf, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xfe, 0x0, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x3, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x7, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x3f, 0xff, 0x80, 0x7, 0xff, 0xf8, 0xff, 0xfc, 0x0, 0x3, 0xff, 0xf1, 0xff, 0xf0, 0x0, 0x1, 0xff, 0xf3, 0xff, 0xc0, 0x0, 0x3, 0xff, 0xe7, 0xff, 0x80, 0x0, 0x3, 0xff, 0xdf, 0xff, 0x0, 0x0, 0x7, 0xff, 0xbf, 0xfc, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0x0, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x0, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0x80, 0x0, 0x1f, 0xff, 0xff, 0xff, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfe, 0x0, /* U+00EA "ê" */ 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x3, 0xff, 0xfe, 0x0, 0x0, 0x0, 0xf, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xfc, 0x0, 0x0, 0x0, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x7, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x7f, 0xfc, 0xff, 0xfc, 0x0, 0x1, 0xff, 0xf8, 0xff, 0xf8, 0x0, 0x7, 0xff, 0xe0, 0xff, 0xf8, 0x0, 0xf, 0xff, 0x80, 0xff, 0xf8, 0x0, 0x3f, 0xfe, 0x1, 0xff, 0xf8, 0x0, 0xff, 0xf8, 0x1, 0xff, 0xf8, 0x3, 0xff, 0xf0, 0x1, 0xff, 0xf8, 0xf, 0xff, 0xc0, 0x1, 0xff, 0xf8, 0x1f, 0xff, 0x0, 0x1, 0xff, 0xf0, 0x7f, 0xfc, 0x0, 0x3, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xc0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xfc, 0x0, 0x3, 0xff, 0xff, 0xff, 0xfc, 0x0, 0xf, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xfe, 0x0, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x3, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x7, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x3f, 0xff, 0x80, 0x7, 0xff, 0xf8, 0xff, 0xfc, 0x0, 0x3, 0xff, 0xf1, 0xff, 0xf0, 0x0, 0x1, 0xff, 0xf3, 0xff, 0xc0, 0x0, 0x3, 0xff, 0xe7, 0xff, 0x80, 0x0, 0x3, 0xff, 0xdf, 0xff, 0x0, 0x0, 0x7, 0xff, 0xbf, 0xfc, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0x0, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x0, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0x80, 0x0, 0x1f, 0xff, 0xff, 0xff, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfe, 0x0, /* U+00EB "ë" */ 0xf, 0xff, 0x0, 0x0, 0xff, 0xf0, 0x1f, 0xfe, 0x0, 0x1, 0xff, 0xe0, 0x3f, 0xfc, 0x0, 0x3, 0xff, 0xc0, 0x7f, 0xf8, 0x0, 0x7, 0xff, 0x80, 0xff, 0xf0, 0x0, 0xf, 0xff, 0x1, 0xff, 0xe0, 0x0, 0x1f, 0xfe, 0x3, 0xff, 0xc0, 0x0, 0x3f, 0xfc, 0x7, 0xff, 0x80, 0x0, 0x7f, 0xf8, 0xf, 0xff, 0x0, 0x0, 0xff, 0xf0, 0x1f, 0xfe, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0x80, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x7, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xfc, 0x1, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x7, 0xff, 0xff, 0xff, 0xff, 0xf8, 0xf, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x7f, 0xff, 0x0, 0xf, 0xff, 0xf1, 0xff, 0xf8, 0x0, 0x7, 0xff, 0xe3, 0xff, 0xe0, 0x0, 0x3, 0xff, 0xe7, 0xff, 0x80, 0x0, 0x7, 0xff, 0xcf, 0xff, 0x0, 0x0, 0x7, 0xff, 0xbf, 0xfe, 0x0, 0x0, 0xf, 0xff, 0x7f, 0xf8, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x1, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x1, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x1, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x3, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x1, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x1, 0xff, 0xff, 0xff, 0xff, 0x80, 0x0, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x7, 0xff, 0xff, 0xfc, 0x0, /* U+00EC "ì" */ 0x7f, 0xfc, 0x0, 0x0, 0xff, 0xf8, 0x0, 0x3, 0xff, 0xf0, 0x0, 0x7, 0xff, 0xe0, 0x0, 0xf, 0xff, 0xc0, 0x0, 0x1f, 0xff, 0x80, 0x0, 0x3f, 0xff, 0x0, 0x0, 0x7f, 0xfc, 0x0, 0x0, 0xff, 0xf8, 0x0, 0x1, 0xff, 0xf0, 0x0, 0x3, 0xff, 0xe0, 0x0, 0x7, 0xff, 0xc0, 0x0, 0xf, 0xff, 0x80, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x7, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0xff, 0xf0, /* U+00ED "í" */ 0x0, 0x1, 0xff, 0xfc, 0x0, 0xf, 0xff, 0xe0, 0x0, 0x7f, 0xff, 0x0, 0x3, 0xff, 0xf8, 0x0, 0xf, 0xff, 0xc0, 0x0, 0x7f, 0xfe, 0x0, 0x3, 0xff, 0xf0, 0x0, 0x1f, 0xff, 0x80, 0x0, 0x7f, 0xfc, 0x0, 0x3, 0xff, 0xf0, 0x0, 0x1f, 0xff, 0x80, 0x0, 0xff, 0xfc, 0x0, 0x3, 0xff, 0xe0, 0x0, 0x1f, 0xff, 0x0, 0x0, 0xff, 0xf8, 0x0, 0x7, 0xff, 0xc0, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x3, 0xff, 0xc0, 0x0, /* U+00EE "î" */ 0x0, 0x1, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x3f, 0xff, 0x80, 0x0, 0x0, 0x3, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xe0, 0x0, 0x0, 0xf, 0xff, 0xff, 0x0, 0x0, 0x1, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xe0, 0x0, 0xf, 0xff, 0x9f, 0xff, 0x0, 0x1, 0xff, 0xf0, 0xff, 0xf8, 0x0, 0x3f, 0xfe, 0xf, 0xff, 0xc0, 0x7, 0xff, 0xe0, 0x7f, 0xfe, 0x0, 0x7f, 0xfc, 0x3, 0xff, 0xe0, 0xf, 0xff, 0x80, 0x1f, 0xff, 0x1, 0xff, 0xf0, 0x0, 0xff, 0xf8, 0x3f, 0xff, 0x0, 0xf, 0xff, 0xc7, 0xff, 0xe0, 0x0, 0x7f, 0xfe, 0xff, 0xfc, 0x0, 0x3, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, /* U+00EF "ï" */ 0xff, 0xf0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, /* U+00F0 "ð" */ 0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x1, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x1, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x1, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x1, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x1, 0xff, 0xff, 0xff, 0xff, 0x0, 0x1, 0xff, 0xff, 0xff, 0xff, 0x80, 0x1, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x1, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x1, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x1, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x0, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x0, 0xff, 0xe3, 0xff, 0xfc, 0x0, 0x1, 0xff, 0xe0, 0xff, 0xfc, 0x0, 0x1, 0xff, 0xc0, 0x7f, 0xfc, 0x0, 0x3, 0xff, 0xc0, 0x3f, 0xfe, 0x0, 0x3, 0xff, 0x80, 0x3f, 0xfe, 0x0, 0x7, 0xff, 0x80, 0x1f, 0xfe, 0x0, 0x7, 0xff, 0x0, 0x1f, 0xfe, 0x0, 0xf, 0xfe, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0x0, 0x7, 0xff, 0xff, 0xff, 0xff, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0x3, 0xff, 0xff, 0xff, 0xff, 0xff, 0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x3f, 0xff, 0xc0, 0x0, 0xf, 0xff, 0x3f, 0xff, 0x0, 0x0, 0xf, 0xff, 0x7f, 0xfe, 0x0, 0x0, 0xf, 0xff, 0x7f, 0xfc, 0x0, 0x0, 0xf, 0xff, 0x7f, 0xf8, 0x0, 0x0, 0xf, 0xff, 0x7f, 0xf8, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0x7f, 0xf0, 0x0, 0x0, 0xf, 0xfe, 0x7f, 0xf8, 0x0, 0x0, 0x1f, 0xfe, 0x7f, 0xf8, 0x0, 0x0, 0x1f, 0xfe, 0x7f, 0xfc, 0x0, 0x0, 0x3f, 0xfe, 0x3f, 0xfe, 0x0, 0x0, 0x7f, 0xfc, 0x3f, 0xff, 0x0, 0x0, 0xff, 0xfc, 0x3f, 0xff, 0x80, 0x1, 0xff, 0xf8, 0x1f, 0xff, 0xe0, 0x7, 0xff, 0xf8, 0xf, 0xff, 0xff, 0xff, 0xff, 0xf0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x3, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x1, 0xff, 0xff, 0xff, 0xff, 0x80, 0x0, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x7, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7f, 0xfe, 0x0, 0x0, /* U+00F1 "ñ" */ 0x0, 0x0, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x0, 0x0, 0x4, 0x0, 0x1f, 0xff, 0xe0, 0x0, 0x1c, 0x0, 0x3f, 0xff, 0xf8, 0x0, 0x7c, 0x0, 0xff, 0xff, 0xfe, 0x0, 0xfc, 0x1, 0xff, 0xff, 0xff, 0x83, 0xfc, 0x1, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x1, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x1, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x1, 0xff, 0x7, 0xff, 0xff, 0xfc, 0x1, 0xfc, 0x0, 0xff, 0xff, 0xf8, 0x1, 0xf0, 0x0, 0x3f, 0xff, 0xf0, 0x1, 0xc0, 0x0, 0xf, 0xff, 0xc0, 0x1, 0x0, 0x0, 0x3, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xe0, 0x7f, 0xff, 0x0, 0x0, 0xff, 0xe3, 0xff, 0xff, 0xf0, 0x0, 0xff, 0xef, 0xff, 0xff, 0xfe, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0x80, 0x3, 0xff, 0xfc, 0xff, 0xfe, 0x0, 0x0, 0xff, 0xfc, 0xff, 0xfc, 0x0, 0x0, 0x3f, 0xfe, 0xff, 0xf8, 0x0, 0x0, 0x3f, 0xfe, 0xff, 0xf8, 0x0, 0x0, 0x1f, 0xfe, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xfe, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, /* U+00F2 "ò" */ 0x0, 0x7f, 0xff, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x80, 0x0, 0x0, 0x0, 0xf, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x80, 0x0, 0x0, 0x0, 0x3, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xfc, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x3f, 0xff, 0xc0, 0x1, 0xff, 0xfe, 0x1f, 0xff, 0x80, 0x0, 0x3f, 0xff, 0x1f, 0xff, 0x80, 0x0, 0xf, 0xff, 0xcf, 0xff, 0x80, 0x0, 0x3, 0xff, 0xe7, 0xff, 0x80, 0x0, 0x0, 0xff, 0xf3, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xfb, 0xff, 0xc0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0xff, 0xf7, 0xff, 0x80, 0x0, 0x0, 0xff, 0xf3, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xf9, 0xff, 0xf0, 0x0, 0x0, 0x7f, 0xfc, 0xff, 0xfc, 0x0, 0x0, 0x7f, 0xfe, 0x3f, 0xff, 0x0, 0x0, 0x7f, 0xfe, 0x1f, 0xff, 0xe0, 0x0, 0xff, 0xff, 0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0x3, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x3f, 0xff, 0xff, 0xff, 0xff, 0x80, 0xf, 0xff, 0xff, 0xff, 0xff, 0x80, 0x3, 0xff, 0xff, 0xff, 0xff, 0x80, 0x0, 0xff, 0xff, 0xff, 0xff, 0x80, 0x0, 0x1f, 0xff, 0xff, 0xff, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0xf, 0xff, 0xe0, 0x0, 0x0, /* U+00F3 "ó" */ 0x0, 0x0, 0x0, 0x3, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x3, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x3, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x3, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x1, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x1, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x1, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x1, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xfc, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x3f, 0xff, 0xc0, 0x1, 0xff, 0xfe, 0x1f, 0xff, 0x80, 0x0, 0x3f, 0xff, 0x1f, 0xff, 0x80, 0x0, 0xf, 0xff, 0xcf, 0xff, 0x80, 0x0, 0x3, 0xff, 0xe7, 0xff, 0x80, 0x0, 0x0, 0xff, 0xf3, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xfb, 0xff, 0xc0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0xff, 0xf7, 0xff, 0x80, 0x0, 0x0, 0xff, 0xf3, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xf9, 0xff, 0xf0, 0x0, 0x0, 0x7f, 0xfc, 0xff, 0xfc, 0x0, 0x0, 0x7f, 0xfe, 0x3f, 0xff, 0x0, 0x0, 0x7f, 0xfe, 0x1f, 0xff, 0xe0, 0x0, 0xff, 0xff, 0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0x3, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x3f, 0xff, 0xff, 0xff, 0xff, 0x80, 0xf, 0xff, 0xff, 0xff, 0xff, 0x80, 0x3, 0xff, 0xff, 0xff, 0xff, 0x80, 0x0, 0xff, 0xff, 0xff, 0xff, 0x80, 0x0, 0x1f, 0xff, 0xff, 0xff, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0xf, 0xff, 0xe0, 0x0, 0x0, /* U+00F4 "ô" */ 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0x80, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xfc, 0x0, 0x0, 0xf, 0xff, 0x9f, 0xff, 0x0, 0x0, 0xf, 0xff, 0x8f, 0xff, 0x80, 0x0, 0xf, 0xff, 0x83, 0xff, 0xe0, 0x0, 0xf, 0xff, 0xc0, 0xff, 0xf8, 0x0, 0x7, 0xff, 0xc0, 0x3f, 0xfe, 0x0, 0x7, 0xff, 0xc0, 0x1f, 0xff, 0x80, 0x7, 0xff, 0xc0, 0x7, 0xff, 0xe0, 0x7, 0xff, 0xc0, 0x1, 0xff, 0xf0, 0x7, 0xff, 0xe0, 0x0, 0x7f, 0xfc, 0x3, 0xff, 0xe0, 0x0, 0x1f, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xfc, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x3f, 0xff, 0xc0, 0x1, 0xff, 0xfe, 0x1f, 0xff, 0x80, 0x0, 0x3f, 0xff, 0x1f, 0xff, 0x80, 0x0, 0xf, 0xff, 0xcf, 0xff, 0x80, 0x0, 0x3, 0xff, 0xe7, 0xff, 0x80, 0x0, 0x0, 0xff, 0xf3, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xfb, 0xff, 0xc0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0xff, 0xf7, 0xff, 0x80, 0x0, 0x0, 0xff, 0xf3, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xf9, 0xff, 0xf0, 0x0, 0x0, 0x7f, 0xfc, 0xff, 0xfc, 0x0, 0x0, 0x7f, 0xfe, 0x3f, 0xff, 0x0, 0x0, 0x7f, 0xfe, 0x1f, 0xff, 0xe0, 0x0, 0xff, 0xff, 0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0x3, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x3f, 0xff, 0xff, 0xff, 0xff, 0x80, 0xf, 0xff, 0xff, 0xff, 0xff, 0x80, 0x3, 0xff, 0xff, 0xff, 0xff, 0x80, 0x0, 0xff, 0xff, 0xff, 0xff, 0x80, 0x0, 0x1f, 0xff, 0xff, 0xff, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0xf, 0xff, 0xe0, 0x0, 0x0, /* U+00F5 "õ" */ 0x0, 0x3, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x0, 0x8, 0x0, 0x1f, 0xff, 0xe0, 0x0, 0x1c, 0x0, 0x1f, 0xff, 0xf8, 0x0, 0x3e, 0x0, 0x3f, 0xff, 0xff, 0x80, 0x3f, 0x0, 0x3f, 0xff, 0xff, 0xf0, 0x7f, 0x80, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xc0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x3, 0xfe, 0xf, 0xff, 0xff, 0xf8, 0x1, 0xfc, 0x0, 0xff, 0xff, 0xf8, 0x0, 0xf8, 0x0, 0x1f, 0xff, 0xf8, 0x0, 0x70, 0x0, 0x3, 0xff, 0xf0, 0x0, 0x20, 0x0, 0x0, 0x7f, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0x80, 0x0, 0x0, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x1, 0xff, 0xff, 0xff, 0xff, 0x0, 0x1, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x1, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x1, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0xff, 0xff, 0x0, 0x7, 0xff, 0xf8, 0x7f, 0xfe, 0x0, 0x0, 0xff, 0xfc, 0x7f, 0xfe, 0x0, 0x0, 0x3f, 0xff, 0x3f, 0xfe, 0x0, 0x0, 0xf, 0xff, 0x9f, 0xfe, 0x0, 0x0, 0x3, 0xff, 0xcf, 0xff, 0x0, 0x0, 0x1, 0xff, 0xef, 0xff, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x3, 0xff, 0xdf, 0xfe, 0x0, 0x0, 0x3, 0xff, 0xcf, 0xff, 0x0, 0x0, 0x1, 0xff, 0xe7, 0xff, 0xc0, 0x0, 0x1, 0xff, 0xf3, 0xff, 0xf0, 0x0, 0x1, 0xff, 0xf8, 0xff, 0xfc, 0x0, 0x1, 0xff, 0xf8, 0x7f, 0xff, 0x80, 0x3, 0xff, 0xfc, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xf, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x3, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xfe, 0x0, 0xf, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x3, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xfc, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x3f, 0xff, 0x80, 0x0, 0x0, /* U+00F6 "ö" */ 0x7, 0xff, 0x80, 0x0, 0x7f, 0xf8, 0x3, 0xff, 0xc0, 0x0, 0x3f, 0xfc, 0x1, 0xff, 0xe0, 0x0, 0x1f, 0xfe, 0x0, 0xff, 0xf0, 0x0, 0xf, 0xff, 0x0, 0x7f, 0xf8, 0x0, 0x7, 0xff, 0x80, 0x3f, 0xfc, 0x0, 0x3, 0xff, 0xc0, 0x1f, 0xfe, 0x0, 0x1, 0xff, 0xe0, 0xf, 0xff, 0x0, 0x0, 0xff, 0xf0, 0x7, 0xff, 0x80, 0x0, 0x7f, 0xf8, 0x3, 0xff, 0xc0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xff, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xe0, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0x80, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x1f, 0xff, 0xe0, 0x0, 0xff, 0xff, 0xf, 0xff, 0xc0, 0x0, 0x1f, 0xff, 0x8f, 0xff, 0xc0, 0x0, 0x7, 0xff, 0xe7, 0xff, 0xc0, 0x0, 0x1, 0xff, 0xf3, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xf9, 0xff, 0xe0, 0x0, 0x0, 0x3f, 0xfd, 0xff, 0xe0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x7f, 0xfb, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xf9, 0xff, 0xe0, 0x0, 0x0, 0x3f, 0xfc, 0xff, 0xf8, 0x0, 0x0, 0x3f, 0xfe, 0x7f, 0xfe, 0x0, 0x0, 0x3f, 0xff, 0x1f, 0xff, 0x80, 0x0, 0x3f, 0xff, 0xf, 0xff, 0xf0, 0x0, 0x7f, 0xff, 0x83, 0xff, 0xff, 0xff, 0xff, 0xff, 0x81, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x1, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xc0, 0x0, 0xf, 0xff, 0xff, 0xff, 0x80, 0x0, 0x1, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x7, 0xff, 0xf0, 0x0, 0x0, /* U+00F7 "÷" */ 0x0, 0x0, 0xf, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0xff, 0xfc, 0x0, 0x0, 0x0, /* U+00F8 "ø" */ 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xf, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0x80, 0x0, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x3, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xfe, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0x80, 0x0, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x0, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x7f, 0xff, 0x80, 0x7f, 0xff, 0xfc, 0x3f, 0xff, 0x0, 0x3f, 0xff, 0xfe, 0x3f, 0xff, 0x0, 0x1f, 0xff, 0xff, 0x9f, 0xff, 0x0, 0xf, 0xff, 0xff, 0xcf, 0xff, 0x0, 0xf, 0xff, 0xff, 0xe7, 0xff, 0x80, 0x7, 0xff, 0xff, 0xf7, 0xff, 0x80, 0x3, 0xff, 0x3f, 0xff, 0xff, 0xc0, 0x3, 0xff, 0x9f, 0xff, 0xff, 0xe0, 0x1, 0xff, 0xcf, 0xff, 0xff, 0xf0, 0x0, 0xff, 0xc7, 0xff, 0xff, 0xf8, 0x0, 0x7f, 0xe3, 0xff, 0xff, 0xfc, 0x0, 0x7f, 0xf1, 0xff, 0xff, 0xfe, 0x0, 0x3f, 0xf8, 0xff, 0xff, 0xff, 0x0, 0x1f, 0xf8, 0x7f, 0xff, 0xff, 0x80, 0x1f, 0xfc, 0x3f, 0xff, 0xff, 0xc0, 0xf, 0xfe, 0x1f, 0xff, 0xff, 0xe0, 0x7, 0xfe, 0xf, 0xff, 0xff, 0xf0, 0x3, 0xff, 0x7, 0xff, 0xff, 0xf8, 0x3, 0xff, 0x83, 0xff, 0xff, 0xfc, 0x1, 0xff, 0xc1, 0xff, 0xff, 0xfe, 0x0, 0xff, 0xc0, 0xff, 0xff, 0xff, 0x0, 0xff, 0xe0, 0x7f, 0xff, 0xff, 0x80, 0x7f, 0xf0, 0x3f, 0xff, 0xff, 0xc0, 0x3f, 0xf0, 0x1f, 0xff, 0xff, 0xe0, 0x3f, 0xf8, 0xf, 0xff, 0xff, 0xf0, 0x1f, 0xfc, 0x7, 0xff, 0xff, 0xf8, 0xf, 0xfe, 0x3, 0xff, 0xff, 0xfc, 0x7, 0xfe, 0x1, 0xff, 0xff, 0xfe, 0x7, 0xff, 0x0, 0xff, 0xff, 0xff, 0x3, 0xff, 0x80, 0x7f, 0xff, 0xff, 0x81, 0xff, 0x80, 0x3f, 0xff, 0xff, 0xc1, 0xff, 0xc0, 0x1f, 0xff, 0xff, 0xe0, 0xff, 0xe0, 0xf, 0xff, 0xff, 0xf0, 0x7f, 0xf0, 0x7, 0xff, 0xff, 0xf8, 0x3f, 0xf0, 0x3, 0xff, 0xff, 0xfc, 0x3f, 0xf8, 0x1, 0xff, 0xff, 0xfe, 0x1f, 0xfc, 0x0, 0xff, 0xff, 0xff, 0xf, 0xfc, 0x0, 0x7f, 0xff, 0xff, 0x8f, 0xfe, 0x0, 0x3f, 0xff, 0xff, 0xc7, 0xff, 0x0, 0x1f, 0xff, 0xff, 0xe3, 0xff, 0x80, 0xf, 0xff, 0xff, 0xf1, 0xff, 0x80, 0x7, 0xff, 0xff, 0xf9, 0xff, 0xc0, 0x3, 0xff, 0xff, 0xfc, 0xff, 0xe0, 0x1, 0xff, 0xef, 0xff, 0x7f, 0xe0, 0x1, 0xff, 0xe7, 0xff, 0xff, 0xf0, 0x0, 0xff, 0xf3, 0xff, 0xff, 0xf8, 0x0, 0xff, 0xf9, 0xff, 0xff, 0xfc, 0x0, 0xff, 0xfc, 0x7f, 0xff, 0xfc, 0x0, 0xff, 0xfc, 0x3f, 0xff, 0xfe, 0x1, 0xff, 0xfe, 0xf, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0x0, 0x7, 0xff, 0xff, 0xff, 0xff, 0x0, 0x1, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0xf, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0x80, 0x0, 0x0, 0x0, 0x1, 0xff, 0x80, 0x0, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x0, 0x0, 0x0, /* U+00F9 "ù" */ 0x1, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x1, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x1, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x3, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x3, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x3, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x3, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x3, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0xff, 0xf7, 0xff, 0x80, 0x0, 0x1, 0xff, 0xef, 0xff, 0x0, 0x0, 0x7, 0xff, 0xdf, 0xff, 0x0, 0x0, 0xf, 0xff, 0xbf, 0xfe, 0x0, 0x0, 0x3f, 0xff, 0x3f, 0xff, 0x0, 0x0, 0xff, 0xfe, 0x7f, 0xff, 0x80, 0xf, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc1, 0xff, 0xff, 0xff, 0xff, 0xff, 0x81, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x7f, 0xff, 0xff, 0xdf, 0xfc, 0x0, 0x3f, 0xff, 0xfe, 0x3f, 0xf8, 0x0, 0x7, 0xff, 0xc0, 0x7f, 0xf0, /* U+00FA "ú" */ 0x0, 0x0, 0x0, 0x1f, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0x0, 0x0, 0x0, 0x1, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x7, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x3, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x80, 0x0, 0x0, 0x0, 0x7f, 0xfe, 0x0, 0x0, 0x0, 0x1, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x3, 0xff, 0xe0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x80, 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x3, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0xff, 0xf7, 0xff, 0x80, 0x0, 0x1, 0xff, 0xef, 0xff, 0x0, 0x0, 0x7, 0xff, 0xdf, 0xff, 0x0, 0x0, 0xf, 0xff, 0xbf, 0xfe, 0x0, 0x0, 0x3f, 0xff, 0x3f, 0xff, 0x0, 0x0, 0xff, 0xfe, 0x7f, 0xff, 0x80, 0xf, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc1, 0xff, 0xff, 0xff, 0xff, 0xff, 0x81, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x7f, 0xff, 0xff, 0xdf, 0xfc, 0x0, 0x3f, 0xff, 0xfe, 0x3f, 0xf8, 0x0, 0x7, 0xff, 0xc0, 0x7f, 0xf0, /* U+00FB "û" */ 0x0, 0x0, 0x7f, 0xfc, 0x0, 0x0, 0x0, 0x1, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x7, 0xff, 0xfc, 0x0, 0x0, 0x0, 0xf, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xfc, 0x0, 0x0, 0x0, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x3, 0xff, 0xff, 0xf8, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x7f, 0xfd, 0xff, 0xf8, 0x0, 0x1, 0xff, 0xf1, 0xff, 0xf8, 0x0, 0x7, 0xff, 0xc1, 0xff, 0xf0, 0x0, 0x1f, 0xff, 0x1, 0xff, 0xf0, 0x0, 0x7f, 0xfe, 0x1, 0xff, 0xf0, 0x1, 0xff, 0xf8, 0x3, 0xff, 0xf0, 0x3, 0xff, 0xe0, 0x3, 0xff, 0xf0, 0xf, 0xff, 0x80, 0x3, 0xff, 0xf0, 0x3f, 0xfe, 0x0, 0x3, 0xff, 0xe0, 0xff, 0xfc, 0x0, 0x3, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0xff, 0xf7, 0xff, 0x80, 0x0, 0x1, 0xff, 0xef, 0xff, 0x0, 0x0, 0x7, 0xff, 0xdf, 0xff, 0x0, 0x0, 0xf, 0xff, 0xbf, 0xfe, 0x0, 0x0, 0x3f, 0xff, 0x3f, 0xff, 0x0, 0x0, 0xff, 0xfe, 0x7f, 0xff, 0x80, 0xf, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc1, 0xff, 0xff, 0xff, 0xff, 0xff, 0x81, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x7f, 0xff, 0xff, 0xdf, 0xfc, 0x0, 0x3f, 0xff, 0xfe, 0x3f, 0xf8, 0x0, 0x7, 0xff, 0xc0, 0x7f, 0xf0, /* U+00FC "ü" */ 0x1f, 0xfe, 0x0, 0x1, 0xff, 0xe0, 0x3f, 0xfc, 0x0, 0x3, 0xff, 0xc0, 0x7f, 0xf8, 0x0, 0x7, 0xff, 0x80, 0xff, 0xf0, 0x0, 0xf, 0xff, 0x1, 0xff, 0xe0, 0x0, 0x1f, 0xfe, 0x3, 0xff, 0xc0, 0x0, 0x3f, 0xfc, 0x7, 0xff, 0x80, 0x0, 0x7f, 0xf8, 0xf, 0xff, 0x0, 0x0, 0xff, 0xf0, 0x1f, 0xfe, 0x0, 0x1, 0xff, 0xe0, 0x3f, 0xfc, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x1, 0xff, 0xef, 0xff, 0x0, 0x0, 0x3, 0xff, 0xdf, 0xfe, 0x0, 0x0, 0xf, 0xff, 0xbf, 0xfe, 0x0, 0x0, 0x1f, 0xff, 0x7f, 0xfc, 0x0, 0x0, 0x7f, 0xfe, 0x7f, 0xfe, 0x0, 0x1, 0xff, 0xfc, 0xff, 0xff, 0x0, 0x1f, 0xff, 0xf9, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc3, 0xff, 0xff, 0xff, 0xff, 0xff, 0x83, 0xff, 0xff, 0xff, 0xff, 0xff, 0x3, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x1, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, 0xff, 0xff, 0xff, 0xbf, 0xf8, 0x0, 0x7f, 0xff, 0xfc, 0x7f, 0xf0, 0x0, 0xf, 0xff, 0x80, 0xff, 0xe0, /* U+00FD "ý" */ 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x7f, 0xf9, 0xff, 0xf0, 0x0, 0x0, 0x1, 0xff, 0xe3, 0xff, 0xe0, 0x0, 0x0, 0x3, 0xff, 0xc3, 0xff, 0xc0, 0x0, 0x0, 0x7, 0xff, 0x87, 0xff, 0xc0, 0x0, 0x0, 0xf, 0xff, 0xf, 0xff, 0x80, 0x0, 0x0, 0x3f, 0xfc, 0xf, 0xff, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x3f, 0xfe, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x7f, 0xfc, 0x0, 0x0, 0x7, 0xff, 0x80, 0x7f, 0xf8, 0x0, 0x0, 0xf, 0xff, 0x0, 0xff, 0xf8, 0x0, 0x0, 0x1f, 0xfe, 0x1, 0xff, 0xf0, 0x0, 0x0, 0x3f, 0xfc, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x7f, 0xf0, 0x3, 0xff, 0xc0, 0x0, 0x1, 0xff, 0xe0, 0x7, 0xff, 0xc0, 0x0, 0x3, 0xff, 0xc0, 0x7, 0xff, 0x80, 0x0, 0x7, 0xff, 0x0, 0xf, 0xff, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x1f, 0xff, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x7f, 0xf8, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x7f, 0xf8, 0x0, 0x7, 0xff, 0x80, 0x0, 0xff, 0xf0, 0x0, 0xf, 0xff, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x1f, 0xfc, 0x0, 0x3, 0xff, 0xe0, 0x0, 0x3f, 0xf8, 0x0, 0x3, 0xff, 0xc0, 0x0, 0xff, 0xf0, 0x0, 0x7, 0xff, 0x80, 0x1, 0xff, 0xe0, 0x0, 0xf, 0xff, 0x0, 0x3, 0xff, 0x80, 0x0, 0xf, 0xff, 0x0, 0x7, 0xff, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0xff, 0xe0, 0x0, 0x0, 0xff, 0xf0, 0x1, 0xff, 0xc0, 0x0, 0x0, 0xff, 0xe0, 0x7, 0xff, 0x0, 0x0, 0x1, 0xff, 0xe0, 0xf, 0xfe, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x1f, 0xfc, 0x0, 0x0, 0x7, 0xff, 0x80, 0x3f, 0xf8, 0x0, 0x0, 0x7, 0xff, 0x0, 0xff, 0xe0, 0x0, 0x0, 0xf, 0xff, 0x1, 0xff, 0xc0, 0x0, 0x0, 0x1f, 0xfe, 0x3, 0xff, 0x80, 0x0, 0x0, 0x1f, 0xfc, 0x7, 0xff, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x1f, 0xfc, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0x7f, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xe0, 0xff, 0xc0, 0x0, 0x0, 0x1, 0xff, 0xe3, 0xff, 0x80, 0x0, 0x0, 0x1, 0xff, 0xc7, 0xff, 0x0, 0x0, 0x0, 0x3, 0xff, 0x8f, 0xfe, 0x0, 0x0, 0x0, 0x7, 0xff, 0x9f, 0xf8, 0x0, 0x0, 0x0, 0x7, 0xff, 0x3f, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xfe, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x1f, 0xfd, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0x3, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc, 0x0, 0x0, 0x0, 0x0, 0x0, /* U+00FE "þ" */ 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x3f, 0xfe, 0x0, 0x0, 0xff, 0xf3, 0xff, 0xff, 0xf0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0xff, 0xff, 0x80, 0x3, 0xff, 0xfc, 0xff, 0xfe, 0x0, 0x0, 0xff, 0xfc, 0xff, 0xfc, 0x0, 0x0, 0x7f, 0xfe, 0xff, 0xf8, 0x0, 0x0, 0x3f, 0xfe, 0xff, 0xf8, 0x0, 0x0, 0x1f, 0xfe, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xfe, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xfe, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xfe, 0xff, 0xf0, 0x0, 0x0, 0x3f, 0xfe, 0xff, 0xf0, 0x0, 0x0, 0x7f, 0xfe, 0xff, 0xf0, 0x0, 0x0, 0xff, 0xfc, 0xff, 0xf0, 0x0, 0x3, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x0, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, /* U+00FF "ÿ" */ 0x0, 0xff, 0xf0, 0x0, 0xf, 0xff, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x1f, 0xfe, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x3f, 0xfc, 0x0, 0x7, 0xff, 0x80, 0x0, 0x7f, 0xf8, 0x0, 0xf, 0xff, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x1f, 0xfe, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x3f, 0xfc, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x7f, 0xf8, 0x0, 0x7, 0xff, 0x80, 0x0, 0xff, 0xf0, 0x0, 0xf, 0xff, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xfc, 0x0, 0x0, 0x0, 0xf, 0xff, 0x7f, 0xfc, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x3f, 0xfd, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xf1, 0xff, 0xe0, 0x0, 0x0, 0x1, 0xff, 0xe3, 0xff, 0xe0, 0x0, 0x0, 0x3, 0xff, 0xc7, 0xff, 0xc0, 0x0, 0x0, 0x7, 0xff, 0x87, 0xff, 0x80, 0x0, 0x0, 0x1f, 0xfe, 0xf, 0xff, 0x80, 0x0, 0x0, 0x3f, 0xfc, 0x1f, 0xff, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x3f, 0xfc, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x7f, 0xfc, 0x0, 0x0, 0x7, 0xff, 0x80, 0x7f, 0xf8, 0x0, 0x0, 0xf, 0xff, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xfe, 0x1, 0xff, 0xf0, 0x0, 0x0, 0x3f, 0xf8, 0x3, 0xff, 0xe0, 0x0, 0x0, 0xff, 0xf0, 0x3, 0xff, 0xc0, 0x0, 0x1, 0xff, 0xe0, 0x7, 0xff, 0x80, 0x0, 0x3, 0xff, 0x80, 0xf, 0xff, 0x80, 0x0, 0x7, 0xff, 0x0, 0xf, 0xff, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x7f, 0xf8, 0x0, 0x3, 0xff, 0xc0, 0x0, 0xff, 0xf0, 0x0, 0x7, 0xff, 0x80, 0x0, 0xff, 0xf0, 0x0, 0xf, 0xfe, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x1f, 0xfc, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x7f, 0xf8, 0x0, 0x7, 0xff, 0xc0, 0x0, 0xff, 0xf0, 0x0, 0x7, 0xff, 0x80, 0x1, 0xff, 0xc0, 0x0, 0xf, 0xff, 0x0, 0x3, 0xff, 0x80, 0x0, 0x1f, 0xfe, 0x0, 0xf, 0xff, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0xff, 0xe0, 0x0, 0x0, 0xff, 0xf0, 0x3, 0xff, 0x80, 0x0, 0x1, 0xff, 0xe0, 0x7, 0xff, 0x0, 0x0, 0x1, 0xff, 0xc0, 0xf, 0xfe, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x1f, 0xfc, 0x0, 0x0, 0x7, 0xff, 0x80, 0x7f, 0xf0, 0x0, 0x0, 0x7, 0xff, 0x0, 0xff, 0xe0, 0x0, 0x0, 0xf, 0xfe, 0x1, 0xff, 0xc0, 0x0, 0x0, 0x1f, 0xfe, 0x3, 0xff, 0x80, 0x0, 0x0, 0x3f, 0xfc, 0xf, 0xfe, 0x0, 0x0, 0x0, 0x3f, 0xf8, 0x1f, 0xfc, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x7f, 0xe0, 0x0, 0x0, 0x0, 0xff, 0xe1, 0xff, 0xc0, 0x0, 0x0, 0x1, 0xff, 0xc3, 0xff, 0x80, 0x0, 0x0, 0x3, 0xff, 0xc7, 0xff, 0x0, 0x0, 0x0, 0x3, 0xff, 0x8f, 0xfc, 0x0, 0x0, 0x0, 0x7, 0xff, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0xf, 0xff, 0x7f, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xfe, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x1f, 0xfd, 0xff, 0x80, 0x0, 0x0, 0x0, 0x3f, 0xfb, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8, 0x0, 0x0, 0x0, 0x0, 0x0, /* U+2013 "–" */ 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, /* U+2014 "—" */ 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, /* U+2018 "‘" */ 0x1, 0xff, 0x80, 0xff, 0xc0, 0x7f, 0xe0, 0x7f, 0xf0, 0x3f, 0xf0, 0x1f, 0xf8, 0x1f, 0xfc, 0xf, 0xfe, 0x7, 0xff, 0x7, 0xff, 0x3, 0xff, 0x81, 0xff, 0xc1, 0xff, 0xe0, 0xff, 0xf0, 0xff, 0xf0, 0x7f, 0xf8, 0x3f, 0xfc, 0x3f, 0xfe, 0x1f, 0xff, 0xf, 0xff, 0xf, 0xff, 0x87, 0xff, 0xc3, 0xff, 0xe1, 0xff, 0xf0, 0xff, 0xf8, 0x7f, 0xfc, 0x3f, 0xfe, 0x1f, 0xff, 0xf, 0xff, 0x87, 0xff, 0xc3, 0xff, 0xe1, 0xff, 0xf0, 0xff, 0xf8, 0x7f, 0xfc, 0x0, /* U+2019 "’" */ 0xf, 0xff, 0x87, 0xff, 0xc3, 0xff, 0xe1, 0xff, 0xf0, 0xff, 0xf8, 0x7f, 0xfc, 0x3f, 0xfe, 0x1f, 0xff, 0xf, 0xff, 0x87, 0xff, 0xc3, 0xff, 0xe1, 0xff, 0xf0, 0xff, 0xf8, 0x7f, 0xfc, 0x3f, 0xfc, 0x3f, 0xfe, 0x1f, 0xff, 0xf, 0xff, 0x7, 0xff, 0x83, 0xff, 0xc3, 0xff, 0xc1, 0xff, 0xe0, 0xff, 0xe0, 0x7f, 0xf0, 0x3f, 0xf8, 0x3f, 0xf8, 0x1f, 0xfc, 0xf, 0xfe, 0x7, 0xfe, 0x3, 0xff, 0x3, 0xff, 0x81, 0xff, 0x80, 0xff, 0xc0, 0x7f, 0xe0, 0x0, /* U+201C "“" */ 0x1, 0xff, 0x80, 0x7, 0xfe, 0x3, 0xff, 0x0, 0xf, 0xfc, 0x7, 0xfe, 0x0, 0x1f, 0xf8, 0x1f, 0xfc, 0x0, 0x7f, 0xf0, 0x3f, 0xf8, 0x0, 0xff, 0xc0, 0x7f, 0xe0, 0x1, 0xff, 0x81, 0xff, 0xc0, 0x7, 0xff, 0x3, 0xff, 0x80, 0xf, 0xfe, 0x7, 0xff, 0x0, 0x1f, 0xfc, 0x1f, 0xfe, 0x0, 0x7f, 0xf0, 0x3f, 0xf8, 0x0, 0xff, 0xe0, 0x7f, 0xf0, 0x1, 0xff, 0xc1, 0xff, 0xe0, 0x7, 0xff, 0x83, 0xff, 0xc0, 0xf, 0xff, 0xf, 0xff, 0x0, 0x3f, 0xfc, 0x1f, 0xfe, 0x0, 0x7f, 0xf8, 0x3f, 0xfc, 0x0, 0xff, 0xf0, 0xff, 0xf8, 0x3, 0xff, 0xe1, 0xff, 0xf0, 0x7, 0xff, 0xc3, 0xff, 0xc0, 0xf, 0xff, 0xf, 0xff, 0x80, 0x3f, 0xfe, 0x1f, 0xff, 0x0, 0x7f, 0xfc, 0x3f, 0xfe, 0x0, 0xff, 0xf8, 0x7f, 0xfc, 0x1, 0xff, 0xf0, 0xff, 0xf8, 0x3, 0xff, 0xe1, 0xff, 0xf0, 0x7, 0xff, 0xc3, 0xff, 0xe0, 0xf, 0xff, 0x87, 0xff, 0xc0, 0x1f, 0xff, 0xf, 0xff, 0x80, 0x3f, 0xfe, 0x1f, 0xff, 0x0, 0x7f, 0xfc, 0x3f, 0xfe, 0x0, 0xff, 0xf8, 0x7f, 0xfc, 0x1, 0xff, 0xf0, 0xff, 0xf8, 0x3, 0xff, 0xe1, 0xff, 0xf0, 0x7, 0xff, 0xc0, /* U+201D "”" */ 0xf, 0xff, 0x80, 0x3f, 0xfe, 0x1f, 0xff, 0x0, 0x7f, 0xfc, 0x3f, 0xfe, 0x0, 0xff, 0xf8, 0x7f, 0xfc, 0x1, 0xff, 0xf0, 0xff, 0xf8, 0x3, 0xff, 0xe1, 0xff, 0xf0, 0x7, 0xff, 0xc3, 0xff, 0xe0, 0xf, 0xff, 0x87, 0xff, 0xc0, 0x1f, 0xff, 0xf, 0xff, 0x80, 0x3f, 0xfe, 0x1f, 0xff, 0x0, 0x7f, 0xfc, 0x3f, 0xfe, 0x0, 0xff, 0xf8, 0x7f, 0xfc, 0x1, 0xff, 0xf0, 0xff, 0xf8, 0x3, 0xff, 0xe1, 0xff, 0xf0, 0x7, 0xff, 0xc3, 0xff, 0xc0, 0xf, 0xff, 0xf, 0xff, 0x80, 0x3f, 0xfe, 0x1f, 0xff, 0x0, 0x7f, 0xfc, 0x3f, 0xfc, 0x0, 0xff, 0xf0, 0x7f, 0xf8, 0x1, 0xff, 0xe0, 0xff, 0xf0, 0x3, 0xff, 0xc3, 0xff, 0xc0, 0xf, 0xff, 0x7, 0xff, 0x80, 0x1f, 0xfe, 0xf, 0xfe, 0x0, 0x3f, 0xf8, 0x1f, 0xfc, 0x0, 0x7f, 0xf0, 0x3f, 0xf8, 0x1, 0xff, 0xe0, 0xff, 0xe0, 0x3, 0xff, 0x81, 0xff, 0xc0, 0x7, 0xff, 0x3, 0xff, 0x80, 0xf, 0xfe, 0x7, 0xfe, 0x0, 0x1f, 0xf8, 0xf, 0xfc, 0x0, 0x7f, 0xf0, 0x3f, 0xf8, 0x0, 0xff, 0xe0, 0x7f, 0xe0, 0x1, 0xff, 0x80, 0xff, 0xc0, 0x3, 0xff, 0x1, 0xff, 0x80, 0x7, 0xfe, 0x0, /* U+2022 "•" */ 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, /* U+2026 "…" */ 0xff, 0xfc, 0x0, 0x1, 0xff, 0xf8, 0x0, 0x3, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x1f, 0xff, 0x80, 0x0, 0x3f, 0xff, 0xff, 0xfc, 0x0, 0x1, 0xff, 0xf8, 0x0, 0x3, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x1f, 0xff, 0x80, 0x0, 0x3f, 0xff, 0xff, 0xfc, 0x0, 0x1, 0xff, 0xf8, 0x0, 0x3, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x1f, 0xff, 0x80, 0x0, 0x3f, 0xff, 0xff, 0xfc, 0x0, 0x1, 0xff, 0xf8, 0x0, 0x3, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x1f, 0xff, 0x80, 0x0, 0x3f, 0xff, 0xff, 0xfc, 0x0, 0x1, 0xff, 0xf8, 0x0, 0x3, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x1f, 0xff, 0x80, 0x0, 0x3f, 0xff, 0xff, 0xfc, 0x0, 0x1, 0xff, 0xf8, 0x0, 0x3, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x1f, 0xff, 0x80, 0x0, 0x3f, 0xff, 0xff, 0xfc, 0x0, 0x1, 0xff, 0xf8, 0x0, 0x3, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x1f, 0xff, 0x80, 0x0, 0x3f, 0xff, /* U+20AC "€" */ 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xfc, 0x0, 0x0, 0xf, 0xff, 0xff, 0xff, 0x80, 0x0, 0x7, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x3, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xf8, 0x0, 0xf, 0xff, 0xff, 0xff, 0xff, 0x0, 0x3, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x1f, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x83, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x83, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x80, 0x0, 0x0, 0x0, 0x3, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x7, 0xff, 0xff, 0xff, 0xff, 0x80, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x7, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x3, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfc, /* U+2122 "™" */ 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x3, 0xff, 0xff, 0x0, 0x0, 0xff, 0xc0, 0x0, 0xff, 0xff, 0xc0, 0x1, 0xff, 0xff, 0x80, 0x0, 0x7f, 0xe0, 0x0, 0x7f, 0xff, 0xf0, 0x0, 0xff, 0xff, 0xc0, 0x0, 0x3f, 0xf0, 0x0, 0x3f, 0xef, 0xf8, 0x0, 0x7f, 0xbf, 0xe0, 0x0, 0x1f, 0xf8, 0x0, 0x1f, 0xf7, 0xfc, 0x0, 0x7f, 0xdf, 0xf0, 0x0, 0xf, 0xfc, 0x0, 0xf, 0xfb, 0xfe, 0x0, 0x3f, 0xef, 0xf8, 0x0, 0x7, 0xfe, 0x0, 0x7, 0xfc, 0xff, 0x80, 0x1f, 0xe7, 0xfc, 0x0, 0x3, 0xff, 0x0, 0x3, 0xfe, 0x7f, 0xc0, 0xf, 0xf3, 0xfe, 0x0, 0x1, 0xff, 0x80, 0x1, 0xff, 0x3f, 0xe0, 0xf, 0xf9, 0xff, 0x0, 0x0, 0xff, 0xc0, 0x0, 0xff, 0x9f, 0xf8, 0x7, 0xfc, 0xff, 0x80, 0x0, 0x7f, 0xe0, 0x0, 0x7f, 0xc7, 0xfc, 0x3, 0xfc, 0x7f, 0xc0, 0x0, 0x3f, 0xf0, 0x0, 0x3f, 0xe3, 0xfe, 0x1, 0xfe, 0x3f, 0xe0, 0x0, 0x1f, 0xf8, 0x0, 0x1f, 0xf1, 0xff, 0x1, 0xff, 0x1f, 0xf0, 0x0, 0xf, 0xfc, 0x0, 0xf, 0xf8, 0x7f, 0xc0, 0xff, 0x8f, 0xf8, 0x0, 0x7, 0xfe, 0x0, 0x7, 0xfc, 0x3f, 0xe0, 0x7f, 0x87, 0xfc, 0x0, 0x3, 0xff, 0x0, 0x3, 0xfe, 0x1f, 0xf0, 0x3f, 0xc3, 0xfe, 0x0, 0x1, 0xff, 0x80, 0x1, 0xff, 0xf, 0xf8, 0x3f, 0xe1, 0xff, 0x0, 0x0, 0xff, 0xc0, 0x0, 0xff, 0x83, 0xfe, 0x1f, 0xe0, 0xff, 0x80, 0x0, 0x7f, 0xe0, 0x0, 0x7f, 0xc1, 0xff, 0xf, 0xf0, 0x7f, 0xc0, 0x0, 0x3f, 0xf0, 0x0, 0x3f, 0xe0, 0xff, 0x87, 0xf8, 0x3f, 0xe0, 0x0, 0x1f, 0xf8, 0x0, 0x1f, 0xf0, 0x3f, 0xc7, 0xfc, 0x1f, 0xf0, 0x0, 0xf, 0xfc, 0x0, 0xf, 0xf8, 0x1f, 0xf3, 0xfc, 0xf, 0xf8, 0x0, 0x7, 0xfe, 0x0, 0x7, 0xfc, 0xf, 0xf9, 0xfe, 0x7, 0xfc, 0x0, 0x3, 0xff, 0x0, 0x3, 0xfe, 0x7, 0xfc, 0xff, 0x3, 0xfe, 0x0, 0x1, 0xff, 0x80, 0x1, 0xff, 0x1, 0xfe, 0xff, 0x1, 0xff, 0x0, 0x0, 0xff, 0xc0, 0x0, 0xff, 0x80, 0xff, 0xff, 0x80, 0xff, 0x80, 0x0, 0x7f, 0xe0, 0x0, 0x7f, 0xc0, 0x7f, 0xff, 0xc0, 0x7f, 0xc0, 0x0, 0x3f, 0xf0, 0x0, 0x3f, 0xe0, 0x3f, 0xff, 0xe0, 0x3f, 0xe0, 0x0, 0x1f, 0xf8, 0x0, 0x1f, 0xf0, 0xf, 0xff, 0xe0, 0x1f, 0xf0, 0x0, 0xf, 0xfc, 0x0, 0xf, 0xf8, 0x7, 0xff, 0xf0, 0xf, 0xf8, 0x0, 0x7, 0xfe, 0x0, 0x7, 0xfc, 0x3, 0xff, 0xf8, 0x7, 0xfc, 0x0, 0x3, 0xff, 0x0, 0x3, 0xfe, 0x0, 0xff, 0xfc, 0x3, 0xfe, 0x0, 0x1, 0xff, 0x80, 0x1, 0xff, 0x0, 0x7f, 0xfc, 0x1, 0xff, 0x0, 0x0, 0xff, 0xc0, 0x0, 0xff, 0x80, 0x3f, 0xfe, 0x0, 0xff, 0x80, 0x0, 0x7f, 0xe0, 0x0, 0x7f, 0xc0, 0x1f, 0xff, 0x0, 0x7f, 0xc0, 0x0, 0x3f, 0xf0, 0x0, 0x3f, 0xe0, 0x7, 0xff, 0x0, 0x3f, 0xe0, 0x0, 0x1f, 0xf8, 0x0, 0x1f, 0xf0, 0x3, 0xff, 0x80, 0x1f, 0xf0, 0x0, 0xf, 0xfc, 0x0, 0xf, 0xf8, 0x1, 0xff, 0xc0, 0xf, 0xf8, 0x0, 0x7, 0xfe, 0x0, 0x7, 0xfc, 0x0, 0x7f, 0xe0, 0x7, 0xfc, 0x0, 0x3, 0xff, 0x0, 0x3, 0xfe, 0x0, 0x3f, 0xe0, 0x3, 0xfe, 0x0, 0x1, 0xff, 0x80, 0x1, 0xff, 0x0, 0x1f, 0xf0, 0x1, 0xff, 0x0, 0x0, 0xff, 0xc0, 0x0, 0xff, 0x80, 0x0, 0x0, 0x0, 0xff, 0x80, 0x0, 0x7f, 0xe0, 0x0, 0x7f, 0xc0, 0x0, 0x0, 0x0, 0x7f, 0xc0, 0x0, 0x3f, 0xf0, 0x0, 0x3f, 0xe0, 0x0, 0x0, 0x0, 0x3f, 0xe0, 0x0, 0x1f, 0xf8, 0x0, 0x1f, 0xf0, 0x0, 0x0, 0x0, 0x1f, 0xf0, 0x0, 0xf, 0xfc, 0x0, 0xf, 0xf8, 0x0, 0x0, 0x0, 0xf, 0xf8, 0x0, 0x7, 0xfe, 0x0, 0x7, 0xfc, 0x0, 0x0, 0x0, 0x7, 0xfc, 0x0, 0x3, 0xff, 0x0, 0x3, 0xfe, 0x0, 0x0, 0x0, 0x3, 0xfe, 0x0, 0x1, 0xff, 0x80, 0x1, 0xff, 0x0, 0x0, 0x0, 0x1, 0xff, 0x0, 0x0, 0xff, 0xc0, 0x0, 0xff, 0x80, 0x0, 0x0, 0x0, 0xff, 0x80, 0x0, 0x7f, 0xe0, 0x0, 0x7f, 0xc0, 0x0, 0x0, 0x0, 0x7f, 0xc0, 0x0, 0x3f, 0xf0, 0x0, 0x3f, 0xe0, 0x0, 0x0, 0x0, 0x3f, 0xe0, 0x0, 0x1f, 0xf8, 0x0, 0x1f, 0xf0, 0x0, 0x0, 0x0, 0x1f, 0xf0, 0x0, 0xf, 0xfc, 0x0, 0xf, 0xf8, 0x0, 0x0, 0x0, 0xf, 0xf8, 0x0, 0x7, 0xfe, 0x0, 0x7, 0xfc, 0x0, 0x0, 0x0, 0x7, 0xfc, 0x0, 0x3, 0xff, 0x0, 0x3, 0xfe, 0x0, 0x0, 0x0, 0x3, 0xfe, 0x0, 0x1, 0xff, 0x80, 0x1, 0xff, 0x0, 0x0, 0x0, 0x1, 0xff, 0x0, 0x0, 0xff, 0xc0, 0x0, 0xff, 0x80, 0x0, 0x0, 0x0, 0xff, 0x80, 0x0, 0x7f, 0xe0, 0x0, 0x7f, 0xc0, 0x0, 0x0, 0x0, 0x7f, 0xc0, 0x0, 0x3f, 0xf0, 0x0, 0x3f, 0xe0, 0x0, 0x0, 0x0, 0x3f, 0xe0, 0x0, 0x1f, 0xf8, 0x0, 0x1f, 0xf0, 0x0, 0x0, 0x0, 0x1f, 0xf0, 0x0, 0xf, 0xfc, 0x0, 0xf, 0xf8, 0x0, 0x0, 0x0, 0xf, 0xf8, 0x0, 0x7, 0xfe, 0x0, 0x7, 0xfc, 0x0, 0x0, 0x0, 0x7, 0xfc, 0x0, 0x3, 0xff, 0x0, 0x3, 0xfe, 0x0, 0x0, 0x0, 0x3, 0xfe, /* U+2212 "−" */ 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, /* U+2260 "≠" */ 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, /* U+2264 "≤" */ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x18, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7e, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xff, 0x80, 0x0, 0x0, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x3, 0xff, 0xff, 0xff, 0x80, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x1, 0xff, 0xff, 0xff, 0x80, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xff, 0x80, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xff, 0x80, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0x80, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0x1, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x3, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x3, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0xf, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7e, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, /* U+2265 "≥" */ 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x1, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xff, 0x80, 0x0, 0x0, 0x3, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0x80, 0x0, 0x0, 0xf, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x3, 0xff, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x3, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x0, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x7, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x1, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xff, 0x80, 0x0, 0xf, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x7, 0xff, 0xff, 0xff, 0x80, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc }; /*--------------------- * GLYPH DESCRIPTION *--------------------*/ static const lv_font_fmt_txt_glyph_dsc_t glyph_dsc[] = { {.bitmap_index = 0, .adv_w = 0, .box_w = 0, .box_h = 0, .ofs_x = 0, .ofs_y = 0} /* id = 0 reserved */, {.bitmap_index = 0, .adv_w = 582, .box_w = 1, .box_h = 1, .ofs_x = 0, .ofs_y = 0}, {.bitmap_index = 1, .adv_w = 560, .box_w = 14, .box_h = 98, .ofs_x = 10, .ofs_y = 0}, {.bitmap_index = 173, .adv_w = 806, .box_w = 35, .box_h = 34, .ofs_x = 8, .ofs_y = 64}, {.bitmap_index = 322, .adv_w = 1053, .box_w = 53, .box_h = 98, .ofs_x = 6, .ofs_y = 0}, {.bitmap_index = 972, .adv_w = 1053, .box_w = 46, .box_h = 125, .ofs_x = 10, .ofs_y = -16}, {.bitmap_index = 1691, .adv_w = 1917, .box_w = 95, .box_h = 98, .ofs_x = 12, .ofs_y = 0}, {.bitmap_index = 2855, .adv_w = 1136, .box_w = 58, .box_h = 98, .ofs_x = 10, .ofs_y = 0}, {.bitmap_index = 3566, .adv_w = 459, .box_w = 13, .box_h = 34, .ofs_x = 8, .ofs_y = 64}, {.bitmap_index = 3622, .adv_w = 717, .box_w = 28, .box_h = 132, .ofs_x = 8, .ofs_y = -17}, {.bitmap_index = 4084, .adv_w = 717, .box_w = 28, .box_h = 132, .ofs_x = 8, .ofs_y = -17}, {.bitmap_index = 4546, .adv_w = 1075, .box_w = 56, .box_h = 53, .ofs_x = 6, .ofs_y = 48}, {.bitmap_index = 4917, .adv_w = 1232, .box_w = 53, .box_h = 54, .ofs_x = 12, .ofs_y = 17}, {.bitmap_index = 5275, .adv_w = 515, .box_w = 20, .box_h = 33, .ofs_x = 3, .ofs_y = -20}, {.bitmap_index = 5358, .adv_w = 1109, .box_w = 46, .box_h = 10, .ofs_x = 12, .ofs_y = 39}, {.bitmap_index = 5416, .adv_w = 515, .box_w = 14, .box_h = 14, .ofs_x = 9, .ofs_y = 0}, {.bitmap_index = 5441, .adv_w = 728, .box_w = 44, .box_h = 129, .ofs_x = 1, .ofs_y = -15}, {.bitmap_index = 6151, .adv_w = 1053, .box_w = 48, .box_h = 98, .ofs_x = 9, .ofs_y = 0}, {.bitmap_index = 6739, .adv_w = 1053, .box_w = 45, .box_h = 98, .ofs_x = 11, .ofs_y = 0}, {.bitmap_index = 7291, .adv_w = 1053, .box_w = 45, .box_h = 98, .ofs_x = 9, .ofs_y = 0}, {.bitmap_index = 7843, .adv_w = 1053, .box_w = 40, .box_h = 98, .ofs_x = 11, .ofs_y = 0}, {.bitmap_index = 8333, .adv_w = 1053, .box_w = 50, .box_h = 98, .ofs_x = 9, .ofs_y = 0}, {.bitmap_index = 8946, .adv_w = 1053, .box_w = 41, .box_h = 98, .ofs_x = 11, .ofs_y = 0}, {.bitmap_index = 9449, .adv_w = 1053, .box_w = 48, .box_h = 98, .ofs_x = 9, .ofs_y = 0}, {.bitmap_index = 10037, .adv_w = 1053, .box_w = 43, .box_h = 98, .ofs_x = 10, .ofs_y = 0}, {.bitmap_index = 10564, .adv_w = 1053, .box_w = 50, .box_h = 98, .ofs_x = 8, .ofs_y = 0}, {.bitmap_index = 11177, .adv_w = 1053, .box_w = 48, .box_h = 98, .ofs_x = 9, .ofs_y = 0}, {.bitmap_index = 11765, .adv_w = 515, .box_w = 14, .box_h = 70, .ofs_x = 9, .ofs_y = 0}, {.bitmap_index = 11888, .adv_w = 515, .box_w = 20, .box_h = 89, .ofs_x = 3, .ofs_y = -19}, {.bitmap_index = 12111, .adv_w = 1232, .box_w = 53, .box_h = 64, .ofs_x = 12, .ofs_y = 15}, {.bitmap_index = 12535, .adv_w = 1232, .box_w = 53, .box_h = 38, .ofs_x = 12, .ofs_y = 25}, {.bitmap_index = 12787, .adv_w = 1232, .box_w = 53, .box_h = 64, .ofs_x = 12, .ofs_y = 15}, {.bitmap_index = 13211, .adv_w = 735, .box_w = 38, .box_h = 98, .ofs_x = 4, .ofs_y = 0}, {.bitmap_index = 13677, .adv_w = 1826, .box_w = 88, .box_h = 98, .ofs_x = 13, .ofs_y = 0}, {.bitmap_index = 14755, .adv_w = 1120, .box_w = 64, .box_h = 98, .ofs_x = 3, .ofs_y = 0}, {.bitmap_index = 15539, .adv_w = 1165, .box_w = 50, .box_h = 98, .ofs_x = 12, .ofs_y = 0}, {.bitmap_index = 16152, .adv_w = 934, .box_w = 43, .box_h = 98, .ofs_x = 10, .ofs_y = 0}, {.bitmap_index = 16679, .adv_w = 1178, .box_w = 51, .box_h = 98, .ofs_x = 12, .ofs_y = 0}, {.bitmap_index = 17304, .adv_w = 1060, .box_w = 46, .box_h = 98, .ofs_x = 12, .ofs_y = 0}, {.bitmap_index = 17868, .adv_w = 1026, .box_w = 46, .box_h = 98, .ofs_x = 12, .ofs_y = 0}, {.bitmap_index = 18432, .adv_w = 1098, .box_w = 48, .box_h = 98, .ofs_x = 10, .ofs_y = 0}, {.bitmap_index = 19020, .adv_w = 1232, .box_w = 53, .box_h = 98, .ofs_x = 12, .ofs_y = 0}, {.bitmap_index = 19670, .adv_w = 710, .box_w = 32, .box_h = 98, .ofs_x = 6, .ofs_y = 0}, {.bitmap_index = 20062, .adv_w = 851, .box_w = 39, .box_h = 98, .ofs_x = 4, .ofs_y = 0}, {.bitmap_index = 20540, .adv_w = 1102, .box_w = 53, .box_h = 98, .ofs_x = 12, .ofs_y = 0}, {.bitmap_index = 21190, .adv_w = 918, .box_w = 44, .box_h = 98, .ofs_x = 12, .ofs_y = 0}, {.bitmap_index = 21729, .adv_w = 1411, .box_w = 65, .box_h = 98, .ofs_x = 12, .ofs_y = 0}, {.bitmap_index = 22526, .adv_w = 1225, .box_w = 53, .box_h = 98, .ofs_x = 12, .ofs_y = 0}, {.bitmap_index = 23176, .adv_w = 1219, .box_w = 55, .box_h = 98, .ofs_x = 10, .ofs_y = 0}, {.bitmap_index = 23850, .adv_w = 1100, .box_w = 49, .box_h = 98, .ofs_x = 12, .ofs_y = 0}, {.bitmap_index = 24451, .adv_w = 1219, .box_w = 62, .box_h = 106, .ofs_x = 10, .ofs_y = -8}, {.bitmap_index = 25273, .adv_w = 1165, .box_w = 56, .box_h = 98, .ofs_x = 12, .ofs_y = 0}, {.bitmap_index = 25959, .adv_w = 983, .box_w = 46, .box_h = 98, .ofs_x = 8, .ofs_y = 0}, {.bitmap_index = 26523, .adv_w = 952, .box_w = 55, .box_h = 98, .ofs_x = 2, .ofs_y = 0}, {.bitmap_index = 27197, .adv_w = 1198, .box_w = 52, .box_h = 98, .ofs_x = 11, .ofs_y = 0}, {.bitmap_index = 27834, .adv_w = 1060, .box_w = 56, .box_h = 98, .ofs_x = 5, .ofs_y = 0}, {.bitmap_index = 28520, .adv_w = 1319, .box_w = 66, .box_h = 98, .ofs_x = 9, .ofs_y = 0}, {.bitmap_index = 29329, .adv_w = 1111, .box_w = 60, .box_h = 98, .ofs_x = 5, .ofs_y = 0}, {.bitmap_index = 30064, .adv_w = 1100, .box_w = 62, .box_h = 98, .ofs_x = 3, .ofs_y = 0}, {.bitmap_index = 30824, .adv_w = 977, .box_w = 48, .box_h = 98, .ofs_x = 6, .ofs_y = 0}, {.bitmap_index = 31412, .adv_w = 728, .box_w = 27, .box_h = 131, .ofs_x = 12, .ofs_y = -17}, {.bitmap_index = 31855, .adv_w = 728, .box_w = 44, .box_h = 129, .ofs_x = 1, .ofs_y = -15}, {.bitmap_index = 32565, .adv_w = 728, .box_w = 27, .box_h = 131, .ofs_x = 6, .ofs_y = -17}, {.bitmap_index = 33008, .adv_w = 1091, .box_w = 56, .box_h = 48, .ofs_x = 6, .ofs_y = 59}, {.bitmap_index = 33344, .adv_w = 1142, .box_w = 71, .box_h = 10, .ofs_x = 1, .ofs_y = -24}, {.bitmap_index = 33433, .adv_w = 679, .box_w = 30, .box_h = 19, .ofs_x = 7, .ofs_y = 81}, {.bitmap_index = 33505, .adv_w = 1053, .box_w = 54, .box_h = 70, .ofs_x = 6, .ofs_y = 0}, {.bitmap_index = 33978, .adv_w = 1111, .box_w = 48, .box_h = 98, .ofs_x = 11, .ofs_y = 0}, {.bitmap_index = 34566, .adv_w = 894, .box_w = 39, .box_h = 70, .ofs_x = 10, .ofs_y = 0}, {.bitmap_index = 34908, .adv_w = 1122, .box_w = 49, .box_h = 98, .ofs_x = 10, .ofs_y = 0}, {.bitmap_index = 35509, .adv_w = 1044, .box_w = 47, .box_h = 70, .ofs_x = 10, .ofs_y = 0}, {.bitmap_index = 35921, .adv_w = 685, .box_w = 40, .box_h = 98, .ofs_x = 4, .ofs_y = 0}, {.bitmap_index = 36411, .adv_w = 1107, .box_w = 54, .box_h = 94, .ofs_x = 8, .ofs_y = -24}, {.bitmap_index = 37046, .adv_w = 1122, .box_w = 48, .box_h = 98, .ofs_x = 11, .ofs_y = 0}, {.bitmap_index = 37634, .adv_w = 549, .box_w = 13, .box_h = 98, .ofs_x = 10, .ofs_y = 0}, {.bitmap_index = 37794, .adv_w = 549, .box_w = 30, .box_h = 122, .ofs_x = -6, .ofs_y = -24}, {.bitmap_index = 38252, .adv_w = 1039, .box_w = 49, .box_h = 98, .ofs_x = 11, .ofs_y = 0}, {.bitmap_index = 38853, .adv_w = 560, .box_w = 20, .box_h = 98, .ofs_x = 10, .ofs_y = 0}, {.bitmap_index = 39098, .adv_w = 1613, .box_w = 79, .box_h = 70, .ofs_x = 11, .ofs_y = 0}, {.bitmap_index = 39790, .adv_w = 1122, .box_w = 48, .box_h = 70, .ofs_x = 11, .ofs_y = 0}, {.bitmap_index = 40210, .adv_w = 1104, .box_w = 49, .box_h = 70, .ofs_x = 10, .ofs_y = 0}, {.bitmap_index = 40639, .adv_w = 1111, .box_w = 48, .box_h = 94, .ofs_x = 11, .ofs_y = -24}, {.bitmap_index = 41203, .adv_w = 1122, .box_w = 49, .box_h = 94, .ofs_x = 10, .ofs_y = -24}, {.bitmap_index = 41779, .adv_w = 746, .box_w = 33, .box_h = 70, .ofs_x = 11, .ofs_y = 0}, {.bitmap_index = 42068, .adv_w = 894, .box_w = 40, .box_h = 70, .ofs_x = 8, .ofs_y = 0}, {.bitmap_index = 42418, .adv_w = 697, .box_w = 37, .box_h = 87, .ofs_x = 3, .ofs_y = 0}, {.bitmap_index = 42821, .adv_w = 1095, .box_w = 47, .box_h = 70, .ofs_x = 10, .ofs_y = 0}, {.bitmap_index = 43233, .adv_w = 1035, .box_w = 55, .box_h = 70, .ofs_x = 5, .ofs_y = 0}, {.bitmap_index = 43715, .adv_w = 1501, .box_w = 82, .box_h = 70, .ofs_x = 6, .ofs_y = 0}, {.bitmap_index = 44433, .adv_w = 1039, .box_w = 54, .box_h = 70, .ofs_x = 6, .ofs_y = 0}, {.bitmap_index = 44906, .adv_w = 1037, .box_w = 55, .box_h = 95, .ofs_x = 5, .ofs_y = -25}, {.bitmap_index = 45560, .adv_w = 903, .box_w = 43, .box_h = 70, .ofs_x = 6, .ofs_y = 0}, {.bitmap_index = 45937, .adv_w = 728, .box_w = 32, .box_h = 132, .ofs_x = 6, .ofs_y = -17}, {.bitmap_index = 46465, .adv_w = 650, .box_w = 11, .box_h = 129, .ofs_x = 15, .ofs_y = -15}, {.bitmap_index = 46643, .adv_w = 728, .box_w = 32, .box_h = 132, .ofs_x = 8, .ofs_y = -17}, {.bitmap_index = 47171, .adv_w = 1142, .box_w = 48, .box_h = 16, .ofs_x = 12, .ofs_y = 37}, {.bitmap_index = 47267, .adv_w = 582, .box_w = 1, .box_h = 1, .ofs_x = 0, .ofs_y = 0}, {.bitmap_index = 47268, .adv_w = 560, .box_w = 14, .box_h = 98, .ofs_x = 10, .ofs_y = -28}, {.bitmap_index = 47440, .adv_w = 1053, .box_w = 39, .box_h = 100, .ofs_x = 14, .ofs_y = -16}, {.bitmap_index = 47928, .adv_w = 1053, .box_w = 50, .box_h = 98, .ofs_x = 9, .ofs_y = 0}, {.bitmap_index = 48541, .adv_w = 1277, .box_w = 69, .box_h = 71, .ofs_x = 5, .ofs_y = 7}, {.bitmap_index = 49154, .adv_w = 1053, .box_w = 60, .box_h = 98, .ofs_x = 3, .ofs_y = 0}, {.bitmap_index = 49889, .adv_w = 650, .box_w = 11, .box_h = 129, .ofs_x = 15, .ofs_y = -15}, {.bitmap_index = 50067, .adv_w = 1053, .box_w = 41, .box_h = 98, .ofs_x = 13, .ofs_y = 0}, {.bitmap_index = 50570, .adv_w = 795, .box_w = 40, .box_h = 10, .ofs_x = 5, .ofs_y = 83}, {.bitmap_index = 50620, .adv_w = 1792, .box_w = 83, .box_h = 98, .ofs_x = 15, .ofs_y = 0}, {.bitmap_index = 51637, .adv_w = 885, .box_w = 41, .box_h = 97, .ofs_x = 7, .ofs_y = 1}, {.bitmap_index = 52135, .adv_w = 1042, .box_w = 45, .box_h = 58, .ofs_x = 10, .ofs_y = 13}, {.bitmap_index = 52462, .adv_w = 1288, .box_w = 61, .box_h = 34, .ofs_x = 10, .ofs_y = 15}, {.bitmap_index = 52722, .adv_w = 1109, .box_w = 46, .box_h = 10, .ofs_x = 12, .ofs_y = 39}, {.bitmap_index = 52780, .adv_w = 1792, .box_w = 83, .box_h = 98, .ofs_x = 15, .ofs_y = 0}, {.bitmap_index = 53797, .adv_w = 728, .box_w = 36, .box_h = 10, .ofs_x = 5, .ofs_y = 85}, {.bitmap_index = 53842, .adv_w = 813, .box_w = 40, .box_h = 42, .ofs_x = 6, .ofs_y = 56}, {.bitmap_index = 54052, .adv_w = 1232, .box_w = 53, .box_h = 71, .ofs_x = 12, .ofs_y = 0}, {.bitmap_index = 54523, .adv_w = 918, .box_w = 34, .box_h = 69, .ofs_x = 12, .ofs_y = 29}, {.bitmap_index = 54817, .adv_w = 918, .box_w = 31, .box_h = 69, .ofs_x = 13, .ofs_y = 29}, {.bitmap_index = 55085, .adv_w = 679, .box_w = 30, .box_h = 19, .ofs_x = 6, .ofs_y = 81}, {.bitmap_index = 55157, .adv_w = 1107, .box_w = 47, .box_h = 94, .ofs_x = 11, .ofs_y = -24}, {.bitmap_index = 55710, .adv_w = 1142, .box_w = 55, .box_h = 98, .ofs_x = 7, .ofs_y = 0}, {.bitmap_index = 56384, .adv_w = 515, .box_w = 14, .box_h = 14, .ofs_x = 9, .ofs_y = 36}, {.bitmap_index = 56409, .adv_w = 676, .box_w = 24, .box_h = 35, .ofs_x = 9, .ofs_y = -28}, {.bitmap_index = 56514, .adv_w = 918, .box_w = 34, .box_h = 69, .ofs_x = 13, .ofs_y = 29}, {.bitmap_index = 56808, .adv_w = 932, .box_w = 39, .box_h = 97, .ofs_x = 10, .ofs_y = 1}, {.bitmap_index = 57281, .adv_w = 1042, .box_w = 45, .box_h = 58, .ofs_x = 10, .ofs_y = 13}, {.bitmap_index = 57608, .adv_w = 1960, .box_w = 98, .box_h = 128, .ofs_x = 12, .ofs_y = -14}, {.bitmap_index = 59176, .adv_w = 1960, .box_w = 103, .box_h = 128, .ofs_x = 12, .ofs_y = -14}, {.bitmap_index = 60824, .adv_w = 1960, .box_w = 95, .box_h = 128, .ofs_x = 14, .ofs_y = -14}, {.bitmap_index = 62344, .adv_w = 806, .box_w = 38, .box_h = 98, .ofs_x = 6, .ofs_y = -28}, {.bitmap_index = 62810, .adv_w = 1120, .box_w = 64, .box_h = 118, .ofs_x = 3, .ofs_y = 0}, {.bitmap_index = 63754, .adv_w = 1120, .box_w = 64, .box_h = 118, .ofs_x = 3, .ofs_y = 0}, {.bitmap_index = 64698, .adv_w = 1120, .box_w = 64, .box_h = 119, .ofs_x = 3, .ofs_y = 0}, {.bitmap_index = 65650, .adv_w = 1120, .box_w = 62, .box_h = 117, .ofs_x = 4, .ofs_y = 0}, {.bitmap_index = 66557, .adv_w = 1120, .box_w = 63, .box_h = 114, .ofs_x = 4, .ofs_y = 0}, {.bitmap_index = 67455, .adv_w = 1120, .box_w = 64, .box_h = 119, .ofs_x = 3, .ofs_y = 0}, {.bitmap_index = 68407, .adv_w = 1676, .box_w = 93, .box_h = 98, .ofs_x = 4, .ofs_y = 0}, {.bitmap_index = 69547, .adv_w = 934, .box_w = 43, .box_h = 126, .ofs_x = 10, .ofs_y = -28}, {.bitmap_index = 70225, .adv_w = 1060, .box_w = 46, .box_h = 118, .ofs_x = 12, .ofs_y = 0}, {.bitmap_index = 70904, .adv_w = 1060, .box_w = 46, .box_h = 118, .ofs_x = 12, .ofs_y = 0}, {.bitmap_index = 71583, .adv_w = 1060, .box_w = 46, .box_h = 119, .ofs_x = 12, .ofs_y = 0}, {.bitmap_index = 72268, .adv_w = 1060, .box_w = 46, .box_h = 114, .ofs_x = 12, .ofs_y = 0}, {.bitmap_index = 72924, .adv_w = 710, .box_w = 33, .box_h = 118, .ofs_x = 5, .ofs_y = 0}, {.bitmap_index = 73411, .adv_w = 710, .box_w = 33, .box_h = 118, .ofs_x = 6, .ofs_y = 0}, {.bitmap_index = 73898, .adv_w = 710, .box_w = 44, .box_h = 119, .ofs_x = 0, .ofs_y = 0}, {.bitmap_index = 74553, .adv_w = 710, .box_w = 40, .box_h = 114, .ofs_x = 2, .ofs_y = 0}, {.bitmap_index = 75123, .adv_w = 1189, .box_w = 60, .box_h = 98, .ofs_x = 3, .ofs_y = 0}, {.bitmap_index = 75858, .adv_w = 1225, .box_w = 53, .box_h = 117, .ofs_x = 12, .ofs_y = 0}, {.bitmap_index = 76634, .adv_w = 1219, .box_w = 55, .box_h = 118, .ofs_x = 10, .ofs_y = 0}, {.bitmap_index = 77446, .adv_w = 1219, .box_w = 55, .box_h = 118, .ofs_x = 10, .ofs_y = 0}, {.bitmap_index = 78258, .adv_w = 1219, .box_w = 55, .box_h = 119, .ofs_x = 10, .ofs_y = 0}, {.bitmap_index = 79077, .adv_w = 1219, .box_w = 55, .box_h = 117, .ofs_x = 10, .ofs_y = 0}, {.bitmap_index = 79882, .adv_w = 1219, .box_w = 55, .box_h = 114, .ofs_x = 10, .ofs_y = 0}, {.bitmap_index = 80666, .adv_w = 1232, .box_w = 49, .box_h = 49, .ofs_x = 14, .ofs_y = 19}, {.bitmap_index = 80967, .adv_w = 1219, .box_w = 55, .box_h = 124, .ofs_x = 10, .ofs_y = -13}, {.bitmap_index = 81820, .adv_w = 1198, .box_w = 52, .box_h = 118, .ofs_x = 10, .ofs_y = 0}, {.bitmap_index = 82587, .adv_w = 1198, .box_w = 52, .box_h = 118, .ofs_x = 10, .ofs_y = 0}, {.bitmap_index = 83354, .adv_w = 1198, .box_w = 52, .box_h = 119, .ofs_x = 10, .ofs_y = 0}, {.bitmap_index = 84128, .adv_w = 1198, .box_w = 52, .box_h = 114, .ofs_x = 10, .ofs_y = 0}, {.bitmap_index = 84869, .adv_w = 1100, .box_w = 62, .box_h = 118, .ofs_x = 3, .ofs_y = 0}, {.bitmap_index = 85784, .adv_w = 1145, .box_w = 49, .box_h = 98, .ofs_x = 12, .ofs_y = 0}, {.bitmap_index = 86385, .adv_w = 1163, .box_w = 53, .box_h = 98, .ofs_x = 11, .ofs_y = 0}, {.bitmap_index = 87035, .adv_w = 1053, .box_w = 54, .box_h = 100, .ofs_x = 6, .ofs_y = 0}, {.bitmap_index = 87710, .adv_w = 1053, .box_w = 54, .box_h = 100, .ofs_x = 6, .ofs_y = 0}, {.bitmap_index = 88385, .adv_w = 1053, .box_w = 54, .box_h = 100, .ofs_x = 6, .ofs_y = 0}, {.bitmap_index = 89060, .adv_w = 1053, .box_w = 54, .box_h = 98, .ofs_x = 6, .ofs_y = 0}, {.bitmap_index = 89722, .adv_w = 1053, .box_w = 54, .box_h = 93, .ofs_x = 6, .ofs_y = 0}, {.bitmap_index = 90350, .adv_w = 1053, .box_w = 54, .box_h = 104, .ofs_x = 6, .ofs_y = 0}, {.bitmap_index = 91052, .adv_w = 1548, .box_w = 82, .box_h = 70, .ofs_x = 6, .ofs_y = 0}, {.bitmap_index = 91770, .adv_w = 894, .box_w = 39, .box_h = 98, .ofs_x = 10, .ofs_y = -28}, {.bitmap_index = 92248, .adv_w = 1044, .box_w = 47, .box_h = 100, .ofs_x = 10, .ofs_y = 0}, {.bitmap_index = 92836, .adv_w = 1044, .box_w = 47, .box_h = 100, .ofs_x = 10, .ofs_y = 0}, {.bitmap_index = 93424, .adv_w = 1044, .box_w = 47, .box_h = 100, .ofs_x = 10, .ofs_y = 0}, {.bitmap_index = 94012, .adv_w = 1044, .box_w = 47, .box_h = 93, .ofs_x = 10, .ofs_y = 0}, {.bitmap_index = 94559, .adv_w = 549, .box_w = 30, .box_h = 100, .ofs_x = -3, .ofs_y = 0}, {.bitmap_index = 94934, .adv_w = 549, .box_w = 30, .box_h = 100, .ofs_x = 7, .ofs_y = 0}, {.bitmap_index = 95309, .adv_w = 549, .box_w = 44, .box_h = 100, .ofs_x = -5, .ofs_y = 0}, {.bitmap_index = 95859, .adv_w = 549, .box_w = 40, .box_h = 93, .ofs_x = -3, .ofs_y = 0}, {.bitmap_index = 96324, .adv_w = 1127, .box_w = 48, .box_h = 105, .ofs_x = 11, .ofs_y = 0}, {.bitmap_index = 96954, .adv_w = 1122, .box_w = 48, .box_h = 98, .ofs_x = 11, .ofs_y = 0}, {.bitmap_index = 97542, .adv_w = 1104, .box_w = 49, .box_h = 100, .ofs_x = 10, .ofs_y = 0}, {.bitmap_index = 98155, .adv_w = 1104, .box_w = 49, .box_h = 100, .ofs_x = 10, .ofs_y = 0}, {.bitmap_index = 98768, .adv_w = 1104, .box_w = 49, .box_h = 100, .ofs_x = 10, .ofs_y = 0}, {.bitmap_index = 99381, .adv_w = 1104, .box_w = 49, .box_h = 98, .ofs_x = 10, .ofs_y = 0}, {.bitmap_index = 99982, .adv_w = 1104, .box_w = 49, .box_h = 93, .ofs_x = 10, .ofs_y = 0}, {.bitmap_index = 100552, .adv_w = 1232, .box_w = 53, .box_h = 69, .ofs_x = 12, .ofs_y = 9}, {.bitmap_index = 101010, .adv_w = 1104, .box_w = 49, .box_h = 96, .ofs_x = 10, .ofs_y = -13}, {.bitmap_index = 101598, .adv_w = 1095, .box_w = 47, .box_h = 100, .ofs_x = 10, .ofs_y = 0}, {.bitmap_index = 102186, .adv_w = 1095, .box_w = 47, .box_h = 100, .ofs_x = 10, .ofs_y = 0}, {.bitmap_index = 102774, .adv_w = 1095, .box_w = 47, .box_h = 100, .ofs_x = 10, .ofs_y = 0}, {.bitmap_index = 103362, .adv_w = 1095, .box_w = 47, .box_h = 93, .ofs_x = 10, .ofs_y = 0}, {.bitmap_index = 103909, .adv_w = 1037, .box_w = 55, .box_h = 125, .ofs_x = 5, .ofs_y = -25}, {.bitmap_index = 104769, .adv_w = 1129, .box_w = 48, .box_h = 122, .ofs_x = 11, .ofs_y = -24}, {.bitmap_index = 105501, .adv_w = 1037, .box_w = 55, .box_h = 118, .ofs_x = 5, .ofs_y = -25}, {.bitmap_index = 106313, .adv_w = 1232, .box_w = 53, .box_h = 10, .ofs_x = 12, .ofs_y = 39}, {.bitmap_index = 106380, .adv_w = 1355, .box_w = 67, .box_h = 10, .ofs_x = 9, .ofs_y = 39}, {.bitmap_index = 106464, .adv_w = 504, .box_w = 17, .box_h = 34, .ofs_x = 8, .ofs_y = 64}, {.bitmap_index = 106537, .adv_w = 504, .box_w = 17, .box_h = 34, .ofs_x = 6, .ofs_y = 64}, {.bitmap_index = 106610, .adv_w = 851, .box_w = 39, .box_h = 34, .ofs_x = 8, .ofs_y = 64}, {.bitmap_index = 106776, .adv_w = 851, .box_w = 39, .box_h = 34, .ofs_x = 6, .ofs_y = 64}, {.bitmap_index = 106942, .adv_w = 650, .box_w = 21, .box_h = 21, .ofs_x = 10, .ofs_y = 33}, {.bitmap_index = 106998, .adv_w = 1501, .box_w = 76, .box_h = 14, .ofs_x = 9, .ofs_y = 0}, {.bitmap_index = 107131, .adv_w = 1053, .box_w = 51, .box_h = 98, .ofs_x = 8, .ofs_y = 0}, {.bitmap_index = 107756, .adv_w = 1658, .box_w = 89, .box_h = 71, .ofs_x = 6, .ofs_y = 27}, {.bitmap_index = 108546, .adv_w = 1232, .box_w = 53, .box_h = 10, .ofs_x = 12, .ofs_y = 39}, {.bitmap_index = 108613, .adv_w = 1232, .box_w = 53, .box_h = 68, .ofs_x = 12, .ofs_y = 10}, {.bitmap_index = 109064, .adv_w = 1232, .box_w = 53, .box_h = 78, .ofs_x = 12, .ofs_y = 0}, {.bitmap_index = 109581, .adv_w = 1232, .box_w = 53, .box_h = 78, .ofs_x = 12, .ofs_y = 0} }; /*--------------------- * CHARACTER MAPPING *--------------------*/ static const uint16_t unicode_list_2[] = { 0x0, 0x1, 0x5, 0x6, 0x9, 0xa, 0xf, 0x13, 0x99, 0x10f, 0x1ff, 0x24d, 0x251, 0x252 }; /*Collect the unicode lists and glyph_id offsets*/ static const lv_font_fmt_txt_cmap_t cmaps[] = { { .range_start = 32, .range_length = 95, .glyph_id_start = 1, .unicode_list = NULL, .glyph_id_ofs_list = NULL, .list_length = 0, .type = LV_FONT_FMT_TXT_CMAP_FORMAT0_TINY }, { .range_start = 160, .range_length = 96, .glyph_id_start = 96, .unicode_list = NULL, .glyph_id_ofs_list = NULL, .list_length = 0, .type = LV_FONT_FMT_TXT_CMAP_FORMAT0_TINY }, { .range_start = 8211, .range_length = 595, .glyph_id_start = 192, .unicode_list = unicode_list_2, .glyph_id_ofs_list = NULL, .list_length = 14, .type = LV_FONT_FMT_TXT_CMAP_SPARSE_TINY } }; /*----------------- * KERNING *----------------*/ /*Map glyph_ids to kern left classes*/ static const uint8_t kern_left_class_mapping[] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 3, 2, 0, 0, 4, 0, 0, 0, 0, 0, 5, 0, 0, 6, 6, 1, 1, 1, 0, 0, 7, 8, 9, 10, 0, 11, 0, 0, 0, 0, 12, 13, 0, 0, 10, 14, 10, 15, 16, 17, 0, 18, 19, 20, 21, 0, 0, 0, 0, 0, 0, 0, 22, 23, 24, 0, 23, 0, 25, 26, 0, 0, 27, 28, 26, 26, 23, 23, 26, 29, 30, 0, 26, 31, 32, 33, 31, 34, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 35, 3, 3, 0, 0, 0, 1, 0, 0, 0, 26, 0, 6, 0, 0, 0, 36, 0, 0, 0, 0, 7, 7, 7, 7, 7, 7, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 10, 10, 10, 10, 10, 0, 10, 0, 0, 0, 0, 21, 10, 0, 37, 38, 39, 39, 39, 37, 23, 24, 37, 38, 39, 39, 0, 0, 0, 0, 0, 39, 37, 38, 39, 39, 39, 1, 26, 37, 38, 39, 39, 40, 23, 41, 3, 3, 0, 0, 0, 0, 6, 2, 0, 0, 3, 1, 1, 1 }; /*Map glyph_ids to kern right classes*/ static const uint8_t kern_right_class_mapping[] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 3, 2, 0, 0, 4, 5, 0, 0, 0, 0, 6, 0, 0, 7, 7, 1, 1, 1, 0, 0, 8, 0, 9, 0, 0, 0, 9, 0, 0, 10, 0, 0, 0, 0, 9, 0, 9, 0, 11, 12, 0, 13, 14, 15, 16, 17, 0, 0, 0, 0, 0, 0, 18, 0, 19, 19, 19, 0, 18, 0, 0, 0, 0, 0, 20, 20, 19, 20, 19, 20, 21, 0, 20, 22, 23, 24, 22, 25, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 26, 3, 3, 0, 0, 0, 1, 0, 0, 0, 20, 0, 7, 0, 0, 0, 27, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 9, 9, 9, 9, 0, 9, 0, 0, 0, 0, 16, 0, 0, 28, 29, 30, 30, 30, 31, 18, 0, 28, 29, 30, 30, 0, 0, 0, 0, 0, 30, 28, 29, 30, 30, 30, 1, 19, 28, 29, 30, 30, 32, 0, 33, 3, 3, 0, 0, 0, 0, 7, 2, 0, 0, 3, 1, 1, 1 }; /*Kern values between classes*/ static const int8_t kern_class_values[] = { 0, 0, 0, -30, -24, -48, 0, 0, 0, 0, 0, -48, -18, -6, -30, -42, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -36, 0, 0, 0, 0, 0, -72, -60, -12, 0, -84, 0, 0, 0, 0, 0, -54, -36, 0, 0, 0, 0, 0, 0, 0, 0, -54, -54, 0, 0, 0, -36, -30, -60, 0, -24, 0, -72, 0, -54, -36, -12, 0, -60, 0, 0, 0, 0, 0, -12, -6, -24, -48, 0, 0, 0, 0, 0, 0, -12, -12, -24, 0, -36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -30, -119, -48, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -36, -12, 0, 0, -36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -24, 0, 0, 0, 0, 0, -24, 0, 0, -60, -48, 0, 0, 0, 0, 0, 0, 0, 0, -24, -18, 0, 0, -36, -18, 0, 0, 0, 0, -24, -24, 0, 0, 0, 0, 0, 0, 0, 0, 0, -24, -18, -24, -6, -6, -18, -18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -72, 0, 0, 0, 0, 0, -24, 0, 0, 0, 0, 0, 0, 0, 0, 0, -12, 0, 0, -12, -6, 0, 0, -66, -48, 0, 0, 0, 0, -12, -12, 0, 0, 0, 0, 0, 0, 0, -24, 0, -36, 0, -24, -18, -12, -24, -36, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -108, 0, 0, 0, 0, 0, -36, 0, 0, 0, 0, 0, 0, 0, 0, 0, -18, -18, -12, -18, -12, -12, -12, -12, -24, -24, -12, -12, -12, -12, -12, -12, 0, 0, 0, 0, 0, 0, 0, 0, -24, 0, 0, 0, 0, 0, 0, 0, 0, -6, -24, 0, -6, -36, -24, 0, 0, 0, 0, 0, 0, 0, 0, -36, -36, 0, 0, -72, 0, 0, 0, 0, 0, -24, 0, 0, -42, -36, -18, 0, -54, 0, 0, 0, 0, 0, -24, -12, 0, 0, 0, 0, 0, 0, 0, 0, -24, -24, 0, -119, 0, 0, 0, 0, 0, -48, 0, -30, 0, -24, -18, 0, 0, -18, 0, -36, -42, -12, -36, -12, -12, -12, -12, 0, 0, -24, -12, -12, -24, -12, -12, 0, 0, 0, 0, 0, 0, 0, 0, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -18, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, -18, -12, 0, 0, 0, 0, 0, 0, 0, 0, -18, -18, -48, -72, -54, 0, 0, 0, -36, -60, -24, 0, -18, 0, 0, 0, 0, 0, 0, -78, -84, -72, -78, -72, -72, -72, -72, -78, -60, -54, -66, 0, -66, -66, 0, -18, -60, -36, 0, 0, 0, -12, -48, -18, 0, 0, 0, 0, 0, 0, 0, 0, -24, -36, -18, -24, -18, -18, -18, -18, -30, -18, -18, -18, -12, -18, -18, -12, -6, -12, -12, 0, 0, 0, 0, 0, -12, 0, 0, 0, 0, 0, 0, 0, 0, -6, -12, 0, -6, 0, 0, 0, 0, -18, -6, -6, -6, 0, -6, -6, 0, -30, 0, 0, 0, 0, 0, 0, 0, -24, 0, 0, 0, 0, 0, 0, 0, 0, -12, -24, 0, -12, -24, -18, 0, 0, 0, 0, 0, 0, 0, 0, -24, -24, -42, -84, -60, 0, 0, 0, -36, 0, -36, 0, -18, 0, 0, 0, 0, 0, 0, -72, -78, -48, -72, -48, -48, -48, -48, -72, -48, -54, -54, -36, -54, -54, -36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -78, -24, -6, -6, -72, 0, 0, 0, 0, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -84, -36, -12, -24, -78, 0, 0, 0, 0, 0, -18, -12, -18, 0, 0, 0, 0, 0, 0, 0, -18, -18, 0, 0, -60, 0, 0, 0, 0, 0, 0, 0, 0, -78, -24, -6, -6, -72, 0, 0, -12, 0, 0, 0, -10, 0, 0, -24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -84, -24, -6, -6, -72, 0, 0, 0, 0, 0, -12, -10, 0, 0, 0, 0, 0, 0, 0, 0, -12, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -84, -18, 0, 0, -48, 0, 0, 0, 0, 0, -12, -6, 0, 0, 0, 0, 0, 0, 0, 0, -12, -12, 0, 0, -30, 0, 0, 0, 0, 0, 0, 0, 0, -84, -18, 0, 0, -48, 0, 0, -18, 0, 0, -12, -6, 0, 0, -30, 0, 0, 0, 0, 0, -12, -12, 0, 0, -36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -60, -66, 0, 0, 0, 0, -24, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, -18, 0, -6, 0, 0, 0, 0, -30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -78, -24, -6, -6, -72, 0, 0, 0, 0, -12, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -54, -12, 0, 0, 0, 0, -24, 0, 0, 0, -84, -18, 0, 0, -48, 0, 0, -18, 0, 0, -12, -6, 0, 0, -18, 0, 0, 0, 0, 0, -12, -12, 0, -36, -6, 0, 0, 0, 0, -18, 0, 0, 0, -84, -18, 0, 0, -48, 0, -10, -12, 0, -10, -12, -6, 0, 0, -12, 0, 0, 0, 0, 0, -12, -12, 0, 0, -24, 0, 0, 0, 0, 0, 0, 0, 0, -84, -18, 0, 0, -48, 0, 0, -18, 0, 0, -12, -6, 0, 0, -30, 0, 0, 0, 0, 0, -12, -12, 0, 0, -24, 0, 0, 0, 0, 0, 0, 0, 0, -84, -18, 0, 0, -48, 0, 0, 0, 0, 0, -12, -6, 0, 0, -12, 0, 0, 0, 0, 0, -12, -12, 0, 0, 0, 0, 0, 0, 0, -18, 0, -36, 0, -60, -18, -6, 0, -48, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -36, 0, -54, 0, -78, -30, -18, 0, -72, 0, 0, 0, 0, 0, -18, -12, -30, -30, 0, 0, 0, 0, 0, 0, -18, -18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -60, -24, -6, 0, -66, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -48, -12, 0, 0, -36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -12, 0, 0, -36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -54, -12, 0, 0, 0, 0, -24, 0, 0, 0, -48, -12, 0, 0, -36, 0, 0, -18, 0, 0, 0, 0, 0, 0, -18, 0, 0, 0, 0, 0, 0, 0, 0, -54, -12, 0, 0, 0, 0, -24, 0, 0, 0, 0, -12, 0, 0, -36, 0, 0, -18, 0, 0, 0, 0, 0, 0, -18, 0, 0, 0, 0, 0, 0, 0 }; /*Collect the kern class' data in one place*/ static const lv_font_fmt_txt_kern_classes_t kern_classes = { .class_pair_values = kern_class_values, .left_class_mapping = kern_left_class_mapping, .right_class_mapping = kern_right_class_mapping, .left_class_cnt = 41, .right_class_cnt = 33, }; /*-------------------- * ALL CUSTOM DATA *--------------------*/ #if LVGL_VERSION_MAJOR == 8 /*Store all the custom data of the font*/ static lv_font_fmt_txt_glyph_cache_t cache; #endif #if LVGL_VERSION_MAJOR >= 8 static const lv_font_fmt_txt_dsc_t font_dsc = { #else static lv_font_fmt_txt_dsc_t font_dsc = { #endif .glyph_bitmap = glyph_bitmap, .glyph_dsc = glyph_dsc, .cmaps = cmaps, .kern_dsc = &kern_classes, .kern_scale = 30, .cmap_num = 3, .bpp = 1, .kern_classes = 1, .bitmap_format = 0, #if LVGL_VERSION_MAJOR == 8 .cache = &cache #endif }; /*----------------- * PUBLIC FONT *----------------*/ /*Initialize a public general font descriptor*/ #if LVGL_VERSION_MAJOR >= 8 const lv_font_t ShareTech140 = { #else lv_font_t ShareTech140 = { #endif .get_glyph_dsc = lv_font_get_glyph_dsc_fmt_txt, /*Function pointer to get glyph's data*/ .get_glyph_bitmap = lv_font_get_bitmap_fmt_txt, /*Function pointer to get glyph's bitmap*/ .line_height = 147, /*The maximum line height required by the font*/ .base_line = 28, /*Baseline measured from the bottom of the line*/ #if !(LVGL_VERSION_MAJOR == 6 && LVGL_VERSION_MINOR == 0) .subpx = LV_FONT_SUBPX_NONE, #endif #if LV_VERSION_CHECK(7, 4, 0) || LVGL_VERSION_MAJOR >= 8 .underline_position = -11, .underline_thickness = 7, #endif //.static_bitmap = 0, .dsc = &font_dsc, /*The custom font data. Will be accessed by `get_glyph_bitmap/dsc` */ #if LV_VERSION_CHECK(8, 2, 0) || LVGL_VERSION_MAJOR >= 9 .fallback = NULL, #endif .user_data = NULL, }; #endif /*#if SHARETECH140*/
697,777
ShareTech140
c
en
c
code
{"qsc_code_num_words": 116739, "qsc_code_num_chars": 697777.0, "qsc_code_mean_word_length": 3.44616623, "qsc_code_frac_words_unique": 0.00768381, "qsc_code_frac_chars_top_2grams": 0.41446476, "qsc_code_frac_chars_top_3grams": 0.34930475, "qsc_code_frac_chars_top_4grams": 0.25333207, "qsc_code_frac_chars_dupe_5grams": 0.98149649, "qsc_code_frac_chars_dupe_6grams": 0.96171036, "qsc_code_frac_chars_dupe_7grams": 0.9328763, "qsc_code_frac_chars_dupe_8grams": 0.90026895, "qsc_code_frac_chars_dupe_9grams": 0.86239442, "qsc_code_frac_chars_dupe_10grams": 0.81985921, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.36258482, "qsc_code_frac_chars_whitespace": 0.25128659, "qsc_code_size_file_byte": 697777.0, "qsc_code_num_lines": 14852.0, "qsc_code_num_chars_line_max": 241.0, "qsc_code_num_chars_line_mean": 46.98202262, "qsc_code_frac_chars_alphabet": 0.40737891, "qsc_code_frac_chars_comments": 0.00675861, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.59823354, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 3.319e-05, "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.55812836, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0, "qsc_codec_frac_lines_func_ratio": 0.00020864, "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.00034773, "qsc_codec_frac_lines_print": 0.0, "qsc_codec_frac_lines_preprocessor_directives": 0.00229501}
0
{"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 1, "qsc_code_frac_chars_top_3grams": 1, "qsc_code_frac_chars_top_4grams": 1, "qsc_code_frac_chars_dupe_5grams": 1, "qsc_code_frac_chars_dupe_6grams": 1, "qsc_code_frac_chars_dupe_7grams": 1, "qsc_code_frac_chars_dupe_8grams": 1, "qsc_code_frac_chars_dupe_9grams": 1, "qsc_code_frac_chars_dupe_10grams": 1, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 1, "qsc_code_frac_chars_digital": 1, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 1, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codec_frac_lines_func_ratio": 0, "qsc_codec_nums_lines_main": 0, "qsc_codec_score_lines_no_logic": 0, "qsc_codec_frac_lines_preprocessor_directives": 0, "qsc_codec_frac_lines_print": 0}
0015/Grid_Board
main/grid_board.hpp
#pragma once #include "lvgl.h" #include <string> #include <vector> // Grid dimensions #define GRID_COLS 12 #define GRID_ROWS 5 #define GRID_SLOT_WIDTH 96 #define GRID_SLOT_HEIGHT 150 #define GRID_GAP 10 #define GRID_SCREEN_WIDTH 1280 #define GRID_SCREEN_HEIGHT 800 // Animation constants #define MAX_PARALLEL_ANIMATIONS 10 // Forward declarations LV_FONT_DECLARE(ShareTech140); LV_FONT_DECLARE(NotoEmoji64); // Character slot structure for animation management typedef struct { char utf8_char[8]; int row; int col; int retry_index; std::vector<char> shuffled_chars; std::vector<const char *> shuffled_emojis; } GridCharacterSlot; class GridBoard { public: // Constructor/Destructor GridBoard(); ~GridBoard(); // Main interface functions void initialize(lv_obj_t *parent); void process_text_and_animate(const std::string& text); void clear_display(); // Animation control void start_animation_batch(); bool is_animation_running() const; // Callback for external sound triggering void set_sound_callback(void (*on_start)(), void (*on_end)()); private: // Grid management void create_grid(lv_obj_t *parent); lv_obj_t* create_card(lv_obj_t *slot, const char *text, const lv_font_t *font); // Animation functions void animate_card_to_slot(lv_obj_t *card, const char *target); static void animation_ready_callback(lv_anim_t *a); static void timer_callback(lv_timer_t *t); // Card dropping logic void on_card_dropped(lv_obj_t *card); // Utility functions bool is_emoji(const char *utf8_char); void utf8_to_upper_ascii(char *utf8_char); int utf8_char_len(unsigned char c); // Member variables lv_obj_t *slots[GRID_ROWS][GRID_COLS]; std::vector<GridCharacterSlot> animation_queue; int running_animations; // SFX callback functions void (*start_card_flip_sound_task)(); void (*stop_card_flip_sound_task)(); // Static character sets static const char *card_chars; static const char *emoji_chars[]; static const int total_emoji_cards; static const int total_cards; }; extern GridBoard* get_grid_board_instance();
2,235
grid_board
hpp
en
cpp
code
{"qsc_code_num_words": 301, "qsc_code_num_chars": 2235.0, "qsc_code_mean_word_length": 5.00664452, "qsc_code_frac_words_unique": 0.40863787, "qsc_code_frac_chars_top_2grams": 0.0464499, "qsc_code_frac_chars_top_3grams": 0.02786994, "qsc_code_frac_chars_top_4grams": 0.01592568, "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.01669449, "qsc_code_frac_chars_whitespace": 0.19597315, "qsc_code_size_file_byte": 2235.0, "qsc_code_num_lines": 86.0, "qsc_code_num_chars_line_max": 84.0, "qsc_code_num_chars_line_mean": 25.98837209, "qsc_code_frac_chars_alphabet": 0.82192543, "qsc_code_frac_chars_comments": 0.17583893, "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.00325733, "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": null, "qsc_codecpp_frac_lines_func_ratio": 0.2962963, "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.44444444, "qsc_codecpp_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_codecpp_frac_lines_func_ratio": 1, "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}
007revad/Synology_ContainerManager_IPv6
my-other-scripts.md
## All my scripts, tools and guides <img src="https://hitscounter.dev/api/hit?url=https%3A%2F%2F007revad.github.io%2F&label=Visitors&icon=github&color=%23198754&message=&style=flat&tz=UTC"> #### Contents - [Plex](#plex) - [Synology docker](#synology-docker) - [Synology recovery](#synology-recovery) - [Other Synology scripts](#other-synology-scripts) - [Synology hardware restrictions](#synology-hardware-restrictions) - [2025 plus models](#2025-plus-models) - [How To Guides](#how-to-guides) - [Synology dev](#synology-dev) *** ### Plex - **<a href="https://github.com/007revad/Synology_Plex_Backup">Synology_Plex_Backup</a>** - A script to backup Plex to a tgz file foror DSM 7 and DSM 6. - Works for Plex Synology package and Plex in docker. - **<a href="https://github.com/007revad/Asustor_Plex_Backup">Asustor_Plex_Backup</a>** - Backup your Asustor's Plex Media Server settings and database. - **<a href="https://github.com/007revad/Linux_Plex_Backup">Linux_Plex_Backup</a>** - Backup your Linux Plex Media Server's settings and database. - **<a href="https://github.com/007revad/Plex_Server_Sync">Plex_Server_Sync</a>** - Sync your main Plex server database & metadata to a backup Plex server. - Works for Synology, Asustor, Linux and supports Plex package or Plex in docker. &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; [Back to Contents](#contents) ### Synology docker - **<a href="https://github.com/007revad/Synology_Docker_Export">Synology_Docker_export</a>** - Export all Synology Container Manager or Docker containers' settings as json files to your docker shared folder. - **<a href="https://github.com/007revad/Synology_ContainerManager_IPv6">Synology_ContainerManager_IPv6</a>** - Enable IPv6 for Container Manager's bridge network. - **<a href="https://github.com/007revad/ContainerManager_for_all_armv8">ContainerManager_for_all_armv8</a>** - Script to install Container Manager on a RS819, DS119j, DS418, DS418j, DS218, DS218play or DS118. - **<a href="https://github.com/007revad/Docker_Autocompose">Docker_Autocompose</a>** - Create .yml files from your docker existing containers. - **<a href="https://github.com/007revad/Synology_docker_cleanup">Synology_docker_cleanup</a>** - Remove orphan docker btrfs subvolumes and images in Synology DSM 7 and DSM 6. &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; [Back to Contents](#contents) ### Synology recovery - **<a href="https://github.com/007revad/Synology_DSM_reinstall">Synology_DSM_reinstall</a>** - Easily re-install the same DSM version without losing any data or settings. - **<a href="https://github.com/007revad/Synology_Recover_Data">Synology_Recover_Data</a>** - A script to make it easy to recover your data from your Synology's drives using a computer. - **<a href="https://github.com/007revad/Synology_clear_drive_error">Synology clear drive error</a>** - Clear drive critical errors so DSM will let you use the drive. - **<a href="https://github.com/007revad/Synology_DSM_Telnet_Password">Synology_DSM_Telnet_Password</a>** - Synology DSM Recovery Telnet Password of the Day generator. - **<a href="https://github.com/007revad/Syno_DSM_Extractor_GUI">Syno_DSM_Extractor_GUI</a>** - Windows GUI for extracting Synology DSM 7 pat files and spk package files. - **<a href="https://github.com/007revad/Synoboot_backup">Synoboot_backup</a>** - Back up synoboot after each DSM update so you can recover from a corrupt USBDOM. &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; [Back to Contents](#contents) ### Other Synology scripts - **<a href="https://github.com/007revad/Synology_app_mover">Synology_app_mover</a>** - Easily move Synology packages from one volume to another volume. - **<a href="https://github.com/007revad/Video_Station_for_DSM_722">Video_Station_for_DSM_722</a>** - Script to install Video Station in DSM 7.2.2 - **<a href="https://github.com/007revad/SS_Motion_Detection">SS_Motion_Detection</a>** - Installs previous Surveillance Station and Advanced Media Extensions versions so motion detection and HEVC are supported. - **<a href="https://github.com/007revad/Synology_Config_Backup">Synology_Config_Backup</a>** - Backup and export your Synology DSM configuration. - **<a href="https://github.com/007revad/Synology_CPU_temperature">Synology_CPU_temperature</a>** - Get and log Synology NAS CPU temperature via SSH. - **<a href="https://github.com/007revad/Synology_SMART_info">Synology_SMART_info</a>** - Show Synology smart test progress or smart health and attributes. - **<a href="https://github.com/007revad/Synology_Cleanup_Coredumps">Synology_Cleanup_Coredumps</a>** - Cleanup memory core dumps from crashed processes. - **<a href="https://github.com/007revad/Synology_toggle_reset_button">Synology_toggle_reset_button</a>** - Script to disable or enable the reset button and show current setting. - **<a href="https://github.com/007revad/Synology_Download_Station_Chrome_Extension">Synology_Download_Station_Chrome_Extension</a>** - Download Station Chrome Extension. - **<a href="https://github.com/007revad/Seagate_lowCurrentSpinup">Seagate_lowCurrentSpinup</a>** - This script avoids the need to buy and install a higher wattage power supply when using multiple large Seagate SATA HDDs. &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; [Back to Contents](#contents) ### Synology hardware restrictions - **<a href="https://github.com/007revad/Synology_HDD_db">Synology_HDD_db</a>** - Add your SATA or SAS HDDs and SSDs plus SATA and NVMe M.2 drives to your Synology's compatible drive databases, including your Synology M.2 PCIe card and Expansion Unit databases. - **<a href="https://github.com/007revad/Synology_enable_M2_volume">Synology_enable_M2_volume</a>** - Enable creating volumes with non-Synology M.2 drives. - Enable Health Info for non-Synology NVMe drives (not in DSM 7.2.1 or later). - **<a href="https://github.com/007revad/Synology_M2_volume">Synology_M2_volume</a>** - Easily create an M.2 volume on Synology NAS. - **<a href="https://github.com/007revad/Synology_enable_M2_card">Synology_enable_M2_card</a>** - Enable Synology M.2 PCIe cards in Synology NAS that don't officially support them. - **<a href="https://github.com/007revad/Synology_enable_eunit">Synology_enable_eunit</a>** - Enable an unsupported Synology eSATA Expansion Unit models. - **<a href="https://github.com/007revad/Synology_enable_Deduplication">Synology_enable_Deduplication</a>** - Enable deduplication with non-Synology SSDs and unsupported NAS models. - **<a href="https://github.com/007revad/Synology_SHR_switch">Synology_SHR_switch</a>** - Easily switch between SHR and RAID Groups, or enable RAID F1. - **<a href="https://github.com/007revad/Synology_enable_sequential_IO">Synology_enable_sequential_IO</a>** - Enables sequential I/O for your SSD caches, like DSM 6 had. - **<a href="https://github.com/007revad/Synology_Information_Wiki">Synology_Information_Wiki</a>** - Information about Synology hardware. &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; [Back to Contents](#contents) ### 2025 plus models - **<a href="https://github.com/007revad/Transcode_for_x25">Transcode_for_x25</a>** - Installs the modules needed for Plex or Jellyfin hardware transcoding in DS425+ and DS225+. - **<a href="https://github.com/007revad/Synology_HDD_db/blob/main/2025_plus_models.md">2025 series or later Plus models</a>** - Unverified 3rd party drive limitations and unofficial solutions. - **<a href="https://github.com/007revad/Synology_HDD_db/blob/main/2025_plus_models.md#setting-up-a-new-2025-or-later-plus-model-with-only-unverified-hdds">Setup with only 3rd party drives</a>** - Setting up a new 2025 or later plus model with only unverified HDDs. - **<a href="https://github.com/007revad/Synology_HDD_db/blob/main/2025_plus_models.md#deleting-and-recreating-your-storage-pool-on-unverified-hdds">Recreating storage pool on migrated drives</a>** - Deleting and recreating your storage pool on unverified HDDs. &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; [Back to Contents](#contents) ### How To Guides - **<a href="https://github.com/007revad/Synology_SSH_key_setup">Synology_SSH_key_setup</a>** - How to setup SSH key authentication for your Synology. &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; [Back to Contents](#contents) ### Synology dev - **<a href="https://github.com/007revad/Download_Synology_Archive">Download_Synology_Archive</a>** - Download all or part of the Synology archive. - **<a href="https://github.com/007revad/Syno_DSM_Extractor_GUI">Syno_DSM_Extractor_GUI</a>** - Windows GUI for extracting Synology DSM 7 pat files and spk package files. - **<a href="https://github.com/007revad/ScriptNotify">ScriptNotify</a>** - DSM 7 package to allow your scripts to send DSM notifications. - **<a href="https://github.com/007revad/DTC_GUI_for_Windows">DTC_GUI_for_Windows</a>** - GUI for DTC.exe for Windows. &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; [Back to Contents](#contents)
9,099
my-other-scripts
md
en
markdown
text
{"qsc_doc_frac_chars_curly_bracket": 0.0, "qsc_doc_frac_words_redpajama_stop": 0.16632653, "qsc_doc_num_sentences": 107.0, "qsc_doc_num_words": 1341, "qsc_doc_num_chars": 9099.0, "qsc_doc_num_lines": 180.0, "qsc_doc_mean_word_length": 4.94630872, "qsc_doc_frac_words_full_bracket": 0.0, "qsc_doc_frac_lines_end_with_readmore": 0.0, "qsc_doc_frac_lines_start_with_bullet": 0.0, "qsc_doc_frac_words_unique": 0.23191648, "qsc_doc_entropy_unigram": 4.76529845, "qsc_doc_frac_words_all_caps": 0.02908163, "qsc_doc_frac_lines_dupe_lines": 0.1025641, "qsc_doc_frac_chars_dupe_lines": 0.10911978, "qsc_doc_frac_chars_top_2grams": 0.05789236, "qsc_doc_frac_chars_top_3grams": 0.06482738, "qsc_doc_frac_chars_top_4grams": 0.10372381, "qsc_doc_frac_chars_dupe_5grams": 0.39981909, "qsc_doc_frac_chars_dupe_6grams": 0.36891301, "qsc_doc_frac_chars_dupe_7grams": 0.34041912, "qsc_doc_frac_chars_dupe_8grams": 0.25569124, "qsc_doc_frac_chars_dupe_9grams": 0.20624152, "qsc_doc_frac_chars_dupe_10grams": 0.15829941, "qsc_doc_frac_chars_replacement_symbols": 0.0, "qsc_doc_cate_code_related_file_name": 0.0, "qsc_doc_num_chars_sentence_length_mean": 30.70731707, "qsc_doc_frac_chars_hyperlink_html_tag": 0.34762062, "qsc_doc_frac_chars_alphabet": 0.79007303, "qsc_doc_frac_chars_digital": 0.03094442, "qsc_doc_frac_chars_whitespace": 0.11210023, "qsc_doc_frac_chars_hex_words": 0.0}
1
{"qsc_doc_frac_chars_replacement_symbols": 0, "qsc_doc_entropy_unigram": 0, "qsc_doc_frac_chars_top_2grams": 0, "qsc_doc_frac_chars_top_3grams": 0, "qsc_doc_frac_chars_top_4grams": 0, "qsc_doc_frac_chars_dupe_5grams": 0, "qsc_doc_frac_chars_dupe_6grams": 0, "qsc_doc_frac_chars_dupe_7grams": 0, "qsc_doc_frac_chars_dupe_8grams": 0, "qsc_doc_frac_chars_dupe_9grams": 0, "qsc_doc_frac_chars_dupe_10grams": 0, "qsc_doc_frac_chars_dupe_lines": 0, "qsc_doc_frac_lines_dupe_lines": 0, "qsc_doc_frac_lines_end_with_readmore": 0, "qsc_doc_frac_lines_start_with_bullet": 0, "qsc_doc_frac_words_all_caps": 0, "qsc_doc_mean_word_length": 0, "qsc_doc_num_chars": 0, "qsc_doc_num_lines": 0, "qsc_doc_num_sentences": 0, "qsc_doc_num_words": 0, "qsc_doc_frac_chars_hex_words": 0, "qsc_doc_frac_chars_hyperlink_html_tag": 0, "qsc_doc_frac_chars_alphabet": 0, "qsc_doc_frac_chars_digital": 0, "qsc_doc_frac_chars_whitespace": 0}
007revad/Synology_ContainerManager_IPv6
syno_containermanager_ipv6.sh
#!/usr/bin/env bash #------------------------------------------------------------------------------ # Synology enable IPv6 on bridge network in Container Manager or Docker # # Github: https://github.com/007revad/Synology_ContainerManager_IPv6 # Script verified at https://www.shellcheck.net/ # # To run in a shell (replace /volume1/scripts/ with path to script): # sudo /volume1/scripts/syno_containermanager_ipv6.sh #------------------------------------------------------------------------------ # # Posted in: # https://www.synology-forum.de/threads/container-manager-oder-docker-auf-ipv6-umstellen.134481/post-1179432 # # Adapted for ContainerManager from DSM6 post here: # https://www.synoforum.com/threads/has-anyone-been-successful-in-enabling-ipv6-for-the-docker-daemon.435/ # # https://fariszr.com/docker-ipv6-setup-with-propagation/ # https://community.home-assistant.io/t/trying-to-get-matter-to-work-with-synology-how-to-enable-ipv6-for-host-on-container-manager/722157/2 # #------------------------------------------------------------------------------ # If you are using a scope global IPv6 address replace "fe80::1/64" # with your network's IPv6 CIDR range. # For example: cidr="2001:db8:1::/64" # "fe80::1/64" is for local LAN access only. cidr="fe80::1/64" #----------------------------------------------------------------------- scriptver="v2.0.5" script="Synology_ContainerManager_IPv6" repo="007revad/Synology_ContainerManager_IPv6" if [[ $1 != "-n" ]] || [[ $1 != "--nocolor" ]]; then # Shell Colors #Black='\e[0;30m' # ${Black} #Red='\e[0;31m' # ${Red} Green='\e[0;32m' # ${Green} #Yellow='\e[0;33m' # ${Yellow} #Blue='\e[0;34m' # ${Blue} #Purple='\e[0;35m' # ${Purple} Cyan='\e[0;36m' # ${Cyan} #White='\e[0;37m' # ${White} Error='\e[41m' # ${Error} Off='\e[0m' # ${Off} fi # Check cidr has been set if [[ -z "$cidr" ]] || [[ "$cidr" == "2001:db8:1::/64" ]]; then echo -e "\n${Error}ERROR${Off} You need to set cidr to your IPv6 cidr range!\n" exit 1 fi # Check script is running as root if [[ $( whoami ) != "root" ]]; then echo -e "\n${Error}ERROR${Off} This script must be run as sudo or root!\n" exit 1 fi # Check script is running in DSM 7.2 or later #buildnumber=$(/usr/syno/bin/synogetkeyvalue /etc.defaults/VERSION buildnumber) #if [[ $buildnumber -lt "64555" ]]; then # echo -e "\n${Error}ERROR${Off} This script only works for DSM 7.2 and later!\n" # exit 2 #fi # Check Container Manager is installed /usr/syno/bin/synopkg status ContainerManager >/dev/null code="$?" # DSM 7.2 0 = started, 17 = stopped, 255 = not_installed, 150 = broken if [[ $code == "0" ]] || [[ $code == "17" ]]; then Docker="ContainerManager" fi # Check Docker is installed /usr/syno/bin/synopkg status Docker >/dev/null code="$?" # DSM 6 to 7.1 0 = started, 3 = stopped, 4 = not_installed, 150 = broken if [[ $code == "0" ]] || [[ $code == "3" ]]; then Docker="Docker" fi # Exit if ContainerManager or Docker are not installed if [[ -z $Docker ]]; then echo -e "\n${Error}ERROR${Off} ContainerManager or Docker not installed!\n" exit 3 fi # Show script version #echo -e "$script $scriptver\ngithub.com/$repo\n" echo "$script $scriptver" # Get NAS model model=$(cat /proc/sys/kernel/syno_hw_version) # Get DSM full version productversion=$(/usr/syno/bin/synogetkeyvalue /etc.defaults/VERSION productversion) buildphase=$(/usr/syno/bin/synogetkeyvalue /etc.defaults/VERSION buildphase) buildnumber=$(/usr/syno/bin/synogetkeyvalue /etc.defaults/VERSION buildnumber) smallfixnumber=$(/usr/syno/bin/synogetkeyvalue /etc.defaults/VERSION smallfixnumber) # Show DSM full version and model if [[ $buildphase == GM ]]; then buildphase=""; fi if [[ $smallfixnumber -gt "0" ]]; then smallfix="-$smallfixnumber"; fi echo -e "$model DSM $productversion-$buildnumber$smallfix $buildphase\n" # Get ContainerManager or Docker version dockerver=$(/usr/syno/bin/synopkg version "$Docker") # Show ContainerManager or Docker version if [[ $dockerver ]]; then echo -e "$Docker $dockerver\n"; fi #------------------------------------------------------------------------------ # Check latest release with GitHub API # Get latest release info # Curl timeout options: # https://unix.stackexchange.com/questions/94604/does-curl-have-a-timeout release=$(curl --silent -m 10 --connect-timeout 5 \ "https://api.github.com/repos/$repo/releases/latest") # Release version tag=$(echo "$release" | grep '"tag_name":' | sed -E 's/.*"([^"]+)".*/\1/') #shorttag="${tag:1}" if ! printf "%s\n%s\n" "$tag" "$scriptver" | sort --check=quiet --version-sort >/dev/null ; then echo -e "\nThere is a newer version of this script available." |& tee -a "$Log_File" echo -e "Current version: ${scriptver}\nLatest version: $tag" |& tee -a "$Log_File" fi #------------------------------------------------------------------------------ # shellcheck disable=SC2317,SC2329 # Don't warn about unreachable commands in this function pause(){ # When debugging insert pause command where needed read -s -r -n 1 -p "Press any key to continue..." read -r -t 0.1 -s -e -- # Silently consume all input stty echo echok # Ensure read didn't disable echoing user input echo -e "\n" } show_json(){ # $1 is file # Show target/dockerd.json contents echo -e "\nContents of $1" >&2 if [[ -s "$1" ]]; then jq . "$1" else echo -e "${Error}ERROR${Off} File it empty!" >&2 fi } edit_file(){ # $1 is file # $2 is key # $3 is value # $4 is flat or pretty if grep "$2" "$1" | grep -q "$3"; then echo "Already contains \"$2\": $3" >&2 else cp -pf "$1" "${1}.tmp" #sleep 1 if [[ ! -s "${1}.tmp" ]]; then echo -e "${Error}ERROR${Off} File it empty!" >&2 return 1 fi if [[ $4 == "flat" ]]; then # Save as flat json if [[ $2 == "ipv6" ]]; then jq -c '. += {"ipv6" : true}' "${1}.tmp" > "$1" elif [[ $2 == "fixed-cidr-v6" ]]; then jq -c --arg value "$3" '. += {"fixed-cidr-v6" : $value}' "${1}.tmp" > "$1" fi else # Save as pretty json if [[ $2 == "ipv6" ]]; then jq '. += {"ipv6" : true}' "${1}.tmp" > "$1" elif [[ $2 == "fixed-cidr-v6" ]]; then jq --arg value "$3" '. += {"fixed-cidr-v6" : $value}' "${1}.tmp" > "$1" fi fi fi } # Stop ContainerManager or Docker if [[ $Docker == "ContainerManager" ]]; then echo -e "${Cyan}Stopping${Off} Container Manager\n" /usr/syno/bin/synopkg stop ContainerManager >/dev/null elif [[ $Docker == "Docker" ]]; then echo -e "${Cyan}Stopping${Off} Docker\n" /usr/syno/bin/synopkg stop Docker >/dev/null fi # Files to edit if [[ $Docker == "ContainerManager" ]]; then etc_json="/var/packages/ContainerManager/etc/dockerd.json" target_json="/var/packages/ContainerManager/target/config/dockerd.json" start_stop_status="/var/packages/ContainerManager/scripts/start-stop-status" elif [[ $Docker == "Docker" ]]; then etc_json="/var/packages/Docker/etc/dockerd.json" target_json="/var/packages/Docker/target/config/dockerd.json" start_stop_status="/var/packages/Docker/scripts/start-stop-status" fi # Backup dockerd.json files if [[ ! -f "${etc_json}.bak" ]]; then echo -e "${Cyan}Backing up${Off} $etc_json" cp -p "$etc_json" "${etc_json}.bak" fi if [[ ! -f "${target_json}.bak" ]]; then echo -e "${Cyan}Backing up${Off} $target_json" cp -p "$target_json" "${target_json}.bak" fi # Backup start_stop_status if [[ ! -f "${start_stop_status}.bak" ]]; then echo -e "${Cyan}Backing up${Off} $start_stop_status" cp -p "$start_stop_status" "${start_stop_status}.bak" fi # Edit etc/dockerd.json echo -e "${Cyan}Checking${Off} $etc_json" if ! grep 'ipv6' "$etc_json" | grep -q 'true' ||\ ! grep 'fixed-cidr-v6' "$etc_json" | grep -q "$cidr"; then echo -e "Editing $etc_json" fi if [[ $Docker == "ContainerManager" ]]; then # Save as flat json edit_file "$etc_json" ipv6 true flat edit_file "$etc_json" fixed-cidr-v6 "$cidr" flat elif [[ $Docker == "Docker" ]]; then # Save as pretty json edit_file "$etc_json" ipv6 true flat edit_file "$etc_json" fixed-cidr-v6 "$cidr" flat fi # Edit target/config/dockerd.json echo -e "${Cyan}Checking${Off} $target_json" if ! grep 'ipv6' "$target_json" | grep -q 'true' ||\ ! grep 'fixed-cidr-v6' "$target_json" | grep -q "$cidr"; then echo -e "Editing $target_json" fi if [[ $Docker == "ContainerManager" ]]; then # Save as pretty json edit_file "$target_json" ipv6 true edit_file "$target_json" fixed-cidr-v6 "$cidr" elif [[ $Docker == "Docker" ]]; then # Save as pretty json edit_file "$target_json" ipv6 true edit_file "$target_json" fixed-cidr-v6 "$cidr" fi # Cleanup tmp files [ -f "${etc_json}.tmp" ] && rm "${etc_json}.tmp" [ -f "${target_json}.tmp" ] && rm "${target_json}.tmp" # Replace $DockerUpdaterBin postinst updatedockerdconf "$(get_install_volume_type)" # With #$DockerUpdaterBin postinst updatedockerdconf "$(get_install_volume_type)" echo -e "${Cyan}Checking${Off} $start_stop_status" # shellcheck disable=SC2016 if ! grep -q '#$DockerUpdaterBin postinst' "$start_stop_status"; then echo -e "Editing $start_stop_status" sed -i 's/$DockerUpdaterBin postinst/#$DockerUpdaterBin postinst/' "$start_stop_status" else echo "Already edited" fi # Show dockerd.json contents show_json "$etc_json" show_json "$target_json" # Show ContainerManager/scripts/start-stop-status line echo -e "\nLine in $start_stop_status" # shellcheck disable=SC2016 if grep -q '#$DockerUpdaterBin postinst' "$start_stop_status"; then line="$(grep '#$DockerUpdaterBin postinst' "$start_stop_status" | xargs)" echo -e " ${Green}$line${Off}" else echo -e "${Error}ERROR${Off} File not edited!" fi # Start ContainerManager or Docker if [[ $Docker == "ContainerManager" ]]; then echo -e "\n${Cyan}Starting${Off} Container Manager" /usr/syno/bin/synopkg start ContainerManager >/dev/null elif [[ $Docker == "Docker" ]]; then echo -e "\n${Cyan}Starting${Off} Docker" /usr/syno/bin/synopkg start Docker >/dev/null fi echo -e "\nFinished\n" exit
10,416
syno_containermanager_ipv6
sh
en
shell
code
{"qsc_code_num_words": 1415, "qsc_code_num_chars": 10416.0, "qsc_code_mean_word_length": 4.41978799, "qsc_code_frac_words_unique": 0.22332155, "qsc_code_frac_chars_top_2grams": 0.02398465, "qsc_code_frac_chars_top_3grams": 0.02446434, "qsc_code_frac_chars_top_4grams": 0.01902782, "qsc_code_frac_chars_dupe_5grams": 0.41365526, "qsc_code_frac_chars_dupe_6grams": 0.36344739, "qsc_code_frac_chars_dupe_7grams": 0.34617845, "qsc_code_frac_chars_dupe_8grams": 0.25679565, "qsc_code_frac_chars_dupe_9grams": 0.20370963, "qsc_code_frac_chars_dupe_10grams": 0.10329389, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.02723644, "qsc_code_frac_chars_whitespace": 0.18221966, "qsc_code_size_file_byte": 10416.0, "qsc_code_num_lines": 304.0, "qsc_code_num_chars_line_max": 141.0, "qsc_code_num_chars_line_mean": 34.26315789, "qsc_code_frac_chars_alphabet": 0.70697347, "qsc_code_frac_chars_comments": 0.36107911, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.35185185, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.00617284, "qsc_code_frac_chars_string_length": 0.40066126, "qsc_code_frac_chars_long_word_length": 0.1029456, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.0, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0}
1
{"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0}
0015/Grid_Board
components/bsp_extra/src/bsp_board_extra.c
/* * SPDX-FileCopyrightText: 2015-2024 Espressif Systems (Shanghai) CO LTD * * SPDX-License-Identifier: Apache-2.0 */ #include <stdint.h> #include <stdbool.h> #include <string.h> #include "esp_log.h" #include "esp_check.h" #include "esp_codec_dev_defaults.h" #include "esp_err.h" #include "esp_log.h" #include "esp_vfs_fat.h" #include "driver/i2c.h" #include "driver/i2s_std.h" #include "driver/gpio.h" #include "driver/ledc.h" #include "bsp/esp-bsp.h" #include "bsp_board_extra.h" static const char *TAG = "bsp_extra_board"; static esp_codec_dev_handle_t play_dev_handle; static esp_codec_dev_handle_t record_dev_handle; static bool _is_audio_init = false; static bool _is_player_init = false; static int _vloume_intensity = CODEC_DEFAULT_VOLUME; static audio_player_cb_t audio_idle_callback = NULL; static void *audio_idle_cb_user_data = NULL; static char audio_file_path[128]; /************************************************************************************************** * * Extra Board Function * **************************************************************************************************/ static esp_err_t audio_mute_function(AUDIO_PLAYER_MUTE_SETTING setting) { // Volume saved when muting and restored when unmuting. Restoring volume is necessary // as es8311_set_voice_mute(true) results in voice volume (REG32) being set to zero. bsp_extra_codec_mute_set(setting == AUDIO_PLAYER_MUTE ? true : false); // restore the voice volume upon unmuting if (setting == AUDIO_PLAYER_UNMUTE) { ESP_RETURN_ON_ERROR(esp_codec_dev_set_out_vol(play_dev_handle, _vloume_intensity), TAG, "Set Codec volume failed"); } return ESP_OK; } static void audio_callback(audio_player_cb_ctx_t *ctx) { if (audio_idle_callback) { ctx->user_ctx = audio_idle_cb_user_data; audio_idle_callback(ctx); } } esp_err_t bsp_extra_i2s_read(void *audio_buffer, size_t len, size_t *bytes_read, uint32_t timeout_ms) { esp_err_t ret = ESP_OK; ret = esp_codec_dev_read(record_dev_handle, audio_buffer, len); *bytes_read = len; return ret; } esp_err_t bsp_extra_i2s_write(void *audio_buffer, size_t len, size_t *bytes_written, uint32_t timeout_ms) { esp_err_t ret = ESP_OK; ret = esp_codec_dev_write(play_dev_handle, audio_buffer, len); *bytes_written = len; return ret; } esp_err_t bsp_extra_codec_set_fs(uint32_t rate, uint32_t bits_cfg, i2s_slot_mode_t ch) { esp_err_t ret = ESP_OK; esp_codec_dev_sample_info_t fs = { .sample_rate = rate, .channel = ch, .bits_per_sample = bits_cfg, }; if (play_dev_handle) { ret = esp_codec_dev_close(play_dev_handle); } if (record_dev_handle) { ret |= esp_codec_dev_close(record_dev_handle); ret |= esp_codec_dev_set_in_gain(record_dev_handle, CODEC_DEFAULT_ADC_VOLUME); } if (play_dev_handle) { ret |= esp_codec_dev_open(play_dev_handle, &fs); } if (record_dev_handle) { ret |= esp_codec_dev_open(record_dev_handle, &fs); } return ret; } esp_err_t bsp_extra_codec_volume_set(int volume, int *volume_set) { ESP_RETURN_ON_ERROR(esp_codec_dev_set_out_vol(play_dev_handle, volume), TAG, "Set Codec volume failed"); _vloume_intensity = volume; ESP_LOGI(TAG, "Setting volume: %d", volume); return ESP_OK; } int bsp_extra_codec_volume_get(void) { return _vloume_intensity; } esp_err_t bsp_extra_codec_mute_set(bool enable) { esp_err_t ret = ESP_OK; ret = esp_codec_dev_set_out_mute(play_dev_handle, enable); return ret; } esp_err_t bsp_extra_codec_dev_stop(void) { esp_err_t ret = ESP_OK; if (play_dev_handle) { ret = esp_codec_dev_close(play_dev_handle); } if (record_dev_handle) { ret = esp_codec_dev_close(record_dev_handle); } return ret; } esp_err_t bsp_extra_codec_dev_resume(void) { return bsp_extra_codec_set_fs(CODEC_DEFAULT_SAMPLE_RATE, CODEC_DEFAULT_BIT_WIDTH, CODEC_DEFAULT_CHANNEL); } esp_err_t bsp_extra_codec_init() { if (_is_audio_init) { return ESP_OK; } play_dev_handle = bsp_audio_codec_speaker_init(); assert((play_dev_handle) && "play_dev_handle not initialized"); record_dev_handle = bsp_audio_codec_microphone_init(); assert((record_dev_handle) && "record_dev_handle not initialized"); bsp_extra_codec_set_fs(CODEC_DEFAULT_SAMPLE_RATE, CODEC_DEFAULT_BIT_WIDTH, CODEC_DEFAULT_CHANNEL); _is_audio_init = true; return ESP_OK; } esp_err_t bsp_extra_player_init(void) { if (_is_player_init) { return ESP_OK; } audio_player_config_t config = { .mute_fn = audio_mute_function, .write_fn = bsp_extra_i2s_write, .clk_set_fn = bsp_extra_codec_set_fs, .priority = 5 }; ESP_RETURN_ON_ERROR(audio_player_new(config), TAG, "audio_player_init failed"); audio_player_callback_register(audio_callback, NULL); _is_player_init = true; return ESP_OK; } esp_err_t bsp_extra_player_del(void) { _is_player_init = false; ESP_RETURN_ON_ERROR(audio_player_delete(), TAG, "audio_player_delete failed"); return ESP_OK; } esp_err_t bsp_extra_file_instance_init(const char *path, file_iterator_instance_t **ret_instance) { ESP_RETURN_ON_FALSE(path, ESP_FAIL, TAG, "path is NULL"); ESP_RETURN_ON_FALSE(ret_instance, ESP_FAIL, TAG, "ret_instance is NULL"); file_iterator_instance_t *file_iterator = file_iterator_new(path); ESP_RETURN_ON_FALSE(file_iterator, ESP_FAIL, TAG, "file_iterator_new failed, %s", path); *ret_instance = file_iterator; return ESP_OK; } esp_err_t bsp_extra_player_play_index(file_iterator_instance_t *instance, int index) { ESP_RETURN_ON_FALSE(instance, ESP_FAIL, TAG, "instance is NULL"); ESP_LOGI(TAG, "play_index(%d)", index); char filename[128]; int retval = file_iterator_get_full_path_from_index(instance, index, filename, sizeof(filename)); ESP_RETURN_ON_FALSE(retval != 0, ESP_FAIL, TAG, "file_iterator_get_full_path_from_index failed"); ESP_LOGI(TAG, "opening file '%s'", filename); FILE *fp = fopen(filename, "rb"); ESP_RETURN_ON_FALSE(fp, ESP_FAIL, TAG, "unable to open file"); ESP_LOGI(TAG, "Playing '%s'", filename); ESP_RETURN_ON_ERROR(audio_player_play(fp), TAG, "audio_player_play failed"); memcpy(audio_file_path, filename, sizeof(audio_file_path)); return ESP_OK; } esp_err_t bsp_extra_player_play_file(const char *file_path) { ESP_LOGI(TAG, "opening file '%s'", file_path); FILE *fp = fopen(file_path, "rb"); ESP_RETURN_ON_FALSE(fp, ESP_FAIL, TAG, "unable to open file"); ESP_LOGI(TAG, "Playing '%s'", file_path); ESP_RETURN_ON_ERROR(audio_player_play(fp), TAG, "audio_player_play failed"); memcpy(audio_file_path, file_path, sizeof(audio_file_path)); return ESP_OK; } void bsp_extra_player_register_callback(audio_player_cb_t cb, void *user_data) { audio_idle_callback = cb; audio_idle_cb_user_data = user_data; } bool bsp_extra_player_is_playing_by_path(const char *file_path) { return (strcmp(audio_file_path, file_path) == 0); } bool bsp_extra_player_is_playing_by_index(file_iterator_instance_t *instance, int index) { return (index == file_iterator_get_index(instance)); }
7,419
bsp_board_extra
c
en
c
code
{"qsc_code_num_words": 1103, "qsc_code_num_chars": 7419.0, "qsc_code_mean_word_length": 4.2574796, "qsc_code_frac_words_unique": 0.15231188, "qsc_code_frac_chars_top_2grams": 0.05366269, "qsc_code_frac_chars_top_3grams": 0.02832198, "qsc_code_frac_chars_top_4grams": 0.02768313, "qsc_code_frac_chars_dupe_5grams": 0.47614991, "qsc_code_frac_chars_dupe_6grams": 0.41034923, "qsc_code_frac_chars_dupe_7grams": 0.34795571, "qsc_code_frac_chars_dupe_8grams": 0.29620954, "qsc_code_frac_chars_dupe_9grams": 0.24126917, "qsc_code_frac_chars_dupe_10grams": 0.21358603, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.00638193, "qsc_code_frac_chars_whitespace": 0.17630408, "qsc_code_size_file_byte": 7419.0, "qsc_code_num_lines": 259.0, "qsc_code_num_chars_line_max": 124.0, "qsc_code_num_chars_line_mean": 28.64478764, "qsc_code_frac_chars_alphabet": 0.7620684, "qsc_code_frac_chars_comments": 0.07602103, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.19047619, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.0926196, "qsc_code_frac_chars_long_word_length": 0.00904317, "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.01058201, "qsc_codec_frac_lines_func_ratio": 0.10582011, "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.26984127, "qsc_codec_frac_lines_print": 0.0, "qsc_codec_frac_lines_preprocessor_directives": 0.07936508}
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}
007revad/Synology_ContainerManager_IPv6
README.md
# Synology Container Manager IPv6 <a href="https://github.com/007revad/Synology_ContainerManager_IPv6/releases"><img src="https://img.shields.io/github/release/007revad/Synology_ContainerManager_IPv6.svg"></a> ![Badge](https://hitscounter.dev/api/hit?url=https%3A%2F%2Fgithub.com%2F007revad%2FSynology_ContainerManager_IPv6&label=Visitors&icon=github&color=%23198754&message=&style=flat&tz=Australia%2FSydney) [![Donate](https://img.shields.io/badge/Donate-PayPal-green.svg)](https://www.paypal.com/paypalme/007revad) [![](https://img.shields.io/static/v1?label=Sponsor&message=%E2%9D%A4&logo=GitHub&color=%23fe8e86)](https://github.com/sponsors/007revad) [![committers.top badge](https://user-badge.committers.top/australia/007revad.svg)](https://user-badge.committers.top/australia/007revad) <!-- [![committers.top badge](https://user-badge.committers.top/australia_public/007revad.svg)](https://user-badge.committers.top/australia_public/007revad) --> <!-- [![committers.top badge](https://user-badge.committers.top/australia_private/007revad.svg)](https://user-badge.committers.top/australia_private/007revad) --> <!-- [![Github Releases](https://img.shields.io/github/downloads/007revad/synology_containermanager_ipv6/total.svg)](https://github.com/007revad/Synology_ContainerManager_IPv6/releases) --> ### Description Enable IPv6 for the bridge network in Container Manager or Docker The script works in DSM 7 and later. <p align="left"><img src="/images/success.png"></p> ## Download the script 1. Download the latest version _Source code (zip)_ from https://github.com/007revad/Synology_ContainerManager_IPv6/releases 2. Save the download zip file to a folder on the Synology. 3. Unzip the zip file. ## Edit the script if needed If your Synology's IPv6 IP address starts with "fe80" you don't need to edit anything. <p align="left"><img src="/images/cidr.png"></p> If you are using a scope global IPv6 address replace "fe80::1/64" in the script with your network's IPv6 CIDR range. For example: `cidr="2001:db8:1::/64"` ## How to run the script ### Run the script via SSH [How to enable SSH and login to DSM via SSH](https://kb.synology.com/en-global/DSM/tutorial/How_to_login_to_DSM_with_root_permission_via_SSH_Telnet) Run the script: ```bash sudo -s /volume1/scripts/syno_containermanager_ipv6.sh ``` > **Note** <br> > Replace /volume1/scripts/ with the path to where the script is located. ### Scheduling the script in Synology's Task Scheduler See <a href=how_to_schedule.md/>How to schedule a script in Synology Task Scheduler</a> ## Screenshots <p align="left"><img src="/images/screenshot.png"></p> <br>
2,644
README
md
en
markdown
text
{"qsc_doc_frac_chars_curly_bracket": 0.0, "qsc_doc_frac_words_redpajama_stop": 0.11792453, "qsc_doc_num_sentences": 63.0, "qsc_doc_num_words": 401, "qsc_doc_num_chars": 2644.0, "qsc_doc_num_lines": 59.0, "qsc_doc_mean_word_length": 4.95261845, "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.38653367, "qsc_doc_entropy_unigram": 4.60839372, "qsc_doc_frac_words_all_caps": 0.02044025, "qsc_doc_frac_lines_dupe_lines": 0.0, "qsc_doc_frac_chars_dupe_lines": 0.0, "qsc_doc_frac_chars_top_2grams": 0.05891239, "qsc_doc_frac_chars_top_3grams": 0.04229607, "qsc_doc_frac_chars_top_4grams": 0.07250755, "qsc_doc_frac_chars_dupe_5grams": 0.32578046, "qsc_doc_frac_chars_dupe_6grams": 0.30261833, "qsc_doc_frac_chars_dupe_7grams": 0.2693857, "qsc_doc_frac_chars_dupe_8grams": 0.2693857, "qsc_doc_frac_chars_dupe_9grams": 0.09365559, "qsc_doc_frac_chars_dupe_10grams": 0.09365559, "qsc_doc_frac_chars_replacement_symbols": 0.0, "qsc_doc_cate_code_related_file_name": 1.0, "qsc_doc_num_chars_sentence_length_mean": 20.16, "qsc_doc_frac_chars_hyperlink_html_tag": 0.73146747, "qsc_doc_frac_chars_alphabet": 0.77919934, "qsc_doc_frac_chars_digital": 0.04044573, "qsc_doc_frac_chars_whitespace": 0.08358548, "qsc_doc_frac_chars_hex_words": 0.0}
0
{"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": 1, "qsc_doc_frac_chars_alphabet": 0, "qsc_doc_frac_chars_digital": 0, "qsc_doc_frac_chars_whitespace": 0}
007revad/Synology_ContainerManager_IPv6
how_to_schedule.md
# How to schedule a script in Synology Task Scheduler To schedule a script to run on your Synology at boot-up or shut-down follow these steps: **Note:** You can setup a schedule task and leave it disabled, so it only runs when you select the task in the Task Scheduler and click on the Run button. 1. Go to **Control Panel** > **Task Scheduler** > click **Create** > and select **Triggered Task**. 2. Select **User-defined script**. 3. Enter a task name. 4. Select **root** as the user (The script needs to run as root). 5. Select **Boot-up** as the event that triggers the task. 6. Leave **Enable** ticked. 7. Click **Task Settings**. 8. Optionally you can tick **Send run details by email** and **Send run details only when the script terminates abnormally** then enter your email address. 9. In the box under **User-defined script** type the path to the script. - e.g. If you saved the script to a shared folder on volume1 called "scripts" you'd type: - **/volume1/scripts/syno_containermanager_ipv6.sh** 11. Click **OK** to save the settings. Here's some screenshots showing what needs to be set: <p align="leftr"><img src="images/schedule1.png"></p> <p align="leftr"><img src="images/schedule2.png"></p> <p align="leftr"><img src="images/schedule3.png"></p>
1,279
how_to_schedule
md
en
markdown
text
{"qsc_doc_frac_chars_curly_bracket": 0.0, "qsc_doc_frac_words_redpajama_stop": 0.24840764, "qsc_doc_num_sentences": 28.0, "qsc_doc_num_words": 219, "qsc_doc_num_chars": 1279.0, "qsc_doc_num_lines": 26.0, "qsc_doc_mean_word_length": 4.16894977, "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.51598174, "qsc_doc_entropy_unigram": 4.42635248, "qsc_doc_frac_words_all_caps": 0.00318471, "qsc_doc_frac_lines_dupe_lines": 0.0, "qsc_doc_frac_chars_dupe_lines": 0.0, "qsc_doc_frac_chars_top_2grams": 0.03943045, "qsc_doc_frac_chars_top_3grams": 0.03614458, "qsc_doc_frac_chars_top_4grams": 0.04600219, "qsc_doc_frac_chars_dupe_5grams": 0.08433735, "qsc_doc_frac_chars_dupe_6grams": 0.08433735, "qsc_doc_frac_chars_dupe_7grams": 0.05914567, "qsc_doc_frac_chars_dupe_8grams": 0.05914567, "qsc_doc_frac_chars_dupe_9grams": 0.0, "qsc_doc_frac_chars_dupe_10grams": 0.0, "qsc_doc_frac_chars_replacement_symbols": 0.0, "qsc_doc_cate_code_related_file_name": 0.0, "qsc_doc_num_chars_sentence_length_mean": 22.7037037, "qsc_doc_frac_chars_hyperlink_html_tag": 0.12431587, "qsc_doc_frac_chars_alphabet": 0.83816651, "qsc_doc_frac_chars_digital": 0.01590271, "qsc_doc_frac_chars_whitespace": 0.16419077, "qsc_doc_frac_chars_hex_words": 0.0}
1
{"qsc_doc_frac_chars_replacement_symbols": 0, "qsc_doc_entropy_unigram": 0, "qsc_doc_frac_chars_top_2grams": 0, "qsc_doc_frac_chars_top_3grams": 0, "qsc_doc_frac_chars_top_4grams": 0, "qsc_doc_frac_chars_dupe_5grams": 0, "qsc_doc_frac_chars_dupe_6grams": 0, "qsc_doc_frac_chars_dupe_7grams": 0, "qsc_doc_frac_chars_dupe_8grams": 0, "qsc_doc_frac_chars_dupe_9grams": 0, "qsc_doc_frac_chars_dupe_10grams": 0, "qsc_doc_frac_chars_dupe_lines": 0, "qsc_doc_frac_lines_dupe_lines": 0, "qsc_doc_frac_lines_end_with_readmore": 0, "qsc_doc_frac_lines_start_with_bullet": 0, "qsc_doc_frac_words_all_caps": 0, "qsc_doc_mean_word_length": 0, "qsc_doc_num_chars": 0, "qsc_doc_num_lines": 0, "qsc_doc_num_sentences": 0, "qsc_doc_num_words": 0, "qsc_doc_frac_chars_hex_words": 0, "qsc_doc_frac_chars_hyperlink_html_tag": 0, "qsc_doc_frac_chars_alphabet": 0, "qsc_doc_frac_chars_digital": 0, "qsc_doc_frac_chars_whitespace": 0}
0015/Grid_Board
components/bsp_extra/include/bsp_board_extra.h
/* * SPDX-FileCopyrightText: 2015-2024 Espressif Systems (Shanghai) CO LTD * * SPDX-License-Identifier: Apache-2.0 */ #pragma once #include <sys/cdefs.h> #include <stdbool.h> #include "esp_codec_dev.h" #include "esp_err.h" #include "driver/gpio.h" #include "driver/i2s_std.h" #include "audio_player.h" #include "file_iterator.h" #ifdef __cplusplus extern "C" { #endif #define CODEC_DEFAULT_SAMPLE_RATE (16000) #define CODEC_DEFAULT_BIT_WIDTH (16) #define CODEC_DEFAULT_ADC_VOLUME (24.0) #define CODEC_DEFAULT_CHANNEL (2) #define CODEC_DEFAULT_VOLUME (60) #define BSP_LCD_BACKLIGHT_BRIGHTNESS_MAX (95) #define BSP_LCD_BACKLIGHT_BRIGHTNESS_MIN (0) #define LCD_LEDC_CH (CONFIG_BSP_DISPLAY_BRIGHTNESS_LEDC_CH) /************************************************************************************************** * BSP Extra interface * Mainly provided some I2S Codec interfaces. **************************************************************************************************/ /** * @brief Player set mute. * * @param enable: true or false * * @return * - ESP_OK: Success * - Others: Fail */ esp_err_t bsp_extra_codec_mute_set(bool enable); /** * @brief Player set volume. * * @param volume: volume set * @param volume_set: volume set response * * @return * - ESP_OK: Success * - Others: Fail */ esp_err_t bsp_extra_codec_volume_set(int volume, int *volume_set); /** * @brief Player get volume. * * @return * - volume: volume get */ int bsp_extra_codec_volume_get(void); /** * @brief Stop I2S function. * * @return * - ESP_OK: Success * - Others: Fail */ esp_err_t bsp_extra_codec_dev_stop(void); /** * @brief Resume I2S function. * * @return * - ESP_OK: Success * - Others: Fail */ esp_err_t bsp_extra_codec_dev_resume(void); /** * @brief Set I2S format to codec. * * @param rate: Sample rate of sample * @param bits_cfg: Bit lengths of one channel data * @param ch: Channels of sample * * @return * - ESP_OK: Success * - Others: Fail */ esp_err_t bsp_extra_codec_set_fs(uint32_t rate, uint32_t bits_cfg, i2s_slot_mode_t ch); /** * @brief Read data from recoder. * * @param audio_buffer: The pointer of receiving data buffer * @param len: Max data buffer length * @param bytes_read: Byte number that actually be read, can be NULL if not needed * @param timeout_ms: Max block time * * @return * - ESP_OK: Success * - Others: Fail */ esp_err_t bsp_extra_i2s_read(void *audio_buffer, size_t len, size_t *bytes_read, uint32_t timeout_ms); /** * @brief Write data to player. * * @param audio_buffer: The pointer of sent data buffer * @param len: Max data buffer length * @param bytes_written: Byte number that actually be sent, can be NULL if not needed * @param timeout_ms: Max block time * * @return * - ESP_OK: Success * - Others: Fail */ esp_err_t bsp_extra_i2s_write(void *audio_buffer, size_t len, size_t *bytes_written, uint32_t timeout_ms); /** * @brief Initialize codec play and record handle. * * @return * - ESP_OK: Success * - Others: Fail */ esp_err_t bsp_extra_codec_init(); /** * @brief Initialize audio player task. * * @param path file path * * @return * - ESP_OK: Success * - Others: Fail */ esp_err_t bsp_extra_player_init(void); /** * @brief Delete audio player task. * * @return * - ESP_OK: Success * - Others: Fail */ esp_err_t bsp_extra_player_del(void); /** * @brief Initialize a file iterator instance * * @param path The file path for the iterator. * @param ret_instance A pointer to the file iterator instance to be returned. * @return * - ESP_OK: Successfully initialized the file iterator instance. * - ESP_FAIL: Failed to initialize the file iterator instance due to invalid parameters or memory allocation failure. */ esp_err_t bsp_extra_file_instance_init(const char *path, file_iterator_instance_t **ret_instance); /** * @brief Play the audio file at the specified index in the file iterator * * @param instance The file iterator instance. * @param index The index of the file to play within the iterator. * @return * - ESP_OK: Successfully started playing the audio file. * - ESP_FAIL: Failed to play the audio file due to invalid parameters or file access issues. */ esp_err_t bsp_extra_player_play_index(file_iterator_instance_t *instance, int index); /** * @brief Play the audio file specified by the file path * * @param file_path The path to the audio file to be played. * @return * - ESP_OK: Successfully started playing the audio file. * - ESP_FAIL: Failed to play the audio file due to file access issues. */ esp_err_t bsp_extra_player_play_file(const char *file_path); /** * @brief Register a callback function for the audio player * * @param cb The callback function to be registered. * @param user_data User data to be passed to the callback function. */ void bsp_extra_player_register_callback(audio_player_cb_t cb, void *user_data); /** * @brief Check if the specified audio file is currently playing * * @param file_path The path to the audio file to check. * @return * - true: The specified audio file is currently playing. * - false: The specified audio file is not currently playing. */ bool bsp_extra_player_is_playing_by_path(const char *file_path); /** * @brief Check if the audio file at the specified index is currently playing * * @param instance The file iterator instance. * @param index The index of the file to check. * @return * - true: The audio file at the specified index is currently playing. * - false: The audio file at the specified index is not currently playing. */ bool bsp_extra_player_is_playing_by_index(file_iterator_instance_t *instance, int index); #ifdef __cplusplus } #endif
5,915
bsp_board_extra
h
en
c
code
{"qsc_code_num_words": 839, "qsc_code_num_chars": 5915.0, "qsc_code_mean_word_length": 4.55542312, "qsc_code_frac_words_unique": 0.21096544, "qsc_code_frac_chars_top_2grams": 0.03767661, "qsc_code_frac_chars_top_3grams": 0.03741497, "qsc_code_frac_chars_top_4grams": 0.03401361, "qsc_code_frac_chars_dupe_5grams": 0.53244375, "qsc_code_frac_chars_dupe_6grams": 0.45002616, "qsc_code_frac_chars_dupe_7grams": 0.42752486, "qsc_code_frac_chars_dupe_8grams": 0.39900576, "qsc_code_frac_chars_dupe_9grams": 0.3689168, "qsc_code_frac_chars_dupe_10grams": 0.35164835, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.00885329, "qsc_code_frac_chars_whitespace": 0.19797126, "qsc_code_size_file_byte": 5915.0, "qsc_code_num_lines": 219.0, "qsc_code_num_chars_line_max": 123.0, "qsc_code_num_chars_line_mean": 27.00913242, "qsc_code_frac_chars_alphabet": 0.79679595, "qsc_code_frac_chars_comments": 0.68199493, "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.04412547, "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.425, "qsc_codec_cate_bitsstdc": 0.0, "qsc_codec_nums_lines_main": 0, "qsc_codec_frac_lines_goto": 0.0, "qsc_codec_cate_var_zero": 1.0, "qsc_codec_score_lines_no_logic": 0.625, "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": 1, "qsc_codec_frac_lines_preprocessor_directives": 0, "qsc_codec_frac_lines_print": 0}
00-Evan/shattered-pixel-dungeon-gdx
core/src/com/shatteredpixel/shatteredpixeldungeon/windows/WndGame.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.windows; import com.shatteredpixel.shatteredpixeldungeon.Dungeon; import com.shatteredpixel.shatteredpixeldungeon.GamesInProgress; import com.shatteredpixel.shatteredpixeldungeon.SPDSettings; import com.shatteredpixel.shatteredpixeldungeon.ShatteredPixelDungeon; import com.shatteredpixel.shatteredpixeldungeon.messages.Messages; import com.shatteredpixel.shatteredpixeldungeon.scenes.GameScene; import com.shatteredpixel.shatteredpixeldungeon.scenes.InterlevelScene; import com.shatteredpixel.shatteredpixeldungeon.scenes.RankingsScene; import com.shatteredpixel.shatteredpixeldungeon.scenes.TitleScene; import com.shatteredpixel.shatteredpixeldungeon.ui.RedButton; import com.shatteredpixel.shatteredpixeldungeon.ui.Window; import com.watabou.noosa.Game; import java.io.IOException; public class WndGame extends Window { private static final int WIDTH = 120; private static final int BTN_HEIGHT = 20; private static final int GAP = 2; private int pos; public WndGame() { super(); addButton( new RedButton( Messages.get(this, "settings") ) { @Override protected void onClick() { hide(); GameScene.show(new WndSettings()); } }); // Challenges window if (Dungeon.challenges > 0) { addButton( new RedButton( Messages.get(this, "challenges") ) { @Override protected void onClick() { hide(); GameScene.show( new WndChallenges( Dungeon.challenges, false ) ); } } ); } // Restart if (Dungeon.hero == null || !Dungeon.hero.isAlive()) { RedButton btnStart; addButton( btnStart = new RedButton( Messages.get(this, "start") ) { @Override protected void onClick() { GamesInProgress.selectedClass = Dungeon.hero.heroClass; InterlevelScene.noStory = true; GameScene.show(new WndStartGame(GamesInProgress.firstEmpty())); } } ); btnStart.textColor(Window.TITLE_COLOR); addButton( new RedButton( Messages.get(this, "rankings") ) { @Override protected void onClick() { InterlevelScene.mode = InterlevelScene.Mode.DESCEND; Game.switchScene( RankingsScene.class ); } } ); } addButtons( // Main menu new RedButton( Messages.get(this, "menu") ) { @Override protected void onClick() { try { Dungeon.saveAll(); } catch (IOException e) { ShatteredPixelDungeon.reportException(e); } Game.switchScene(TitleScene.class); } }, // Quit new RedButton( Messages.get(this, "exit") ) { @Override protected void onClick() { Game.instance.finish(); } } ); // Cancel addButton( new RedButton( Messages.get(this, "return") ) { @Override protected void onClick() { hide(); } } ); resize( WIDTH, pos ); } private void addButton( RedButton btn ) { add( btn ); btn.setRect( 0, pos > 0 ? pos += GAP : 0, WIDTH, BTN_HEIGHT ); pos += BTN_HEIGHT; } private void addButtons( RedButton btn1, RedButton btn2 ) { add( btn1 ); btn1.setRect( 0, pos > 0 ? pos += GAP : 0, (WIDTH - GAP) / 2, BTN_HEIGHT ); add( btn2 ); btn2.setRect( btn1.right() + GAP, btn1.top(), WIDTH - btn1.right() - GAP, BTN_HEIGHT ); pos += BTN_HEIGHT; } }
4,021
WndGame
java
en
java
code
{"qsc_code_num_words": 446, "qsc_code_num_chars": 4021.0, "qsc_code_mean_word_length": 6.25784753, "qsc_code_frac_words_unique": 0.38565022, "qsc_code_frac_chars_top_2grams": 0.07309208, "qsc_code_frac_chars_top_3grams": 0.1633823, "qsc_code_frac_chars_top_4grams": 0.17341455, "qsc_code_frac_chars_dupe_5grams": 0.29272662, "qsc_code_frac_chars_dupe_6grams": 0.12325331, "qsc_code_frac_chars_dupe_7grams": 0.05159441, "qsc_code_frac_chars_dupe_8grams": 0.05159441, "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.01236094, "qsc_code_frac_chars_whitespace": 0.19522507, "qsc_code_size_file_byte": 4021.0, "qsc_code_num_lines": 138.0, "qsc_code_num_chars_line_max": 90.0, "qsc_code_num_chars_line_mean": 29.13768116, "qsc_code_frac_chars_alphabet": 0.85012361, "qsc_code_frac_chars_comments": 0.20865456, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.25, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.01414205, "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.11458333, "qsc_codejava_score_lines_no_logic": 0.28125, "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/windows/WndError.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.windows; import com.shatteredpixel.shatteredpixeldungeon.messages.Messages; import com.shatteredpixel.shatteredpixeldungeon.ui.Icons; public class WndError extends WndTitledMessage { public WndError( String message ) { super( Icons.WARNING.get(), Messages.get(WndError.class, "title"), message ); } }
1,140
WndError
java
en
java
code
{"qsc_code_num_words": 157, "qsc_code_num_chars": 1140.0, "qsc_code_mean_word_length": 5.50318471, "qsc_code_frac_words_unique": 0.61783439, "qsc_code_frac_chars_top_2grams": 0.03819444, "qsc_code_frac_chars_top_3grams": 0.04513889, "qsc_code_frac_chars_top_4grams": 0.06597222, "qsc_code_frac_chars_dupe_5grams": 0.09490741, "qsc_code_frac_chars_dupe_6grams": 0.06481481, "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.01789474, "qsc_code_frac_chars_whitespace": 0.16666667, "qsc_code_size_file_byte": 1140.0, "qsc_code_num_lines": 32.0, "qsc_code_num_chars_line_max": 80.0, "qsc_code_num_chars_line_mean": 35.625, "qsc_code_frac_chars_alphabet": 0.89157895, "qsc_code_frac_chars_comments": 0.68508772, "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.01392758, "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.0, "qsc_codejava_score_lines_no_logic": 0.375, "qsc_codejava_frac_words_no_modifier": 0.0, "qsc_codejava_frac_words_legal_var_name": null, "qsc_codejava_frac_words_legal_func_name": null, "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/windows/IconTitle.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.windows; import com.shatteredpixel.shatteredpixeldungeon.items.Heap; import com.shatteredpixel.shatteredpixeldungeon.items.Item; import com.shatteredpixel.shatteredpixeldungeon.messages.Messages; import com.shatteredpixel.shatteredpixeldungeon.scenes.PixelScene; import com.shatteredpixel.shatteredpixeldungeon.sprites.ItemSprite; import com.shatteredpixel.shatteredpixeldungeon.ui.HealthBar; import com.shatteredpixel.shatteredpixeldungeon.ui.RenderedTextBlock; import com.shatteredpixel.shatteredpixeldungeon.ui.Window; import com.watabou.noosa.Image; import com.watabou.noosa.ui.Component; public class IconTitle extends Component { private static final float FONT_SIZE = 9; private static final float GAP = 2; protected Image imIcon; protected RenderedTextBlock tfLabel; protected HealthBar health; private float healthLvl = Float.NaN; public IconTitle() { super(); } public IconTitle( Item item ) { ItemSprite icon = new ItemSprite(); icon( icon ); label( Messages.titleCase( item.toString() ) ); icon.view( item ); } public IconTitle( Heap heap ){ ItemSprite icon = new ItemSprite(); icon( icon ); label( Messages.titleCase( heap.toString() ) ); icon.view( heap ); } public IconTitle( Image icon, String label ) { super(); icon( icon ); label( label ); } @Override protected void createChildren() { imIcon = new Image(); add( imIcon ); tfLabel = PixelScene.renderTextBlock( (int)FONT_SIZE ); tfLabel.hardlight( Window.TITLE_COLOR ); tfLabel.setHightlighting(false); add( tfLabel ); health = new HealthBar(); add( health ); } @Override protected void layout() { health.visible = !Float.isNaN( healthLvl ); imIcon.x = x + (Math.max(0, 8 - imIcon.width()/2)); imIcon.y = y + (Math.max(0, 8 - imIcon.height()/2)); PixelScene.align(imIcon); int imWidth = (int)Math.max(imIcon.width(), 16); int imHeight = (int)Math.max(imIcon.height(), 16); tfLabel.maxWidth((int)(width - (imWidth + GAP))); tfLabel.setPos(x + imWidth + GAP, imHeight > tfLabel.height() ? y +(imHeight - tfLabel.height()) / 2 : y); PixelScene.align(tfLabel); if (health.visible) { health.setRect( tfLabel.left(), tfLabel.bottom(), tfLabel.maxWidth(), 0 ); height = Math.max( imHeight, health.bottom() ); } else { height = Math.max( imHeight, tfLabel.height() ); } } public void icon( Image icon ) { remove( imIcon ); add( imIcon = icon ); } public void label( String label ) { tfLabel.text( label ); } public void label( String label, int color ) { tfLabel.text( label ); tfLabel.hardlight( color ); } public void color( int color ) { tfLabel.hardlight( color ); } public void health( float value ) { health.level( healthLvl = value ); layout(); } }
3,599
IconTitle
java
en
java
code
{"qsc_code_num_words": 442, "qsc_code_num_chars": 3599.0, "qsc_code_mean_word_length": 5.7918552, "qsc_code_frac_words_unique": 0.36651584, "qsc_code_frac_chars_top_2grams": 0.03515625, "qsc_code_frac_chars_top_3grams": 0.13359375, "qsc_code_frac_chars_top_4grams": 0.1375, "qsc_code_frac_chars_dupe_5grams": 0.225, "qsc_code_frac_chars_dupe_6grams": 0.06640625, "qsc_code_frac_chars_dupe_7grams": 0.04453125, "qsc_code_frac_chars_dupe_8grams": 0.04453125, "qsc_code_frac_chars_dupe_9grams": 0.04453125, "qsc_code_frac_chars_dupe_10grams": 0.0, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.01039222, "qsc_code_frac_chars_whitespace": 0.17115866, "qsc_code_size_file_byte": 3599.0, "qsc_code_num_lines": 132.0, "qsc_code_num_chars_line_max": 79.0, "qsc_code_num_chars_line_mean": 27.26515152, "qsc_code_frac_chars_alphabet": 0.84780422, "qsc_code_frac_chars_comments": 0.21700472, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.14942529, "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.08045977, "qsc_codejava_score_lines_no_logic": 0.24137931, "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/windows/WndInfoTrap.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.windows; import com.shatteredpixel.shatteredpixeldungeon.Dungeon; import com.shatteredpixel.shatteredpixeldungeon.levels.traps.Trap; import com.shatteredpixel.shatteredpixeldungeon.messages.Messages; import com.shatteredpixel.shatteredpixeldungeon.tiles.TerrainFeaturesTilemap; public class WndInfoTrap extends WndTitledMessage { public WndInfoTrap(Trap trap) { super(TerrainFeaturesTilemap.tile( trap.pos, Dungeon.level.map[trap.pos]), Messages.titleCase(trap.name), (!trap.active ? Messages.get(WndInfoTrap.class, "inactive") + "\n\n" : "") + trap.desc()); } }
1,412
WndInfoTrap
java
en
java
code
{"qsc_code_num_words": 184, "qsc_code_num_chars": 1412.0, "qsc_code_mean_word_length": 5.86413043, "qsc_code_frac_words_unique": 0.57608696, "qsc_code_frac_chars_top_2grams": 0.07877665, "qsc_code_frac_chars_top_3grams": 0.17608897, "qsc_code_frac_chars_top_4grams": 0.16311399, "qsc_code_frac_chars_dupe_5grams": 0.07599629, "qsc_code_frac_chars_dupe_6grams": 0.05189991, "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.01414309, "qsc_code_frac_chars_whitespace": 0.14872521, "qsc_code_size_file_byte": 1412.0, "qsc_code_num_lines": 38.0, "qsc_code_num_chars_line_max": 95.0, "qsc_code_num_chars_line_mean": 37.15789474, "qsc_code_frac_chars_alphabet": 0.88352745, "qsc_code_frac_chars_comments": 0.55311615, "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.01901743, "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.0, "qsc_codejava_score_lines_no_logic": 0.41666667, "qsc_codejava_frac_words_no_modifier": 0.0, "qsc_codejava_frac_words_legal_var_name": null, "qsc_codejava_frac_words_legal_func_name": null, "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/windows/WndHero.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.windows; import com.shatteredpixel.shatteredpixeldungeon.Assets; import com.shatteredpixel.shatteredpixeldungeon.Dungeon; import com.shatteredpixel.shatteredpixeldungeon.Statistics; import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Buff; import com.shatteredpixel.shatteredpixeldungeon.actors.hero.Hero; import com.shatteredpixel.shatteredpixeldungeon.input.GameAction; import com.shatteredpixel.shatteredpixeldungeon.messages.Messages; import com.shatteredpixel.shatteredpixeldungeon.scenes.GameScene; import com.shatteredpixel.shatteredpixeldungeon.scenes.PixelScene; import com.shatteredpixel.shatteredpixeldungeon.sprites.HeroSprite; import com.shatteredpixel.shatteredpixeldungeon.ui.BuffIndicator; import com.shatteredpixel.shatteredpixeldungeon.ui.RenderedTextBlock; import com.shatteredpixel.shatteredpixeldungeon.ui.ScrollPane; import com.shatteredpixel.shatteredpixeldungeon.ui.Window; import com.watabou.gltextures.SmartTexture; import com.watabou.gltextures.TextureCache; import com.watabou.input.NoosaInputProcessor; import com.watabou.noosa.Group; import com.watabou.noosa.Image; import com.watabou.noosa.TextureFilm; import com.watabou.noosa.ui.Component; import java.util.ArrayList; import java.util.Locale; public class WndHero extends WndTabbed { private static final int WIDTH = 115; private static final int HEIGHT = 100; private StatsTab stats; private BuffsTab buffs; private SmartTexture icons; private TextureFilm film; public WndHero() { super(); resize( WIDTH, HEIGHT ); icons = TextureCache.get( Assets.BUFFS_LARGE ); film = new TextureFilm( icons, 16, 16 ); stats = new StatsTab(); add( stats ); buffs = new BuffsTab(); add( buffs ); buffs.setRect(0, 0, WIDTH, HEIGHT); buffs.setupList(); add( new LabeledTab( Messages.get(this, "stats") ) { protected void select( boolean value ) { super.select( value ); stats.visible = stats.active = selected; } } ); add( new LabeledTab( Messages.get(this, "buffs") ) { protected void select( boolean value ) { super.select( value ); buffs.visible = buffs.active = selected; } } ); layoutTabs(); select( 0 ); } @Override protected void onKeyUp( NoosaInputProcessor.Key key ) { if (key.action == GameAction.HERO_INFO) { hide(); } else { super.onKeyUp( key ); } } private class StatsTab extends Group { private static final int GAP = 6; private float pos; public StatsTab() { Hero hero = Dungeon.hero; IconTitle title = new IconTitle(); title.icon( HeroSprite.avatar(hero.heroClass, hero.tier()) ); if (hero.givenName().equals(hero.className())) title.label( Messages.get(this, "title", hero.lvl, hero.className() ).toUpperCase( Locale.ENGLISH ) ); else title.label((hero.givenName() + "\n" + Messages.get(this, "title", hero.lvl, hero.className())).toUpperCase(Locale.ENGLISH)); title.color(Window.SHPX_COLOR); title.setRect( 0, 0, WIDTH, 0 ); add(title); pos = title.bottom() + 2*GAP; statSlot( Messages.get(this, "str"), hero.STR() ); if (hero.shielding() > 0) statSlot( Messages.get(this, "health"), hero.HP + "+" + hero.shielding() + "/" + hero.HT ); else statSlot( Messages.get(this, "health"), (hero.HP) + "/" + hero.HT ); statSlot( Messages.get(this, "exp"), hero.exp + "/" + hero.maxExp() ); pos += GAP; statSlot( Messages.get(this, "gold"), Statistics.goldCollected ); statSlot( Messages.get(this, "depth"), Statistics.deepestFloor ); pos += GAP; } private void statSlot( String label, String value ) { RenderedTextBlock txt = PixelScene.renderTextBlock( label, 8 ); txt.setPos(0, pos); add( txt ); txt = PixelScene.renderTextBlock( value, 8 ); txt.setPos(WIDTH * 0.6f, pos); PixelScene.align(txt); add( txt ); pos += GAP + txt.height(); } private void statSlot( String label, int value ) { statSlot( label, Integer.toString( value ) ); } public float height() { return pos; } } private class BuffsTab extends Component { private static final int GAP = 2; private float pos; private ScrollPane buffList; private ArrayList<BuffSlot> slots = new ArrayList<>(); public BuffsTab() { buffList = new ScrollPane( new Component() ){ @Override public void onClick( float x, float y ) { int size = slots.size(); for (int i=0; i < size; i++) { if (slots.get( i ).onClick( x, y )) { break; } } } }; add(buffList); } @Override protected void layout() { super.layout(); buffList.setRect(0, 0, width, height); } private void setupList() { Component content = buffList.content(); for (Buff buff : Dungeon.hero.buffs()) { if (buff.icon() != BuffIndicator.NONE) { BuffSlot slot = new BuffSlot(buff); slot.setRect(0, pos, WIDTH, slot.icon.height()); content.add(slot); slots.add(slot); pos += GAP + slot.height(); } } content.setSize(buffList.width(), pos); buffList.setSize(buffList.width(), buffList.height()); } private class BuffSlot extends Component { private Buff buff; Image icon; RenderedTextBlock txt; public BuffSlot( Buff buff ){ super(); this.buff = buff; int index = buff.icon(); icon = new Image( icons ); icon.frame( film.get( index ) ); buff.tintIcon(icon); icon.y = this.y; add( icon ); txt = PixelScene.renderTextBlock( buff.toString(), 8 ); txt.setPos( icon.width + GAP, this.y + (icon.height - txt.height()) / 2 ); PixelScene.align(txt); add( txt ); } @Override protected void layout() { super.layout(); icon.y = this.y; txt.setPos( icon.width + GAP, this.y + (icon.height - txt.height()) / 2 ); } protected boolean onClick ( float x, float y ) { if (inside( x, y )) { GameScene.show(new WndInfoBuff(buff)); return true; } else { return false; } } } } }
6,855
WndHero
java
en
java
code
{"qsc_code_num_words": 811, "qsc_code_num_chars": 6855.0, "qsc_code_mean_word_length": 5.69667078, "qsc_code_frac_words_unique": 0.27990136, "qsc_code_frac_chars_top_2grams": 0.04090909, "qsc_code_frac_chars_top_3grams": 0.12337662, "qsc_code_frac_chars_top_4grams": 0.13333333, "qsc_code_frac_chars_dupe_5grams": 0.27748918, "qsc_code_frac_chars_dupe_6grams": 0.12683983, "qsc_code_frac_chars_dupe_7grams": 0.08484848, "qsc_code_frac_chars_dupe_8grams": 0.08484848, "qsc_code_frac_chars_dupe_9grams": 0.04761905, "qsc_code_frac_chars_dupe_10grams": 0.04761905, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.00893183, "qsc_code_frac_chars_whitespace": 0.19970824, "qsc_code_size_file_byte": 6855.0, "qsc_code_num_lines": 253.0, "qsc_code_num_chars_line_max": 130.0, "qsc_code_num_chars_line_mean": 27.09486166, "qsc_code_frac_chars_alphabet": 0.83321181, "qsc_code_frac_chars_comments": 0.11393144, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.2, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.00872572, "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.05945946, "qsc_codejava_score_lines_no_logic": 0.27567568, "qsc_codejava_frac_words_no_modifier": 0.73333333, "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/windows/WndBag.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.windows; import com.shatteredpixel.shatteredpixeldungeon.Assets; import com.shatteredpixel.shatteredpixeldungeon.Dungeon; import com.shatteredpixel.shatteredpixeldungeon.SPDSettings; import com.shatteredpixel.shatteredpixeldungeon.actors.hero.Belongings; import com.shatteredpixel.shatteredpixeldungeon.actors.hero.Hero; import com.shatteredpixel.shatteredpixeldungeon.input.GameAction; import com.shatteredpixel.shatteredpixeldungeon.items.EquipableItem; import com.shatteredpixel.shatteredpixeldungeon.items.Gold; import com.shatteredpixel.shatteredpixeldungeon.items.Item; import com.shatteredpixel.shatteredpixeldungeon.items.Recipe; import com.shatteredpixel.shatteredpixeldungeon.items.armor.Armor; 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.food.Food; import com.shatteredpixel.shatteredpixeldungeon.items.potions.Potion; import com.shatteredpixel.shatteredpixeldungeon.items.scrolls.Scroll; import com.shatteredpixel.shatteredpixeldungeon.items.scrolls.ScrollOfRemoveCurse; import com.shatteredpixel.shatteredpixeldungeon.items.scrolls.ScrollOfTransmutation; import com.shatteredpixel.shatteredpixeldungeon.items.spells.Recycle; import com.shatteredpixel.shatteredpixeldungeon.items.wands.Wand; import com.shatteredpixel.shatteredpixeldungeon.items.weapon.SpiritBow; import com.shatteredpixel.shatteredpixeldungeon.items.weapon.melee.MeleeWeapon; import com.shatteredpixel.shatteredpixeldungeon.items.weapon.missiles.MissileWeapon; import com.shatteredpixel.shatteredpixeldungeon.messages.Messages; import com.shatteredpixel.shatteredpixeldungeon.plants.Plant.Seed; import com.shatteredpixel.shatteredpixeldungeon.scenes.PixelScene; import com.shatteredpixel.shatteredpixeldungeon.sprites.ItemSprite; import com.shatteredpixel.shatteredpixeldungeon.sprites.ItemSpriteSheet; import com.shatteredpixel.shatteredpixeldungeon.ui.Icons; import com.shatteredpixel.shatteredpixeldungeon.ui.ItemSlot; import com.shatteredpixel.shatteredpixeldungeon.ui.QuickSlotButton; import com.shatteredpixel.shatteredpixeldungeon.ui.RenderedTextBlock; import com.watabou.gltextures.TextureCache; import com.watabou.input.NoosaInputProcessor; import com.watabou.noosa.BitmapText; import com.watabou.noosa.ColorBlock; import com.watabou.noosa.Game; import com.watabou.noosa.Image; import com.watabou.noosa.audio.Sample; public class WndBag extends WndTabbed { //only one wnditem can appear at a time private static WndBag INSTANCE; //FIXME this is getting cumbersome, there should be a better way to manage this public static enum Mode { ALL, UNIDENTIFED, UNCURSABLE, CURSABLE, UPGRADEABLE, QUICKSLOT, FOR_SALE, WEAPON, ARMOR, ENCHANTABLE, WAND, SEED, FOOD, POTION, SCROLL, UNIDED_POTION_OR_SCROLL, EQUIPMENT, TRANMSUTABLE, ALCHEMY, RECYCLABLE, NOT_EQUIPPED } protected static final int COLS_P = 4; protected static final int COLS_L = 6; protected static final int SLOT_WIDTH = 28; protected static final int SLOT_HEIGHT = 28; protected static final int SLOT_MARGIN = 1; protected static final int TITLE_HEIGHT = 14; private Listener listener; private WndBag.Mode mode; private String title; private int nCols; private int nRows; protected int count; protected int col; protected int row; private static Mode lastMode; private static Bag lastBag; public WndBag( Bag bag, Listener listener, Mode mode, String title ) { super(); if( INSTANCE != null ){ INSTANCE.hide(); } INSTANCE = this; this.listener = listener; this.mode = mode; this.title = title; lastMode = mode; lastBag = bag; nCols = SPDSettings.landscape() ? COLS_L : COLS_P; nRows = (int)Math.ceil((Belongings.BACKPACK_SIZE + 4) / (float)nCols); int slotsWidth = SLOT_WIDTH * nCols + SLOT_MARGIN * (nCols - 1); int slotsHeight = SLOT_HEIGHT * nRows + SLOT_MARGIN * (nRows - 1); placeTitle( bag, slotsWidth ); placeItems( bag ); resize( slotsWidth, slotsHeight + TITLE_HEIGHT ); Belongings stuff = Dungeon.hero.belongings; Bag[] bags = { stuff.backpack, stuff.getItem( VelvetPouch.class ), stuff.getItem( ScrollHolder.class ), stuff.getItem( PotionBandolier.class ), stuff.getItem( MagicalHolster.class )}; for (Bag b : bags) { if (b != null) { BagTab tab = new BagTab( b ); add( tab ); tab.select( b == bag ); } } layoutTabs(); } @Override protected void onKeyUp( NoosaInputProcessor.Key<GameAction> key ) { if (key.action == GameAction.BACKPACK) { hide(); } else { super.onKeyUp( key ); } } public static WndBag lastBag( Listener listener, Mode mode, String title ) { if (mode == lastMode && lastBag != null && Dungeon.hero.belongings.backpack.contains( lastBag )) { return new WndBag( lastBag, listener, mode, title ); } else { return new WndBag( Dungeon.hero.belongings.backpack, listener, mode, title ); } } public static WndBag getBag( Class<? extends Bag> bagClass, Listener listener, Mode mode, String title ) { Bag bag = Dungeon.hero.belongings.getItem( bagClass ); return bag != null ? new WndBag( bag, listener, mode, title ) : lastBag( listener, mode, title ); } protected void placeTitle( Bag bag, int width ){ RenderedTextBlock txtTitle = PixelScene.renderTextBlock( title != null ? Messages.titleCase(title) : Messages.titleCase( bag.name() ), 9 ); txtTitle.hardlight( TITLE_COLOR ); txtTitle.setPos( 1, (TITLE_HEIGHT - txtTitle.height()) / 2f - 1 ); PixelScene.align(txtTitle); add( txtTitle ); ItemSprite gold = new ItemSprite(ItemSpriteSheet.GOLD, null); gold.x = width - gold.width() - 1; gold.y = (TITLE_HEIGHT - gold.height())/2f - 1; PixelScene.align(gold); add(gold); BitmapText amt = new BitmapText( Integer.toString(Dungeon.gold), PixelScene.pixelFont ); amt.hardlight(TITLE_COLOR); amt.measure(); amt.x = width - gold.width() - amt.width() - 2; amt.y = (TITLE_HEIGHT - amt.baseLine())/2f - 1; PixelScene.align(amt); add(amt); } protected void placeItems( Bag container ) { // Equipped items Belongings stuff = Dungeon.hero.belongings; placeItem( stuff.weapon != null ? stuff.weapon : new Placeholder( ItemSpriteSheet.WEAPON_HOLDER ) ); placeItem( stuff.armor != null ? stuff.armor : new Placeholder( ItemSpriteSheet.ARMOR_HOLDER ) ); placeItem( stuff.misc1 != null ? stuff.misc1 : new Placeholder( ItemSpriteSheet.RING_HOLDER ) ); placeItem( stuff.misc2 != null ? stuff.misc2 : new Placeholder( ItemSpriteSheet.RING_HOLDER ) ); // Items in the bag for (Item item : container.items.toArray(new Item[0])) { placeItem( item ); } // Free Space while ((count - 4) < container.size) { placeItem( null ); } } protected void placeItem( final Item item ) { int x = col * (SLOT_WIDTH + SLOT_MARGIN); int y = TITLE_HEIGHT + row * (SLOT_HEIGHT + SLOT_MARGIN); add( new ItemButton( item ).setPos( x, y ) ); if (++col >= nCols) { col = 0; row++; } count++; } @Override public void onMenuPressed() { if (listener == null) { hide(); } } @Override public void onBackPressed() { if (listener != null) { listener.onSelect( null ); } super.onBackPressed(); } @Override protected void onClick( Tab tab ) { hide(); Game.scene().addToFront(new WndBag(((BagTab) tab).bag, listener, mode, title)); } @Override public void hide() { super.hide(); if (INSTANCE == this){ INSTANCE = null; } } @Override protected int tabHeight() { return 20; } private Image icon( Bag bag ) { if (bag instanceof VelvetPouch) { return Icons.get( Icons.SEED_POUCH ); } else if (bag instanceof ScrollHolder) { return Icons.get( Icons.SCROLL_HOLDER ); } else if (bag instanceof MagicalHolster) { return Icons.get( Icons.WAND_HOLSTER ); } else if (bag instanceof PotionBandolier) { return Icons.get( Icons.POTION_BANDOLIER ); } else { return Icons.get( Icons.BACKPACK ); } } private class BagTab extends IconTab { private Bag bag; public BagTab( Bag bag ) { super( icon(bag) ); this.bag = bag; } } public static class Placeholder extends Item { { name = null; } public Placeholder( int image ) { this.image = image; } @Override public boolean isIdentified() { return true; } @Override public boolean isEquipped( Hero hero ) { return true; } } private class ItemButton extends ItemSlot { private static final int NORMAL = 0x9953564D; private static final int EQUIPPED = 0x9991938C; private Item item; private ColorBlock bg; public ItemButton( Item item ) { super( item ); this.item = item; if (item instanceof Gold) { bg.visible = false; } width = SLOT_WIDTH; height = SLOT_HEIGHT; } @Override protected void createChildren() { bg = new ColorBlock( SLOT_WIDTH, SLOT_HEIGHT, NORMAL ); add( bg ); super.createChildren(); } @Override protected void layout() { bg.x = x; bg.y = y; super.layout(); } @Override public void item( Item item ) { super.item( item ); if (item != null) { bg.texture( TextureCache.createSolid( item.isEquipped( Dungeon.hero ) ? EQUIPPED : NORMAL ) ); if (item.cursed && item.cursedKnown) { bg.ra = +0.3f; bg.ga = -0.15f; } else if (!item.isIdentified()) { if ((item instanceof EquipableItem || item instanceof Wand) && item.cursedKnown){ bg.ba = 0.3f; } else { bg.ra = 0.3f; bg.ba = 0.3f; } } if (item.name() == null) { enable( false ); } else { enable( mode == Mode.FOR_SALE && !item.unique && (item.price() > 0) && (!item.isEquipped( Dungeon.hero ) || !item.cursed) || mode == Mode.UPGRADEABLE && item.isUpgradable() || mode == Mode.UNIDENTIFED && !item.isIdentified() || mode == Mode.UNCURSABLE && ScrollOfRemoveCurse.uncursable(item) || mode == Mode.CURSABLE && ((item instanceof EquipableItem && !(item instanceof MissileWeapon)) || item instanceof Wand) || mode == Mode.QUICKSLOT && (item.defaultAction != null) || mode == Mode.WEAPON && (item instanceof MeleeWeapon) || mode == Mode.ARMOR && (item instanceof Armor) || mode == Mode.ENCHANTABLE && (item instanceof MeleeWeapon || item instanceof SpiritBow || item instanceof Armor) || mode == Mode.WAND && (item instanceof Wand) || mode == Mode.SEED && (item instanceof Seed) || mode == Mode.FOOD && (item instanceof Food) || mode == Mode.POTION && (item instanceof Potion) || mode == Mode.SCROLL && (item instanceof Scroll) || mode == Mode.UNIDED_POTION_OR_SCROLL && (!item.isIdentified() && (item instanceof Scroll || item instanceof Potion)) || mode == Mode.EQUIPMENT && (item instanceof EquipableItem || item instanceof Wand) || mode == Mode.ALCHEMY && Recipe.usableInRecipe(item) || mode == Mode.TRANMSUTABLE && ScrollOfTransmutation.canTransmute(item) || mode == Mode.NOT_EQUIPPED && !item.isEquipped(Dungeon.hero) || mode == Mode.RECYCLABLE && Recycle.isRecyclable(item) || mode == Mode.ALL ); } } else { bg.color( NORMAL ); } } @Override protected void onTouchDown() { bg.brightness( 1.5f ); Sample.INSTANCE.play( Assets.SND_CLICK, 0.7f, 0.7f, 1.2f ); } protected void onTouchUp() { bg.brightness( 1.0f ); } @Override protected void onClick() { if (!lastBag.contains(item) && !item.isEquipped(Dungeon.hero)){ hide(); } else if (listener != null) { hide(); listener.onSelect( item ); } else { if (NoosaInputProcessor.modifier) { onLongClick(); } else { Game.scene().addToFront(new WndItem( WndBag.this, item ) ); } } } @Override protected boolean onLongClick() { if (listener == null && item.defaultAction != null) { hide(); Dungeon.quickslot.setSlot( 0 , item ); QuickSlotButton.refresh(); return true; } else { return false; } } } public interface Listener { void onSelect( Item item ); } }
13,364
WndBag
java
en
java
code
{"qsc_code_num_words": 1504, "qsc_code_num_chars": 13364.0, "qsc_code_mean_word_length": 6.12566489, "qsc_code_frac_words_unique": 0.21808511, "qsc_code_frac_chars_top_2grams": 0.04102898, "qsc_code_frac_chars_top_3grams": 0.14848584, "qsc_code_frac_chars_top_4grams": 0.16715511, "qsc_code_frac_chars_dupe_5grams": 0.24704222, "qsc_code_frac_chars_dupe_6grams": 0.11017041, "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.00806452, "qsc_code_frac_chars_whitespace": 0.19275666, "qsc_code_size_file_byte": 13364.0, "qsc_code_num_lines": 478.0, "qsc_code_num_chars_line_max": 128.0, "qsc_code_num_chars_line_mean": 27.958159, "qsc_code_frac_chars_alphabet": 0.84593993, "qsc_code_frac_chars_comments": 0.07093685, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.1046832, "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.00161082, "qsc_code_frac_lines_prompt_comments": 0.00209205, "qsc_code_frac_lines_assert": 0.0, "qsc_codejava_cate_var_zero": 0.0, "qsc_codejava_frac_lines_func_ratio": 0.06336088, "qsc_codejava_score_lines_no_logic": 0.2369146, "qsc_codejava_frac_words_no_modifier": 0.80769231, "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/windows/WndStartGame.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.windows; import com.shatteredpixel.shatteredpixeldungeon.Assets; import com.shatteredpixel.shatteredpixeldungeon.Badges; import com.shatteredpixel.shatteredpixeldungeon.Dungeon; import com.shatteredpixel.shatteredpixeldungeon.GamesInProgress; import com.shatteredpixel.shatteredpixeldungeon.SPDSettings; import com.shatteredpixel.shatteredpixeldungeon.ShatteredPixelDungeon; import com.shatteredpixel.shatteredpixeldungeon.actors.hero.HeroClass; import com.shatteredpixel.shatteredpixeldungeon.actors.hero.HeroSubClass; import com.shatteredpixel.shatteredpixeldungeon.journal.Journal; import com.shatteredpixel.shatteredpixeldungeon.messages.Messages; import com.shatteredpixel.shatteredpixeldungeon.scenes.InterlevelScene; import com.shatteredpixel.shatteredpixeldungeon.scenes.IntroScene; import com.shatteredpixel.shatteredpixeldungeon.scenes.PixelScene; import com.shatteredpixel.shatteredpixeldungeon.sprites.ItemSprite; import com.shatteredpixel.shatteredpixeldungeon.sprites.ItemSpriteSheet; import com.shatteredpixel.shatteredpixeldungeon.ui.ActionIndicator; import com.shatteredpixel.shatteredpixeldungeon.ui.IconButton; import com.shatteredpixel.shatteredpixeldungeon.ui.Icons; import com.shatteredpixel.shatteredpixeldungeon.ui.RedButton; import com.shatteredpixel.shatteredpixeldungeon.ui.RenderedTextBlock; import com.shatteredpixel.shatteredpixeldungeon.ui.Window; import com.watabou.noosa.ColorBlock; import com.watabou.noosa.Game; import com.watabou.noosa.Image; import com.watabou.noosa.ui.Button; import com.watabou.noosa.ui.Component; import com.watabou.utils.DeviceCompat; public class WndStartGame extends Window { private static final int WIDTH = 120; private static final int HEIGHT = 140; public WndStartGame(final int slot){ Badges.loadGlobal(); Journal.loadGlobal(); RenderedTextBlock title = PixelScene.renderTextBlock(Messages.get(this, "title"), 12 ); title.hardlight(Window.TITLE_COLOR); title.setPos( (WIDTH - title.width())/2f, 3); PixelScene.align(title); add(title); float heroBtnSpacing = (WIDTH - 4*HeroBtn.WIDTH)/5f; float curX = heroBtnSpacing; for (HeroClass cl : HeroClass.values()){ HeroBtn button = new HeroBtn(cl); button.setRect(curX, title.height() + 7, HeroBtn.WIDTH, HeroBtn.HEIGHT); curX += HeroBtn.WIDTH + heroBtnSpacing; add(button); } ColorBlock separator = new ColorBlock(1, 1, 0xFF222222); separator.size(WIDTH, 1); separator.x = 0; separator.y = title.bottom() + 6 + HeroBtn.HEIGHT; add(separator); HeroPane ava = new HeroPane(); ava.setRect(20, separator.y + 2, WIDTH-30, 80); add(ava); RedButton start = new RedButton(Messages.get(this, "start")){ @Override protected void onClick() { if (GamesInProgress.selectedClass == null) return; super.onClick(); GamesInProgress.curSlot = slot; Dungeon.hero = null; ActionIndicator.action = null; InterlevelScene.mode = InterlevelScene.Mode.DESCEND; if (SPDSettings.intro()) { SPDSettings.intro( false ); Game.switchScene( IntroScene.class ); } else { Game.switchScene( InterlevelScene.class ); } } @Override public void update() { if( !visible && GamesInProgress.selectedClass != null){ visible = true; } super.update(); } }; start.visible = false; start.setRect(0, HEIGHT - 20, WIDTH, 20); add(start); if (DeviceCompat.isDebug() || Badges.isUnlocked(Badges.Badge.VICTORY)){ IconButton challengeButton = new IconButton( Icons.get( SPDSettings.challenges() > 0 ? Icons.CHALLENGE_ON :Icons.CHALLENGE_OFF)){ @Override protected void onClick() { ShatteredPixelDungeon.scene().add(new WndChallenges(SPDSettings.challenges(), true) { public void onBackPressed() { super.onBackPressed(); icon( Icons.get( SPDSettings.challenges() > 0 ? Icons.CHALLENGE_ON :Icons.CHALLENGE_OFF ) ); } } ); } @Override public void update() { if( !visible && GamesInProgress.selectedClass != null){ visible = true; } super.update(); } }; challengeButton.setRect(WIDTH - 20, HEIGHT - 20, 20, 20); challengeButton.visible = false; add(challengeButton); } else { Dungeon.challenges = 0; SPDSettings.challenges(0); } resize(WIDTH, HEIGHT); } private static class HeroBtn extends Button { private HeroClass cl; private Image hero; private static final int WIDTH = 24; private static final int HEIGHT = 16; HeroBtn ( HeroClass cl ){ super(); this.cl = cl; if (cl == HeroClass.WARRIOR){ hero = new Image(Assets.WARRIOR, 0, 90, 12, 15); } else if (cl == HeroClass.MAGE){ hero = new Image(Assets.MAGE, 0, 90, 12, 15); } else if (cl == HeroClass.ROGUE){ hero = new Image(Assets.ROGUE, 0, 90, 12, 15); } else if (cl == HeroClass.HUNTRESS){ hero = new Image(Assets.HUNTRESS, 0, 90, 12, 15); } add(hero); } @Override protected void layout() { super.layout(); if (hero != null){ hero.x = x + (width - hero.width()) / 2f; hero.y = y + (height - hero.height()) / 2f; PixelScene.align(hero); } } @Override public void update() { super.update(); if (cl != GamesInProgress.selectedClass){ if (!cl.isUnlocked()){ hero.brightness(0.3f); } else { hero.brightness(0.6f); } } else { hero.brightness(1f); } } @Override protected void onClick() { super.onClick(); if( !cl.isUnlocked() ){ ShatteredPixelDungeon.scene().add( new WndMessage(cl.unlockMsg())); } else { GamesInProgress.selectedClass = cl; } } } private class HeroPane extends Component { private HeroClass cl; private Image avatar; private IconButton heroItem; private IconButton heroLoadout; private IconButton heroMisc; private IconButton heroSubclass; private RenderedTextBlock name; private static final int BTN_SIZE = 20; @Override protected void createChildren() { super.createChildren(); avatar = new Image(Assets.AVATARS); avatar.scale.set(2f); add(avatar); heroItem = new IconButton(){ @Override protected void onClick() { if (cl == null) return; ShatteredPixelDungeon.scene().add(new WndMessage(Messages.get(cl, cl.name() + "_desc_item"))); } }; heroItem.setSize(BTN_SIZE, BTN_SIZE); add(heroItem); heroLoadout = new IconButton(){ @Override protected void onClick() { if (cl == null) return; ShatteredPixelDungeon.scene().add(new WndMessage(Messages.get(cl, cl.name() + "_desc_loadout"))); } }; heroLoadout.setSize(BTN_SIZE, BTN_SIZE); add(heroLoadout); heroMisc = new IconButton(){ @Override protected void onClick() { if (cl == null) return; ShatteredPixelDungeon.scene().add(new WndMessage(Messages.get(cl, cl.name() + "_desc_misc"))); } }; heroMisc.setSize(BTN_SIZE, BTN_SIZE); add(heroMisc); heroSubclass = new IconButton(new ItemSprite(ItemSpriteSheet.MASTERY, null)){ @Override protected void onClick() { if (cl == null) return; String msg = Messages.get(cl, cl.name() + "_desc_subclasses"); for (HeroSubClass sub : cl.subClasses()){ msg += "\n\n" + sub.desc(); } ShatteredPixelDungeon.scene().add(new WndMessage(msg)); } }; heroSubclass.setSize(BTN_SIZE, BTN_SIZE); add(heroSubclass); name = PixelScene.renderTextBlock(12); add(name); visible = false; } @Override protected void layout() { super.layout(); avatar.x = x; avatar.y = y + (height - avatar.height() - name.height() - 4)/2f; PixelScene.align(avatar); name.setPos( x + (avatar.width() - name.width())/2f, avatar.y + avatar.height() + 3 ); PixelScene.align(name); heroItem.setPos(x + width - BTN_SIZE, y); heroLoadout.setPos(x + width - BTN_SIZE, heroItem.bottom()); heroMisc.setPos(x + width - BTN_SIZE, heroLoadout.bottom()); heroSubclass.setPos(x + width - BTN_SIZE, heroMisc.bottom()); } @Override public synchronized void update() { super.update(); if (GamesInProgress.selectedClass != cl){ cl = GamesInProgress.selectedClass; if (cl != null) { avatar.frame(cl.ordinal() * 24, 0, 24, 32); name.text(Messages.capitalize(cl.title())); switch(cl){ case WARRIOR: heroItem.icon(new ItemSprite(ItemSpriteSheet.SEAL, null)); heroLoadout.icon(new ItemSprite(ItemSpriteSheet.WORN_SHORTSWORD, null)); heroMisc.icon(new ItemSprite(ItemSpriteSheet.RATION, null)); break; case MAGE: heroItem.icon(new ItemSprite(ItemSpriteSheet.MAGES_STAFF, null)); heroLoadout.icon(new ItemSprite(ItemSpriteSheet.HOLDER, null)); heroMisc.icon(new ItemSprite(ItemSpriteSheet.WAND_MAGIC_MISSILE, null)); break; case ROGUE: heroItem.icon(new ItemSprite(ItemSpriteSheet.ARTIFACT_CLOAK, null)); heroLoadout.icon(new ItemSprite(ItemSpriteSheet.DAGGER, null)); heroMisc.icon(Icons.get(Icons.DEPTH)); break; case HUNTRESS: heroItem.icon(new ItemSprite(ItemSpriteSheet.SPIRIT_BOW, null)); heroLoadout.icon(new ItemSprite(ItemSpriteSheet.GLOVES, null)); heroMisc.icon(new Image(Assets.TILES_SEWERS, 112, 96, 16, 16 )); break; } layout(); visible = true; } else { visible = false; } } } } }
10,353
WndStartGame
java
en
java
code
{"qsc_code_num_words": 1140, "qsc_code_num_chars": 10353.0, "qsc_code_mean_word_length": 6.16403509, "qsc_code_frac_words_unique": 0.23333333, "qsc_code_frac_chars_top_2grams": 0.0345809, "qsc_code_frac_chars_top_3grams": 0.11896969, "qsc_code_frac_chars_top_4grams": 0.13149281, "qsc_code_frac_chars_dupe_5grams": 0.37668991, "qsc_code_frac_chars_dupe_6grams": 0.20165078, "qsc_code_frac_chars_dupe_7grams": 0.11128504, "qsc_code_frac_chars_dupe_8grams": 0.11128504, "qsc_code_frac_chars_dupe_9grams": 0.0950619, "qsc_code_frac_chars_dupe_10grams": 0.0950619, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.01565322, "qsc_code_frac_chars_whitespace": 0.19781706, "qsc_code_size_file_byte": 10353.0, "qsc_code_num_lines": 355.0, "qsc_code_num_chars_line_max": 103.0, "qsc_code_num_chars_line_mean": 29.16338028, "qsc_code_frac_chars_alphabet": 0.83046358, "qsc_code_frac_chars_comments": 0.07543707, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.23381295, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.0065817, "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.00104471, "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.05395683, "qsc_codejava_score_lines_no_logic": 0.19064748, "qsc_codejava_frac_words_no_modifier": 0.82352941, "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/windows/WndChooseWay.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.windows; import com.shatteredpixel.shatteredpixeldungeon.actors.hero.HeroSubClass; import com.shatteredpixel.shatteredpixeldungeon.items.TomeOfMastery; import com.shatteredpixel.shatteredpixeldungeon.messages.Messages; import com.shatteredpixel.shatteredpixeldungeon.scenes.PixelScene; import com.shatteredpixel.shatteredpixeldungeon.sprites.ItemSprite; import com.shatteredpixel.shatteredpixeldungeon.ui.RedButton; import com.shatteredpixel.shatteredpixeldungeon.ui.RenderedTextBlock; import com.shatteredpixel.shatteredpixeldungeon.ui.Window; public class WndChooseWay extends Window { private static final int WIDTH = 120; private static final int BTN_HEIGHT = 18; private static final float GAP = 2; public WndChooseWay( final TomeOfMastery tome, final HeroSubClass way1, final HeroSubClass way2 ) { super(); IconTitle titlebar = new IconTitle(); titlebar.icon( new ItemSprite( tome.image(), null ) ); titlebar.label( tome.name() ); titlebar.setRect( 0, 0, WIDTH, 0 ); add( titlebar ); RenderedTextBlock hl = PixelScene.renderTextBlock( 6 ); hl.text( way1.desc() + "\n\n" + way2.desc() + "\n\n" + Messages.get(this, "message"), WIDTH ); hl.setPos( titlebar.left(), titlebar.bottom() + GAP ); add( hl ); RedButton btnWay1 = new RedButton( way1.title().toUpperCase() ) { @Override protected void onClick() { hide(); tome.choose( way1 ); } }; btnWay1.setRect( 0, hl.bottom() + GAP, (WIDTH - GAP) / 2, BTN_HEIGHT ); add( btnWay1 ); RedButton btnWay2 = new RedButton( way2.title().toUpperCase() ) { @Override protected void onClick() { hide(); tome.choose( way2 ); } }; btnWay2.setRect( btnWay1.right() + GAP, btnWay1.top(), btnWay1.width(), BTN_HEIGHT ); add( btnWay2 ); RedButton btnCancel = new RedButton( Messages.get(this, "cancel") ) { @Override protected void onClick() { hide(); } }; btnCancel.setRect( 0, btnWay2.bottom() + GAP, WIDTH, BTN_HEIGHT ); add( btnCancel ); resize( WIDTH, (int)btnCancel.bottom() ); } }
2,876
WndChooseWay
java
en
java
code
{"qsc_code_num_words": 348, "qsc_code_num_chars": 2876.0, "qsc_code_mean_word_length": 5.92816092, "qsc_code_frac_words_unique": 0.44252874, "qsc_code_frac_chars_top_2grams": 0.07416384, "qsc_code_frac_chars_top_3grams": 0.16577799, "qsc_code_frac_chars_top_4grams": 0.1706253, "qsc_code_frac_chars_dupe_5grams": 0.178381, "qsc_code_frac_chars_dupe_6grams": 0.08337373, "qsc_code_frac_chars_dupe_7grams": 0.05622879, "qsc_code_frac_chars_dupe_8grams": 0.05622879, "qsc_code_frac_chars_dupe_9grams": 0.05622879, "qsc_code_frac_chars_dupe_10grams": 0.0, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.0201005, "qsc_code_frac_chars_whitespace": 0.16968011, "qsc_code_size_file_byte": 2876.0, "qsc_code_num_lines": 84.0, "qsc_code_num_chars_line_max": 101.0, "qsc_code_num_chars_line_mean": 34.23809524, "qsc_code_frac_chars_alphabet": 0.84380235, "qsc_code_frac_chars_comments": 0.27155772, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.22641509, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.01002387, "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.05660377, "qsc_codejava_score_lines_no_logic": 0.22641509, "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/sprites/AcidicSprite.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.sprites; import com.shatteredpixel.shatteredpixeldungeon.Assets; import com.watabou.noosa.TextureFilm; public class AcidicSprite extends ScorpioSprite { public AcidicSprite() { super(); texture( Assets.SCORPIO ); TextureFilm frames = new TextureFilm( texture, 18, 17 ); idle = new Animation( 12, true ); idle.frames( frames, 14, 14, 14, 14, 14, 14, 14, 14, 15, 16, 15, 16, 15, 16 ); run = new Animation( 4, true ); run.frames( frames, 19, 20 ); attack = new Animation( 15, false ); attack.frames( frames, 14, 17, 18 ); zap = attack.clone(); die = new Animation( 12, false ); die.frames( frames, 14, 21, 22, 23, 24 ); play( idle ); } @Override public int blood() { return 0xFF66FF22; } }
1,581
AcidicSprite
java
en
java
code
{"qsc_code_num_words": 221, "qsc_code_num_chars": 1581.0, "qsc_code_mean_word_length": 4.97285068, "qsc_code_frac_words_unique": 0.56561086, "qsc_code_frac_chars_top_2grams": 0.02547771, "qsc_code_frac_chars_top_3grams": 0.03275705, "qsc_code_frac_chars_top_4grams": 0.03639672, "qsc_code_frac_chars_dupe_5grams": 0.08917197, "qsc_code_frac_chars_dupe_6grams": 0.0655141, "qsc_code_frac_chars_dupe_7grams": 0.01455869, "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.0645933, "qsc_code_frac_chars_whitespace": 0.20683112, "qsc_code_size_file_byte": 1581.0, "qsc_code_num_lines": 56.0, "qsc_code_num_chars_line_max": 81.0, "qsc_code_num_chars_line_mean": 28.23214286, "qsc_code_frac_chars_alphabet": 0.81180223, "qsc_code_frac_chars_comments": 0.49399114, "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.0125, "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.04166667, "qsc_codejava_score_lines_no_logic": 0.20833333, "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/sprites/SwarmSprite.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.sprites; import com.shatteredpixel.shatteredpixeldungeon.Assets; import com.watabou.noosa.TextureFilm; public class SwarmSprite extends MobSprite { public SwarmSprite() { super(); texture( Assets.SWARM ); TextureFilm frames = new TextureFilm( texture, 16, 16 ); idle = new Animation( 15, true ); idle.frames( frames, 0, 1, 2, 3, 4, 5 ); run = new Animation( 15, true ); run.frames( frames, 0, 1, 2, 3, 4, 5 ); attack = new Animation( 20, false ); attack.frames( frames, 6, 7, 8, 9 ); die = new Animation( 15, false ); die.frames( frames, 10, 11, 12, 13, 14 ); play( idle ); } @Override public int blood() { return 0xFF8BA077; } }
1,519
SwarmSprite
java
en
java
code
{"qsc_code_num_words": 215, "qsc_code_num_chars": 1519.0, "qsc_code_mean_word_length": 4.91162791, "qsc_code_frac_words_unique": 0.59069767, "qsc_code_frac_chars_top_2grams": 0.04545455, "qsc_code_frac_chars_top_3grams": 0.03693182, "qsc_code_frac_chars_top_4grams": 0.05397727, "qsc_code_frac_chars_dupe_5grams": 0.11174242, "qsc_code_frac_chars_dupe_6grams": 0.08712121, "qsc_code_frac_chars_dupe_7grams": 0.03409091, "qsc_code_frac_chars_dupe_8grams": 0.03409091, "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.04987531, "qsc_code_frac_chars_whitespace": 0.2080316, "qsc_code_size_file_byte": 1519.0, "qsc_code_num_lines": 54.0, "qsc_code_num_chars_line_max": 72.0, "qsc_code_num_chars_line_mean": 28.12962963, "qsc_code_frac_chars_alphabet": 0.82793017, "qsc_code_frac_chars_comments": 0.51415405, "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.01355014, "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.2173913, "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/sprites/BruteSprite.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.sprites; import com.shatteredpixel.shatteredpixeldungeon.Assets; import com.watabou.noosa.TextureFilm; public class BruteSprite extends MobSprite { public BruteSprite() { super(); texture( Assets.BRUTE ); TextureFilm frames = new TextureFilm( texture, 12, 16 ); idle = new Animation( 2, true ); idle.frames( frames, 0, 0, 0, 1, 0, 0, 1, 1 ); run = new Animation( 12, true ); run.frames( frames, 4, 5, 6, 7 ); attack = new Animation( 12, false ); attack.frames( frames, 2, 3, 0 ); die = new Animation( 12, false ); die.frames( frames, 8, 9, 10 ); play( idle ); } }
1,446
BruteSprite
java
en
java
code
{"qsc_code_num_words": 206, "qsc_code_num_chars": 1446.0, "qsc_code_mean_word_length": 4.90291262, "qsc_code_frac_words_unique": 0.56796117, "qsc_code_frac_chars_top_2grams": 0.04752475, "qsc_code_frac_chars_top_3grams": 0.03861386, "qsc_code_frac_chars_top_4grams": 0.05643564, "qsc_code_frac_chars_dupe_5grams": 0.08118812, "qsc_code_frac_chars_dupe_6grams": 0.05544554, "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.04094077, "qsc_code_frac_chars_whitespace": 0.20608575, "qsc_code_size_file_byte": 1446.0, "qsc_code_num_lines": 49.0, "qsc_code_num_chars_line_max": 72.0, "qsc_code_num_chars_line_mean": 29.51020408, "qsc_code_frac_chars_alphabet": 0.83885017, "qsc_code_frac_chars_comments": 0.54011065, "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.15789474, "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/sprites/SeniorSprite.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.sprites; import com.shatteredpixel.shatteredpixeldungeon.Assets; import com.watabou.noosa.TextureFilm; import com.watabou.utils.Random; public class SeniorSprite extends MobSprite { private Animation kick; public SeniorSprite() { super(); texture( Assets.MONK ); TextureFilm frames = new TextureFilm( texture, 15, 14 ); idle = new Animation( 6, true ); idle.frames( frames, 18, 17, 18, 19 ); run = new Animation( 15, true ); run.frames( frames, 28, 29, 30, 31, 32, 33 ); attack = new Animation( 12, false ); attack.frames( frames, 20, 21, 20, 21 ); kick = new Animation( 10, false ); kick.frames( frames, 22, 23, 22 ); die = new Animation( 15, false ); die.frames( frames, 18, 24, 25, 25, 26, 27 ); play( idle ); } @Override public void attack( int cell ) { super.attack( cell ); if (Random.Float() < 0.3f) { play( kick ); } } @Override public void onComplete( Animation anim ) { super.onComplete( anim == kick ? attack : anim ); } }
1,847
SeniorSprite
java
en
java
code
{"qsc_code_num_words": 255, "qsc_code_num_chars": 1847.0, "qsc_code_mean_word_length": 4.97254902, "qsc_code_frac_words_unique": 0.54901961, "qsc_code_frac_chars_top_2grams": 0.04731861, "qsc_code_frac_chars_top_3grams": 0.0307571, "qsc_code_frac_chars_top_4grams": 0.04495268, "qsc_code_frac_chars_dupe_5grams": 0.06466877, "qsc_code_frac_chars_dupe_6grams": 0.04416404, "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.05346127, "qsc_code_frac_chars_whitespace": 0.21007038, "qsc_code_size_file_byte": 1847.0, "qsc_code_num_lines": 68.0, "qsc_code_num_chars_line_max": 72.0, "qsc_code_num_chars_line_mean": 27.16176471, "qsc_code_frac_chars_alphabet": 0.81562714, "qsc_code_frac_chars_comments": 0.42284786, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.05882353, "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.20588235, "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/sprites/AlbinoSprite.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.sprites; import com.shatteredpixel.shatteredpixeldungeon.Assets; import com.watabou.noosa.TextureFilm; public class AlbinoSprite extends MobSprite { public AlbinoSprite() { super(); texture( Assets.RAT ); TextureFilm frames = new TextureFilm( texture, 16, 15 ); idle = new Animation( 2, true ); idle.frames( frames, 16, 16, 16, 17 ); run = new Animation( 10, true ); run.frames( frames, 22, 23, 24, 25, 26 ); attack = new Animation( 15, false ); attack.frames( frames, 18, 19, 20, 21 ); die = new Animation( 10, false ); die.frames( frames, 27, 28, 29, 30 ); play( idle ); } }
1,458
AlbinoSprite
java
en
java
code
{"qsc_code_num_words": 205, "qsc_code_num_chars": 1458.0, "qsc_code_mean_word_length": 5.0, "qsc_code_frac_words_unique": 0.6, "qsc_code_frac_chars_top_2grams": 0.04682927, "qsc_code_frac_chars_top_3grams": 0.03804878, "qsc_code_frac_chars_top_4grams": 0.05560976, "qsc_code_frac_chars_dupe_5grams": 0.08, "qsc_code_frac_chars_dupe_6grams": 0.05463415, "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.05335628, "qsc_code_frac_chars_whitespace": 0.20301783, "qsc_code_size_file_byte": 1458.0, "qsc_code_num_lines": 49.0, "qsc_code_num_chars_line_max": 72.0, "qsc_code_num_chars_line_mean": 29.75510204, "qsc_code_frac_chars_alphabet": 0.82874355, "qsc_code_frac_chars_comments": 0.53566529, "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.15789474, "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/sprites/SlimeSprite.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.sprites; import com.shatteredpixel.shatteredpixeldungeon.Assets; import com.watabou.noosa.TextureFilm; public class SlimeSprite extends MobSprite { public SlimeSprite() { super(); texture( Assets.SLIME ); TextureFilm frames = new TextureFilm( texture, 14, 12 ); idle = new Animation( 3, true ); idle.frames( frames, 0, 1, 1, 0 ); run = new Animation( 10, true ); run.frames( frames, 0, 2, 3, 3, 2, 0 ); attack = new Animation( 15, false ); attack.frames( frames, 2, 3, 4, 6, 5 ); die = new Animation( 10, false ); die.frames( frames, 0, 5, 6, 7 ); play(idle); } }
1,448
SlimeSprite
java
en
java
code
{"qsc_code_num_words": 207, "qsc_code_num_chars": 1448.0, "qsc_code_mean_word_length": 4.87922705, "qsc_code_frac_words_unique": 0.56038647, "qsc_code_frac_chars_top_2grams": 0.04752475, "qsc_code_frac_chars_top_3grams": 0.03861386, "qsc_code_frac_chars_top_4grams": 0.05643564, "qsc_code_frac_chars_dupe_5grams": 0.08118812, "qsc_code_frac_chars_dupe_6grams": 0.05544554, "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.04090513, "qsc_code_frac_chars_whitespace": 0.20649171, "qsc_code_size_file_byte": 1448.0, "qsc_code_num_lines": 51.0, "qsc_code_num_chars_line_max": 72.0, "qsc_code_num_chars_line_mean": 28.39215686, "qsc_code_frac_chars_alphabet": 0.8381201, "qsc_code_frac_chars_comments": 0.53867403, "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.15789474, "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/sprites/ItemSpriteSheet.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.sprites; import com.shatteredpixel.shatteredpixeldungeon.Assets; import com.watabou.noosa.TextureFilm; public class ItemSpriteSheet { private static final int WIDTH = 16; public static TextureFilm film = new TextureFilm( Assets.ITEMS, 16, 16 ); private static int xy(int x, int y){ x -= 1; y -= 1; return x + WIDTH*y; } private static final int PLACEHOLDERS = xy(1, 1); //16 slots //SOMETHING is the default item sprite at position 0. May show up ingame if there are bugs. public static final int SOMETHING = PLACEHOLDERS+0; public static final int WEAPON_HOLDER = PLACEHOLDERS+1; public static final int ARMOR_HOLDER = PLACEHOLDERS+2; public static final int MISSILE_HOLDER = PLACEHOLDERS+3; public static final int WAND_HOLDER = PLACEHOLDERS+4; public static final int RING_HOLDER = PLACEHOLDERS+5; public static final int ARTIFACT_HOLDER = PLACEHOLDERS+6; public static final int FOOD_HOLDER = PLACEHOLDERS+7; public static final int BOMB_HOLDER = PLACEHOLDERS+8; public static final int POTION_HOLDER = PLACEHOLDERS+9; public static final int SCROLL_HOLDER = PLACEHOLDERS+11; public static final int SEED_HOLDER = PLACEHOLDERS+10; public static final int STONE_HOLDER = PLACEHOLDERS+12; public static final int CATA_HOLDER = PLACEHOLDERS+13; public static final int ELIXIR_HOLDER = PLACEHOLDERS+14; public static final int SPELL_HOLDER = PLACEHOLDERS+15; static{ assignItemRect(SOMETHING, 8, 13); assignItemRect(WEAPON_HOLDER, 14, 14); assignItemRect(ARMOR_HOLDER, 14, 12); assignItemRect(MISSILE_HOLDER, 15, 15); assignItemRect(WAND_HOLDER, 14, 14); assignItemRect(RING_HOLDER, 8, 10); assignItemRect(ARTIFACT_HOLDER, 15, 15); assignItemRect(FOOD_HOLDER, 15, 11); assignItemRect(BOMB_HOLDER, 10, 13); assignItemRect(POTION_HOLDER, 12, 14); assignItemRect(SEED_HOLDER, 10, 10); assignItemRect(SCROLL_HOLDER, 15, 14); assignItemRect(STONE_HOLDER, 14, 12); assignItemRect(CATA_HOLDER, 6, 15); assignItemRect(ELIXIR_HOLDER, 12, 14); assignItemRect(SPELL_HOLDER, 8, 16); } private static final int UNCOLLECTIBLE = xy(1, 2); //16 slots public static final int GOLD = UNCOLLECTIBLE+0; public static final int DEWDROP = UNCOLLECTIBLE+1; public static final int PETAL = UNCOLLECTIBLE+2; public static final int SANDBAG = UNCOLLECTIBLE+3; public static final int SPIRIT_ARROW = UNCOLLECTIBLE+4; public static final int GUIDE_PAGE = UNCOLLECTIBLE+6; public static final int ALCH_PAGE = UNCOLLECTIBLE+7; public static final int TENGU_BOMB = UNCOLLECTIBLE+9; public static final int TENGU_SHOCKER = UNCOLLECTIBLE+10; static{ assignItemRect(GOLD, 15, 13); assignItemRect(DEWDROP, 10, 10); assignItemRect(PETAL, 8, 8); assignItemRect(SANDBAG, 10, 10); assignItemRect(SPIRIT_ARROW,11, 11); assignItemRect(GUIDE_PAGE, 10, 11); assignItemRect(ALCH_PAGE, 10, 11); assignItemRect(TENGU_BOMB, 10, 10); assignItemRect(TENGU_SHOCKER, 10, 10); } private static final int CONTAINERS = xy(1, 3); //16 slots public static final int BONES = CONTAINERS+0; public static final int REMAINS = CONTAINERS+1; public static final int TOMB = CONTAINERS+2; public static final int GRAVE = CONTAINERS+3; public static final int CHEST = CONTAINERS+4; public static final int LOCKED_CHEST = CONTAINERS+5; public static final int CRYSTAL_CHEST = CONTAINERS+6; public static final int EBONY_CHEST = CONTAINERS+7; static{ assignItemRect(BONES, 14, 11); assignItemRect(REMAINS, 14, 11); assignItemRect(TOMB, 14, 15); assignItemRect(GRAVE, 14, 15); assignItemRect(CHEST, 16, 14); assignItemRect(LOCKED_CHEST, 16, 14); assignItemRect(CRYSTAL_CHEST, 16, 14); assignItemRect(EBONY_CHEST, 16, 14); } private static final int SINGLE_USE = xy(1, 4); //16 slots public static final int ANKH = SINGLE_USE+0; public static final int STYLUS = SINGLE_USE+1; public static final int SEAL = SINGLE_USE+3; public static final int TORCH = SINGLE_USE+4; public static final int BEACON = SINGLE_USE+5; public static final int HONEYPOT = SINGLE_USE+7; public static final int SHATTPOT = SINGLE_USE+8; public static final int IRON_KEY = SINGLE_USE+9; public static final int GOLDEN_KEY = SINGLE_USE+10; public static final int CRYSTAL_KEY = SINGLE_USE+11; public static final int SKELETON_KEY = SINGLE_USE+12; public static final int MASTERY = SINGLE_USE+13; public static final int KIT = SINGLE_USE+14; public static final int AMULET = SINGLE_USE+15; static{ assignItemRect(ANKH, 10, 16); assignItemRect(STYLUS, 12, 13); assignItemRect(SEAL, 9, 15); assignItemRect(TORCH, 12, 15); assignItemRect(BEACON, 16, 15); assignItemRect(HONEYPOT, 14, 12); assignItemRect(SHATTPOT, 14, 12); assignItemRect(IRON_KEY, 8, 14); assignItemRect(GOLDEN_KEY, 8, 14); assignItemRect(CRYSTAL_KEY, 8, 14); assignItemRect(SKELETON_KEY, 8, 14); assignItemRect(MASTERY, 13, 16); assignItemRect(KIT, 16, 15); assignItemRect(AMULET, 16, 16); } private static final int BOMBS = xy(1, 5); //16 slots public static final int BOMB = BOMBS+0; public static final int DBL_BOMB = BOMBS+1; public static final int FIRE_BOMB = BOMBS+2; public static final int FROST_BOMB = BOMBS+3; public static final int REGROWTH_BOMB = BOMBS+4; public static final int FLASHBANG = BOMBS+5; public static final int SHOCK_BOMB = BOMBS+6; public static final int HOLY_BOMB = BOMBS+7; public static final int WOOLY_BOMB = BOMBS+8; public static final int NOISEMAKER = BOMBS+9; public static final int ARCANE_BOMB = BOMBS+10; public static final int SHRAPNEL_BOMB = BOMBS+11; static{ assignItemRect(BOMB, 10, 13); assignItemRect(DBL_BOMB, 14, 13); assignItemRect(FIRE_BOMB, 13, 12); assignItemRect(FROST_BOMB, 13, 12); assignItemRect(REGROWTH_BOMB, 13, 12); assignItemRect(FLASHBANG, 13, 12); assignItemRect(SHOCK_BOMB, 10, 13); assignItemRect(HOLY_BOMB, 10, 13); assignItemRect(WOOLY_BOMB, 10, 13); assignItemRect(NOISEMAKER, 10, 13); assignItemRect(ARCANE_BOMB, 10, 13); assignItemRect(SHRAPNEL_BOMB, 10, 13); } //16 free slots private static final int WEP_TIER1 = xy(1, 7); //8 slots public static final int WORN_SHORTSWORD = WEP_TIER1+0; public static final int CUDGEL = WEP_TIER1+1; public static final int GLOVES = WEP_TIER1+2; public static final int RAPIER = WEP_TIER1+3; public static final int DAGGER = WEP_TIER1+4; public static final int MAGES_STAFF = WEP_TIER1+5; static{ assignItemRect(WORN_SHORTSWORD, 13, 13); assignItemRect(GLOVES, 12, 16); assignItemRect(DAGGER, 12, 13); assignItemRect(MAGES_STAFF, 15, 16); } private static final int WEP_TIER2 = xy(9, 7); //8 slots public static final int SHORTSWORD = WEP_TIER2+0; public static final int HAND_AXE = WEP_TIER2+1; public static final int SPEAR = WEP_TIER2+2; public static final int QUARTERSTAFF = WEP_TIER2+3; public static final int DIRK = WEP_TIER2+4; static{ assignItemRect(SHORTSWORD, 13, 13); assignItemRect(HAND_AXE, 12, 14); assignItemRect(SPEAR, 16, 16); assignItemRect(QUARTERSTAFF, 16, 16); assignItemRect(DIRK, 13, 14); } private static final int WEP_TIER3 = xy(1, 8); //8 slots public static final int SWORD = WEP_TIER3+0; public static final int MACE = WEP_TIER3+1; public static final int SCIMITAR = WEP_TIER3+2; public static final int ROUND_SHIELD = WEP_TIER3+3; public static final int SAI = WEP_TIER3+4; public static final int WHIP = WEP_TIER3+5; static{ assignItemRect(SWORD, 14, 14); assignItemRect(MACE, 15, 15); assignItemRect(SCIMITAR, 13, 16); assignItemRect(ROUND_SHIELD, 16, 16); assignItemRect(SAI, 16, 16); assignItemRect(WHIP, 14, 14); } private static final int WEP_TIER4 = xy(9, 8); //8 slots public static final int LONGSWORD = WEP_TIER4+0; public static final int BATTLE_AXE = WEP_TIER4+1; public static final int FLAIL = WEP_TIER4+2; public static final int RUNIC_BLADE = WEP_TIER4+3; public static final int ASSASSINS_BLADE = WEP_TIER4+4; public static final int CROSSBOW = WEP_TIER4+5; static{ assignItemRect(LONGSWORD, 15, 15); assignItemRect(BATTLE_AXE, 16, 16); assignItemRect(FLAIL, 14, 14); assignItemRect(RUNIC_BLADE, 14, 14); assignItemRect(ASSASSINS_BLADE, 14, 15); assignItemRect(CROSSBOW, 15, 15); } private static final int WEP_TIER5 = xy(1, 9); //8 slots public static final int GREATSWORD = WEP_TIER5+0; public static final int WAR_HAMMER = WEP_TIER5+1; public static final int GLAIVE = WEP_TIER5+2; public static final int GREATAXE = WEP_TIER5+3; public static final int GREATSHIELD = WEP_TIER5+4; public static final int GAUNTLETS = WEP_TIER5+5; static{ assignItemRect(GREATSWORD, 16, 16); assignItemRect(WAR_HAMMER, 16, 16); assignItemRect(GLAIVE, 16, 16); assignItemRect(GREATAXE, 12, 16); assignItemRect(GREATSHIELD, 12, 16); assignItemRect(GAUNTLETS, 13, 15); } //8 free slots private static final int MISSILE_WEP = xy(1, 10); //16 slots. 3 per tier + boomerang public static final int SPIRIT_BOW = MISSILE_WEP+0; public static final int DART = MISSILE_WEP+1; public static final int THROWING_KNIFE = MISSILE_WEP+2; public static final int THROWING_STONE = MISSILE_WEP+3; public static final int FISHING_SPEAR = MISSILE_WEP+4; public static final int SHURIKEN = MISSILE_WEP+5; public static final int THROWING_CLUB = MISSILE_WEP+6; public static final int THROWING_SPEAR = MISSILE_WEP+7; public static final int BOLAS = MISSILE_WEP+8; public static final int KUNAI = MISSILE_WEP+9; public static final int JAVELIN = MISSILE_WEP+10; public static final int TOMAHAWK = MISSILE_WEP+11; public static final int BOOMERANG = MISSILE_WEP+12; public static final int TRIDENT = MISSILE_WEP+13; public static final int THROWING_HAMMER = MISSILE_WEP+14; public static final int FORCE_CUBE = MISSILE_WEP+15; static{ assignItemRect(SPIRIT_BOW, 16, 16); assignItemRect(DART, 15, 15); assignItemRect(THROWING_KNIFE, 12, 13); assignItemRect(THROWING_STONE, 12, 10); assignItemRect(FISHING_SPEAR, 11, 11); assignItemRect(SHURIKEN, 12, 12); assignItemRect(THROWING_CLUB, 12, 12); assignItemRect(THROWING_SPEAR, 13, 13); assignItemRect(BOLAS, 15, 14); assignItemRect(KUNAI, 15, 15); assignItemRect(JAVELIN, 16, 16); assignItemRect(TOMAHAWK, 13, 13); assignItemRect(BOOMERANG, 14, 14); assignItemRect(TRIDENT, 16, 16); assignItemRect(THROWING_HAMMER, 12, 12); assignItemRect(FORCE_CUBE, 11, 12); } public static final int TIPPED_DARTS = xy(1, 11); //16 slots public static final int ROT_DART = TIPPED_DARTS+0; public static final int INCENDIARY_DART = TIPPED_DARTS+1; public static final int ADRENALINE_DART = TIPPED_DARTS+2; public static final int HEALING_DART = TIPPED_DARTS+3; public static final int CHILLING_DART = TIPPED_DARTS+4; public static final int SHOCKING_DART = TIPPED_DARTS+5; public static final int POISON_DART = TIPPED_DARTS+6; public static final int SLEEP_DART = TIPPED_DARTS+7; public static final int PARALYTIC_DART = TIPPED_DARTS+8; public static final int HOLY_DART = TIPPED_DARTS+9; public static final int DISPLACING_DART = TIPPED_DARTS+10; public static final int BLINDING_DART = TIPPED_DARTS+11; static { for (int i = TIPPED_DARTS; i < TIPPED_DARTS+16; i++) assignItemRect(i, 15, 15); } private static final int ARMOR = xy(1, 12); //16 slots public static final int ARMOR_CLOTH = ARMOR+0; public static final int ARMOR_LEATHER = ARMOR+1; public static final int ARMOR_MAIL = ARMOR+2; public static final int ARMOR_SCALE = ARMOR+3; public static final int ARMOR_PLATE = ARMOR+4; public static final int ARMOR_WARRIOR = ARMOR+5; public static final int ARMOR_MAGE = ARMOR+6; public static final int ARMOR_ROGUE = ARMOR+7; public static final int ARMOR_HUNTRESS = ARMOR+8; static{ assignItemRect(ARMOR_CLOTH, 15, 12); assignItemRect(ARMOR_LEATHER, 14, 13); assignItemRect(ARMOR_MAIL, 14, 12); assignItemRect(ARMOR_SCALE, 14, 11); assignItemRect(ARMOR_PLATE, 12, 12); assignItemRect(ARMOR_WARRIOR, 12, 12); assignItemRect(ARMOR_MAGE, 15, 15); assignItemRect(ARMOR_ROGUE, 14, 12); assignItemRect(ARMOR_HUNTRESS, 13, 15); } //16 free slots private static final int WANDS = xy(1, 14); //16 slots public static final int WAND_MAGIC_MISSILE = WANDS+0; public static final int WAND_FIREBOLT = WANDS+1; public static final int WAND_FROST = WANDS+2; public static final int WAND_LIGHTNING = WANDS+3; public static final int WAND_DISINTEGRATION = WANDS+4; public static final int WAND_PRISMATIC_LIGHT= WANDS+5; public static final int WAND_CORROSION = WANDS+6; public static final int WAND_LIVING_EARTH = WANDS+7; public static final int WAND_BLAST_WAVE = WANDS+8; public static final int WAND_CORRUPTION = WANDS+9; public static final int WAND_WARDING = WANDS+10; public static final int WAND_REGROWTH = WANDS+11; public static final int WAND_TRANSFUSION = WANDS+12; static { for (int i = WANDS; i < WANDS+16; i++) assignItemRect(i, 14, 14); } private static final int RINGS = xy(1, 15); //16 slots public static final int RING_GARNET = RINGS+0; public static final int RING_RUBY = RINGS+1; public static final int RING_TOPAZ = RINGS+2; public static final int RING_EMERALD = RINGS+3; public static final int RING_ONYX = RINGS+4; public static final int RING_OPAL = RINGS+5; public static final int RING_TOURMALINE = RINGS+6; public static final int RING_SAPPHIRE = RINGS+7; public static final int RING_AMETHYST = RINGS+8; public static final int RING_QUARTZ = RINGS+9; public static final int RING_AGATE = RINGS+10; public static final int RING_DIAMOND = RINGS+11; static { for (int i = RINGS; i < RINGS+16; i++) assignItemRect(i, 8, 10); } private static final int ARTIFACTS = xy(1, 16); //32 slots public static final int ARTIFACT_CLOAK = ARTIFACTS+0; public static final int ARTIFACT_ARMBAND = ARTIFACTS+1; public static final int ARTIFACT_CAPE = ARTIFACTS+2; public static final int ARTIFACT_TALISMAN = ARTIFACTS+3; public static final int ARTIFACT_HOURGLASS = ARTIFACTS+4; public static final int ARTIFACT_TOOLKIT = ARTIFACTS+5; public static final int ARTIFACT_SPELLBOOK = ARTIFACTS+6; public static final int ARTIFACT_BEACON = ARTIFACTS+7; public static final int ARTIFACT_CHAINS = ARTIFACTS+8; public static final int ARTIFACT_HORN1 = ARTIFACTS+9; public static final int ARTIFACT_HORN2 = ARTIFACTS+10; public static final int ARTIFACT_HORN3 = ARTIFACTS+11; public static final int ARTIFACT_HORN4 = ARTIFACTS+12; public static final int ARTIFACT_CHALICE1 = ARTIFACTS+13; public static final int ARTIFACT_CHALICE2 = ARTIFACTS+14; public static final int ARTIFACT_CHALICE3 = ARTIFACTS+15; public static final int ARTIFACT_SANDALS = ARTIFACTS+16; public static final int ARTIFACT_SHOES = ARTIFACTS+17; public static final int ARTIFACT_BOOTS = ARTIFACTS+18; public static final int ARTIFACT_GREAVES = ARTIFACTS+19; public static final int ARTIFACT_ROSE1 = ARTIFACTS+20; public static final int ARTIFACT_ROSE2 = ARTIFACTS+21; public static final int ARTIFACT_ROSE3 = ARTIFACTS+22; static{ assignItemRect(ARTIFACT_CLOAK, 9, 15); assignItemRect(ARTIFACT_ARMBAND, 16, 13); assignItemRect(ARTIFACT_CAPE, 16, 14); assignItemRect(ARTIFACT_TALISMAN, 15, 13); assignItemRect(ARTIFACT_HOURGLASS, 13, 16); assignItemRect(ARTIFACT_TOOLKIT, 15, 13); assignItemRect(ARTIFACT_SPELLBOOK, 13, 16); assignItemRect(ARTIFACT_BEACON, 16, 16); assignItemRect(ARTIFACT_CHAINS, 16, 16); assignItemRect(ARTIFACT_HORN1, 15, 15); assignItemRect(ARTIFACT_HORN2, 15, 15); assignItemRect(ARTIFACT_HORN3, 15, 15); assignItemRect(ARTIFACT_HORN4, 15, 15); assignItemRect(ARTIFACT_CHALICE1, 12, 15); assignItemRect(ARTIFACT_CHALICE2, 12, 15); assignItemRect(ARTIFACT_CHALICE3, 12, 15); assignItemRect(ARTIFACT_SANDALS, 16, 6 ); assignItemRect(ARTIFACT_SHOES, 16, 6 ); assignItemRect(ARTIFACT_BOOTS, 16, 9 ); assignItemRect(ARTIFACT_GREAVES, 16, 14); assignItemRect(ARTIFACT_ROSE1, 14, 14); assignItemRect(ARTIFACT_ROSE2, 14, 14); assignItemRect(ARTIFACT_ROSE3, 14, 14); } //16 free slots private static final int SCROLLS = xy(1, 19); //16 slots public static final int SCROLL_KAUNAN = SCROLLS+0; public static final int SCROLL_SOWILO = SCROLLS+1; public static final int SCROLL_LAGUZ = SCROLLS+2; public static final int SCROLL_YNGVI = SCROLLS+3; public static final int SCROLL_GYFU = SCROLLS+4; public static final int SCROLL_RAIDO = SCROLLS+5; public static final int SCROLL_ISAZ = SCROLLS+6; public static final int SCROLL_MANNAZ = SCROLLS+7; public static final int SCROLL_NAUDIZ = SCROLLS+8; public static final int SCROLL_BERKANAN = SCROLLS+9; public static final int SCROLL_ODAL = SCROLLS+10; public static final int SCROLL_TIWAZ = SCROLLS+11; public static final int SCROLL_CATALYST = SCROLLS+13; static { for (int i = SCROLLS; i < SCROLLS+16; i++) assignItemRect(i, 15, 14); assignItemRect(SCROLL_CATALYST, 12, 11); } private static final int EXOTIC_SCROLLS = xy(1, 20); //16 slots public static final int EXOTIC_KAUNAN = EXOTIC_SCROLLS+0; public static final int EXOTIC_SOWILO = EXOTIC_SCROLLS+1; public static final int EXOTIC_LAGUZ = EXOTIC_SCROLLS+2; public static final int EXOTIC_YNGVI = EXOTIC_SCROLLS+3; public static final int EXOTIC_GYFU = EXOTIC_SCROLLS+4; public static final int EXOTIC_RAIDO = EXOTIC_SCROLLS+5; public static final int EXOTIC_ISAZ = EXOTIC_SCROLLS+6; public static final int EXOTIC_MANNAZ = EXOTIC_SCROLLS+7; public static final int EXOTIC_NAUDIZ = EXOTIC_SCROLLS+8; public static final int EXOTIC_BERKANAN = EXOTIC_SCROLLS+9; public static final int EXOTIC_ODAL = EXOTIC_SCROLLS+10; public static final int EXOTIC_TIWAZ = EXOTIC_SCROLLS+11; static { for (int i = EXOTIC_SCROLLS; i < EXOTIC_SCROLLS+16; i++) assignItemRect(i, 15, 14); } private static final int STONES = xy(1, 21); //16 slots public static final int STONE_AGGRESSION = STONES+0; public static final int STONE_AUGMENTATION = STONES+1; public static final int STONE_AFFECTION = STONES+2; public static final int STONE_BLAST = STONES+3; public static final int STONE_BLINK = STONES+4; public static final int STONE_CLAIRVOYANCE = STONES+5; public static final int STONE_SLEEP = STONES+6; public static final int STONE_DISARM = STONES+7; public static final int STONE_ENCHANT = STONES+8; public static final int STONE_FLOCK = STONES+9; public static final int STONE_INTUITION = STONES+10; public static final int STONE_SHOCK = STONES+11; static { for (int i = STONES; i < STONES+16; i++) assignItemRect(i, 14, 12); } private static final int POTIONS = xy(1, 22); //16 slots public static final int POTION_CRIMSON = POTIONS+0; public static final int POTION_AMBER = POTIONS+1; public static final int POTION_GOLDEN = POTIONS+2; public static final int POTION_JADE = POTIONS+3; public static final int POTION_TURQUOISE= POTIONS+4; public static final int POTION_AZURE = POTIONS+5; public static final int POTION_INDIGO = POTIONS+6; public static final int POTION_MAGENTA = POTIONS+7; public static final int POTION_BISTRE = POTIONS+8; public static final int POTION_CHARCOAL = POTIONS+9; public static final int POTION_SILVER = POTIONS+10; public static final int POTION_IVORY = POTIONS+11; public static final int POTION_CATALYST = POTIONS+13; static { for (int i = POTIONS; i < POTIONS+16; i++) assignItemRect(i, 12, 14); assignItemRect(POTION_CATALYST, 6, 15); } private static final int EXOTIC_POTIONS = xy(1, 23); //16 slots public static final int EXOTIC_CRIMSON = EXOTIC_POTIONS+0; public static final int EXOTIC_AMBER = EXOTIC_POTIONS+1; public static final int EXOTIC_GOLDEN = EXOTIC_POTIONS+2; public static final int EXOTIC_JADE = EXOTIC_POTIONS+3; public static final int EXOTIC_TURQUOISE= EXOTIC_POTIONS+4; public static final int EXOTIC_AZURE = EXOTIC_POTIONS+5; public static final int EXOTIC_INDIGO = EXOTIC_POTIONS+6; public static final int EXOTIC_MAGENTA = EXOTIC_POTIONS+7; public static final int EXOTIC_BISTRE = EXOTIC_POTIONS+8; public static final int EXOTIC_CHARCOAL = EXOTIC_POTIONS+9; public static final int EXOTIC_SILVER = EXOTIC_POTIONS+10; public static final int EXOTIC_IVORY = EXOTIC_POTIONS+11; static { for (int i = EXOTIC_POTIONS; i < EXOTIC_POTIONS+16; i++) assignItemRect(i, 12, 13); } private static final int SEEDS = xy(1, 24); //16 slots public static final int SEED_ROTBERRY = SEEDS+0; public static final int SEED_FIREBLOOM = SEEDS+1; public static final int SEED_SWIFTTHISTLE = SEEDS+2; public static final int SEED_SUNGRASS = SEEDS+3; public static final int SEED_ICECAP = SEEDS+4; public static final int SEED_STORMVINE = SEEDS+5; public static final int SEED_SORROWMOSS = SEEDS+6; public static final int SEED_DREAMFOIL = SEEDS+7; public static final int SEED_EARTHROOT = SEEDS+8; public static final int SEED_STARFLOWER = SEEDS+9; public static final int SEED_FADELEAF = SEEDS+10; public static final int SEED_BLINDWEED = SEEDS+11; static{ for (int i = SEEDS; i < SEEDS+16; i++) assignItemRect(i, 10, 10); } private static final int BREWS = xy(1, 25); //8 slots public static final int BREW_INFERNAL = BREWS+0; public static final int BREW_BLIZZARD = BREWS+1; public static final int BREW_SHOCKING = BREWS+2; public static final int BREW_CAUSTIC = BREWS+3; private static final int ELIXIRS = xy(9, 25); //8 slots public static final int ELIXIR_HONEY = ELIXIRS+0; public static final int ELIXIR_AQUA = ELIXIRS+1; public static final int ELIXIR_MIGHT = ELIXIRS+2; public static final int ELIXIR_DRAGON = ELIXIRS+3; public static final int ELIXIR_TOXIC = ELIXIRS+4; public static final int ELIXIR_ICY = ELIXIRS+5; public static final int ELIXIR_ARCANE = ELIXIRS+6; static{ for (int i = BREWS; i < BREWS+16; i++) assignItemRect(i, 12, 14); } //16 free slots private static final int SPELLS = xy(1, 27); //16 slots public static final int MAGIC_PORTER = SPELLS+0; public static final int PHASE_SHIFT = SPELLS+1; public static final int WILD_ENERGY = SPELLS+2; public static final int RETURN_BEACON = SPELLS+3; public static final int AQUA_BLAST = SPELLS+5; public static final int FEATHER_FALL = SPELLS+6; public static final int RECLAIM_TRAP = SPELLS+7; public static final int CURSE_INFUSE = SPELLS+9; public static final int MAGIC_INFUSE = SPELLS+10; public static final int ALCHEMIZE = SPELLS+11; public static final int RECYCLE = SPELLS+12; static{ assignItemRect(MAGIC_PORTER, 12, 11); assignItemRect(PHASE_SHIFT, 12, 11); assignItemRect(WILD_ENERGY, 8, 16); assignItemRect(RETURN_BEACON, 8, 16); assignItemRect(AQUA_BLAST, 11, 11); assignItemRect(FEATHER_FALL, 11, 11); assignItemRect(RECLAIM_TRAP, 11, 11); assignItemRect(CURSE_INFUSE, 10, 15); assignItemRect(MAGIC_INFUSE, 10, 15); assignItemRect(ALCHEMIZE, 10, 15); assignItemRect(RECYCLE, 10, 15); } private static final int FOOD = xy(1, 28); //16 slots public static final int MEAT = FOOD+0; public static final int STEAK = FOOD+1; public static final int STEWED = FOOD+2; public static final int OVERPRICED = FOOD+3; public static final int CARPACCIO = FOOD+4; public static final int RATION = FOOD+5; public static final int PASTY = FOOD+6; public static final int PUMPKIN_PIE = FOOD+7; public static final int CANDY_CANE = FOOD+8; public static final int MEAT_PIE = FOOD+9; public static final int BLANDFRUIT = FOOD+10; public static final int BLAND_CHUNKS= FOOD+11; static{ assignItemRect(MEAT, 15, 11); assignItemRect(STEAK, 15, 11); assignItemRect(STEWED, 15, 11); assignItemRect(OVERPRICED, 14, 11); assignItemRect(CARPACCIO, 15, 11); assignItemRect(RATION, 16, 12); assignItemRect(PASTY, 16, 11); assignItemRect(PUMPKIN_PIE, 16, 12); assignItemRect(CANDY_CANE, 13, 16); assignItemRect(MEAT_PIE, 16, 12); assignItemRect(BLANDFRUIT, 9, 12); assignItemRect(BLAND_CHUNKS,14, 6); } private static final int QUEST = xy(1, 29); //32 slots public static final int SKULL = QUEST+0; public static final int DUST = QUEST+1; public static final int CANDLE = QUEST+2; public static final int EMBER = QUEST+3; public static final int PICKAXE = QUEST+4; public static final int ORE = QUEST+5; public static final int TOKEN = QUEST+6; public static final int BLOB = QUEST+7; public static final int SHARD = QUEST+8; static{ assignItemRect(SKULL, 16, 11); assignItemRect(DUST, 12, 11); assignItemRect(CANDLE, 12, 12); assignItemRect(EMBER, 12, 11); assignItemRect(PICKAXE, 14, 14); assignItemRect(ORE, 15, 15); assignItemRect(TOKEN, 12, 12); assignItemRect(BLOB, 10, 9); assignItemRect(SHARD, 8, 10); } private static final int BAGS = xy(1, 31); //16 slots public static final int VIAL = BAGS+0; public static final int POUCH = BAGS+1; public static final int HOLDER = BAGS+2; public static final int BANDOLIER = BAGS+3; public static final int HOLSTER = BAGS+4; static{ assignItemRect(VIAL, 12, 12); assignItemRect(POUCH, 14, 15); assignItemRect(HOLDER, 16, 16); assignItemRect(BANDOLIER, 15, 16); assignItemRect(HOLSTER, 15, 16); } //16 free slots private static void assignItemRect( int item, int width, int height){ int x = (item % WIDTH) * WIDTH; int y = (item / WIDTH) * WIDTH; film.add( item, x, y, x+width, y+height); } }
29,769
ItemSpriteSheet
java
en
java
code
{"qsc_code_num_words": 3856, "qsc_code_num_chars": 29769.0, "qsc_code_mean_word_length": 4.98340249, "qsc_code_frac_words_unique": 0.11696058, "qsc_code_frac_chars_top_2grams": 0.18547044, "qsc_code_frac_chars_top_3grams": 0.23605329, "qsc_code_frac_chars_top_4grams": 0.3080766, "qsc_code_frac_chars_dupe_5grams": 0.45066611, "qsc_code_frac_chars_dupe_6grams": 0.15788926, "qsc_code_frac_chars_dupe_7grams": 0.02185679, "qsc_code_frac_chars_dupe_8grams": 0.00353872, "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.05925554, "qsc_code_frac_chars_whitespace": 0.26359636, "qsc_code_size_file_byte": 29769.0, "qsc_code_num_lines": 681.0, "qsc_code_num_chars_line_max": 120.0, "qsc_code_num_chars_line_mean": 43.71365639, "qsc_code_frac_chars_alphabet": 0.81730682, "qsc_code_frac_chars_comments": 0.04225873, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.05290102, "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.00341297, "qsc_codejava_score_lines_no_logic": 0.00853242, "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/sprites/GnollTricksterSprite.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.sprites; import com.shatteredpixel.shatteredpixeldungeon.Assets; import com.shatteredpixel.shatteredpixeldungeon.Dungeon; import com.shatteredpixel.shatteredpixeldungeon.items.weapon.missiles.darts.ParalyticDart; import com.watabou.noosa.MovieClip; import com.watabou.noosa.TextureFilm; import com.watabou.utils.Callback; public class GnollTricksterSprite extends MobSprite { private Animation cast; public GnollTricksterSprite() { super(); texture( Assets.GNOLL ); TextureFilm frames = new TextureFilm( texture, 12, 15 ); idle = new MovieClip.Animation( 2, true ); idle.frames( frames, 21, 21, 21, 22, 21, 21, 22, 22 ); run = new MovieClip.Animation( 12, true ); run.frames( frames, 25, 26, 27, 28 ); attack = new MovieClip.Animation( 12, false ); attack.frames( frames, 23, 24, 21 ); cast = attack.clone(); die = new MovieClip.Animation( 12, false ); die.frames( frames, 29, 30, 31 ); play( idle ); } @Override public void attack( int cell ) { if (!Dungeon.level.adjacent(cell, ch.pos)) { ((MissileSprite)parent.recycle( MissileSprite.class )). reset( ch.pos, cell, new ParalyticDart(), new Callback() { @Override public void call() { ch.onAttackComplete(); } } ); play( cast ); turnTo( ch.pos , cell ); } else { super.attack( cell ); } } }
2,177
GnollTricksterSprite
java
en
java
code
{"qsc_code_num_words": 282, "qsc_code_num_chars": 2177.0, "qsc_code_mean_word_length": 5.44680851, "qsc_code_frac_words_unique": 0.5177305, "qsc_code_frac_chars_top_2grams": 0.03515625, "qsc_code_frac_chars_top_3grams": 0.09895833, "qsc_code_frac_chars_top_4grams": 0.03710938, "qsc_code_frac_chars_dupe_5grams": 0.08984375, "qsc_code_frac_chars_dupe_6grams": 0.03645833, "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.03626062, "qsc_code_frac_chars_whitespace": 0.18925126, "qsc_code_size_file_byte": 2177.0, "qsc_code_num_lines": 79.0, "qsc_code_num_chars_line_max": 91.0, "qsc_code_num_chars_line_mean": 27.55696203, "qsc_code_frac_chars_alphabet": 0.83399433, "qsc_code_frac_chars_comments": 0.35875057, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.04878049, "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.04878049, "qsc_codejava_score_lines_no_logic": 0.24390244, "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/sprites/ItemSprite.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.sprites; import com.shatteredpixel.shatteredpixeldungeon.Assets; import com.shatteredpixel.shatteredpixeldungeon.Dungeon; import com.shatteredpixel.shatteredpixeldungeon.effects.CellEmitter; import com.shatteredpixel.shatteredpixeldungeon.effects.Speck; import com.shatteredpixel.shatteredpixeldungeon.items.Gold; import com.shatteredpixel.shatteredpixeldungeon.items.Heap; import com.shatteredpixel.shatteredpixeldungeon.items.Item; import com.shatteredpixel.shatteredpixeldungeon.levels.Terrain; import com.shatteredpixel.shatteredpixeldungeon.scenes.GameScene; import com.shatteredpixel.shatteredpixeldungeon.tiles.DungeonTilemap; import com.watabou.gltextures.SmartTexture; import com.watabou.gltextures.TextureCache; import com.watabou.glwrap.Matrix; import com.watabou.glwrap.Vertexbuffer; import com.watabou.noosa.Game; import com.watabou.noosa.MovieClip; import com.watabou.noosa.NoosaScript; import com.watabou.noosa.audio.Sample; import com.watabou.noosa.particles.Emitter; import com.watabou.utils.PointF; import com.watabou.utils.Random; public class ItemSprite extends MovieClip { public static final int SIZE = 16; private static final float DROP_INTERVAL = 0.4f; public Heap heap; private Glowing glowing; //FIXME: a lot of this emitter functionality isn't very well implemented. //right now I want to ship 0.3.0, but should refactor in the future. protected Emitter emitter; private float phase; private boolean glowUp; private float dropInterval; //the amount the sprite is raised from flat when viewed in a raised perspective protected float perspectiveRaise = 5 / 16f; //5 pixels //the width and height of the shadow are a percentage of sprite size //offset is the number of pixels the shadow is moved down or up (handy for some animations) protected boolean renderShadow = false; protected float shadowWidth = 1f; protected float shadowHeight = 0.25f; protected float shadowOffset = 0.5f; public ItemSprite() { this( ItemSpriteSheet.SOMETHING, null ); } public ItemSprite( Heap heap ){ super(Assets.ITEMS); view( heap ); } public ItemSprite( Item item ) { super(Assets.ITEMS); view( item ); } public ItemSprite( int image ){ this( image, null ); } public ItemSprite( int image, Glowing glowing ) { super( Assets.ITEMS ); view(image, glowing); } public void originToCenter() { origin.set(width / 2, height / 2); } public void link() { link(heap); } public void link( Heap heap ) { this.heap = heap; view(heap); renderShadow = true; place(heap.pos); } @Override public void revive() { super.revive(); speed.set( 0 ); acc.set( 0 ); dropInterval = 0; heap = null; if (emitter != null) { emitter.killAndErase(); emitter = null; } } public void visible(boolean value){ this.visible = value; if (emitter != null && !visible){ emitter.killAndErase(); emitter = null; } } public PointF worldToCamera( int cell ) { final int csize = DungeonTilemap.SIZE; return new PointF( cell % Dungeon.level.width() * csize + (csize - width()) * 0.5f, cell / Dungeon.level.width() * csize + (csize - height()) - csize * perspectiveRaise ); } public void place( int p ) { if (Dungeon.level != null) { point(worldToCamera(p)); shadowOffset = 0.5f; } } public void drop() { if (heap.isEmpty()) { return; } else if (heap.size() == 1){ // normally this would happen for any heap, however this is not applied to heaps greater than 1 in size // in order to preserve an amusing visual bug/feature that used to trigger for heaps with size > 1 // where as long as the player continually taps, the heap sails up into the air. place(heap.pos); } dropInterval = DROP_INTERVAL; speed.set( 0, -100 ); acc.set(0, -speed.y / DROP_INTERVAL * 2); if (heap != null && heap.seen && heap.peek() instanceof Gold) { CellEmitter.center( heap.pos ).burst( Speck.factory( Speck.COIN ), 5 ); Sample.INSTANCE.play( Assets.SND_GOLD, 1, 1, Random.Float( 0.9f, 1.1f ) ); } } public void drop( int from ) { if (heap.pos == from) { drop(); } else { float px = x; float py = y; drop(); place(from); speed.offset((px - x) / DROP_INTERVAL, (py - y) / DROP_INTERVAL); } } public ItemSprite view( Item item ){ view(item.image(), item.glowing()); Emitter emitter = item.emitter(); if (emitter != null && parent != null) { emitter.pos( this ); parent.add( emitter ); this.emitter = emitter; } return this; } public ItemSprite view( Heap heap ){ if (heap.size() <= 0 || heap.items == null){ return view( 0, null ); } switch (heap.type) { case HEAP: case FOR_SALE: return view( heap.peek() ); case CHEST: case MIMIC: return view( ItemSpriteSheet.CHEST, null ); case LOCKED_CHEST: return view( ItemSpriteSheet.LOCKED_CHEST, null ); case CRYSTAL_CHEST: return view( ItemSpriteSheet.CRYSTAL_CHEST, null ); case TOMB: return view( ItemSpriteSheet.TOMB, null ); case SKELETON: return view( ItemSpriteSheet.BONES, null ); case REMAINS: return view( ItemSpriteSheet.REMAINS, null ); default: return view( 0, null ); } } public ItemSprite view( int image, Glowing glowing ) { if (this.emitter != null) this.emitter.killAndErase(); emitter = null; frame( image ); glow( glowing ); return this; } public void frame( int image ){ frame( ItemSpriteSheet.film.get( image )); float height = ItemSpriteSheet.film.height( image ); //adds extra raise to very short items, so they are visible if (height < 8f){ perspectiveRaise = (5 + 8 - height) / 16f; } } public synchronized void glow( Glowing glowing ){ this.glowing = glowing; if (glowing == null) resetColor(); } @Override public void kill() { super.kill(); if (emitter != null) emitter.killAndErase(); emitter = null; } private float[] shadowMatrix = new float[16]; @Override protected void updateMatrix() { super.updateMatrix(); Matrix.copy(matrix, shadowMatrix); Matrix.translate(shadowMatrix, (width() * (1f - shadowWidth)) / 2f, (height() * (1f - shadowHeight)) + shadowOffset); Matrix.scale(shadowMatrix, shadowWidth, shadowHeight); } @Override public void draw() { if (texture == null || (!dirty && buffer == null)) return; if (renderShadow) { if (dirty) { verticesBuffer.position(0); verticesBuffer.put(vertices); if (buffer == null) buffer = new Vertexbuffer(verticesBuffer); else buffer.updateVertices(verticesBuffer); dirty = false; } NoosaScript script = script(); texture.bind(); script.camera(camera()); updateMatrix(); script.uModel.valueM4(shadowMatrix); script.lighting( 0, 0, 0, am * .6f, 0, 0, 0, aa * .6f); script.drawQuad(buffer); } super.draw(); } @Override public synchronized void update() { super.update(); visible = (heap == null || heap.seen); if (dropInterval > 0){ shadowOffset -= speed.y * Game.elapsed * 0.8f; if ((dropInterval -= Game.elapsed) <= 0){ speed.set(0); acc.set(0); shadowOffset = 0.25f; place(heap.pos); if (visible) { boolean water = Dungeon.level.water[heap.pos]; if (water) { GameScene.ripple(heap.pos); } else { int cell = Dungeon.level.map[heap.pos]; water = (cell == Terrain.WELL || cell == Terrain.ALCHEMY); } if (!(heap.peek() instanceof Gold)) { Sample.INSTANCE.play(water ? Assets.SND_WATER : Assets.SND_STEP, 0.8f, 0.8f, 1.2f); } } } } if (visible && glowing != null) { if (glowUp && (phase += Game.elapsed) > glowing.period) { glowUp = false; phase = glowing.period; } else if (!glowUp && (phase -= Game.elapsed) < 0) { glowUp = true; phase = 0; } float value = phase / glowing.period * 0.6f; rm = gm = bm = 1 - value; ra = glowing.red * value; ga = glowing.green * value; ba = glowing.blue * value; } } public static int pick( int index, int x, int y ) { SmartTexture tx = TextureCache.get( Assets.ITEMS ); int rows = tx.width / SIZE; int row = index / rows; int col = index % rows; return tx.getPixel( col * SIZE + x, row * SIZE + y ); } public static class Glowing { public int color; public float red; public float green; public float blue; public float period; public Glowing( int color ) { this( color, 1f ); } public Glowing( int color, float period ) { this.color = color; red = (color >> 16) / 255f; green = ((color >> 8) & 0xFF) / 255f; blue = (color & 0xFF) / 255f; this.period = period; } } }
9,574
ItemSprite
java
en
java
code
{"qsc_code_num_words": 1196, "qsc_code_num_chars": 9574.0, "qsc_code_mean_word_length": 5.31187291, "qsc_code_frac_words_unique": 0.28428094, "qsc_code_frac_chars_top_2grams": 0.02974972, "qsc_code_frac_chars_top_3grams": 0.06579569, "qsc_code_frac_chars_top_4grams": 0.06925862, "qsc_code_frac_chars_dupe_5grams": 0.09460098, "qsc_code_frac_chars_dupe_6grams": 0.0371478, "qsc_code_frac_chars_dupe_7grams": 0.01353691, "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.01557093, "qsc_code_frac_chars_whitespace": 0.21516607, "qsc_code_size_file_byte": 9574.0, "qsc_code_num_lines": 390.0, "qsc_code_num_chars_line_max": 107.0, "qsc_code_num_chars_line_mean": 24.54871795, "qsc_code_frac_chars_alphabet": 0.82991749, "qsc_code_frac_chars_comments": 0.15771882, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.11702128, "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.00099206, "qsc_code_frac_lines_prompt_comments": 0.0025641, "qsc_code_frac_lines_assert": 0.0, "qsc_codejava_cate_var_zero": 0.0, "qsc_codejava_frac_lines_func_ratio": 0.09219858, "qsc_codejava_score_lines_no_logic": 0.22340426, "qsc_codejava_frac_words_no_modifier": 0.62962963, "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/sprites/NecromancerSprite.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.sprites; import com.shatteredpixel.shatteredpixeldungeon.Assets; import com.shatteredpixel.shatteredpixeldungeon.actors.mobs.Necromancer; import com.watabou.noosa.TextureFilm; public class NecromancerSprite extends MobSprite { private Animation charging; public NecromancerSprite(){ super(); texture( Assets.NECRO ); TextureFilm film = new TextureFilm( texture, 16, 16 ); idle = new Animation( 1, true ); idle.frames( film, 0, 0, 0, 1, 0, 0, 0, 0, 1 ); run = new Animation( 8, true ); run.frames( film, 0, 0, 0, 2, 3, 4 ); zap = new Animation( 10, false ); zap.frames( film, 5, 6, 7, 8 ); charging = new Animation( 5, true ); charging.frames( film, 7, 8 ); die = new Animation( 10, false ); die.frames( film, 9, 10, 11, 12 ); attack = zap.clone(); idle(); } public void charge(){ play(charging); } @Override public void onComplete(Animation anim) { super.onComplete(anim); if (anim == zap){ if (ch instanceof Necromancer){ if (((Necromancer) ch).summoning){ charge(); } else { ((Necromancer)ch).onZapComplete(); idle(); } } else { idle(); } } } }
1,998
NecromancerSprite
java
en
java
code
{"qsc_code_num_words": 266, "qsc_code_num_chars": 1998.0, "qsc_code_mean_word_length": 5.07518797, "qsc_code_frac_words_unique": 0.5112782, "qsc_code_frac_chars_top_2grams": 0.01037037, "qsc_code_frac_chars_top_3grams": 0.00888889, "qsc_code_frac_chars_top_4grams": 0.04222222, "qsc_code_frac_chars_dupe_5grams": 0.08, "qsc_code_frac_chars_dupe_6grams": 0.04148148, "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.03562341, "qsc_code_frac_chars_whitespace": 0.21321321, "qsc_code_size_file_byte": 1998.0, "qsc_code_num_lines": 78.0, "qsc_code_num_chars_line_max": 73.0, "qsc_code_num_chars_line_mean": 25.61538462, "qsc_code_frac_chars_alphabet": 0.82315522, "qsc_code_frac_chars_comments": 0.39039039, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.11627907, "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.04651163, "qsc_codejava_score_lines_no_logic": 0.1627907, "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/sprites/HeroSprite.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.sprites; import com.shatteredpixel.shatteredpixeldungeon.Assets; import com.shatteredpixel.shatteredpixeldungeon.Dungeon; import com.shatteredpixel.shatteredpixeldungeon.actors.hero.Hero; import com.shatteredpixel.shatteredpixeldungeon.actors.hero.HeroClass; import com.shatteredpixel.shatteredpixeldungeon.scenes.PixelScene; import com.watabou.gltextures.SmartTexture; import com.watabou.gltextures.TextureCache; import com.watabou.noosa.Camera; import com.watabou.noosa.Image; import com.watabou.noosa.TextureFilm; import com.watabou.utils.Callback; import com.watabou.utils.PointF; import com.watabou.utils.RectF; public class HeroSprite extends CharSprite { private static final int FRAME_WIDTH = 12; private static final int FRAME_HEIGHT = 15; private static final int RUN_FRAMERATE = 20; private static TextureFilm tiers; private Animation fly; private Animation read; public HeroSprite() { super(); texture( Dungeon.hero.heroClass.spritesheet() ); updateArmor(); link( Dungeon.hero ); if (ch.isAlive()) idle(); else die(); } public void updateArmor() { TextureFilm film = new TextureFilm( tiers(), Dungeon.hero.tier(), FRAME_WIDTH, FRAME_HEIGHT ); idle = new Animation( 1, true ); idle.frames( film, 0, 0, 0, 1, 0, 0, 1, 1 ); run = new Animation( RUN_FRAMERATE, true ); run.frames( film, 2, 3, 4, 5, 6, 7 ); die = new Animation( 20, false ); die.frames( film, 8, 9, 10, 11, 12, 11 ); attack = new Animation( 15, false ); attack.frames( film, 13, 14, 15, 0 ); zap = attack.clone(); operate = new Animation( 8, false ); operate.frames( film, 16, 17, 16, 17 ); fly = new Animation( 1, true ); fly.frames( film, 18 ); read = new Animation( 20, false ); read.frames( film, 19, 20, 20, 20, 20, 20, 20, 20, 20, 19 ); if (Dungeon.hero.isAlive()) idle(); else die(); } @Override public void place( int p ) { super.place( p ); Camera.main.panTo(center(), 5f); } @Override public void move( int from, int to ) { super.move( from, to ); if (ch.flying) { play( fly ); } Camera.main.panFollow(this, 20f); } @Override public void jump( int from, int to, Callback callback ) { super.jump( from, to, callback ); play( fly ); } public void read() { animCallback = new Callback() { @Override public void call() { idle(); ch.onOperateComplete(); } }; play( read ); } @Override public void bloodBurstA(PointF from, int damage) { //Does nothing. /* * This is both for visual clarity, and also for content ratings regarding violence * towards human characters. The heroes are the only human or human-like characters which * participate in combat, so removing all blood associated with them is a simple way to * reduce the violence rating of the game. */ } @Override public void update() { sleeping = ch.isAlive() && ((Hero)ch).resting; super.update(); } public void sprint( float speed ) { run.delay = 1f / speed / RUN_FRAMERATE; } public static TextureFilm tiers() { if (tiers == null) { SmartTexture texture = TextureCache.get( Assets.ROGUE ); tiers = new TextureFilm( texture, texture.width, FRAME_HEIGHT ); } return tiers; } public static Image avatar( HeroClass cl, int armorTier ) { RectF patch = tiers().get( armorTier ); Image avatar = new Image( cl.spritesheet() ); RectF frame = avatar.texture.uvRect( 1, 0, FRAME_WIDTH, FRAME_HEIGHT ); frame.shift( patch.left, patch.top ); avatar.frame( frame ); return avatar; } }
4,398
HeroSprite
java
en
java
code
{"qsc_code_num_words": 585, "qsc_code_num_chars": 4398.0, "qsc_code_mean_word_length": 5.17606838, "qsc_code_frac_words_unique": 0.39487179, "qsc_code_frac_chars_top_2grams": 0.03863937, "qsc_code_frac_chars_top_3grams": 0.04227213, "qsc_code_frac_chars_top_4grams": 0.07265522, "qsc_code_frac_chars_dupe_5grams": 0.08520476, "qsc_code_frac_chars_dupe_6grams": 0.05944518, "qsc_code_frac_chars_dupe_7grams": 0.00528402, "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.02806122, "qsc_code_frac_chars_whitespace": 0.19781719, "qsc_code_size_file_byte": 4398.0, "qsc_code_num_lines": 170.0, "qsc_code_num_chars_line_max": 97.0, "qsc_code_num_chars_line_mean": 25.87058824, "qsc_code_frac_chars_alphabet": 0.83021542, "qsc_code_frac_chars_comments": 0.25397908, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.13888889, "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.10185185, "qsc_codejava_score_lines_no_logic": 0.27777778, "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/sprites/BanditSprite.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.sprites; import com.shatteredpixel.shatteredpixeldungeon.Assets; import com.watabou.noosa.TextureFilm; public class BanditSprite extends MobSprite { public BanditSprite() { super(); texture( Assets.THIEF ); TextureFilm film = new TextureFilm( texture, 12, 13 ); idle = new Animation( 1, true ); idle.frames( film, 21, 21, 21, 22, 21, 21, 21, 21, 22 ); run = new Animation( 15, true ); run.frames( film, 21, 21, 23, 24, 24, 25 ); die = new Animation( 10, false ); die.frames( film, 25, 27, 28, 29, 30 ); attack = new Animation( 12, false ); attack.frames( film, 31, 32, 33 ); idle(); } }
1,466
BanditSprite
java
en
java
code
{"qsc_code_num_words": 210, "qsc_code_num_chars": 1466.0, "qsc_code_mean_word_length": 4.88095238, "qsc_code_frac_words_unique": 0.58095238, "qsc_code_frac_chars_top_2grams": 0.02341463, "qsc_code_frac_chars_top_3grams": 0.03804878, "qsc_code_frac_chars_top_4grams": 0.05560976, "qsc_code_frac_chars_dupe_5grams": 0.08, "qsc_code_frac_chars_dupe_6grams": 0.05463415, "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.06335616, "qsc_code_frac_chars_whitespace": 0.20327422, "qsc_code_size_file_byte": 1466.0, "qsc_code_num_lines": 48.0, "qsc_code_num_chars_line_max": 72.0, "qsc_code_num_chars_line_mean": 30.54166667, "qsc_code_frac_chars_alphabet": 0.81421233, "qsc_code_frac_chars_comments": 0.53274216, "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.15789474, "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/sprites/ShamanSprite.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.sprites; import com.shatteredpixel.shatteredpixeldungeon.Assets; import com.shatteredpixel.shatteredpixeldungeon.actors.Actor; import com.shatteredpixel.shatteredpixeldungeon.actors.Char; import com.shatteredpixel.shatteredpixeldungeon.actors.mobs.Shaman; import com.shatteredpixel.shatteredpixeldungeon.effects.Lightning; import com.watabou.noosa.TextureFilm; import com.watabou.noosa.audio.Sample; public class ShamanSprite extends MobSprite { public ShamanSprite() { super(); texture( Assets.SHAMAN ); TextureFilm frames = new TextureFilm( texture, 12, 15 ); idle = new Animation( 2, true ); idle.frames( frames, 0, 0, 0, 1, 0, 0, 1, 1 ); run = new Animation( 12, true ); run.frames( frames, 4, 5, 6, 7 ); attack = new Animation( 12, false ); attack.frames( frames, 2, 3, 0 ); zap = attack.clone(); die = new Animation( 12, false ); die.frames( frames, 8, 9, 10 ); play( idle ); } public void zap( int pos ) { Char enemy = Actor.findChar(pos); if (enemy != null) { parent.add(new Lightning(center(), enemy.sprite.destinationCenter(), (Shaman) ch)); } else { parent.add(new Lightning(center(), pos, (Shaman) ch)); } Sample.INSTANCE.play( Assets.SND_LIGHTNING ); turnTo( ch.pos, pos ); play( zap ); } }
2,120
ShamanSprite
java
en
java
code
{"qsc_code_num_words": 284, "qsc_code_num_chars": 2120.0, "qsc_code_mean_word_length": 5.29929577, "qsc_code_frac_words_unique": 0.50352113, "qsc_code_frac_chars_top_2grams": 0.04186047, "qsc_code_frac_chars_top_3grams": 0.15149502, "qsc_code_frac_chars_top_4grams": 0.1461794, "qsc_code_frac_chars_dupe_5grams": 0.19003322, "qsc_code_frac_chars_dupe_6grams": 0.0372093, "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.02710496, "qsc_code_frac_chars_whitespace": 0.18207547, "qsc_code_size_file_byte": 2120.0, "qsc_code_num_lines": 71.0, "qsc_code_num_chars_line_max": 87.0, "qsc_code_num_chars_line_mean": 29.85915493, "qsc_code_frac_chars_alphabet": 0.84083045, "qsc_code_frac_chars_comments": 0.36839623, "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}
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/sprites/RatKingSprite.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.sprites; import com.shatteredpixel.shatteredpixeldungeon.Assets; import com.watabou.noosa.TextureFilm; import java.util.Calendar; public class RatKingSprite extends MobSprite { public boolean festive; public RatKingSprite() { super(); final Calendar calendar = Calendar.getInstance(); //once a year the rat king feels a bit festive! festive = (calendar.get(Calendar.MONTH) == Calendar.DECEMBER && calendar.get(Calendar.WEEK_OF_MONTH) > 2); final int c = festive ? 8 : 0; texture( Assets.RATKING ); TextureFilm frames = new TextureFilm( texture, 16, 17 ); idle = new Animation( 2, true ); idle.frames( frames, c+0, c+0, c+0, c+1 ); run = new Animation( 10, true ); run.frames( frames, c+2, c+3, c+4, c+5, c+6 ); attack = new Animation( 15, false ); attack.frames( frames, c+0 ); die = new Animation( 10, false ); die.frames( frames, c+0 ); play( idle ); } }
1,756
RatKingSprite
java
en
java
code
{"qsc_code_num_words": 252, "qsc_code_num_chars": 1756.0, "qsc_code_mean_word_length": 4.88888889, "qsc_code_frac_words_unique": 0.53174603, "qsc_code_frac_chars_top_2grams": 0.00811688, "qsc_code_frac_chars_top_3grams": 0.04220779, "qsc_code_frac_chars_top_4grams": 0.04626623, "qsc_code_frac_chars_dupe_5grams": 0.07224026, "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.02978723, "qsc_code_frac_chars_whitespace": 0.19703872, "qsc_code_size_file_byte": 1756.0, "qsc_code_num_lines": 60.0, "qsc_code_num_chars_line_max": 72.0, "qsc_code_num_chars_line_mean": 29.26666667, "qsc_code_frac_chars_alphabet": 0.84397163, "qsc_code_frac_chars_comments": 0.4715262, "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.2, "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}
01010111/zerolib
zero/extensions/StringExt.hx
package zero.extensions; using zero.extensions.ArrayExt; using zero.extensions.FloatExt; using zero.extensions.StringExt; using Math; /** * A collection of extension methods for strings * * **Usage:** * * - use this extension by adding this where you normally import modules: `using zero.extensions.StringExt;` * - now you can use any of these functions on different arrays: `'ABCDEFG'.get_random(2); // 'GB'` * - or use all of the extensions in this library by adding: `using zero.extensions.Tools;` */ class StringExt { /** * returns a 2D array of integers from a csv string */ public static inline function csv_to_2d_int_array(csv:String):Array<Array<Int>> return [for (row in csv.split('\n')) row.split(',').strings_to_ints()]; /** * returns an array of integers from a csv string */ public static inline function csv_to_int_array(csv:String):Array<Int> return [for (row in csv.split('\n')) row.split(',').strings_to_ints()].flatten(); /** * checks to see if a string contains another string */ public static inline function contains(src:String, value:String):Bool return src.indexOf(value) >= 0; /** * Returns a set of letters from an input string, ordered returns a random chunk of the input string */ public static inline function get_random(string:String, length:Int = 1, ordered:Bool = false):String { if (!ordered) return [for (i in 0...length) string.charAt(string.length.get_random().floor())].join(''); length = length.min(string.length).to_int(); return string.substr(string.length.min(string.length - length).get_random().to_int(), length); } /** * Returns an object parsed from JSON */ public static inline function parse_json(string:String):Dynamic { return haxe.Json.parse([for (line in string.split('\n')) line.split('//')[0]].join('\n')); } public static inline function capitalize_first_letter(string:String):String { var chars = string.split(''); chars[0] = chars[0].toUpperCase(); return chars.join(''); } public static inline function capitalize_first_letter_of_every_word(string:String):String { var words = string.split(' '); for (i in 0...words.length) words[i] = words[i].capitalize_first_letter(); return words.join(' '); } }
2,237
StringExt
hx
en
haxe
code
{"qsc_code_num_words": 322, "qsc_code_num_chars": 2237.0, "qsc_code_mean_word_length": 4.82608696, "qsc_code_frac_words_unique": 0.32608696, "qsc_code_frac_chars_top_2grams": 0.05405405, "qsc_code_frac_chars_top_3grams": 0.08108108, "qsc_code_frac_chars_top_4grams": 0.11711712, "qsc_code_frac_chars_dupe_5grams": 0.27091377, "qsc_code_frac_chars_dupe_6grams": 0.2046332, "qsc_code_frac_chars_dupe_7grams": 0.2046332, "qsc_code_frac_chars_dupe_8grams": 0.14414414, "qsc_code_frac_chars_dupe_9grams": 0.14414414, "qsc_code_frac_chars_dupe_10grams": 0.14414414, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.00525762, "qsc_code_frac_chars_whitespace": 0.14975414, "qsc_code_size_file_byte": 2237.0, "qsc_code_num_lines": 64.0, "qsc_code_num_chars_line_max": 153.0, "qsc_code_num_chars_line_mean": 34.953125, "qsc_code_frac_chars_alphabet": 0.81177708, "qsc_code_frac_chars_comments": 0.32275369, "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.00923483, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.0, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0}
1
{"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0}
01010111/zerolib
zero/extensions/FloatExt.hx
package zero.extensions; import zero.utilities.Vec2; import zero.utilities.Vec4; import zero.utilities.Color; using zero.extensions.FloatExt; using Math; /** * A collection of extension methods for Floats * * **Usage:** * * - use this extension by adding this where you normally import modules: `using zero.extensions.FloatExt;` * - now you can use any of these functions on different arrays: `100.get_random(50); // gets a float between 50 and 100` * - or use all of the extensions in this library by adding: `using zero.extensions.Tools;` */ class FloatExt { /** * Returns the degree equivalent to the input radian. ex. Math.PI.rad_to_deg() = 180 */ public static inline function rad_to_deg(rad:Float):Float return rad * (180 / Math.PI); /** * Returns the radian equivalent to the input degree. ex. 180.deg_to_rad() == Math.PI = true */ public static inline function deg_to_rad(deg:Float):Float return deg * (Math.PI / 180); /** * Loops input value through a range of minimum and maximum values. ex. 150.cycle(0, 100) = 50 */ public static inline function cycle(n:Float, min:Float, max:Float):Float return((n - min) % (max - min) + (max - min)) % (max - min) + min; /** * Returns a degree between 0 and 360. ex. (-10).get_relative_degree() = 350 */ public static inline function get_relative_degree(n:Float):Float return (n % 360 + 360) % 360; /** * Returns a degree that has the same relative angle as the input angle, but is closest to the second angle. ex. 350.translate_to_nearest_angle(10) = 20 */ public static inline function translate_to_nearest_angle(a1:Float, a2:Float):Float { while((a1 - a2).abs() > 180) a1 -= (a1 - a2).sign_of() * 360; return a1; } /** * Returns the degrees between two angles. ex. 20.degrees_between(-20) = 40 */ public static inline function degrees_between(a1:Float, a2:Float):Float return (((a2 - a1).max(a1 - a2) + 180) % 360 - 180).abs(); /** * Clamps input value between the minimum and maximum values. ex. 120.clamp(0, 100) = 100 */ public static inline function clamp(n:Float, min:Float, max:Float):Float return n.max(min).min(max); /** * returns input value with removed decimal places after places input. ex. 1.135908.normalize(2) = 1.14 */ public static inline function normalize(n:Float, places:Int):Float return (n * 10.pow(places)).round() / 10.pow(places); /** * returns a norm value t of a through b. ex. 10.norm(0, 100) = 0.1 */ public static inline function norm(t:Float, a:Float, b:Float):Float return ( t - a ) / ( b - a ); /** * linear interpolation. ex. 2.lerp(0, 100) = 200; */ public static inline function lerp(t:Float, a:Float, b:Float):Float return (1 - t) * a + t * b; /** * Maps a value from one range of values to another, ex: 1.map(0, 2, 20, 30) = 25 */ public static inline function map(t:Float, a0:Float, b0:Float, a1:Float, b1:Float):Float return t.norm(a0, b0).lerp(a1, b1); /** * snaps value n to a grid. ex. 21.snap_to_grid(10) = 20 */ public static inline function snap_to_grid(n:Float, grid_size:Float, ?offset:Float = 0, ?floor:Bool = false):Float return offset + grid_size * (floor ? (n / grid_size).floor() : (n / grid_size).round()); /** * gets a random number from a range of numbers. ex. 10.get_random() = a number between 0 and 10 */ public static inline function get_random(def_max:Float, min:Float = 0, ?max:Float, iterations:Int = 1):Float { return min + Math.random() * ((max == null ? def_max : max) - min); } /** * gets a random normal distributed number from a range of numbers. ex. 10.get_random_gaussian(0, 5) = a number between 0 and 10 */ public static inline function get_random_gaussian(max:Float, min:Float = 0, iterations:Int = 2):Float { var r = 0.0; for (i in 0...iterations) r += Math.random(); r /= iterations; return min + r * (max - min); } /** * returns the sign (-1, 0, 1) of a number */ public static inline function sign_of(n:Float):Int return n > 0 ? 1 : n < 0 ? -1 : 0; /** * returns an Int in the place of a Float. ex. 10.1.to_int() = 10 */ public static inline function to_int(n:Float):Int return Std.int(n); /** * returns half of the input */ public static inline function half(n:Float):Float return n * 0.5; /** * returns quarter of the input */ public static inline function quarter(n:Float):Float return n * 0.25; /** * Converts an 0xRRGGBBAA Int to a float array suitable for passing to shaders */ public static inline function to_color(n:Float):Color { var out:Color = Color.get().from_int32(n.to_int()); return out; } /** * returns a Vector describing a vector of given angle and length. ex. 270.vector_from_angle(100) == new Vector(0, -100) = true */ public static inline function vector_from_angle(a:Float, len:Float):Vec2 return Vec2.get(a.deg_to_rad().cos() * len, a.deg_to_rad().sin() * len); /** * Rand like they do in GLSL */ public static inline function rand(n:Float) return (n.sin() * 43758.5453123) % 1.0; /** * input a float representing milliseconds, get a nice formatted string in M:SS.mmm format **/ public static inline function parse_time(n:Float):String { var minutes = '${(n/60).floor()}'; var seconds = '${(n % 60).floor()}'; var milliseconds = '${((n % 1).normalize(3) * 100).floor()}'; while (seconds.length < 2) seconds = '0$seconds'; while (milliseconds.length < 3) milliseconds = '${milliseconds}0'; return '$minutes:$seconds.$milliseconds'; } /** * inspired by dubya bush, returns a number close to the input but not quite **/ public static inline function fuzzy(n:Float, ratio:Float = 0.5):Float { return (n + n * ratio).get_random_gaussian(n - n * ratio); } }
5,737
FloatExt
hx
en
haxe
code
{"qsc_code_num_words": 906, "qsc_code_num_chars": 5737.0, "qsc_code_mean_word_length": 4.17660044, "qsc_code_frac_words_unique": 0.23289183, "qsc_code_frac_chars_top_2grams": 0.07293869, "qsc_code_frac_chars_top_3grams": 0.10940803, "qsc_code_frac_chars_top_4grams": 0.15803383, "qsc_code_frac_chars_dupe_5grams": 0.21828753, "qsc_code_frac_chars_dupe_6grams": 0.13689218, "qsc_code_frac_chars_dupe_7grams": 0.10147992, "qsc_code_frac_chars_dupe_8grams": 0.08245243, "qsc_code_frac_chars_dupe_9grams": 0.06712474, "qsc_code_frac_chars_dupe_10grams": 0.04915433, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.05156854, "qsc_code_frac_chars_whitespace": 0.18877462, "qsc_code_size_file_byte": 5737.0, "qsc_code_num_lines": 161.0, "qsc_code_num_chars_line_max": 206.0, "qsc_code_num_chars_line_mean": 35.63354037, "qsc_code_frac_chars_alphabet": 0.76149549, "qsc_code_frac_chars_comments": 0.42809831, "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.03991469, "qsc_code_frac_chars_long_word_length": 0.00944546, "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/windows/WndTabbed.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.windows; import com.badlogic.gdx.Input; import com.shatteredpixel.shatteredpixeldungeon.Assets; import com.shatteredpixel.shatteredpixeldungeon.Chrome; import com.shatteredpixel.shatteredpixeldungeon.input.GameAction; import com.shatteredpixel.shatteredpixeldungeon.scenes.PixelScene; import com.shatteredpixel.shatteredpixeldungeon.ui.RenderedTextBlock; import com.shatteredpixel.shatteredpixeldungeon.ui.Window; import com.watabou.input.NoosaInputProcessor; import com.watabou.noosa.Game; import com.watabou.noosa.Image; import com.watabou.noosa.NinePatch; import com.watabou.noosa.audio.Sample; import com.watabou.noosa.ui.Button; import com.watabou.utils.RectF; import java.util.ArrayList; public class WndTabbed extends Window { protected ArrayList<Tab> tabs = new ArrayList<>(); protected Tab selected; public WndTabbed() { super( 0, 0, Chrome.get( Chrome.Type.TAB_SET ) ); } protected Tab add( Tab tab ) { tab.setPos( tabs.size() == 0 ? -chrome.marginLeft() + 1 : tabs.get( tabs.size() - 1 ).right(), height ); tab.select( false ); super.add( tab ); tabs.add( tab ); return tab; } public void select( int index ) { select( tabs.get( index ) ); } public void select( Tab tab ) { if (tab != selected) { for (Tab t : tabs) { if (t == selected) { t.select( false ); } else if (t == tab) { t.select( true ); } } selected = tab; } } @Override public void resize( int w, int h ) { // -> super.resize(...) this.width = w; this.height = h; chrome.size( width + chrome.marginHor(), height + chrome.marginVer() ); camera.resize( (int)chrome.width, chrome.marginTop() + height + tabHeight() ); camera.x = (int)(Game.width - camera.screenWidth()) / 2; camera.y = (int)(Game.height - camera.screenHeight()) / 2; camera.y += yOffset * camera.zoom; shadow.boxRect( camera.x / camera.zoom, camera.y / camera.zoom, chrome.width(), chrome.height ); // <- super.resize(...) for (Tab tab : tabs) { remove( tab ); } ArrayList<Tab> tabs = new ArrayList<>( this.tabs ); this.tabs.clear(); for (Tab tab : tabs) { add( tab ); } } public void layoutTabs(){ //subract two as there's extra horizontal space for those nobs on the top. int fullWidth = width+chrome.marginHor()-2; int numTabs = tabs.size(); if (numTabs == 0) return; if (numTabs == 1) { tabs.get(0).setSize(fullWidth, tabHeight()); return; } int spaces = numTabs-1; int spacing = -1; while (spacing == -1) { for (int i = 0; i <= 3; i++){ if ((fullWidth - i*(spaces)) % numTabs == 0) { spacing = i; break; } } if (spacing == -1) fullWidth--; } int tabWidth = (fullWidth - spacing*(numTabs-1)) / numTabs; for (int i = 0; i < tabs.size(); i++){ tabs.get(i).setSize(tabWidth, tabHeight()); tabs.get(i).setPos( i == 0 ? -chrome.marginLeft() + 1 : tabs.get( i - 1 ).right() + spacing, height ); } } protected int tabHeight() { return 25; } protected void onClick( Tab tab ) { select( tab ); } @Override protected void onKeyDown(NoosaInputProcessor.Key key) { if (key.code == Input.Keys.TAB) { int next = 0; for (int j = 0; j < tabs.size(); j++) { Tab t = tabs.get(j); if (t == selected) { next = (j + 1) % tabs.size(); break; } } select(next); } } protected class Tab extends Button<GameAction> { protected final int CUT = 5; protected boolean selected; protected NinePatch bg; @Override protected void layout() { super.layout(); if (bg != null) { bg.x = x; bg.y = y; bg.size( width, height ); } } protected void select( boolean value ) { active = !(selected = value); if (bg != null) { remove( bg ); } bg = Chrome.get( selected ? Chrome.Type.TAB_SELECTED : Chrome.Type.TAB_UNSELECTED ); addToBack( bg ); layout(); } @Override protected void onClick() { Sample.INSTANCE.play( Assets.SND_CLICK, 0.7f, 0.7f, 1.2f ); WndTabbed.this.onClick( this ); } } protected class LabeledTab extends Tab { private RenderedTextBlock btLabel; public LabeledTab( String label ) { super(); btLabel.text( label ); } @Override protected void createChildren() { super.createChildren(); btLabel = PixelScene.renderTextBlock( 9 ); add( btLabel ); } @Override protected void layout() { super.layout(); btLabel.setPos( x + (width - btLabel.width()) / 2, y + (height - btLabel.height()) / 2 - (selected ? 1 : 3) ); PixelScene.align(btLabel); } @Override protected void select( boolean value ) { super.select( value ); btLabel.alpha( selected ? 1.0f : 0.6f ); } } protected class IconTab extends Tab { private Image icon; private RectF defaultFrame; public IconTab( Image icon ){ super(); this.icon.copy(icon); this.defaultFrame = icon.frame(); } @Override protected void createChildren() { super.createChildren(); icon = new Image(); add( icon ); } @Override protected void layout() { super.layout(); icon.frame(defaultFrame); icon.x = x + (width - icon.width) / 2; icon.y = y + (height - icon.height) / 2 - 1; if (!selected) { icon.y -= 2; //if some of the icon is going into the window, cut it off if (icon.y < y + CUT) { RectF frame = icon.frame(); frame.top += (y + CUT - icon.y) / icon.texture.height; icon.frame( frame ); icon.y = y + CUT; } } } @Override protected void select( boolean value ) { super.select( value ); icon.am = selected ? 1.0f : 0.6f; } } }
6,568
WndTabbed
java
en
java
code
{"qsc_code_num_words": 820, "qsc_code_num_chars": 6568.0, "qsc_code_mean_word_length": 5.00853659, "qsc_code_frac_words_unique": 0.27804878, "qsc_code_frac_chars_top_2grams": 0.03067933, "qsc_code_frac_chars_top_3grams": 0.04601899, "qsc_code_frac_chars_top_4grams": 0.0642805, "qsc_code_frac_chars_dupe_5grams": 0.16776236, "qsc_code_frac_chars_dupe_6grams": 0.10664719, "qsc_code_frac_chars_dupe_7grams": 0.02678354, "qsc_code_frac_chars_dupe_8grams": 0.02678354, "qsc_code_frac_chars_dupe_9grams": 0.02678354, "qsc_code_frac_chars_dupe_10grams": 0.0, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.01377796, "qsc_code_frac_chars_whitespace": 0.23751523, "qsc_code_size_file_byte": 6568.0, "qsc_code_num_lines": 297.0, "qsc_code_num_chars_line_max": 81.0, "qsc_code_num_chars_line_mean": 22.11447811, "qsc_code_frac_chars_alphabet": 0.8063099, "qsc_code_frac_chars_comments": 0.14601096, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.18396226, "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.08018868, "qsc_codejava_score_lines_no_logic": 0.21698113, "qsc_codejava_frac_words_no_modifier": 0.80952381, "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/windows/WndImp.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.windows; import com.shatteredpixel.shatteredpixeldungeon.Dungeon; import com.shatteredpixel.shatteredpixeldungeon.actors.mobs.npcs.Imp; import com.shatteredpixel.shatteredpixeldungeon.items.Item; import com.shatteredpixel.shatteredpixeldungeon.items.quest.DwarfToken; import com.shatteredpixel.shatteredpixeldungeon.messages.Messages; import com.shatteredpixel.shatteredpixeldungeon.scenes.PixelScene; import com.shatteredpixel.shatteredpixeldungeon.sprites.ItemSprite; import com.shatteredpixel.shatteredpixeldungeon.ui.RedButton; import com.shatteredpixel.shatteredpixeldungeon.ui.RenderedTextBlock; import com.shatteredpixel.shatteredpixeldungeon.ui.Window; import com.shatteredpixel.shatteredpixeldungeon.utils.GLog; public class WndImp extends Window { private static final int WIDTH = 120; private static final int BTN_HEIGHT = 20; private static final int GAP = 2; public WndImp( final Imp imp, final DwarfToken tokens ) { super(); IconTitle titlebar = new IconTitle(); titlebar.icon( new ItemSprite( tokens.image(), null ) ); titlebar.label( Messages.titleCase( tokens.name() ) ); titlebar.setRect( 0, 0, WIDTH, 0 ); add( titlebar ); RenderedTextBlock message = PixelScene.renderTextBlock( Messages.get(this, "message"), 6 ); message.maxWidth(WIDTH); message.setPos(0, titlebar.bottom() + GAP); add( message ); RedButton btnReward = new RedButton( Messages.get(this, "reward") ) { @Override protected void onClick() { takeReward( imp, tokens, Imp.Quest.reward ); } }; btnReward.setRect( 0, message.top() + message.height() + GAP, WIDTH, BTN_HEIGHT ); add( btnReward ); resize( WIDTH, (int)btnReward.bottom() ); } private void takeReward( Imp imp, DwarfToken tokens, Item reward ) { hide(); tokens.detachAll( Dungeon.hero.belongings.backpack ); if (reward == null) return; reward.identify(); if (reward.doPickUp( Dungeon.hero )) { GLog.i( Messages.get(Dungeon.hero, "you_now_have", reward.name()) ); } else { Dungeon.level.drop( reward, imp.pos ).sprite.drop(); } imp.flee(); Imp.Quest.complete(); } }
2,961
WndImp
java
en
java
code
{"qsc_code_num_words": 360, "qsc_code_num_chars": 2961.0, "qsc_code_mean_word_length": 6.06666667, "qsc_code_frac_words_unique": 0.45555556, "qsc_code_frac_chars_top_2grams": 0.09340659, "qsc_code_frac_chars_top_3grams": 0.20879121, "qsc_code_frac_chars_top_4grams": 0.22161172, "qsc_code_frac_chars_dupe_5grams": 0.1456044, "qsc_code_frac_chars_dupe_6grams": 0.02564103, "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.01160929, "qsc_code_frac_chars_whitespace": 0.15636609, "qsc_code_size_file_byte": 2961.0, "qsc_code_num_lines": 86.0, "qsc_code_num_chars_line_max": 94.0, "qsc_code_num_chars_line_mean": 34.43023256, "qsc_code_frac_chars_alphabet": 0.86269015, "qsc_code_frac_chars_comments": 0.26376224, "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.01146789, "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.2745098, "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/windows/WndClass.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.windows; import com.shatteredpixel.shatteredpixeldungeon.Badges; import com.shatteredpixel.shatteredpixeldungeon.actors.hero.HeroClass; import com.shatteredpixel.shatteredpixeldungeon.actors.hero.HeroSubClass; import com.shatteredpixel.shatteredpixeldungeon.messages.Messages; import com.shatteredpixel.shatteredpixeldungeon.scenes.PixelScene; import com.shatteredpixel.shatteredpixeldungeon.ui.RenderedTextBlock; import com.watabou.noosa.Group; public class WndClass extends WndTabbed { private static final int WIDTH = 110; private static final int TAB_WIDTH = 50; private HeroClass cl; private PerksTab tabPerks; private MasteryTab tabMastery; public WndClass( HeroClass cl ) { super(); this.cl = cl; tabPerks = new PerksTab(); add( tabPerks ); Tab tab = new RankingTab( cl.title().toUpperCase(), tabPerks ); tab.setSize( TAB_WIDTH, tabHeight() ); add( tab ); if (Badges.isUnlocked( cl.masteryBadge() )) { tabMastery = new MasteryTab(); add( tabMastery ); tab = new RankingTab( Messages.get(this, "mastery"), tabMastery ); add( tab ); resize( (int)Math.max( tabPerks.width, tabMastery.width ), (int)Math.max( tabPerks.height, tabMastery.height ) ); } else { resize( (int)tabPerks.width, (int)tabPerks.height ); } layoutTabs(); select( 0 ); } private class RankingTab extends LabeledTab { private Group page; public RankingTab( String label, Group page ) { super( label ); this.page = page; } @Override protected void select( boolean value ) { super.select( value ); if (page != null) { page.visible = page.active = selected; } } } private class PerksTab extends Group { private static final int MARGIN = 4; private static final int GAP = 4; public float height; public float width; public PerksTab() { super(); float dotWidth = 0; String[] items = cl.perks(); float pos = MARGIN; for (int i=0; i < items.length; i++) { if (i > 0) { pos += GAP; } RenderedTextBlock item = PixelScene.renderTextBlock( "-" + items[i], 6 ); item.maxWidth((int)(WIDTH - MARGIN * 2 - dotWidth)); item.setPos(0, pos); add( item ); pos += item.height(); float w = item.width(); if (w > width) { width = w; } } width += MARGIN + dotWidth; height = pos + MARGIN; } } private class MasteryTab extends Group { private static final int MARGIN = 4; public float height; public float width; public MasteryTab() { super(); String message = null; switch (cl) { case WARRIOR: message = HeroSubClass.GLADIATOR.desc() + "\n\n" + HeroSubClass.BERSERKER.desc(); break; case MAGE: message = HeroSubClass.BATTLEMAGE.desc() + "\n\n" + HeroSubClass.WARLOCK.desc(); break; case ROGUE: message = HeroSubClass.FREERUNNER.desc() + "\n\n" + HeroSubClass.ASSASSIN.desc(); break; case HUNTRESS: message = HeroSubClass.SNIPER.desc() + "\n\n" + HeroSubClass.WARDEN.desc(); break; } RenderedTextBlock text = PixelScene.renderTextBlock( 6 ); text.text( message, WIDTH - MARGIN * 2 ); text.setPos( MARGIN, MARGIN ); add( text ); height = text.bottom() + MARGIN; width = text.right() + MARGIN; } } }
4,095
WndClass
java
en
java
code
{"qsc_code_num_words": 490, "qsc_code_num_chars": 4095.0, "qsc_code_mean_word_length": 5.65714286, "qsc_code_frac_words_unique": 0.37755102, "qsc_code_frac_chars_top_2grams": 0.04292929, "qsc_code_frac_chars_top_3grams": 0.0959596, "qsc_code_frac_chars_top_4grams": 0.0952381, "qsc_code_frac_chars_dupe_5grams": 0.12590188, "qsc_code_frac_chars_dupe_6grams": 0.11652237, "qsc_code_frac_chars_dupe_7grams": 0.05735931, "qsc_code_frac_chars_dupe_8grams": 0.05735931, "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.01050355, "qsc_code_frac_chars_whitespace": 0.20952381, "qsc_code_size_file_byte": 4095.0, "qsc_code_num_lines": 166.0, "qsc_code_num_chars_line_max": 87.0, "qsc_code_num_chars_line_mean": 24.6686747, "qsc_code_frac_chars_alphabet": 0.84584492, "qsc_code_frac_chars_comments": 0.19072039, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.13888889, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.00723982, "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.00925926, "qsc_codejava_score_lines_no_logic": 0.18518519, "qsc_codejava_frac_words_no_modifier": 0.2, "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/windows/WndGameInProgress.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.windows; import com.shatteredpixel.shatteredpixeldungeon.Dungeon; import com.shatteredpixel.shatteredpixeldungeon.GamesInProgress; import com.shatteredpixel.shatteredpixeldungeon.ShatteredPixelDungeon; import com.shatteredpixel.shatteredpixeldungeon.actors.hero.Hero; import com.shatteredpixel.shatteredpixeldungeon.actors.hero.HeroSubClass; import com.shatteredpixel.shatteredpixeldungeon.messages.Messages; import com.shatteredpixel.shatteredpixeldungeon.scenes.InterlevelScene; import com.shatteredpixel.shatteredpixeldungeon.scenes.PixelScene; import com.shatteredpixel.shatteredpixeldungeon.scenes.StartScene; import com.shatteredpixel.shatteredpixeldungeon.sprites.HeroSprite; import com.shatteredpixel.shatteredpixeldungeon.ui.ActionIndicator; import com.shatteredpixel.shatteredpixeldungeon.ui.RedButton; import com.shatteredpixel.shatteredpixeldungeon.ui.RenderedTextBlock; import com.shatteredpixel.shatteredpixeldungeon.ui.Window; import com.watabou.noosa.Game; import com.watabou.noosa.ui.Button; import com.watabou.utils.Bundle; import com.watabou.utils.FileUtils; import java.io.IOException; import java.util.Locale; public class WndGameInProgress extends Window { private static final int WIDTH = 120; private static final int HEIGHT = 120; private int GAP = 6; private float pos; public WndGameInProgress(final int slot){ final GamesInProgress.Info info = GamesInProgress.check(slot); String className = null; if (info.subClass != HeroSubClass.NONE){ className = info.subClass.title(); } else { className = info.heroClass.title(); } IconTitle title = new IconTitle(); title.icon( HeroSprite.avatar(info.heroClass, info.armorTier) ); title.label((Messages.get(this, "title", info.level, className)).toUpperCase(Locale.ENGLISH)); title.color(Window.SHPX_COLOR); title.setRect( 0, 0, WIDTH, 0 ); add(title); //manually produces debug information about a run, mainly useful for levelgen errors Button debug = new Button(){ @Override protected boolean onLongClick() { try { Bundle bundle = FileUtils.bundleFromFile(GamesInProgress.gameFile(slot)); ShatteredPixelDungeon.scene().addToFront(new WndMessage("_Debug Info:_\n\n" + "Version: " + Game.version + " (" + Game.versionCode + ")\n" + "Seed: " + bundle.getLong("seed") + "\n" + "Challenge Mask: " + info.challenges)); } catch (IOException ignored) { } return true; } }; debug.setRect(0, 0, title.imIcon.width(), title.imIcon.height); add(debug); if (info.challenges > 0) GAP -= 2; pos = title.bottom() + GAP; if (info.challenges > 0) { RedButton btnChallenges = new RedButton( Messages.get(this, "challenges") ) { @Override protected void onClick() { Game.scene().add( new WndChallenges( info.challenges, false ) ); } }; float btnW = btnChallenges.reqWidth() + 2; btnChallenges.setRect( (WIDTH - btnW)/2, pos, btnW , btnChallenges.reqHeight() + 2 ); add( btnChallenges ); pos = btnChallenges.bottom() + GAP; } pos += GAP; statSlot( Messages.get(this, "str"), info.str ); if (info.shld > 0) statSlot( Messages.get(this, "health"), info.hp + "+" + info.shld + "/" + info.ht ); else statSlot( Messages.get(this, "health"), (info.hp) + "/" + info.ht ); statSlot( Messages.get(this, "exp"), info.exp + "/" + Hero.maxExp(info.level) ); pos += GAP; statSlot( Messages.get(this, "gold"), info.goldCollected ); statSlot( Messages.get(this, "depth"), info.maxDepth ); pos += GAP; RedButton cont = new RedButton(Messages.get(this, "continue")){ @Override protected void onClick() { super.onClick(); GamesInProgress.curSlot = slot; Dungeon.hero = null; ActionIndicator.action = null; InterlevelScene.mode = InterlevelScene.Mode.CONTINUE; ShatteredPixelDungeon.switchScene(InterlevelScene.class); } }; RedButton erase = new RedButton( Messages.get(this, "erase")){ @Override protected void onClick() { super.onClick(); ShatteredPixelDungeon.scene().add(new WndOptions( Messages.get(WndGameInProgress.class, "erase_warn_title"), Messages.get(WndGameInProgress.class, "erase_warn_body"), Messages.get(WndGameInProgress.class, "erase_warn_yes"), Messages.get(WndGameInProgress.class, "erase_warn_no") ) { @Override protected void onSelect( int index ) { if (index == 0) { FileUtils.deleteDir(GamesInProgress.gameFolder(slot)); GamesInProgress.setUnknown(slot); ShatteredPixelDungeon.switchNoFade(StartScene.class); } } } ); } }; cont.setRect(0, HEIGHT - 20, WIDTH/2 -1, 20); add(cont); erase.setRect(WIDTH/2 + 1, HEIGHT-20, WIDTH/2 - 1, 20); add(erase); resize(WIDTH, HEIGHT); } private void statSlot( String label, String value ) { RenderedTextBlock txt = PixelScene.renderTextBlock( label, 8 ); txt.setPos(0, pos); add( txt ); txt = PixelScene.renderTextBlock( value, 8 ); txt.setPos(WIDTH * 0.6f, pos); PixelScene.align(txt); add( txt ); pos += GAP + txt.height(); } private void statSlot( String label, int value ) { statSlot( label, Integer.toString( value ) ); } }
6,073
WndGameInProgress
java
en
java
code
{"qsc_code_num_words": 693, "qsc_code_num_chars": 6073.0, "qsc_code_mean_word_length": 6.17460317, "qsc_code_frac_words_unique": 0.34054834, "qsc_code_frac_chars_top_2grams": 0.03785931, "qsc_code_frac_chars_top_3grams": 0.13320869, "qsc_code_frac_chars_top_4grams": 0.14395887, "qsc_code_frac_chars_dupe_5grams": 0.25730311, "qsc_code_frac_chars_dupe_6grams": 0.15424165, "qsc_code_frac_chars_dupe_7grams": 0.02757654, "qsc_code_frac_chars_dupe_8grams": 0.01822856, "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.01133652, "qsc_code_frac_chars_whitespace": 0.17207311, "qsc_code_size_file_byte": 6073.0, "qsc_code_num_lines": 183.0, "qsc_code_num_chars_line_max": 106.0, "qsc_code_num_chars_line_mean": 33.18579235, "qsc_code_frac_chars_alphabet": 0.83969769, "qsc_code_frac_chars_comments": 0.14243372, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.14728682, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.03379416, "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.05426357, "qsc_codejava_score_lines_no_logic": 0.23255814, "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/windows/WndItem.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.windows; import com.shatteredpixel.shatteredpixeldungeon.Dungeon; import com.shatteredpixel.shatteredpixeldungeon.SPDSettings; import com.shatteredpixel.shatteredpixeldungeon.items.Item; import com.shatteredpixel.shatteredpixeldungeon.messages.Messages; import com.shatteredpixel.shatteredpixeldungeon.scenes.PixelScene; import com.shatteredpixel.shatteredpixeldungeon.ui.ItemSlot; import com.shatteredpixel.shatteredpixeldungeon.ui.RedButton; import com.shatteredpixel.shatteredpixeldungeon.ui.RenderedTextBlock; import com.shatteredpixel.shatteredpixeldungeon.ui.Window; import java.util.ArrayList; import java.util.Comparator; public class WndItem extends Window { //only one wnditem can appear at a time private static WndItem INSTANCE; private static final float BUTTON_HEIGHT = 16; private static final float GAP = 2; private static final int WIDTH_MIN = 120; private static final int WIDTH_MAX = 220; public WndItem( final WndBag owner, final Item item ){ this( owner, item, owner != null ); } public WndItem( final WndBag owner, final Item item , final boolean options ) { super(); if( INSTANCE != null ){ INSTANCE.hide(); } INSTANCE = this; int width = WIDTH_MIN; RenderedTextBlock info = PixelScene.renderTextBlock( item.info(), 6 ); info.maxWidth(width); //info box can go out of the screen on landscape, so widen it while (SPDSettings.landscape() && info.height() > 100 && width < WIDTH_MAX){ width += 20; info.maxWidth(width); } IconTitle titlebar = new IconTitle( item ); titlebar.setRect( 0, 0, width, 0 ); add( titlebar ); if (item.levelKnown && item.level() > 0) { titlebar.color( ItemSlot.UPGRADED ); } else if (item.levelKnown && item.level() < 0) { titlebar.color( ItemSlot.DEGRADED ); } info.setPos(titlebar.left(), titlebar.bottom() + GAP); add( info ); float y = info.top() + info.height() + GAP; if (Dungeon.hero.isAlive() && options) { ArrayList<RedButton> buttons = new ArrayList<>(); for (final String action:item.actions( Dungeon.hero )) { RedButton btn = new RedButton( Messages.get(item, "ac_" + action), 8 ) { @Override protected void onClick() { hide(); if (owner != null && owner.parent != null) owner.hide(); if (Dungeon.hero.isAlive()) item.execute( Dungeon.hero, action ); } }; btn.setSize( btn.reqWidth(), BUTTON_HEIGHT ); buttons.add(btn); add( btn ); if (action.equals(item.defaultAction)) { btn.textColor( TITLE_COLOR ); } } y = layoutButtons(buttons, width, y); } resize( width, (int)(y) ); } private static float layoutButtons(ArrayList<RedButton> buttons, float width, float y){ ArrayList<RedButton> curRow = new ArrayList<>(); float widthLeftThisRow = width; while( !buttons.isEmpty() ){ RedButton btn = buttons.get(0); widthLeftThisRow -= btn.width(); if (curRow.isEmpty()) { curRow.add(btn); buttons.remove(btn); } else { widthLeftThisRow -= 1; if (widthLeftThisRow >= 0) { curRow.add(btn); buttons.remove(btn); } } //layout current row. Currently forces a max of 3 buttons but can work with more if (buttons.isEmpty() || widthLeftThisRow <= 0 || curRow.size() >= 3){ //re-use this variable for laying out the buttons widthLeftThisRow = width - (curRow.size()-1); for (RedButton b : curRow){ widthLeftThisRow -= b.width(); } //while we still have space in this row, find the shortest button(s) and extend them while (widthLeftThisRow > 0){ ArrayList<RedButton> shortest = new ArrayList<>(); RedButton secondShortest = null; for (RedButton b : curRow) { if (shortest.isEmpty()) { shortest.add(b); } else { if (b.width() < shortest.get(0).width()) { secondShortest = shortest.get(0); shortest.clear(); shortest.add(b); } else if (b.width() == shortest.get(0).width()) { shortest.add(b); } else if (secondShortest == null || secondShortest.width() > b.width()){ secondShortest = b; } } } float widthToGrow; if (secondShortest == null){ widthToGrow = widthLeftThisRow / shortest.size(); widthLeftThisRow = 0; } else { widthToGrow = secondShortest.width() - shortest.get(0).width(); if ((widthToGrow * shortest.size()) >= widthLeftThisRow){ widthToGrow = widthLeftThisRow / shortest.size(); widthLeftThisRow = 0; } else { widthLeftThisRow -= widthToGrow * shortest.size(); } } for (RedButton toGrow : shortest){ toGrow.setRect(0, 0, toGrow.width()+widthToGrow, toGrow.height()); } } //finally set positions float x = 0; for (RedButton b : curRow){ b.setRect(x, y, b.width(), b.height()); x += b.width() + 1; } //move to next line and reset variables y += BUTTON_HEIGHT+1; widthLeftThisRow = width; curRow.clear(); } } return y - 1; } @Override public void hide() { super.hide(); if (INSTANCE == this){ INSTANCE = null; } } private static Comparator<RedButton> widthComparator = new Comparator<RedButton>() { @Override public int compare(RedButton lhs, RedButton rhs) { if (lhs.width() < rhs.width()){ return -1; } else if (lhs.width() == rhs.width()){ return 0; } else { return 1; } } }; }
6,340
WndItem
java
en
java
code
{"qsc_code_num_words": 735, "qsc_code_num_chars": 6340.0, "qsc_code_mean_word_length": 5.59727891, "qsc_code_frac_words_unique": 0.31156463, "qsc_code_frac_chars_top_2grams": 0.04132231, "qsc_code_frac_chars_top_3grams": 0.09236753, "qsc_code_frac_chars_top_4grams": 0.09625668, "qsc_code_frac_chars_dupe_5grams": 0.20466699, "qsc_code_frac_chars_dupe_6grams": 0.13125912, "qsc_code_frac_chars_dupe_7grams": 0.09236753, "qsc_code_frac_chars_dupe_8grams": 0.06319883, "qsc_code_frac_chars_dupe_9grams": 0.04278075, "qsc_code_frac_chars_dupe_10grams": 0.01993194, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.01245661, "qsc_code_frac_chars_whitespace": 0.22760252, "qsc_code_size_file_byte": 6340.0, "qsc_code_num_lines": 225.0, "qsc_code_num_chars_line_max": 89.0, "qsc_code_num_chars_line_mean": 28.17777778, "qsc_code_frac_chars_alphabet": 0.82764958, "qsc_code_frac_chars_comments": 0.18233438, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.1656051, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.0005787, "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.02547771, "qsc_codejava_score_lines_no_logic": 0.12738854, "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/windows/WndJournal.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.windows; import com.shatteredpixel.shatteredpixeldungeon.Dungeon; import com.shatteredpixel.shatteredpixeldungeon.SPDSettings; import com.shatteredpixel.shatteredpixeldungeon.ShatteredPixelDungeon; import com.shatteredpixel.shatteredpixeldungeon.items.Item; import com.shatteredpixel.shatteredpixeldungeon.items.armor.ClassArmor; import com.shatteredpixel.shatteredpixeldungeon.items.potions.Potion; import com.shatteredpixel.shatteredpixeldungeon.items.rings.Ring; import com.shatteredpixel.shatteredpixeldungeon.items.scrolls.Scroll; import com.shatteredpixel.shatteredpixeldungeon.journal.Catalog; import com.shatteredpixel.shatteredpixeldungeon.journal.Document; import com.shatteredpixel.shatteredpixeldungeon.journal.Notes; import com.shatteredpixel.shatteredpixeldungeon.input.GameAction; import com.shatteredpixel.shatteredpixeldungeon.messages.Messages; import com.shatteredpixel.shatteredpixeldungeon.scenes.GameScene; import com.shatteredpixel.shatteredpixeldungeon.scenes.PixelScene; import com.shatteredpixel.shatteredpixeldungeon.sprites.ItemSprite; import com.shatteredpixel.shatteredpixeldungeon.sprites.ItemSpriteSheet; import com.shatteredpixel.shatteredpixeldungeon.ui.Icons; import com.shatteredpixel.shatteredpixeldungeon.ui.QuickRecipe; import com.shatteredpixel.shatteredpixeldungeon.ui.RedButton; import com.shatteredpixel.shatteredpixeldungeon.ui.RenderedTextBlock; import com.shatteredpixel.shatteredpixeldungeon.ui.ScrollPane; import com.watabou.input.NoosaInputProcessor; import com.watabou.noosa.BitmapText; import com.watabou.noosa.ColorBlock; import com.watabou.noosa.Image; import com.watabou.noosa.ui.Component; import com.watabou.utils.Reflection; import java.util.ArrayList; import java.util.Collections; import java.util.Comparator; import java.util.HashMap; public class WndJournal extends WndTabbed { public static final int WIDTH_P = 126; public static final int HEIGHT_P = 180; public static final int WIDTH_L = 200; public static final int HEIGHT_L = 130; private static final int ITEM_HEIGHT = 18; private GuideTab guideTab; private AlchemyTab alchemyTab; private NotesTab notesTab; private CatalogTab catalogTab; public static int last_index = 0; public WndJournal(){ int width = SPDSettings.landscape() ? WIDTH_L : WIDTH_P; int height = SPDSettings.landscape() ? HEIGHT_L : HEIGHT_P; resize(width, height); guideTab = new GuideTab(); add(guideTab); guideTab.setRect(0, 0, width, height); guideTab.updateList(); alchemyTab = new AlchemyTab(); add(alchemyTab); alchemyTab.setRect(0, 0, width, height); notesTab = new NotesTab(); add(notesTab); notesTab.setRect(0, 0, width, height); notesTab.updateList(); catalogTab = new CatalogTab(); add(catalogTab); catalogTab.setRect(0, 0, width, height); catalogTab.updateList(); Tab[] tabs = { new IconTab( new ItemSprite(ItemSpriteSheet.GUIDE_PAGE, null) ) { protected void select( boolean value ) { super.select( value ); guideTab.active = guideTab.visible = value; if (value) last_index = 0; } }, new IconTab( new ItemSprite(ItemSpriteSheet.ALCH_PAGE, null) ) { protected void select( boolean value ) { super.select( value ); alchemyTab.active = alchemyTab.visible = value; if (value) last_index = 1; } }, new IconTab( Icons.get(Icons.DEPTH) ) { protected void select( boolean value ) { super.select( value ); notesTab.active = notesTab.visible = value; if (value) last_index = 2; } }, new IconTab( new ItemSprite(ItemSpriteSheet.WEAPON_HOLDER, null) ) { protected void select( boolean value ) { super.select( value ); catalogTab.active = catalogTab.visible = value; if (value) last_index = 3; } } }; for (Tab tab : tabs) { add( tab ); } layoutTabs(); select(last_index); } @Override protected void onKeyUp( NoosaInputProcessor.Key<GameAction> key ) { if (key.action == GameAction.JOURNAL) { hide(); } else { super.onKeyUp( key ); } } private static class ListItem extends Component { protected RenderedTextBlock label; protected BitmapText depth; protected ColorBlock line; protected Image icon; public ListItem( Image icon, String text ) { this(icon, text, -1); } public ListItem( Image icon, String text, int d ) { super(); this.icon.copy(icon); label.text( text ); if (d >= 0) { depth.text(Integer.toString(d)); depth.measure(); if (d == Dungeon.depth) { label.hardlight(TITLE_COLOR); depth.hardlight(TITLE_COLOR); } } } @Override protected void createChildren() { label = PixelScene.renderTextBlock( 7 ); add( label ); icon = new Image(); add( icon ); depth = new BitmapText( PixelScene.pixelFont); add( depth ); line = new ColorBlock( 1, 1, 0xFF222222); add(line); } @Override protected void layout() { icon.y = y + 1 + (height() - 1 - icon.height()) / 2f; PixelScene.align(icon); depth.x = icon.x + (icon.width - depth.width()) / 2f; depth.y = icon.y + (icon.height - depth.height()) / 2f + 1; PixelScene.align(depth); line.size(width, 1); line.x = 0; line.y = y; label.maxWidth((int)(width - icon.width() - 8 - 1)); label.setPos(icon.x + icon.width() + 1, y + 1 + (height() - label.height()) / 2f); PixelScene.align(label); } } private static class GuideTab extends Component { private ScrollPane list; private ArrayList<GuideItem> pages = new ArrayList<>(); @Override protected void createChildren() { list = new ScrollPane( new Component() ){ @Override public void onClick( float x, float y ) { int size = pages.size(); for (int i=0; i < size; i++) { if (pages.get( i ).onClick( x, y )) { break; } } } }; add( list ); } @Override protected void layout() { super.layout(); list.setRect( 0, 0, width, height); } private void updateList(){ Component content = list.content(); float pos = 0; ColorBlock line = new ColorBlock( width(), 1, 0xFF222222); line.y = pos; content.add(line); RenderedTextBlock title = PixelScene.renderTextBlock(Document.ADVENTURERS_GUIDE.title(), 9); title.hardlight(TITLE_COLOR); title.maxWidth( (int)width() - 2 ); title.setPos( (width() - title.width())/2f, pos + 1 + ((ITEM_HEIGHT) - title.height())/2f); PixelScene.align(title); content.add(title); pos += Math.max(ITEM_HEIGHT, title.height()); for (String page : Document.ADVENTURERS_GUIDE.pages()){ GuideItem item = new GuideItem( page ); item.setRect( 0, pos, width(), ITEM_HEIGHT ); content.add( item ); pos += item.height(); pages.add(item); } content.setSize( width(), pos ); list.setSize( list.width(), list.height() ); } private static class GuideItem extends ListItem { private boolean found = false; private String page; public GuideItem( String page ){ super( new ItemSprite( ItemSpriteSheet.GUIDE_PAGE, null), Messages.titleCase(Document.ADVENTURERS_GUIDE.pageTitle(page)), -1); this.page = page; found = Document.ADVENTURERS_GUIDE.hasPage(page); if (!found) { icon.hardlight( 0.5f, 0.5f, 0.5f); label.text( Messages.titleCase(Messages.get( this, "missing" ))); label.hardlight( 0x999999 ); } } public boolean onClick( float x, float y ) { if (inside( x, y ) && found) { GameScene.show( new WndStory( Document.ADVENTURERS_GUIDE.pageBody(page) )); return true; } else { return false; } } } } public static class AlchemyTab extends Component { private RedButton[] pageButtons; private static final int NUM_BUTTONS = 9; private static final int[] spriteIndexes = {10, 12, 7, 8, 9, 11, 13, 14, 15}; private static int currentPageIdx = -1; private IconTitle title; private RenderedTextBlock body; private ScrollPane list; private ArrayList<QuickRecipe> recipes = new ArrayList<>(); @Override protected void createChildren() { pageButtons = new RedButton[NUM_BUTTONS]; for (int i = 0; i < NUM_BUTTONS; i++){ final int idx = i; pageButtons[i] = new RedButton( "" ){ @Override protected void onClick() { currentPageIdx = idx; updateList(); } }; if (Document.ALCHEMY_GUIDE.hasPage(i)) { pageButtons[i].icon(new ItemSprite(ItemSpriteSheet.SOMETHING + spriteIndexes[i], null)); } else { pageButtons[i].icon(new ItemSprite(ItemSpriteSheet.SOMETHING, null)); pageButtons[i].enable(false); } add( pageButtons[i] ); } title = new IconTitle(); title.icon( new ItemSprite(ItemSpriteSheet.ALCH_PAGE)); title.visible = false; body = PixelScene.renderTextBlock(6); list = new ScrollPane(new Component()); add(list); } @Override protected void layout() { super.layout(); if (SPDSettings.landscape()){ float buttonWidth = width()/pageButtons.length; for (int i = 0; i < NUM_BUTTONS; i++) { pageButtons[i].setRect(i*buttonWidth, 0, buttonWidth, ITEM_HEIGHT); PixelScene.align(pageButtons[i]); } } else { //for first row float buttonWidth = width()/4; float y = 0; float x = 0; for (int i = 0; i < NUM_BUTTONS; i++) { pageButtons[i].setRect(x, y, buttonWidth, ITEM_HEIGHT); PixelScene.align(pageButtons[i]); x += buttonWidth; if (i == 3){ y += ITEM_HEIGHT; x = 0; buttonWidth = width()/5; } } } list.setRect(0, pageButtons[NUM_BUTTONS-1].bottom() + 1, width, height - pageButtons[NUM_BUTTONS-1].bottom() - 1); updateList(); } private void updateList() { for (int i = 0; i < NUM_BUTTONS; i++) { if (i == currentPageIdx) { pageButtons[i].icon().color(TITLE_COLOR); } else { pageButtons[i].icon().resetColor(); } } if (currentPageIdx == -1){ return; } for (QuickRecipe r : recipes){ if (r != null) { r.killAndErase(); r.destroy(); } } recipes.clear(); Component content = list.content(); content.clear(); title.visible = true; title.label(Document.ALCHEMY_GUIDE.pageTitle(currentPageIdx)); title.setRect(0, 0, width(), 10); content.add(title); body.maxWidth((int)width()); body.text(Document.ALCHEMY_GUIDE.pageBody(currentPageIdx)); body.setPos(0, title.bottom()); content.add(body); ArrayList<QuickRecipe> toAdd = QuickRecipe.getRecipes(currentPageIdx); float left; float top = body.bottom(); int w; ArrayList<QuickRecipe> toAddThisRow = new ArrayList<>(); while (!toAdd.isEmpty()){ if (toAdd.get(0) == null){ toAdd.remove(0); top += 6; } w = 0; while(!toAdd.isEmpty() && toAdd.get(0) != null && w + toAdd.get(0).width() <= width()){ toAddThisRow.add(toAdd.remove(0)); w += toAddThisRow.get(0).width(); } float spacing = (width() - w)/(toAddThisRow.size() + 1); left = spacing; while (!toAddThisRow.isEmpty()){ QuickRecipe r = toAddThisRow.remove(0); r.setPos(left, top); left += r.width() + spacing; if (!toAddThisRow.isEmpty()) { ColorBlock spacer = new ColorBlock(1, 16, 0xFF222222); spacer.y = top; spacer.x = left - spacing / 2 - 0.5f; PixelScene.align(spacer); content.add(spacer); } recipes.add(r); content.add(r); } if (!toAdd.isEmpty() && toAdd.get(0) == null){ toAdd.remove(0); } if (!toAdd.isEmpty() && toAdd.get(0) != null) { ColorBlock spacer = new ColorBlock(width(), 1, 0xFF222222); spacer.y = top + 16; spacer.x = 0; content.add(spacer); } top += 17; toAddThisRow.clear(); } top -=1; content.setSize(width(), top); list.setSize(list.width(), list.height()); list.scrollTo(0, 0); } } private static class NotesTab extends Component { private ScrollPane list; @Override protected void createChildren() { list = new ScrollPane( new Component() ); add( list ); } @Override protected void layout() { super.layout(); list.setRect( 0, 0, width, height); } private void updateList(){ Component content = list.content(); float pos = 0; //Keys ArrayList<Notes.KeyRecord> keys = Notes.getRecords(Notes.KeyRecord.class); if (!keys.isEmpty()){ ColorBlock line = new ColorBlock( width(), 1, 0xFF222222); line.y = pos; content.add(line); RenderedTextBlock title = PixelScene.renderTextBlock(Messages.get(this, "keys"), 9); title.hardlight(TITLE_COLOR); title.maxWidth( (int)width() - 2 ); title.setPos( (width() - title.width())/2f, pos + 1 + ((ITEM_HEIGHT) - title.height())/2f); PixelScene.align(title); content.add(title); pos += Math.max(ITEM_HEIGHT, title.height()); } for(Notes.Record rec : keys){ ListItem item = new ListItem( Icons.get(Icons.DEPTH), Messages.titleCase(rec.desc()), rec.depth() ); item.setRect( 0, pos, width(), ITEM_HEIGHT ); content.add( item ); pos += item.height(); } //Landmarks ArrayList<Notes.LandmarkRecord> landmarks = Notes.getRecords(Notes.LandmarkRecord.class); if (!landmarks.isEmpty()){ ColorBlock line = new ColorBlock( width(), 1, 0xFF222222); line.y = pos; content.add(line); RenderedTextBlock title = PixelScene.renderTextBlock(Messages.get(this, "landmarks"), 9); title.hardlight(TITLE_COLOR); title.maxWidth( (int)width() - 2 ); title.setPos( (width() - title.width())/2f, pos + 1 + ((ITEM_HEIGHT) - title.height())/2f); PixelScene.align(title); content.add(title); pos += Math.max(ITEM_HEIGHT, title.height()); } for (Notes.Record rec : landmarks) { ListItem item = new ListItem( Icons.get(Icons.DEPTH), Messages.titleCase(rec.desc()), rec.depth() ); item.setRect( 0, pos, width(), ITEM_HEIGHT ); content.add( item ); pos += item.height(); } content.setSize( width(), pos ); list.setSize( list.width(), list.height() ); } } private static class CatalogTab extends Component{ private RedButton[] itemButtons; private static final int NUM_BUTTONS = 7; private static int currentItemIdx = 0; //sprite locations private static final int WEAPON_IDX = 0; private static final int ARMOR_IDX = 1; private static final int WAND_IDX = 2; private static final int RING_IDX = 3; private static final int ARTIF_IDX = 4; private static final int POTION_IDX = 5; private static final int SCROLL_IDX = 6; private static final int spriteIndexes[] = {1, 2, 4, 5, 6, 9, 11}; private ScrollPane list; private ArrayList<CatalogItem> items = new ArrayList<>(); @Override protected void createChildren() { itemButtons = new RedButton[NUM_BUTTONS]; for (int i = 0; i < NUM_BUTTONS; i++){ final int idx = i; itemButtons[i] = new RedButton( "" ){ @Override protected void onClick() { currentItemIdx = idx; updateList(); } }; itemButtons[i].icon(new ItemSprite(ItemSpriteSheet.SOMETHING + spriteIndexes[i], null)); add( itemButtons[i] ); } list = new ScrollPane( new Component() ) { @Override public void onClick( float x, float y ) { int size = items.size(); for (int i=0; i < size; i++) { if (items.get( i ).onClick( x, y )) { break; } } } }; add( list ); } @Override protected void layout() { super.layout(); int perRow = NUM_BUTTONS; float buttonWidth = width()/perRow; for (int i = 0; i < NUM_BUTTONS; i++) { itemButtons[i].setRect((i%perRow) * (buttonWidth), (i/perRow) * (ITEM_HEIGHT ), buttonWidth, ITEM_HEIGHT); PixelScene.align(itemButtons[i]); } list.setRect(0, itemButtons[NUM_BUTTONS-1].bottom() + 1, width, height - itemButtons[NUM_BUTTONS-1].bottom() - 1); } private void updateList() { items.clear(); for (int i = 0; i < NUM_BUTTONS; i++){ if (i == currentItemIdx){ itemButtons[i].icon().color(TITLE_COLOR); } else { itemButtons[i].icon().resetColor(); } } Component content = list.content(); content.clear(); list.scrollTo( 0, 0 ); ArrayList<Class<? extends Item>> itemClasses; final HashMap<Class<? extends Item>, Boolean> known = new HashMap<>(); if (currentItemIdx == WEAPON_IDX) { itemClasses = new ArrayList<>(Catalog.WEAPONS.items()); for (Class<? extends Item> cls : itemClasses) known.put(cls, true); } else if (currentItemIdx == ARMOR_IDX){ itemClasses = new ArrayList<>(Catalog.ARMOR.items()); for (Class<? extends Item> cls : itemClasses) known.put(cls, true); } else if (currentItemIdx == WAND_IDX){ itemClasses = new ArrayList<>(Catalog.WANDS.items()); for (Class<? extends Item> cls : itemClasses) known.put(cls, true); } else if (currentItemIdx == RING_IDX){ itemClasses = new ArrayList<>(Catalog.RINGS.items()); for (Class<? extends Item> cls : itemClasses) known.put(cls, Ring.getKnown().contains(cls)); } else if (currentItemIdx == ARTIF_IDX){ itemClasses = new ArrayList<>(Catalog.ARTIFACTS.items()); for (Class<? extends Item> cls : itemClasses) known.put(cls, true); } else if (currentItemIdx == POTION_IDX){ itemClasses = new ArrayList<>(Catalog.POTIONS.items()); for (Class<? extends Item> cls : itemClasses) known.put(cls, Potion.getKnown().contains(cls)); } else if (currentItemIdx == SCROLL_IDX) { itemClasses = new ArrayList<>(Catalog.SCROLLS.items()); for (Class<? extends Item> cls : itemClasses) known.put(cls, Scroll.getKnown().contains(cls)); } else { itemClasses = new ArrayList<>(); } Collections.sort(itemClasses, new Comparator<Class<? extends Item>>() { @Override public int compare(Class<? extends Item> a, Class<? extends Item> b) { int result = 0; //specifically known items appear first, then seen items, then unknown items. if (known.get(a) && Catalog.isSeen(a)) result -= 2; if (known.get(b) && Catalog.isSeen(b)) result += 2; if (Catalog.isSeen(a)) result --; if (Catalog.isSeen(b)) result ++; return result; } }); float pos = 0; for (Class<? extends Item> itemClass : itemClasses) { CatalogItem item = new CatalogItem(Reflection.newInstance(itemClass), known.get(itemClass), Catalog.isSeen(itemClass)); item.setRect( 0, pos, width, ITEM_HEIGHT ); content.add( item ); items.add( item ); pos += item.height(); } content.setSize( width, pos ); list.setSize( list.width(), list.height() ); } private static class CatalogItem extends ListItem { private Item item; private boolean seen; public CatalogItem(Item item, boolean IDed, boolean seen ) { super( new ItemSprite(item), Messages.titleCase(item.trueName())); this.item = item; this.seen = seen; if ( seen && !IDed ){ if (item instanceof Ring){ ((Ring) item).anonymize(); } else if (item instanceof Potion){ ((Potion) item).anonymize(); } else if (item instanceof Scroll){ ((Scroll) item).anonymize(); } } if (!seen) { icon.copy( new ItemSprite( ItemSpriteSheet.SOMETHING + spriteIndexes[currentItemIdx], null) ); label.text("???"); label.hardlight( 0x999999 ); } else if (!IDed) { icon.copy( new ItemSprite( ItemSpriteSheet.SOMETHING + spriteIndexes[currentItemIdx], null) ); label.hardlight( 0xCCCCCC ); } } public boolean onClick( float x, float y ) { if (inside( x, y ) && seen) { if (item instanceof ClassArmor){ GameScene.show(new WndTitledMessage(new Image(icon), Messages.titleCase(item.trueName()), item.desc())); } else { GameScene.show(new WndTitledMessage(new Image(icon), Messages.titleCase(item.trueName()), item.info())); } return true; } else { return false; } } } } }
21,191
WndJournal
java
en
java
code
{"qsc_code_num_words": 2430, "qsc_code_num_chars": 21191.0, "qsc_code_mean_word_length": 5.57613169, "qsc_code_frac_words_unique": 0.13621399, "qsc_code_frac_chars_top_2grams": 0.01859779, "qsc_code_frac_chars_top_3grams": 0.06450185, "qsc_code_frac_chars_top_4grams": 0.07143911, "qsc_code_frac_chars_dupe_5grams": 0.49099631, "qsc_code_frac_chars_dupe_6grams": 0.36538745, "qsc_code_frac_chars_dupe_7grams": 0.29623616, "qsc_code_frac_chars_dupe_8grams": 0.26738007, "qsc_code_frac_chars_dupe_9grams": 0.26243542, "qsc_code_frac_chars_dupe_10grams": 0.24169742, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.01547894, "qsc_code_frac_chars_whitespace": 0.2225945, "qsc_code_size_file_byte": 21191.0, "qsc_code_num_lines": 745.0, "qsc_code_num_chars_line_max": 124.0, "qsc_code_num_chars_line_mean": 28.4442953, "qsc_code_frac_chars_alphabet": 0.80702926, "qsc_code_frac_chars_comments": 0.04284838, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.29553265, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.00113395, "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.0041414, "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.05154639, "qsc_codejava_score_lines_no_logic": 0.15120275, "qsc_codejava_frac_words_no_modifier": 0.83870968, "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/windows/WndKeymap.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.windows; import com.badlogic.gdx.Input; import com.shatteredpixel.shatteredpixeldungeon.input.GameAction; import com.shatteredpixel.shatteredpixeldungeon.input.PDInputProcessor; import com.shatteredpixel.shatteredpixeldungeon.scenes.PixelScene; import com.shatteredpixel.shatteredpixeldungeon.ui.RedButton; import com.shatteredpixel.shatteredpixeldungeon.ui.RenderedTextBlock; import com.shatteredpixel.shatteredpixeldungeon.ui.ScrollPane; import com.shatteredpixel.shatteredpixeldungeon.ui.Window; import com.watabou.input.NoosaInputProcessor; import com.watabou.noosa.BitmapText; import com.watabou.noosa.Game; import com.watabou.noosa.ui.Component; import java.util.HashMap; import java.util.Map; import java.util.TreeMap; public class WndKeymap extends Window { private static final int MARGIN = 0; private static final float ITEM_HEIGHT = 12; private static final int BTN_HEIGHT = 20; public static final String TXT_UNASSIGNED = "<None>"; private Component listContent; private int tempPos = 0; private final Map<GameAction, ListItem> items = new HashMap<>(32); private static class KeyPair { public int key1, key2; } public WndKeymap() { int ww = Math.min( 160, PixelScene.uiCamera.width - 16 ); int wh = PixelScene.uiCamera.height - 24; resize( ww, wh ); RedButton btnReset = new RedButton( "Reset To Defaults" ) { @Override protected void onClick() { resetToDefaults(); populateList(); } }; btnReset.setRect( 0, height - BTN_HEIGHT, width, BTN_HEIGHT ); add( btnReset ); listContent = new Component(); final ScrollPane list = new ScrollPane(listContent) { @Override public void onClick( float x, float y ) { for (ListItem item : items.values()) { if (item.onClick( x, y )) { break; } } } }; populateList(); add(list); list.setRect(0, 0, width, btnReset.top() ); } private void populateList() { listContent.clear(); tempPos = 0; final PDInputProcessor inputProcessor = (PDInputProcessor) Game.instance.getInputProcessor(); final Map<Integer, PDInputProcessor.GameActionWrapper> keyMappings = inputProcessor.getKeyMappings(); final Map<GameAction, KeyPair> mappings = new TreeMap<>(); for (GameAction action : GameAction.values()) { if (action.getDescription() != null) { mappings.put( action, new KeyPair() ); } } for (Map.Entry<Integer, PDInputProcessor.GameActionWrapper> entry : keyMappings.entrySet()) { final Integer key = entry.getKey(); final PDInputProcessor.GameActionWrapper value = entry.getValue(); final GameAction action = value.gameAction; final KeyPair keyPair = mappings.get(action); /* if (keyPair == null) { mappings.put(action, keyPair = new KeyPair()); }*/ if (value.defaultKey) { keyPair.key1 = key; } else { keyPair.key2 = key; } } for (Map.Entry<GameAction, KeyPair> entry : mappings.entrySet()) { addKey(listContent, width, entry); } listContent.setSize( 0, tempPos); } private void addKey(Component content, int maxWidth, Map.Entry<GameAction, KeyPair> entry) { final GameAction action = entry.getKey(); final ListItem keyItem = new ListItem(action, entry.getValue()); keyItem.setRect(0, tempPos, maxWidth, ITEM_HEIGHT); tempPos += ITEM_HEIGHT; content.add(keyItem); items.put(action, keyItem); } private void resetToDefaults() { ((PDInputProcessor)Game.instance.getInputProcessor()).resetKeyMappings(); } private class ListItem extends Component { private static final int BOUND = TITLE_COLOR; private static final int NOT_BOUND = 0xCACFC2; private final GameAction gameAction; private final KeyPair keys; private RenderedTextBlock action; private RenderedTextBlock key1; private RenderedTextBlock key2; public ListItem( GameAction gameAction, KeyPair keys ) { super(); this.gameAction = gameAction; this.keys = keys; action.text(gameAction.getDescription()); //action.measure(); reconfigureKeysText(); } @Override protected void createChildren() { action = PixelScene.renderTextBlock( 9 ); add( action ); key1 = PixelScene.renderTextBlock( 9 ); add( key1 ); key2 = PixelScene.renderTextBlock( 9 ); add( key2 ); } @Override protected void layout() { final float ty = y + (height - action.height()) / 2; final float w4 = width / 4; action.setPos( MARGIN, ty ); key1.setPos( w4 * 2 + (w4 - key1.width()) / 2, ty ); key2.setPos( w4 * 3 + (w4 - key2.width()) / 2, ty ); } private void reconfigureKeysText() { if (keys.key1 > 0) { key1.text( Input.Keys.toString( keys.key1 ) ); key1.hardlight( BOUND ); } else { key1.text( TXT_UNASSIGNED ); key1.hardlight( NOT_BOUND ); } //key1.measure(); if (keys.key2 > 0) { key2.text( Input.Keys.toString( keys.key2 ) ); key2.hardlight( BOUND ); } else { key2.text( TXT_UNASSIGNED ); key2.hardlight( NOT_BOUND ); } //key2.measure(); layout(); } public int getKey(boolean defaultKey) { if (defaultKey) { return this.keys.key1; } else { return this.keys.key2; } } public void setKey(boolean defaultKey, int keycode) { if (defaultKey) { this.keys.key1 = keycode; } else { this.keys.key2 = keycode; } reconfigureKeysText(); } public boolean onClick( float x, float y ) { if (x < this.x || x > this.x + width || y < this.y || y > this.y + height) { return false; } final boolean defaultKey = x < width * 3 / 4; final String message = "Press a key for \"" + gameAction.getDescription() + "\", or press " + Input.Keys.toString(PDInputProcessor.MODIFIER_KEY) + " to remove the binding."; Game.scene().add( new WndMessage( message ) { @Override protected void onKeyDown( NoosaInputProcessor.Key key ) { final PDInputProcessor inputProcessor = (PDInputProcessor) Game.instance.getInputProcessor(); final Map<Integer, PDInputProcessor.GameActionWrapper> keyMappings = inputProcessor.getKeyMappings(); int oldKeycode = getKey(defaultKey); inputProcessor.removeKeyMapping( gameAction, defaultKey, oldKeycode); // Don't allow the modifier key to be replaced. TODO: This should probably be improved if (key.code == PDInputProcessor.MODIFIER_KEY) { setKey(defaultKey, 0); } else { setKey(defaultKey, key.code); final PDInputProcessor.GameActionWrapper replacedAction = inputProcessor.setKeyMapping( gameAction, defaultKey, key.code); if (replacedAction != null) { final ListItem replacedItem = items.get(replacedAction.gameAction); replacedItem.setKey(replacedAction.defaultKey, 0); } } hide(); } } ); return true; } } }
7,576
WndKeymap
java
en
java
code
{"qsc_code_num_words": 855, "qsc_code_num_chars": 7576.0, "qsc_code_mean_word_length": 6.14385965, "qsc_code_frac_words_unique": 0.27953216, "qsc_code_frac_chars_top_2grams": 0.02055968, "qsc_code_frac_chars_top_3grams": 0.05787169, "qsc_code_frac_chars_top_4grams": 0.05863316, "qsc_code_frac_chars_dupe_5grams": 0.16105083, "qsc_code_frac_chars_dupe_6grams": 0.07424329, "qsc_code_frac_chars_dupe_7grams": 0.06358271, "qsc_code_frac_chars_dupe_8grams": 0.06358271, "qsc_code_frac_chars_dupe_9grams": 0.06358271, "qsc_code_frac_chars_dupe_10grams": 0.06358271, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.01504989, "qsc_code_frac_chars_whitespace": 0.19310982, "qsc_code_size_file_byte": 7576.0, "qsc_code_num_lines": 273.0, "qsc_code_num_chars_line_max": 129.0, "qsc_code_num_chars_line_mean": 27.75091575, "qsc_code_frac_chars_alphabet": 0.84426632, "qsc_code_frac_chars_comments": 0.13239176, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.12169312, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.01627872, "qsc_code_frac_chars_long_word_length": 0.00410771, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.0012171, "qsc_code_frac_lines_prompt_comments": 0.003663, "qsc_code_frac_lines_assert": 0.0, "qsc_codejava_cate_var_zero": 0.0, "qsc_codejava_frac_lines_func_ratio": 0.06349206, "qsc_codejava_score_lines_no_logic": 0.1957672, "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/windows/WndInfoMob.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.windows; import com.shatteredpixel.shatteredpixeldungeon.actors.mobs.Mob; import com.shatteredpixel.shatteredpixeldungeon.messages.Messages; import com.shatteredpixel.shatteredpixeldungeon.scenes.PixelScene; import com.shatteredpixel.shatteredpixeldungeon.sprites.CharSprite; import com.shatteredpixel.shatteredpixeldungeon.ui.BuffIndicator; import com.shatteredpixel.shatteredpixeldungeon.ui.HealthBar; import com.shatteredpixel.shatteredpixeldungeon.ui.RenderedTextBlock; import com.watabou.noosa.ui.Component; public class WndInfoMob extends WndTitledMessage { public WndInfoMob( Mob mob ) { super( new MobTitle( mob ), mob.description() ); } private static class MobTitle extends Component { private static final int GAP = 2; private CharSprite image; private RenderedTextBlock name; private HealthBar health; private BuffIndicator buffs; public MobTitle( Mob mob ) { name = PixelScene.renderTextBlock( Messages.titleCase( mob.name ), 9 ); name.hardlight( TITLE_COLOR ); add( name ); image = mob.sprite(); add( image ); health = new HealthBar(); health.level(mob); add( health ); buffs = new BuffIndicator( mob ); add( buffs ); } @Override protected void layout() { image.x = 0; image.y = Math.max( 0, name.height() + health.height() - image.height ); name.setPos(x + image.width + GAP, image.height > name.height() ? y +(image.height() - name.height()) / 2 : y); float w = width - image.width - GAP; health.setRect(image.width + GAP, name.bottom() + GAP, w, health.height()); buffs.setPos( name.right() + GAP-1, name.bottom() - BuffIndicator.SIZE-2 ); height = health.bottom(); } } }
2,554
WndInfoMob
java
en
java
code
{"qsc_code_num_words": 317, "qsc_code_num_chars": 2554.0, "qsc_code_mean_word_length": 5.78233438, "qsc_code_frac_words_unique": 0.45741325, "qsc_code_frac_chars_top_2grams": 0.07419531, "qsc_code_frac_chars_top_3grams": 0.16584834, "qsc_code_frac_chars_top_4grams": 0.16803055, "qsc_code_frac_chars_dupe_5grams": 0.12002182, "qsc_code_frac_chars_dupe_6grams": 0.03055101, "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.01147776, "qsc_code_frac_chars_whitespace": 0.18128426, "qsc_code_size_file_byte": 2554.0, "qsc_code_num_lines": 87.0, "qsc_code_num_chars_line_max": 82.0, "qsc_code_num_chars_line_mean": 29.35632184, "qsc_code_frac_chars_alphabet": 0.8651363, "qsc_code_frac_chars_comments": 0.30579483, "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.0212766, "qsc_codejava_score_lines_no_logic": 0.29787234, "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}