the whole game

This commit is contained in:
Kolyah35
2026-03-02 22:04:18 +03:00
parent 816e9060b4
commit f0617a5d22
2069 changed files with 581500 additions and 0 deletions

226
src/client/sound/Sound.cpp Executable file
View File

@@ -0,0 +1,226 @@
#include "Sound.h"
#if !defined(PRE_ANDROID23) && !defined(__APPLE__) && !defined(RPI)
#include "data/cloth1.pcm"
#include "data/cloth2.pcm"
#include "data/cloth3.pcm"
#include "data/cloth4.pcm"
#include "data/grass1.pcm"
#include "data/grass2.pcm"
#include "data/grass3.pcm"
#include "data/grass4.pcm"
#include "data/gravel1.pcm"
#include "data/gravel2.pcm"
#include "data/gravel3.pcm"
#include "data/gravel4.pcm"
#include "data/sand1.pcm"
#include "data/sand2.pcm"
#include "data/sand3.pcm"
#include "data/sand4.pcm"
#include "data/stone1.pcm"
#include "data/stone2.pcm"
#include "data/stone3.pcm"
#include "data/stone4.pcm"
#include "data/wood1.pcm"
#include "data/wood2.pcm"
#include "data/wood3.pcm"
#include "data/wood4.pcm"
#include "data/click.pcm"
#include "data/explode.pcm"
#include "data/splash.pcm"
#include "data/pop.pcm"
#include "data/pop2.pcm"
#include "data/hurt.pcm"
#include "data/door_open.pcm"
#include "data/door_close.pcm"
#include "data/glass1.pcm"
#include "data/glass2.pcm"
#include "data/glass3.pcm"
#include "data/sheep1.pcm"
#include "data/sheep2.pcm"
#include "data/sheep3.pcm"
#include "data/pig1.pcm"
#include "data/pig2.pcm"
#include "data/pig3.pcm"
#include "data/pigdeath.pcm"
//#include "data/chicken1.pcm"
#include "data/chicken2.pcm"
#include "data/chicken3.pcm"
#include "data/chickenhurt1.pcm"
#include "data/chickenhurt2.pcm"
#include "data/cow1.pcm"
#include "data/cow2.pcm"
#include "data/cow3.pcm"
#include "data/cow4.pcm"
#include "data/cowhurt1.pcm"
#include "data/cowhurt2.pcm"
#include "data/cowhurt3.pcm"
#include "data/zombie1.pcm"
#include "data/zombie2.pcm"
#include "data/zombie3.pcm"
#include "data/zombiedeath.pcm"
#include "data/zombiehurt1.pcm"
#include "data/zombiehurt2.pcm"
#include "data/zpig1.pcm"
#include "data/zpig2.pcm"
#include "data/zpig3.pcm"
#include "data/zpig4.pcm"
#include "data/zpigangry1.pcm"
#include "data/zpigangry2.pcm"
#include "data/zpigangry3.pcm"
#include "data/zpigangry4.pcm"
#include "data/zpigdeath.pcm"
#include "data/zpighurt1.pcm"
#include "data/zpighurt2.pcm"
#include "data/bow.pcm"
#include "data/bowhit1.pcm"
#include "data/bowhit2.pcm"
#include "data/bowhit3.pcm"
#include "data/bowhit4.pcm"
#include "data/fallbig1.pcm"
#include "data/fallbig2.pcm"
#include "data/fallsmall.pcm"
#include "data/skeleton1.pcm"
#include "data/skeleton2.pcm"
#include "data/skeleton3.pcm"
#include "data/skeletondeath.pcm"
#include "data/skeletonhurt1.pcm"
#include "data/skeletonhurt2.pcm"
#include "data/skeletonhurt3.pcm"
#include "data/skeletonhurt4.pcm"
#include "data/spider1.pcm"
#include "data/spider2.pcm"
#include "data/spider3.pcm"
#include "data/spider4.pcm"
#include "data/spiderdeath.pcm"
#include "data/creeper1.pcm"
#include "data/creeper2.pcm"
#include "data/creeper3.pcm"
#include "data/creeper4.pcm"
#include "data/creeperdeath.pcm"
#include "data/eat1.pcm"
#include "data/eat2.pcm"
#include "data/eat3.pcm"
#include "data/fuse.pcm"
SoundDesc SA_cloth1((char*)PCM_cloth1);
SoundDesc SA_cloth2((char*)PCM_cloth2);
SoundDesc SA_cloth3((char*)PCM_cloth3);
SoundDesc SA_cloth4((char*)PCM_cloth4);
SoundDesc SA_grass1((char*)PCM_grass1);
SoundDesc SA_grass2((char*)PCM_grass2);
SoundDesc SA_grass3((char*)PCM_grass3);
SoundDesc SA_grass4((char*)PCM_grass4);
SoundDesc SA_gravel1((char*)PCM_gravel1);
SoundDesc SA_gravel2((char*)PCM_gravel2);
SoundDesc SA_gravel3((char*)PCM_gravel3);
SoundDesc SA_gravel4((char*)PCM_gravel4);
SoundDesc SA_sand1((char*)PCM_sand1);
SoundDesc SA_sand2((char*)PCM_sand2);
SoundDesc SA_sand3((char*)PCM_sand3);
SoundDesc SA_sand4((char*)PCM_sand4);
SoundDesc SA_stone1((char*)PCM_stone1);
SoundDesc SA_stone2((char*)PCM_stone2);
SoundDesc SA_stone3((char*)PCM_stone3);
SoundDesc SA_stone4((char*)PCM_stone4);
SoundDesc SA_wood1((char*)PCM_wood1);
SoundDesc SA_wood2((char*)PCM_wood2);
SoundDesc SA_wood3((char*)PCM_wood3);
SoundDesc SA_wood4((char*)PCM_wood4);
SoundDesc SA_click((char*)PCM_click);
SoundDesc SA_explode((char*)PCM_explode);
SoundDesc SA_splash((char*)PCM_splash);
SoundDesc SA_door_open((char*)PCM_door_open);
SoundDesc SA_door_close((char*)PCM_door_close);
SoundDesc SA_pop((char*)PCM_pop);
SoundDesc SA_hurt((char*)PCM_hurt);
SoundDesc SA_glass1((char*)PCM_glass1);
SoundDesc SA_glass2((char*)PCM_glass2);
SoundDesc SA_glass3((char*)PCM_glass3);
SoundDesc SA_sheep1((char*)PCM_sheep1);
SoundDesc SA_sheep2((char*)PCM_sheep2);
SoundDesc SA_sheep3((char*)PCM_sheep3);
SoundDesc SA_pig1((char*)PCM_pig1);
SoundDesc SA_pig2((char*)PCM_pig2);
SoundDesc SA_pig3((char*)PCM_pig3);
SoundDesc SA_pigdeath((char*)PCM_pigdeath);
//SoundDesc SA_chicken1((char*)PCM_chicken1);
SoundDesc SA_chicken2((char*)PCM_chicken2);
SoundDesc SA_chicken3((char*)PCM_chicken3);
SoundDesc SA_chickenhurt1((char*)PCM_chickenhurt1);
SoundDesc SA_chickenhurt2((char*)PCM_chickenhurt2);
SoundDesc SA_cow1((char*)PCM_cow1);
SoundDesc SA_cow2((char*)PCM_cow2);
SoundDesc SA_cow3((char*)PCM_cow3);
SoundDesc SA_cow4((char*)PCM_cow4);
SoundDesc SA_cowhurt1((char*)PCM_cowhurt1);
SoundDesc SA_cowhurt2((char*)PCM_cowhurt2);
SoundDesc SA_cowhurt3((char*)PCM_cowhurt3);
SoundDesc SA_zombie1((char*)PCM_zombie1);
SoundDesc SA_zombie2((char*)PCM_zombie2);
SoundDesc SA_zombie3((char*)PCM_zombie3);
SoundDesc SA_zpig1((char*)PCM_zpig1);
SoundDesc SA_zpig2((char*)PCM_zpig2);
SoundDesc SA_zpig3((char*)PCM_zpig3);
SoundDesc SA_zpig4((char*)PCM_zpig4);
SoundDesc SA_zpigangry1((char*)PCM_zpigangry1);
SoundDesc SA_zpigangry2((char*)PCM_zpigangry2);
SoundDesc SA_zpigangry3((char*)PCM_zpigangry3);
SoundDesc SA_zpigangry4((char*)PCM_zpigangry4);
SoundDesc SA_zpigdeath((char*)PCM_zpigdeath);
SoundDesc SA_zpighurt1((char*)PCM_zpighurt1);
SoundDesc SA_zpighurt2((char*)PCM_zpighurt2);
SoundDesc SA_zombiedeath((char*)PCM_zombiedeath);
SoundDesc SA_zombiehurt1((char*)PCM_zombiehurt1);
SoundDesc SA_zombiehurt2((char*)PCM_zombiehurt2);
SoundDesc SA_bow((char*)PCM_bow);
SoundDesc SA_bowhit1((char*)PCM_bowhit1);
SoundDesc SA_bowhit2((char*)PCM_bowhit2);
SoundDesc SA_bowhit3((char*)PCM_bowhit3);
SoundDesc SA_bowhit4((char*)PCM_bowhit4);
SoundDesc SA_fallbig1((char*)PCM_fallbig1);
SoundDesc SA_fallbig2((char*)PCM_fallbig2);
SoundDesc SA_fallsmall((char*)PCM_fallsmall);
SoundDesc SA_skeleton1((char*)PCM_skeleton1);
SoundDesc SA_skeleton2((char*)PCM_skeleton2);
SoundDesc SA_skeleton3((char*)PCM_skeleton3);
SoundDesc SA_skeletondeath((char*)PCM_skeletondeath);
SoundDesc SA_skeletonhurt1((char*)PCM_skeletonhurt1);
SoundDesc SA_skeletonhurt2((char*)PCM_skeletonhurt2);
SoundDesc SA_skeletonhurt3((char*)PCM_skeletonhurt3);
SoundDesc SA_skeletonhurt4((char*)PCM_skeletonhurt4);
SoundDesc SA_spider1((char*)PCM_spider1);
SoundDesc SA_spider2((char*)PCM_spider2);
SoundDesc SA_spider3((char*)PCM_spider3);
SoundDesc SA_spider4((char*)PCM_spider4);
SoundDesc SA_spiderdeath((char*)PCM_spiderdeath);
SoundDesc SA_creeper1((char*)PCM_creeper1);
SoundDesc SA_creeper2((char*)PCM_creeper2);
SoundDesc SA_creeper3((char*)PCM_creeper3);
SoundDesc SA_creeper4((char*)PCM_creeper4);
SoundDesc SA_creeperdeath((char*)PCM_creeperdeath);
SoundDesc SA_eat1((char*)PCM_eat1);
SoundDesc SA_eat2((char*)PCM_eat2);
SoundDesc SA_eat3((char*)PCM_eat3);
SoundDesc SA_fuse((char*)PCM_fuse);
#endif /*!PRE_ANDROID23 && !__APPLE__*/

180
src/client/sound/Sound.h Executable file
View File

@@ -0,0 +1,180 @@
#ifndef NET_MINECRAFT_CLIENT_SOUND__Sound_H__
#define NET_MINECRAFT_CLIENT_SOUND__Sound_H__
//package net.minecraft.client.sound;
#include <string>
class SoundDesc
{
public:
SoundDesc()
: buffer(0)
{}
SoundDesc(char* data, int size, int channels, int width, int rate)
: buffer(data),
frames(data),
size(size),
channels(channels),
byteWidth(width),
frameRate(rate)
{
numFrames = size / (channels * byteWidth);
}
SoundDesc(char* data)
: buffer(data)
{
// header [INT][Channels, BytePerSample, FrameRate, NumFrames]
channels = *((int*)&data[0]);
byteWidth = *((int*)&data[4]);
frameRate = *((int*)&data[8]);
numFrames = *((int*)&data[12]);
size = channels * byteWidth * numFrames;
frames = buffer + 16;
}
bool isValid() const { return buffer != 0; }
float length() const {
return ((float)numFrames) / frameRate;
}
void destroy() const {
if (isValid()) {
delete buffer;
buffer = 0;
}
}
char* frames;
int size;
int channels;
int byteWidth;
int frameRate;
int numFrames;
std::string name;
private:
mutable char* buffer;
};
#if !defined(PRE_ANDROID23) && !defined(__APPLE__) && !defined(RPI)
extern SoundDesc SA_cloth1;
extern SoundDesc SA_cloth2;
extern SoundDesc SA_cloth3;
extern SoundDesc SA_cloth4;
extern SoundDesc SA_grass1;
extern SoundDesc SA_grass2;
extern SoundDesc SA_grass3;
extern SoundDesc SA_grass4;
extern SoundDesc SA_gravel1;
extern SoundDesc SA_gravel2;
extern SoundDesc SA_gravel3;
extern SoundDesc SA_gravel4;
extern SoundDesc SA_sand1;
extern SoundDesc SA_sand2;
extern SoundDesc SA_sand3;
extern SoundDesc SA_sand4;
extern SoundDesc SA_stone1;
extern SoundDesc SA_stone2;
extern SoundDesc SA_stone3;
extern SoundDesc SA_stone4;
extern SoundDesc SA_wood1;
extern SoundDesc SA_wood2;
extern SoundDesc SA_wood3;
extern SoundDesc SA_wood4;
extern SoundDesc SA_click;
extern SoundDesc SA_explode;
extern SoundDesc SA_splash;
extern SoundDesc SA_door_open;
extern SoundDesc SA_door_close;
extern SoundDesc SA_pop;
extern SoundDesc SA_pop2;
extern SoundDesc SA_hurt;
extern SoundDesc SA_glass1;
extern SoundDesc SA_glass2;
extern SoundDesc SA_glass3;
extern SoundDesc SA_sheep1;
extern SoundDesc SA_sheep2;
extern SoundDesc SA_sheep3;
extern SoundDesc SA_pig1;
extern SoundDesc SA_pig2;
extern SoundDesc SA_pig3;
extern SoundDesc SA_pigdeath;
//extern SoundDesc SA_chicken1;
extern SoundDesc SA_chicken2;
extern SoundDesc SA_chicken3;
extern SoundDesc SA_chickenhurt1;
extern SoundDesc SA_chickenhurt2;
extern SoundDesc SA_cow1;
extern SoundDesc SA_cow2;
extern SoundDesc SA_cow3;
extern SoundDesc SA_cow4;
extern SoundDesc SA_cowhurt1;
extern SoundDesc SA_cowhurt2;
extern SoundDesc SA_cowhurt3;
extern SoundDesc SA_zombie1;
extern SoundDesc SA_zombie2;
extern SoundDesc SA_zombie3;
extern SoundDesc SA_zombiedeath;
extern SoundDesc SA_zombiehurt1;
extern SoundDesc SA_zombiehurt2;
extern SoundDesc SA_zpig1;
extern SoundDesc SA_zpig2;
extern SoundDesc SA_zpig3;
extern SoundDesc SA_zpig4;
extern SoundDesc SA_zpigangry1;
extern SoundDesc SA_zpigangry2;
extern SoundDesc SA_zpigangry3;
extern SoundDesc SA_zpigangry4;
extern SoundDesc SA_zpigdeath;
extern SoundDesc SA_zpighurt1;
extern SoundDesc SA_zpighurt2;
extern SoundDesc SA_bow;
extern SoundDesc SA_bowhit1;
extern SoundDesc SA_bowhit2;
extern SoundDesc SA_bowhit3;
extern SoundDesc SA_bowhit4;
extern SoundDesc SA_fallbig1;
extern SoundDesc SA_fallbig2;
extern SoundDesc SA_fallsmall;
extern SoundDesc SA_skeleton1;
extern SoundDesc SA_skeleton2;
extern SoundDesc SA_skeleton3;
extern SoundDesc SA_skeletondeath;
extern SoundDesc SA_skeletonhurt1;
extern SoundDesc SA_skeletonhurt2;
extern SoundDesc SA_skeletonhurt3;
extern SoundDesc SA_skeletonhurt4;
extern SoundDesc SA_spider1;
extern SoundDesc SA_spider2;
extern SoundDesc SA_spider3;
extern SoundDesc SA_spider4;
extern SoundDesc SA_spiderdeath;
extern SoundDesc SA_creeper1;
extern SoundDesc SA_creeper2;
extern SoundDesc SA_creeper3;
extern SoundDesc SA_creeper4;
extern SoundDesc SA_creeperdeath;
extern SoundDesc SA_eat1;
extern SoundDesc SA_eat2;
extern SoundDesc SA_eat3;
extern SoundDesc SA_fuse;
#endif /*!PRE_ANDROID23 && !__APPLE__*/
#endif /*NET_MINECRAFT_CLIENT_SOUND__Sound_H__*/

254
src/client/sound/SoundEngine.cpp Executable file
View File

@@ -0,0 +1,254 @@
#include "SoundEngine.h"
#include "../Options.h"
#include "../Minecraft.h"
#include "../../world/entity/Mob.h"
SoundEngine::SoundEngine( float maxDistance )
: idCounter(0),
mc(0),
_x(0),
_y(0),
_z(0),
_yRot(0),
_invMaxDistance(1.0f / maxDistance)
{
}
SoundEngine::~SoundEngine()
{
}
void SoundEngine::init( Minecraft* mc, Options* options )
{
this->mc = mc;
this->options = options;
if (/*!loaded && */(options == NULL || (options->sound != 0 || options->music != 0))) {
loadLibrary();
}
#if !defined(PRE_ANDROID23) && !defined(__APPLE__) && !defined(RPI)
sounds.add("step.cloth", SA_cloth1);
sounds.add("step.cloth", SA_cloth2);
sounds.add("step.cloth", SA_cloth3);
sounds.add("step.cloth", SA_cloth4);
sounds.add("step.grass", SA_grass1);
sounds.add("step.grass", SA_grass2);
sounds.add("step.grass", SA_grass3);
sounds.add("step.grass", SA_grass4);
sounds.add("step.gravel", SA_gravel1);
sounds.add("step.gravel", SA_gravel2);
sounds.add("step.gravel", SA_gravel3);
sounds.add("step.gravel", SA_gravel4);
sounds.add("step.sand", SA_sand1);
sounds.add("step.sand", SA_sand2);
sounds.add("step.sand", SA_sand3);
sounds.add("step.sand", SA_sand4);
sounds.add("step.stone", SA_stone1);
sounds.add("step.stone", SA_stone2);
sounds.add("step.stone", SA_stone3);
sounds.add("step.stone", SA_stone4);
sounds.add("step.wood", SA_wood1);
sounds.add("step.wood", SA_wood2);
sounds.add("step.wood", SA_wood3);
sounds.add("step.wood", SA_wood4);
sounds.add("random.splash", SA_splash);
sounds.add("random.explode", SA_explode);
sounds.add("random.click", SA_click);
sounds.add("random.door_open", SA_door_open);
sounds.add("random.door_close", SA_door_close);
sounds.add("random.pop", SA_pop);
sounds.add("random.pop2", SA_pop2);
sounds.add("random.hurt", SA_hurt);
sounds.add("random.glass", SA_glass1);
sounds.add("random.glass", SA_glass2);
sounds.add("random.glass", SA_glass3);
sounds.add("mob.sheep", SA_sheep1);
sounds.add("mob.sheep", SA_sheep2);
sounds.add("mob.sheep", SA_sheep3);
sounds.add("mob.pig", SA_pig1);
sounds.add("mob.pig", SA_pig2);
sounds.add("mob.pig", SA_pig3);
sounds.add("mob.pigdeath", SA_pigdeath);
sounds.add("mob.cow", SA_cow1);
sounds.add("mob.cow", SA_cow2);
sounds.add("mob.cow", SA_cow3);
sounds.add("mob.cow", SA_cow4);
sounds.add("mob.cowhurt", SA_cowhurt1);
sounds.add("mob.cowhurt", SA_cowhurt2);
sounds.add("mob.cowhurt", SA_cowhurt3);
sounds.add("mob.chicken", SA_chicken2);
sounds.add("mob.chicken", SA_chicken3);
sounds.add("mob.chickenhurt", SA_chickenhurt1);
sounds.add("mob.chickenhurt", SA_chickenhurt2);
sounds.add("mob.zombie", SA_zombie1);
sounds.add("mob.zombie", SA_zombie2);
sounds.add("mob.zombie", SA_zombie3);
sounds.add("mob.zombiedeath", SA_zombiedeath);
sounds.add("mob.zombiehurt", SA_zombiehurt1);
sounds.add("mob.zombiehurt", SA_zombiehurt2);
sounds.add("mob.skeleton", SA_skeleton1);
sounds.add("mob.skeleton", SA_skeleton2);
sounds.add("mob.skeleton", SA_skeleton3);
sounds.add("mob.skeletonhurt", SA_skeletonhurt1);
sounds.add("mob.skeletonhurt", SA_skeletonhurt2);
sounds.add("mob.skeletonhurt", SA_skeletonhurt3);
sounds.add("mob.skeletonhurt", SA_skeletonhurt4);
sounds.add("mob.spider", SA_spider1);
sounds.add("mob.spider", SA_spider2);
sounds.add("mob.spider", SA_spider3);
sounds.add("mob.spider", SA_spider4);
sounds.add("mob.spiderdeath", SA_spiderdeath);
sounds.add("mob.zombiepig.zpig", SA_zpig1);
sounds.add("mob.zombiepig.zpig", SA_zpig2);
sounds.add("mob.zombiepig.zpig", SA_zpig3);
sounds.add("mob.zombiepig.zpig", SA_zpig4);
sounds.add("mob.zombiepig.zpigangry", SA_zpigangry1);
sounds.add("mob.zombiepig.zpigangry", SA_zpigangry2);
sounds.add("mob.zombiepig.zpigangry", SA_zpigangry3);
sounds.add("mob.zombiepig.zpigangry", SA_zpigangry4);
sounds.add("mob.zombiepig.zpigdeath", SA_zpigdeath);
sounds.add("mob.zombiepig.zpighurt", SA_zpighurt1);
sounds.add("mob.zombiepig.zpighurt", SA_zpighurt2);
sounds.add("damage.fallbig", SA_fallbig1);
sounds.add("damage.fallbig", SA_fallbig2);
sounds.add("damage.fallsmall", SA_fallsmall);
sounds.add("random.bow", SA_bow);
sounds.add("random.bowhit", SA_bowhit1);
sounds.add("random.bowhit", SA_bowhit2);
sounds.add("random.bowhit", SA_bowhit3);
sounds.add("random.bowhit", SA_bowhit4);
sounds.add("mob.creeper", SA_creeper1);
sounds.add("mob.creeper", SA_creeper2);
sounds.add("mob.creeper", SA_creeper3);
sounds.add("mob.creeper", SA_creeper4);
sounds.add("mob.creeperdeath", SA_creeperdeath);
sounds.add("random.eat", SA_eat1);
sounds.add("random.eat", SA_eat2);
sounds.add("random.eat", SA_eat3);
sounds.add("random.fuse", SA_fuse);
#endif
}
void SoundEngine::enable( bool status )
{
#if defined(__APPLE__)
soundSystem.enable(status);
#endif
}
void SoundEngine::updateOptions()
{
}
void SoundEngine::destroy()
{
//if (loaded) soundSystem.cleanup();
}
void SoundEngine::update( Mob* player, float a )
{
if (/*!loaded || */options->sound == 0) return;
if (player == NULL) return;
_x = player->xo + (player->x - player->xo) * a;
_y = player->yo + (player->y - player->yo) * a;
_z = player->zo + (player->z - player->zo) * a;
_yRot = player->yRotO + (player->yRot - player->yRotO) * a;
soundSystem.setListenerAngle(_yRot);
//soundSystem.setListenerPos(_x, _y, _z); //@note: not used, since we translate all sounds to Player space
}
float SoundEngine::_getVolumeMult( float x, float y, float z )
{
const float dx = x - _x;
const float dy = y - _y;
const float dz = z - _z;
const float dist = Mth::sqrt(dx*dx + dy*dy + dz*dz);
const float out = Mth::clamp(1.1f - dist*_invMaxDistance, -1.0f, 1.0f);
return out;
}
#if defined(PRE_ANDROID23)
void SoundEngine::play(const std::string& name, float x, float y, float z, float volume, float pitch) {
//volume *= (2.0f * _getVolumeMult(x, y, z))
if ((volume *= options->sound) <= 0) return;
volume *= _getVolumeMult(x, y, z);
mc->platform()->playSound(name, volume, pitch);
}
void SoundEngine::playUI(const std::string& name, float volume, float pitch) {
if ((volume *= options->sound) <= 0) return;
//volume *= 2.0f;
mc->platform()->playSound(name, volume, pitch);
}
#elif defined(__APPLE__)
void SoundEngine::play(const std::string& name, float x, float y, float z, float volume, float pitch) {
if ((volume *= options->sound) <= 0) return;
volume = Mth::clamp(volume, 0.0f, 1.0f);
SoundDesc sound;
if (sounds.get(name, sound)) {
soundSystem.playAt(sound, x-_x, y-_y, z-_z, volume, pitch);
}
}
void SoundEngine::playUI(const std::string& name, float volume, float pitch) {
if ((volume *= options->sound) <= 0) return;
volume = Mth::clamp(volume, 0.0f, 1.0f);
if (/*!loaded || */options->sound == 0 || volume <= 0) return;
SoundDesc sound;
if (sounds.get(name, sound)) {
soundSystem.playAt(sound, 0, 0, 0, volume, pitch);
}
}
#elif defined(RPI)
void SoundEngine::play(const std::string& name, float x, float y, float z, float volume, float pitch) {}
void SoundEngine::playUI(const std::string& name, float volume, float pitch) {}
#else
void SoundEngine::play(const std::string& name, float x, float y, float z, float volume, float pitch) {
if ((volume *= options->sound) <= 0) return;
volume = Mth::clamp( volume * _getVolumeMult(x, y, z), 0.0f, 1.0f);
if (/*!loaded || */options->sound == 0 || volume <= 0) return;
SoundDesc sound;
if (sounds.get(name, sound)) {
float dist = SOUND_DISTANCE;
if (volume > 1) dist *= volume;
soundSystem.playAt(sound, x, y, z, volume, pitch);
}
}
void SoundEngine::playUI(const std::string& name, float volume, float pitch) {
if ((volume *= options->sound) <= 0) return;
volume = Mth::clamp(volume, 0.0f, 1.0f);
if (/*!loaded || */options->sound == 0 || volume <= 0) return;
SoundDesc sound;
if (sounds.get(name, sound)) {
soundSystem.playAt(sound, 0, 0, 0, volume, pitch);
}
}
#endif

68
src/client/sound/SoundEngine.h Executable file
View File

@@ -0,0 +1,68 @@
#ifndef NET_MINECRAFT_CLIENT_SOUND__SoundEngine_H__
#define NET_MINECRAFT_CLIENT_SOUND__SoundEngine_H__
//package net.minecraft.client.sound;
#if defined(ANDROID) && !defined(PRE_ANDROID23)
#include "../../platform/audio/SoundSystemSL.h"
#elif defined(__APPLE__)
#include "../../platform/audio/SoundSystemAL.h"
#else
#include "../../platform/audio/SoundSystem.h"
#endif
#include "SoundRepository.h"
#include "../../util/Random.h"
class Minecraft;
class Mob;
class Options;
class SoundEngine
{
static const int SOUND_DISTANCE = 16;
#if defined(ANDROID) && !defined(PRE_ANDROID23) && !defined(RPI)
SoundSystemSL soundSystem;
#elif defined(__APPLE__)
SoundSystemAL soundSystem;
#else
SoundSystem soundSystem;
#endif
Options* options;
int idCounter;
//static bool loaded;
Random random;
//int noMusicDelay = random.nextInt(20 * 60 * 10);
float _x;
float _y;
float _z;
float _yRot;
float _invMaxDistance;
public:
SoundEngine(float maxDistance);
~SoundEngine();
void init(Minecraft* mc, Options* options);
void destroy();
void enable(bool status);
void updateOptions();
void update(Mob* player, float a);
void play(const std::string& name, float x, float y, float z, float volume, float pitch);
void playUI(const std::string& name, float volume, float pitch);
float _getVolumeMult(float x, float y, float z);
private:
void loadLibrary() {}
SoundDesc _pp(const std::string& fn);
SoundRepository sounds;
Minecraft* mc;
};
#endif /*NET_MINECRAFT_CLIENT_SOUND__SoundEngine_H__*/

385
src/client/sound/SoundEngine.mm Executable file
View File

@@ -0,0 +1,385 @@
#include "SoundEngine.h"
#include "../Options.h"
#include "../Minecraft.h"
#include "../../world/entity/Mob.h"
/*
File: MyOpenALSupport.c
Abstract: OpenAL-related support functions
Version: 1.4
Disclaimer: IMPORTANT: This Apple software is supplied to you by Apple
Inc. ("Apple") in consideration of your agreement to the following
terms, and your use, installation, modification or redistribution of
this Apple software constitutes acceptance of these terms. If you do
not agree with these terms, please do not use, install, modify or
redistribute this Apple software.
In consideration of your agreement to abide by the following terms, and
subject to these terms, Apple grants you a personal, non-exclusive
license, under Apple's copyrights in this original Apple software (the
"Apple Software"), to use, reproduce, modify and redistribute the Apple
Software, with or without modifications, in source and/or binary forms;
provided that if you redistribute the Apple Software in its entirety and
without modifications, you must retain this notice and the following
text and disclaimers in all such redistributions of the Apple Software.
Neither the name, trademarks, service marks or logos of Apple Inc. may
be used to endorse or promote products derived from the Apple Software
without specific prior written permission from Apple. Except as
expressly stated in this notice, no other rights or licenses, express or
implied, are granted by Apple herein, including but not limited to any
patent rights that may be infringed by your derivative works or by other
works in which the Apple Software may be incorporated.
The Apple Software is provided by Apple on an "AS IS" basis. APPLE
MAKES NO WARRANTIES, EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION
THE IMPLIED WARRANTIES OF NON-INFRINGEMENT, MERCHANTABILITY AND FITNESS
FOR A PARTICULAR PURPOSE, REGARDING THE APPLE SOFTWARE OR ITS USE AND
OPERATION ALONE OR IN COMBINATION WITH YOUR PRODUCTS.
IN NO EVENT SHALL APPLE BE LIABLE FOR ANY SPECIAL, INDIRECT, INCIDENTAL
OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
INTERRUPTION) ARISING IN ANY WAY OUT OF THE USE, REPRODUCTION,
MODIFICATION AND/OR DISTRIBUTION OF THE APPLE SOFTWARE, HOWEVER CAUSED
AND WHETHER UNDER THEORY OF CONTRACT, TORT (INCLUDING NEGLIGENCE),
STRICT LIABILITY OR OTHERWISE, EVEN IF APPLE HAS BEEN ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE.
Copyright (C) 2009 Apple Inc. All Rights Reserved.
*/
#import <OpenAL/al.h>
#import <OpenAL/alc.h>
#import <AudioToolbox/AudioToolbox.h>
#import <AudioToolbox/ExtendedAudioFile.h>
//ALvoid alBufferDataStaticProc(const ALint bid, ALenum format, ALvoid* data, ALsizei size, ALsizei freq)
//{
// static alBufferDataStaticProcPtr proc = NULL;
//
// if (proc == NULL) {
// proc = (alBufferDataStaticProcPtr) alcGetProcAddress(NULL, (const ALCchar*) "alBufferDataStatic");
// }
//
// if (proc)
// proc(bid, format, data, size, freq);
//
// return;
//}
void* MyGetOpenALAudioData(CFURLRef inFileURL, ALsizei *outDataSize, ALenum *outDataFormat, ALsizei* outSampleRate)
{
OSStatus err = noErr;
SInt64 theFileLengthInFrames = 0;
AudioStreamBasicDescription theFileFormat;
UInt32 thePropertySize = sizeof(theFileFormat);
ExtAudioFileRef extRef = NULL;
void* theData = NULL;
AudioStreamBasicDescription theOutputFormat;
do {
// Open a file with ExtAudioFileOpen()
err = ExtAudioFileOpenURL(inFileURL, &extRef);
if(err) { printf("MyGetOpenALAudioData: ExtAudioFileOpenURL FAILED, Error = %ld\n", err); break; }
// Get the audio data format
err = ExtAudioFileGetProperty(extRef, kExtAudioFileProperty_FileDataFormat, &thePropertySize, &theFileFormat);
if(err) { printf("MyGetOpenALAudioData: ExtAudioFileGetProperty(kExtAudioFileProperty_FileDataFormat) FAILED, Error = %ld\n", err); break; }
if (theFileFormat.mChannelsPerFrame > 2) { printf("MyGetOpenALAudioData - Unsupported Format, channel count is greater than stereo\n"); break;}
// Set the client format to 16 bit signed integer (native-endian) data
// Maintain the channel count and sample rate of the original source format
theOutputFormat.mSampleRate = theFileFormat.mSampleRate;
theOutputFormat.mChannelsPerFrame = theFileFormat.mChannelsPerFrame;
theOutputFormat.mFormatID = kAudioFormatLinearPCM;
theOutputFormat.mBytesPerPacket = 2 * theOutputFormat.mChannelsPerFrame;
theOutputFormat.mFramesPerPacket = 1;
theOutputFormat.mBytesPerFrame = 2 * theOutputFormat.mChannelsPerFrame;
theOutputFormat.mBitsPerChannel = 16;
theOutputFormat.mFormatFlags = kAudioFormatFlagsNativeEndian | kAudioFormatFlagIsPacked | kAudioFormatFlagIsSignedInteger;
// Set the desired client (output) data format
err = ExtAudioFileSetProperty(extRef, kExtAudioFileProperty_ClientDataFormat, sizeof(theOutputFormat), &theOutputFormat);
if(err) { printf("MyGetOpenALAudioData: ExtAudioFileSetProperty(kExtAudioFileProperty_ClientDataFormat) FAILED, Error = %ld\n", err); break; }
// Get the total frame count
thePropertySize = sizeof(theFileLengthInFrames);
err = ExtAudioFileGetProperty(extRef, kExtAudioFileProperty_FileLengthFrames, &thePropertySize, &theFileLengthInFrames);
if(err) { printf("MyGetOpenALAudioData: ExtAudioFileGetProperty(kExtAudioFileProperty_FileLengthFrames) FAILED, Error = %ld\n", err); break; }
// Read all the data into memory
UInt32 dataSize = theFileLengthInFrames * theOutputFormat.mBytesPerFrame;
theData = (void*)new char[dataSize];
if (theData)
{
AudioBufferList theDataBuffer;
theDataBuffer.mNumberBuffers = 1;
theDataBuffer.mBuffers[0].mDataByteSize = dataSize;
theDataBuffer.mBuffers[0].mNumberChannels = theOutputFormat.mChannelsPerFrame;
theDataBuffer.mBuffers[0].mData = theData;
// Read the data into an AudioBufferList
err = ExtAudioFileRead(extRef, (UInt32*)&theFileLengthInFrames, &theDataBuffer);
if(err == noErr)
{
// success
*outDataSize = (ALsizei)dataSize;
*outDataFormat = (theOutputFormat.mChannelsPerFrame > 1) ? AL_FORMAT_STEREO16 : AL_FORMAT_MONO16;
*outSampleRate = (ALsizei)theOutputFormat.mSampleRate;
}
else
{
// failure
free (theData);
theData = NULL; // make sure to return NULL
printf("MyGetOpenALAudioData: ExtAudioFileRead FAILED, Error = %ld\n", err); break;
}
}
} while(0);
// Dispose the ExtAudioFileRef, it is no longer needed
if (extRef) ExtAudioFileDispose(extRef);
return theData;
}
SoundEngine::SoundEngine( float maxDistance )
: idCounter(0),
mc(0),
_x(0),
_y(0),
_z(0),
_yRot(0),
_invMaxDistance(1.0f / maxDistance)
{
}
SoundEngine::~SoundEngine()
{
}
SoundDesc SoundEngine::_pp(const std::string& fn) {
NSString* filename = [[NSString alloc] initWithUTF8String:fn.c_str()];
NSString* path = [[NSBundle mainBundle] pathForResource:filename ofType:@"m4a"];
[filename release];
if (!path)
return SoundDesc();
CFURLRef fileURL = (CFURLRef)[[NSURL fileURLWithPath:path] retain];
if (fileURL) {
static Stopwatch sw;
sw.start();
ALsizei size, freq;
ALenum format;
void* data = MyGetOpenALAudioData(fileURL, &size, &format, &freq);
CFRelease(fileURL);
sw.stop();
sw.printEvery(1, "load sound " + fn + " :: ");
int channels = (format == AL_FORMAT_STEREO16 || format == AL_FORMAT_STEREO8)? 2 : 1;
int bytewidth= (format == AL_FORMAT_STEREO16 || format == AL_FORMAT_MONO16)? 2 : 1;
return SoundDesc((char*)data, size, channels, bytewidth, freq);
}
return SoundDesc();
}
void SoundEngine::init( Minecraft* mc, Options* options )
{
this->mc = mc;
this->options = options;
if (/*!loaded && */(options == NULL || (options->sound != 0 || options->music != 0))) {
loadLibrary();
}
sounds.add( "damage.fallbig", _pp("fallbig1"));
sounds.add( "damage.fallbig", _pp("fallbig2"));
sounds.add( "damage.fallsmall", _pp("fallsmall"));
sounds.add( "random.explode", _pp("explode"));
sounds.add( "random.splash", _pp("splash"));
sounds.add( "random.hurt", _pp("hurt"));
sounds.add( "random.pop", _pp("pop"));
sounds.add( "random.click", _pp("click"));
sounds.add( "random.door_open", _pp("door_open"));
sounds.add( "random.door_close", _pp("door_close"));
sounds.add( "random.bow", _pp("bow"));
sounds.add( "random.bowhit", _pp("bowhit1"));
sounds.add( "random.bowhit", _pp("bowhit2"));
sounds.add( "random.bowhit", _pp("bowhit3"));
sounds.add( "random.bowhit", _pp("bowhit4"));
sounds.add( "random.glass", _pp("glass1"));
sounds.add( "random.glass", _pp("glass2"));
sounds.add( "random.glass", _pp("glass3"));
sounds.add( "random.eat", _pp("eat1"));
sounds.add( "random.eat", _pp("eat2"));
sounds.add( "random.eat", _pp("eat3"));
sounds.add( "random.fuse", _pp("fuse"));
sounds.add( "step.cloth", _pp("cloth1"));
sounds.add( "step.cloth", _pp("cloth2"));
sounds.add( "step.cloth", _pp("cloth3"));
sounds.add( "step.cloth", _pp("cloth4"));
sounds.add( "step.grass", _pp("grass1"));
sounds.add( "step.grass", _pp("grass2"));
sounds.add( "step.grass", _pp("grass3"));
sounds.add( "step.grass", _pp("grass4"));
//new SoundId(R.raw.gravel1, _pp("step.gravel"),
sounds.add( "step.gravel", _pp("gravel2"));
sounds.add( "step.gravel", _pp("gravel3"));
sounds.add( "step.gravel", _pp("gravel4"));
sounds.add( "step.sand", _pp("sand1"));
sounds.add( "step.sand", _pp("sand2"));
sounds.add( "step.sand", _pp("sand3"));
sounds.add( "step.sand", _pp("sand4"));
sounds.add( "step.stone", _pp("stone1"));
sounds.add( "step.stone", _pp("stone2"));
sounds.add( "step.stone", _pp("stone3"));
sounds.add( "step.stone", _pp("stone4"));
sounds.add( "step.wood", _pp("wood1"));
sounds.add( "step.wood", _pp("wood2"));
sounds.add( "step.wood", _pp("wood3"));
sounds.add( "step.wood", _pp("wood4"));
sounds.add( "mob.sheep", _pp("sheep1"));
sounds.add( "mob.sheep", _pp("sheep2"));
sounds.add( "mob.sheep", _pp("sheep3"));
sounds.add( "mob.pig", _pp("pig1"));
sounds.add( "mob.pig", _pp("pig2"));
sounds.add( "mob.pig", _pp("pig3"));
sounds.add( "mob.pigdeath", _pp("pigdeath"));
//sounds.add( "mob.chicken", _pp("chicken1"));
sounds.add( "mob.chicken", _pp("chicken2"));
sounds.add( "mob.chicken", _pp("chicken3"));
sounds.add( "mob.chickenhurt", _pp("chickenhurt1"));
sounds.add( "mob.chickenhurt", _pp("chickenhurt2"));
sounds.add( "mob.cow", _pp("cow1"));
sounds.add( "mob.cow", _pp("cow2"));
sounds.add( "mob.cow", _pp("cow3"));
sounds.add( "mob.cow", _pp("cow4"));
sounds.add( "mob.cowhurt", _pp("cowhurt1"));
sounds.add( "mob.cowhurt", _pp("cowhurt2"));
sounds.add( "mob.cowhurt", _pp("cowhurt3"));
sounds.add( "mob.zombie", _pp("zombie1"));
sounds.add( "mob.zombie", _pp("zombie2"));
sounds.add( "mob.zombie", _pp("zombie3"));
sounds.add( "mob.zombiedeath", _pp("zombiedeath"));
sounds.add( "mob.zombiehurt", _pp("zombiehurt1"));
sounds.add( "mob.zombiehurt", _pp("zombiehurt2"));
sounds.add( "mob.skeleton", _pp("skeleton1"));
sounds.add( "mob.skeleton", _pp("skeleton2"));
sounds.add( "mob.skeleton", _pp("skeleton3"));
sounds.add( "mob.skeletonhurt", _pp("skeletonhurt1"));
sounds.add( "mob.skeletonhurt", _pp("skeletonhurt2"));
sounds.add( "mob.skeletonhurt", _pp("skeletonhurt3"));
sounds.add( "mob.skeletonhurt", _pp("skeletonhurt4"));
sounds.add( "mob.spider", _pp("spider1"));
sounds.add( "mob.spider", _pp("spider2"));
sounds.add( "mob.spider", _pp("spider3"));
sounds.add( "mob.spiderdeath", _pp("spiderdeath"));
sounds.add( "mob.creeper", _pp("creeper1"));
sounds.add( "mob.creeper", _pp("creeper2"));
sounds.add( "mob.creeper", _pp("creeper3"));
sounds.add( "mob.creeper", _pp("creeper4"));
sounds.add( "mob.creeperdeath", _pp("creeperdeath"));
sounds.add( "mob.zombiepig.zpig", _pp("zpig1"));
sounds.add( "mob.zombiepig.zpig", _pp("zpig2"));
sounds.add( "mob.zombiepig.zpig", _pp("zpig3"));
sounds.add( "mob.zombiepig.zpig", _pp("zpig4"));
sounds.add( "mob.zombiepig.zpigangry", _pp("zpigangry1"));
sounds.add( "mob.zombiepig.zpigangry", _pp("zpigangry2"));
sounds.add( "mob.zombiepig.zpigangry", _pp("zpigangry3"));
sounds.add( "mob.zombiepig.zpigangry", _pp("zpigangry4"));
sounds.add( "mob.zombiepig.zpigdeath", _pp("zpigdeath"));
sounds.add( "mob.zombiepig.zpighurt", _pp("zpighurt1"));
sounds.add( "mob.zombiepig.zpighurt", _pp("zpighurt2"));
}
void SoundEngine::enable( bool status )
{
soundSystem.enable(status);
}
void SoundEngine::updateOptions()
{
}
void SoundEngine::destroy()
{
//if (loaded) soundSystem.cleanup();
}
void SoundEngine::update( Mob* player, float a )
{
if (/*!loaded || */options->sound == 0) return;
if (player == NULL) return;
_x = player->xo + (player->x - player->xo) * a;
_y = player->yo + (player->y - player->yo) * a;
_z = player->zo + (player->z - player->zo) * a;
_yRot = player->yRotO + (player->yRot - player->yRotO) * a;
soundSystem.setListenerAngle(_yRot);
//soundSystem.setListenerPos(_x, _y, _z); //@note: not used, since we translate all sounds to Player space
}
float SoundEngine::_getVolumeMult( float x, float y, float z )
{
const float dx = x - _x;
const float dy = y - _y;
const float dz = z - _z;
const float dist = Mth::sqrt(dx*dx + dy*dy + dz*dz);
const float out = Mth::clamp(1.1f - dist*_invMaxDistance, -1.0f, 1.0f);
return out;
}
void SoundEngine::play(const std::string& name, float x, float y, float z, float volume, float pitch) {
if ((volume *= options->sound) <= 0) return;
volume = Mth::clamp(volume, 0.0f, 1.0f);
SoundDesc sound;
if (sounds.get(name, sound)) {
soundSystem.playAt(sound, x-_x, y-_y, z-_z, volume, pitch);
}
}
void SoundEngine::playUI(const std::string& name, float volume, float pitch) {
if ((volume *= options->sound) <= 0) return;
volume = Mth::clamp(volume, 0.0f, 1.0f);
if (/*!loaded || */options->sound == 0 || volume <= 0) return;
SoundDesc sound;
if (sounds.get(name, sound)) {
soundSystem.playAt(sound, 0, 0, 0, volume, pitch);
}
}

View File

@@ -0,0 +1,59 @@
#ifndef NET_MINECRAFT_CLIENT_SOUND__SoundRepository_H__
#define NET_MINECRAFT_CLIENT_SOUND__SoundRepository_H__
#include <map>
#include <string>
#include "Sound.h"
#include "../../util/Mth.h"
#include "../../platform/log.h"
class SoundRepository
{
typedef std::vector<SoundDesc> SoundList;
typedef std::map<std::string, SoundList> SoundMap;
public:
~SoundRepository() {
#ifdef __APPLE__
SoundMap::iterator it = map.begin();
for (; it != map.end(); ++it) {
SoundList& list = it->second;
for (unsigned int j = 0; j < list.size(); ++j)
list[j].destroy();
}
#endif
}
bool get(const std::string& name, SoundDesc& sound) {
SoundMap::iterator it = map.find(name);
if (it == map.end()) {
LOGI("Couldn't find a sound with id: %s\n", name.c_str());
return false;
}
sound = it->second[Mth::random(it->second.size())];
return true;
}
void add(const std::string& name, const SoundDesc& sound) {
if (!sound.isValid()) return;
SoundMap::iterator it = map.find(name);
if (it == map.end()) {
SoundList list;
list.push_back( sound );
map.insert( make_pair(name, list) );
} else {
it->second.push_back(sound);
}
}
void add(const std::string& name, SoundDesc& sound) {
if (!sound.isValid()) return;
add(name, const_cast<const SoundDesc&>(sound));
sound.name = name;
}
private:
SoundMap map;
};
#endif /*NET_MINECRAFT_CLIENT_SOUND__SoundRepository_H__*/

1257
src/client/sound/data/bow.pcm Executable file

File diff suppressed because it is too large Load Diff

2027
src/client/sound/data/bowhit1.pcm Executable file

File diff suppressed because it is too large Load Diff

2070
src/client/sound/data/bowhit2.pcm Executable file

File diff suppressed because it is too large Load Diff

2458
src/client/sound/data/bowhit3.pcm Executable file

File diff suppressed because it is too large Load Diff

2759
src/client/sound/data/bowhit4.pcm Executable file

File diff suppressed because it is too large Load Diff

1553
src/client/sound/data/chicken1.pcm Executable file

File diff suppressed because it is too large Load Diff

2070
src/client/sound/data/chicken2.pcm Executable file

File diff suppressed because it is too large Load Diff

1381
src/client/sound/data/chicken3.pcm Executable file

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,497 @@
unsigned char PCM_chickenplop[15812] = {
1,0,0,0,2,0,0,0,68,172,0,0,218,30,0,0,255,255,0,0,1,0,0,0,0,0,0,0,0,0,1,0,
1,0,255,255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,255,255,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,255,255,0,0,0,0,255,255,0,0,0,0,255,255,0,0,0,0,0,0,1,0,
1,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,1,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,255,255,0,0,
0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,
255,255,0,0,0,0,255,255,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,
0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,255,255,0,0,0,0,0,0,255,255,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,
0,0,255,255,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,0,0,1,0,0,0,255,255,
0,0,0,0,255,255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,0,0,0,0,0,0,0,0,
0,0,255,255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,255,255,255,255,1,0,1,0,0,0,1,0,
0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,
1,0,0,0,255,255,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,0,0,0,0,1,0,
0,0,0,0,1,0,1,0,1,0,1,0,0,0,255,255,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,
1,0,1,0,2,0,1,0,0,0,1,0,2,0,1,0,1,0,1,0,1,0,0,0,0,0,0,0,1,0,0,0,
0,0,1,0,1,0,1,0,1,0,255,255,254,255,254,255,254,255,255,255,255,255,255,255,255,255,254,255,254,255,255,255,
254,255,254,255,254,255,254,255,254,255,254,255,253,255,253,255,253,255,251,255,252,255,254,255,253,255,253,255,252,255,252,255,
253,255,255,255,1,0,0,0,255,255,1,0,255,255,255,255,1,0,254,255,254,255,0,0,255,255,255,255,2,0,3,0,
7,0,8,0,8,0,10,0,12,0,12,0,10,0,9,0,11,0,4,0,254,255,255,255,0,0,252,255,249,255,250,255,
251,255,249,255,250,255,255,255,1,0,2,0,3,0,10,0,16,0,14,0,18,0,24,0,26,0,32,0,37,0,40,0,
45,0,38,0,36,0,46,0,41,0,37,0,45,0,41,0,33,0,37,0,42,0,36,0,20,0,16,0,23,0,31,0,
40,0,47,0,84,0,115,0,85,0,60,0,36,0,254,255,0,0,226,255,187,255,237,255,9,0,13,0,53,0,51,0,
61,0,69,0,255,255,232,255,230,255,188,255,234,255,24,0,199,255,145,255,197,255,22,0,70,0,65,0,40,0,22,0,
13,0,5,0,222,255,156,255,115,255,118,255,144,255,199,255,28,0,93,0,120,0,135,0,105,0,28,0,237,255,224,255,
200,255,167,255,128,255,127,255,198,255,65,0,170,0,98,0,203,255,29,0,142,0,79,0,79,0,27,0,115,255,98,255,
97,255,107,255,237,255,6,0,114,0,55,1,201,0,80,0,95,0,218,255,75,255,164,254,5,254,158,254,116,255,132,255,
144,255,243,255,59,0,216,255,76,255,97,255,174,255,175,255,63,255,25,255,178,255,190,255,164,255,82,0,65,0,116,255,
23,255,238,254,26,255,138,255,12,0,116,0,17,0,188,255,51,0,91,0,252,255,226,255,46,0,237,255,11,255,229,254,
44,255,142,255,59,0,1,0,193,255,240,255,108,255,141,255,232,255,231,255,117,0,240,255,248,255,217,0,162,0,249,4,
109,10,177,7,170,3,237,2,60,2,1,1,92,253,45,254,121,4,85,4,234,4,9,10,251,5,242,254,74,253,44,253,
31,1,180,3,219,255,21,253,77,253,126,1,70,6,162,3,237,1,72,4,99,255,48,248,51,248,115,249,230,246,81,245,
41,248,28,250,146,247,32,245,180,244,139,245,211,248,101,252,222,253,78,255,75,0,60,253,136,248,49,247,104,247,161,246,
105,246,211,247,38,250,199,250,134,249,8,249,231,248,126,249,16,251,20,252,31,255,202,2,223,2,227,2,207,3,54,3,
106,2,79,2,97,4,210,6,2,6,2,5,129,4,0,4,183,5,244,5,81,5,193,7,20,8,184,5,39,6,19,9,
174,11,57,11,91,9,39,10,201,11,88,12,195,11,98,10,183,10,213,10,49,9,11,10,254,11,174,10,116,8,249,7,
211,7,53,8,109,10,92,11,203,10,189,12,15,13,60,9,70,7,71,7,56,7,162,5,126,255,130,251,23,253,70,252,
211,249,35,249,245,247,246,247,240,248,179,248,154,248,210,248,181,248,143,247,189,247,243,251,154,253,92,251,60,252,78,252,
163,247,11,242,138,235,214,230,24,230,19,228,220,225,89,227,204,229,94,232,13,235,161,234,88,231,101,228,48,227,187,227,
144,228,242,227,117,226,157,224,6,223,89,224,30,227,155,227,208,227,137,228,60,228,108,229,113,232,74,236,207,241,255,245,
4,249,114,254,161,2,152,4,153,9,196,16,210,23,117,32,74,41,170,46,167,48,85,50,211,52,83,56,212,62,82,70,
172,74,250,77,239,82,94,87,43,89,50,90,96,93,55,95,172,91,233,87,65,86,95,82,147,77,68,74,0,71,101,67,
230,62,144,57,6,51,13,41,195,29,79,20,125,12,12,7,157,2,241,251,29,243,123,233,26,225,92,218,23,211,212,204,
113,200,248,194,138,189,221,186,222,185,101,184,130,181,92,179,222,179,54,181,231,182,223,185,13,189,82,192,201,196,146,202,
130,209,92,216,18,221,241,224,22,231,56,238,117,244,130,251,111,2,136,7,3,13,55,18,0,21,153,23,136,26,160,27,
18,27,150,26,28,27,185,26,13,24,134,21,159,18,76,13,209,7,177,2,165,252,176,246,107,240,192,233,15,228,58,223,
126,219,176,215,43,210,152,205,174,202,87,199,153,197,201,198,49,201,252,203,63,206,137,208,75,212,39,217,146,223,153,230,
138,236,114,244,139,254,99,6,42,13,135,21,135,29,18,36,247,41,48,48,52,54,163,57,239,59,21,63,179,63,227,61,
196,61,114,61,207,58,212,56,65,55,190,50,129,43,226,35,92,29,173,23,29,17,145,9,192,2,141,252,155,245,87,238,
130,232,224,228,15,226,237,222,184,220,215,219,212,218,204,217,187,217,45,219,36,223,110,228,60,232,173,235,91,241,116,247,
236,251,226,0,84,7,210,12,186,16,80,20,118,23,100,25,188,25,231,24,168,23,229,21,229,19,158,17,91,13,252,7,
233,3,82,255,37,248,126,240,34,234,61,228,84,222,50,217,232,212,240,208,0,206,90,204,53,203,57,203,24,205,224,207,
169,210,164,213,65,218,218,224,89,231,103,237,217,244,131,253,37,6,80,14,196,21,180,28,69,35,255,40,27,46,12,51,
5,55,127,57,239,58,248,58,113,57,210,54,57,50,33,44,184,38,255,32,53,25,48,16,196,6,132,253,134,244,67,235,
183,226,163,219,223,213,91,209,254,204,11,201,166,198,26,197,100,197,131,200,76,204,142,208,188,214,164,222,143,231,80,240,
125,249,67,4,32,15,92,26,123,38,209,48,156,57,32,66,34,73,133,79,97,85,211,88,212,90,225,91,190,90,134,87,
123,82,45,76,244,68,46,60,164,50,254,40,93,30,201,18,194,6,160,250,207,238,51,227,66,216,172,206,111,198,185,191,
72,186,195,181,189,178,105,177,184,177,133,179,86,182,220,186,130,193,62,201,13,210,217,219,67,229,189,238,150,249,203,4,
11,15,112,24,205,32,189,39,19,46,13,52,2,56,159,57,148,58,187,58,10,57,131,54,114,51,38,46,154,38,111,30,
29,22,180,13,184,5,156,253,171,244,162,235,22,227,233,218,161,211,170,205,251,200,218,197,31,196,60,195,27,195,238,195,
214,197,155,200,171,204,240,210,166,218,251,226,32,236,162,244,197,251,227,2,7,10,17,17,23,24,254,29,126,34,91,37,
141,38,194,39,173,40,119,40,39,40,127,38,159,34,11,30,89,24,220,17,28,12,65,6,4,0,213,249,111,243,181,237,
22,233,52,229,8,226,97,223,74,222,2,223,184,223,168,224,192,226,65,229,12,232,185,235,150,240,224,245,175,250,239,255,
243,5,0,12,243,17,212,22,207,26,221,30,153,33,208,34,86,35,101,34,188,32,198,30,110,27,109,23,53,19,135,14,
176,9,7,4,189,253,133,247,67,241,214,235,78,231,51,227,176,223,117,219,91,215,2,214,46,214,236,214,236,216,48,219,
91,222,89,227,224,232,21,239,22,246,170,252,56,3,68,10,104,17,129,24,70,31,193,37,195,43,75,48,166,51,6,55,
240,57,69,59,69,59,85,58,221,55,144,51,236,45,204,39,215,33,146,27,185,20,13,14,67,7,5,0,64,249,31,243,
57,237,123,231,215,225,218,220,11,217,66,214,152,212,39,212,172,212,11,214,144,216,129,220,102,225,247,230,56,237,24,243,
49,248,135,253,61,3,49,9,105,15,19,21,178,25,57,29,137,31,104,33,82,35,198,36,132,37,59,37,130,35,191,32,
93,29,31,25,54,20,149,15,60,11,13,6,38,0,192,250,195,245,141,240,247,235,185,232,250,229,79,227,62,225,212,223,
18,223,255,222,127,223,79,225,106,228,69,231,159,233,95,236,160,239,111,243,244,247,207,252,126,1,149,5,226,8,111,11,
133,13,117,15,224,16,145,17,26,18,45,18,2,17,16,15,11,13,250,10,249,8,249,6,77,4,211,0,85,253,252,249,
106,246,15,243,94,240,63,238,146,236,63,235,89,234,181,233,47,233,155,233,54,235,54,237,171,239,119,242,188,244,195,246,
20,249,140,251,96,254,182,1,23,5,226,7,246,9,184,11,15,13,192,13,58,14,107,14,242,13,13,13,175,11,136,9,
178,6,146,3,252,0,2,255,175,252,252,249,60,247,91,244,235,241,1,240,0,238,88,236,156,235,126,235,139,235,170,235,
69,236,61,237,74,238,100,240,89,243,213,245,163,248,40,252,86,255,151,2,237,5,101,8,174,10,91,13,232,15,244,17,
80,19,65,20,174,20,33,20,103,19,230,18,244,17,186,16,70,15,95,13,116,11,60,9,96,6,190,3,141,1,37,255,
183,252,190,250,13,249,120,247,50,246,169,245,21,246,197,246,119,247,229,248,131,250,208,251,228,253,63,0,236,1,19,4,
206,6,73,9,181,11,205,13,171,15,201,17,97,19,31,20,80,20,15,20,228,19,160,19,163,18,50,17,130,15,115,13,
184,10,62,7,203,3,152,0,82,253,45,250,253,246,166,243,182,240,48,238,198,235,188,233,173,232,112,232,56,232,38,232,
106,232,159,232,143,233,213,235,111,238,223,240,132,243,94,246,59,249,62,252,145,255,230,2,30,6,57,9,218,11,70,14,
177,16,136,18,179,19,28,20,4,20,7,20,110,19,114,18,11,18,8,17,234,14,114,12,130,9,193,6,103,4,8,2,
15,0,183,253,220,250,186,248,168,246,209,244,24,244,71,243,212,242,155,243,9,244,89,244,172,245,54,247,176,248,124,250,
165,252,25,255,110,1,93,3,234,4,105,6,68,8,57,10,254,11,92,13,32,14,160,14,140,14,155,13,132,12,66,11,
182,9,62,8,126,6,95,4,17,2,128,255,222,252,229,249,215,246,179,244,255,242,21,241,61,239,132,237,108,236,47,236,
22,236,51,236,236,236,230,237,250,238,143,240,236,242,179,245,157,248,137,251,48,254,7,1,37,4,7,7,9,10,182,12,
117,14,87,16,51,18,80,19,93,20,20,21,240,20,12,20,105,18,11,17,18,16,74,14,205,11,172,8,81,5,15,3,
246,0,244,253,223,250,180,247,124,244,238,241,175,239,153,237,52,236,142,235,76,235,43,235,105,235,27,236,44,237,10,239,
94,241,192,243,239,246,134,250,99,253,13,0,60,3,154,6,205,9,197,12,165,15,136,18,251,20,143,22,199,23,28,25,
252,25,31,26,244,25,91,25,222,23,139,21,243,18,149,16,251,13,188,10,103,7,74,4,11,1,176,253,155,250,141,247,
50,244,87,241,42,239,180,236,129,234,106,233,188,232,87,232,78,232,57,232,120,232,106,233,67,235,249,237,94,240,90,242,
205,244,15,247,66,249,181,252,86,0,161,2,162,4,23,7,2,9,107,10,63,12,35,14,86,15,213,15,6,16,30,16,
122,15,45,14,9,13,65,11,1,9,21,8,30,7,132,4,39,2,127,0,94,254,93,252,190,250,17,249,191,247,130,246,
30,245,130,244,113,244,12,244,240,243,61,244,109,244,70,245,198,246,204,247,176,248,27,250,206,251,180,253,131,255,245,0,
119,2,237,3,158,4,202,4,133,5,226,6,233,7,67,8,102,8,135,8,55,8,177,7,22,8,109,8,65,7,64,6,
211,5,94,4,14,3,109,2,63,1,60,0,127,255,116,254,188,253,245,252,68,252,115,252,136,252,125,252,224,252,18,253,
110,253,219,253,164,253,222,253,231,254,214,255,182,0,105,1,141,1,169,1,58,2,3,3,96,3,57,3,88,3,235,3,
3,4,110,3,228,2,99,2,235,1,216,1,115,1,117,0,166,255,254,254,163,254,160,254,12,254,70,253,242,252,145,252,
48,252,239,251,229,251,39,252,14,252,4,252,102,252,144,252,68,253,20,254,188,253,24,254,92,255,143,255,178,255,126,0,
39,1,14,2,142,2,250,1,157,1,201,1,228,1,14,2,21,2,150,1,218,0,108,0,79,0,204,255,183,254,52,254,
117,254,231,253,132,252,141,251,188,250,67,250,173,250,121,250,140,249,85,249,66,249,62,249,203,249,221,249,220,249,204,250,
188,251,93,252,37,253,204,253,94,254,202,254,251,254,147,255,116,0,41,1,1,2,200,2,0,3,252,2,39,3,164,3,
27,4,5,4,246,3,74,4,240,3,44,3,17,3,246,2,110,2,198,1,210,0,13,0,152,255,223,254,87,254,5,254,
116,253,22,253,228,252,214,252,93,253,231,253,229,253,180,253,4,254,202,254,229,254,247,254,83,0,68,1,8,1,77,1,
195,1,240,1,150,2,31,3,80,3,227,3,108,4,123,4,95,4,82,4,135,4,206,4,131,4,211,3,125,3,72,3,
241,2,220,2,122,2,190,1,144,1,45,1,49,0,127,255,231,254,7,255,223,255,100,255,158,254,35,255,95,255,122,255,
253,255,209,255,57,0,148,1,211,1,167,1,50,2,147,2,252,2,173,3,223,3,249,3,198,4,133,5,71,5,107,4,
152,3,67,3,204,3,73,4,148,3,89,2,164,1,118,1,6,1,180,255,177,254,227,254,224,254,43,254,140,253,157,252,
170,251,174,251,184,251,254,250,184,250,106,251,22,252,66,252,30,252,11,252,168,252,121,253,194,253,129,254,200,255,94,0,
244,0,3,2,177,2,137,3,138,4,0,5,189,5,97,6,56,6,117,6,226,6,239,6,117,7,174,7,31,7,225,6,
139,6,192,5,49,5,172,4,37,4,172,3,192,2,185,1,5,1,80,0,164,255,250,254,29,254,136,253,113,253,30,253,
105,252,242,251,200,251,213,251,4,252,177,251,13,251,14,251,169,251,61,252,53,252,213,251,64,252,39,253,159,253,242,253,
34,254,48,254,97,254,92,254,167,254,92,255,87,255,91,255,9,0,213,255,13,255,39,255,159,255,255,255,98,0,132,0,
174,0,245,0,244,0,55,1,184,1,151,1,140,1,26,2,8,2,162,1,10,2,122,2,103,2,145,2,38,3,92,3,
185,2,15,2,22,2,9,2,118,1,249,0,196,0,53,0,28,255,55,254,103,253,59,252,81,251,116,250,67,249,114,248,
143,247,99,246,146,245,168,244,12,244,50,244,213,243,77,243,90,243,48,243,65,243,242,243,90,244,161,244,153,245,43,247,
153,248,187,249,28,251,201,252,176,254,142,0,237,1,138,3,106,5,138,6,133,7,169,8,96,9,62,10,115,11,86,12,
178,12,202,12,25,13,37,13,137,12,13,12,129,11,91,10,26,9,197,7,80,6,14,5,207,3,69,2,156,0,73,255,
38,254,217,252,206,251,219,250,187,249,55,249,37,249,9,249,45,249,81,249,129,249,245,249,81,250,223,250,194,251,184,252,
219,253,200,254,175,255,4,1,7,2,192,2,210,3,214,4,182,5,127,6,242,6,88,7,160,7,114,7,28,7,185,6,
54,6,227,5,126,5,73,4,206,2,29,2,137,1,44,0,206,254,239,253,8,253,234,251,185,250,149,249,183,248,52,248,
234,247,149,247,54,247,9,247,17,247,83,247,221,247,94,248,214,248,159,249,119,250,28,251,223,251,155,252,58,253,35,254,
197,254,248,254,180,255,121,0,147,0,218,0,93,1,151,1,157,1,109,1,86,1,91,1,20,1,207,0,110,0,193,255,
110,255,54,255,168,254,55,254,242,253,185,253,168,253,170,253,157,253,113,253,158,253,70,254,187,254,42,255,227,255,123,0,
59,1,45,2,235,2,226,3,240,4,152,5,72,6,247,6,119,7,50,8,207,8,240,8,16,9,41,9,5,9,205,8,
99,8,226,7,136,7,240,6,16,6,64,5,54,4,229,2,181,1,131,0,60,255,52,254,99,253,120,252,145,251,228,250,
52,250,124,249,250,248,144,248,89,248,106,248,82,248,78,248,193,248,79,249,210,249,87,250,11,251,255,251,184,252,114,253,
142,254,102,255,26,0,246,0,159,1,128,2,128,3,217,3,12,4,100,4,138,4,192,4,1,5,15,5,245,4,182,4,
138,4,108,4,7,4,131,3,39,3,201,2,67,2,209,1,146,1,73,1,5,1,195,0,84,0,44,0,63,0,239,255,
197,255,19,0,45,0,46,0,90,0,86,0,89,0,162,0,211,0,230,0,22,1,64,1,90,1,101,1,88,1,109,1,
121,1,36,1,244,0,17,1,234,0,174,0,176,0,161,0,112,0,77,0,38,0,211,255,117,255,81,255,69,255,41,255,
12,255,228,254,204,254,211,254,220,254,27,255,130,255,190,255,231,255,19,0,70,0,162,0,11,1,82,1,124,1,170,1,
217,1,6,2,78,2,106,2,75,2,95,2,98,2,44,2,26,2,210,1,90,1,54,1,242,0,97,0,232,255,130,255,
63,255,248,254,102,254,211,253,102,253,3,253,175,252,116,252,59,252,224,251,166,251,189,251,208,251,220,251,241,251,235,251,
2,252,46,252,64,252,112,252,172,252,234,252,93,253,198,253,5,254,97,254,227,254,75,255,151,255,254,255,68,0,83,0,
155,0,214,0,181,0,196,0,245,0,235,0,193,0,141,0,134,0,152,0,98,0,75,0,135,0,158,0,173,0,236,0,
24,1,39,1,74,1,84,1,29,1,13,1,83,1,131,1,130,1,150,1,179,1,172,1,176,1,240,1,20,2,13,2,
60,2,102,2,89,2,93,2,72,2,34,2,25,2,207,1,94,1,23,1,216,0,164,0,83,0,230,255,172,255,86,255,
225,254,187,254,155,254,77,254,5,254,171,253,96,253,105,253,126,253,82,253,40,253,70,253,105,253,93,253,69,253,49,253,
52,253,87,253,128,253,196,253,254,253,8,254,40,254,81,254,83,254,116,254,196,254,5,255,15,255,19,255,80,255,126,255,
129,255,146,255,142,255,137,255,185,255,187,255,146,255,134,255,114,255,107,255,147,255,171,255,179,255,210,255,233,255,236,255,
0,0,41,0,71,0,103,0,145,0,170,0,182,0,176,0,150,0,157,0,164,0,138,0,158,0,229,0,6,1,246,0,
221,0,219,0,234,0,247,0,243,0,205,0,182,0,203,0,195,0,163,0,158,0,145,0,138,0,157,0,182,0,210,0,
216,0,225,0,253,0,239,0,10,1,101,1,89,1,56,1,131,1,157,1,137,1,203,1,247,1,225,1,242,1,2,2,
213,1,202,1,242,1,224,1,183,1,183,1,143,1,89,1,80,1,23,1,206,0,195,0,156,0,82,0,37,0,252,255,
204,255,141,255,60,255,21,255,253,254,202,254,177,254,167,254,122,254,96,254,97,254,82,254,95,254,124,254,106,254,105,254,
133,254,128,254,140,254,182,254,188,254,208,254,14,255,29,255,244,254,249,254,45,255,42,255,11,255,42,255,71,255,57,255,
70,255,124,255,163,255,146,255,114,255,148,255,200,255,197,255,190,255,215,255,244,255,13,0,46,0,98,0,146,0,179,0,
207,0,234,0,23,1,67,1,93,1,142,1,192,1,238,1,67,2,113,2,97,2,112,2,133,2,143,2,181,2,175,2,
122,2,101,2,82,2,46,2,47,2,69,2,47,2,248,1,220,1,191,1,108,1,46,1,34,1,245,0,196,0,170,0,
132,0,130,0,135,0,80,0,65,0,92,0,99,0,128,0,110,0,54,0,91,0,134,0,151,0,226,0,241,0,186,0,
200,0,232,0,213,0,184,0,172,0,168,0,127,0,68,0,46,0,8,0,173,255,88,255,30,255,223,254,152,254,101,254,
30,254,176,253,103,253,51,253,226,252,157,252,81,252,245,251,210,251,198,251,122,251,53,251,82,251,110,251,66,251,99,251,
205,251,230,251,233,251,30,252,85,252,158,252,241,252,56,253,147,253,227,253,15,254,79,254,182,254,11,255,68,255,140,255,
205,255,255,255,62,0,99,0,127,0,167,0,177,0,208,0,218,0,173,0,200,0,207,0,146,0,177,0,200,0,166,0,
173,0,138,0,119,0,162,0,133,0,107,0,131,0,144,0,165,0,133,0,79,0,69,0,41,0,55,0,97,0,71,0,
70,0,106,0,130,0,164,0,170,0,185,0,236,0,7,1,23,1,18,1,16,1,63,1,78,1,71,1,90,1,104,1,
156,1,190,1,136,1,93,1,104,1,119,1,85,1,29,1,33,1,36,1,11,1,24,1,10,1,220,0,223,0,235,0,
209,0,143,0,79,0,35,0,213,255,171,255,195,255,151,255,70,255,35,255,5,255,224,254,190,254,149,254,88,254,35,254,
39,254,34,254,1,254,249,253,233,253,222,253,205,253,167,253,221,253,26,254,236,253,213,253,233,253,19,254,102,254,122,254,
118,254,168,254,209,254,2,255,70,255,116,255,151,255,172,255,221,255,13,0,251,255,19,0,92,0,96,0,80,0,103,0,
122,0,106,0,86,0,104,0,81,0,16,0,34,0,53,0,238,255,189,255,191,255,178,255,167,255,188,255,200,255,188,255,
200,255,212,255,204,255,249,255,48,0,42,0,74,0,170,0,249,0,34,1,77,1,157,1,247,1,53,2,114,2,192,2,
11,3,50,3,65,3,119,3,174,3,181,3,202,3,230,3,221,3,195,3,155,3,122,3,111,3,67,3,242,2,167,2,
99,2,15,2,161,1,42,1,208,0,152,0,72,0,205,255,100,255,31,255,212,254,132,254,76,254,40,254,243,253,188,253,
185,253,189,253,169,253,184,253,207,253,224,253,34,254,91,254,114,254,164,254,228,254,28,255,82,255,121,255,161,255,219,255,
32,0,87,0,106,0,121,0,137,0,127,0,127,0,155,0,142,0,78,0,42,0,39,0,255,255,196,255,159,255,128,255,
76,255,244,254,155,254,114,254,78,254,42,254,41,254,9,254,197,253,180,253,196,253,211,253,231,253,3,254,49,254,91,254,
107,254,123,254,153,254,227,254,80,255,153,255,194,255,13,0,99,0,159,0,213,0,20,1,92,1,160,1,202,1,232,1,
28,2,77,2,90,2,90,2,116,2,160,2,155,2,105,2,96,2,100,2,63,2,33,2,14,2,220,1,162,1,131,1,
129,1,100,1,31,1,15,1,18,1,205,0,166,0,199,0,198,0,169,0,172,0,196,0,207,0,202,0,209,0,231,0,
227,0,206,0,231,0,36,1,58,1,56,1,82,1,94,1,74,1,75,1,94,1,106,1,107,1,77,1,33,1,4,1,
0,1,7,1,224,0,145,0,90,0,40,0,236,255,171,255,82,255,13,255,227,254,168,254,134,254,115,254,68,254,38,254,
12,254,209,253,188,253,196,253,184,253,184,253,192,253,195,253,221,253,3,254,45,254,105,254,158,254,202,254,11,255,70,255,
118,255,196,255,16,0,44,0,64,0,97,0,159,0,255,0,32,1,4,1,10,1,1,1,241,0,6,1,229,0,161,0,
124,0,63,0,249,255,186,255,115,255,61,255,234,254,131,254,68,254,252,253,200,253,180,253,108,253,32,253,253,252,238,252,
249,252,226,252,202,252,231,252,236,252,6,253,80,253,127,253,209,253,55,254,107,254,191,254,46,255,122,255,202,255,38,0,
144,0,254,0,83,1,156,1,214,1,25,2,93,2,81,2,65,2,113,2,120,2,87,2,58,2,12,2,235,1,188,1,
98,1,46,1,5,1,152,0,34,0,215,255,145,255,60,255,230,254,161,254,128,254,115,254,65,254,243,253,214,253,222,253,
225,253,222,253,221,253,252,253,60,254,109,254,157,254,228,254,34,255,115,255,214,255,9,0,70,0,181,0,244,0,40,1,
142,1,191,1,207,1,9,2,20,2,255,1,33,2,58,2,38,2,251,1,203,1,176,1,131,1,64,1,5,1,184,0,
129,0,105,0,33,0,209,255,162,255,107,255,82,255,68,255,0,255,187,254,173,254,178,254,159,254,147,254,181,254,209,254,
229,254,25,255,74,255,116,255,160,255,180,255,225,255,39,0,88,0,149,0,186,0,188,0,227,0,3,1,2,1,1,1,
231,0,223,0,255,0,222,0,150,0,116,0,70,0,2,0,203,255,146,255,86,255,49,255,12,255,216,254,171,254,115,254,
54,254,61,254,96,254,69,254,45,254,70,254,97,254,140,254,193,254,231,254,23,255,86,255,160,255,234,255,30,0,89,0,
153,0,196,0,8,1,89,1,124,1,151,1,198,1,233,1,12,2,46,2,53,2,51,2,53,2,36,2,15,2,3,2,
228,1,186,1,159,1,127,1,68,1,255,0,217,0,204,0,155,0,91,0,53,0,16,0,250,255,249,255,222,255,179,255,
144,255,134,255,177,255,215,255,229,255,238,255,206,255,199,255,9,0,50,0,51,0,47,0,26,0,30,0,85,0,149,0,
144,0,87,0,86,0,96,0,69,0,68,0,19,0,217,255,35,0,86,0,31,0,232,255,173,255,190,255,24,0,238,255,
121,255,62,255,49,255,108,255,132,255,29,255,213,254,252,254,89,255,162,255,130,255,73,255,113,255,218,255,63,0,68,0,
3,0,35,0,134,0,182,0,205,0,195,0,171,0,232,0,45,1,22,1,224,0,210,0,15,1,88,1,55,1,231,0,
199,0,181,0,178,0,175,0,115,0,45,0,0,0,215,255,203,255,178,255,105,255,61,255,61,255,50,255,28,255,12,255,
14,255,31,255,52,255,65,255,71,255,97,255,147,255,194,255,235,255,4,0,21,0,79,0,165,0,198,0,193,0,229,0,
59,1,151,1,201,1,181,1,160,1,220,1,31,2,39,2,24,2,235,1,189,1,210,1,217,1,149,1,67,1,237,0,
163,0,151,0,151,0,89,0,4,0,193,255,126,255,78,255,57,255,242,254,148,254,137,254,118,254,19,254,208,253,204,253,
208,253,220,253,214,253,171,253,136,253,141,253,190,253,250,253,0,254,209,253,204,253,33,254,133,254,170,254,171,254,188,254,
254,254,84,255,110,255,101,255,131,255,177,255,228,255,31,0,36,0,15,0,47,0,83,0,94,0,95,0,63,0,50,0,
84,0,64,0,2,0,240,255,229,255,214,255,209,255,166,255,129,255,140,255,124,255,79,255,59,255,46,255,38,255,44,255,
35,255,5,255,232,254,238,254,24,255,24,255,251,254,35,255,94,255,99,255,110,255,138,255,154,255,191,255,240,255,15,0,
40,0,50,0,62,0,116,0,180,0,210,0,208,0,227,0,21,1,53,1,75,1,101,1,103,1,97,1,90,1,72,1,
61,1,48,1,38,1,36,1,11,1,245,0,228,0,178,0,139,0,121,0,110,0,112,0,74,0,15,0,246,255,189,255,
136,255,153,255,164,255,145,255,124,255,106,255,111,255,109,255,101,255,129,255,136,255,124,255,146,255,167,255,186,255,223,255,
241,255,1,0,39,0,57,0,43,0,48,0,86,0,105,0,83,0,72,0,91,0,101,0,89,0,82,0,79,0,68,0,
66,0,56,0,38,0,42,0,26,0,245,255,246,255,230,255,182,255,171,255,153,255,118,255,123,255,119,255,87,255,79,255,
95,255,126,255,147,255,137,255,141,255,171,255,202,255,241,255,15,0,18,0,38,0,76,0,91,0,116,0,162,0,185,0,
192,0,185,0,176,0,204,0,216,0,183,0,177,0,174,0,156,0,159,0,136,0,93,0,80,0,60,0,29,0,4,0,
212,255,170,255,149,255,125,255,103,255,75,255,52,255,52,255,42,255,35,255,45,255,51,255,62,255,90,255,113,255,136,255,
168,255,205,255,229,255,242,255,23,0,79,0,124,0,165,0,206,0,228,0,240,0,11,1,38,1,58,1,95,1,122,1,
103,1,83,1,76,1,55,1,33,1,16,1,233,0,181,0,156,0,143,0,105,0,71,0,40,0,226,255,159,255,119,255,
74,255,49,255,31,255,243,254,205,254,179,254,161,254,148,254,121,254,114,254,123,254,111,254,123,254,158,254,168,254,185,254,
220,254,0,255,37,255,63,255,102,255,145,255,165,255,191,255,227,255,9,0,55,0,84,0,98,0,110,0,126,0,169,0,
196,0,185,0,205,0,225,0,201,0,186,0,182,0,166,0,157,0,134,0,107,0,102,0,98,0,71,0,22,0,253,255,
8,0,241,255,189,255,173,255,166,255,142,255,140,255,145,255,125,255,109,255,117,255,127,255,116,255,98,255,91,255,93,255,
93,255,103,255,128,255,129,255,111,255,116,255,117,255,96,255,105,255,125,255,120,255,136,255,162,255,160,255,178,255,205,255,
213,255,229,255,236,255,231,255,4,0,33,0,37,0,56,0,66,0,56,0,65,0,91,0,111,0,113,0,108,0,114,0,
125,0,120,0,107,0,95,0,89,0,92,0,100,0,92,0,56,0,28,0,30,0,26,0,8,0,1,0,245,255,210,255,
179,255,167,255,151,255,137,255,141,255,141,255,148,255,165,255,149,255,136,255,164,255,174,255,166,255,185,255,217,255,1,0,
29,0,29,0,47,0,93,0,121,0,131,0,144,0,175,0,216,0,222,0,216,0,241,0,6,1,18,1,53,1,71,1,
60,1,55,1,46,1,43,1,52,1,32,1,6,1,10,1,2,1,228,0,201,0,179,0,169,0,150,0,112,0,91,0,
77,0,59,0,52,0,47,0,36,0,23,0,13,0,17,0,30,0,46,0,44,0,24,0,38,0,61,0,46,0,48,0,
65,0,48,0,29,0,27,0,33,0,48,0,61,0,64,0,56,0,44,0,48,0,49,0,48,0,58,0,49,0,27,0,
22,0,19,0,12,0,4,0,250,255,242,255,221,255,194,255,182,255,184,255,183,255,170,255,173,255,198,255,201,255,193,255,
194,255,185,255,175,255,182,255,206,255,220,255,207,255,203,255,215,255,209,255,199,255,200,255,205,255,215,255,217,255,212,255,
213,255,218,255,217,255,207,255,196,255,180,255,158,255,160,255,169,255,152,255,133,255,114,255,95,255,93,255,92,255,86,255,
78,255,78,255,101,255,104,255,97,255,115,255,123,255,138,255,172,255,173,255,191,255,236,255,249,255,14,0,54,0,78,0,
114,0,144,0,157,0,174,0,177,0,180,0,207,0,231,0,235,0,225,0,225,0,237,0,244,0,242,0,217,0,190,0,
193,0,186,0,153,0,117,0,78,0,42,0,10,0,231,255,201,255,176,255,164,255,142,255,90,255,57,255,56,255,55,255,
52,255,33,255,15,255,22,255,14,255,8,255,28,255,35,255,44,255,65,255,77,255,98,255,118,255,128,255,156,255,183,255,
203,255,231,255,243,255,243,255,2,0,26,0,31,0,30,0,56,0,74,0,61,0,61,0,74,0,78,0,86,0,77,0,
53,0,51,0,55,0,50,0,49,0,30,0,13,0,25,0,31,0,16,0,5,0,252,255,254,255,3,0,241,255,237,255,
254,255,244,255,243,255,12,0,10,0,7,0,27,0,39,0,53,0,67,0,71,0,84,0,84,0,72,0,91,0,116,0,
117,0,104,0,87,0,93,0,123,0,128,0,110,0,105,0,106,0,99,0,96,0,103,0,111,0,108,0,98,0,82,0,
73,0,81,0,72,0,38,0,24,0,25,0,6,0,244,255,237,255,225,255,209,255,183,255,155,255,153,255,165,255,168,255,
158,255,141,255,134,255,128,255,115,255,111,255,109,255,101,255,95,255,94,255,101,255,95,255,77,255,76,255,84,255,90,255,
92,255,77,255,75,255,85,255,84,255,109,255,132,255,115,255,112,255,116,255,115,255,139,255,138,255,119,255,130,255,132,255,
132,255,153,255,149,255,146,255,164,255,170,255,180,255,181,255,146,255,135,255,166,255,178,255,156,255,142,255,147,255,157,255,
168,255,172,255,165,255,175,255,189,255,185,255,188,255,208,255,227,255,254,255,13,0,17,0,46,0,66,0,75,0,110,0,
119,0,103,0,129,0,163,0,178,0,196,0,195,0,186,0,207,0,230,0,230,0,227,0,242,0,254,0,243,0,237,0,
242,0,230,0,217,0,214,0,206,0,198,0,185,0,172,0,156,0,123,0,106,0,101,0,84,0,74,0,59,0,40,0,
38,0,16,0,241,255,237,255,219,255,191,255,203,255,221,255,214,255,196,255,195,255,209,255,205,255,195,255,204,255,225,255,
240,255,239,255,242,255,14,0,36,0,38,0,44,0,52,0,68,0,83,0,86,0,87,0,90,0,90,0,86,0,74,0,
69,0,66,0,55,0,54,0,46,0,15,0,247,255,242,255,242,255,235,255,226,255,228,255,217,255,194,255,192,255,189,255,
170,255,172,255,179,255,172,255,173,255,176,255,178,255,192,255,207,255,220,255,241,255,251,255,246,255,248,255,5,0,26,0,
50,0,63,0,57,0,47,0,54,0,72,0,79,0,85,0,93,0,92,0,92,0,91,0,81,0,88,0,99,0,83,0,
70,0,65,0,47,0,35,0,23,0,5,0,250,255,229,255,205,255,203,255,193,255,171,255,162,255,150,255,134,255,125,255,
113,255,103,255,95,255,82,255,79,255,76,255,64,255,58,255,55,255,58,255,70,255,75,255,83,255,99,255,91,255,77,255,
95,255,120,255,122,255,124,255,137,255,139,255,139,255,155,255,171,255,171,255,170,255,186,255,212,255,216,255,208,255,218,255,
229,255,226,255,227,255,230,255,238,255,244,255,233,255,231,255,240,255,232,255,222,255,220,255,219,255,226,255,225,255,208,255,
196,255,191,255,187,255,191,255,197,255,198,255,204,255,220,255,232,255,232,255,238,255,247,255,242,255,240,255,251,255,14,0,
29,0,25,0,28,0,45,0,47,0,45,0,59,0,69,0,81,0,92,0,86,0,86,0,101,0,102,0,99,0,104,0,
103,0,105,0,103,0,91,0,93,0,93,0,76,0,65,0,50,0,36,0,40,0,30,0,13,0,8,0,248,255,232,255,
225,255,212,255,215,255,220,255,202,255,188,255,184,255,180,255,183,255,179,255,163,255,164,255,180,255,178,255,162,255,163,255,
164,255,158,255,176,255,188,255,184,255,207,255,226,255,222,255,232,255,251,255,10,0,23,0,26,0,37,0,56,0,58,0,
63,0,78,0,88,0,97,0,104,0,103,0,99,0,101,0,103,0,100,0,100,0,100,0,97,0,91,0,73,0,62,0,
66,0,63,0,50,0,39,0,33,0,35,0,25,0,2,0,254,255,247,255,218,255,203,255,211,255,217,255,211,255,205,255,
198,255,188,255,193,255,202,255,196,255,194,255,202,255,213,255,228,255,238,255,251,255,7,0,3,0,10,0,24,0,29,0,
46,0,65,0,66,0,69,0,74,0,81,0,86,0,84,0,90,0,98,0,91,0,89,0,97,0,98,0,90,0,75,0,
68,0,66,0,61,0,67,0,71,0,55,0,38,0,36,0,41,0,40,0,35,0,30,0,23,0,20,0,20,0,11,0,
7,0,10,0,2,0,249,255,5,0,18,0,13,0,8,0,18,0,22,0,17,0,28,0,32,0,18,0,18,0,28,0,
27,0,17,0,6,0,0,0,6,0,15,0,20,0,21,0,20,0,14,0,6,0,6,0,7,0,16,0,37,0,38,0,
32,0,43,0,44,0,37,0,46,0,59,0,82,0,107,0,114,0,127,0,136,0,129,0,141,0,151,0,147,0,160,0,
173,0,177,0,186,0,181,0,172,0,169,0,163,0,163,0,156,0,139,0,137,0,122,0,92,0,85,0,72,0,44,0,
23,0,4,0,247,255,238,255,213,255,184,255,166,255,154,255,140,255,119,255,102,255,92,255,81,255,66,255,54,255,56,255,
60,255,55,255,59,255,71,255,74,255,78,255,84,255,91,255,98,255,94,255,101,255,127,255,145,255,160,255,179,255,192,255,
204,255,218,255,231,255,245,255,4,0,9,0,10,0,18,0,18,0,13,0,26,0,29,0,18,0,24,0,20,0,9,0,
15,0,11,0,253,255,236,255,214,255,219,255,228,255,208,255,202,255,205,255,198,255,202,255,192,255,171,255,178,255,192,255,
192,255,187,255,182,255,182,255,184,255,185,255,188,255,189,255,186,255,190,255,204,255,208,255,198,255,195,255,197,255,195,255,
203,255,207,255,203,255,207,255,205,255,202,255,216,255,222,255,213,255,206,255,206,255,204,255,200,255,203,255,205,255,204,255,
207,255,200,255,186,255,192,255,204,255,205,255,203,255,200,255,208,255,221,255,225,255,230,255,241,255,248,255,248,255,247,255,
254,255,9,0,17,0,23,0,33,0,41,0,46,0,56,0,73,0,83,0,90,0,99,0,99,0,98,0,101,0,97,0,
97,0,97,0,88,0,85,0,85,0,84,0,72,0,59,0,74,0,88,0,65,0,52,0,62,0,59,0,48,0,47,0,
54,0,54,0,41,0,34,0,33,0,31,0,35,0,42,0,43,0,48,0,52,0,54,0,64,0,75,0,82,0,88,0,
86,0,82,0,91,0,100,0,92,0,90,0,101,0,99,0,101,0,114,0,107,0,97,0,98,0,86,0,76,0,76,0,
63,0,50,0,37,0,16,0,6,0,0,0,245,255,240,255,234,255,224,255,211,255,190,255,171,255,161,255,146,255,135,255,
133,255,134,255,132,255,126,255,125,255,120,255,106,255,113,255,131,255,132,255,135,255,146,255,152,255,162,255,164,255,163,255,
180,255,192,255,195,255,202,255,202,255,208,255,228,255,239,255,241,255,244,255,241,255,245,255,2,0,5,0,255,255,9,0,
21,0,14,0,5,0,7,0,8,0,10,0,11,0,16,0,29,0,32,0,29,0,36,0,35,0,29,0,45,0,57,0,
49,0,57,0,82,0,85,0,75,0,74,0,75,0,77,0,80,0,76,0,77,0,82,0,75,0,66,0,66,0,69,0,
68,0,67,0,70,0,63,0,56,0,56,0,49,0,44,0,46,0,34,0,35,0,45,0,39,0,38,0,37,0,26,0,
30,0,35,0,38,0,53,0,56,0,58,0,72,0,74,0,72,0,76,0,83,0,89,0,91,0,95,0,88,0,77,0,
83,0,74,0,57,0,62,0,53,0,38,0,38,0,22,0,7,0,252,255,232,255,225,255,214,255,193,255,193,255,185,255,
161,255,134,255,110,255,111,255,115,255,96,255,87,255,85,255,78,255,84,255,89,255,86,255,82,255,86,255,105,255,110,255,
114,255,145,255,159,255,156,255,182,255,203,255,208,255,225,255,241,255,250,255,7,0,15,0,20,0,30,0,43,0,52,0,
54,0,50,0,44,0,36,0,29,0,23,0,16,0,14,0,12,0,4,0,250,255,244,255,231,255,211,255,196,255,193,255,
198,255,194,255,179,255,171,255,177,255,183,255,186,255,191,255,190,255,193,255,206,255,213,255,221,255,242,255,3,0,12,0,
27,0,45,0,59,0,80,0,102,0,113,0,124,0,139,0,150,0,160,0,166,0,159,0,161,0,169,0,164,0,161,0,
157,0,138,0,133,0,128,0,109,0,102,0,91,0,71,0,67,0,57,0,36,0,26,0,11,0,0,0,249,255,230,255,
214,255,207,255,200,255,190,255,178,255,174,255,171,255,159,255,167,255,174,255,156,255,157,255,168,255,164,255,169,255,181,255,
181,255,181,255,188,255,192,255,195,255,202,255,206,255,201,255,200,255,208,255,207,255,200,255,204,255,211,255,212,255,210,255,
214,255,215,255,208,255,203,255,195,255,190,255,189,255,184,255,188,255,204,255,202,255,198,255,209,255,214,255,215,255,230,255,
241,255,243,255,244,255,244,255,0,0,18,0,23,0,25,0,30,0,27,0,34,0,46,0,41,0,37,0,38,0,28,0,
25,0,32,0,26,0,12,0,6,0,4,0,2,0,1,0,250,255,241,255,242,255,237,255,223,255,227,255,228,255,214,255,
214,255,214,255,203,255,208,255,217,255,225,255,238,255,246,255,0,0,5,0,254,255,5,0,22,0,23,0,24,0,29,0,
37,0,43,0,43,0,48,0,52,0,49,0,51,0,53,0,49,0,46,0,43,0,39,0,36,0,29,0,23,0,17,0,
10,0,3,0,249,255,241,255,232,255,216,255,212,255,215,255,207,255,199,255,193,255,179,255,170,255,172,255,171,255,166,255,
163,255,160,255,166,255,172,255,163,255,155,255,162,255,169,255,172,255,181,255,192,255,195,255,198,255,207,255,211,255,214,255,
226,255,231,255,229,255,237,255,240,255,238,255,248,255,1,0,1,0,11,0,24,0,27,0,32,0,39,0,47,0,49,0,
49,0,63,0,73,0,65,0,67,0,80,0,79,0,74,0,77,0,82,0,84,0,84,0,89,0,93,0,86,0,87,0,
94,0,87,0,84,0,87,0,77,0,70,0,69,0,68,0,71,0,66,0,67,0,79,0,76,0,72,0,79,0,79,0,
75,0,70,0,65,0,66,0,63,0,62,0,65,0,60,0,57,0,55,0,47,0,48,0,46,0,38,0,45,0,54,0,
47,0,41,0,43,0,44,0,42,0,45,0,49,0,41,0,31,0,26,0,26,0,24,0,11,0,0,0,1,0,249,255,
240,255,242,255,238,255,226,255,219,255,216,255,212,255,205,255,197,255,187,255,179,255,181,255,181,255,175,255,170,255,165,255,
160,255,154,255,152,255,161,255,164,255,154,255,157,255,166,255,166,255,164,255,164,255,168,255,178,255,186,255,194,255,194,255,
184,255,184,255,197,255,206,255,205,255,208,255,215,255,215,255,213,255,215,255,216,255,225,255,231,255,226,255,233,255,243,255,
241,255,243,255,242,255,235,255,239,255,246,255,247,255,0,0,6,0,7,0,12,0,17,0,18,0,23,0,28,0,33,0,
37,0,35,0,36,0,44,0,51,0,54,0,53,0,55,0,58,0,61,0,66,0,68,0,68,0,69,0,67,0,64,0,
61,0,55,0,55,0,58,0,55,0,57,0,54,0,46,0,47,0,43,0,33,0,33,0,37,0,36,0,26,0,20,0,
26,0,24,0,20,0,26,0,22,0,13,0,13,0,10,0,9,0,10,0,5,0,6,0,5,0,2,0,7,0,10,0,
9,0,17,0,16,0,10,0,11,0,10,0,10,0,13,0,12,0,8,0,6,0,6,0,8,0,4,0,1,0,3,0,
253,255,245,255,245,255,243,255,238,255,239,255,245,255,249,255,250,255,246,255,241,255,241,255,244,255,246,255,243,255,240,255,
246,255,251,255,250,255,250,255,254,255,7,0,13,0,12,0,10,0,13,0,20,0,22,0,23,0,28,0,30,0,27,0,
30,0,35,0,35,0,40,0,50,0,50,0,48,0,52,0,58,0,57,0,56,0,57,0,55,0,54,0,55,0,51,0,
48,0,48,0,42,0,36,0,30,0,25,0,29,0,32,0,20,0,10,0,15,0,16,0,7,0,3,0,2,0,253,255,
249,255,246,255,241,255,240,255,239,255,229,255,223,255,226,255,229,255,226,255,223,255,224,255,223,255,224,255,227,255,226,255,
228,255,234,255,235,255,236,255,236,255,236,255,241,255,240,255,235,255,241,255,245,255,242,255,250,255,251,255,247,255,2,0,
9,0,3,0,4,0,4,0,2,0,5,0,6,0,4,0,3,0,1,0,255,255,255,255,251,255,251,255,251,255,246,255,
243,255,241,255,234,255,229,255,231,255,236,255,239,255,240,255,239,255,235,255,230,255,232,255,232,255,221,255,220,255,231,255,
236,255,236,255,237,255,235,255,241,255,249,255,251,255,251,255,252,255,254,255,3,0,5,0,4,0,7,0,9,0,11,0,
13,0,10,0,8,0,9,0,9,0,10,0,13,0,12,0,8,0,5,0,7,0,9,0,7,0,4,0,4,0,3,0,
2,0,254,255,253,255,255,255,251,255,250,255,255,255,254,255,253,255,0,0,0,0,253,255,0,0,5,0,4,0,255,255,
0,0,255,255,247,255,250,255,255,255,252,255,252,255,1,0,1,0,0,0,253,255,248,255,239,255,233,255,235,255,234,255,
227,255,227,255,229,255,223,255,216,255,218,255,226,255,227,255,220,255,215,255,210,255,206,255,209,255,210,255,208,255,209,255,
213,255,215,255,212,255,210,255,216,255,222,255,219,255,216,255,220,255,224,255,225,255,230,255,236,255,235,255,233,255,239,255,
240,255,237,255,240,255,241,255,240,255,240,255,236,255,231,255,232,255,235,255,233,255,231,255,234,255,234,255,232,255,234,255,
235,255,233,255,239,255,237,255,229,255,230,255,230,255,225,255,231,255,234,255,232,255,236,255,240,255,238,255,242,255,246,255,
248,255,254,255,255,255,251,255,252,255,255,255,2,0,3,0,4,0,8,0,8,0,7,0,10,0,15,0,22,0,25,0,
23,0,26,0,31,0,29,0,26,0,23,0,24,0,31,0,32,0,27,0,27,0,26,0,25,0,24,0,18,0,18,0,
22,0,17,0,15,0,18,0,16,0,12,0,13,0,17,0,13,0,5,0,8,0,11,0,6,0,6,0,5,0,2,0,
4,0,4,0,255,255,250,255,251,255,253,255,248,255,247,255,253,255,253,255,250,255,251,255,248,255,249,255,254,255,249,255,
248,255,252,255,249,255,251,255,4,0,3,0,250,255,252,255,3,0,5,0,5,0,3,0,2,0,7,0,6,0,255,255,
5,0,10,0,6,0,7,0,5,0,1,0,2,0,0,0,254,255,2,0,3,0,0,0,253,255,250,255,248,255,245,255,
243,255,242,255,236,255,236,255,240,255,240,255,239,255,234,255,229,255,231,255,229,255,229,255,233,255,229,255,228,255,229,255,
227,255,232,255,237,255,237,255,241,255,244,255,247,255,250,255,248,255,0,0,9,0,12,0,17,0,21,0,23,0,28,0,
27,0,29,0,36,0,35,0,37,0,39,0,39,0,42,0,39,0,37,0,42,0,39,0,37,0,38,0,34,0,36,0,
36,0,23,0,24,0,28,0,22,0,18,0,16,0,10,0,8,0,6,0,4,0,8,0,10,0,8,0,4,0,2,0,
7,0,10,0,10,0,6,0,1,0,5,0,9,0,9,0,14,0,13,0,10,0,15,0,14,0,10,0,14,0,16,0,
19,0,23,0,22,0,21,0,22,0,20,0,20,0,23,0,24,0,21,0,17,0,19,0,22,0,19,0,14,0,13,0,
13,0,13,0,11,0,10,0,7,0,1,0,254,255,0,0,253,255,251,255,250,255,245,255,244,255,241,255,236,255,237,255,
238,255,237,255,237,255,233,255,228,255,232,255,234,255,235,255,239,255,241,255,245,255,248,255,249,255,252,255,252,255,251,255,
255,255,1,0,254,255,253,255,253,255,253,255,254,255,254,255,255,255,1,0,1,0,0,0,1,0,0,0,1,0,3,0,
5,0,8,0,7,0,6,0,10,0,13,0,13,0,13,0,13,0,12,0,15,0,20,0,22,0,19,0,15,0,20,0,
24,0,21,0,20,0,18,0,14,0,17,0,19,0,17,0,22,0,24,0,14,0,14,0,20,0,15,0,11,0,14,0,
11,0,7,0,10,0,10,0,6,0,2,0,1,0,1,0,252,255,244,255,245,255,247,255,239,255,235,255,233,255,222,255,
219,255,222,255,217,255,213,255,213,255,211,255,212,255,211,255,207,255,211,255,216,255,215,255,211,255,209,255,213,255,214,255,
212,255,215,255,214,255,214,255,220,255,223,255,228,255,235,255,236,255,240,255,242,255,239,255,246,255,253,255,248,255,248,255,
251,255,251,255,253,255,255,255,2,0,4,0,3,0,5,0,4,0,1,0,3,0,4,0,4,0,4,0,2,0,5,0,
4,0,1,0,3,0,4,0,3,0,6,0,4,0,1,0,2,0,2,0,4,0,3,0,0,0,4,0,8,0,8,0,
9,0,8,0,9,0,10,0,9,0,11,0,13,0,16,0,20,0,18,0,16,0,22,0,23,0,22,0,25,0,26,0,
24,0,25,0,26,0,25,0,24,0,23,0,19,0,17,0,18,0,18,0,18,0,18,0,15,0,12,0,14,0,14,0,
12,0,12,0,9,0,5,0,7,0,8,0,3,0,0,0,2,0,1,0,0,0,2,0,0,0,255,255,1,0,255,255,
252,255,248,255,247,255,253,255,253,255,249,255,253,255,251,255,244,255,247,255,250,255,249,255,251,255,249,255,246,255,246,255,
247,255,247,255,243,255,241,255,242,255,243,255,243,255,245,255,242,255,239,255,243,255,246,255,243,255,242,255,244,255,246,255,
246,255,250,255,254,255,252,255,251,255,2,0,7,0,4,0,4,0,8,0,7,0,6,0,8,0,10,0,13,0,15,0,
14,0,13,0,12,0,11,0,15,0,16,0,14,0,11,0,9,0,11,0,10,0,6,0,6,0,3,0,253,255,253,255,
0,0,255,255,254,255,255,255,255,255,253,255,252,255,254,255,255,255,255,255,254,255,254,255,2,0,255,255,250,255,255,255,
1,0,254,255,1,0,1,0,2,0,8,0,7,0,4,0,4,0,6,0,10,0,10,0,6,0,9,0,10,0,6,0,
7,0,9,0,6,0,2,0,0,0,255,255,1,0,3,0,0,0,252,255,253,255,255,255,253,255,255,255,0,0,251,255,
248,255,252,255,254,255,253,255,255,255,2,0,2,0,1,0,2,0,5,0,5,0,2,0,3,0,5,0,5,0,8,0,
12,0,10,0,8,0,11,0,11,0,11,0,13,0,13,0,15,0,16,0,13,0,15,0,20,0,20,0,17,0,16,0,
15,0,15,0,17,0,16,0,12,0,12,0,14,0,12,0,11,0,12,0,10,0,12,0,11,0,8,0,10,0,11,0,
9,0,10,0,8,0,3,0,6,0,9,0,9,0,8,0,4,0,3,0,4,0,3,0,0,0,1,0,255,255,254,255,
254,255,254,255,253,255,253,255,254,255,253,255,251,255,249,255,248,255,247,255,246,255,244,255,241,255,242,255,243,255,240,255,
240,255,239,255,237,255,237,255,233,255,232,255,236,255,236,255,234,255,235,255,235,255,237,255,237,255,234,255,235,255,236,255,
237,255,239,255,238,255,238,255,242,255,243,255,241,255,240,255,244,255,247,255,247,255,249,255,252,255,248,255,248,255,250,255,
249,255,251,255,249,255,244,255,248,255,249,255,246,255,251,255,252,255,247,255,247,255,250,255,251,255,250,255,250,255,250,255,
250,255,249,255,250,255,249,255,250,255,250,255,247,255,248,255,249,255,249,255,252,255,253,255,252,255,252,255,252,255,252,255,
255,255,0,0,0,0,1,0,1,0,4,0,6,0,5,0,4,0,5,0,7,0,9,0,8,0,6,0,6,0,6,0,
5,0,5,0,6,0,6,0,5,0,5,0,7,0,4,0,3,0,5,0,4,0,1,0,3,0,3,0,255,255,255,255,
255,255,252,255,251,255,252,255,252,255,253,255,254,255,254,255,254,255,254,255,255,255,255,255,0,0,254,255,254,255,0,0,
2,0,2,0,2,0,2,0,2,0,3,0,2,0,2,0,5,0,5,0,3,0,4,0,5,0,5,0,3,0,2,0,
0,0,255,255,1,0,0,0,254,255,254,255,251,255,248,255,251,255,251,255,249,255,249,255,246,255,244,255,245,255,244,255,
244,255,245,255,244,255,243,255,242,255,244,255,247,255,247,255,246,255,249,255,250,255,248,255,249,255,251,255,250,255,249,255,
253,255,254,255,253,255,255,255,2,0,0,0,255,255,252,255,251,255,255,255,0,0,0,0,1,0,0,0,255,255,254,255,
252,255,252,255,252,255,251,255,250,255,245,255,245,255,246,255,245,255,246,255,246,255,245,255,247,255,246,255,245,255,247,255,
248,255,250,255,252,255,250,255,252,255,253,255,251,255,253,255,0,0,0,0,3,0,3,0,2,0,7,0,10,0,10,0,
10,0,10,0,13,0,14,0,14,0,15,0,16,0,15,0,15,0,14,0,14,0,16,0,15,0,14,0,13,0,12,0,
12,0,13,0,13,0,14,0,14,0,12,0,10,0,10,0,10,0,9,0,7,0,7,0,7,0,6,0,6,0,6,0,
6,0,8,0,7,0,6,0,8,0,8,0,5,0,5,0,7,0,7,0,8,0,8,0,7,0,8,0,9,0,8,0,
6,0,7,0,6,0,4,0,5,0,5,0,1,0,0,0,2,0,0,0,0,0,255,255,254,255,254,255,254,255,252,255,
251,255,250,255,249,255,250,255,251,255,250,255,249,255,247,255,248,255,249,255,247,255,247,255,248,255,248,255,247,255,248,255,
248,255,249,255,251,255,251,255,252,255,252,255,252,255,254,255,255,255,254,255,254,255,252,255,251,255,252,255,251,255,251,255,
251,255,252,255,254,255,255,255,255,255,1,0,1,0,255,255,1,0,2,0,2,0,2,0,0,0,0,0,2,0,3,0,
4,0,4,0,4,0,6,0,5,0,4,0,7,0,7,0,8,0,8,0,8,0,9,0,11,0,10,0,10,0,11,0,
13,0,15,0,14,0,14,0,14,0,11,0,11,0,10,0,9,0,10,0,10,0,8,0,9,0,8,0,7,0,6,0,
5,0,5,0,6,0,3,0,3,0,3,0,1,0,2,0,1,0,254,255,0,0,255,255,253,255,255,255,254,255,251,255,
252,255,252,255,252,255,253,255,254,255,255,255,254,255,253,255,253,255,253,255,253,255,253,255,252,255,254,255,254,255,253,255,
255,255,0,0,255,255,0,0,0,0,255,255,0,0,255,255,254,255,254,255,254,255,255,255,254,255,253,255,254,255,253,255,
252,255,252,255,251,255,252,255,253,255,251,255,252,255,252,255,251,255,253,255,254,255,253,255,254,255,254,255,254,255,255,255,
255,255,255,255,2,0,2,0,0,0,1,0,2,0,3,0,4,0,4,0,4,0,5,0,5,0,4,0,4,0,5,0,
5,0,5,0,5,0,6,0,5,0,3,0,3,0,5,0,4,0,3,0,3,0,1,0,1,0,1,0,0,0,1,0,
1,0,254,255,254,255,0,0,254,255,253,255,253,255,253,255,253,255,252,255,252,255,252,255,251,255,252,255,252,255,251,255,
252,255,253,255,252,255,252,255,252,255,252,255,253,255,252,255,251,255,252,255,252,255,252,255,252,255,254,255,255,255,254,255,
254,255,254,255,254,255,254,255,253,255,254,255,0,0,255,255,253,255,255,255,255,255,255,255,1,0,255,255,255,255,255,255,
255,255,255,255,254,255,252,255,253,255,253,255,252,255,253,255,253,255,253,255,254,255,253,255,254,255,254,255,251,255,253,255,
254,255,252,255,254,255,254,255,253,255,254,255,255,255,254,255,0,0,1,0,1,0,0,0,0,0,1,0,0,0,0,0,
2,0,2,0,1,0,1,0,2,0,1,0,1,0,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,255,255,
254,255,254,255,253,255,254,255,253,255,253,255,255,255,254,255,253,255,254,255,253,255,252,255,254,255,254,255,253,255,255,255,
0,0,0,0,0,0,255,255,1,0,2,0,2,0,2,0,2,0,2,0,3,0,1,0,0,0,3,0,3,0,1,0,
1,0,2,0,2,0,3,0,3,0,2,0,2,0,2,0,3,0,3,0,2,0,3,0,3,0,2,0,2,0,3,0,
2,0,3,0,3,0,2,0,2,0,3,0,4,0,3,0,3,0,4,0,3,0,1,0,3,0,3,0,2,0,3,0,
3,0,3,0,2,0,3,0,3,0,2,0,3,0,4,0,3,0,2,0,2,0,1,0,1,0,2,0,2,0,2,0,
2,0,1,0,2,0,1,0,255,255,1,0,1,0,0,0,1,0,0,0,0,0,2,0,0,0,254,255,255,255,0,0,
0,0,255,255,254,255,0,0,0,0,255,255,1,0,255,255,254,255,0,0,0,0,0,0,0,0,254,255,0,0,0,0,
254,255,255,255,0,0,255,255,0,0,0,0,255,255,255,255,254,255,254,255,254,255,253,255,254,255,254,255,254,255,254,255,
252,255,253,255,255,255,254,255,254,255,0,0,254,255,254,255,254,255,254,255,255,255,254,255,254,255,255,255,254,255,254,255,
254,255,255,255,0,0,255,255,254,255,0,0,255,255,254,255,0,0,255,255,255,255,255,255,254,255,255,255,0,0,254,255,
255,255,0,0,254,255,254,255,254,255,254,255,255,255,255,255,255,255,254,255,254,255,253,255,254,255,254,255,255,255,254,255,
254,255,254,255,254,255,254,255,255,255,254,255,254,255,255,255,255,255,0,0,255,255,255,255,1,0,0,0,255,255,0,0,
0,0,255,255,0,0,0,0,1,0,0,0,254,255,255,255,0,0,255,255,255,255,255,255,255,255,255,255,0,0,1,0,
255,255,254,255,255,255,255,255,255,255,0,0,255,255,255,255,255,255,255,255,0,0,0,0,255,255,255,255,255,255,255,255,
0,0,0,0,0,0,255,255,255,255,0,0,1,0,0,0,0,0,255,255,255,255,0,0,255,255,255,255,255,255,254,255,
254,255,254,255,255,255,0,0,255,255,254,255,254,255,254,255,0,0,1,0,255,255,254,255,254,255,254,255,254,255,255,255,
0,0,255,255,254,255,255,255,255,255,253,255,254,255,255,255,254,255,254,255,255,255,255,255,0,0,254,255,253,255,255,255,
255,255,255,255,255,255,254,255,255,255,0,0,255,255,255,255,255,255,255,255,0,0,254,255,255,255,0,0,255,255,255,255,
0,0,255,255,0,0,1,0,0,0,0,0,1,0,0,0,255,255,0,0,0,0,1,0,1,0,0,0,0,0,2,0,
2,0,0,0,0,0,0,0,0,0,1,0,1,0,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,
0,0,0,0,1,0,2,0,1,0,0,0,1,0,2,0,2,0,2,0,2,0,2,0,2,0,1,0,1,0,2,0,
2,0,2,0,3,0,3,0,2,0,3,0,3,0,2,0,2,0,3,0,3,0,4,0,3,0,2,0,3,0,2,0,
2,0,4,0,4,0,3,0,2,0,2,0,2,0,3,0,2,0,3,0,3,0,3,0,3,0,3,0,3,0,3,0,
3,0,2,0,2,0,2,0,3,0,3,0,2,0,1,0,1,0,1,0,2,0,1,0,1,0,1,0,1,0,1,0,
1,0,1,0,2,0,1,0,0,0,0,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,1,0,0,0,0,0,
1,0,255,255,0,0,0,0,255,255,0,0,1,0,255,255,0,0,1,0,0,0,0,0,0,0,0,0,0,0,255,255,
254,255,0,0,0,0,255,255,255,255,0,0,0,0,0,0,255,255,254,255,255,255,0,0,0,0,0,0,0,0,0,0,
255,255,255,255,254,255,255,255,0,0,255,255,255,255,255,255,254,255,255,255,0,0,0,0,0,0,255,255,254,255,1,0,
0,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,1,0,1,0,1,0,2,0,1,0,1,0,
1,0,1,0,1,0,1,0,0,0,1,0,2,0,1,0,1,0,1,0,1,0,1,0,255,255,0,0,1,0,0,0,
0,0,1,0,1,0,0,0,255,255,255,255,255,255,0,0,1,0,0,0,255,255,255,255,255,255,0,0,1,0,0,0,
0,0,1,0,255,255,0,0,1,0,0,0,0,0,0,0,255,255,0,0,0,0,255,255,0,0,0,0,254,255,255,255,
0,0,0,0,0,0,255,255,255,255,255,255,254,255,254,255,255,255,254,255,253,255,254,255,255,255,255,255,254,255,254,255,
254,255,254,255,255,255,255,255,255,255,255,255,254,255,254,255,255,255,255,255,255,255,0,0,255,255,254,255,255,255,255,255,
0,0,0,0,0,0,255,255,0,0,0,0,255,255,255,255,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,1,0,2,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,
1,0,0,0,0,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,
1,0,1,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,
255,255,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,255,255,255,255,0,0,0,0,0,0,0,0,255,255,
255,255,255,255,0,0,0,0,0,0,255,255,0,0,0,0,0,0,0,0,255,255,255,255,0,0,0,0,255,255,0,0,
0,0,255,255,255,255,0,0,255,255,0,0,0,0,255,255,255,255,0,0,0,0,255,255,255,255,255,255,0,0,0,0,
0,0,255,255,254,255,255,255,0,0,0,0,0,0,255,255,255,255,0,0,0,0,0,0,1,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,255,255,0,0,0,0,
1,0,1,0,1,0,1,0,2,0,1,0,1,0,1,0,1,0,1,0,2,0,1,0,0,0,1,0,1,0,1,0,
2,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,
2,0,1,0,1,0,1,0,1,0,2,0,1,0,1,0,2,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,
0,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,1,0,1,0,
0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,
0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,
255,255,255,255,0,0,0,0,255,255,0,0,0,0,255,255,255,255,0,0,255,255,0,0,1,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,255,255,0,0,1,0,0,0,0,0,0,0,0,0,255,255,0,0,0,0,0,0,0,0,
1,0,0,0,0,0,1,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,0,0,0,0,255,255,255,255,255,255,255,255,
0,0,255,255,255,255,0,0,255,255,255,255,0,0,255,255,254,255,255,255,255,255,255,255,0,0,0,0,255,255,255,255,
0,0,0,0,0,0,255,255,255,255,0,0,255,255,255,255,0,0,255,255,255,255,255,255,255,255,255,255,0,0,0,0,
255,255,255,255,255,255,0,0,255,255,255,255,0,0,0,0,254,255,254,255,255,255,0,0,255,255,255,255,255,255,0,0,
255,255,254,255,255,255,255,255,254,255,254,255,255,255,0,0,0,0,255,255,255,255,0,0,255,255,255,255,0,0,255,255,
255,255,255,255,0,0,255,255,255,255,255,255,0,0,0,0,255,255,255,255,255,255,255,255,0,0,0,0,255,255,255,255,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,0,0,255,255,255,255,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,255,255,255,255,0,0,0,0,0,0,0,0,0,0,0,0,255,255,0,0,0,0,0,0,255,255,255,255,
255,255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,
1,0,0,0,254,255,255,255,0,0,0,0,0,0,0,0,255,255,255,255,0,0,0,0,1,0,1,0,255,255,255,255,
1,0,1,0,0,0,0,0,0,0,0,0,255,255,255,255,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,
0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,1,0,2,0,1,0,1,0,1,0,1,0,1,0,
1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,2,0,1,0,1,0,0,0,1,0,1,0,
1,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,1,0,0,0,0,0,1,0,0,0,1,0,
1,0,1,0,0,0,0,0,0,0,255,255,0,0,1,0,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,
0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,1,0,1,0,1,0,
0,0,0,0,1,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0,0,0,255,255,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,255,255,0,0,0,0,255,255,
255,255,255,255,255,255,255,255,0,0,0,0,0,0,255,255,255,255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,255,255,0,0,0,0,0,0,0,0,0,0,255,255,255,255,1,0,1,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,
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,254,255,0,0,1,0,0,0,255,255,0,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,0,0,
0,0,255,255,0,0,0,0,255,255,255,255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,0,0,0,0,
255,255,0,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,0,0,255,255,255,255,255,255,0,0,0,0,255,255,
0,0,0,0,0,0,0,0,0,0,255,255,0,0,0,0,255,255,255,255,0,0,0,0,0,0,0,0,0,0,255,255,
0,0,1,0,0,0,255,255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,0,0,255,255,
255,255,255,255,255,255,255,255,255,255,0,0,0,0,0,0,255,255,0,0,0,0,0,0,0,0,0,0,255,255,255,255,
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,1,0,0,0,
0,0,1,0,0,0,255,255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,
1,0,0,0,255,255,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,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,1,0,0,0,255,255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,0,0,0,0,0,0,
0,0,0,0,0,0,255,255,0,0,0,0,0,0,0,0,0,0,1,0,0,0,255,255,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,1,0,0,0,255,255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,
1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,
0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,
0,0,0,0,
};

1545
src/client/sound/data/click.pcm Executable file

File diff suppressed because it is too large Load Diff

564
src/client/sound/data/cloth1.pcm Executable file
View File

@@ -0,0 +1,564 @@
unsigned char PCM_cloth1[17962] = {
1,0,0,0,2,0,0,0,68,172,0,0,13,35,0,0,245,255,237,255,243,255,233,255,244,255,26,0,32,0,29,0,
50,0,46,0,21,0,22,0,9,0,226,255,206,255,196,255,200,255,227,255,235,255,234,255,8,0,33,0,46,0,62,0,
63,0,82,0,116,0,90,0,4,0,161,255,67,255,39,255,129,255,9,0,76,0,65,0,28,0,242,255,1,0,73,0,
44,0,218,255,236,255,202,255,115,255,199,255,54,0,92,0,0,1,154,1,85,1,227,0,217,0,50,1,152,1,172,1,
220,1,42,2,238,1,219,1,97,2,81,2,133,1,8,1,12,1,3,1,167,0,143,0,229,0,181,0,3,0,175,255,
221,255,90,0,128,0,239,255,114,255,245,254,64,254,78,254,165,254,132,254,173,254,89,254,57,253,107,253,152,254,247,254,
13,255,237,254,27,254,87,253,192,252,12,252,102,251,163,250,255,249,174,249,80,249,79,249,248,249,140,250,155,250,103,250,
104,250,5,250,98,248,56,247,128,247,255,246,16,246,0,247,150,248,38,249,41,249,33,249,193,249,239,250,146,251,12,252,
236,252,201,253,134,254,164,254,13,254,121,253,202,252,242,252,236,254,82,0,222,255,148,255,245,255,145,0,135,1,237,1,
228,1,66,2,189,1,249,255,51,255,83,0,194,1,60,2,158,1,142,255,240,252,100,252,5,253,41,252,65,252,167,254,
143,255,66,255,71,0,112,0,59,255,219,254,113,254,118,253,8,253,96,252,252,250,236,249,35,250,183,251,30,253,129,253,
25,254,162,254,6,254,235,252,203,251,219,250,241,250,235,251,205,252,206,252,37,252,42,252,203,252,211,252,166,252,170,252,
174,252,128,253,194,254,208,254,235,253,137,253,222,253,130,253,237,251,50,251,220,251,110,251,21,250,24,250,161,250,252,249,
180,248,125,248,185,250,208,253,151,254,136,253,169,252,252,251,74,252,127,254,74,0,138,255,176,253,94,253,75,255,255,0,
242,255,186,253,199,252,108,252,74,252,81,253,217,254,224,255,79,0,42,0,102,0,93,1,135,1,56,1,241,1,113,2,
238,1,133,2,128,4,18,5,65,3,190,1,12,2,24,2,68,1,57,1,251,0,227,255,184,0,21,3,16,3,223,0,
204,255,142,0,51,1,74,0,74,255,80,0,99,2,90,3,173,2,89,1,123,1,178,3,189,5,11,6,86,5,69,5,
136,6,131,6,180,3,15,2,210,2,83,2,203,1,194,3,122,4,163,2,13,2,173,2,142,2,121,2,110,2,52,2,
217,2,115,3,16,3,103,3,170,4,184,4,85,3,13,2,190,1,72,2,167,2,224,1,247,0,197,1,50,3,123,2,
237,0,17,2,122,4,192,4,113,4,133,5,241,5,34,5,90,4,134,2,247,255,72,255,169,255,115,255,231,255,106,0,
139,255,90,255,82,0,30,0,91,255,86,255,68,255,213,255,132,1,127,2,170,2,53,3,192,3,29,4,141,4,246,4,
227,5,176,6,177,5,67,4,164,4,112,5,244,4,211,4,68,6,119,7,81,7,31,7,76,7,106,7,18,8,178,8,
74,8,32,8,5,8,77,6,65,5,204,6,210,7,251,6,141,6,254,6,116,7,180,7,225,7,246,8,194,10,158,11,
179,11,140,11,191,10,142,10,7,12,147,13,23,14,104,14,110,15,105,16,32,15,217,11,219,9,251,9,159,10,87,11,
138,11,57,10,46,8,145,7,25,10,218,13,15,14,196,10,245,8,237,9,241,10,178,10,142,9,78,8,199,7,225,7,
144,7,79,6,164,5,50,6,6,5,229,1,176,0,102,0,73,254,96,253,55,254,59,253,95,252,161,253,109,253,201,251,
124,251,48,250,188,246,146,245,25,248,172,249,7,248,105,246,3,246,136,244,170,243,212,245,28,247,59,245,66,244,18,246,
115,248,204,248,230,245,241,242,13,243,98,243,175,242,129,243,77,244,172,243,9,244,35,244,88,242,31,242,184,243,73,244,
134,245,237,247,253,247,226,246,246,247,23,249,99,248,85,248,103,249,199,249,221,249,245,249,18,249,1,248,91,247,14,246,
146,244,157,243,136,242,58,242,237,242,69,242,228,240,119,241,164,242,130,242,63,242,145,242,251,242,26,243,111,242,185,241,
57,242,81,243,238,243,8,244,44,244,49,245,115,246,250,245,133,244,8,245,133,247,83,249,41,250,251,251,183,253,197,252,
155,251,59,253,35,254,32,252,114,251,62,253,53,254,213,254,2,1,192,2,22,2,232,0,130,2,193,6,109,9,144,8,
120,6,132,4,145,3,114,5,159,7,244,5,15,3,161,2,171,2,94,2,191,3,21,5,87,4,5,4,98,5,34,6,
199,5,246,5,241,6,212,7,3,8,89,7,112,6,45,6,14,6,147,4,120,2,238,1,107,2,146,2,247,2,186,2,
213,0,28,0,240,1,227,3,15,5,248,4,43,3,225,2,210,4,14,5,88,4,146,5,160,6,166,6,112,7,183,7,
48,6,159,4,17,5,178,6,18,5,223,255,176,253,105,255,54,0,195,0,36,1,70,254,142,251,191,251,72,251,170,250,
14,251,216,248,145,245,46,245,183,245,28,246,229,246,77,246,169,245,205,246,47,247,238,246,48,248,128,248,67,246,90,244,
169,244,81,246,209,247,165,248,10,249,139,248,147,247,136,247,198,247,178,247,38,248,65,248,167,247,19,248,61,249,100,250,
22,252,222,252,96,252,86,253,48,255,125,255,102,255,107,255,58,254,189,253,209,255,180,1,126,1,157,1,26,3,87,3,
226,1,207,1,1,4,35,6,140,6,96,5,63,4,28,5,55,7,246,7,250,6,233,5,135,5,183,5,182,6,230,7,
45,7,189,4,212,3,124,4,224,3,80,3,25,5,160,6,239,5,86,5,185,5,67,5,140,3,84,2,248,2,127,4,
7,5,204,4,72,5,226,5,168,4,26,2,248,0,4,2,151,3,164,4,120,4,246,2,19,2,215,1,54,0,5,0,
72,4,150,7,116,5,173,2,60,3,83,4,147,3,162,2,33,3,241,3,227,3,120,4,103,6,162,7,66,8,143,10,
78,13,166,13,160,12,82,13,208,15,244,16,159,14,237,10,106,9,13,10,96,10,180,9,120,8,20,7,59,7,176,8,
220,7,207,5,36,7,243,8,64,6,45,2,187,255,230,253,190,254,234,1,108,1,205,252,141,248,70,245,148,242,90,241,
195,240,241,239,247,238,62,238,223,238,186,239,198,238,246,237,163,238,213,237,194,234,106,232,137,232,30,234,21,235,67,235,
10,236,52,236,178,234,198,233,117,233,201,231,88,230,175,230,236,231,37,234,70,236,239,235,166,234,104,235,253,237,141,240,
167,241,4,242,75,243,101,243,82,241,6,242,183,245,12,246,251,243,171,244,187,245,77,244,90,243,245,244,165,248,192,252,
69,254,188,253,55,254,202,254,120,254,178,255,181,2,165,5,225,7,219,8,229,8,159,8,21,7,87,5,140,5,61,6,
44,6,83,6,5,6,165,4,224,2,218,0,27,0,109,1,254,1,179,0,114,255,209,255,119,2,103,4,214,2,151,2,
76,6,236,7,203,5,32,4,130,3,241,2,155,1,59,255,19,255,56,1,143,1,126,1,251,2,79,3,8,3,82,3,
174,2,107,3,255,5,2,6,110,4,41,4,136,4,206,6,120,9,240,7,135,5,251,5,14,6,243,5,27,7,238,5,
215,2,37,1,130,255,169,253,103,253,190,253,32,254,107,255,243,0,151,1,246,0,250,255,118,255,157,254,36,255,28,3,
8,6,197,4,54,3,62,2,49,0,65,255,127,255,48,255,63,0,127,1,239,254,34,251,20,250,47,250,82,250,103,251,
254,251,48,251,28,251,34,252,242,251,227,250,10,251,212,250,145,248,23,247,225,247,84,248,143,247,195,246,103,246,32,247,
202,248,197,249,129,249,85,248,255,246,209,246,221,246,213,245,24,246,93,248,69,249,208,248,54,249,225,248,105,247,19,248,
174,250,250,251,151,251,147,250,176,249,35,251,250,254,55,0,179,252,152,249,55,249,228,246,206,242,245,242,37,246,13,247,
100,247,72,249,239,249,104,249,124,249,117,249,19,251,85,255,86,1,120,255,197,253,8,253,57,252,169,251,143,249,85,244,
22,237,190,230,206,231,125,242,150,251,69,250,76,247,160,252,236,5,8,12,63,15,188,16,79,16,134,17,19,22,188,24,
68,24,173,25,2,28,210,27,6,27,62,25,104,21,210,20,203,24,67,28,149,30,240,31,140,30,195,29,199,31,49,32,
168,29,109,27,19,27,70,28,202,29,33,31,72,32,237,30,191,27,67,27,143,27,159,24,4,22,45,22,134,22,38,23,
241,23,120,22,47,20,221,19,82,20,96,19,125,17,46,17,252,17,27,16,174,13,50,16,209,19,152,18,83,16,245,16,
146,17,104,16,205,14,128,13,17,13,69,13,119,12,97,10,239,8,94,9,158,10,52,12,129,15,188,18,187,17,140,14,
41,14,209,14,224,13,153,13,105,13,107,11,6,12,235,16,172,19,8,18,68,15,153,11,140,8,96,9,163,10,174,8,
74,7,123,8,165,9,39,10,201,9,36,8,62,7,90,7,3,7,209,7,92,10,199,11,104,11,14,11,212,10,120,9,
185,6,103,4,143,4,249,5,217,5,215,4,251,5,156,8,216,8,22,7,162,6,245,5,212,3,161,4,56,8,241,8,
121,7,194,7,146,8,210,7,26,6,206,4,15,4,126,1,191,253,77,253,51,254,60,252,122,251,115,253,84,252,30,249,
205,248,183,248,232,245,28,243,79,242,219,242,118,243,31,243,104,242,243,241,52,241,68,240,151,239,25,239,103,239,84,241,
180,243,189,243,32,241,71,239,252,239,226,241,69,244,154,245,8,244,156,242,239,243,15,245,216,244,155,244,139,243,66,243,
129,245,193,245,122,242,48,241,239,242,220,244,82,247,236,248,137,247,50,247,171,249,73,249,150,245,73,244,6,245,111,245,
132,248,122,253,39,255,70,255,170,1,130,4,243,7,26,14,84,20,94,25,43,30,176,30,251,25,189,22,227,21,89,19,
166,17,33,19,120,19,128,16,79,12,46,9,223,9,144,13,197,14,215,12,60,12,197,13,247,15,136,18,238,19,29,19,
140,17,246,15,4,14,193,11,253,8,158,6,238,5,254,5,255,5,246,5,61,4,246,0,116,255,8,0,216,255,251,253,
57,251,147,248,79,247,7,247,171,245,25,243,146,241,31,241,36,239,19,236,233,233,150,230,61,226,134,225,63,226,220,222,
251,218,126,218,241,217,155,216,107,216,160,215,238,213,83,213,234,213,108,215,75,216,249,213,18,210,82,207,119,205,105,205,
204,207,242,208,155,206,242,203,134,203,152,203,111,202,156,201,57,202,222,202,125,203,115,205,157,207,5,207,255,202,22,200,
239,202,28,207,234,205,120,202,23,201,138,199,117,198,0,201,38,205,36,208,80,209,225,207,67,205,3,204,117,205,65,210,
195,214,92,214,243,212,138,215,235,218,46,220,216,220,101,221,90,222,85,224,79,225,83,224,136,222,128,220,55,220,182,222,
209,223,139,221,126,220,120,222,142,224,190,226,99,229,50,229,102,226,246,225,213,228,227,231,209,233,173,234,235,234,145,235,
250,235,197,235,124,237,135,241,30,244,159,243,235,241,107,240,244,239,56,241,198,242,104,242,28,241,25,242,130,245,52,248,
47,249,161,249,27,249,251,247,195,248,7,251,148,252,91,254,120,0,157,0,120,0,22,3,81,6,226,7,183,8,129,8,
182,7,152,9,20,14,235,17,205,20,87,23,21,24,131,22,155,19,21,17,160,17,157,20,129,22,82,23,56,24,197,24,
254,25,11,27,79,25,167,23,143,25,151,27,56,27,32,28,181,30,222,30,232,29,218,29,15,28,124,26,109,27,23,26,
66,22,110,20,105,19,255,15,67,8,208,251,2,239,116,232,154,235,61,246,207,4,22,21,65,33,182,37,82,38,53,37,
59,35,123,34,19,34,83,34,150,35,83,36,168,37,154,38,205,37,244,37,58,38,252,36,217,34,189,31,156,31,211,35,
123,39,3,42,108,43,80,42,160,41,123,43,155,46,86,47,202,44,185,43,41,42,20,37,24,34,18,32,83,28,244,27,
244,28,173,27,32,27,101,27,91,27,117,26,152,24,17,24,123,24,243,24,154,24,61,22,142,22,11,25,198,23,139,22,
76,22,6,19,124,16,234,14,6,12,78,11,200,12,158,14,78,16,53,17,225,18,67,20,235,20,113,23,50,26,119,28,
161,28,216,22,203,16,32,13,167,6,133,1,86,0,13,254,96,251,74,250,107,250,99,251,155,252,107,255,253,1,234,2,
42,5,78,6,252,5,134,7,1,6,184,1,39,1,216,1,67,1,27,0,130,254,98,254,226,253,224,251,18,251,150,250,
210,250,56,252,20,253,247,255,32,3,140,2,209,1,183,1,19,1,111,1,211,0,252,254,37,253,86,251,27,252,68,253,
34,252,186,252,85,255,254,1,215,3,18,3,175,2,142,3,251,2,119,3,234,3,7,2,2,2,93,3,139,3,23,4,
236,4,18,6,0,7,37,7,250,8,202,11,66,14,179,16,121,16,231,14,130,15,149,16,54,17,99,17,133,17,132,19,
152,20,47,19,197,18,149,18,55,17,204,16,83,17,84,17,110,16,235,15,226,16,179,17,216,17,206,17,131,16,110,14,
245,12,187,12,164,12,31,10,41,8,161,10,220,12,158,11,55,9,26,6,37,4,17,5,92,5,76,4,154,4,175,4,
16,3,24,2,39,2,196,1,108,1,244,0,192,255,167,255,124,0,182,255,230,254,234,255,114,255,174,252,150,252,113,255,
142,255,156,253,8,255,34,1,71,255,140,253,239,254,219,255,106,255,161,254,153,252,122,251,108,253,39,255,229,254,161,254,
6,254,190,252,58,253,39,255,27,255,107,253,178,253,111,255,36,255,223,253,52,254,67,254,20,253,56,252,102,250,9,248,
145,248,130,249,150,247,217,246,174,248,23,249,78,248,229,247,19,247,122,247,77,249,24,249,163,247,207,247,2,248,215,246,
127,245,38,244,91,243,78,244,116,245,184,244,27,243,204,242,1,244,19,245,228,244,5,244,99,243,243,242,213,241,15,240,
59,239,158,239,193,239,135,240,243,242,248,243,153,242,168,242,75,244,96,244,17,244,180,244,1,244,244,242,157,244,183,246,
105,246,110,245,122,244,151,242,123,241,11,242,178,242,177,243,47,245,105,245,23,245,118,245,5,245,167,244,114,246,185,247,
215,246,228,246,75,248,234,248,123,249,194,250,224,251,188,252,49,253,161,253,168,255,92,2,82,3,78,3,231,3,97,4,
37,4,226,3,70,4,47,5,96,5,189,4,57,5,157,6,33,6,3,4,212,2,9,2,20,0,128,254,91,254,14,254,
127,253,151,253,39,253,19,252,189,251,203,250,252,248,210,249,99,252,242,251,5,250,191,250,132,252,23,253,157,253,240,253,
10,253,74,252,162,252,240,252,49,253,115,254,184,255,167,255,248,255,171,1,190,1,122,255,2,255,38,1,219,1,79,0,
212,255,202,1,10,4,41,4,138,2,90,1,44,1,127,1,96,2,244,2,165,2,235,2,164,3,141,2,101,0,184,255,
106,0,152,1,239,2,246,2,164,1,133,1,200,2,66,3,60,3,160,3,202,2,138,0,168,255,181,0,40,1,190,255,
160,253,169,252,167,253,235,254,105,254,15,253,228,252,208,253,234,254,2,0,108,0,20,255,108,252,126,250,67,250,82,250,
221,249,79,250,178,251,11,252,232,251,210,252,182,252,55,250,130,248,215,248,162,248,40,248,102,249,136,250,148,249,68,248,
85,248,176,249,157,251,89,252,244,250,105,249,137,249,210,250,63,252,148,252,211,250,170,248,201,248,243,250,63,253,20,255,
33,0,115,255,81,253,157,251,143,251,125,252,168,252,135,251,229,250,255,251,56,253,22,253,252,251,67,250,204,248,252,248,
208,249,225,249,129,250,212,251,203,251,209,250,78,250,125,249,153,248,79,249,0,251,67,252,118,253,101,254,180,253,37,252,
215,251,82,252,157,251,4,250,251,248,9,249,33,250,227,250,33,250,180,249,17,250,202,248,20,248,107,251,129,254,157,253,
171,252,89,253,141,253,163,254,216,0,206,0,48,255,120,255,245,0,20,1,237,255,78,255,13,0,45,1,141,1,57,1,
187,0,162,0,236,0,7,1,75,1,235,1,205,1,83,1,2,2,76,3,48,4,172,4,167,4,203,4,72,5,169,4,
169,3,20,4,77,4,162,3,13,4,65,4,123,2,148,1,224,2,201,3,247,3,89,4,111,3,255,0,199,255,207,0,
243,1,229,0,175,253,9,251,103,251,142,253,99,255,201,1,188,4,239,4,91,2,68,1,108,2,235,2,92,2,62,2,
160,2,5,3,82,3,81,3,180,2,172,1,49,1,155,1,222,1,109,1,199,0,48,0,195,255,92,255,195,254,125,254,
66,254,100,253,168,253,211,255,144,0,240,254,118,254,200,255,44,0,18,255,196,253,6,253,100,253,139,254,15,255,201,254,
67,255,94,0,43,0,26,255,76,255,93,0,5,1,79,1,157,0,173,254,83,253,224,253,170,255,105,0,87,254,97,252,
17,254,124,0,211,0,50,1,12,1,66,254,171,251,154,251,94,252,187,252,99,252,243,251,239,252,62,254,76,254,41,254,
248,253,127,253,36,254,24,255,167,254,160,253,121,252,178,251,137,252,4,253,19,251,176,248,125,247,238,247,64,250,255,251,
84,252,182,253,149,254,200,252,223,251,34,253,88,253,9,253,50,254,64,255,93,255,161,255,122,255,218,253,62,252,174,252,
141,253,104,252,133,251,65,253,17,255,133,255,3,0,189,255,156,254,30,255,150,0,169,0,127,0,106,1,169,1,177,255,
82,253,131,253,82,255,129,255,241,254,255,255,10,1,168,0,37,0,161,255,87,255,185,0,81,2,203,1,145,0,50,0,
6,0,157,0,96,2,17,3,99,2,188,2,23,3,62,1,131,255,114,255,198,254,50,254,183,255,189,0,250,255,42,0,
25,1,228,0,152,0,155,0,248,255,149,255,9,0,109,0,151,0,131,0,16,0,7,0,150,0,244,0,35,1,43,1,
133,0,5,0,228,0,186,1,214,0,44,0,139,1,155,2,215,1,44,1,81,1,137,1,19,2,97,2,174,1,190,0,
53,0,239,0,52,3,30,4,221,2,5,3,13,4,91,2,3,0,103,0,209,1,245,1,98,1,0,2,69,4,56,5,
15,3,240,0,22,1,219,1,61,2,182,2,115,3,129,4,137,5,231,5,82,5,182,4,45,6,161,8,246,7,48,5,
52,4,181,3,117,2,76,2,130,1,56,255,221,255,121,3,50,5,166,4,176,3,116,2,255,1,192,2,69,3,52,3,
253,2,159,2,25,2,42,1,170,0,226,1,59,3,3,3,171,2,241,2,10,3,82,3,117,3,77,2,40,1,153,1,
60,2,139,1,165,0,58,1,199,2,59,3,147,1,194,254,205,252,41,253,209,254,110,255,157,254,47,253,133,251,253,250,
78,252,246,252,199,251,149,251,238,252,200,252,122,251,37,252,203,253,154,253,169,252,145,252,103,252,73,252,130,252,3,251,
120,248,206,248,65,251,160,251,85,250,25,250,103,250,45,250,62,250,187,250,201,250,4,251,131,252,36,254,118,254,132,254,
68,255,170,255,197,255,202,0,228,1,166,1,192,0,136,0,54,1,231,1,159,1,237,0,243,0,90,1,150,1,119,1,
204,255,231,252,255,251,153,253,92,254,210,253,62,254,139,254,66,253,216,252,30,254,44,254,201,252,128,252,206,253,164,255,
159,0,158,255,254,253,145,253,137,253,71,253,134,253,42,254,8,255,246,255,17,0,208,255,243,255,156,255,73,255,245,255,
3,0,50,255,144,255,160,0,33,1,149,1,137,1,18,1,198,1,114,2,115,1,180,0,17,1,84,1,62,2,168,3,
81,3,23,2,34,2,163,2,24,3,202,3,89,3,170,2,93,4,62,6,192,5,206,5,104,7,119,7,142,6,173,6,
27,6,169,4,14,5,48,7,104,8,67,7,31,5,61,5,132,7,14,8,133,6,197,5,191,5,7,6,204,7,160,9,
182,9,218,9,0,11,24,11,236,9,190,9,24,11,131,12,66,13,155,13,166,13,115,13,29,13,158,12,166,12,152,13,
23,14,165,13,207,13,182,14,255,14,98,14,95,13,34,13,172,14,190,15,11,14,82,12,197,12,147,12,192,10,249,9,
194,9,194,7,28,5,122,3,98,2,97,1,204,255,115,253,167,252,233,253,102,254,7,254,239,253,73,252,180,249,60,249,
98,249,94,248,71,248,208,248,39,248,192,247,69,248,121,248,147,248,125,248,235,247,184,247,58,247,95,246,75,247,141,248,
165,247,121,247,74,249,21,249,33,247,161,247,163,249,238,249,146,249,24,250,214,249,90,248,43,248,82,249,236,248,92,247,
52,247,150,247,217,246,247,245,119,245,216,244,225,244,205,245,85,246,53,246,18,246,141,245,146,244,153,244,240,245,214,246,
24,247,239,247,159,248,155,248,54,249,239,249,80,249,109,248,75,248,150,248,129,249,90,250,64,250,66,250,132,250,99,250,
37,251,151,252,249,252,78,253,31,254,200,253,67,253,246,253,14,254,12,253,230,252,199,253,50,254,214,253,147,254,96,1,
193,2,171,0,121,255,248,0,16,1,108,255,27,255,161,255,7,0,213,0,63,1,48,1,142,1,72,1,42,0,24,0,
194,0,147,0,36,0,94,0,185,0,160,0,48,0,11,0,98,0,57,0,94,255,74,255,59,0,183,0,128,0,124,0,
165,0,175,0,197,0,222,0,20,1,72,1,193,0,45,0,218,0,154,1,32,1,200,0,58,1,91,1,251,0,69,0,
60,255,180,254,245,254,129,255,68,0,152,0,21,0,223,255,58,0,141,0,149,1,19,3,25,3,7,2,235,1,96,2,
240,1,122,1,12,2,240,1,102,0,44,0,214,1,149,2,116,2,0,3,232,2,82,1,69,255,113,253,35,253,172,254,
33,0,90,1,136,2,202,1,55,0,69,0,162,0,227,0,34,2,35,2,91,0,203,255,10,0,172,255,65,0,76,1,
37,1,107,1,182,2,182,2,123,1,93,1,115,2,237,2,169,2,176,2,135,2,2,2,164,2,22,4,168,4,147,4,
179,3,164,1,195,0,250,1,234,2,82,3,41,4,161,4,234,4,124,5,52,5,149,4,236,4,61,5,210,4,37,4,
62,3,203,2,25,3,245,2,182,2,152,3,197,4,145,5,93,6,96,6,138,5,100,5,137,5,176,4,238,3,254,3,
164,3,135,3,70,5,212,6,229,5,138,4,150,4,146,4,29,4,9,4,119,3,11,2,184,0,150,255,247,254,145,255,
156,0,89,1,225,1,185,1,83,1,186,1,177,1,65,0,114,255,73,0,221,0,245,255,218,254,248,254,79,255,92,254,
146,253,139,254,91,255,199,254,194,254,177,255,255,255,253,255,136,0,219,0,117,0,141,255,59,254,107,253,232,253,102,254,
168,253,142,252,192,251,29,251,47,251,175,251,161,251,4,252,93,253,189,253,12,253,3,253,31,253,214,252,46,253,147,253,
60,253,93,253,243,253,144,253,157,252,102,252,222,252,33,253,216,252,124,252,81,252,50,252,64,252,106,252,149,252,235,252,
225,252,189,252,16,254,169,255,139,255,85,255,103,255,162,253,229,251,132,252,38,253,241,252,126,253,188,253,6,253,222,252,
33,253,87,253,249,253,69,254,32,254,189,254,114,255,235,254,210,253,81,253,175,253,43,254,242,253,199,253,78,254,93,254,
17,254,190,254,95,255,252,254,51,255,6,0,161,255,199,254,110,254,147,253,129,253,179,255,210,0,223,254,88,253,159,253,
129,253,25,253,81,253,65,253,231,252,231,252,233,252,216,252,173,252,85,252,199,252,239,253,19,254,87,253,229,252,30,252,
61,251,30,252,229,253,49,254,21,254,39,255,171,255,18,255,119,255,121,0,65,0,142,255,59,255,201,254,116,254,113,254,
182,254,164,255,80,0,247,255,252,255,88,0,164,255,20,255,235,255,192,0,168,0,6,0,23,255,166,254,18,255,62,255,
245,254,123,255,181,0,16,1,102,0,238,255,208,255,204,255,85,0,211,0,127,0,107,0,50,1,234,1,47,2,230,1,
36,1,203,0,229,0,58,1,80,2,107,3,218,3,76,4,212,3,8,2,135,1,189,2,113,3,63,3,20,2,90,0,
86,0,70,1,128,0,187,255,33,1,225,2,148,3,189,3,63,3,224,1,134,0,159,0,44,2,84,3,112,3,95,3,
64,3,106,3,27,4,247,3,38,3,115,3,40,4,53,4,177,4,38,5,5,4,133,2,110,2,21,3,148,3,249,3,
162,3,95,2,186,1,229,1,91,1,244,0,234,1,70,2,159,1,96,2,191,3,52,3,161,1,254,0,164,1,176,2,
155,2,150,1,228,0,5,0,58,255,20,0,103,1,150,1,163,1,229,1,186,1,137,1,90,1,57,1,147,1,92,1,
61,0,203,255,178,255,178,254,196,253,117,253,232,252,81,252,30,252,46,252,184,252,34,253,124,252,66,251,243,249,215,248,
41,249,97,250,37,250,226,248,109,248,57,248,24,248,7,249,231,249,196,249,36,250,27,251,213,250,89,249,21,248,204,247,
129,248,69,249,86,249,162,249,164,250,2,251,104,250,67,250,141,250,3,250,97,249,0,250,191,250,96,250,7,250,141,250,
35,251,124,251,25,252,209,252,8,253,8,253,144,253,213,253,1,253,160,252,45,253,210,252,91,252,117,253,38,254,128,253,
177,253,147,254,107,254,175,253,104,253,197,253,80,254,83,254,232,253,90,253,180,252,161,252,170,252,187,251,250,250,38,251,
62,251,194,251,210,252,171,252,157,251,91,251,6,252,249,252,88,253,70,253,232,253,127,254,101,254,229,254,73,255,171,254,
194,254,8,255,51,254,143,254,111,0,28,1,212,0,78,1,162,2,249,3,224,3,236,2,77,3,52,4,112,4,53,5,
243,5,35,5,187,3,232,2,236,2,179,3,89,4,183,4,16,5,211,4,176,4,111,5,185,5,13,5,108,4,236,3,
153,3,212,3,106,4,176,4,236,3,69,3,105,4,94,5,144,4,19,4,187,3,45,2,197,1,67,3,67,4,96,4,
222,3,235,2,233,2,54,3,167,2,162,2,190,2,114,1,145,0,251,0,205,0,52,0,91,0,102,0,164,255,25,255,
131,255,180,255,215,254,137,254,104,255,227,255,27,0,170,0,130,0,39,0,207,0,112,1,93,1,8,1,172,0,58,1,
125,2,113,2,104,1,111,1,67,2,139,2,23,2,168,1,245,1,95,2,243,1,40,1,128,0,28,0,116,0,247,0,
236,0,39,1,186,1,151,1,56,1,76,1,50,1,63,1,61,2,6,3,213,2,8,3,156,3,204,2,84,1,68,1,
216,1,182,1,171,1,30,2,47,2,178,1,29,1,183,0,139,0,108,0,115,0,193,0,242,0,228,0,193,0,94,0,
206,255,78,255,248,254,75,255,47,0,159,0,170,0,225,0,187,0,77,0,158,0,45,1,243,0,195,0,60,1,41,1,
105,0,146,0,144,1,229,1,142,1,81,1,98,1,142,1,74,1,247,0,159,1,116,2,157,2,5,3,28,3,24,2,
187,1,19,2,108,1,211,0,28,1,63,1,165,1,42,2,163,1,103,1,99,2,253,2,164,2,228,1,119,1,54,2,
193,2,237,1,189,1,74,2,150,1,18,1,20,2,129,2,249,1,13,2,58,2,181,1,36,1,197,0,180,0,136,1,
118,2,5,2,56,1,138,1,187,1,63,1,106,1,48,1,203,255,144,255,28,0,26,255,57,254,205,254,248,254,222,254,
60,255,214,254,6,254,0,254,96,254,9,255,174,255,33,255,231,253,191,253,247,254,26,0,114,255,182,253,49,253,183,253,
207,253,162,253,111,253,5,253,222,252,10,253,9,253,230,252,236,252,35,253,59,253,60,253,188,253,65,254,29,254,71,254,
218,254,168,254,108,254,1,255,115,255,192,255,99,0,182,0,248,0,141,1,71,1,238,255,220,254,162,254,48,255,78,0,
246,0,122,0,154,255,51,255,95,255,32,0,20,1,52,1,161,0,144,0,195,0,113,0,96,0,245,0,91,1,126,1,
236,1,168,2,39,3,209,2,56,2,69,2,70,2,228,1,5,2,30,2,95,1,190,0,187,0,203,0,243,0,77,1,
166,1,178,1,101,1,181,1,182,2,212,2,61,2,50,2,249,1,86,1,146,1,58,2,37,2,217,1,20,2,169,2,
249,2,115,2,87,1,127,0,145,0,129,1,75,2,21,2,99,1,49,1,156,1,152,1,193,0,203,0,58,2,187,2,
197,1,82,1,90,1,124,0,137,255,151,0,252,2,18,3,200,0,109,0,132,1,123,0,153,255,216,0,26,1,153,0,
138,1,19,2,169,1,127,1,131,0,157,255,153,0,107,1,30,1,243,0,39,0,35,255,122,255,99,255,251,253,197,253,
242,254,202,255,132,0,37,1,208,0,69,0,79,0,226,255,238,254,46,255,121,0,20,1,4,1,165,0,169,255,48,255,
176,255,181,255,117,255,192,255,188,255,152,255,186,255,250,254,11,254,69,254,128,254,102,254,208,254,5,255,206,254,187,254,
129,254,173,254,75,255,195,254,229,253,165,254,206,255,6,0,194,255,13,255,98,254,118,254,110,254,229,253,130,253,26,253,
11,253,35,254,228,254,179,253,49,252,94,252,87,253,157,253,137,253,133,253,211,252,204,251,213,251,192,252,112,253,179,253,
147,253,54,253,28,253,41,253,23,253,59,253,96,253,56,253,151,253,182,254,83,255,77,255,4,0,97,1,161,1,164,0,
78,0,206,0,80,0,246,254,136,254,168,254,59,254,77,254,91,255,181,255,1,255,226,254,159,255,215,255,1,255,7,254,
110,253,135,252,74,251,9,251,201,251,189,251,156,250,19,250,136,250,156,250,232,249,162,249,69,250,227,250,51,251,231,251,
253,252,204,253,254,253,213,253,74,254,154,255,129,0,187,0,89,1,30,2,90,2,127,2,131,2,10,2,250,1,239,2,
23,4,164,4,149,4,100,4,107,4,127,4,67,4,161,3,60,3,226,3,239,4,57,5,31,5,22,5,176,4,96,4,
126,4,46,4,159,3,180,3,3,4,17,4,62,4,152,4,214,4,153,4,204,3,28,3,235,2,209,2,177,2,165,2,
189,2,22,3,23,3,37,2,20,1,217,0,247,0,169,0,67,0,95,0,137,0,88,0,156,0,247,0,252,255,251,254,
173,255,57,0,126,255,88,255,248,255,25,0,49,0,150,0,133,0,14,0,188,255,163,255,176,255,156,255,77,255,31,255,
66,255,140,255,188,255,175,255,134,255,103,255,157,255,60,0,81,0,101,255,148,254,68,254,234,253,240,253,98,254,105,254,
61,254,39,254,184,253,116,253,147,253,30,253,159,252,130,253,202,254,157,254,139,253,68,253,204,253,1,254,182,253,89,253,
11,253,105,253,173,254,76,255,124,254,160,253,160,253,56,254,230,254,228,254,109,254,162,254,252,254,124,254,237,253,254,253,
55,254,86,254,46,254,157,253,248,252,178,252,53,253,19,254,14,254,153,253,247,253,88,254,2,254,230,253,254,253,243,253,
88,254,137,254,207,253,119,253,218,253,200,253,154,253,255,253,27,254,213,253,43,254,174,254,93,254,6,254,125,254,183,254,
76,254,126,254,16,255,148,254,146,253,65,253,106,253,170,253,253,253,67,254,124,254,135,254,122,254,226,254,105,255,101,255,
92,255,165,255,207,255,212,255,162,255,80,255,162,255,97,0,169,0,209,0,78,1,164,1,138,1,250,0,81,0,88,0,
238,0,61,1,10,1,118,0,243,255,6,0,17,0,151,255,120,255,204,255,148,255,81,255,29,0,234,0,94,0,167,255,
1,0,44,0,141,255,187,255,25,1,45,2,45,2,104,1,247,0,154,1,215,1,176,0,36,0,245,0,76,1,11,1,
57,1,65,1,3,1,99,1,220,1,131,1,3,1,47,1,189,1,43,2,56,2,216,1,126,1,107,1,253,0,35,0,
187,255,153,255,58,255,52,255,130,255,153,255,2,0,209,0,43,1,13,1,196,0,137,0,201,0,223,0,89,0,105,0,
240,0,198,0,243,0,255,1,35,2,52,1,189,0,221,0,197,0,67,0,250,255,116,0,228,0,187,0,13,1,215,1,
207,1,138,1,19,2,101,2,162,1,159,0,10,0,196,255,192,255,237,255,238,255,172,255,100,255,1,255,140,254,93,254,
92,254,163,254,175,255,163,0,124,0,52,0,76,0,193,255,3,255,90,255,54,0,169,0,233,0,62,1,122,1,137,1,
198,1,66,2,62,2,203,1,219,1,240,1,65,1,198,0,216,0,159,0,162,0,100,1,191,1,88,1,12,1,0,1,
4,1,254,0,153,0,34,0,64,0,149,0,155,0,117,0,29,0,160,255,149,255,42,0,199,0,229,0,161,0,132,0,
158,0,97,0,242,255,21,0,167,0,248,0,228,0,124,0,33,0,81,0,127,0,38,0,5,0,87,0,60,0,162,255,
92,255,198,255,116,0,149,0,12,0,157,255,136,255,160,255,238,255,237,255,65,255,215,254,65,255,234,255,115,0,166,0,
52,0,175,255,232,255,141,0,224,0,239,0,248,0,136,0,118,255,206,254,74,255,53,0,158,0,41,0,61,255,180,254,
134,254,37,254,21,254,160,254,231,254,214,254,221,254,191,254,177,254,15,255,41,255,185,254,110,254,103,254,95,254,101,254,
146,254,205,254,216,254,201,254,20,255,111,255,61,255,239,254,23,255,85,255,58,255,253,254,20,255,87,255,49,255,254,254,
96,255,193,255,195,255,208,255,149,255,60,255,215,255,187,0,187,0,119,0,70,0,219,255,209,255,23,0,219,255,156,255,
200,255,181,255,96,255,56,255,45,255,48,255,53,255,61,255,110,255,106,255,0,255,248,254,121,255,221,255,51,0,157,0,
165,0,104,0,114,0,166,0,171,0,139,0,138,0,205,0,17,1,254,0,188,0,128,0,40,0,242,255,87,0,199,0,
147,0,102,0,215,0,58,1,51,1,10,1,191,0,190,0,110,1,238,1,177,1,133,1,204,1,58,2,142,2,83,2,
154,1,41,1,36,1,93,1,222,1,43,2,236,1,204,1,41,2,106,2,17,2,117,1,75,1,84,1,191,0,43,0,
129,0,214,0,139,0,127,0,157,0,56,0,18,0,120,0,18,0,222,254,174,254,178,255,73,0,68,0,160,0,16,1,
214,0,95,0,43,0,18,0,17,0,86,0,174,0,150,0,252,255,174,255,22,0,115,0,88,0,44,0,49,0,132,0,
229,0,222,0,205,0,0,1,230,0,199,0,30,1,15,1,131,0,147,0,214,0,111,0,27,0,89,0,88,0,216,255,
158,255,249,255,57,0,0,0,217,255,241,255,16,0,67,0,26,0,119,255,126,255,50,0,77,0,247,255,205,255,133,255,
111,255,172,255,99,255,6,255,137,255,42,0,55,0,27,0,212,255,79,255,9,255,77,255,2,0,129,0,28,0,154,255,
237,255,83,0,32,0,238,255,198,255,87,255,105,255,115,0,50,1,162,0,221,255,72,0,38,1,34,1,219,0,59,1,
87,1,161,0,67,0,156,0,185,0,149,0,210,0,55,1,62,1,227,0,128,0,126,0,177,0,127,0,237,255,100,255,
17,255,39,255,122,255,71,255,204,254,252,254,58,255,127,254,184,253,200,253,202,253,99,253,112,253,234,253,8,254,175,253,
119,253,0,254,176,254,45,254,86,253,10,254,38,255,33,255,65,255,212,255,106,255,171,254,171,254,154,254,86,254,137,254,
237,254,93,255,220,255,228,255,166,255,198,255,24,0,57,0,40,0,107,0,71,1,160,1,249,0,216,0,146,1,208,1,
139,1,43,1,142,0,90,0,151,0,57,0,193,255,3,0,238,255,27,255,221,254,103,255,107,255,171,254,97,254,8,255,
195,255,51,0,144,0,145,0,68,0,65,0,115,0,151,0,179,0,140,0,105,0,225,0,97,1,50,1,210,0,151,0,
6,0,17,255,157,254,51,255,214,255,160,255,59,255,30,255,236,254,30,255,240,255,82,0,7,0,202,255,174,255,182,255,
0,0,242,255,73,255,3,255,158,255,11,0,146,255,39,255,94,255,89,255,233,254,194,254,194,254,221,254,127,255,26,0,
79,0,177,0,201,0,250,255,78,255,76,255,14,255,145,254,158,254,11,255,58,255,48,255,20,255,221,254,220,254,79,255,
143,255,61,255,243,254,189,254,96,254,136,254,60,255,121,255,66,255,55,255,53,255,26,255,33,255,93,255,212,255,88,0,
121,0,26,0,158,255,100,255,49,255,163,254,64,254,161,254,46,255,75,255,59,255,76,255,139,255,228,255,61,0,164,0,
191,0,50,0,150,255,101,255,138,255,27,0,115,0,251,255,255,255,230,0,3,1,54,0,193,255,150,255,91,255,3,255,
155,254,226,254,138,255,51,255,145,254,205,254,234,254,154,254,214,254,64,255,81,255,137,255,241,255,79,0,161,0,136,0,
24,0,24,0,118,0,115,0,58,0,97,0,154,0,169,0,5,1,48,1,95,0,210,255,96,0,148,0,52,0,88,0,
63,0,147,255,203,255,177,0,224,0,92,0,89,255,51,254,21,254,222,254,99,255,138,255,124,255,65,255,130,255,49,0,
60,0,143,255,29,255,115,255,60,0,166,0,67,0,164,255,147,255,3,0,100,0,141,0,163,0,156,0,172,0,20,1,
68,1,204,0,105,0,126,0,148,0,201,0,64,1,131,1,169,1,245,1,211,1,22,1,88,0,194,255,81,255,76,255,
117,255,133,255,0,0,252,0,106,1,184,0,208,255,199,255,104,0,175,0,89,0,3,0,225,255,175,255,134,255,160,255,
194,255,157,255,66,255,246,254,230,254,25,255,106,255,148,255,147,255,156,255,93,255,181,254,165,254,86,255,99,255,201,254,
196,254,249,254,208,254,229,254,24,255,231,254,203,254,203,254,146,254,161,254,248,254,232,254,153,254,131,254,146,254,148,254,
117,254,87,254,93,254,114,254,207,254,108,255,169,255,206,255,22,0,111,255,124,254,56,255,114,0,38,0,181,255,20,0,
207,255,38,255,144,255,89,0,122,0,111,0,104,0,29,0,250,255,69,0,179,0,24,1,9,1,64,0,203,255,42,0,
19,0,133,255,4,0,230,0,187,0,133,0,28,1,113,1,64,1,35,1,242,0,157,0,67,0,141,255,248,254,145,255,
204,0,126,1,170,1,134,1,7,1,205,0,4,1,230,0,151,0,174,0,160,0,92,0,140,0,156,0,33,0,16,0,
68,0,248,255,210,255,10,0,227,255,208,255,71,0,155,0,199,0,16,1,208,0,24,0,17,0,245,0,177,1,107,1,
92,0,133,255,148,255,24,0,43,0,221,255,242,255,97,0,146,0,121,0,42,0,223,255,79,0,57,1,104,1,242,0,
180,0,162,0,127,0,98,0,60,0,8,0,255,255,120,0,37,1,236,0,213,255,54,255,76,255,178,255,132,0,13,1,
177,0,41,0,164,255,21,255,66,255,230,255,28,0,28,0,23,0,5,0,16,0,204,255,107,255,143,255,85,255,185,254,
85,255,108,0,109,0,42,0,21,0,179,255,159,255,214,255,174,255,161,255,188,255,119,255,41,255,218,254,90,254,94,254,
218,254,228,254,160,254,212,254,110,255,134,255,191,254,67,254,173,254,223,254,148,254,140,254,108,254,29,254,113,254,2,255,
222,254,111,254,124,254,252,254,86,255,84,255,127,255,218,255,184,255,61,255,5,255,36,255,99,255,90,255,20,255,93,255,
244,255,215,255,112,255,129,255,166,255,154,255,113,255,38,255,21,255,82,255,119,255,159,255,194,255,137,255,127,255,14,0,
121,0,116,0,114,0,133,0,125,0,56,0,178,255,94,255,135,255,207,255,249,255,22,0,33,0,45,0,36,0,226,255,
228,255,72,0,62,0,217,255,12,0,115,0,62,0,240,255,247,255,241,255,233,255,243,255,201,255,193,255,11,0,23,0,
20,0,126,0,163,0,10,0,114,255,80,255,130,255,213,255,204,255,89,255,83,255,213,255,11,0,9,0,133,0,255,0,
144,0,205,255,229,255,169,0,23,1,16,1,28,1,45,1,232,0,158,0,204,0,18,1,227,0,129,0,70,0,22,0,
255,255,32,0,42,0,4,0,5,0,3,0,119,255,210,254,16,255,235,255,76,0,65,0,140,0,253,0,8,1,210,0,
194,0,3,1,94,1,85,1,216,0,36,0,122,255,125,255,47,0,91,0,237,255,242,255,250,255,133,255,155,255,87,0,
136,0,9,0,133,255,124,255,23,0,154,0,126,0,111,0,127,0,42,0,7,0,98,0,120,0,89,0,77,0,216,255,
107,255,231,255,125,0,27,0,70,255,1,255,146,255,77,0,80,0,25,0,146,0,13,1,247,0,31,1,94,1,226,0,
158,0,118,1,116,2,155,2,174,1,90,0,92,0,175,1,246,1,222,0,72,0,133,0,23,1,62,2,51,3,150,2,
206,0,156,255,249,255,255,0,225,0,132,255,238,254,48,0,124,1,19,1,95,0,43,1,16,2,152,1,241,0,180,0,
58,0,8,0,77,0,47,0,224,255,139,255,236,254,31,255,82,0,172,0,69,0,122,0,171,0,128,0,188,0,191,0,
77,0,200,0,225,1,240,1,45,1,177,0,130,0,55,0,196,255,151,255,2,0,76,0,159,255,157,254,71,254,125,254,
168,254,177,254,189,254,203,254,213,254,243,254,48,255,95,255,69,255,217,254,114,254,180,254,154,255,14,0,110,255,133,254,
46,254,85,254,110,254,78,254,159,254,176,255,104,0,71,0,53,0,27,0,107,255,60,255,15,0,174,0,251,0,167,1,
12,2,116,1,98,0,224,255,132,0,84,1,12,1,119,0,151,0,207,0,27,1,214,1,224,1,215,0,0,0,183,255,
172,255,39,0,4,1,213,1,123,2,94,2,124,1,8,1,254,0,123,0,66,0,210,0,212,0,85,0,164,0,223,0,
3,0,101,255,142,255,159,255,243,255,147,0,79,0,189,255,15,0,64,0,137,255,11,255,83,255,181,255,191,255,132,255,
95,255,123,255,163,255,191,255,188,255,139,255,111,255,116,255,144,255,253,255,65,0,3,0,39,0,183,0,177,0,147,0,
252,0,26,1,200,0,122,0,243,255,165,255,2,0,36,0,20,0,234,0,220,1,104,1,33,0,104,255,64,255,35,255,
97,255,33,0,107,0,221,255,104,255,112,255,146,255,167,255,105,255,33,255,147,255,208,255,184,254,181,253,194,253,184,253,
115,253,188,253,52,254,139,254,242,254,48,255,99,255,163,255,78,255,151,254,145,254,48,255,135,255,67,255,198,254,113,254,
63,254,88,254,254,254,97,255,228,254,192,254,121,255,155,255,244,254,194,254,250,254,38,255,137,255,230,255,242,255,38,0,
119,0,100,0,39,0,239,255,88,255,148,254,86,254,150,254,211,254,27,255,134,255,116,255,213,254,164,254,224,254,168,254,
128,254,20,255,138,255,152,255,234,255,249,255,80,255,231,254,252,254,6,255,49,255,70,255,212,254,200,254,102,255,105,255,
214,254,163,254,143,254,181,254,149,255,0,0,87,255,8,255,89,255,82,255,72,255,130,255,111,255,110,255,169,255,55,255,
154,254,243,254,79,255,185,254,62,254,143,254,248,254,50,255,107,255,89,255,249,254,231,254,34,255,38,255,52,255,135,255,
96,255,221,254,45,255,234,255,234,255,204,255,73,0,155,0,82,0,214,255,108,255,95,255,179,255,240,255,10,0,36,0,
214,255,39,255,214,254,20,255,44,255,186,254,119,254,245,254,76,255,213,254,111,254,89,254,0,254,11,254,196,254,214,254,
76,254,132,254,240,254,187,254,222,254,116,255,86,255,1,255,83,255,99,255,233,254,44,255,39,0,175,0,199,0,225,0,
195,0,182,0,65,1,199,1,156,1,79,1,135,1,2,2,82,2,121,2,135,2,126,2,138,2,175,2,183,2,200,2,
247,2,192,2,10,2,134,1,121,1,195,1,49,2,43,2,201,1,227,1,17,2,156,1,101,1,196,1,214,1,226,1,
90,2,80,2,165,1,76,1,62,1,37,1,46,1,49,1,14,1,0,1,214,0,105,0,61,0,152,0,232,0,156,0,
27,0,52,0,215,0,66,1,14,1,82,0,145,255,88,255,160,255,43,0,208,0,252,0,158,0,115,0,137,0,151,0,
239,0,59,1,249,0,185,0,172,0,103,0,52,0,63,0,93,0,135,0,83,0,70,0,116,1,245,1,248,255,140,254,
170,255,129,0,21,0,235,255,129,255,176,254,212,254,47,255,172,254,103,254,228,254,107,255,238,255,81,0,15,0,111,255,
59,255,176,255,44,0,3,0,159,255,183,255,10,0,23,0,209,255,94,255,33,255,88,255,182,255,206,255,58,255,58,254,
1,254,212,254,136,255,180,255,177,255,104,255,23,255,63,255,139,255,149,255,80,255,205,254,192,254,112,255,164,255,230,254,
129,254,227,254,73,255,151,255,211,255,145,255,53,255,89,255,144,255,182,255,76,0,171,0,27,0,211,255,126,0,215,0,
151,0,163,0,203,0,214,0,25,1,49,1,11,1,62,1,91,1,24,1,56,1,129,1,25,1,65,0,115,255,16,255,
94,255,135,255,42,255,106,255,66,0,153,0,188,0,246,0,206,0,199,0,10,1,157,0,252,255,96,0,23,1,35,1,
231,0,124,0,169,255,54,255,175,255,59,0,90,0,136,0,155,0,53,0,21,0,137,0,172,0,108,0,106,0,118,0,
89,0,60,0,8,0,20,0,155,0,226,0,209,0,214,0,104,0,180,255,226,255,129,0,176,0,247,0,125,1,161,1,
120,1,72,1,45,1,72,1,83,1,93,1,177,1,141,1,173,0,96,0,229,0,77,1,184,1,47,2,248,1,117,1,
131,1,201,1,192,1,179,1,242,1,37,2,213,1,107,1,145,1,205,1,136,1,94,1,154,1,147,1,51,1,249,0,
246,0,228,0,167,0,162,0,14,1,20,1,80,0,246,255,124,0,198,0,164,0,235,0,108,1,127,1,62,1,7,1,
10,1,63,1,79,1,29,1,236,0,219,0,225,0,236,0,195,0,122,0,130,0,233,0,89,1,179,1,239,1,217,1,
86,1,188,0,132,0,149,0,112,0,80,0,173,0,214,0,54,0,200,255,69,0,212,0,197,0,66,0,139,255,21,255,
41,255,70,255,53,255,70,255,66,255,10,255,57,255,201,255,223,255,100,255,41,255,142,255,249,255,186,255,14,255,190,254,
248,254,65,255,85,255,76,255,55,255,249,254,175,254,177,254,244,254,39,255,85,255,133,255,140,255,156,255,172,255,26,255,
63,254,98,254,106,255,254,255,193,255,119,255,127,255,134,255,116,255,153,255,212,255,176,255,90,255,68,255,87,255,99,255,
108,255,96,255,88,255,166,255,7,0,242,255,155,255,142,255,157,255,124,255,147,255,13,0,45,0,189,255,132,255,172,255,
146,255,53,255,14,255,26,255,35,255,60,255,120,255,129,255,10,255,147,254,188,254,58,255,146,255,181,255,141,255,111,255,
221,255,54,0,225,255,163,255,213,255,221,255,218,255,248,255,211,255,196,255,10,0,231,255,114,255,132,255,198,255,175,255,
190,255,249,255,194,255,90,255,69,255,37,255,235,254,63,255,227,255,44,0,139,0,31,1,238,0,42,0,251,255,40,0,
21,0,19,0,43,0,33,0,73,0,169,0,167,0,50,0,2,0,87,0,96,0,234,255,11,0,125,0,247,255,88,255,
166,255,158,255,34,255,100,255,151,255,47,255,116,255,8,0,190,255,106,255,167,255,211,255,245,255,50,0,57,0,2,0,
140,255,46,255,135,255,19,0,0,0,174,255,127,255,101,255,135,255,170,255,130,255,119,255,156,255,187,255,25,0,108,0,
33,0,185,255,169,255,148,255,146,255,230,255,44,0,73,0,106,0,36,0,75,255,163,254,167,254,235,254,42,255,138,255,
204,255,146,255,98,255,192,255,18,0,230,255,187,255,208,255,231,255,36,0,145,0,169,0,53,0,207,255,244,255,45,0,
8,0,243,255,30,0,249,255,163,255,178,255,8,0,66,0,46,0,198,255,150,255,182,255,124,255,63,255,131,255,134,255,
69,255,121,255,115,255,29,255,158,255,76,0,6,0,220,255,70,0,33,0,142,255,120,255,156,255,135,255,111,255,103,255,
51,255,1,255,87,255,244,255,12,0,205,255,186,255,124,255,31,255,81,255,218,255,23,0,8,0,221,255,187,255,195,255,
188,255,123,255,90,255,155,255,238,255,14,0,29,0,2,0,164,255,174,255,1,0,126,255,39,255,94,0,230,0,115,255,
30,255,121,0,63,0,173,254,140,254,110,255,190,255,201,255,243,255,247,255,199,255,128,255,83,255,53,255,234,254,217,254,
92,255,215,255,218,255,190,255,155,255,98,255,123,255,20,0,144,0,119,0,74,0,113,0,97,0,221,255,148,255,157,255,
160,255,7,0,182,0,128,0,170,255,144,255,225,255,199,255,195,255,27,0,103,0,164,0,160,0,71,0,46,0,33,0,
165,255,136,255,250,255,254,255,226,255,46,0,252,255,96,255,136,255,21,0,29,0,238,255,186,255,56,255,206,254,0,255,
96,255,95,255,41,255,0,255,222,254,252,254,111,255,165,255,115,255,98,255,146,255,195,255,210,255,139,255,16,255,5,255,
114,255,190,255,170,255,102,255,39,255,26,255,87,255,198,255,13,0,235,255,169,255,188,255,29,0,86,0,33,0,198,255,
140,255,74,255,255,254,10,255,112,255,194,255,228,255,21,0,79,0,52,0,235,255,254,255,33,0,228,255,208,255,9,0,
251,255,205,255,184,255,110,255,75,255,145,255,154,255,106,255,121,255,128,255,111,255,136,255,139,255,132,255,217,255,54,0,
38,0,236,255,5,0,97,0,120,0,73,0,99,0,173,0,169,0,125,0,103,0,77,0,57,0,65,0,97,0,117,0,
80,0,53,0,103,0,114,0,37,0,237,255,217,255,227,255,20,0,14,0,236,255,76,0,219,0,1,1,8,1,9,1,
154,0,15,0,27,0,150,0,212,0,156,0,55,0,23,0,120,0,213,0,175,0,132,0,144,0,58,0,220,255,15,0,
18,0,180,255,224,255,70,0,87,0,155,0,201,0,66,0,235,255,73,0,133,0,90,0,49,0,29,0,34,0,46,0,
252,255,163,255,117,255,135,255,188,255,229,255,254,255,53,0,95,0,42,0,228,255,28,0,134,0,124,0,58,0,57,0,
39,0,190,255,149,255,14,0,186,0,36,1,17,1,91,0,109,255,34,255,131,255,167,255,39,255,123,254,30,254,105,254,
58,255,177,255,164,255,247,255,180,0,35,1,76,1,122,1,107,1,211,0,198,255,231,254,182,254,186,254,157,254,204,254,
42,255,50,255,65,255,211,255,136,0,209,0,166,0,105,0,94,0,119,0,139,0,92,0,230,255,193,255,21,0,79,0,
103,0,148,0,138,0,85,0,85,0,122,0,165,0,210,0,225,0,193,0,104,0,11,0,63,0,220,0,14,1,206,0,
182,0,245,0,65,1,47,1,189,0,83,0,2,0,209,255,254,255,48,0,254,255,221,255,5,0,15,0,17,0,96,0,
207,0,29,1,57,1,13,1,180,0,154,0,206,0,202,0,159,0,225,0,21,1,183,0,182,0,41,1,211,0,73,0,
212,0,137,1,140,1,165,1,204,1,117,1,56,1,109,1,139,1,122,1,101,1,58,1,10,1,209,0,122,0,62,0,
53,0,48,0,78,0,151,0,180,0,160,0,154,0,181,0,241,0,0,1,149,0,60,0,99,0,112,0,51,0,45,0,
37,0,207,255,187,255,19,0,60,0,22,0,5,0,19,0,247,255,197,255,218,255,251,255,209,255,228,255,102,0,149,0,
109,0,98,0,49,0,228,255,225,255,196,255,133,255,187,255,244,255,176,255,161,255,230,255,199,255,103,255,63,255,53,255,
61,255,103,255,126,255,119,255,131,255,164,255,163,255,131,255,145,255,188,255,145,255,67,255,122,255,247,255,8,0,216,255,
200,255,194,255,203,255,224,255,184,255,135,255,167,255,181,255,107,255,64,255,96,255,122,255,128,255,136,255,143,255,145,255,
135,255,128,255,143,255,134,255,104,255,147,255,239,255,249,255,176,255,127,255,109,255,47,255,251,254,51,255,103,255,21,255,
241,254,118,255,204,255,161,255,159,255,195,255,184,255,197,255,254,255,25,0,22,0,243,255,192,255,194,255,215,255,197,255,
203,255,233,255,244,255,34,0,67,0,243,255,202,255,57,0,101,0,222,255,114,255,139,255,173,255,155,255,150,255,181,255,
205,255,216,255,215,255,152,255,99,255,185,255,29,0,229,255,167,255,203,255,186,255,111,255,113,255,143,255,137,255,158,255,
224,255,26,0,8,0,203,255,240,255,40,0,127,255,164,254,247,254,243,255,114,0,147,0,157,0,103,0,40,0,21,0,
15,0,7,0,3,0,45,0,138,0,126,0,209,255,106,255,154,255,178,255,179,255,233,255,213,255,120,255,161,255,46,0,
87,0,40,0,252,255,208,255,161,255,137,255,163,255,213,255,201,255,146,255,147,255,172,255,162,255,150,255,139,255,131,255,
171,255,211,255,218,255,230,255,216,255,178,255,216,255,22,0,254,255,230,255,20,0,48,0,28,0,253,255,203,255,138,255,
105,255,120,255,148,255,140,255,109,255,120,255,192,255,230,255,179,255,133,255,159,255,200,255,230,255,253,255,214,255,139,255,
105,255,66,255,19,255,45,255,97,255,115,255,142,255,158,255,149,255,160,255,128,255,68,255,164,255,77,0,54,0,194,255,
230,255,66,0,56,0,38,0,68,0,45,0,4,0,60,0,116,0,70,0,42,0,86,0,76,0,8,0,0,0,61,0,
85,0,28,0,1,0,78,0,148,0,126,0,73,0,37,0,22,0,12,0,224,255,206,255,18,0,57,0,14,0,3,0,
34,0,30,0,2,0,242,255,248,255,4,0,223,255,173,255,193,255,249,255,8,0,2,0,26,0,78,0,106,0,71,0,
3,0,229,255,2,0,29,0,22,0,36,0,51,0,26,0,73,0,189,0,163,0,58,0,99,0,186,0,183,0,169,0,
153,0,101,0,67,0,44,0,35,0,61,0,65,0,71,0,147,0,198,0,154,0,100,0,78,0,68,0,26,0,204,255,
210,255,54,0,84,0,46,0,65,0,105,0,122,0,131,0,79,0,2,0,33,0,119,0,111,0,35,0,237,255,202,255,
188,255,216,255,239,255,229,255,233,255,250,255,8,0,36,0,47,0,58,0,128,0,145,0,43,0,8,0,78,0,107,0,
126,0,177,0,169,0,101,0,22,0,217,255,235,255,17,0,242,255,224,255,2,0,12,0,0,0,3,0,40,0,97,0,
80,0,8,0,253,255,245,255,182,255,183,255,252,255,21,0,230,255,138,255,85,255,119,255,135,255,104,255,118,255,159,255,
172,255,179,255,187,255,200,255,209,255,192,255,205,255,247,255,222,255,189,255,240,255,8,0,201,255,138,255,102,255,116,255,
198,255,201,255,65,255,30,255,157,255,182,255,138,255,14,0,85,0,88,255,161,254,47,255,165,255,161,255,240,255,49,0,
2,0,239,255,219,255,115,255,60,255,110,255,138,255,116,255,120,255,133,255,122,255,161,255,248,255,253,255,225,255,11,0,
7,0,223,255,30,0,79,0,49,0,86,0,115,0,51,0,50,0,76,0,0,0,220,255,31,0,55,0,16,0,224,255,
181,255,184,255,240,255,54,0,96,0,76,0,50,0,75,0,105,0,148,0,213,0,216,0,172,0,182,0,198,0,147,0,
82,0,71,0,120,0,179,0,200,0,197,0,183,0,157,0,160,0,217,0,253,0,200,0,113,0,77,0,57,0,34,0,
72,0,100,0,33,0,20,0,104,0,116,0,76,0,94,0,113,0,128,0,169,0,150,0,75,0,50,0,70,0,87,0,
108,0,146,0,150,0,62,0,3,0,71,0,61,0,187,255,235,255,153,0,144,0,56,0,76,0,87,0,66,0,108,0,
140,0,96,0,68,0,96,0,102,0,58,0,16,0,246,255,0,0,98,0,196,0,195,0,195,0,225,0,156,0,51,0,
50,0,84,0,65,0,18,0,2,0,46,0,72,0,12,0,235,255,36,0,83,0,59,0,222,255,127,255,162,255,20,0,
40,0,251,255,242,255,247,255,255,255,18,0,0,0,244,255,93,0,252,0,35,1,202,0,100,0,11,0,208,255,224,255,
244,255,188,255,68,255,169,254,91,254,187,254,17,255,235,254,12,255,105,255,75,255,61,255,188,255,20,0,245,255,188,255,
142,255,123,255,121,255,93,255,68,255,67,255,41,255,14,255,54,255,112,255,93,255,62,255,135,255,229,255,227,255,223,255,
11,0,9,0,245,255,18,0,20,0,213,255,156,255,143,255,169,255,169,255,115,255,110,255,192,255,3,0,5,0,223,255,
172,255,153,255,151,255,127,255,130,255,183,255,216,255,194,255,157,255,148,255,177,255,227,255,38,0,71,0,20,0,253,255,
78,0,119,0,57,0,13,0,5,0,244,255,23,0,93,0,70,0,239,255,235,255,40,0,47,0,15,0,243,255,198,255,
176,255,219,255,250,255,7,0,56,0,75,0,38,0,31,0,38,0,5,0,232,255,244,255,33,0,80,0,70,0,4,0,
184,255,141,255,208,255,102,0,172,0,127,0,62,0,10,0,14,0,94,0,139,0,104,0,67,0,71,0,110,0,134,0,
78,0,27,0,90,0,154,0,91,0,251,255,225,255,220,255,211,255,242,255,7,0,200,255,148,255,204,255,7,0,233,255,
189,255,185,255,203,255,244,255,32,0,32,0,14,0,28,0,49,0,10,0,175,255,115,255,112,255,92,255,38,255,60,255,
194,255,40,0,44,0,36,0,20,0,229,255,254,255,44,0,202,255,111,255,198,255,252,255,166,255,155,255,231,255,235,255,
206,255,214,255,204,255,168,255,184,255,8,0,56,0,255,255,175,255,166,255,180,255,181,255,208,255,238,255,233,255,230,255,
250,255,240,255,199,255,209,255,25,0,48,0,244,255,190,255,173,255,169,255,186,255,202,255,200,255,228,255,40,0,81,0,
42,0,218,255,208,255,16,0,12,0,197,255,185,255,187,255,143,255,149,255,211,255,252,255,31,0,32,0,224,255,207,255,
7,0,20,0,254,255,250,255,211,255,167,255,202,255,6,0,25,0,16,0,243,255,231,255,15,0,23,0,228,255,221,255,
249,255,210,255,170,255,220,255,39,0,57,0,41,0,22,0,18,0,42,0,51,0,254,255,191,255,200,255,253,255,29,0,
51,0,69,0,41,0,246,255,230,255,13,0,102,0,147,0,18,0,81,255,45,255,137,255,228,255,61,0,120,0,94,0,
56,0,60,0,49,0,17,0,24,0,73,0,90,0,18,0,178,255,167,255,231,255,29,0,40,0,7,0,228,255,248,255,
33,0,51,0,68,0,72,0,51,0,58,0,64,0,3,0,220,255,22,0,92,0,99,0,58,0,1,0,239,255,12,0,
36,0,43,0,31,0,237,255,220,255,21,0,46,0,20,0,34,0,42,0,237,255,214,255,9,0,8,0,191,255,160,255,
198,255,223,255,187,255,137,255,142,255,183,255,217,255,20,0,87,0,42,0,168,255,134,255,210,255,247,255,206,255,161,255,
169,255,223,255,247,255,199,255,141,255,130,255,164,255,204,255,201,255,162,255,140,255,133,255,147,255,206,255,233,255,198,255,
213,255,16,0,6,0,211,255,190,255,199,255,234,255,6,0,245,255,224,255,231,255,246,255,6,0,3,0,239,255,255,255,
32,0,13,0,230,255,231,255,255,255,14,0,16,0,252,255,201,255,164,255,202,255,9,0,249,255,187,255,171,255,195,255,
235,255,19,0,17,0,250,255,254,255,3,0,249,255,242,255,240,255,13,0,55,0,27,0,217,255,213,255,224,255,199,255,
236,255,71,0,78,0,32,0,51,0,77,0,42,0,6,0,230,255,173,255,163,255,216,255,246,255,253,255,6,0,229,255,
191,255,225,255,20,0,12,0,245,255,0,0,8,0,239,255,236,255,22,0,30,0,241,255,229,255,3,0,8,0,236,255,
213,255,234,255,27,0,39,0,26,0,33,0,23,0,4,0,35,0,63,0,36,0,14,0,32,0,57,0,54,0,24,0,
19,0,58,0,79,0,71,0,57,0,20,0,245,255,254,255,6,0,1,0,246,255,204,255,178,255,207,255,222,255,212,255,
228,255,234,255,216,255,226,255,244,255,231,255,225,255,245,255,247,255,226,255,210,255,202,255,204,255,224,255,226,255,199,255,
198,255,235,255,12,0,48,0,74,0,16,0,172,255,147,255,216,255,51,0,79,0,31,0,1,0,20,0,21,0,3,0,
1,0,21,0,81,0,135,0,127,0,125,0,146,0,107,0,65,0,82,0,48,0,230,255,250,255,67,0,91,0,112,0,
153,0,135,0,59,0,16,0,27,0,38,0,29,0,17,0,252,255,235,255,255,255,46,0,70,0,40,0,242,255,236,255,
11,0,4,0,236,255,245,255,1,0,2,0,26,0,54,0,58,0,47,0,24,0,9,0,25,0,35,0,18,0,24,0,
60,0,60,0,31,0,54,0,114,0,113,0,61,0,34,0,24,0,2,0,238,255,225,255,226,255,227,255,205,255,209,255,
10,0,30,0,254,255,242,255,224,255,203,255,6,0,76,0,41,0,248,255,0,0,242,255,207,255,231,255,37,0,67,0,
64,0,57,0,53,0,43,0,39,0,47,0,55,0,75,0,109,0,97,0,24,0,225,255,214,255,222,255,18,0,82,0,
62,0,247,255,230,255,254,255,9,0,20,0,28,0,38,0,69,0,81,0,56,0,47,0,37,0,12,0,40,0,81,0,
51,0,34,0,69,0,49,0,3,0,24,0,38,0,251,255,230,255,245,255,238,255,203,255,180,255,199,255,245,255,24,0,
30,0,251,255,204,255,208,255,232,255,224,255,237,255,24,0,18,0,239,255,227,255,198,255,169,255,187,255,192,255,169,255,
184,255,224,255,233,255,230,255,230,255,210,255,190,255,194,255,206,255,203,255,190,255,168,255,151,255,174,255,227,255,1,0,
0,0,252,255,246,255,250,255,15,0,29,0,46,0,62,0,30,0,246,255,15,0,35,0,254,255,247,255,23,0,4,0,
202,255,207,255,31,0,82,0,39,0,227,255,207,255,201,255,194,255,210,255,226,255,238,255,13,0,29,0,2,0,230,255,
222,255,226,255,239,255,234,255,199,255,175,255,191,255,231,255,255,255,237,255,207,255,194,255,202,255,245,255,45,0,42,0,
12,0,38,0,70,0,33,0,244,255,251,255,13,0,255,255,245,255,22,0,62,0,51,0,10,0,244,255,218,255,190,255,
211,255,2,0,1,0,218,255,186,255,175,255,199,255,242,255,4,0,21,0,57,0,51,0,12,0,25,0,65,0,58,0,
30,0,13,0,244,255,224,255,222,255,219,255,221,255,243,255,12,0,15,0,249,255,226,255,240,255,26,0,39,0,31,0,
48,0,55,0,7,0,224,255,240,255,248,255,228,255,232,255,226,255,191,255,204,255,5,0,24,0,19,0,38,0,54,0,
34,0,249,255,235,255,15,0,43,0,39,0,55,0,64,0,24,0,252,255,5,0,0,0,5,0,40,0,39,0,249,255,
212,255,205,255,225,255,251,255,0,0,252,255,249,255,244,255,237,255,222,255,210,255,223,255,237,255,231,255,222,255,215,255,
222,255,247,255,253,255,250,255,12,0,0,0,214,255,221,255,247,255,241,255,6,0,63,0,85,0,68,0,42,0,20,0,
14,0,14,0,10,0,4,0,231,255,194,255,198,255,225,255,236,255,250,255,21,0,29,0,250,255,199,255,190,255,210,255,
185,255,154,255,206,255,20,0,18,0,244,255,237,255,234,255,233,255,240,255,232,255,217,255,218,255,228,255,234,255,250,255,
13,0,17,0,4,0,245,255,235,255,218,255,193,255,188,255,224,255,6,0,251,255,219,255,222,255,254,255,12,0,245,255,
202,255,181,255,208,255,245,255,243,255,210,255,185,255,182,255,189,255,201,255,214,255,224,255,228,255,222,255,212,255,215,255,
221,255,213,255,216,255,239,255,242,255,231,255,248,255,21,0,21,0,3,0,238,255,217,255,215,255,232,255,236,255,228,255,
243,255,12,0,250,255,213,255,210,255,216,255,210,255,222,255,232,255,222,255,242,255,17,0,8,0,1,0,6,0,242,255,
247,255,22,0,0,0,222,255,243,255,253,255,231,255,238,255,2,0,0,0,8,0,27,0,24,0,1,0,234,255,224,255,
238,255,4,0,10,0,11,0,23,0,28,0,16,0,15,0,23,0,6,0,250,255,11,0,4,0,220,255,206,255,226,255,
251,255,9,0,251,255,224,255,218,255,225,255,237,255,251,255,251,255,244,255,5,0,41,0,57,0,28,0,236,255,223,255,
237,255,233,255,235,255,244,255,221,255,211,255,240,255,245,255,233,255,6,0,32,0,15,0,1,0,7,0,14,0,13,0,
3,0,2,0,25,0,36,0,15,0,245,255,224,255,216,255,238,255,6,0,5,0,254,255,11,0,30,0,32,0,17,0,
14,0,35,0,44,0,28,0,19,0,22,0,15,0,8,0,14,0,10,0,8,0,13,0,243,255,215,255,242,255,19,0,
9,0,7,0,16,0,2,0,0,0,17,0,9,0,249,255,7,0,21,0,6,0,242,255,251,255,28,0,41,0,34,0,
42,0,41,0,10,0,0,0,20,0,31,0,43,0,58,0,44,0,23,0,35,0,57,0,65,0,66,0,70,0,75,0,
70,0,59,0,46,0,27,0,12,0,28,0,63,0,84,0,89,0,81,0,56,0,38,0,48,0,64,0,46,0,3,0,
240,255,247,255,234,255,201,255,202,255,240,255,21,0,42,0,36,0,253,255,225,255,238,255,248,255,227,255,210,255,202,255,
193,255,211,255,246,255,255,255,249,255,240,255,221,255,217,255,244,255,18,0,34,0,25,0,250,255,240,255,253,255,248,255,
241,255,250,255,1,0,29,0,69,0,59,0,12,0,242,255,243,255,6,0,28,0,40,0,51,0,41,0,248,255,233,255,
21,0,38,0,16,0,26,0,50,0,37,0,16,0,22,0,32,0,20,0,3,0,0,0,255,255,3,0,27,0,38,0,
15,0,248,255,0,0,30,0,54,0,37,0,254,255,247,255,6,0,254,255,245,255,2,0,8,0,246,255,237,255,249,255,
251,255,236,255,237,255,5,0,30,0,44,0,24,0,235,255,228,255,3,0,16,0,13,0,7,0,231,255,205,255,226,255,
5,0,17,0,21,0,51,0,86,0,73,0,40,0,50,0,43,0,244,255,238,255,253,255,184,255,134,255,196,255,3,0,
6,0,3,0,6,0,15,0,41,0,45,0,26,0,24,0,21,0,253,255,239,255,242,255,237,255,217,255,207,255,227,255,
6,0,33,0,45,0,26,0,250,255,1,0,29,0,21,0,10,0,28,0,23,0,249,255,250,255,9,0,1,0,243,255,
239,255,244,255,252,255,249,255,238,255,238,255,242,255,239,255,236,255,230,255,223,255,232,255,253,255,11,0,12,0,10,0,
22,0,37,0,18,0,244,255,255,255,29,0,41,0,43,0,39,0,25,0,22,0,23,0,15,0,14,0,23,0,32,0,
30,0,9,0,251,255,12,0,27,0,25,0,26,0,20,0,13,0,34,0,48,0,27,0,10,0,0,0,243,255,3,0,
31,0,26,0,4,0,251,255,253,255,11,0,15,0,248,255,227,255,234,255,255,255,9,0,248,255,227,255,240,255,16,0,
29,0,27,0,14,0,248,255,236,255,245,255,247,255,233,255,226,255,239,255,250,255,253,255,14,0,36,0,33,0,13,0,
245,255,227,255,231,255,244,255,250,255,248,255,234,255,221,255,247,255,36,0,54,0,36,0,8,0,10,0,45,0,47,0,
19,0,38,0,68,0,31,0,226,255,186,255,160,255,171,255,199,255,189,255,164,255,156,255,158,255,183,255,221,255,236,255,
252,255,21,0,9,0,227,255,214,255,226,255,244,255,254,255,232,255,199,255,194,255,208,255,208,255,210,255,223,255,224,255,
214,255,223,255,232,255,213,255,199,255,215,255,226,255,225,255,238,255,242,255,226,255,221,255,232,255,233,255,234,255,240,255,
238,255,238,255,241,255,232,255,230,255,242,255,236,255,218,255,229,255,252,255,249,255,237,255,244,255,5,0,17,0,13,0,
245,255,234,255,247,255,254,255,248,255,244,255,245,255,253,255,4,0,254,255,247,255,250,255,254,255,8,0,18,0,9,0,
252,255,0,0,7,0,9,0,12,0,15,0,16,0,7,0,243,255,244,255,10,0,9,0,244,255,239,255,250,255,252,255,
242,255,239,255,253,255,13,0,20,0,26,0,19,0,250,255,249,255,24,0,38,0,25,0,18,0,14,0,2,0,249,255,
252,255,7,0,17,0,20,0,10,0,254,255,250,255,1,0,7,0,16,0,28,0,28,0,14,0,1,0,247,255,239,255,
242,255,249,255,243,255,235,255,240,255,250,255,1,0,4,0,254,255,246,255,251,255,3,0,4,0,11,0,18,0,255,255,
233,255,245,255,7,0,2,0,0,0,11,0,12,0,3,0,2,0,11,0,22,0,20,0,3,0,0,0,19,0,26,0,
15,0,12,0,13,0,4,0,255,255,5,0,4,0,253,255,255,255,6,0,11,0,12,0,8,0,4,0,254,255,241,255,
236,255,248,255,0,0,249,255,244,255,249,255,0,0,255,255,248,255,244,255,246,255,245,255,243,255,247,255,1,0,7,0,
5,0,255,255,254,255,253,255,252,255,0,0,255,255,248,255,251,255,254,255,247,255,249,255,0,0,246,255,236,255,247,255,
6,0,9,0,4,0,3,0,7,0,4,0,252,255,1,0,12,0,15,0,17,0,11,0,250,255,251,255,11,0,14,0,
10,0,11,0,9,0,7,0,13,0,13,0,0,0,248,255,3,0,19,0,21,0,18,0,17,0,8,0,3,0,17,0,
22,0,11,0,18,0,34,0,25,0,7,0,3,0,9,0,15,0,16,0,12,0,14,0,23,0,26,0,21,0,17,0,
11,0,3,0,4,0,14,0,10,0,246,255,238,255,246,255,245,255,240,255,249,255,5,0,12,0,23,0,30,0,21,0,
0,0,233,255,218,255,216,255,232,255,254,255,6,0,2,0,4,0,2,0,248,255,250,255,252,255,241,255,240,255,0,0,
9,0,11,0,10,0,2,0,2,0,12,0,11,0,4,0,6,0,3,0,247,255,240,255,238,255,239,255,247,255,254,255,
0,0,251,255,243,255,246,255,8,0,19,0,15,0,6,0,4,0,8,0,9,0,0,0,253,255,7,0,14,0,10,0,
1,0,251,255,248,255,247,255,250,255,0,0,5,0,1,0,247,255,244,255,248,255,252,255,0,0,7,0,10,0,13,0,
20,0,24,0,15,0,6,0,2,0,252,255,252,255,7,0,8,0,0,0,254,255,254,255,255,255,9,0,18,0,15,0,
11,0,11,0,9,0,4,0,2,0,6,0,10,0,8,0,8,0,14,0,12,0,5,0,10,0,21,0,21,0,13,0,
10,0,16,0,20,0,9,0,255,255,9,0,16,0,12,0,9,0,4,0,250,255,250,255,2,0,2,0,255,255,252,255,
255,255,11,0,16,0,9,0,8,0,13,0,11,0,8,0,7,0,4,0,1,0,1,0,4,0,12,0,14,0,7,0,
254,255,252,255,1,0,3,0,0,0,2,0,10,0,7,0,255,255,0,0,4,0,2,0,3,0,5,0,254,255,249,255,
255,255,9,0,13,0,13,0,13,0,10,0,7,0,9,0,10,0,4,0,255,255,251,255,244,255,243,255,250,255,2,0,
7,0,9,0,6,0,6,0,5,0,255,255,251,255,253,255,253,255,252,255,250,255,250,255,1,0,4,0,252,255,250,255,
0,0,254,255,245,255,240,255,239,255,247,255,2,0,2,0,252,255,253,255,1,0,6,0,14,0,20,0,20,0,14,0,
9,0,6,0,4,0,2,0,1,0,254,255,254,255,2,0,254,255,246,255,249,255,255,255,254,255,253,255,255,255,253,255,
255,255,4,0,6,0,8,0,11,0,9,0,7,0,5,0,254,255,252,255,0,0,1,0,2,0,5,0,5,0,2,0,
2,0,3,0,1,0,253,255,255,255,3,0,1,0,0,0,4,0,3,0,0,0,2,0,0,0,251,255,254,255,1,0,
252,255,249,255,250,255,247,255,246,255,249,255,250,255,252,255,1,0,2,0,255,255,252,255,251,255,253,255,0,0,4,0,
7,0,5,0,2,0,254,255,251,255,253,255,2,0,255,255,251,255,0,0,4,0,0,0,252,255,249,255,246,255,250,255,
2,0,4,0,0,0,254,255,255,255,1,0,1,0,255,255,251,255,253,255,3,0,255,255,248,255,251,255,255,255,248,255,
243,255,246,255,252,255,0,0,249,255,239,255,241,255,249,255,250,255,253,255,254,255,250,255,254,255,8,0,9,0,8,0,
11,0,6,0,253,255,250,255,249,255,249,255,251,255,253,255,255,255,0,0,250,255,248,255,250,255,250,255,250,255,254,255,
253,255,249,255,249,255,253,255,0,0,255,255,0,0,3,0,1,0,254,255,5,0,10,0,3,0,0,0,3,0,255,255,
248,255,248,255,248,255,249,255,252,255,252,255,250,255,251,255,251,255,253,255,4,0,6,0,2,0,2,0,3,0,0,0,
255,255,255,255,250,255,248,255,253,255,254,255,245,255,244,255,250,255,250,255,247,255,246,255,246,255,248,255,253,255,254,255,
254,255,255,255,255,255,2,0,6,0,2,0,253,255,254,255,1,0,2,0,4,0,2,0,255,255,253,255,252,255,253,255,
0,0,255,255,253,255,253,255,251,255,249,255,249,255,251,255,0,0,4,0,253,255,251,255,3,0,4,0,2,0,8,0,
9,0,3,0,2,0,6,0,5,0,1,0,253,255,249,255,249,255,248,255,245,255,246,255,251,255,255,255,1,0,2,0,
2,0,0,0,255,255,1,0,2,0,3,0,6,0,6,0,255,255,255,255,5,0,3,0,252,255,251,255,248,255,243,255,
246,255,254,255,0,0,255,255,0,0,0,0,0,0,255,255,253,255,248,255,245,255,247,255,255,255,6,0,4,0,250,255,
245,255,247,255,247,255,244,255,246,255,247,255,247,255,249,255,253,255,254,255,251,255,248,255,249,255,255,255,1,0,255,255,
1,0,5,0,5,0,0,0,250,255,250,255,255,255,0,0,254,255,2,0,6,0,0,0,249,255,251,255,254,255,255,255,
3,0,8,0,7,0,0,0,251,255,250,255,250,255,252,255,1,0,1,0,252,255,248,255,249,255,255,255,2,0,252,255,
248,255,252,255,253,255,250,255,255,255,6,0,5,0,3,0,2,0,255,255,252,255,253,255,253,255,252,255,252,255,1,0,
6,0,4,0,1,0,1,0,0,0,255,255,255,255,250,255,246,255,249,255,251,255,250,255,251,255,255,255,3,0,5,0,
2,0,0,0,4,0,5,0,2,0,0,0,253,255,249,255,250,255,0,0,0,0,252,255,250,255,251,255,254,255,0,0,
255,255,254,255,255,255,254,255,254,255,255,255,253,255,252,255,0,0,5,0,5,0,3,0,2,0,2,0,0,0,254,255,
252,255,251,255,252,255,254,255,254,255,255,255,2,0,4,0,1,0,254,255,255,255,1,0,255,255,254,255,1,0,3,0,
6,0,5,0,254,255,250,255,0,0,3,0,1,0,0,0,255,255,253,255,0,0,6,0,9,0,4,0,252,255,253,255,
5,0,7,0,1,0,0,0,0,0,254,255,0,0,3,0,1,0,254,255,0,0,3,0,2,0,252,255,249,255,253,255,
0,0,0,0,3,0,4,0,254,255,252,255,0,0,1,0,2,0,6,0,7,0,4,0,1,0,255,255,0,0,2,0,
2,0,4,0,6,0,3,0,254,255,254,255,254,255,253,255,0,0,3,0,3,0,3,0,3,0,1,0,1,0,3,0,
2,0,0,0,254,255,255,255,0,0,255,255,255,255,3,0,6,0,3,0,3,0,7,0,7,0,5,0,7,0,7,0,
3,0,2,0,4,0,2,0,254,255,253,255,254,255,254,255,255,255,0,0,2,0,1,0,1,0,1,0,1,0,2,0,
3,0,2,0,0,0,0,0,255,255,254,255,254,255,253,255,253,255,1,0,4,0,2,0,2,0,4,0,3,0,0,0,
0,0,2,0,2,0,1,0,0,0,4,0,8,0,8,0,5,0,2,0,255,255,252,255,254,255,2,0,4,0,3,0,
2,0,4,0,7,0,5,0,2,0,4,0,5,0,3,0,3,0,5,0,4,0,3,0,3,0,4,0,3,0,3,0,
4,0,1,0,255,255,255,255,0,0,0,0,255,255,255,255,255,255,255,255,0,0,1,0,0,0,255,255,1,0,3,0,
3,0,4,0,4,0,3,0,2,0,4,0,5,0,3,0,3,0,5,0,3,0,2,0,5,0,8,0,4,0,1,0,
2,0,3,0,1,0,254,255,254,255,0,0,2,0,4,0,7,0,7,0,2,0,255,255,0,0,2,0,1,0,1,0,
1,0,3,0,3,0,1,0,1,0,2,0,0,0,253,255,254,255,255,255,255,255,0,0,0,0,1,0,2,0,2,0,
1,0,0,0,0,0,1,0,1,0,2,0,0,0,255,255,254,255,255,255,254,255,254,255,1,0,3,0,2,0,2,0,
5,0,6,0,4,0,5,0,5,0,2,0,2,0,3,0,2,0,255,255,0,0,0,0,0,0,255,255,0,0,2,0,
2,0,1,0,1,0,1,0,1,0,2,0,1,0,255,255,254,255,255,255,255,255,255,255,3,0,5,0,3,0,1,0,
1,0,0,0,255,255,0,0,2,0,4,0,3,0,1,0,1,0,0,0,254,255,254,255,2,0,2,0,1,0,1,0,
255,255,252,255,254,255,1,0,1,0,0,0,255,255,1,0,2,0,0,0,255,255,0,0,0,0,1,0,4,0,2,0,
254,255,254,255,2,0,4,0,3,0,0,0,254,255,255,255,0,0,1,0,2,0,0,0,253,255,255,255,2,0,2,0,
1,0,0,0,255,255,0,0,1,0,0,0,255,255,0,0,2,0,1,0,0,0,0,0,255,255,254,255,254,255,254,255,
255,255,255,255,0,0,1,0,1,0,3,0,3,0,0,0,254,255,254,255,0,0,0,0,255,255,255,255,0,0,0,0,
0,0,0,0,254,255,253,255,253,255,255,255,0,0,254,255,254,255,255,255,0,0,1,0,2,0,2,0,0,0,0,0,
1,0,1,0,0,0,254,255,254,255,254,255,254,255,253,255,254,255,0,0,0,0,0,0,1,0,0,0,1,0,2,0,
0,0,254,255,255,255,255,255,255,255,255,255,0,0,1,0,1,0,1,0,2,0,0,0,254,255,255,255,255,255,254,255,
255,255,0,0,0,0,254,255,254,255,254,255,0,0,0,0,255,255,254,255,255,255,255,255,0,0,2,0,3,0,1,0,
255,255,255,255,255,255,255,255,0,0,2,0,1,0,255,255,0,0,0,0,255,255,255,255,255,255,0,0,1,0,1,0,
1,0,1,0,0,0,254,255,254,255,255,255,0,0,0,0,255,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
255,255,1,0,1,0,0,0,254,255,253,255,254,255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,
254,255,254,255,255,255,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,0,1,0,1,0,
0,0,0,0,255,255,255,255,254,255,254,255,255,255,255,255,255,255,0,0,0,0,1,0,1,0,1,0,0,0,1,0,
1,0,0,0,1,0,1,0,255,255,
};

564
src/client/sound/data/cloth2.pcm Executable file
View File

@@ -0,0 +1,564 @@
unsigned char PCM_cloth2[17962] = {
1,0,0,0,2,0,0,0,68,172,0,0,13,35,0,0,255,255,1,0,0,0,252,255,253,255,0,0,255,255,254,255,
255,255,254,255,252,255,255,255,0,0,252,255,252,255,0,0,1,0,255,255,1,0,2,0,0,0,254,255,255,255,2,0,
2,0,255,255,254,255,254,255,251,255,250,255,252,255,249,255,246,255,252,255,1,0,253,255,251,255,252,255,255,255,255,255,
251,255,246,255,245,255,242,255,241,255,250,255,251,255,238,255,232,255,236,255,241,255,245,255,241,255,230,255,231,255,241,255,
243,255,243,255,238,255,230,255,241,255,251,255,233,255,225,255,241,255,237,255,227,255,236,255,235,255,219,255,219,255,214,255,
198,255,209,255,227,255,214,255,202,255,214,255,230,255,232,255,212,255,187,255,196,255,217,255,215,255,209,255,217,255,218,255,
208,255,197,255,191,255,201,255,208,255,198,255,198,255,206,255,201,255,204,255,216,255,207,255,204,255,219,255,207,255,193,255,
219,255,229,255,208,255,218,255,238,255,223,255,206,255,199,255,192,255,216,255,251,255,245,255,223,255,224,255,233,255,246,255,
251,255,231,255,224,255,248,255,2,0,244,255,232,255,215,255,192,255,185,255,185,255,180,255,173,255,174,255,197,255,220,255,
205,255,186,255,206,255,219,255,205,255,203,255,208,255,211,255,233,255,239,255,219,255,232,255,6,0,242,255,203,255,200,255,
208,255,214,255,233,255,225,255,199,255,187,255,163,255,161,255,201,255,213,255,210,255,224,255,220,255,209,255,208,255,213,255,
233,255,0,0,20,0,25,0,11,0,253,255,239,255,245,255,10,0,8,0,2,0,242,255,228,255,4,0,24,0,24,0,
53,0,61,0,21,0,227,255,233,255,27,0,12,0,4,0,60,0,59,0,38,0,38,0,11,0,29,0,53,0,28,0,
29,0,30,0,33,0,56,0,59,0,78,0,120,0,142,0,128,0,80,0,67,0,80,0,62,0,60,0,65,0,61,0,
53,0,34,0,77,0,87,0,6,0,16,0,53,0,17,0,8,0,245,255,232,255,8,0,240,255,210,255,214,255,224,255,
8,0,1,0,214,255,204,255,182,255,182,255,196,255,176,255,183,255,204,255,207,255,194,255,170,255,165,255,153,255,172,255,
233,255,197,255,149,255,185,255,190,255,196,255,210,255,203,255,238,255,236,255,203,255,221,255,208,255,210,255,244,255,210,255,
191,255,200,255,182,255,187,255,194,255,205,255,228,255,231,255,246,255,244,255,218,255,230,255,251,255,254,255,234,255,230,255,
19,0,4,0,218,255,243,255,228,255,210,255,234,255,200,255,199,255,237,255,216,255,214,255,211,255,207,255,12,0,24,0,
244,255,238,255,234,255,9,0,30,0,10,0,27,0,28,0,24,0,69,0,75,0,60,0,71,0,103,0,156,0,144,0,
115,0,152,0,188,0,235,0,0,1,227,0,13,1,74,1,94,1,123,1,148,1,204,1,228,1,211,1,36,2,54,2,
247,1,69,2,133,2,130,2,200,2,223,2,206,2,230,2,250,2,13,3,232,2,174,2,175,2,194,2,234,2,219,2,
141,2,147,2,151,2,144,2,184,2,126,2,47,2,51,2,83,2,177,2,216,2,186,2,17,3,137,3,199,3,219,3,
188,3,162,3,82,3,15,3,111,3,233,3,82,4,136,4,23,4,171,3,117,3,60,3,106,3,179,3,225,3,215,3,
71,3,251,2,15,3,176,2,27,2,150,1,33,1,216,0,202,0,4,1,225,0,134,0,164,0,69,0,131,255,119,255,
98,255,11,255,7,255,16,255,9,255,229,254,138,254,13,254,165,253,207,253,243,253,154,253,137,253,119,253,76,253,179,253,
21,254,25,254,227,253,129,253,170,253,66,254,145,254,92,254,194,253,203,253,105,254,53,254,116,253,73,253,218,253,45,254,
115,253,241,252,87,253,103,253,7,253,184,252,124,252,72,252,241,251,237,251,80,252,117,252,135,252,125,252,80,252,116,252,
70,252,176,251,177,251,234,251,131,251,28,251,178,251,58,252,150,251,139,251,146,252,151,252,43,252,130,252,68,252,90,251,
101,251,77,252,188,252,155,252,124,252,44,252,247,251,85,252,194,252,128,253,130,254,59,254,66,253,128,253,5,254,79,253,
176,252,158,253,164,254,82,254,208,253,26,254,165,254,27,255,69,255,206,254,58,254,152,254,226,255,207,0,3,1,111,1,
38,2,109,2,163,2,186,3,60,5,189,5,86,5,90,5,179,5,162,5,190,5,126,6,245,6,165,6,82,6,120,6,
181,6,204,6,52,7,15,8,72,8,133,7,66,7,243,7,76,8,89,8,27,9,219,9,156,9,198,8,218,7,15,7,
209,6,41,7,168,7,246,7,11,8,83,8,7,9,168,9,1,10,99,10,178,10,185,10,253,10,208,11,134,12,152,12,
140,12,204,12,193,12,49,12,200,11,153,11,9,11,11,10,17,9,181,8,22,9,30,9,33,8,30,7,115,6,67,5,
200,3,234,2,115,2,21,2,26,2,2,2,210,0,3,255,245,253,138,253,187,252,201,251,35,251,44,250,22,249,86,248,
24,247,200,245,36,246,248,246,14,246,233,244,108,245,238,245,36,245,20,245,245,246,48,248,185,246,242,244,107,245,183,246,
53,247,162,247,24,248,12,248,84,248,32,249,17,249,87,248,146,248,139,249,236,249,39,250,227,250,26,251,218,250,143,251,
94,252,23,252,247,251,7,252,106,251,24,252,85,254,188,254,85,253,26,253,218,253,87,254,205,254,56,255,189,255,73,0,
6,0,198,255,78,0,9,0,241,254,167,254,136,254,4,254,30,254,95,254,23,254,34,254,121,254,90,254,17,254,238,253,
215,253,216,253,29,254,147,254,114,254,139,253,66,253,154,253,0,253,22,252,57,252,190,252,63,253,233,253,185,253,150,252,
20,252,155,252,191,252,209,251,135,251,239,252,150,253,123,252,119,252,115,253,168,252,134,251,88,252,156,253,33,254,66,254,
3,254,8,254,107,254,78,254,141,254,221,255,230,0,56,1,73,1,250,0,209,0,13,1,68,1,229,1,121,2,238,1,
155,1,125,2,62,3,219,3,215,4,16,5,181,4,255,4,87,5,95,5,248,5,230,6,116,7,205,7,237,7,137,7,
20,7,77,7,81,8,200,9,226,10,43,10,175,7,238,5,210,5,175,5,143,5,9,6,155,5,72,4,186,3,162,3,
144,3,161,3,220,2,243,1,25,2,110,1,175,255,108,255,28,0,97,0,37,1,92,1,183,255,132,254,64,255,118,0,
196,0,154,255,60,254,199,254,11,0,197,255,224,254,175,254,184,254,164,254,141,254,87,254,181,253,202,252,172,252,116,253,
165,253,38,253,207,252,80,252,218,251,218,251,132,251,188,250,39,250,218,249,37,250,158,250,83,250,45,250,108,250,197,249,
48,249,144,249,116,249,74,249,9,250,102,250,87,250,15,250,131,248,186,247,89,249,247,249,57,248,204,246,99,246,236,246,
52,248,123,247,140,244,31,243,241,243,227,244,73,245,85,245,56,245,191,244,170,243,89,243,149,244,5,246,108,247,170,248,
45,248,19,247,83,247,75,247,203,246,90,248,217,250,220,251,92,252,151,252,81,251,83,250,110,251,87,252,162,251,38,252,
205,254,37,0,72,255,12,255,193,255,253,255,80,0,220,0,60,1,121,2,29,4,133,4,158,4,77,5,205,5,157,6,
205,7,0,8,80,8,25,10,238,10,40,9,101,7,243,7,139,9,12,10,138,9,12,9,74,8,149,7,217,8,75,11,
99,11,72,9,94,8,189,8,31,8,69,7,225,7,128,8,178,7,155,6,145,5,254,3,227,2,36,2,10,0,190,253,
89,253,180,253,97,253,171,252,142,251,129,250,145,250,88,251,220,251,230,251,218,251,84,252,202,252,113,252,149,252,233,253,
200,254,21,255,5,0,36,1,2,2,205,2,11,3,251,2,3,3,138,2,65,2,232,2,206,2,79,1,145,0,120,1,
158,2,187,2,230,1,224,0,150,255,40,254,255,253,129,254,29,253,124,250,64,249,64,249,255,248,45,248,60,247,254,246,
138,247,40,248,210,248,63,249,222,248,228,248,6,250,149,250,43,250,49,250,213,250,255,251,176,253,27,254,125,252,168,251,
78,253,189,254,205,253,137,252,223,252,29,253,23,252,166,251,118,252,204,252,74,252,12,252,62,252,220,252,32,254,0,255,
80,254,10,253,204,252,94,253,162,253,117,253,204,253,124,255,167,1,181,2,25,3,146,3,19,3,135,2,70,4,70,6,
253,5,31,6,89,8,72,10,145,11,80,13,199,14,77,16,152,18,37,20,164,20,65,21,36,21,21,20,115,20,60,22,
75,22,180,20,232,20,92,22,70,21,185,18,82,18,199,18,215,17,216,16,103,16,188,15,20,15,106,14,53,14,202,14,
199,13,252,10,143,9,99,8,89,5,100,3,24,3,52,1,116,254,235,252,185,251,100,250,203,248,159,246,251,244,0,244,
75,243,206,243,92,244,24,243,96,241,236,239,92,238,41,238,156,238,160,237,187,236,176,236,10,236,193,235,231,235,242,234,
51,235,195,237,105,238,79,236,30,235,27,235,235,234,24,236,0,239,114,240,43,239,82,238,64,239,85,239,126,238,20,239,
17,240,48,240,254,240,96,242,73,243,237,244,6,247,98,247,91,246,44,246,169,247,94,249,145,249,63,249,163,249,74,249,
155,248,249,249,12,252,139,252,66,252,194,251,26,251,26,251,91,251,150,251,55,252,254,251,22,251,1,252,214,253,160,253,
172,251,186,249,187,248,22,249,43,250,107,251,125,252,108,252,28,252,87,253,173,254,146,254,203,254,8,0,116,0,106,0,
255,1,195,3,135,2,25,0,99,0,112,2,32,4,141,5,98,5,63,4,211,5,55,8,47,8,239,8,139,10,86,9,
99,8,55,10,128,11,129,12,215,13,56,12,133,9,200,9,83,11,146,12,126,13,8,13,153,12,253,12,58,12,127,11,
78,11,22,8,15,3,46,1,255,1,194,1,249,254,227,251,168,251,106,252,54,251,75,250,255,249,106,247,169,244,87,244,
112,244,168,244,181,245,188,245,170,244,234,243,9,243,28,242,19,242,119,242,20,242,28,241,187,241,184,243,25,243,129,240,
109,240,35,241,244,239,234,239,93,241,180,241,24,242,211,242,164,242,37,243,224,243,136,242,55,241,224,241,13,243,216,243,
210,242,35,240,161,240,128,244,116,245,255,242,170,241,36,242,119,243,144,244,95,243,207,241,117,243,12,246,89,246,166,245,
251,244,235,243,110,243,234,243,112,244,194,244,244,244,230,244,100,244,89,243,238,242,164,243,159,243,209,242,55,243,163,243,
193,242,20,243,227,244,46,245,175,244,98,245,4,245,240,242,244,242,73,245,79,246,168,246,194,248,192,250,38,251,129,251,
121,251,61,250,138,249,221,249,71,250,212,250,219,250,121,250,132,251,228,252,118,252,189,251,199,251,147,251,180,251,160,252,
127,253,65,254,158,254,27,254,71,253,105,252,103,251,122,250,44,250,66,251,20,252,71,250,201,248,68,250,75,251,18,251,
27,252,136,252,206,251,243,252,56,254,25,253,190,251,238,250,198,250,68,253,207,255,201,253,13,250,57,250,222,252,136,253,
71,253,63,254,203,253,176,252,212,255,160,3,149,2,220,1,8,4,27,3,25,0,111,0,19,2,49,2,36,2,28,3,
216,4,135,4,56,1,156,0,99,4,131,6,9,6,40,6,111,6,48,7,197,8,214,8,253,8,30,11,7,11,163,8,
65,9,112,11,192,11,216,12,253,14,179,14,122,13,21,14,128,14,61,13,0,12,236,11,167,12,20,13,155,12,185,12,
253,13,7,14,68,12,96,11,102,12,142,13,110,13,89,12,229,10,28,9,56,8,200,9,144,11,153,10,211,8,147,8,
134,8,94,8,102,9,3,11,97,12,155,13,43,14,142,13,92,12,191,11,241,11,239,11,250,11,186,12,41,12,187,9,
206,8,108,10,134,12,129,13,166,11,86,8,78,8,97,10,247,9,95,9,55,11,193,11,199,9,94,8,215,7,181,7,
237,8,2,10,244,8,190,7,236,8,77,11,142,12,208,12,46,13,115,13,31,13,114,12,134,11,6,11,158,12,128,15,
234,15,177,13,81,13,208,15,67,17,33,16,212,14,88,15,31,17,74,17,203,14,224,13,49,17,91,20,87,20,47,20,
78,21,165,21,234,20,233,19,185,18,158,18,190,19,66,19,76,17,43,17,64,17,196,14,196,13,20,16,100,16,12,15,
214,16,57,18,129,15,197,13,202,14,38,14,104,12,25,12,255,10,202,8,161,8,138,9,234,8,164,8,157,9,134,8,
242,5,152,6,168,9,35,10,235,7,216,6,88,8,64,10,72,10,95,9,191,9,68,11,128,12,255,11,6,9,233,5,
59,5,45,6,110,7,215,7,88,6,234,5,228,8,181,10,34,8,210,4,203,3,21,4,128,4,116,5,161,6,182,5,
53,4,8,7,219,10,115,9,117,7,241,8,219,8,150,7,205,9,247,11,94,10,55,8,110,8,230,10,48,13,87,12,
100,9,49,7,235,6,56,9,184,11,199,10,231,8,50,10,219,12,106,13,143,11,59,10,149,12,217,15,225,14,211,11,
80,11,46,12,170,12,195,13,103,14,51,13,125,12,72,13,212,12,169,11,118,13,242,16,38,18,116,17,206,16,201,16,
180,17,223,17,36,16,203,15,190,17,148,17,17,15,247,14,152,17,240,18,216,17,113,16,8,16,117,16,101,17,231,17,
57,17,85,16,92,15,191,12,93,9,223,7,33,8,17,8,171,6,139,4,73,3,80,3,116,3,95,3,61,3,216,1,
146,254,252,251,110,252,74,253,1,252,148,251,96,252,112,249,173,244,39,244,109,245,167,244,45,244,217,244,162,245,162,246,
88,246,189,245,214,247,87,249,167,247,52,247,216,247,151,245,195,243,86,245,167,246,231,246,180,247,33,247,21,246,88,248,
27,251,98,250,214,249,198,251,254,251,236,249,79,249,68,250,213,250,170,249,197,246,109,246,90,250,241,251,189,248,195,246,
177,247,153,248,199,248,22,247,230,243,114,243,13,246,28,248,45,249,171,249,37,249,5,249,23,249,51,247,77,245,63,246,
34,247,5,245,21,243,127,244,53,247,0,248,83,246,34,244,201,243,127,244,181,243,125,242,69,243,162,244,105,244,168,243,
197,244,6,248,196,249,166,246,21,242,0,242,126,245,193,246,169,244,102,244,78,248,32,251,108,248,223,242,130,239,171,240,
32,244,35,245,149,243,178,242,2,242,19,241,16,242,137,243,149,242,119,240,221,239,169,241,232,243,14,244,204,243,162,244,
57,244,241,243,109,246,244,247,131,247,173,249,225,252,78,252,96,249,51,247,209,246,247,248,86,251,3,250,187,246,76,246,
226,247,186,247,39,246,158,244,98,243,194,243,40,244,23,242,152,241,40,244,144,244,80,244,233,245,184,243,51,240,26,243,
205,245,244,241,35,239,7,241,29,243,42,243,63,241,201,240,185,244,47,247,52,244,133,241,96,241,56,241,55,243,139,247,
56,248,70,245,63,245,101,247,133,246,247,244,152,245,182,245,152,246,138,249,46,249,88,246,45,246,171,245,218,244,232,247,
92,249,238,246,136,247,16,249,31,247,135,246,108,247,51,246,218,245,252,246,238,246,80,247,92,248,237,247,93,247,63,248,
114,249,177,249,115,249,59,250,236,250,214,249,189,249,54,252,57,253,140,250,194,247,160,248,213,250,254,249,207,248,180,249,
165,247,209,244,2,249,252,253,57,251,177,247,227,250,3,1,106,3,236,0,169,254,113,254,192,251,251,247,230,247,140,249,
242,250,218,251,7,251,193,251,88,255,243,0,252,0,100,1,230,255,118,255,119,2,225,3,227,2,100,2,253,1,218,1,
186,1,227,1,117,4,181,5,153,3,106,4,73,6,171,3,167,2,215,4,191,3,64,2,163,3,170,3,81,3,102,5,
169,6,175,5,131,5,141,7,100,8,242,4,30,2,101,4,212,6,43,6,221,4,88,3,84,2,199,2,95,3,187,4,
169,5,104,3,64,2,243,3,219,2,13,1,242,2,27,3,187,255,76,255,78,2,34,3,205,0,245,255,220,1,23,2,
196,0,3,1,27,0,99,254,143,0,186,2,121,0,1,254,135,253,222,253,221,253,59,251,79,249,42,252,36,254,100,252,
160,251,169,251,229,251,18,255,20,2,163,0,36,253,43,252,34,255,81,2,230,2,51,3,88,2,112,255,62,0,137,3,
146,2,59,1,195,2,54,2,187,0,31,2,61,4,220,4,173,2,110,255,148,0,0,4,20,4,31,3,14,3,130,2,
150,2,51,2,108,0,90,0,76,1,135,1,159,2,0,3,162,2,197,4,166,5,246,2,221,2,97,4,241,1,125,0,
23,4,110,6,89,5,67,6,72,9,35,10,101,9,210,8,233,6,86,4,149,3,249,4,127,8,250,9,141,3,119,252,
124,254,113,2,1,1,30,255,121,254,247,253,203,255,142,1,232,0,232,255,239,253,56,253,101,1,67,4,193,2,227,2,
14,3,202,0,140,2,210,6,132,5,68,1,11,0,82,1,251,3,127,7,177,9,55,9,45,7,57,6,151,7,93,9,
208,8,46,6,174,5,69,8,217,7,137,3,134,1,114,1,196,1,168,5,213,7,150,3,120,2,61,6,85,5,175,3,
37,7,105,7,223,3,31,5,237,6,227,2,205,255,234,1,151,2,118,255,136,255,6,5,0,8,174,4,114,1,148,1,
176,1,25,1,144,0,11,255,225,254,59,2,166,4,63,3,85,2,40,4,109,5,155,4,22,3,128,1,146,0,173,0,
19,0,134,254,55,254,20,255,160,255,26,0,124,0,59,0,245,255,93,0,242,1,238,3,104,3,90,0,43,254,66,253,
25,253,99,255,124,2,202,2,14,1,193,255,6,0,67,1,57,0,191,252,159,251,44,253,18,253,218,250,34,249,68,249,
95,250,138,250,92,250,20,251,212,251,151,253,56,0,193,255,24,254,73,255,31,255,249,252,147,254,139,1,11,2,44,2,
115,0,77,253,82,254,194,0,99,0,238,0,214,1,139,0,156,0,52,1,193,255,115,0,168,2,70,1,175,254,142,253,
155,252,121,253,136,255,51,254,185,250,208,249,10,251,225,251,105,252,122,252,62,250,210,246,37,246,55,248,21,250,73,251,
26,252,90,252,47,252,195,250,24,249,102,249,87,249,11,247,113,245,105,245,3,246,229,246,155,245,157,243,234,245,100,249,
20,249,12,248,134,248,3,249,220,249,73,250,191,248,169,246,92,245,149,245,97,248,62,252,67,254,194,253,9,252,25,250,
16,249,119,251,83,255,23,254,0,251,89,253,17,255,20,252,130,251,117,251,112,248,31,250,187,254,157,254,168,254,112,255,
92,251,196,248,131,251,188,252,163,251,56,251,123,251,94,252,136,251,253,249,109,252,95,254,8,252,168,251,77,253,43,253,
145,254,3,0,232,252,67,250,4,253,249,1,207,3,167,0,165,254,222,2,240,5,195,2,83,0,250,0,143,255,150,253,
17,0,179,3,252,2,61,1,40,2,123,1,83,255,52,1,254,3,237,3,5,5,194,6,119,6,160,6,36,5,107,255,
65,251,4,251,58,251,10,252,50,253,237,251,72,249,81,249,61,253,10,1,212,1,200,1,255,255,208,251,223,251,165,254,
65,251,2,247,178,249,138,253,103,254,233,253,50,252,49,251,95,251,245,251,179,254,198,254,71,249,23,249,200,255,72,1,
114,254,5,255,155,1,90,4,166,6,2,7,218,6,153,5,145,2,167,1,111,2,66,2,15,3,46,3,250,255,224,253,
135,255,64,2,59,3,122,0,214,252,57,253,223,255,160,1,20,3,7,4,169,3,150,1,191,255,76,3,162,9,254,9,
240,6,64,7,225,7,198,6,194,6,61,6,170,3,40,2,152,3,139,6,251,7,171,5,108,1,138,255,6,1,32,2,
63,1,179,1,107,2,129,255,156,253,104,0,92,1,171,254,29,254,96,255,150,254,67,253,31,255,82,2,30,1,67,254,
124,0,32,2,86,255,234,0,145,4,69,1,99,254,23,1,61,2,156,1,21,0,94,251,105,250,75,255,121,1,114,2,
18,6,115,6,251,3,223,3,75,3,179,1,121,3,60,6,128,5,124,3,54,3,199,2,240,0,212,0,76,2,196,0,
231,253,0,255,0,2,6,2,118,255,151,253,115,253,38,252,168,248,121,247,120,249,204,249,140,248,193,249,129,252,207,252,
117,250,253,249,202,252,207,252,139,248,240,247,232,252,194,255,77,254,127,253,248,253,105,253,180,254,189,2,66,3,174,1,
200,5,101,9,217,4,28,1,6,2,7,0,96,254,9,2,200,3,223,0,148,254,161,254,229,255,75,255,111,251,141,249,
81,251,119,252,243,252,148,253,51,253,74,253,86,253,52,251,195,248,118,247,155,247,181,249,73,250,184,247,14,246,196,246,
237,249,107,255,177,1,31,255,84,254,152,0,46,2,81,2,83,0,121,253,200,253,90,0,167,1,120,1,220,0,223,0,
203,0,171,254,101,253,64,255,115,255,146,254,28,3,141,7,91,3,40,255,100,3,56,7,223,5,4,6,14,6,91,2,
38,0,234,253,138,248,88,249,16,0,208,0,125,255,35,2,203,1,104,1,39,7,11,9,66,4,3,4,233,7,83,7,
80,2,209,254,141,0,230,2,142,255,121,251,31,252,251,252,230,252,129,255,33,2,13,1,131,254,77,254,15,0,223,255,
71,254,92,255,16,1,40,1,152,2,213,2,224,253,95,249,184,250,80,255,240,1,162,254,199,248,152,248,147,253,15,2,
243,4,73,4,130,255,215,253,113,2,204,6,241,6,29,5,215,3,15,4,213,4,33,5,177,5,185,5,171,3,39,2,
190,2,252,1,196,0,91,2,57,1,174,251,50,252,68,2,101,2,221,255,101,1,241,0,207,255,60,5,241,8,217,3,
203,255,65,2,95,4,92,2,71,255,87,254,42,255,190,255,86,0,111,1,204,2,63,5,225,6,90,5,88,4,254,5,
77,6,112,4,44,3,226,2,3,3,226,2,140,1,227,255,11,0,210,2,210,4,156,2,33,1,202,3,202,2,42,253,
157,252,31,0,176,1,45,4,86,6,1,4,152,2,125,3,161,0,148,253,112,255,148,1,107,2,199,2,150,254,213,250,
168,0,162,6,82,2,43,254,6,0,212,254,239,252,59,1,116,3,28,0,221,255,98,1,167,254,38,252,39,254,126,2,
255,5,102,5,178,1,63,0,19,2,242,3,66,3,234,0,34,2,54,6,148,5,186,2,104,4,224,4,43,0,255,253,
104,0,178,1,76,1,175,1,114,2,127,2,251,1,194,0,172,254,213,254,246,2,176,4,62,1,51,0,14,3,54,4,
140,4,222,4,3,3,86,3,132,7,172,8,74,6,40,5,135,3,102,0,254,0,192,5,137,7,37,4,120,1,155,1,
8,2,18,4,3,6,248,2,69,1,31,6,238,6,181,0,56,254,90,255,28,255,91,1,29,4,247,0,213,252,37,253,
13,254,165,254,13,2,170,4,35,2,17,0,207,2,230,2,165,253,110,252,156,0,186,2,47,3,63,4,209,3,115,3,
205,3,159,1,71,255,139,0,158,2,115,2,148,0,128,254,69,253,230,252,21,254,37,0,57,255,245,251,195,250,66,251,
235,252,79,0,197,1,8,1,191,0,200,253,41,250,27,254,241,4,11,4,250,253,251,250,84,252,217,253,155,252,161,250,
62,250,108,251,5,254,183,254,132,251,252,249,36,251,79,250,137,250,12,253,88,251,98,247,146,247,222,249,164,250,212,248,
95,246,73,248,190,251,96,250,114,248,140,249,158,249,209,248,62,248,212,245,107,243,3,243,201,244,62,249,207,250,171,245,
191,241,2,244,159,248,216,252,140,253,244,249,71,248,138,250,101,253,0,1,250,3,237,2,156,0,24,1,71,2,162,0,
127,254,72,0,243,2,16,2,200,0,26,255,123,249,12,246,129,248,153,248,21,244,9,240,206,236,227,234,120,235,140,236,
25,238,40,239,62,237,108,236,168,239,42,242,243,241,199,240,225,238,112,238,113,241,171,244,5,244,174,240,63,240,112,243,
91,244,14,243,250,244,128,248,75,248,237,243,105,240,130,242,234,244,175,241,145,240,3,244,28,243,133,241,250,243,78,242,
83,240,120,245,165,246,43,242,52,243,151,243,178,238,50,240,185,245,30,244,64,241,105,243,131,244,113,242,36,241,246,240,
23,241,180,242,118,244,254,243,58,244,129,246,210,244,65,240,78,241,248,244,36,245,179,246,84,249,100,246,141,243,28,247,
113,249,2,247,197,247,149,252,186,253,208,251,57,252,203,250,247,244,87,244,138,250,91,252,122,249,50,250,227,252,220,252,
164,250,161,247,226,246,208,249,127,251,207,249,69,249,85,251,162,252,149,252,244,253,9,0,13,0,133,0,163,2,50,1,
111,254,18,2,149,7,178,7,226,5,235,4,177,3,182,3,61,4,50,3,42,2,236,1,209,2,247,5,131,8,244,7,
99,6,49,5,59,5,68,7,212,8,102,9,66,11,232,12,24,13,86,13,242,11,7,9,222,9,63,13,56,13,92,13,
171,18,66,22,119,18,72,13,33,11,12,11,155,14,227,19,176,20,196,18,255,18,240,19,172,20,143,21,134,20,38,19,
235,19,121,20,121,20,232,20,16,19,210,15,122,15,132,17,110,19,221,19,213,17,135,15,140,15,85,16,104,16,241,16,
129,18,166,19,188,19,89,21,15,25,60,26,250,23,94,22,239,21,150,21,233,20,108,18,107,17,159,21,47,25,224,23,
250,21,136,20,172,18,24,19,173,20,34,20,214,18,169,18,13,19,76,18,35,15,254,11,96,11,139,11,191,11,213,12,
201,12,226,10,85,10,242,11,96,12,179,10,14,10,20,10,209,7,98,6,199,7,208,6,99,4,156,5,7,7,24,7,
107,9,77,10,221,7,116,7,209,7,74,6,104,6,168,7,169,7,213,7,224,7,108,8,18,10,9,8,69,3,111,3,
202,7,148,10,212,9,1,6,113,3,223,4,202,5,115,4,158,3,166,2,227,0,94,255,3,254,74,253,177,252,84,252,
109,254,211,254,157,249,139,247,145,252,84,254,105,250,231,248,164,249,166,247,188,245,91,248,177,251,22,251,20,250,42,250,
93,247,69,245,52,247,31,246,204,242,102,244,27,245,199,241,207,243,206,249,236,249,145,245,66,242,186,241,73,245,162,249,
126,248,71,243,3,241,199,241,250,239,130,238,184,242,51,244,1,238,220,236,230,243,233,246,197,244,27,243,65,241,218,240,
184,242,231,241,42,238,199,235,255,236,224,240,74,242,156,240,57,241,247,241,91,240,214,241,140,243,218,239,18,238,196,240,
225,240,144,240,48,243,34,244,85,244,35,247,200,247,42,244,89,242,199,244,212,246,78,246,26,246,128,246,169,245,176,245,
234,246,182,245,106,243,153,243,101,245,220,247,252,249,157,249,101,248,32,249,164,251,243,253,50,252,205,247,180,248,32,253,
218,252,147,251,154,254,118,0,22,254,244,250,168,248,250,247,66,249,62,250,27,250,210,250,169,252,168,252,38,250,86,249,
219,250,21,251,124,251,8,253,79,252,156,252,18,0,226,254,209,250,175,252,14,254,79,250,184,252,72,5,106,6,245,0,
206,255,166,2,100,2,227,254,82,253,205,254,34,0,252,255,238,254,50,254,104,255,180,0,211,255,170,255,8,1,45,1,
117,2,113,6,232,7,197,5,13,4,118,2,48,0,117,255,43,0,149,1,123,4,104,6,36,5,64,4,38,5,219,3,
17,1,6,1,112,2,56,3,216,3,28,2,240,254,244,255,155,2,80,1,109,0,230,2,59,4,145,4,221,5,249,5,
191,5,207,5,80,3,246,1,148,5,197,6,137,2,217,1,224,5,185,6,167,5,231,7,26,9,200,5,200,3,13,5,
130,4,190,2,196,3,205,4,170,2,46,1,168,3,111,6,129,4,134,255,213,253,195,0,135,3,177,3,116,2,38,0,
172,253,147,253,167,255,108,0,30,254,24,251,111,251,10,0,163,3,137,1,241,253,250,253,199,254,42,255,79,2,112,4,
88,2,159,2,250,5,90,5,214,2,22,3,115,3,204,3,104,5,51,5,84,4,7,6,18,7,170,5,176,4,44,4,
61,3,185,3,216,5,247,6,11,6,84,5,107,5,2,4,239,2,223,4,64,5,184,2,254,3,28,8,3,8,60,5,
151,3,164,1,225,255,156,0,193,2,49,4,219,3,69,2,2,2,205,3,231,4,95,4,130,4,46,5,120,4,254,4,
6,8,88,7,129,2,204,1,133,4,83,4,146,3,126,3,151,0,146,254,175,0,18,2,32,2,147,4,220,6,250,4,
75,1,10,1,121,4,35,6,255,3,143,1,100,0,204,0,53,3,193,4,153,4,231,4,157,3,109,0,98,0,179,2,
10,2,181,254,159,252,110,254,244,2,170,5,176,5,186,5,107,6,185,7,12,8,245,4,13,2,99,2,172,2,227,3,
118,7,70,6,182,255,6,253,129,255,108,2,84,4,48,3,122,255,160,254,42,1,6,3,102,3,173,2,240,0,10,0,
142,0,232,0,78,1,62,2,150,1,150,255,186,0,109,4,135,4,74,1,221,255,135,0,255,1,114,3,177,1,116,254,
134,255,146,2,173,2,224,1,77,1,101,255,252,254,211,1,96,3,208,0,25,254,221,254,76,0,140,255,43,255,251,255,
57,0,180,1,113,3,132,1,29,0,42,2,241,0,56,253,154,254,67,1,114,255,191,253,65,255,88,1,67,2,207,0,
207,253,240,252,195,254,209,0,247,1,254,1,147,0,11,254,189,252,154,254,38,0,152,254,213,254,223,2,202,4,160,2,
177,255,164,253,122,253,180,254,83,255,88,0,222,1,75,1,45,0,143,0,174,255,144,253,173,253,27,255,206,254,247,252,
203,251,201,252,127,254,50,254,182,252,53,253,174,255,90,1,80,1,224,0,132,0,93,0,222,0,151,0,96,255,78,0,
35,2,7,1,155,255,230,255,241,253,104,250,44,250,20,253,253,255,21,0,89,253,237,252,8,0,249,0,149,254,255,251,
251,249,185,249,192,251,28,254,17,0,145,0,60,255,120,255,1,1,110,0,176,255,153,255,181,253,38,253,218,255,251,0,
232,255,201,255,219,255,223,255,103,1,140,3,244,4,90,5,124,4,131,3,96,4,253,5,64,4,77,255,142,253,31,0,
75,1,128,1,35,3,137,1,44,253,249,252,160,254,144,252,93,250,97,251,100,252,127,251,206,250,196,251,199,252,166,252,
30,253,59,254,173,253,166,252,239,253,58,0,97,0,53,254,48,253,80,255,135,1,59,2,140,3,191,4,97,4,215,3,
192,2,205,0,228,255,98,255,123,255,117,2,112,4,64,1,82,253,252,252,249,254,208,0,149,0,136,255,73,0,247,0,
29,0,153,255,72,254,116,251,143,250,12,252,144,253,110,254,118,253,236,250,23,250,152,251,34,253,104,253,129,252,191,251,
71,251,106,249,110,247,215,247,150,249,251,250,83,251,79,250,13,250,129,251,143,252,179,253,137,255,150,255,104,255,183,1,
109,2,151,255,45,254,13,255,95,254,104,252,231,251,232,252,19,254,248,254,156,255,195,255,244,255,37,1,156,2,71,3,
125,3,71,3,219,2,60,3,218,3,31,4,1,5,24,6,209,6,228,7,68,8,90,7,185,6,139,5,86,3,15,3,
144,4,27,5,25,5,196,4,114,3,41,3,143,4,181,4,81,2,23,0,216,0,96,2,21,1,19,0,162,2,144,4,
54,3,214,0,155,254,30,254,57,255,24,254,225,251,102,251,93,250,120,250,195,253,181,253,21,250,171,250,6,253,161,251,
166,249,192,248,195,247,123,248,88,250,183,250,42,250,59,250,249,250,25,251,53,250,166,250,142,252,89,253,151,253,247,253,
72,253,16,253,240,253,34,254,159,254,207,255,12,0,131,0,170,1,126,1,108,0,219,255,111,0,136,2,248,3,162,3,
176,3,180,3,143,2,105,2,50,3,133,2,166,0,129,255,34,0,3,1,33,0,117,255,46,0,139,255,149,253,36,252,
116,251,27,253,19,0,106,0,26,255,191,253,255,251,112,253,109,1,99,1,76,255,63,0,35,1,33,0,36,255,138,253,
61,252,45,253,204,254,239,255,138,0,179,0,73,2,178,4,179,4,59,3,220,2,28,3,172,3,229,4,198,5,99,5,
243,3,134,2,7,2,81,2,195,2,107,2,214,0,26,255,41,254,132,254,83,0,2,1,244,254,62,253,87,253,171,253,
190,254,84,0,51,0,207,254,113,253,243,251,191,250,205,249,197,248,80,248,83,248,102,248,56,248,122,246,89,244,191,244,
221,245,111,244,147,242,137,243,154,245,168,245,46,245,139,246,35,247,142,245,77,245,87,246,122,246,41,248,89,251,190,251,
14,250,18,250,100,252,37,255,153,255,13,254,209,253,95,254,7,254,216,254,207,0,87,1,218,0,108,0,137,255,87,254,
22,254,145,255,25,1,143,0,0,255,118,253,52,252,54,253,24,255,89,254,26,253,61,253,150,252,5,252,114,252,53,252,
13,253,183,255,92,0,136,254,174,253,83,255,75,1,8,0,144,253,111,254,57,255,129,252,175,250,190,250,211,249,137,249,
199,250,21,252,18,253,178,251,92,248,59,248,18,251,211,251,108,250,184,249,208,249,145,249,179,249,12,251,93,251,21,250,
101,250,219,250,162,248,180,247,169,249,0,251,206,251,131,251,21,249,34,249,146,251,181,251,209,252,231,255,63,255,138,254,
170,2,76,4,252,0,88,0,103,2,28,2,146,1,89,3,90,4,58,3,0,2,137,0,216,254,80,255,21,1,213,1,
207,2,99,3,224,1,215,1,209,3,253,2,25,1,220,1,218,1,14,0,45,0,21,1,26,0,16,255,113,255,150,255,
144,254,0,254,233,254,133,255,175,254,104,253,133,252,253,252,167,254,250,254,77,254,86,255,180,0,18,1,107,2,61,3,
41,1,81,0,179,3,190,6,44,6,171,4,50,4,22,4,45,4,224,3,108,2,34,1,234,0,85,1,183,2,135,3,
240,1,147,0,24,0,189,253,154,252,64,255,9,0,243,253,97,254,230,255,20,255,70,254,66,254,86,253,8,253,150,254,
253,255,120,0,133,1,154,2,246,1,8,1,20,1,228,0,89,2,108,6,62,7,163,3,61,2,23,4,37,6,12,8,
136,7,227,3,89,2,219,4,134,7,211,7,162,6,70,6,125,6,212,4,95,3,250,4,97,6,46,5,36,4,13,5,
215,6,146,7,152,6,108,5,174,4,127,4,153,5,130,5,248,1,172,254,99,255,151,2,240,3,156,1,202,255,150,0,
244,255,46,255,99,1,72,1,206,254,198,0,107,3,153,1,249,255,158,255,51,254,34,254,13,255,1,255,70,0,31,2,
134,1,203,0,160,2,187,4,59,4,92,2,237,1,114,2,175,2,98,3,171,3,236,2,236,2,74,3,74,3,70,3,
192,1,159,0,205,2,120,3,20,1,53,1,197,1,102,255,53,255,211,1,224,2,101,3,142,4,187,4,206,3,179,2,
243,2,237,3,50,3,5,3,190,4,138,4,150,3,172,4,133,4,82,3,104,4,135,5,224,4,212,3,238,2,112,3,
3,5,90,5,38,5,242,4,24,4,114,4,77,6,131,7,60,7,91,5,67,4,205,5,43,6,192,4,38,5,109,5,
131,4,27,5,35,5,45,4,166,5,74,7,73,7,199,7,92,7,112,6,180,7,1,8,203,5,199,4,95,5,234,5,
104,5,133,3,19,3,158,4,69,5,181,5,162,5,212,2,165,0,34,1,123,1,151,1,235,0,144,254,36,254,154,255,
194,255,78,0,215,0,47,255,148,254,121,255,31,255,191,255,150,1,31,1,95,255,214,254,35,255,12,255,2,254,212,253,
247,254,167,254,248,253,177,254,227,253,189,252,117,254,104,255,58,254,175,254,220,255,122,255,238,254,30,255,120,255,189,254,
64,253,222,253,137,255,58,255,250,254,126,255,238,254,149,255,87,1,142,0,49,255,129,255,95,255,23,255,107,255,39,255,
13,255,139,254,69,252,102,251,3,253,35,253,194,251,145,252,88,255,135,0,193,254,48,253,86,254,170,255,109,255,136,255,
245,255,86,255,156,254,113,254,41,254,174,253,118,253,26,254,28,255,153,254,199,252,21,252,227,252,208,253,176,254,161,255,
174,255,197,254,101,254,152,254,126,253,197,251,92,252,152,254,135,254,91,251,218,248,42,250,37,253,105,253,144,251,148,251,
1,253,219,252,113,252,28,254,78,0,27,1,208,0,42,0,8,0,57,0,107,255,221,254,128,255,2,254,167,250,120,250,
254,251,240,250,18,250,67,251,72,251,133,250,100,251,135,252,204,252,35,253,239,253,131,254,134,253,159,251,169,251,65,253,
125,253,140,252,153,252,243,253,170,254,227,253,115,254,74,1,182,2,152,2,244,3,6,5,182,3,201,1,17,0,11,255,
155,255,9,0,187,255,77,0,197,0,87,0,177,0,98,1,199,0,180,255,135,255,254,255,49,0,62,0,92,0,31,255,
239,252,234,252,149,254,29,255,64,255,14,0,118,0,247,255,155,254,84,253,213,252,106,251,216,249,231,250,47,252,240,251,
36,253,34,254,24,252,45,251,82,253,242,254,56,255,172,254,100,253,149,253,7,255,248,254,109,254,16,255,70,255,189,254,
236,254,27,255,249,253,255,252,59,254,61,0,159,0,150,0,173,1,71,2,140,1,22,1,182,1,133,2,39,2,232,0,
213,0,196,1,238,1,54,2,241,2,188,1,77,255,239,254,16,0,243,255,131,254,130,253,199,253,23,254,59,253,222,252,
123,254,208,255,9,255,224,253,179,253,214,253,46,254,247,254,110,255,63,255,9,255,250,254,72,255,128,0,153,1,235,0,
145,255,138,255,35,0,175,0,1,2,189,2,117,1,184,0,234,1,72,2,5,1,48,0,50,0,146,0,10,1,250,0,
209,0,6,1,15,1,131,1,84,2,208,1,28,1,32,2,216,2,171,1,188,255,20,254,95,254,199,0,177,1,60,0,
88,255,73,255,27,255,141,255,126,0,72,1,164,1,30,1,18,1,54,2,254,1,138,0,6,1,82,2,243,1,160,1,
55,2,140,1,213,255,66,255,122,255,15,255,121,254,29,254,108,253,19,253,143,253,170,253,128,253,165,253,26,253,208,252,
221,253,144,253,233,251,128,252,242,253,176,253,188,253,230,253,68,252,91,251,119,252,212,252,65,252,174,252,229,253,203,254,
8,255,194,254,200,253,60,252,49,252,19,254,158,254,200,253,225,254,182,0,101,0,72,255,225,254,152,254,86,254,72,254,
147,254,42,255,32,255,140,254,87,254,239,253,68,253,105,253,195,253,50,253,33,252,90,251,100,251,16,252,86,252,17,252,
237,251,249,251,205,251,54,251,205,250,65,251,200,251,219,251,225,251,68,251,214,250,133,252,2,254,14,253,172,252,188,253,
161,253,43,253,56,253,41,252,119,251,38,253,242,254,237,254,74,254,103,254,12,255,13,255,97,254,10,254,209,253,146,253,
230,253,89,254,226,254,131,255,1,255,189,254,126,0,30,1,174,255,24,0,186,1,188,1,239,1,150,2,245,0,95,254,
185,253,48,254,128,254,198,255,73,2,119,3,115,2,28,2,220,2,117,2,54,2,53,3,238,2,213,1,65,2,163,2,
41,2,201,2,66,4,104,5,203,6,86,8,6,9,211,8,188,8,64,9,79,9,2,8,72,6,214,5,138,7,74,9,
247,7,141,5,135,5,217,5,127,4,7,3,168,1,25,1,179,2,178,3,3,3,169,3,203,4,208,4,102,5,21,5,
248,2,42,3,26,5,245,4,233,4,86,6,72,6,118,5,88,5,222,3,231,1,71,2,94,3,21,3,97,2,229,1,
111,2,71,5,200,7,125,6,65,4,246,4,54,6,254,4,150,2,95,0,51,255,130,0,197,2,27,3,137,2,241,2,
52,3,119,2,177,1,38,1,24,0,124,254,77,253,134,253,190,254,93,255,183,254,204,253,97,253,59,253,157,253,194,254,
125,255,84,255,78,255,106,255,39,255,82,255,230,255,244,255,83,0,192,1,107,2,93,1,69,0,224,255,81,255,253,254,
126,255,218,255,251,255,206,0,112,1,249,0,82,0,194,255,50,255,95,255,158,255,248,254,132,254,234,254,118,255,219,255,
217,255,181,255,53,0,135,0,250,255,181,255,222,255,180,255,192,255,42,0,67,0,3,0,170,255,151,255,20,0,113,0,
14,0,75,255,237,254,92,255,153,255,245,254,39,255,169,0,20,1,245,255,33,255,91,255,114,0,55,1,145,0,29,0,
8,1,93,1,70,0,99,255,165,255,12,1,36,3,108,4,225,3,149,2,18,2,190,1,69,0,183,254,84,254,61,254,
63,254,179,254,126,254,249,253,118,254,178,254,221,253,103,253,132,253,184,253,93,254,43,255,141,255,41,255,101,254,11,255,
222,0,34,1,47,0,29,0,220,255,109,254,136,253,94,254,8,0,144,0,122,255,245,254,184,255,218,255,116,255,179,255,
146,255,183,254,178,254,127,255,82,255,199,253,172,252,101,253,10,255,24,0,0,0,5,255,116,254,27,255,175,255,45,255,
113,254,142,254,230,255,133,1,169,1,189,0,61,0,190,255,64,255,186,255,209,255,98,254,90,253,83,253,198,252,207,252,
11,255,253,0,176,0,133,0,168,1,82,2,207,2,17,4,39,4,59,2,148,0,78,0,116,0,91,0,0,0,136,255,
230,254,82,254,118,254,1,255,60,255,71,255,176,254,187,253,137,254,159,0,78,1,11,1,47,1,18,1,116,0,95,255,
24,254,244,253,31,254,67,253,91,253,107,254,189,253,207,252,207,253,150,254,36,254,216,253,181,253,202,253,82,254,83,254,
209,253,172,253,217,253,133,254,187,255,7,0,150,254,40,253,151,253,160,254,91,254,14,254,152,254,125,254,184,254,183,0,
212,1,21,1,247,0,63,1,185,0,68,0,180,255,215,254,204,254,28,255,254,254,186,254,64,254,108,254,190,255,50,0,
92,255,226,254,143,254,92,254,9,255,124,255,113,255,27,0,197,0,103,0,78,255,40,254,77,254,172,255,70,0,38,0,
50,0,184,255,65,255,192,255,113,0,26,1,70,1,16,0,64,255,44,0,13,1,82,1,157,1,112,1,13,1,233,0,
10,1,9,2,188,2,7,2,51,2,120,3,54,3,179,2,189,3,59,4,95,3,151,2,59,2,232,1,180,0,248,254,
12,255,35,0,195,255,168,255,235,0,13,1,3,0,122,255,66,255,85,255,97,255,159,254,105,254,58,255,55,255,141,254,
39,254,17,253,226,251,54,252,61,253,225,253,60,254,237,253,40,253,45,253,224,253,54,254,99,254,215,254,218,254,83,254,
66,254,112,254,24,254,228,253,28,254,33,254,126,254,39,255,126,254,252,252,188,252,166,253,134,254,0,255,217,254,52,254,
9,254,238,254,42,0,10,0,102,254,137,253,65,254,217,254,45,255,239,255,209,255,162,254,116,254,68,255,137,255,193,255,
147,0,253,0,223,0,11,1,255,0,33,0,255,254,248,253,167,253,229,254,49,0,162,255,189,254,46,255,175,255,148,255,
151,255,117,255,77,255,169,255,151,255,248,254,52,255,233,255,36,0,122,0,127,0,107,255,183,254,54,255,133,255,106,255,
128,255,9,255,4,254,240,253,52,255,222,0,246,1,215,1,9,1,233,0,155,1,36,2,8,2,102,1,209,0,31,1,
14,2,91,2,175,1,205,0,57,0,25,0,93,0,87,0,164,255,90,255,87,0,101,1,64,1,170,0,246,0,21,2,
199,2,76,2,195,1,83,2,236,2,180,2,137,2,94,2,237,1,117,2,94,3,150,2,46,1,254,0,51,1,58,1,
139,1,200,1,233,1,37,2,14,2,196,1,88,1,144,0,97,0,202,0,122,0,93,0,54,1,18,1,9,0,31,0,
193,0,12,1,117,1,177,1,228,1,93,2,15,2,84,1,105,1,120,1,103,1,35,2,74,2,86,1,65,1,220,1,
197,1,172,1,210,1,104,1,194,0,73,0,13,0,113,0,28,1,117,1,219,1,14,2,52,1,49,0,95,0,248,0,
240,0,223,0,255,0,214,0,33,1,207,1,53,1,33,0,138,0,25,1,146,0,97,0,119,0,251,255,251,255,211,0,
165,1,245,1,25,1,209,255,8,0,211,0,214,0,107,1,89,2,176,1,111,0,98,0,222,0,169,0,196,255,86,255,
35,0,227,0,121,0,217,255,169,255,125,255,89,255,149,255,217,255,66,255,115,254,85,255,172,0,221,255,211,254,163,255,
236,255,253,254,165,254,100,254,38,254,205,254,191,254,250,253,206,254,255,255,130,255,204,254,200,254,194,254,174,254,81,254,
126,253,145,252,171,251,196,251,67,253,30,254,153,253,23,253,151,252,120,252,207,253,222,254,21,254,5,253,128,252,50,252,
186,252,189,253,50,254,55,254,222,253,87,253,67,253,31,253,180,252,185,252,74,252,21,251,19,251,236,251,154,251,56,251,
21,252,215,252,248,252,40,253,59,253,8,253,172,252,86,252,135,252,151,252,10,252,169,252,71,254,9,254,204,252,75,253,
4,254,76,253,239,252,170,253,32,254,219,253,111,253,202,253,241,254,86,255,173,254,131,254,68,255,84,0,75,1,113,1,
190,0,27,0,13,0,236,0,37,2,251,1,225,0,208,0,32,1,182,0,181,0,70,1,66,1,12,1,105,1,230,1,
225,1,71,1,222,0,59,1,145,1,84,1,12,1,152,0,21,0,198,0,53,2,137,2,41,2,37,2,205,1,128,1,
151,2,104,3,224,1,249,255,194,255,18,0,83,0,24,1,104,1,183,0,63,0,136,0,51,1,224,1,220,1,68,1,
9,1,252,0,148,0,68,0,99,0,169,0,177,0,108,0,117,0,211,0,185,0,127,0,245,0,177,1,30,2,2,2,
98,1,29,1,123,1,225,1,124,2,193,2,128,1,50,0,32,0,114,255,71,254,24,255,243,0,59,1,44,0,79,255,
78,255,228,255,14,0,149,255,148,255,170,0,10,2,101,2,192,1,113,1,172,1,167,1,135,1,22,1,178,255,151,254,
17,255,34,0,173,0,186,0,107,0,36,0,69,0,125,0,126,0,141,0,239,0,70,1,46,1,67,1,223,1,33,2,
251,1,21,2,181,1,188,0,163,0,42,1,236,0,72,0,222,255,130,255,183,255,160,0,26,1,193,0,102,0,54,0,
221,255,226,255,187,0,108,1,47,1,182,0,136,0,134,0,155,0,49,0,80,255,72,255,231,255,225,255,211,255,120,0,
205,0,88,0,144,255,204,254,122,254,148,254,178,254,233,254,22,255,243,254,187,254,160,254,25,255,30,0,33,0,98,255,
211,255,42,0,15,255,4,255,48,0,212,255,25,255,239,255,79,0,60,255,182,254,111,255,43,0,3,0,163,255,60,0,
2,1,173,0,59,0,132,0,166,0,105,0,33,0,208,255,26,0,248,0,12,1,125,0,166,0,249,0,57,0,110,255,
19,0,19,1,244,0,197,0,80,1,27,1,254,255,153,255,176,255,74,255,23,255,81,255,101,255,201,255,170,0,21,1,
219,0,154,0,141,0,198,0,23,1,235,0,76,0,232,255,221,255,156,255,27,255,31,255,184,255,152,255,130,254,77,254,
125,255,56,0,230,255,177,255,194,255,177,255,199,255,201,255,80,255,242,254,50,255,172,255,254,255,60,0,159,0,250,0,
233,0,165,0,79,0,174,255,98,255,177,255,153,255,104,255,226,255,239,255,150,255,12,0,5,0,232,254,204,254,136,255,
151,255,193,255,242,255,38,255,175,254,76,255,164,255,122,255,79,255,75,255,208,255,38,0,138,255,56,255,130,255,75,255,
50,255,230,255,88,0,103,0,200,0,28,1,247,0,157,0,119,0,209,0,57,1,17,1,167,0,81,0,14,0,78,0,
210,0,107,0,80,255,45,255,38,0,170,0,139,0,12,1,176,1,244,0,210,255,7,0,161,0,76,0,214,255,199,255,
110,255,69,255,73,0,61,1,142,0,159,255,8,0,97,0,159,255,73,255,206,255,214,255,85,255,49,255,105,255,140,255,
150,255,208,255,6,0,170,255,74,255,132,255,88,255,185,254,47,255,248,255,72,255,80,254,177,254,102,255,100,255,28,255,
193,254,38,254,196,253,69,254,64,255,123,255,161,254,169,253,156,253,162,254,206,255,20,0,169,255,69,255,43,255,157,255,
66,0,23,0,126,255,102,255,57,255,203,254,52,255,34,0,93,0,11,0,158,255,31,255,40,255,201,255,3,0,187,255,
169,255,193,255,225,255,49,0,97,0,105,0,162,0,141,0,251,255,217,255,21,0,241,255,206,255,243,255,74,0,17,1,
66,1,20,0,160,255,169,0,186,0,188,255,214,255,152,0,206,0,187,0,101,0,254,255,51,0,92,0,172,255,248,254,
80,255,162,0,193,1,143,1,148,0,22,0,50,0,75,0,0,0,151,255,229,255,219,0,95,1,34,1,224,0,0,1,
250,0,87,0,255,255,144,0,196,0,141,0,98,1,22,2,41,1,97,0,135,0,110,0,209,0,207,1,164,1,239,0,
219,0,91,0,221,255,151,0,234,0,250,255,147,255,3,0,24,0,230,255,209,255,148,255,34,255,207,254,254,254,166,255,
35,0,60,0,47,0,215,255,99,255,126,255,9,0,112,0,137,0,40,0,145,255,141,255,213,255,208,255,51,0,223,0,
78,0,15,255,245,254,148,255,210,255,209,255,159,255,149,255,43,0,98,0,0,0,127,0,62,1,200,0,150,0,138,1,
204,1,47,1,31,1,74,1,58,1,135,1,198,1,55,1,95,0,212,255,163,255,234,255,55,0,228,255,135,255,252,255,
161,0,142,0,40,0,48,0,165,0,22,1,40,1,230,0,132,0,24,0,3,0,117,0,152,0,14,0,182,255,180,255,
155,255,228,255,144,0,210,0,198,0,195,0,126,0,52,0,84,0,127,0,121,0,119,0,151,0,231,0,34,1,200,0,
20,0,218,255,110,0,19,1,193,0,197,255,80,255,112,255,159,255,245,255,92,0,149,0,205,0,203,0,99,0,70,0,
153,0,179,0,133,0,59,0,194,255,107,255,123,255,181,255,248,255,82,0,152,0,129,0,15,0,166,255,150,255,216,255,
80,0,115,0,157,255,146,254,185,254,196,255,96,0,66,0,253,255,224,255,192,255,163,255,245,255,87,0,221,255,68,255,
232,255,212,0,159,0,52,0,119,0,145,0,117,0,238,0,68,1,120,0,89,255,15,255,181,255,197,0,109,1,115,1,
116,1,82,1,152,0,40,0,152,0,246,0,236,0,233,0,201,0,165,0,158,0,38,0,174,255,62,0,238,0,164,0,
116,0,8,1,243,0,193,255,55,255,238,255,72,0,186,255,118,255,182,255,234,255,18,0,248,255,133,255,123,255,233,255,
22,0,243,255,209,255,7,0,139,0,125,0,13,0,102,0,153,0,173,255,128,255,162,0,236,0,9,0,119,255,135,255,
193,255,177,255,36,255,141,254,73,254,114,254,2,255,87,255,100,255,208,255,11,0,127,255,27,255,43,255,73,255,210,255,
105,0,75,0,10,0,249,255,182,255,168,255,222,255,152,255,249,254,220,254,130,255,71,0,120,0,75,0,2,0,108,255,
61,255,173,255,93,255,131,254,161,254,33,255,68,255,148,255,152,255,2,255,195,254,196,254,191,254,31,255,30,255,129,254,
179,254,76,255,196,254,249,253,59,254,213,254,241,254,0,255,118,255,162,255,19,255,185,254,222,254,215,254,41,255,252,255,
6,0,158,255,12,0,142,0,81,0,243,255,224,255,59,0,172,0,106,0,5,0,84,0,145,0,149,0,23,1,104,1,
248,0,168,0,205,0,228,0,210,0,253,0,162,1,25,2,184,1,45,1,231,0,85,0,215,255,231,255,204,255,169,255,
65,0,117,0,49,255,32,254,212,254,242,255,2,0,246,255,103,0,82,0,254,255,63,0,12,0,61,255,103,255,8,0,
193,255,111,255,173,255,201,255,223,255,16,0,20,0,60,0,71,0,183,255,127,255,10,0,73,0,8,0,204,255,170,255,
250,255,168,0,181,0,52,0,46,0,139,0,153,0,104,0,21,0,165,255,179,255,89,0,122,0,210,255,115,255,168,255,
33,0,246,0,118,1,203,0,218,255,141,255,137,255,210,255,107,0,153,0,122,0,133,0,57,0,210,255,63,0,218,0,
175,0,83,0,54,0,226,255,161,255,8,0,112,0,20,0,127,255,92,255,128,255,205,255,78,0,219,0,86,1,83,1,
121,0,191,255,245,255,57,0,2,0,234,255,2,0,23,0,82,0,116,0,73,0,20,0,254,255,40,0,108,0,68,0,
242,255,18,0,73,0,32,0,202,255,157,255,194,255,212,255,157,255,185,255,7,0,220,255,239,255,112,0,48,0,170,255,
4,0,111,0,88,0,43,0,201,255,136,255,195,255,175,255,156,255,85,0,126,0,182,255,245,255,237,0,153,0,137,255,
70,255,190,255,90,0,160,0,98,0,109,0,26,1,137,1,143,1,174,1,135,1,38,1,166,1,164,2,119,2,81,1,
153,0,110,0,49,0,213,255,207,255,117,0,241,0,123,0,53,0,190,0,150,0,176,255,149,255,220,255,192,255,250,255,
81,0,9,0,224,255,251,255,160,255,132,255,40,0,105,0,10,0,19,0,153,0,243,0,219,0,149,0,250,0,5,2,
87,2,215,1,141,1,219,0,166,255,213,255,216,0,110,0,9,0,42,1,105,1,77,0,60,0,123,0,111,255,172,254,
29,255,143,255,169,255,151,255,99,255,129,255,181,255,128,255,97,255,107,255,49,255,67,255,254,255,158,0,174,0,122,0,
87,0,82,0,74,0,84,0,84,0,218,255,38,255,209,254,223,254,78,255,233,255,221,255,100,255,135,255,204,255,99,255,
43,255,187,255,31,0,9,0,54,0,113,0,29,0,224,255,45,0,54,0,245,255,18,0,20,0,175,255,127,255,84,255,
251,254,24,255,134,255,211,255,10,0,205,255,94,255,124,255,82,255,169,254,235,254,115,255,244,254,160,254,196,254,46,254,
151,253,208,253,19,254,87,254,172,254,111,254,67,254,3,255,216,255,237,255,169,255,190,255,35,0,53,0,11,0,26,0,
208,255,65,255,167,255,115,0,56,0,187,255,26,0,148,0,83,0,225,255,250,255,37,0,176,255,110,255,247,255,6,0,
56,255,222,254,46,255,115,255,125,255,73,255,62,255,153,255,130,255,254,254,243,254,4,255,217,254,255,254,2,255,140,254,
151,254,40,255,75,255,8,255,194,254,144,254,176,254,228,254,146,254,225,253,138,253,234,253,129,254,175,254,189,254,252,254,
16,255,41,255,156,255,195,255,96,255,33,255,38,255,50,255,60,255,41,255,51,255,143,255,171,255,104,255,129,255,229,255,
254,255,250,255,14,0,19,0,34,0,69,0,67,0,20,0,191,255,99,255,120,255,217,255,169,255,27,255,72,255,252,255,
21,0,156,255,67,255,17,255,249,254,66,255,218,255,76,0,82,0,30,0,12,0,242,255,127,255,29,255,57,255,114,255,
127,255,163,255,245,255,45,0,246,255,115,255,79,255,103,255,252,254,177,254,74,255,131,255,167,254,24,254,95,254,206,254,
94,255,173,255,38,255,208,254,89,255,112,255,200,254,192,254,74,255,80,255,28,255,106,255,225,255,23,0,54,0,39,0,
211,255,204,255,31,0,216,255,42,255,99,255,30,0,32,0,250,255,35,0,187,255,59,255,207,255,98,0,219,255,109,255,
205,255,13,0,210,255,117,255,19,255,22,255,179,255,41,0,6,0,183,255,135,255,150,255,24,0,132,0,73,0,22,0,
101,0,112,0,45,0,129,0,19,1,30,1,29,1,70,1,0,1,133,0,113,0,130,0,105,0,75,0,55,0,76,0,
139,0,117,0,229,255,147,255,221,255,58,0,73,0,29,0,159,255,232,254,150,254,203,254,253,254,11,255,53,255,80,255,
39,255,7,255,77,255,207,255,8,0,203,255,120,255,84,255,56,255,244,254,167,254,226,254,200,255,79,0,231,255,149,255,
208,255,205,255,117,255,86,255,111,255,142,255,163,255,165,255,212,255,49,0,81,0,17,0,164,255,99,255,161,255,224,255,
121,255,4,255,71,255,212,255,238,255,171,255,149,255,216,255,81,0,235,0,29,1,73,0,114,255,188,255,19,0,147,255,
51,255,67,255,85,255,190,255,78,0,100,0,63,0,15,0,178,255,128,255,140,255,184,255,19,0,32,0,210,255,246,255,
73,0,44,0,43,0,76,0,0,0,212,255,29,0,64,0,81,0,186,0,79,1,159,1,22,1,226,255,65,255,127,255,
199,255,224,255,195,255,71,255,55,255,21,0,188,0,124,0,35,0,3,0,178,255,146,255,25,0,159,0,150,0,96,0,
102,0,185,0,35,1,21,1,166,0,162,0,230,0,190,0,92,0,17,0,232,255,37,0,135,0,144,0,156,0,211,0,
225,0,6,1,44,1,178,0,48,0,138,0,72,1,189,1,187,1,245,0,151,255,154,254,219,254,22,0,224,0,220,0,
112,1,91,2,200,1,124,0,27,0,161,255,219,254,161,255,15,1,222,0,255,255,203,255,144,255,142,255,89,0,138,0,
147,255,249,254,68,255,214,255,102,0,151,0,83,0,22,0,252,255,48,0,4,1,171,1,111,1,22,1,44,1,95,1,
171,1,205,1,90,1,236,0,4,1,2,1,159,0,120,0,181,0,229,0,216,0,164,0,110,0,109,0,128,0,52,0,
193,255,183,255,198,255,163,255,216,255,62,0,86,0,155,0,11,1,245,0,203,0,233,0,164,0,75,0,163,0,28,1,
25,1,233,0,9,1,169,1,59,2,34,2,198,1,170,1,220,1,116,2,197,2,22,2,85,1,110,1,241,1,100,2,
124,2,81,2,137,2,91,2,173,0,251,254,192,254,62,255,222,255,70,0,172,255,235,254,110,255,157,0,54,1,229,0,
56,0,36,0,121,0,94,0,64,0,49,0,47,255,12,254,79,254,59,255,187,255,227,255,147,255,40,255,161,255,99,0,
39,0,105,255,12,255,227,254,26,255,246,255,106,0,222,255,118,255,158,255,150,255,154,255,242,255,227,255,176,255,12,0,
19,0,70,255,243,254,150,255,42,0,76,0,89,0,70,0,245,255,204,255,5,0,48,0,17,0,234,255,190,255,177,255,
13,0,72,0,243,255,190,255,12,0,148,0,56,1,129,1,47,1,236,0,179,0,20,0,197,255,12,0,42,0,76,0,
183,0,181,0,97,0,79,0,19,0,200,255,114,0,125,1,99,1,180,0,232,0,96,1,17,1,232,0,90,1,84,1,
237,0,211,0,108,0,224,255,44,0,168,0,132,0,76,0,39,0,225,255,209,255,213,255,172,255,195,255,52,0,151,0,
183,0,172,0,202,0,253,0,213,0,141,0,120,0,72,0,4,0,221,255,203,255,44,0,186,0,144,0,39,0,66,0,
141,0,67,1,39,2,98,1,41,255,49,254,42,255,109,0,176,0,174,255,93,254,46,254,3,255,137,255,66,255,217,254,
243,254,73,255,85,255,67,255,84,255,116,255,153,255,147,255,93,255,134,255,3,0,22,0,184,255,124,255,179,255,39,0,
73,0,19,0,1,0,250,255,16,0,173,0,16,1,165,0,128,0,224,0,217,0,198,0,54,1,135,1,116,1,72,1,
224,0,115,0,152,0,21,1,251,0,59,0,29,0,248,0,48,1,70,0,187,255,215,255,196,255,227,255,109,0,176,0,
176,0,162,0,85,0,49,0,96,0,44,0,189,255,212,255,36,0,44,0,13,0,206,255,119,255,73,255,75,255,112,255,
192,255,21,0,77,0,87,0,8,0,161,255,181,255,36,0,62,0,239,255,200,255,29,0,116,0,28,0,123,255,135,255,
233,255,185,255,113,255,187,255,9,0,244,255,210,255,176,255,138,255,163,255,207,255,187,255,171,255,214,255,228,255,154,255,
58,255,17,255,9,255,8,255,76,255,232,255,102,0,86,0,206,255,72,255,32,255,37,255,14,255,19,255,83,255,117,255,
104,255,113,255,143,255,182,255,225,255,225,255,181,255,161,255,140,255,68,255,25,255,110,255,0,0,30,0,159,255,82,255,
201,255,69,0,11,0,189,255,243,255,30,0,250,255,31,0,126,0,109,0,19,0,238,255,192,255,94,255,86,255,207,255,
24,0,0,0,21,0,102,0,122,0,86,0,44,0,231,255,183,255,230,255,32,0,7,0,199,255,145,255,91,255,68,255,
126,255,219,255,2,0,99,0,175,1,213,2,85,2,7,1,64,0,114,255,82,254,166,253,62,253,193,252,165,252,218,252,
32,253,145,253,156,253,21,253,29,253,244,253,195,254,112,255,17,0,116,0,209,0,41,1,37,1,213,0,76,0,188,255,
223,255,175,0,36,1,225,0,158,0,248,0,175,1,17,2,246,1,175,1,107,1,101,1,130,1,69,1,24,1,105,1,
75,1,141,0,55,0,246,255,52,255,212,254,20,255,92,255,225,255,103,0,45,0,182,255,177,255,206,255,216,255,188,255,
118,255,125,255,231,255,71,0,124,0,63,0,136,255,56,255,172,255,89,0,235,0,2,1,158,0,172,0,16,1,202,0,
34,0,158,255,41,255,94,255,68,0,158,0,118,0,145,0,109,0,243,255,234,255,28,0,43,0,111,0,182,0,160,0,
115,0,64,0,232,255,205,255,23,0,70,0,232,255,65,255,24,255,155,255,28,0,26,0,198,255,166,255,234,255,12,0,
203,255,204,255,4,0,194,255,139,255,239,255,56,0,75,0,189,0,23,1,236,0,171,0,72,0,169,255,107,255,162,255,
176,255,101,255,35,255,58,255,123,255,143,255,149,255,157,255,127,255,153,255,239,255,172,255,254,254,237,254,102,255,211,255,
7,0,220,255,151,255,139,255,53,255,175,254,232,254,144,255,207,255,223,255,236,255,211,255,225,255,241,255,183,255,201,255,
56,0,40,0,184,255,187,255,14,0,29,0,238,255,226,255,36,0,114,0,96,0,244,255,197,255,45,0,141,0,86,0,
47,0,120,0,75,0,172,255,223,255,178,0,9,1,236,0,91,0,6,255,242,253,51,254,10,255,101,255,73,255,36,255,
60,255,145,255,209,255,167,255,9,255,122,254,156,254,35,255,110,255,168,255,233,255,210,255,186,255,248,255,230,255,109,255,
94,255,187,255,24,0,117,0,116,0,226,255,106,255,74,255,83,255,228,255,120,0,191,255,161,254,30,255,112,0,167,0,
11,0,159,255,85,255,70,255,166,255,223,255,166,255,113,255,86,255,56,255,102,255,222,255,10,0,210,255,188,255,230,255,
237,255,202,255,229,255,50,0,47,0,229,255,213,255,249,255,7,0,14,0,9,0,231,255,243,255,20,0,198,255,97,255,
131,255,164,255,68,255,2,255,38,255,69,255,112,255,166,255,132,255,114,255,244,255,71,0,225,255,125,255,142,255,176,255,
186,255,215,255,251,255,222,255,131,255,136,255,48,0,170,0,127,0,61,0,29,0,12,0,101,0,7,1,53,1,7,1,
29,1,105,1,117,1,22,1,131,0,69,0,155,0,255,0,225,0,109,0,53,0,83,0,89,0,28,0,235,255,234,255,
6,0,61,0,111,0,88,0,236,255,135,255,181,255,71,0,92,0,3,0,14,0,53,0,232,255,172,255,176,255,120,255,
76,255,128,255,184,255,222,255,244,255,187,255,158,255,251,255,37,0,227,255,252,255,126,0,145,0,254,255,132,255,178,255,
9,0,239,255,232,255,125,0,240,0,159,0,9,0,190,255,212,255,36,0,68,0,11,0,218,255,227,255,244,255,232,255,
174,255,70,255,12,255,97,255,250,255,58,0,46,0,84,0,135,0,67,0,189,255,145,255,169,255,135,255,49,255,17,255,
55,255,94,255,105,255,71,255,238,254,206,254,44,255,129,255,148,255,188,255,210,255,192,255,253,255,49,0,204,255,157,255,
53,0,181,0,180,0,175,0,191,0,202,0,215,0,192,0,142,0,129,0,141,0,136,0,91,0,5,0,207,255,220,255,
231,255,221,255,229,255,7,0,71,0,93,0,250,255,176,255,249,255,47,0,19,0,72,0,148,0,65,0,193,255,190,255,
227,255,215,255,203,255,187,255,172,255,246,255,89,0,27,0,140,255,127,255,173,255,165,255,194,255,240,255,201,255,185,255,
231,255,194,255,125,255,156,255,197,255,193,255,212,255,230,255,231,255,251,255,231,255,164,255,170,255,225,255,199,255,138,255,
163,255,214,255,145,255,25,255,43,255,157,255,203,255,211,255,2,0,33,0,4,0,194,255,137,255,178,255,20,0,11,0,
168,255,102,255,47,255,242,254,5,255,94,255,149,255,158,255,203,255,33,0,60,0,19,0,13,0,25,0,2,0,241,255,
181,255,58,255,66,255,201,255,253,255,26,0,113,0,100,0,23,0,22,0,0,0,224,255,40,0,58,0,199,255,120,255,
82,255,78,255,188,255,223,255,82,255,79,255,240,255,237,255,129,255,146,255,185,255,149,255,97,255,21,255,243,254,130,255,
58,0,68,0,253,255,22,0,83,0,103,0,143,0,202,0,215,0,211,0,166,0,27,0,223,255,131,0,46,1,23,1,
180,0,119,0,68,0,1,0,146,255,34,255,47,255,171,255,253,255,223,255,122,255,56,255,85,255,129,255,138,255,188,255,
11,0,27,0,19,0,70,0,146,0,169,0,131,0,96,0,74,0,18,0,230,255,239,255,197,255,123,255,166,255,232,255,
169,255,119,255,191,255,250,255,4,0,35,0,54,0,68,0,158,0,250,0,240,0,191,0,176,0,151,0,95,0,42,0,
238,255,184,255,216,255,66,0,134,0,143,0,120,0,41,0,243,255,58,0,123,0,47,0,222,255,243,255,11,0,3,0,
0,0,225,255,198,255,234,255,246,255,208,255,234,255,51,0,71,0,67,0,69,0,81,0,133,0,138,0,30,0,233,255,
49,0,70,0,18,0,20,0,33,0,243,255,189,255,160,255,156,255,179,255,181,255,139,255,105,255,125,255,191,255,231,255,
197,255,183,255,3,0,61,0,51,0,52,0,64,0,63,0,81,0,92,0,64,0,36,0,27,0,47,0,106,0,115,0,
52,0,26,0,35,0,6,0,250,255,10,0,1,0,38,0,128,0,133,0,52,0,255,255,248,255,24,0,57,0,35,0,
15,0,41,0,45,0,47,0,91,0,93,0,27,0,226,255,195,255,204,255,250,255,236,255,153,255,120,255,161,255,210,255,
0,0,43,0,31,0,207,255,166,255,229,255,19,0,233,255,199,255,188,255,155,255,148,255,142,255,93,255,112,255,187,255,
179,255,153,255,181,255,169,255,144,255,170,255,163,255,130,255,138,255,139,255,138,255,180,255,198,255,178,255,191,255,225,255,
240,255,224,255,178,255,178,255,250,255,28,0,244,255,198,255,148,255,115,255,138,255,151,255,124,255,145,255,234,255,53,0,
54,0,1,0,251,255,52,0,49,0,222,255,178,255,173,255,152,255,161,255,210,255,227,255,203,255,180,255,194,255,240,255,
19,0,31,0,25,0,246,255,254,255,101,0,191,0,225,0,2,1,223,0,132,0,152,0,183,0,25,0,94,255,74,255,
171,255,62,0,145,0,36,0,146,255,153,255,218,255,249,255,12,0,226,255,149,255,172,255,10,0,12,0,149,255,41,255,
58,255,160,255,216,255,191,255,161,255,187,255,16,0,88,0,47,0,209,255,221,255,44,0,31,0,0,0,107,0,227,0,
193,0,115,0,109,0,123,0,125,0,120,0,91,0,71,0,81,0,73,0,43,0,26,0,36,0,76,0,100,0,64,0,
30,0,56,0,91,0,93,0,88,0,99,0,114,0,101,0,62,0,23,0,248,255,245,255,18,0,16,0,225,255,199,255,
200,255,205,255,218,255,222,255,241,255,50,0,65,0,247,255,213,255,248,255,252,255,238,255,242,255,219,255,214,255,41,0,
96,0,6,0,151,255,166,255,224,255,232,255,17,0,115,0,141,0,76,0,23,0,233,255,179,255,198,255,255,255,229,255,
196,255,24,0,110,0,68,0,249,255,253,255,46,0,84,0,100,0,93,0,73,0,75,0,120,0,144,0,90,0,26,0,
26,0,54,0,77,0,87,0,54,0,18,0,36,0,54,0,51,0,61,0,39,0,251,255,17,0,57,0,30,0,232,255,
182,255,143,255,161,255,224,255,13,0,8,0,222,255,208,255,223,255,196,255,172,255,221,255,7,0,8,0,37,0,56,0,
30,0,7,0,247,255,240,255,4,0,241,255,188,255,208,255,47,0,133,0,162,0,110,0,44,0,61,0,83,0,26,0,
239,255,9,0,31,0,42,0,79,0,84,0,31,0,255,255,2,0,233,255,208,255,242,255,26,0,20,0,15,0,37,0,
22,0,214,255,193,255,255,255,51,0,17,0,218,255,220,255,251,255,2,0,224,255,193,255,218,255,10,0,16,0,245,255,
204,255,168,255,194,255,253,255,248,255,205,255,198,255,206,255,223,255,17,0,31,0,228,255,195,255,242,255,20,0,247,255,
223,255,243,255,16,0,36,0,42,0,36,0,39,0,46,0,38,0,42,0,57,0,39,0,4,0,0,0,30,0,71,0,
90,0,63,0,16,0,240,255,219,255,198,255,187,255,213,255,255,255,252,255,228,255,224,255,196,255,151,255,170,255,215,255,
216,255,212,255,229,255,237,255,238,255,238,255,234,255,232,255,227,255,215,255,190,255,150,255,141,255,191,255,246,255,6,0,
254,255,249,255,14,0,41,0,42,0,56,0,79,0,42,0,254,255,37,0,86,0,79,0,61,0,48,0,21,0,5,0,
11,0,11,0,248,255,237,255,5,0,37,0,29,0,248,255,236,255,7,0,39,0,38,0,16,0,252,255,241,255,242,255,
247,255,245,255,0,0,30,0,40,0,21,0,255,255,241,255,242,255,254,255,242,255,210,255,202,255,233,255,23,0,57,0,
57,0,33,0,21,0,36,0,46,0,22,0,246,255,239,255,247,255,2,0,252,255,217,255,203,255,236,255,3,0,13,0,
40,0,49,0,32,0,24,0,16,0,28,0,67,0,59,0,14,0,20,0,52,0,56,0,64,0,58,0,26,0,39,0,
94,0,96,0,47,0,18,0,22,0,44,0,73,0,62,0,243,255,179,255,195,255,239,255,243,255,221,255,214,255,231,255,
243,255,227,255,216,255,229,255,226,255,198,255,187,255,202,255,223,255,230,255,219,255,216,255,232,255,238,255,235,255,231,255,
227,255,233,255,237,255,220,255,216,255,229,255,226,255,225,255,237,255,233,255,223,255,231,255,242,255,246,255,239,255,238,255,
3,0,255,255,204,255,175,255,186,255,198,255,208,255,208,255,190,255,184,255,193,255,199,255,209,255,206,255,189,255,202,255,
218,255,203,255,202,255,220,255,208,255,192,255,215,255,239,255,230,255,220,255,225,255,219,255,197,255,200,255,237,255,9,0,
7,0,245,255,230,255,227,255,226,255,217,255,216,255,230,255,240,255,227,255,208,255,214,255,231,255,220,255,203,255,208,255,
213,255,207,255,207,255,217,255,242,255,11,0,8,0,251,255,1,0,12,0,17,0,7,0,239,255,238,255,8,0,16,0,
8,0,13,0,13,0,5,0,11,0,24,0,25,0,8,0,246,255,246,255,247,255,242,255,250,255,6,0,14,0,25,0,
15,0,254,255,9,0,17,0,254,255,247,255,244,255,226,255,235,255,11,0,6,0,237,255,237,255,3,0,15,0,4,0,
240,255,238,255,6,0,32,0,31,0,12,0,10,0,17,0,7,0,2,0,22,0,36,0,28,0,21,0,27,0,30,0,
18,0,9,0,13,0,20,0,41,0,64,0,47,0,14,0,22,0,37,0,29,0,29,0,34,0,22,0,13,0,11,0,
12,0,27,0,38,0,32,0,31,0,34,0,23,0,7,0,5,0,9,0,6,0,12,0,26,0,10,0,238,255,252,255,
20,0,250,255,218,255,223,255,241,255,254,255,6,0,4,0,1,0,248,255,236,255,250,255,22,0,21,0,3,0,255,255,
4,0,8,0,9,0,7,0,9,0,22,0,32,0,21,0,4,0,11,0,21,0,5,0,253,255,3,0,240,255,232,255,
17,0,46,0,29,0,15,0,16,0,6,0,3,0,27,0,40,0,22,0,22,0,52,0,48,0,18,0,16,0,22,0,
12,0,15,0,24,0,16,0,18,0,28,0,20,0,9,0,7,0,4,0,2,0,253,255,238,255,231,255,243,255,0,0,
0,0,6,0,20,0,11,0,247,255,5,0,25,0,11,0,3,0,24,0,26,0,8,0,7,0,14,0,12,0,12,0,
21,0,21,0,9,0,15,0,41,0,37,0,9,0,4,0,12,0,13,0,14,0,6,0,252,255,11,0,22,0,6,0,
248,255,246,255,249,255,12,0,27,0,11,0,248,255,254,255,11,0,17,0,23,0,24,0,11,0,12,0,37,0,40,0,
9,0,253,255,7,0,4,0,255,255,0,0,254,255,9,0,29,0,32,0,22,0,13,0,8,0,15,0,23,0,12,0,
0,0,3,0,2,0,254,255,14,0,34,0,21,0,245,255,236,255,248,255,6,0,14,0,246,255,203,255,198,255,229,255,
247,255,252,255,0,0,1,0,12,0,24,0,18,0,10,0,7,0,252,255,248,255,244,255,221,255,208,255,217,255,219,255,
218,255,230,255,241,255,237,255,225,255,216,255,220,255,237,255,253,255,252,255,229,255,214,255,227,255,242,255,239,255,229,255,
226,255,234,255,240,255,233,255,229,255,240,255,244,255,244,255,246,255,241,255,234,255,240,255,244,255,241,255,248,255,253,255,
239,255,237,255,2,0,10,0,251,255,250,255,4,0,249,255,240,255,253,255,7,0,6,0,13,0,15,0,5,0,252,255,
1,0,14,0,18,0,3,0,2,0,19,0,24,0,23,0,20,0,1,0,239,255,239,255,240,255,244,255,3,0,4,0,
252,255,3,0,1,0,238,255,229,255,239,255,246,255,250,255,5,0,9,0,249,255,241,255,253,255,253,255,248,255,7,0,
10,0,249,255,250,255,8,0,8,0,11,0,10,0,241,255,225,255,246,255,16,0,18,0,2,0,241,255,244,255,8,0,
12,0,253,255,253,255,5,0,250,255,246,255,12,0,21,0,5,0,254,255,6,0,9,0,4,0,251,255,252,255,9,0,
5,0,247,255,255,255,9,0,254,255,241,255,241,255,254,255,14,0,15,0,4,0,1,0,255,255,250,255,249,255,254,255,
5,0,10,0,8,0,7,0,6,0,255,255,253,255,4,0,2,0,243,255,232,255,235,255,253,255,7,0,250,255,236,255,
239,255,247,255,249,255,244,255,237,255,246,255,2,0,250,255,235,255,229,255,222,255,229,255,0,0,12,0,254,255,247,255,
250,255,242,255,232,255,239,255,246,255,244,255,242,255,244,255,0,0,22,0,32,0,18,0,2,0,255,255,3,0,0,0,
241,255,230,255,237,255,242,255,240,255,243,255,245,255,245,255,252,255,251,255,239,255,242,255,252,255,247,255,244,255,250,255,
247,255,233,255,229,255,240,255,251,255,0,0,13,0,23,0,8,0,247,255,252,255,2,0,250,255,246,255,248,255,246,255,
243,255,244,255,252,255,5,0,2,0,246,255,243,255,250,255,1,0,1,0,254,255,0,0,8,0,6,0,253,255,0,0,
9,0,4,0,253,255,5,0,13,0,5,0,253,255,0,0,4,0,2,0,2,0,4,0,5,0,7,0,8,0,5,0,
4,0,6,0,8,0,6,0,2,0,0,0,0,0,1,0,2,0,255,255,3,0,15,0,12,0,4,0,13,0,15,0,
255,255,6,0,27,0,24,0,10,0,12,0,14,0,6,0,5,0,12,0,12,0,0,0,245,255,244,255,250,255,4,0,
9,0,4,0,2,0,9,0,10,0,3,0,8,0,14,0,8,0,4,0,3,0,254,255,1,0,9,0,4,0,1,0,
18,0,26,0,3,0,245,255,6,0,12,0,248,255,241,255,0,0,8,0,3,0,3,0,10,0,9,0,1,0,254,255,
1,0,252,255,243,255,248,255,2,0,1,0,249,255,251,255,5,0,15,0,14,0,4,0,255,255,8,0,12,0,253,255,
240,255,243,255,245,255,246,255,0,0,4,0,254,255,0,0,2,0,251,255,250,255,3,0,4,0,1,0,5,0,8,0,
7,0,6,0,0,0,249,255,252,255,4,0,2,0,249,255,244,255,247,255,250,255,247,255,244,255,246,255,246,255,247,255,
253,255,0,0,255,255,1,0,7,0,9,0,7,0,4,0,0,0,2,0,5,0,0,0,252,255,2,0,7,0,9,0,
16,0,16,0,4,0,0,0,6,0,6,0,2,0,253,255,243,255,242,255,3,0,9,0,251,255,245,255,255,255,4,0,
3,0,6,0,7,0,5,0,1,0,252,255,250,255,255,255,255,255,250,255,253,255,3,0,7,0,9,0,8,0,6,0,
7,0,1,0,247,255,253,255,10,0,5,0,246,255,247,255,255,255,3,0,7,0,6,0,1,0,5,0,15,0,14,0,
8,0,7,0,3,0,254,255,3,0,8,0,5,0,3,0,7,0,10,0,12,0,11,0,5,0,2,0,3,0,1,0,
251,255,250,255,250,255,248,255,250,255,255,255,254,255,249,255,252,255,5,0,8,0,2,0,255,255,4,0,6,0,6,0,
7,0,6,0,4,0,7,0,5,0,252,255,252,255,2,0,0,0,255,255,4,0,1,0,249,255,248,255,247,255,244,255,
252,255,7,0,6,0,0,0,3,0,10,0,9,0,2,0,251,255,250,255,255,255,0,0,249,255,247,255,254,255,2,0,
255,255,0,0,5,0,5,0,1,0,2,0,5,0,255,255,245,255,251,255,7,0,2,0,246,255,255,255,14,0,9,0,
255,255,1,0,3,0,255,255,254,255,2,0,4,0,7,0,8,0,3,0,0,0,3,0,3,0,0,0,3,0,5,0,
1,0,253,255,251,255,250,255,254,255,4,0,3,0,254,255,255,255,4,0,3,0,2,0,9,0,10,0,0,0,253,255,
5,0,4,0,0,0,6,0,7,0,255,255,252,255,254,255,254,255,253,255,255,255,255,255,0,0,1,0,0,0,255,255,
1,0,5,0,6,0,4,0,2,0,1,0,1,0,1,0,0,0,255,255,2,0,4,0,255,255,251,255,254,255,1,0,
253,255,252,255,0,0,0,0,252,255,252,255,0,0,1,0,255,255,253,255,254,255,3,0,5,0,2,0,0,0,1,0,
1,0,2,0,1,0,4,0,7,0,4,0,1,0,6,0,10,0,4,0,255,255,254,255,251,255,248,255,250,255,255,255,
0,0,254,255,255,255,0,0,253,255,254,255,2,0,1,0,254,255,253,255,252,255,251,255,253,255,251,255,248,255,252,255,
1,0,3,0,2,0,3,0,7,0,10,0,7,0,0,0,253,255,254,255,255,255,254,255,251,255,250,255,254,255,255,255,
254,255,1,0,4,0,1,0,250,255,249,255,250,255,252,255,255,255,1,0,253,255,251,255,253,255,254,255,253,255,252,255,
252,255,255,255,1,0,255,255,251,255,252,255,254,255,0,0,255,255,253,255,254,255,255,255,255,255,0,0,0,0,254,255,
254,255,253,255,253,255,253,255,254,255,255,255,2,0,2,0,255,255,252,255,252,255,254,255,0,0,255,255,253,255,255,255,
0,0,255,255,0,0,1,0,1,0,1,0,255,255,0,0,3,0,2,0,254,255,254,255,0,0,254,255,254,255,1,0,
0,0,251,255,250,255,253,255,0,0,1,0,254,255,250,255,252,255,0,0,1,0,0,0,0,0,255,255,255,255,1,0,
0,0,254,255,254,255,254,255,253,255,255,255,0,0,0,0,255,255,0,0,255,255,254,255,255,255,1,0,1,0,255,255,
0,0,1,0,0,0,255,255,254,255,
};

564
src/client/sound/data/cloth3.pcm Executable file
View File

@@ -0,0 +1,564 @@
unsigned char PCM_cloth3[17962] = {
1,0,0,0,2,0,0,0,68,172,0,0,13,35,0,0,0,0,251,255,249,255,252,255,250,255,244,255,242,255,239,255,
231,255,228,255,228,255,224,255,222,255,220,255,211,255,205,255,205,255,204,255,209,255,216,255,212,255,204,255,206,255,206,255,
201,255,197,255,191,255,188,255,194,255,197,255,189,255,171,255,155,255,156,255,154,255,136,255,124,255,121,255,111,255,112,255,
115,255,103,255,106,255,126,255,136,255,150,255,160,255,144,255,143,255,148,255,107,255,72,255,88,255,99,255,96,255,115,255,
133,255,134,255,132,255,128,255,148,255,190,255,220,255,11,0,65,0,65,0,59,0,94,0,109,0,107,0,121,0,119,0,
125,0,155,0,160,0,162,0,160,0,90,0,47,0,115,0,143,0,89,0,94,0,150,0,191,0,239,0,14,1,3,1,
251,0,247,0,242,0,240,0,229,0,244,0,43,1,55,1,21,1,20,1,54,1,125,1,203,1,208,1,208,1,17,2,
50,2,76,2,166,2,167,2,70,2,69,2,110,2,96,2,126,2,135,2,46,2,61,2,199,2,209,2,119,2,140,2,
215,2,196,2,123,2,93,2,103,2,123,2,150,2,93,2,157,1,51,1,140,1,182,1,146,1,225,1,10,2,146,1,
120,1,195,1,131,1,50,1,112,1,142,1,46,1,195,0,156,0,206,0,254,0,216,0,206,0,14,1,1,1,178,0,
163,0,188,0,169,0,95,0,13,0,6,0,36,0,22,0,27,0,74,0,76,0,60,0,70,0,82,0,155,0,1,1,
0,1,241,0,24,1,215,0,93,0,113,0,181,0,154,0,78,0,249,255,248,255,118,0,132,0,195,255,70,255,89,255,
51,255,217,254,209,254,241,254,234,254,219,254,206,254,124,254,248,253,243,253,143,254,246,254,186,254,43,254,135,253,63,253,
160,253,246,253,225,253,1,254,92,254,135,254,221,254,80,255,32,255,141,254,59,254,0,254,204,253,169,253,78,253,42,253,
172,253,252,253,197,253,223,253,60,254,85,254,156,254,13,255,28,255,81,255,14,0,123,0,80,0,35,0,22,0,16,0,
40,0,70,0,87,0,51,0,129,255,178,254,204,254,178,255,64,0,47,0,51,0,77,0,221,255,88,255,167,255,8,0,
131,255,5,255,72,255,135,255,178,255,79,0,184,0,93,0,212,255,150,255,171,255,199,255,130,255,87,255,212,255,48,0,
248,255,241,255,19,0,214,255,173,255,209,255,216,255,217,255,213,255,142,255,93,255,98,255,36,255,237,254,87,255,223,255,
223,255,171,255,214,255,52,0,35,0,174,255,168,255,66,0,167,0,123,0,68,0,132,0,40,1,127,1,59,1,41,1,
147,1,148,1,59,1,119,1,221,1,202,1,226,1,46,2,245,1,171,1,198,1,174,1,92,1,54,1,247,0,200,0,
57,1,188,1,157,1,75,1,118,1,24,2,99,2,206,1,35,1,28,1,84,1,161,1,17,2,39,2,22,2,61,2,
245,1,108,1,122,1,91,1,208,0,43,1,207,1,87,1,249,0,159,1,241,1,141,1,90,1,120,1,163,1,184,1,
157,1,173,1,233,1,204,1,191,1,107,2,252,2,122,2,198,1,25,2,163,2,12,2,49,1,42,1,232,0,22,0,
90,0,149,1,6,2,172,1,75,1,169,0,198,255,22,255,204,254,185,254,34,254,249,252,141,252,217,252,91,252,109,251,
109,251,179,251,68,251,245,250,88,251,126,251,241,250,83,250,213,249,68,249,11,249,127,249,9,250,26,250,17,250,133,250,
21,251,2,251,209,250,248,250,71,250,223,248,200,248,130,249,38,249,136,248,196,248,83,249,9,250,23,250,231,248,214,248,
101,250,25,250,8,248,242,247,166,249,114,250,115,250,245,250,177,251,145,251,166,250,82,250,214,250,238,250,156,250,168,250,
200,250,40,251,60,252,251,252,212,252,230,252,83,253,7,253,32,252,181,251,70,252,95,253,199,253,209,252,214,251,105,252,
198,253,104,254,168,254,57,255,100,255,16,255,194,255,100,1,193,1,244,0,79,1,53,2,170,1,244,0,57,1,233,0,
92,0,132,1,134,3,210,4,28,5,246,3,56,2,173,1,237,1,9,2,74,2,89,2,35,2,165,2,100,3,34,3,
47,2,83,1,200,0,158,0,177,0,195,0,160,0,103,0,179,0,118,1,218,1,130,1,133,0,96,255,28,255,178,255,
28,0,253,255,99,255,125,254,5,254,81,254,15,255,160,255,130,255,123,255,52,0,123,0,233,255,133,255,59,255,13,255,
147,255,196,255,8,255,129,254,64,254,3,254,72,254,151,254,198,254,156,255,141,0,246,0,85,1,108,1,26,1,24,1,
36,1,211,0,162,0,211,0,123,1,34,2,182,1,191,0,142,0,174,0,181,0,48,1,140,1,255,0,47,0,191,255,
149,255,188,255,66,0,171,0,135,0,80,0,124,0,145,0,115,0,106,0,29,0,18,0,41,1,226,1,33,1,252,0,
40,2,97,2,106,1,81,1,64,2,188,2,110,2,233,1,100,1,38,1,198,1,200,2,225,2,90,2,125,2,30,3,
116,3,129,3,8,3,249,1,108,1,171,1,134,1,223,0,208,0,137,1,122,2,26,3,241,2,134,2,162,2,185,2,
146,2,205,2,182,2,197,1,82,1,143,1,126,1,177,1,114,2,150,2,32,2,217,1,192,1,213,1,193,1,49,1,
13,1,100,1,34,1,17,1,77,2,106,3,77,3,254,2,252,2,133,2,118,1,173,0,164,0,191,0,196,0,113,1,
83,2,24,2,91,1,126,1,7,2,247,1,100,1,251,0,114,1,96,2,119,2,6,2,237,1,77,1,103,0,17,1,
6,2,238,0,181,255,84,0,196,0,9,0,233,255,148,0,209,0,162,0,161,0,45,1,7,2,44,2,171,1,191,1,
16,2,97,1,80,0,252,255,78,0,29,1,212,1,99,1,131,0,149,0,22,1,144,1,53,2,234,1,135,0,246,255,
163,0,131,1,8,2,139,1,137,0,55,0,162,255,142,254,227,254,215,255,177,255,149,255,165,255,7,255,35,255,228,255,
114,255,147,254,49,254,182,253,218,253,173,254,162,254,237,253,158,253,217,253,187,254,94,255,135,254,117,253,253,253,85,255,
185,255,77,255,123,255,45,0,40,0,156,255,43,255,202,254,34,255,13,0,4,0,107,255,122,255,149,255,163,255,66,0,
206,0,13,1,72,1,243,0,128,0,0,1,219,1,60,2,94,2,107,2,55,2,162,1,2,1,12,1,170,1,96,2,
60,3,181,3,13,3,80,2,220,2,196,3,145,3,32,3,203,3,77,4,114,3,207,2,57,3,127,3,164,3,33,4,
104,4,150,4,190,4,138,4,215,4,219,5,64,6,6,6,206,5,40,5,51,4,153,3,115,3,144,3,78,3,175,2,
193,2,28,3,183,2,97,2,91,2,144,1,150,0,126,0,143,0,105,0,141,0,63,0,222,254,4,254,168,254,44,255,
236,254,21,255,173,255,75,0,32,1,108,1,254,0,186,0,103,0,132,0,27,2,87,3,146,3,23,5,212,6,211,6,
49,7,64,8,2,8,229,7,20,9,174,9,27,9,46,8,191,7,152,8,65,9,39,8,210,6,33,6,245,4,188,3,
89,3,73,3,84,3,167,3,6,4,29,4,146,3,103,2,1,1,165,255,185,254,140,254,220,254,110,255,12,0,85,0,
31,0,50,255,179,253,195,252,227,252,39,253,220,252,68,252,222,251,132,251,169,250,237,249,94,250,63,251,86,251,11,251,
70,251,241,251,101,252,128,252,162,252,158,252,52,252,235,251,211,251,142,251,148,251,6,252,75,252,119,252,191,252,250,252,
15,253,200,252,130,252,209,252,200,252,205,251,16,251,216,250,102,250,220,249,69,249,178,248,72,249,21,251,33,252,133,251,
185,250,203,250,255,250,17,251,90,251,228,250,154,249,83,249,246,249,44,250,45,250,217,249,29,249,90,249,45,250,244,249,
20,249,49,248,187,247,129,248,71,249,226,248,79,248,125,247,158,246,125,247,211,248,125,248,22,248,73,248,126,247,87,246,
244,245,164,245,66,245,88,245,204,245,45,246,69,246,29,246,149,245,18,245,176,245,204,246,21,247,118,247,20,248,214,247,
249,247,252,248,28,249,22,249,3,250,38,250,152,249,21,250,175,250,132,250,171,250,75,251,224,251,208,252,55,254,10,255,
170,254,20,254,34,254,87,254,172,254,77,255,108,255,84,255,119,0,181,2,108,4,28,4,99,2,23,2,187,3,235,4,
120,5,35,6,223,5,80,5,212,5,192,5,137,4,187,4,35,6,198,5,68,4,205,4,101,6,153,5,171,3,208,3,
176,4,15,4,244,2,115,2,125,2,243,2,51,3,26,3,250,2,121,2,21,2,126,2,43,3,80,4,233,5,44,6,
56,5,3,5,200,5,215,6,146,7,180,7,120,8,168,9,63,9,48,8,255,7,255,6,6,5,31,4,255,3,161,3,
151,3,251,3,16,4,147,3,51,3,201,3,138,4,238,3,79,2,19,1,150,0,5,0,208,254,229,253,181,253,239,252,
178,251,98,251,87,251,214,250,169,250,147,250,43,250,11,250,159,249,84,248,167,247,136,248,171,249,125,249,100,248,80,248,
62,249,73,249,242,248,214,249,255,250,167,251,159,252,146,253,21,254,189,254,12,255,141,254,68,254,172,254,81,255,231,255,
32,0,60,0,140,0,122,0,83,0,181,0,75,0,215,254,59,254,59,254,181,253,145,253,200,253,127,253,138,253,174,253,
235,252,246,252,142,254,70,255,104,254,152,253,136,253,236,253,21,254,167,253,68,253,37,253,58,253,241,253,147,254,91,254,
94,254,189,254,123,254,196,254,115,0,146,1,127,1,245,1,158,2,12,2,118,1,226,1,182,1,221,0,249,0,143,1,
70,2,191,3,219,3,185,1,174,0,54,1,18,1,238,0,241,0,35,0,223,255,186,255,50,254,191,253,220,254,76,254,
19,253,148,253,247,253,112,253,93,253,25,253,73,252,89,252,28,253,239,252,14,252,36,252,15,253,99,253,96,253,188,253,
14,254,119,254,39,255,218,255,212,0,32,1,165,255,59,254,234,253,124,253,184,253,34,255,20,0,99,0,101,0,35,0,
18,1,108,2,209,1,255,0,18,2,79,3,137,3,207,3,238,4,46,6,13,6,152,5,240,6,76,8,182,7,196,6,
104,6,113,6,56,7,20,8,179,8,148,9,75,10,234,10,95,11,105,10,182,8,234,7,12,8,143,8,111,8,55,8,
125,9,130,9,167,7,241,8,132,10,80,7,247,6,221,12,25,16,21,16,224,16,79,14,237,8,252,6,222,7,20,10,
63,14,205,16,10,16,224,14,204,13,140,12,145,12,64,13,35,13,250,12,175,13,105,14,109,14,141,14,129,14,207,12,
98,10,73,8,171,5,165,3,248,2,182,1,124,0,43,0,199,254,231,253,86,255,226,254,103,251,2,249,106,248,4,249,
76,251,12,253,223,252,144,252,168,252,163,252,183,252,173,252,42,252,60,251,197,250,170,251,132,252,135,252,74,253,160,253,
155,251,13,250,167,250,211,250,44,250,66,250,115,250,193,249,236,248,188,249,180,252,76,255,0,255,62,252,232,248,39,247,
202,247,137,248,219,247,136,247,125,248,15,249,254,247,233,245,150,244,254,244,236,245,238,245,86,245,187,244,216,243,86,243,
149,244,170,246,111,247,0,247,145,246,116,246,236,246,168,247,73,248,152,249,16,251,119,251,44,252,179,253,85,254,185,254,
239,255,177,0,27,1,159,1,232,0,119,255,174,254,21,254,205,253,8,254,173,253,5,253,40,253,13,254,76,255,183,255,
158,254,138,253,107,253,227,253,212,254,6,255,217,253,24,253,128,253,106,254,143,255,202,255,11,255,10,255,77,255,4,255,
84,255,137,255,126,254,169,253,196,253,90,254,6,255,24,254,130,251,234,249,190,249,215,249,107,250,224,250,79,250,242,248,
196,246,44,245,87,246,86,248,12,248,204,246,228,246,61,247,37,246,6,245,9,246,161,247,128,247,5,247,1,247,14,246,
142,245,243,246,223,247,109,247,81,247,182,247,50,248,160,248,172,248,217,248,121,248,194,246,233,246,36,250,189,251,170,250,
217,250,27,252,210,251,141,250,176,249,117,249,166,249,26,250,44,251,126,252,154,252,72,251,199,249,57,249,172,249,14,250,
109,250,136,251,35,252,19,252,241,252,144,253,62,253,6,254,195,254,212,253,58,253,150,252,235,250,233,250,224,251,39,251,
189,250,247,250,220,249,89,249,223,249,119,249,253,249,245,251,125,252,11,252,194,251,127,250,76,249,128,249,142,249,87,248,
32,247,115,247,223,247,40,246,11,245,165,246,209,246,42,245,187,245,58,246,125,244,156,244,36,246,62,245,69,244,133,245,
69,246,175,245,244,245,19,247,27,247,89,246,145,246,149,246,22,245,152,244,228,245,148,246,237,246,177,247,193,247,27,248,
178,249,192,250,206,250,55,251,46,253,121,0,88,2,142,2,100,4,115,6,6,6,42,6,98,7,27,6,243,3,93,3,
84,2,214,0,168,0,237,0,84,1,13,3,12,5,136,4,148,1,2,0,168,0,104,255,43,252,130,251,111,253,204,254,
0,255,50,254,182,252,209,251,201,251,57,252,112,252,92,251,235,249,136,249,152,249,38,250,196,251,34,253,151,253,186,253,
230,253,12,255,213,0,95,1,118,1,67,2,0,2,217,0,97,1,110,3,9,5,34,5,26,4,101,4,155,6,63,7,
134,5,245,4,69,6,191,7,15,10,224,12,252,12,156,10,214,9,247,10,199,10,177,9,125,10,94,12,100,13,88,14,
22,15,117,13,164,10,52,10,171,11,110,12,219,12,165,13,186,13,155,13,82,14,134,14,130,13,120,12,127,11,147,10,
254,10,89,12,187,12,80,12,140,12,111,13,14,14,32,14,226,13,158,13,236,13,233,14,57,15,245,13,163,12,106,12,
25,12,37,11,167,10,144,10,54,10,144,10,66,12,170,13,105,13,252,11,137,10,125,10,59,12,108,13,170,12,66,12,
62,13,142,13,234,12,189,12,231,12,228,12,156,12,224,11,111,11,124,11,229,10,127,10,150,11,231,11,13,10,253,8,
20,10,8,11,231,10,67,10,255,8,9,8,85,8,102,8,209,7,96,8,13,9,229,7,235,6,98,7,35,7,132,6,
184,7,203,9,217,10,133,10,134,9,181,9,209,10,48,10,171,8,109,8,176,7,95,6,13,7,144,7,109,5,233,3,
82,4,212,3,210,2,225,2,134,2,168,1,21,2,220,2,106,2,241,1,32,2,116,1,248,255,126,255,123,255,46,254,
232,252,54,253,48,253,66,252,242,252,144,254,127,254,130,254,232,255,121,255,78,253,35,253,197,253,165,252,230,251,114,252,
95,252,75,252,200,252,21,252,154,250,228,249,145,249,223,249,54,251,59,252,178,252,158,253,93,254,51,254,202,253,232,253,
214,254,238,255,63,0,218,255,140,254,93,252,59,251,203,251,68,252,84,252,69,252,38,251,68,249,136,247,90,246,75,247,
128,249,209,248,217,245,208,244,205,244,44,243,99,241,203,240,145,240,127,240,166,240,225,240,50,241,46,241,23,241,204,241,
139,242,60,242,146,241,96,241,207,241,38,243,224,244,28,246,130,247,205,249,224,251,194,252,249,252,146,252,140,251,214,251,
74,254,168,0,9,2,196,3,128,5,106,6,209,6,38,6,7,5,34,6,23,9,76,11,137,12,200,12,142,11,222,10,
9,12,87,13,22,14,248,14,133,15,70,15,215,14,189,14,212,14,194,14,237,14,145,15,95,15,247,13,227,12,14,12,
128,10,75,9,4,9,195,8,240,8,189,9,185,9,25,9,72,9,152,9,137,9,129,10,219,11,200,11,25,12,15,14,
49,14,247,11,123,11,22,12,173,10,67,9,245,8,148,7,196,6,57,8,83,9,42,10,76,12,143,12,151,9,48,7,
175,6,79,6,233,5,110,6,218,7,204,8,152,8,201,8,203,8,253,5,146,2,27,2,157,2,191,2,212,4,147,7,
111,7,26,5,14,3,28,2,166,2,75,4,12,5,208,3,23,3,160,5,195,8,38,8,42,5,128,3,99,3,252,3,
194,4,215,4,180,4,143,4,131,3,49,3,203,4,224,4,24,2,19,0,245,255,18,0,158,0,1,1,39,255,117,252,
221,251,62,252,183,251,40,252,41,254,137,254,165,253,16,255,19,1,79,0,248,254,121,254,254,252,162,252,127,255,208,1,
163,1,237,0,59,255,76,253,151,254,79,1,126,1,161,0,15,0,15,255,65,0,116,3,181,2,183,254,244,253,73,255,
198,254,126,254,31,255,88,254,215,253,175,254,130,254,47,254,236,254,40,254,213,252,25,254,54,255,30,253,41,250,148,248,
125,248,96,249,219,249,67,250,119,251,159,251,98,251,187,253,184,255,58,254,100,253,122,254,128,253,47,252,207,253,222,254,
91,253,204,252,108,253,58,252,28,250,228,249,33,251,242,251,94,252,210,252,141,252,214,251,241,251,191,251,214,249,111,248,
146,249,50,251,74,251,13,251,252,251,49,253,213,252,94,251,92,251,25,253,215,253,170,252,254,251,102,253,67,255,120,255,
104,254,249,253,214,254,20,0,154,0,89,0,94,0,160,0,222,255,212,254,20,255,133,255,71,255,192,255,95,0,1,255,
119,252,241,250,151,250,71,250,60,249,39,248,84,248,96,249,84,250,2,251,208,250,223,249,180,249,85,250,211,250,34,251,
249,250,8,251,186,252,216,253,20,252,142,250,205,251,147,253,9,254,75,253,30,252,42,252,20,253,29,253,153,253,108,255,
253,255,10,255,60,255,188,0,246,1,95,2,97,2,88,3,100,5,25,6,143,4,55,3,18,4,220,5,77,5,213,1,
162,255,44,1,112,3,82,4,215,4,116,4,190,2,67,2,55,3,130,2,126,0,25,0,207,0,213,0,135,0,220,255,
176,254,192,254,49,0,191,0,34,0,190,255,232,255,76,0,250,255,168,254,3,254,210,253,41,252,199,250,101,251,78,251,
199,249,106,249,236,249,182,249,143,249,129,250,112,252,193,253,223,252,112,251,46,251,202,250,46,250,169,250,185,251,245,252,
142,253,228,251,10,250,100,250,197,250,112,250,195,250,138,250,24,250,186,250,200,249,84,247,83,247,95,248,143,247,10,247,
201,247,15,248,16,248,139,248,106,249,5,250,36,249,23,248,61,249,210,250,111,250,215,248,29,247,131,246,25,248,195,249,
140,249,119,248,6,247,121,245,136,245,223,246,200,246,246,244,7,244,68,245,252,246,124,247,196,246,85,245,173,244,242,245,
18,247,151,246,152,246,203,247,79,249,86,251,18,252,17,250,84,248,143,248,11,249,18,249,87,248,226,247,220,249,65,251,
25,249,21,248,72,250,115,251,122,251,224,251,238,250,191,249,115,249,200,247,205,246,122,249,146,251,60,250,186,248,217,247,
133,246,199,246,200,248,54,249,249,247,241,247,74,249,186,250,70,252,182,252,215,250,117,249,138,250,102,251,213,250,221,250,
252,251,71,253,203,253,236,252,66,252,212,252,1,253,24,253,113,254,40,255,230,253,36,252,12,251,48,251,237,251,220,251,
65,252,254,253,239,254,232,254,195,254,139,253,232,252,121,254,15,255,251,253,87,254,75,255,235,254,174,254,92,255,34,0,
75,0,112,255,27,255,145,0,34,2,4,3,168,3,5,3,218,1,110,2,251,3,245,4,115,5,54,5,121,4,133,4,
216,5,235,7,3,9,19,8,100,7,111,8,77,9,153,9,104,10,101,11,3,13,104,15,86,16,101,15,170,14,209,14,
159,15,120,16,113,16,130,16,89,17,74,17,73,16,219,15,218,15,39,16,118,16,18,15,229,12,163,12,85,13,230,12,
51,12,13,12,117,11,202,9,162,7,39,6,108,5,211,3,37,1,224,255,31,1,117,2,70,2,47,2,209,2,98,2,
21,1,178,0,207,0,117,0,180,255,54,254,108,252,149,251,179,251,139,252,137,253,119,253,34,253,209,252,143,250,86,248,
48,249,31,250,137,249,235,249,205,249,69,248,134,248,5,249,65,247,100,246,70,246,228,243,249,241,55,242,73,242,62,243,
164,245,53,246,40,245,204,244,106,244,39,244,131,245,171,247,136,249,64,251,92,252,229,252,37,254,215,255,255,255,61,255,
145,0,65,3,238,3,97,3,26,4,59,5,165,5,155,5,239,4,44,4,237,3,171,3,10,4,107,5,27,6,205,5,
26,5,54,3,87,1,182,1,123,2,101,1,59,0,74,0,166,255,50,254,31,255,215,1,163,1,227,255,230,1,122,4,
116,2,95,0,33,2,56,3,226,1,202,1,63,3,142,3,105,2,184,1,125,2,54,3,199,2,179,2,31,3,252,1,
226,255,115,255,212,0,83,2,176,2,118,1,182,255,238,254,24,254,160,251,80,249,250,248,82,248,229,245,36,244,174,243,
130,242,5,241,197,240,11,241,109,240,27,239,65,238,223,237,73,237,18,237,63,236,31,233,248,231,183,236,226,241,249,242,
171,242,89,241,128,238,228,236,7,236,200,234,93,235,166,236,32,238,170,243,187,249,87,249,42,246,89,245,36,245,43,245,
140,245,130,243,213,239,52,238,217,239,75,243,177,244,32,243,185,243,13,247,17,247,212,243,169,242,117,244,171,247,3,251,
103,252,125,252,189,253,208,254,36,254,33,254,81,255,251,254,246,253,37,255,254,0,214,0,233,255,119,0,221,2,156,5,
69,6,13,5,0,5,192,6,84,8,146,8,252,6,197,4,223,4,126,7,92,10,61,12,145,12,41,12,200,12,4,13,
53,11,242,9,181,10,166,11,62,12,165,12,124,12,133,12,115,12,92,11,207,10,71,11,1,11,161,10,227,10,24,10,
248,8,138,9,122,10,220,10,237,11,201,12,243,11,102,10,73,9,89,9,212,10,148,11,127,10,25,10,13,11,167,11,
215,12,226,14,205,14,222,12,84,12,237,12,246,12,147,12,185,11,84,11,50,13,166,15,24,16,166,15,120,15,192,14,
4,14,16,14,99,14,24,15,238,15,211,15,131,15,187,15,120,15,88,15,4,16,65,15,160,13,153,14,24,16,162,14,
136,13,26,15,149,15,15,14,129,13,225,13,2,14,98,14,141,14,183,13,203,12,230,12,184,13,177,13,11,12,75,10,
128,9,219,8,152,8,165,9,68,11,96,12,123,12,105,11,144,10,59,11,202,11,180,10,79,9,215,8,237,8,142,9,
139,10,149,10,136,9,135,8,239,7,93,8,244,9,206,9,188,6,185,4,92,5,147,5,197,4,36,4,241,2,152,1,
69,1,249,0,44,0,127,255,171,254,237,253,40,254,64,255,63,0,161,255,112,253,254,251,172,251,94,251,48,252,34,254,
5,255,27,255,121,255,35,255,193,253,112,252,68,252,226,252,104,252,91,251,38,252,99,253,39,253,80,253,61,254,62,254,
104,253,31,252,107,251,88,252,223,252,154,252,104,253,233,252,188,250,232,251,199,254,249,253,87,252,251,252,111,253,249,253,
3,0,8,1,145,255,103,253,197,252,163,254,185,0,2,0,128,253,217,251,104,251,54,251,24,251,208,251,192,252,28,252,
236,250,127,251,171,252,204,252,161,252,39,252,1,251,246,250,48,253,175,255,57,0,228,255,152,0,100,0,27,253,23,250,
176,250,50,252,247,251,16,252,121,253,176,253,186,252,138,253,85,255,47,255,178,254,208,255,227,255,31,254,37,253,177,252,
109,251,93,250,108,249,217,247,239,246,119,247,161,248,223,249,172,250,134,250,181,249,54,249,240,249,103,251,89,252,147,252,
29,252,253,250,228,249,183,248,217,247,77,249,201,251,111,251,87,249,32,249,99,250,78,251,169,251,63,251,88,250,114,250,
226,251,136,252,27,251,23,250,91,251,127,252,66,252,209,252,120,254,245,255,83,1,27,2,217,1,82,1,105,0,58,255,
207,254,116,254,89,253,169,252,161,252,42,252,64,251,25,251,162,252,117,254,166,254,142,254,8,255,193,253,23,251,190,249,
96,249,120,249,125,250,153,250,167,249,190,250,99,253,14,254,172,252,219,251,128,252,26,253,173,252,110,252,251,252,78,253,
136,253,99,254,127,255,159,0,224,0,7,255,235,252,153,252,21,252,29,250,82,249,35,251,157,253,95,254,49,253,109,252,
88,253,26,254,147,254,82,0,162,0,124,253,231,251,164,253,80,252,188,247,210,247,125,252,226,253,235,250,120,249,145,252,
103,1,212,2,83,255,33,251,251,249,240,250,91,252,247,253,63,255,94,0,56,2,36,3,138,0,173,252,64,252,118,254,
18,255,85,254,220,254,117,255,80,254,55,253,177,253,155,254,177,255,101,1,176,1,196,255,8,255,99,0,134,0,194,255,
67,0,241,255,88,254,148,254,72,255,166,253,244,251,201,251,146,251,145,251,42,252,65,252,128,252,196,253,248,254,115,255,
73,255,152,254,205,254,223,0,182,2,253,1,96,0,228,0,154,1,122,254,177,249,135,248,243,250,135,253,88,254,205,252,
44,250,227,248,55,249,72,250,247,251,35,253,142,252,105,251,62,251,134,251,81,251,114,250,28,249,138,248,213,249,56,251,
6,251,182,251,170,254,65,0,227,254,213,253,150,254,54,255,136,254,199,253,216,254,63,1,227,2,3,4,70,5,6,5,
85,3,58,2,115,1,12,0,157,254,250,253,193,254,15,0,185,255,163,254,126,255,72,1,134,1,50,1,55,2,229,2,
207,0,121,254,107,255,102,1,11,1,78,255,232,253,200,253,241,254,200,254,222,252,71,252,183,252,170,252,170,253,3,255,
29,255,3,0,193,1,240,1,38,1,132,0,69,0,236,0,87,1,117,1,15,3,109,4,210,3,57,3,86,2,74,0,
201,255,220,0,25,1,86,1,30,2,111,2,180,2,148,2,167,1,137,1,15,2,171,1,214,0,110,0,17,1,129,2,
235,1,46,255,4,255,253,1,44,3,118,1,91,0,7,1,184,1,47,2,118,3,142,4,59,4,184,3,163,3,21,3,
179,2,18,3,34,3,218,2,200,2,187,2,234,2,211,2,143,1,142,0,250,0,55,1,195,0,232,0,156,1,122,2,
98,3,176,2,31,0,41,255,241,0,89,1,28,255,198,253,212,253,162,253,174,254,147,0,56,0,80,255,185,0,1,2,
150,1,130,1,132,1,40,0,184,254,210,254,246,255,127,0,221,255,117,255,25,0,239,0,69,1,164,0,35,255,102,254,
65,255,145,0,29,1,9,0,66,254,115,254,235,255,78,255,74,253,176,252,112,253,238,254,2,1,169,1,231,255,86,254,
198,254,70,255,232,253,19,252,234,251,32,253,130,254,9,0,166,1,86,2,122,1,231,255,243,254,211,254,144,254,211,253,
176,253,213,254,85,0,165,1,51,3,246,3,41,3,160,3,207,6,25,9,150,8,33,7,185,4,37,1,228,253,62,249,
12,241,197,232,21,228,173,226,222,228,88,235,213,243,101,251,48,0,77,1,31,0,0,255,178,254,71,255,117,0,16,1,
198,0,21,0,186,254,37,253,199,252,60,253,62,253,29,253,40,253,244,252,43,253,107,254,126,255,84,255,4,255,249,255,
133,1,109,2,137,3,251,4,120,4,205,2,97,3,183,4,136,3,188,1,201,1,155,2,18,3,14,3,179,2,228,2,
48,4,12,6,128,6,252,3,132,1,84,2,215,3,106,4,166,5,134,5,158,3,245,3,39,5,100,4,237,4,183,6,
145,6,145,6,72,7,80,6,225,5,143,6,20,5,14,3,221,2,187,2,29,3,49,5,132,6,178,5,72,4,88,4,
121,6,254,7,139,7,151,7,192,7,129,6,139,6,166,7,134,6,9,6,197,8,217,9,67,7,219,4,130,3,145,2,
53,3,202,3,21,2,178,0,165,1,184,2,32,3,161,3,75,3,228,2,130,4,137,6,165,6,99,5,189,3,243,2,
146,3,84,3,15,2,88,2,218,2,10,2,234,2,174,5,184,6,84,6,227,6,169,7,201,6,180,4,2,4,137,5,
239,6,91,7,172,7,21,7,228,5,154,5,248,4,133,3,62,3,129,3,196,2,228,1,233,0,215,254,30,252,221,249,
206,249,241,252,22,1,152,3,129,4,137,4,133,3,216,1,30,1,173,1,139,1,155,0,190,0,173,0,10,255,111,254,
101,255,110,255,239,254,39,255,174,255,110,0,185,0,135,0,163,1,216,2,213,1,90,0,85,255,152,253,164,252,235,252,
183,252,72,253,254,254,73,255,31,255,77,0,161,0,141,255,178,254,221,252,251,249,45,249,169,250,81,252,230,253,127,254,
194,252,38,251,241,251,64,253,71,254,195,255,22,0,180,255,69,1,65,2,238,255,27,254,195,254,65,255,118,255,229,255,
98,255,63,255,10,1,97,3,211,4,252,4,194,4,46,5,65,4,20,2,255,2,18,5,26,3,42,1,121,3,92,5,
213,4,185,4,119,4,121,3,225,2,161,1,209,255,184,254,81,253,210,252,135,255,77,2,89,2,109,1,183,255,14,253,
22,252,36,253,92,254,244,254,159,253,65,251,188,251,168,254,114,0,71,0,44,254,6,252,160,253,124,0,217,255,132,254,
21,255,236,254,135,254,67,255,229,254,11,254,21,255,172,0,58,1,38,0,114,253,23,252,45,253,2,254,246,254,141,0,
118,255,111,252,244,251,17,254,135,0,157,1,208,255,85,253,20,253,116,253,146,253,147,254,23,255,217,254,164,255,167,255,
145,253,31,253,13,255,188,254,121,251,221,249,165,251,146,253,98,253,132,252,43,252,157,251,44,251,137,251,67,251,237,249,
157,249,109,250,218,250,147,251,212,252,252,252,96,252,11,252,124,251,149,251,209,252,176,252,147,251,138,252,2,254,105,253,
9,253,219,254,22,1,230,1,217,1,180,2,239,3,13,3,179,0,44,255,79,254,57,254,168,255,44,1,119,1,170,0,
108,255,68,255,227,255,175,255,50,0,182,1,24,1,223,255,129,1,235,2,42,1,175,254,163,252,206,250,186,250,112,251,
148,250,203,249,162,250,241,250,3,250,43,250,246,251,26,253,135,252,69,252,10,253,203,252,78,252,130,253,34,254,138,253,
84,254,164,254,176,252,38,252,8,254,136,255,221,255,56,255,132,254,160,254,105,254,231,254,68,1,30,2,244,0,1,1,
137,1,186,1,96,2,131,1,137,255,134,255,38,0,200,255,78,0,187,1,210,1,147,0,54,0,65,1,227,1,166,1,
211,0,63,255,72,255,136,1,90,2,23,2,182,2,19,2,33,1,247,1,227,1,45,1,5,2,38,2,81,1,86,1,
104,1,189,1,61,2,241,1,156,2,197,3,159,3,22,4,24,4,192,1,69,1,8,3,218,2,63,2,220,2,220,2,
201,2,236,2,130,2,195,2,87,3,247,2,120,2,33,2,6,2,245,2,222,3,91,3,63,2,175,1,219,0,80,255,
214,255,65,2,177,1,206,255,3,1,69,1,91,255,248,255,127,0,253,254,211,255,180,0,222,254,20,255,168,0,5,255,
76,252,153,251,2,253,109,255,79,0,150,255,138,255,63,0,192,0,55,0,58,255,222,255,41,0,217,253,198,252,75,254,
60,255,241,255,89,0,180,254,1,254,162,255,59,255,18,253,1,254,147,0,52,0,18,255,77,0,89,0,252,253,131,253,
60,254,234,252,61,251,0,251,212,252,93,0,28,1,32,254,174,251,170,249,235,248,44,253,144,1,234,0,217,255,82,0,
139,255,234,254,204,255,212,0,234,0,7,255,245,252,132,253,70,254,8,253,135,252,147,253,226,253,37,253,243,252,145,254,
49,1,68,2,106,1,166,0,162,0,204,0,16,1,115,1,249,1,247,1,176,255,9,252,82,251,60,254,120,0,32,1,
93,3,88,6,152,5,170,0,82,252,134,252,41,0,167,3,30,5,189,4,197,3,104,2,16,255,137,251,7,252,140,254,
104,255,131,0,73,1,61,255,53,255,153,2,246,1,240,253,238,252,38,252,88,249,13,247,232,240,15,232,78,236,157,255,
88,13,136,10,19,1,248,251,160,253,104,2,112,4,34,2,105,255,171,255,167,1,112,0,169,249,237,241,39,239,82,241,
141,243,112,242,6,240,20,240,100,242,93,244,12,245,7,245,71,245,18,247,97,251,177,1,225,7,73,11,206,10,67,8,
131,5,234,2,49,2,179,3,61,4,236,2,125,0,40,252,9,248,127,246,217,245,163,245,196,246,85,248,167,250,127,254,
112,1,235,0,213,254,249,254,178,1,68,5,167,7,210,6,14,5,79,5,68,5,154,4,49,5,84,5,76,5,0,6,
235,4,104,3,141,4,222,6,140,8,54,9,174,9,13,11,143,11,168,10,204,10,164,11,63,11,87,10,136,10,33,11,
153,10,220,9,31,9,64,7,35,6,59,6,222,5,132,6,166,7,121,7,196,7,100,7,249,4,187,3,234,3,8,4,
108,4,79,4,83,4,208,4,44,4,69,4,57,6,76,7,249,6,61,6,234,5,152,6,25,7,134,7,122,8,18,8,
75,6,197,5,37,7,197,7,169,5,214,3,85,4,229,3,77,1,211,253,96,250,236,248,138,248,73,247,109,246,147,245,
209,244,192,245,231,245,147,244,38,244,162,243,116,243,47,245,202,246,65,247,20,247,197,246,78,247,111,247,219,246,99,247,
13,248,50,248,37,249,73,250,176,250,165,250,52,251,234,252,27,254,22,254,181,253,239,252,103,252,253,251,4,251,212,250,
14,251,228,250,91,251,4,251,180,249,233,249,221,250,198,251,228,252,235,252,180,252,239,252,113,252,232,251,237,250,59,249,
58,249,247,249,155,249,241,249,255,250,43,251,26,251,239,251,154,253,212,254,225,254,207,254,169,255,73,1,42,2,145,1,
115,1,127,2,158,3,38,5,152,6,159,6,4,6,55,6,253,6,31,6,163,3,128,3,20,6,148,8,103,11,67,13,
252,11,231,10,113,11,163,10,71,9,222,8,215,7,140,6,41,6,122,5,4,4,147,2,110,1,92,1,62,2,156,1,
15,255,125,253,228,253,124,254,9,254,157,252,17,251,37,250,226,249,255,249,186,249,215,248,147,248,143,249,39,251,193,252,
70,253,57,252,138,251,172,252,20,254,46,254,9,254,201,254,20,255,0,254,94,253,247,253,144,254,72,255,215,255,157,254,
69,253,80,254,209,255,25,0,137,0,227,0,251,255,243,254,224,254,81,255,152,255,150,255,4,0,44,1,10,2,43,2,
234,1,123,1,72,1,81,1,77,1,201,1,99,2,229,1,52,1,100,1,121,1,55,1,147,1,113,2,16,3,241,2,
97,2,87,2,118,2,248,1,216,1,69,2,21,2,180,1,178,1,76,1,188,0,137,0,76,0,118,0,110,1,45,2,
55,2,144,1,224,255,121,254,11,255,63,0,46,0,138,255,75,255,115,255,76,0,84,1,71,1,213,0,111,1,82,2,
63,2,81,1,38,0,239,255,81,1,154,2,89,2,87,1,86,0,249,255,252,0,36,2,19,2,205,1,250,1,195,1,
222,0,156,255,183,254,234,254,32,255,21,254,9,253,60,253,179,253,146,253,73,253,239,252,67,252,49,252,162,253,36,255,
35,255,192,254,68,255,249,255,210,255,173,254,181,253,220,253,194,253,186,252,97,252,162,252,170,253,115,1,196,4,245,2,
4,0,25,0,238,255,129,254,224,253,59,252,167,249,21,250,177,252,178,253,80,253,33,253,5,253,231,252,14,253,226,252,
239,251,237,251,56,254,20,0,79,255,189,254,215,255,179,255,254,253,180,253,6,255,157,255,235,254,128,254,40,255,33,0,
10,1,78,1,129,255,81,253,72,254,196,0,21,1,104,0,166,0,149,0,228,255,160,255,131,255,38,255,12,255,124,255,
221,255,192,255,99,0,139,2,185,3,91,2,29,1,147,1,241,1,121,1,216,0,67,0,107,0,75,1,61,1,97,0,
172,0,184,1,202,1,144,1,84,2,20,3,161,2,214,1,209,1,139,2,194,3,244,4,9,5,226,3,191,2,110,2,
165,2,165,2,25,2,181,1,254,1,246,1,16,1,99,0,176,0,181,1,139,2,241,1,151,0,155,0,131,1,139,1,
30,1,14,1,103,1,248,1,127,1,44,0,110,0,177,1,138,1,250,0,250,0,119,0,21,0,40,0,159,255,181,255,
8,1,90,1,198,0,39,1,214,1,198,1,73,1,58,1,90,2,89,3,155,2,150,1,137,1,129,1,192,1,9,3,
96,4,133,4,111,3,210,2,177,3,57,4,36,4,22,5,102,5,127,4,129,5,24,7,82,6,210,5,112,6,102,5,
84,4,51,5,149,5,109,4,58,3,191,2,143,2,107,1,87,0,186,1,95,3,187,2,74,2,123,2,58,1,124,0,
48,1,101,0,94,254,88,253,229,252,180,252,218,252,45,252,255,250,227,250,137,251,224,251,249,251,195,251,127,250,190,248,
56,248,187,248,1,249,131,249,73,250,25,250,152,249,225,249,116,250,9,251,32,251,72,250,39,250,28,251,83,251,80,251,
31,252,158,252,248,252,189,253,204,253,96,253,73,253,17,253,34,253,71,253,87,252,203,251,130,252,70,252,48,251,41,251,
162,251,8,252,191,252,117,253,30,254,101,254,240,253,68,254,70,255,235,254,150,254,175,255,165,255,120,254,13,255,72,0,
27,0,6,0,189,0,217,0,82,0,2,0,241,255,236,255,222,255,165,255,47,255,217,254,68,255,19,0,40,0,142,255,
66,255,181,255,144,0,229,0,66,0,147,255,80,255,237,254,204,254,66,255,47,255,86,254,177,253,82,253,87,253,10,254,
68,254,177,253,207,253,91,254,246,253,104,253,100,253,231,252,25,252,62,252,66,253,55,254,115,254,233,253,132,253,249,253,
117,254,28,254,115,253,64,253,110,253,168,253,165,253,12,253,112,252,230,252,15,254,204,254,16,255,244,254,142,254,119,254,
33,254,18,253,53,253,34,255,89,0,11,0,177,255,210,255,90,0,193,0,40,0,137,255,249,255,70,0,167,255,254,254,
251,254,188,255,140,0,112,0,200,255,55,255,6,255,6,0,89,1,252,0,251,255,42,0,84,0,190,255,191,255,97,0,
145,0,91,0,48,0,11,0,78,0,56,1,96,1,178,255,65,254,34,255,13,1,73,2,149,2,80,2,172,2,102,3,
133,2,88,1,83,2,125,3,17,3,102,2,198,1,124,1,119,2,229,2,177,1,37,1,213,1,127,2,40,3,140,3,
46,3,124,2,9,2,204,2,22,4,43,3,55,1,246,1,236,3,254,3,112,3,162,3,215,3,9,4,59,4,218,3,
33,3,176,2,227,2,82,3,217,2,187,1,167,1,167,2,29,3,143,2,237,1,148,1,91,1,216,1,172,2,2,2,
188,0,106,1,208,2,197,2,71,2,193,1,214,0,224,0,146,1,133,1,64,2,53,4,194,4,226,3,100,3,205,2,
71,2,99,3,240,4,107,4,128,2,176,1,106,2,60,3,153,3,242,3,240,3,38,3,150,2,32,3,188,3,76,3,
194,2,230,2,128,2,148,1,17,2,99,3,105,3,216,2,183,2,250,1,244,0,247,0,90,1,114,1,198,1,246,1,
125,1,27,1,98,1,27,2,16,3,253,3,125,4,125,4,34,4,101,3,79,2,162,1,253,1,119,2,239,1,247,0,
162,0,227,0,82,1,162,1,64,1,89,0,31,0,174,0,9,1,122,1,159,2,96,3,238,2,88,2,73,2,69,2,
42,2,67,2,111,2,105,2,112,2,196,2,156,2,139,1,220,0,64,1,185,1,203,1,130,1,254,0,237,0,228,0,
48,0,39,0,219,0,124,0,241,255,95,0,35,0,101,255,101,255,18,255,173,254,45,255,201,254,127,253,107,253,163,253,
96,253,22,254,235,254,84,254,155,253,26,254,57,255,83,255,251,253,138,253,161,254,159,254,246,253,149,254,151,254,240,253,
59,255,17,0,236,253,122,252,53,253,55,253,254,252,217,253,193,253,45,253,135,254,173,255,97,254,97,253,37,254,152,254,
186,254,164,255,34,0,212,255,205,255,127,255,105,254,125,253,247,252,242,252,248,253,3,255,235,254,83,254,207,253,91,253,
87,253,185,253,243,253,205,253,160,253,247,253,83,254,236,253,12,254,86,255,116,255,49,254,87,254,112,255,81,255,2,255,
77,255,222,254,35,254,31,254,237,253,156,253,69,254,1,255,207,254,170,254,46,255,170,255,213,255,14,0,83,0,30,0,
158,255,249,255,226,0,182,0,224,255,233,255,89,0,91,0,66,0,51,0,112,0,31,1,105,1,8,1,114,0,214,255,
251,255,106,0,72,255,87,254,13,0,118,1,135,0,73,0,83,1,65,1,127,0,78,0,68,0,2,0,132,255,131,255,
175,0,173,1,125,1,32,1,219,0,80,0,6,0,24,0,35,0,255,255,197,255,5,0,127,0,117,0,166,0,4,1,
56,0,100,255,142,255,22,255,26,254,203,253,113,253,158,253,38,255,0,0,45,255,228,253,245,252,99,253,210,254,50,255,
250,254,92,255,117,255,177,255,130,0,21,0,172,254,34,254,55,254,139,254,225,254,87,254,244,253,124,254,118,254,12,254,
70,254,102,254,93,254,96,254,195,253,117,253,23,254,71,254,66,254,152,254,242,253,5,253,150,253,46,254,168,253,190,253,
162,254,162,254,37,254,188,254,144,255,24,255,87,254,115,254,111,254,43,254,111,254,142,254,160,254,112,255,166,255,221,254,
215,254,8,255,122,254,227,254,93,0,203,0,37,0,157,255,123,255,105,255,202,254,48,254,215,254,189,255,140,255,18,255,
182,254,39,254,16,254,73,254,202,253,255,252,217,252,99,253,39,254,59,254,128,253,39,253,173,253,196,254,38,0,199,0,
33,0,119,255,92,255,115,255,25,0,189,0,38,0,88,255,144,255,236,255,194,255,138,255,165,255,88,0,13,1,192,0,
13,0,180,255,1,255,40,254,47,254,180,254,30,255,103,255,54,255,232,254,69,255,174,255,99,255,230,254,174,254,183,254,
251,254,101,255,245,255,132,0,211,0,10,1,10,1,74,0,29,255,139,254,19,255,42,0,184,0,140,0,54,0,171,255,
59,255,150,255,18,0,35,0,60,0,14,0,87,0,94,2,149,3,8,2,1,1,24,2,237,2,184,2,27,1,234,253,
173,252,232,254,139,0,203,255,191,254,80,254,251,254,235,0,25,2,119,1,97,0,189,255,186,255,55,0,115,0,92,0,
58,0,152,255,252,254,129,255,130,0,52,1,20,2,160,2,193,1,97,0,239,255,35,0,54,0,23,0,22,0,118,0,
201,0,156,0,198,0,161,1,227,1,103,1,53,1,204,0,196,255,70,255,137,255,171,255,114,255,16,255,3,255,95,255,
61,255,240,254,117,255,212,255,191,255,99,0,166,0,84,255,101,254,252,254,159,255,157,255,121,255,167,255,19,0,233,255,
50,255,33,255,238,255,213,0,255,0,28,0,183,255,194,0,223,0,62,255,186,254,245,255,220,0,61,1,157,1,80,1,
138,0,60,0,38,0,188,255,119,255,171,255,184,255,157,255,16,0,151,0,115,0,64,0,62,0,248,255,228,255,68,0,
101,0,68,0,101,0,204,0,44,1,47,1,230,0,144,0,30,0,29,0,220,0,252,0,61,0,30,0,159,0,36,1,
161,1,8,1,221,255,86,0,17,1,252,255,28,255,91,255,29,255,37,255,43,0,114,0,2,0,34,0,65,0,25,0,
92,0,153,0,51,0,142,255,23,255,207,254,164,254,182,254,74,255,52,0,200,0,139,0,232,255,220,255,90,0,114,0,
60,0,29,0,169,255,55,255,110,255,163,255,131,255,95,255,227,254,238,254,175,0,200,1,39,0,243,254,180,0,67,2,
251,0,76,255,139,255,91,0,129,0,182,0,166,0,179,255,133,255,204,0,130,1,153,1,152,2,20,3,222,1,48,1,
185,1,160,1,230,0,67,0,75,255,1,255,123,0,218,1,132,1,152,0,25,0,40,0,43,1,125,2,155,2,122,1,
3,0,170,254,30,254,201,254,173,255,21,0,149,0,59,1,69,1,163,0,184,255,253,254,247,254,57,255,29,255,63,255,
194,255,171,255,87,255,149,255,195,255,172,255,185,255,101,255,11,255,166,255,47,0,217,255,229,255,102,0,41,0,148,255,
180,255,104,0,225,0,175,0,104,0,130,0,102,0,31,0,65,0,53,0,199,255,193,255,244,255,52,0,242,0,42,1,
75,0,49,0,52,1,44,1,2,0,129,255,154,255,132,255,1,0,65,1,213,1,158,1,197,1,180,1,197,0,97,0,
147,0,221,255,67,255,18,0,198,0,166,0,173,0,151,0,53,0,138,0,52,1,13,1,119,0,56,0,63,0,102,0,
159,0,225,0,72,1,173,1,127,1,171,0,10,0,17,0,17,0,226,255,103,0,137,1,228,1,219,0,155,255,148,255,
74,0,62,0,225,255,75,0,118,0,181,255,71,255,87,255,7,255,191,254,237,254,37,255,103,255,180,255,210,255,61,0,
45,1,132,1,127,0,52,255,7,255,129,255,85,255,155,254,250,253,124,253,171,253,210,254,129,255,244,254,120,254,181,254,
226,254,212,254,9,255,109,255,152,255,115,255,37,255,192,254,139,254,0,255,247,255,163,0,166,0,73,0,238,255,177,255,
102,255,20,255,10,255,88,255,214,255,63,0,70,0,70,0,123,0,49,0,149,255,183,255,43,0,83,0,212,0,91,1,
64,1,93,1,188,1,154,1,187,1,52,2,183,1,204,0,124,0,37,0,197,255,21,0,188,0,76,1,148,1,98,1,
130,1,33,2,251,1,69,1,197,0,143,255,33,254,143,254,8,0,135,0,141,0,207,0,215,0,254,0,139,1,142,1,
202,0,105,0,29,1,212,1,37,1,227,255,239,255,211,0,246,0,145,0,105,0,77,0,57,0,96,0,168,0,60,1,
6,2,78,2,27,2,13,2,204,1,217,0,21,0,114,0,89,1,174,1,85,1,229,0,191,0,245,0,69,1,27,1,
105,0,241,255,24,0,94,0,63,0,211,255,127,255,117,255,154,255,205,255,5,0,38,0,19,0,211,255,126,255,55,255,
62,255,178,255,63,0,93,0,25,0,244,255,232,255,153,255,110,255,209,255,31,0,1,0,46,0,177,0,212,0,159,0,
110,0,79,0,115,0,190,0,155,0,27,0,160,255,59,255,90,255,1,0,2,0,60,255,24,255,171,255,188,255,93,255,
137,255,20,0,201,255,118,254,174,253,55,254,214,254,45,255,236,255,22,0,253,254,102,254,236,254,16,255,186,254,169,254,
123,254,84,254,241,254,193,255,224,255,151,255,140,255,231,255,83,0,84,0,237,255,192,255,29,0,130,0,96,0,232,255,
161,255,198,255,58,0,144,0,120,0,57,0,244,255,163,255,201,255,81,0,60,0,189,255,173,255,163,255,136,255,7,0,
130,0,76,0,11,0,1,0,252,255,21,0,223,255,97,255,181,255,172,0,14,1,206,0,83,0,186,255,128,255,193,255,
40,0,159,0,190,0,115,0,155,0,11,1,205,0,99,0,129,0,180,0,223,0,31,1,42,1,75,1,187,1,160,1,
224,0,124,0,126,0,88,0,73,0,92,0,5,0,156,255,237,255,126,0,106,0,10,0,16,0,74,0,87,0,45,0,
214,255,127,255,71,255,35,255,52,255,105,255,89,255,34,255,60,255,110,255,85,255,42,255,38,255,21,255,238,254,253,254,
25,255,176,254,67,254,181,254,46,255,174,254,52,254,90,254,83,254,59,254,121,254,155,254,232,254,147,255,110,255,121,254,
27,254,63,254,32,254,17,254,71,254,128,254,185,254,226,254,242,254,18,255,99,255,22,0,224,0,218,0,79,0,102,0,
208,0,140,0,224,255,139,255,193,255,95,0,234,0,195,0,229,255,10,255,203,254,248,254,71,255,213,255,55,0,202,255,
38,255,24,255,79,255,154,255,52,0,144,0,35,0,125,255,90,255,183,255,20,0,4,0,148,255,39,255,241,254,226,254,
247,254,48,255,48,255,158,254,23,254,98,254,249,254,31,255,237,254,143,254,110,254,29,255,189,255,73,255,188,254,243,254,
77,255,136,255,175,255,134,255,131,255,210,255,172,255,74,255,147,255,47,0,127,0,117,0,34,0,28,0,190,0,20,1,
187,0,178,0,38,1,43,1,160,0,81,0,165,0,215,0,36,0,91,255,122,255,193,255,121,255,101,255,206,255,236,255,
164,255,105,255,78,255,111,255,237,255,66,0,208,255,249,254,155,254,198,254,13,255,113,255,193,255,150,255,130,255,17,0,
80,0,205,255,146,255,190,255,156,255,154,255,0,0,16,0,225,255,21,0,77,0,43,0,32,0,109,0,210,0,251,0,
224,0,207,0,195,0,139,0,130,0,123,0,219,255,129,255,71,0,242,0,198,0,172,0,171,0,115,0,175,0,59,1,
68,1,250,0,123,0,235,255,102,0,158,1,137,1,65,0,220,255,185,0,147,1,148,1,193,0,220,255,186,255,43,0,
136,0,176,0,169,0,62,0,159,255,142,255,51,0,170,0,116,0,28,0,248,255,247,255,73,0,241,0,101,1,49,1,
89,0,103,255,66,255,246,255,85,0,184,255,49,255,198,255,133,0,73,0,236,255,80,0,154,0,45,0,121,255,204,254,
159,254,73,255,19,0,56,0,199,255,98,255,211,255,104,0,243,255,234,255,37,1,255,0,106,255,151,255,134,0,201,255,
53,255,194,255,204,255,251,255,188,0,54,0,56,255,232,255,241,0,202,0,139,0,202,0,226,0,211,0,235,0,242,0,
158,0,53,0,49,0,103,0,106,0,69,0,15,0,220,255,251,255,101,0,201,0,252,0,209,0,129,0,119,0,92,0,
238,255,197,255,215,255,150,255,102,255,215,255,120,0,155,0,82,0,69,0,141,0,122,0,6,0,210,255,234,255,63,0,
225,0,29,1,171,0,142,0,1,1,18,1,136,0,247,255,182,255,198,255,252,255,51,0,92,0,97,0,84,0,94,0,
85,0,37,0,54,0,140,0,122,0,223,255,205,255,194,0,104,1,209,0,41,0,76,0,132,0,164,0,6,1,5,1,
103,0,35,0,74,0,26,0,227,255,32,0,53,0,249,255,30,0,105,0,22,0,169,255,222,255,66,0,109,0,155,0,
203,0,211,0,142,0,218,255,95,255,190,255,30,0,238,255,15,0,159,0,202,0,143,0,39,0,216,255,66,0,155,0,
181,255,224,254,97,255,222,255,172,255,189,255,230,255,223,255,64,0,143,0,11,0,102,255,40,255,29,255,116,255,227,255,
199,255,156,255,242,255,54,0,232,255,76,255,235,254,25,255,139,255,195,255,232,255,58,0,109,0,87,0,9,0,141,255,
44,255,66,255,167,255,254,255,43,0,17,0,175,255,142,255,254,255,68,0,247,255,231,255,87,0,131,0,102,0,130,0,
148,0,92,0,49,0,75,0,144,0,178,0,112,0,48,0,69,0,58,0,3,0,38,0,104,0,82,0,39,0,32,0,
12,0,201,255,117,255,95,255,169,255,236,255,180,255,65,255,58,255,161,255,158,255,4,255,196,254,243,254,172,254,75,254,
227,254,218,255,44,0,83,0,170,0,109,0,164,255,102,255,196,255,250,255,11,0,79,0,97,0,203,255,254,254,213,254,
80,255,169,255,194,255,224,255,200,255,189,255,77,0,157,0,0,0,162,255,24,0,120,0,113,0,27,0,122,255,75,255,
243,255,116,0,34,0,148,255,144,255,7,0,92,0,124,0,145,0,63,0,209,255,12,0,93,0,35,0,16,0,95,0,
153,0,167,0,125,0,107,0,190,0,166,0,8,0,222,255,189,255,82,255,163,255,40,0,185,255,69,255,107,255,140,255,
182,255,224,255,246,255,142,0,248,0,62,0,190,255,58,0,67,0,208,255,33,0,201,0,223,0,185,0,176,0,132,0,
35,0,178,255,57,255,249,254,77,255,189,255,180,255,159,255,200,255,174,255,62,255,207,254,176,254,38,255,168,255,162,255,
206,255,62,0,245,255,159,255,39,0,110,0,5,0,222,255,193,255,115,255,194,255,84,0,25,0,106,255,23,255,43,255,
116,255,169,255,147,255,132,255,216,255,50,0,245,255,86,255,17,255,51,255,54,255,11,255,247,254,251,254,26,255,84,255,
86,255,1,255,202,254,210,254,196,254,207,254,55,255,96,255,7,255,244,254,83,255,136,255,148,255,147,255,80,255,40,255,
103,255,123,255,59,255,72,255,154,255,143,255,96,255,195,255,65,0,251,255,143,255,219,255,63,0,38,0,19,0,39,0,
52,0,122,0,183,0,122,0,41,0,11,0,246,255,9,0,76,0,146,0,8,1,115,1,42,1,119,0,51,0,82,0,
80,0,53,0,61,0,82,0,71,0,49,0,59,0,53,0,241,255,230,255,96,0,160,0,59,0,245,255,252,255,192,255,
149,255,162,255,38,255,180,254,85,255,253,255,178,255,93,255,105,255,86,255,58,255,55,255,54,255,109,255,194,255,217,255,
197,255,178,255,161,255,160,255,189,255,250,255,56,0,101,0,163,0,185,0,95,0,10,0,15,0,61,0,177,0,13,1,
159,0,7,0,192,255,20,255,145,254,66,255,27,0,34,0,230,255,126,255,239,254,14,255,194,255,35,0,54,0,82,0,
64,0,209,255,85,255,107,255,45,0,164,0,41,0,159,255,221,255,43,0,211,255,117,255,132,255,137,255,155,255,33,0,
115,0,250,255,105,255,114,255,225,255,50,0,19,0,187,255,174,255,222,255,217,255,179,255,195,255,222,255,166,255,82,255,
99,255,194,255,236,255,184,255,117,255,132,255,199,255,192,255,160,255,236,255,37,0,209,255,135,255,155,255,192,255,236,255,
250,255,199,255,200,255,40,0,103,0,75,0,248,255,168,255,153,255,205,255,17,0,49,0,17,0,234,255,231,255,216,255,
196,255,185,255,141,255,141,255,231,255,7,0,221,255,218,255,218,255,219,255,13,0,4,0,179,255,177,255,234,255,34,0,
122,0,143,0,32,0,227,255,30,0,48,0,234,255,197,255,224,255,5,0,44,0,61,0,13,0,246,255,46,0,42,0,
236,255,9,0,37,0,218,255,178,255,183,255,133,255,123,255,191,255,201,255,146,255,140,255,210,255,4,0,203,255,150,255,
221,255,29,0,12,0,0,0,194,255,59,255,254,254,14,255,78,255,1,0,126,0,8,0,132,255,155,255,145,255,58,255,
71,255,137,255,128,255,121,255,172,255,187,255,190,255,11,0,54,0,226,255,138,255,144,255,182,255,203,255,227,255,6,0,
21,0,5,0,10,0,28,0,7,0,20,0,100,0,108,0,52,0,78,0,123,0,85,0,46,0,62,0,95,0,101,0,
40,0,213,255,213,255,37,0,111,0,151,0,159,0,91,0,214,255,173,255,18,0,56,0,248,255,12,0,43,0,214,255,
163,255,196,255,215,255,8,0,63,0,89,0,170,0,168,0,246,255,225,255,165,0,213,0,84,0,250,255,222,255,232,255,
2,0,37,0,141,0,200,0,104,0,25,0,30,0,1,0,249,255,40,0,44,0,52,0,106,0,108,0,64,0,27,0,
242,255,251,255,80,0,137,0,124,0,154,0,244,0,228,0,112,0,142,0,12,1,234,0,183,0,62,1,164,1,87,1,
11,1,8,1,18,1,35,1,75,1,117,1,64,1,148,0,44,0,70,0,62,0,254,255,211,255,174,255,153,255,151,255,
118,255,81,255,65,255,73,255,146,255,211,255,165,255,88,255,53,255,22,255,242,254,237,254,56,255,172,255,178,255,119,255,
166,255,255,255,45,0,84,0,48,0,222,255,228,255,205,255,114,255,154,255,10,0,56,0,103,0,91,0,231,255,182,255,
171,255,124,255,198,255,61,0,21,0,245,255,98,0,153,0,94,0,66,0,104,0,125,0,70,0,13,0,65,0,142,0,
120,0,54,0,21,0,4,0,246,255,0,0,48,0,81,0,24,0,202,255,194,255,187,255,137,255,141,255,203,255,238,255,
241,255,218,255,172,255,169,255,216,255,208,255,120,255,50,255,36,255,34,255,62,255,159,255,247,255,236,255,189,255,195,255,
225,255,246,255,17,0,252,255,159,255,129,255,204,255,234,255,196,255,207,255,250,255,10,0,22,0,27,0,35,0,103,0,
183,0,214,0,214,0,158,0,74,0,115,0,251,0,28,1,224,0,216,0,245,0,220,0,158,0,121,0,94,0,34,0,
250,255,28,0,85,0,127,0,144,0,69,0,196,255,152,255,158,255,108,255,78,255,136,255,172,255,134,255,113,255,117,255,
72,255,29,255,100,255,199,255,148,255,3,255,244,254,129,255,233,255,206,255,138,255,120,255,157,255,206,255,210,255,137,255,
15,255,190,254,241,254,108,255,145,255,123,255,153,255,153,255,84,255,94,255,180,255,194,255,164,255,179,255,203,255,199,255,
178,255,155,255,128,255,113,255,181,255,59,0,118,0,91,0,82,0,82,0,67,0,61,0,59,0,105,0,145,0,44,0,
220,255,53,0,73,0,244,255,45,0,157,0,164,0,132,0,38,0,178,255,202,255,16,0,43,0,112,0,107,0,237,255,
218,255,45,0,76,0,98,0,99,0,12,0,182,255,197,255,65,0,180,0,124,0,255,255,236,255,4,0,24,0,69,0,
86,0,126,0,201,0,171,0,105,0,112,0,48,0,191,255,198,255,250,255,37,0,124,0,157,0,110,0,90,0,116,0,
179,0,225,0,161,0,77,0,38,0,235,255,223,255,15,0,1,0,1,0,53,0,248,255,138,255,134,255,140,255,155,255,
6,0,26,0,127,255,58,255,184,255,250,255,140,255,110,255,248,255,25,0,172,255,155,255,216,255,253,255,77,0,148,0,
92,0,249,255,217,255,244,255,2,0,212,255,200,255,17,0,83,0,154,0,212,0,110,0,0,0,84,0,154,0,99,0,
67,0,1,0,144,255,183,255,104,0,62,1,235,1,110,1,218,255,1,255,145,255,114,0,196,0,83,0,138,255,72,255,
196,255,70,0,87,0,99,0,194,0,220,0,117,0,97,0,160,0,118,0,61,0,97,0,91,0,58,0,72,0,33,0,
232,255,10,0,29,0,253,255,14,0,66,0,114,0,144,0,105,0,45,0,35,0,4,0,220,255,228,255,204,255,160,255,
230,255,95,0,136,0,128,0,113,0,94,0,83,0,29,0,192,255,198,255,38,0,55,0,251,255,230,255,232,255,226,255,
17,0,92,0,92,0,39,0,32,0,83,0,138,0,144,0,85,0,19,0,24,0,90,0,148,0,176,0,183,0,144,0,
60,0,15,0,38,0,25,0,239,255,42,0,100,0,245,255,159,255,21,0,128,0,107,0,93,0,51,0,192,255,193,255,
65,0,126,0,152,0,252,0,52,1,212,0,75,0,68,0,215,0,109,1,117,1,231,0,45,0,195,255,182,255,168,255,
139,255,161,255,225,255,25,0,24,0,217,255,180,255,182,255,143,255,132,255,231,255,39,0,235,255,153,255,136,255,211,255,
52,0,40,0,244,255,255,255,243,255,228,255,39,0,53,0,250,255,35,0,96,0,31,0,207,255,180,255,145,255,150,255,
231,255,20,0,222,255,170,255,217,255,6,0,207,255,197,255,50,0,73,0,218,255,194,255,25,0,32,0,198,255,157,255,
177,255,159,255,134,255,175,255,208,255,182,255,177,255,177,255,148,255,180,255,244,255,223,255,207,255,41,0,126,0,104,0,
10,0,178,255,174,255,8,0,105,0,105,0,0,0,201,255,30,0,88,0,26,0,224,255,175,255,75,255,60,255,183,255,
18,0,223,255,78,255,251,254,127,255,110,0,196,0,87,0,197,255,150,255,221,255,39,0,246,255,105,255,27,255,116,255,
14,0,66,0,60,0,67,0,18,0,246,255,88,0,129,0,29,0,223,255,215,255,210,255,245,255,221,255,148,255,186,255,
184,255,84,255,192,255,106,0,194,255,225,254,32,255,148,255,168,255,195,255,174,255,81,255,32,255,73,255,163,255,211,255,
207,255,253,255,34,0,233,255,209,255,180,255,42,255,65,255,40,0,50,0,143,255,238,255,160,0,69,0,213,255,45,0,
99,0,44,0,64,0,110,0,46,0,238,255,242,255,233,255,3,0,112,0,117,0,228,255,172,255,251,255,4,0,180,255,
158,255,173,255,151,255,168,255,241,255,244,255,190,255,238,255,96,0,91,0,233,255,173,255,205,255,252,255,23,0,20,0,
232,255,214,255,35,0,116,0,101,0,37,0,245,255,235,255,32,0,79,0,54,0,27,0,19,0,1,0,22,0,44,0,
243,255,199,255,223,255,234,255,225,255,195,255,114,255,79,255,131,255,169,255,187,255,215,255,204,255,170,255,156,255,145,255,
146,255,157,255,156,255,195,255,11,0,18,0,238,255,245,255,20,0,48,0,94,0,113,0,25,0,142,255,109,255,199,255,
29,0,89,0,172,0,198,0,115,0,49,0,100,0,186,0,189,0,106,0,3,0,180,255,121,255,83,255,90,255,146,255,
219,255,12,0,27,0,13,0,254,255,8,0,247,255,207,255,253,255,66,0,241,255,113,255,103,255,117,255,111,255,155,255,
186,255,165,255,197,255,4,0,248,255,207,255,233,255,31,0,40,0,47,0,98,0,94,0,246,255,201,255,20,0,56,0,
249,255,198,255,212,255,238,255,2,0,18,0,232,255,170,255,242,255,102,0,68,0,42,0,130,0,86,0,206,255,250,255,
65,0,224,255,141,255,177,255,244,255,59,0,76,0,44,0,66,0,90,0,35,0,241,255,233,255,228,255,236,255,227,255,
193,255,213,255,33,0,68,0,13,0,178,255,152,255,188,255,195,255,194,255,233,255,242,255,207,255,226,255,38,0,62,0,
43,0,21,0,227,255,169,255,214,255,83,0,109,0,38,0,25,0,58,0,67,0,94,0,126,0,99,0,40,0,15,0,
42,0,67,0,18,0,209,255,228,255,252,255,224,255,250,255,64,0,65,0,39,0,40,0,12,0,243,255,31,0,82,0,
65,0,253,255,179,255,151,255,160,255,140,255,138,255,201,255,230,255,205,255,232,255,1,0,189,255,109,255,109,255,186,255,
19,0,19,0,209,255,205,255,233,255,213,255,209,255,254,255,13,0,211,255,144,255,173,255,12,0,28,0,242,255,235,255,
198,255,134,255,185,255,45,0,62,0,16,0,21,0,29,0,247,255,5,0,69,0,22,0,184,255,243,255,73,0,25,0,
237,255,248,255,238,255,245,255,251,255,237,255,21,0,25,0,219,255,244,255,11,0,225,255,68,0,197,0,149,0,130,0,
172,0,79,0,3,0,19,0,206,255,133,255,126,255,71,255,47,255,85,255,44,255,12,255,67,255,58,255,27,255,116,255,
217,255,202,255,130,255,110,255,153,255,149,255,68,255,45,255,108,255,129,255,95,255,95,255,122,255,113,255,99,255,150,255,
222,255,230,255,240,255,61,0,105,0,43,0,223,255,213,255,219,255,203,255,205,255,222,255,209,255,209,255,245,255,255,255,
254,255,38,0,79,0,97,0,101,0,88,0,102,0,154,0,186,0,215,0,231,0,160,0,76,0,84,0,115,0,102,0,
61,0,11,0,3,0,28,0,21,0,17,0,45,0,55,0,69,0,121,0,181,0,227,0,199,0,67,0,225,255,241,255,
10,0,246,255,242,255,14,0,18,0,219,255,159,255,153,255,168,255,178,255,179,255,144,255,118,255,130,255,105,255,86,255,
179,255,6,0,226,255,212,255,19,0,24,0,218,255,206,255,251,255,3,0,213,255,191,255,220,255,236,255,229,255,238,255,
240,255,196,255,157,255,185,255,220,255,212,255,252,255,102,0,121,0,26,0,220,255,240,255,39,0,93,0,92,0,37,0,
29,0,93,0,141,0,122,0,79,0,49,0,13,0,240,255,31,0,117,0,110,0,42,0,44,0,72,0,41,0,24,0,
55,0,56,0,81,0,173,0,148,0,246,255,231,255,96,0,101,0,33,0,26,0,5,0,221,255,248,255,43,0,66,0,
55,0,17,0,28,0,100,0,133,0,115,0,107,0,107,0,89,0,41,0,254,255,9,0,24,0,22,0,57,0,64,0,
8,0,254,255,17,0,231,255,190,255,180,255,166,255,190,255,225,255,220,255,240,255,34,0,60,0,103,0,144,0,118,0,
87,0,98,0,96,0,80,0,86,0,83,0,75,0,112,0,153,0,115,0,51,0,39,0,36,0,23,0,49,0,70,0,
63,0,84,0,92,0,57,0,67,0,92,0,67,0,66,0,101,0,101,0,79,0,48,0,19,0,36,0,37,0,228,255,
196,255,227,255,247,255,252,255,253,255,230,255,203,255,218,255,36,0,91,0,43,0,251,255,28,0,17,0,192,255,183,255,
245,255,28,0,53,0,88,0,104,0,94,0,82,0,81,0,72,0,47,0,41,0,21,0,207,255,179,255,236,255,27,0,
49,0,91,0,111,0,98,0,98,0,86,0,51,0,51,0,52,0,243,255,193,255,205,255,201,255,229,255,75,0,88,0,
4,0,253,255,11,0,222,255,236,255,254,255,189,255,204,255,35,0,23,0,7,0,30,0,210,255,120,255,112,255,60,255,
247,254,30,255,133,255,1,0,82,0,22,0,200,255,246,255,38,0,9,0,240,255,221,255,198,255,218,255,227,255,196,255,
201,255,223,255,180,255,139,255,177,255,221,255,224,255,235,255,239,255,200,255,169,255,175,255,175,255,174,255,206,255,236,255,
232,255,231,255,237,255,199,255,147,255,167,255,223,255,226,255,202,255,190,255,170,255,169,255,212,255,247,255,2,0,6,0,
233,255,196,255,209,255,7,0,46,0,32,0,239,255,208,255,205,255,211,255,229,255,242,255,251,255,45,0,90,0,58,0,
0,0,232,255,224,255,238,255,16,0,25,0,6,0,9,0,34,0,19,0,206,255,163,255,187,255,219,255,216,255,202,255,
190,255,166,255,129,255,137,255,217,255,1,0,216,255,216,255,254,255,223,255,192,255,229,255,242,255,211,255,186,255,153,255,
153,255,220,255,237,255,160,255,131,255,195,255,233,255,222,255,243,255,5,0,226,255,210,255,224,255,186,255,130,255,134,255,
177,255,243,255,37,0,19,0,252,255,19,0,27,0,3,0,219,255,167,255,173,255,238,255,6,0,239,255,224,255,218,255,
223,255,227,255,244,255,58,0,84,0,5,0,232,255,32,0,27,0,241,255,254,255,14,0,254,255,238,255,249,255,23,0,
4,0,205,255,215,255,7,0,10,0,12,0,12,0,227,255,225,255,28,0,58,0,53,0,33,0,239,255,202,255,220,255,
255,255,15,0,36,0,89,0,135,0,109,0,45,0,29,0,35,0,9,0,248,255,41,0,101,0,99,0,61,0,30,0,
0,0,10,0,66,0,50,0,228,255,233,255,18,0,254,255,2,0,41,0,23,0,3,0,19,0,4,0,252,255,40,0,
52,0,29,0,38,0,41,0,15,0,22,0,46,0,29,0,11,0,27,0,44,0,57,0,65,0,26,0,215,255,208,255,
2,0,26,0,9,0,9,0,35,0,41,0,30,0,29,0,19,0,245,255,0,0,42,0,33,0,250,255,253,255,22,0,
27,0,25,0,20,0,12,0,4,0,238,255,211,255,204,255,224,255,251,255,3,0,2,0,20,0,38,0,17,0,237,255,
217,255,214,255,222,255,208,255,165,255,162,255,213,255,243,255,226,255,192,255,141,255,89,255,108,255,190,255,220,255,164,255,
130,255,168,255,205,255,181,255,140,255,151,255,204,255,226,255,214,255,208,255,185,255,150,255,149,255,164,255,191,255,244,255,
250,255,199,255,189,255,205,255,192,255,221,255,32,0,44,0,20,0,3,0,244,255,6,0,33,0,8,0,253,255,32,0,
33,0,18,0,52,0,54,0,253,255,238,255,3,0,243,255,245,255,45,0,85,0,95,0,80,0,1,0,187,255,213,255,
241,255,221,255,249,255,57,0,61,0,28,0,17,0,18,0,7,0,240,255,228,255,248,255,29,0,57,0,46,0,3,0,
1,0,30,0,5,0,233,255,7,0,19,0,241,255,219,255,216,255,239,255,36,0,69,0,66,0,44,0,12,0,22,0,
68,0,68,0,23,0,241,255,227,255,239,255,234,255,201,255,214,255,251,255,244,255,235,255,237,255,221,255,229,255,244,255,
240,255,30,0,66,0,8,0,242,255,35,0,35,0,19,0,36,0,18,0,3,0,30,0,41,0,71,0,129,0,111,0,
47,0,32,0,33,0,31,0,48,0,62,0,83,0,106,0,91,0,70,0,64,0,28,0,252,255,27,0,64,0,60,0,
45,0,32,0,28,0,34,0,39,0,74,0,132,0,130,0,84,0,84,0,92,0,47,0,6,0,0,0,0,0,19,0,
39,0,20,0,4,0,29,0,49,0,40,0,15,0,229,255,215,255,17,0,80,0,86,0,85,0,87,0,37,0,232,255,
233,255,253,255,230,255,200,255,215,255,245,255,235,255,202,255,213,255,251,255,241,255,219,255,5,0,46,0,28,0,11,0,
15,0,4,0,3,0,23,0,22,0,252,255,226,255,217,255,230,255,229,255,218,255,231,255,236,255,207,255,204,255,229,255,
237,255,243,255,250,255,251,255,30,0,77,0,64,0,29,0,24,0,26,0,20,0,11,0,241,255,211,255,209,255,244,255,
23,0,6,0,222,255,244,255,38,0,22,0,243,255,1,0,12,0,251,255,251,255,12,0,14,0,7,0,2,0,7,0,
23,0,6,0,204,255,177,255,204,255,231,255,1,0,45,0,66,0,44,0,17,0,7,0,2,0,244,255,216,255,201,255,
218,255,246,255,3,0,2,0,1,0,9,0,10,0,3,0,11,0,15,0,242,255,216,255,220,255,219,255,198,255,176,255,
175,255,197,255,199,255,158,255,140,255,183,255,214,255,172,255,123,255,148,255,188,255,160,255,121,255,133,255,152,255,159,255,
175,255,150,255,89,255,74,255,100,255,121,255,131,255,134,255,150,255,192,255,218,255,205,255,185,255,185,255,213,255,250,255,
8,0,18,0,23,0,255,255,247,255,5,0,243,255,237,255,22,0,32,0,17,0,29,0,34,0,40,0,66,0,57,0,
21,0,17,0,31,0,56,0,89,0,91,0,90,0,113,0,107,0,84,0,93,0,94,0,69,0,47,0,20,0,19,0,
61,0,74,0,54,0,61,0,66,0,39,0,21,0,29,0,44,0,44,0,26,0,40,0,69,0,36,0,252,255,37,0,
70,0,25,0,243,255,12,0,64,0,100,0,85,0,39,0,14,0,14,0,31,0,47,0,27,0,9,0,46,0,75,0,
57,0,42,0,34,0,26,0,52,0,67,0,27,0,10,0,48,0,52,0,5,0,236,255,249,255,1,0,251,255,253,255,
4,0,2,0,0,0,2,0,1,0,6,0,15,0,7,0,2,0,17,0,23,0,14,0,23,0,27,0,255,255,225,255,
215,255,219,255,240,255,1,0,248,255,245,255,17,0,36,0,24,0,13,0,14,0,0,0,233,255,232,255,244,255,0,0,
18,0,33,0,28,0,13,0,255,255,239,255,229,255,233,255,243,255,253,255,0,0,255,255,7,0,15,0,11,0,5,0,
254,255,238,255,233,255,253,255,14,0,12,0,10,0,16,0,27,0,35,0,27,0,11,0,13,0,21,0,8,0,253,255,
9,0,15,0,0,0,247,255,245,255,244,255,245,255,239,255,220,255,210,255,223,255,246,255,12,0,14,0,251,255,242,255,
0,0,9,0,251,255,237,255,243,255,2,0,2,0,240,255,222,255,222,255,237,255,242,255,230,255,225,255,238,255,249,255,
254,255,1,0,254,255,1,0,13,0,17,0,14,0,11,0,6,0,255,255,2,0,4,0,250,255,240,255,246,255,3,0,
9,0,4,0,242,255,226,255,236,255,253,255,241,255,238,255,7,0,3,0,234,255,245,255,8,0,5,0,15,0,25,0,
6,0,238,255,220,255,212,255,222,255,221,255,213,255,233,255,251,255,244,255,244,255,240,255,219,255,221,255,236,255,243,255,
10,0,28,0,7,0,240,255,238,255,234,255,232,255,242,255,252,255,3,0,253,255,243,255,2,0,20,0,11,0,1,0,
10,0,17,0,24,0,25,0,11,0,0,0,5,0,8,0,5,0,252,255,240,255,242,255,7,0,22,0,15,0,254,255,
238,255,229,255,227,255,230,255,244,255,4,0,4,0,246,255,238,255,239,255,238,255,237,255,237,255,236,255,242,255,251,255,
3,0,13,0,13,0,252,255,247,255,10,0,13,0,253,255,255,255,8,0,1,0,252,255,254,255,246,255,240,255,246,255,
246,255,248,255,9,0,16,0,6,0,6,0,11,0,8,0,5,0,6,0,8,0,15,0,14,0,5,0,14,0,29,0,
21,0,8,0,9,0,3,0,250,255,254,255,1,0,250,255,254,255,8,0,255,255,242,255,251,255,2,0,244,255,240,255,
255,255,2,0,253,255,1,0,2,0,4,0,20,0,26,0,15,0,12,0,9,0,250,255,240,255,243,255,251,255,2,0,
3,0,8,0,18,0,16,0,4,0,3,0,7,0,9,0,16,0,22,0,12,0,4,0,13,0,16,0,4,0,5,0,
21,0,25,0,15,0,8,0,8,0,13,0,22,0,23,0,15,0,12,0,15,0,14,0,5,0,2,0,9,0,12,0,
5,0,4,0,9,0,8,0,2,0,251,255,254,255,9,0,4,0,248,255,0,0,11,0,3,0,255,255,5,0,8,0,
8,0,5,0,0,0,7,0,11,0,255,255,250,255,2,0,5,0,4,0,1,0,247,255,246,255,254,255,0,0,255,255,
1,0,0,0,252,255,250,255,248,255,248,255,250,255,252,255,255,255,255,255,252,255,252,255,1,0,9,0,14,0,14,0,
14,0,14,0,10,0,3,0,254,255,1,0,5,0,1,0,3,0,13,0,12,0,255,255,252,255,7,0,20,0,18,0,
4,0,4,0,13,0,7,0,254,255,252,255,246,255,248,255,6,0,10,0,5,0,5,0,254,255,248,255,0,0,7,0,
8,0,6,0,250,255,241,255,251,255,2,0,251,255,248,255,250,255,250,255,251,255,250,255,250,255,253,255,1,0,254,255,
250,255,250,255,250,255,246,255,245,255,250,255,251,255,247,255,246,255,247,255,248,255,249,255,251,255,253,255,253,255,1,0,
7,0,3,0,250,255,253,255,4,0,4,0,255,255,249,255,248,255,255,255,2,0,254,255,252,255,247,255,245,255,252,255,
252,255,250,255,3,0,4,0,248,255,250,255,255,255,252,255,255,255,5,0,3,0,5,0,8,0,1,0,250,255,252,255,
255,255,3,0,3,0,0,0,252,255,247,255,244,255,250,255,252,255,249,255,251,255,255,255,0,0,255,255,255,255,255,255,
252,255,252,255,0,0,4,0,5,0,3,0,252,255,248,255,255,255,7,0,5,0,2,0,3,0,4,0,0,0,255,255,
7,0,8,0,0,0,0,0,2,0,249,255,249,255,1,0,2,0,4,0,4,0,249,255,245,255,255,255,3,0,2,0,
2,0,253,255,251,255,251,255,250,255,253,255,255,255,252,255,1,0,8,0,1,0,251,255,255,255,1,0,3,0,8,0,
8,0,5,0,4,0,3,0,253,255,250,255,255,255,2,0,251,255,243,255,247,255,254,255,0,0,2,0,1,0,253,255,
251,255,253,255,253,255,251,255,251,255,1,0,3,0,4,0,5,0,2,0,0,0,3,0,1,0,253,255,255,255,0,0,
2,0,7,0,5,0,0,0,255,255,253,255,251,255,252,255,251,255,254,255,7,0,3,0,253,255,2,0,3,0,251,255,
250,255,251,255,249,255,251,255,253,255,255,255,3,0,255,255,248,255,249,255,254,255,0,0,254,255,253,255,1,0,5,0,
2,0,2,0,6,0,4,0,255,255,255,255,2,0,3,0,2,0,2,0,1,0,1,0,2,0,1,0,253,255,254,255,
255,255,251,255,251,255,2,0,4,0,0,0,252,255,252,255,255,255,254,255,253,255,1,0,0,0,249,255,255,255,6,0,
1,0,251,255,246,255,241,255,247,255,254,255,253,255,253,255,255,255,254,255,254,255,253,255,251,255,255,255,4,0,3,0,
3,0,2,0,2,0,4,0,255,255,246,255,250,255,3,0,1,0,252,255,0,0,5,0,4,0,252,255,249,255,254,255,
2,0,0,0,253,255,252,255,252,255,254,255,3,0,6,0,3,0,1,0,6,0,9,0,5,0,2,0,255,255,252,255,
249,255,250,255,1,0,6,0,0,0,253,255,3,0,2,0,252,255,253,255,254,255,0,0,1,0,252,255,253,255,7,0,
10,0,6,0,4,0,4,0,8,0,9,0,3,0,3,0,4,0,254,255,1,0,10,0,12,0,12,0,14,0,10,0,
4,0,2,0,1,0,255,255,255,255,1,0,5,0,6,0,4,0,4,0,1,0,252,255,253,255,0,0,1,0,2,0,
4,0,3,0,254,255,252,255,255,255,0,0,255,255,3,0,6,0,2,0,1,0,6,0,6,0,5,0,3,0,0,0,
254,255,255,255,2,0,6,0,4,0,0,0,3,0,4,0,2,0,5,0,6,0,7,0,12,0,11,0,4,0,3,0,
1,0,254,255,255,255,255,255,255,255,1,0,253,255,250,255,255,255,255,255,251,255,253,255,0,0,254,255,252,255,253,255,
255,255,255,255,250,255,251,255,2,0,5,0,0,0,251,255,254,255,5,0,5,0,254,255,253,255,2,0,5,0,2,0,
251,255,251,255,0,0,0,0,253,255,254,255,253,255,252,255,1,0,3,0,1,0,253,255,251,255,255,255,1,0,255,255,
255,255,254,255,250,255,255,255,6,0,3,0,0,0,255,255,255,255,0,0,253,255,249,255,252,255,254,255,251,255,255,255,
5,0,2,0,253,255,250,255,249,255,253,255,0,0,255,255,2,0,7,0,5,0,1,0,254,255,254,255,1,0,2,0,
3,0,3,0,3,0,5,0,6,0,3,0,1,0,0,0,253,255,254,255,255,255,253,255,254,255,254,255,251,255,253,255,
255,255,253,255,251,255,252,255,251,255,250,255,250,255,254,255,2,0,255,255,254,255,1,0,3,0,3,0,1,0,251,255,
250,255,0,0,2,0,0,0,0,0,255,255,1,0,2,0,253,255,253,255,255,255,250,255,249,255,255,255,254,255,252,255,
0,0,3,0,3,0,2,0,1,0,0,0,254,255,0,0,3,0,2,0,1,0,3,0,2,0,2,0,2,0,254,255,
249,255,252,255,1,0,5,0,7,0,5,0,0,0,255,255,0,0,1,0,253,255,247,255,249,255,2,0,4,0,1,0,
2,0,2,0,254,255,250,255,252,255,1,0,0,0,254,255,2,0,3,0,1,0,2,0,2,0,2,0,5,0,2,0,
252,255,255,255,3,0,2,0,1,0,1,0,0,0,1,0,1,0,0,0,255,255,253,255,253,255,255,255,255,255,254,255,
254,255,252,255,253,255,254,255,255,255,255,255,254,255,254,255,1,0,2,0,2,0,4,0,3,0,0,0,2,0,3,0,
253,255,252,255,255,255,0,0,1,0,1,0,0,0,0,0,0,0,0,0,255,255,254,255,255,255,0,0,0,0,2,0,
2,0,255,255,255,255,1,0,254,255,252,255,254,255,255,255,0,0,1,0,0,0,3,0,5,0,2,0,2,0,2,0,
253,255,254,255,4,0,5,0,3,0,0,0,0,0,2,0,1,0,255,255,0,0,2,0,5,0,4,0,254,255,254,255,
2,0,2,0,2,0,4,0,3,0,0,0,1,0,0,0,255,255,254,255,252,255,254,255,0,0,255,255,255,255,2,0,
2,0,0,0,0,0,255,255,255,255,255,255,0,0,0,0,0,0,0,0,1,0,1,0,0,0,255,255,253,255,254,255,
2,0,2,0,0,0,3,0,4,0,2,0,2,0,1,0,255,255,255,255,255,255,255,255,255,255,253,255,253,255,254,255,
255,255,255,255,255,255,254,255,254,255,255,255,0,0,1,0,1,0,0,0,0,0,1,0,1,0,2,0,255,255,253,255,
2,0,4,0,2,0,2,0,1,0,
};

564
src/client/sound/data/cloth4.pcm Executable file
View File

@@ -0,0 +1,564 @@
unsigned char PCM_cloth4[17962] = {
1,0,0,0,2,0,0,0,68,172,0,0,13,35,0,0,0,0,0,0,254,255,255,255,0,0,0,0,255,255,255,255,
255,255,253,255,253,255,255,255,255,255,254,255,255,255,254,255,253,255,253,255,254,255,254,255,254,255,254,255,253,255,254,255,
255,255,254,255,253,255,253,255,251,255,251,255,255,255,2,0,254,255,251,255,251,255,253,255,254,255,255,255,253,255,249,255,
252,255,255,255,251,255,247,255,250,255,254,255,253,255,251,255,249,255,251,255,254,255,254,255,252,255,255,255,2,0,2,0,
6,0,7,0,251,255,241,255,248,255,249,255,232,255,227,255,242,255,249,255,243,255,248,255,2,0,249,255,234,255,232,255,
242,255,254,255,253,255,237,255,229,255,238,255,241,255,231,255,235,255,252,255,1,0,2,0,11,0,9,0,251,255,249,255,
249,255,238,255,235,255,250,255,0,0,254,255,0,0,244,255,218,255,226,255,11,0,26,0,255,255,225,255,211,255,224,255,
7,0,30,0,5,0,230,255,235,255,246,255,237,255,234,255,241,255,236,255,231,255,241,255,251,255,255,255,6,0,10,0,
0,0,243,255,238,255,245,255,4,0,18,0,20,0,14,0,6,0,254,255,255,255,6,0,252,255,238,255,253,255,12,0,
245,255,230,255,5,0,29,0,5,0,251,255,34,0,53,0,28,0,12,0,13,0,19,0,39,0,51,0,31,0,0,0,
251,255,20,0,48,0,76,0,90,0,61,0,39,0,74,0,102,0,92,0,95,0,115,0,119,0,111,0,117,0,130,0,
122,0,115,0,127,0,142,0,151,0,149,0,177,0,235,0,235,0,216,0,23,1,93,1,115,1,145,1,211,1,24,2,
20,2,2,2,68,2,109,2,109,2,160,2,180,2,181,2,219,2,192,2,154,2,161,2,121,2,87,2,80,2,42,2,
31,2,24,2,243,1,213,1,150,1,101,1,106,1,71,1,23,1,254,0,198,0,164,0,157,0,120,0,85,0,33,0,
217,255,177,255,160,255,139,255,99,255,66,255,66,255,46,255,18,255,252,254,209,254,229,254,27,255,26,255,75,255,148,255,
151,255,173,255,199,255,217,255,32,0,99,0,168,0,211,0,155,0,155,0,216,0,208,0,246,0,45,1,23,1,33,1,
11,1,205,0,9,1,65,1,16,1,225,0,203,0,235,0,35,1,51,1,97,1,127,1,82,1,64,1,43,1,231,0,
200,0,206,0,216,0,188,0,98,0,12,0,190,255,128,255,116,255,93,255,84,255,131,255,142,255,116,255,97,255,96,255,
127,255,110,255,82,255,105,255,86,255,115,255,207,255,166,255,123,255,187,255,233,255,37,0,67,0,23,0,12,0,246,255,
226,255,243,255,199,255,173,255,192,255,198,255,252,255,213,255,66,255,54,255,92,255,79,255,96,255,120,255,146,255,154,255,
170,255,233,255,197,255,118,255,94,255,1,255,206,254,1,255,0,255,234,254,160,254,83,254,129,254,111,254,62,254,123,254,
149,254,174,254,218,254,11,255,195,255,25,0,206,255,30,0,159,0,33,1,0,2,80,2,55,2,68,2,18,2,231,1,
194,1,61,1,168,0,49,0,43,0,149,0,183,0,135,0,55,0,200,255,105,255,21,255,245,254,14,255,50,255,118,255,
162,255,184,255,178,255,83,255,83,255,101,255,253,254,90,255,128,255,111,254,108,254,242,254,169,254,10,255,38,255,78,254,
57,254,71,254,45,254,163,254,191,254,199,254,206,254,33,254,87,254,92,255,72,255,25,255,142,255,137,255,102,255,238,255,
88,0,16,0,177,255,53,255,72,254,180,253,57,253,63,252,249,251,55,252,144,251,144,250,7,250,26,250,141,250,189,250,
186,250,133,250,110,250,85,251,21,252,251,251,49,252,127,252,241,252,142,253,27,253,251,252,218,253,97,253,129,252,48,253,
1,254,41,254,128,254,56,255,143,255,64,255,132,255,68,0,95,0,170,0,142,1,95,2,6,3,0,3,118,2,34,2,
179,1,80,1,27,1,35,1,5,2,75,2,56,1,84,1,106,2,254,1,222,0,208,0,200,1,136,2,174,1,114,0,
212,0,217,0,195,254,153,253,216,254,16,0,126,0,88,0,225,255,253,0,12,2,87,0,118,255,142,0,234,255,232,255,
107,2,94,2,29,0,209,0,169,2,197,1,223,255,105,255,135,255,40,255,197,254,163,254,183,254,47,255,104,255,46,255,
151,255,76,0,68,0,65,0,87,0,157,255,255,254,243,254,60,254,149,253,62,254,44,255,22,0,89,1,226,1,64,2,
158,3,24,4,84,3,235,3,43,5,15,5,72,5,155,6,73,7,234,7,180,8,170,7,129,6,110,7,38,7,75,5,
61,6,242,7,148,6,187,5,141,6,245,4,160,2,146,2,20,2,172,0,155,0,119,0,143,255,213,255,113,0,102,255,
136,253,167,252,192,252,75,252,178,251,170,252,22,253,218,250,114,249,217,250,15,252,41,252,54,252,199,251,155,251,190,252,
160,253,248,252,182,251,67,251,23,252,214,252,208,251,206,249,97,249,102,251,115,253,63,253,67,252,61,252,30,252,123,251,
31,251,9,251,173,251,197,252,194,252,126,252,106,253,97,254,29,255,18,0,40,0,51,0,225,1,126,3,108,3,231,2,
50,3,59,4,26,5,109,5,226,5,44,6,28,6,233,6,253,7,91,8,103,9,153,10,196,9,228,7,231,6,90,7,
157,8,55,8,137,6,222,6,250,6,202,3,68,1,25,1,198,255,10,254,245,253,175,253,77,252,50,250,5,248,100,248,
18,251,42,252,123,251,36,251,227,250,202,250,94,251,178,251,178,251,244,251,22,252,49,252,94,252,255,251,151,251,243,251,
202,252,20,254,129,255,34,0,63,0,222,255,39,254,211,252,197,253,219,254,42,255,152,0,114,1,206,255,234,254,221,255,
40,0,225,0,207,2,99,3,197,3,55,6,76,8,206,8,85,9,122,9,43,9,144,9,78,10,103,11,9,13,252,13,
161,14,89,16,217,18,125,21,255,22,149,22,138,22,205,23,98,24,168,24,42,25,139,24,15,24,173,24,54,24,87,23,
31,24,212,24,190,24,152,25,181,26,164,26,250,25,116,25,14,25,109,24,193,23,33,24,70,25,251,24,101,22,189,19,
175,19,110,21,12,22,57,21,194,19,67,17,39,15,126,14,22,13,47,11,226,10,221,9,61,6,214,2,116,1,12,1,
253,255,100,253,212,250,65,249,145,247,56,247,130,248,38,247,220,243,127,243,67,244,95,243,23,243,28,243,226,241,226,241,
9,243,28,242,230,239,110,238,102,237,10,237,239,236,145,235,136,234,108,235,198,235,74,235,154,236,150,237,140,235,21,234,
213,234,120,234,163,233,181,234,178,235,152,235,83,235,152,233,181,230,24,229,185,228,253,228,143,229,190,228,34,227,55,227,
154,228,112,229,226,228,187,227,98,228,76,230,123,230,57,230,60,231,81,231,211,230,132,231,137,231,88,231,127,233,209,235,
78,236,177,236,17,237,252,236,183,237,212,238,149,239,185,240,96,241,155,240,252,239,58,240,160,240,216,241,92,244,165,246,
141,247,204,247,218,247,135,246,239,243,58,243,103,245,146,246,58,245,222,244,27,246,16,246,71,245,151,245,17,246,146,246,
141,247,103,247,251,245,21,245,104,245,121,247,189,249,81,248,203,244,124,244,0,247,192,248,241,247,58,245,21,245,181,248,
59,250,34,249,167,249,87,249,82,247,30,248,55,250,54,251,70,253,232,253,91,251,109,250,248,250,67,250,169,250,187,250,
6,248,156,247,173,250,202,251,197,250,187,249,164,248,9,250,123,254,32,1,88,0,160,255,156,0,8,2,139,3,177,5,
168,6,224,4,140,3,199,4,173,5,221,5,122,7,93,9,190,10,232,11,211,10,207,8,56,10,247,12,98,12,17,10,
131,9,171,10,187,11,131,11,200,10,60,11,143,12,255,12,94,12,157,12,198,14,207,16,87,17,56,18,171,19,139,19,
220,18,87,20,76,23,60,25,74,25,218,24,133,25,50,26,188,25,91,26,190,28,86,30,65,31,228,31,105,29,170,25,
5,26,215,27,48,26,191,23,231,22,112,22,139,23,184,24,69,21,74,16,109,15,67,16,210,15,100,15,226,14,221,13,
32,13,193,12,41,13,27,13,87,10,152,7,103,7,155,6,135,4,125,3,164,2,65,1,176,254,12,250,80,248,18,252,
250,253,0,252,149,251,239,250,219,247,162,247,94,250,113,250,71,248,107,247,177,247,207,247,46,248,10,249,206,248,187,247,
27,249,63,252,111,253,115,253,47,253,84,251,41,251,89,254,92,255,113,253,137,253,82,254,27,252,26,249,117,248,94,249,
13,249,138,246,169,244,160,245,39,247,16,247,130,246,160,246,28,247,215,247,161,248,111,248,111,247,153,247,191,248,186,248,
1,248,214,247,124,247,86,247,115,247,247,245,230,244,19,247,218,248,203,247,110,247,60,248,29,248,175,248,45,250,184,249,
63,248,202,248,97,250,160,250,11,250,88,250,113,251,66,252,160,252,202,252,147,252,247,251,47,251,113,250,90,250,97,251,
34,253,245,254,100,0,201,0,128,255,72,253,9,252,115,252,181,253,180,254,253,253,65,252,25,253,10,0,16,0,172,253,
137,253,132,254,120,253,202,252,192,254,235,0,179,1,253,1,128,1,209,0,39,2,107,3,83,1,114,255,248,0,105,2,
195,2,69,3,73,1,39,254,35,254,23,254,152,252,36,254,180,255,35,253,144,251,44,252,78,251,61,252,60,0,215,1,
233,0,153,0,217,0,130,2,255,4,131,4,206,1,78,0,12,255,214,252,38,251,241,249,35,248,121,246,110,245,215,243,
145,241,34,240,252,239,85,240,234,240,213,241,134,243,152,245,221,245,250,244,132,246,227,248,80,248,247,246,246,246,14,247,
31,249,10,254,128,1,196,2,232,4,101,6,127,4,10,1,46,255,12,0,14,2,182,1,27,254,136,250,81,249,28,249,
208,248,3,249,65,248,144,244,172,240,39,240,219,240,56,239,89,236,45,235,34,236,139,238,156,242,2,247,194,248,220,248,
38,251,88,255,210,3,195,8,147,11,92,11,126,13,32,19,124,23,96,26,139,29,130,31,40,32,64,32,203,31,238,31,
145,31,225,28,170,26,133,25,42,22,143,19,91,21,18,22,206,17,27,13,62,10,127,6,20,2,203,255,119,255,231,254,
153,253,199,251,39,249,226,246,150,246,107,247,218,247,67,247,27,245,105,242,249,240,138,240,94,241,120,244,195,246,252,244,
79,242,206,242,107,245,125,247,134,247,111,245,215,243,84,245,200,248,226,251,175,253,215,253,240,252,9,252,145,251,160,252,
65,255,83,0,20,255,184,254,24,255,9,254,89,253,89,254,94,255,5,0,212,255,235,253,155,252,144,253,104,255,203,1,
162,3,84,2,130,255,167,254,179,255,46,2,24,6,112,9,159,10,92,10,140,10,34,12,3,13,182,11,153,10,74,10,
199,8,7,7,154,6,26,6,1,4,19,1,15,1,130,5,100,8,168,6,106,6,8,9,58,10,72,11,221,12,120,12,
171,12,244,13,82,12,20,11,204,13,153,15,56,15,225,15,13,16,182,14,133,13,94,12,248,11,190,12,132,13,159,15,
19,18,7,17,151,15,68,17,0,18,222,16,102,16,96,15,89,15,59,18,237,18,107,16,204,15,235,15,174,14,92,15,
130,17,48,18,104,19,133,22,11,25,158,25,171,24,67,23,229,22,102,23,56,23,56,22,229,21,116,22,184,21,154,19,
223,19,234,22,248,23,184,21,243,19,226,20,215,22,113,22,84,19,180,18,135,23,163,28,109,29,105,27,110,24,199,21,
214,21,107,23,10,23,86,21,116,20,42,20,119,19,138,16,43,11,99,7,209,6,25,7,135,8,110,10,11,9,116,6,
173,6,232,6,43,5,107,3,161,1,110,0,194,255,3,252,33,248,67,250,223,252,227,249,78,247,50,248,221,247,5,247,
158,248,219,249,24,249,187,248,40,249,105,249,234,249,10,250,191,248,94,247,166,246,146,245,100,245,64,247,74,248,17,247,
117,245,240,243,20,243,228,243,243,243,131,241,253,238,152,238,196,240,44,243,220,241,85,239,134,240,42,242,115,241,240,241,
240,242,78,242,40,243,32,244,225,240,97,237,127,237,182,237,12,237,86,238,232,240,87,242,231,241,43,240,20,239,21,240,
148,242,48,245,202,245,246,243,177,243,93,246,9,247,65,245,153,245,242,245,16,244,192,245,226,249,238,247,164,243,170,244,
67,246,202,245,182,247,92,248,110,244,116,243,233,246,23,248,148,248,247,250,57,249,80,244,179,245,254,250,148,250,59,247,
169,246,65,245,173,243,57,247,91,250,70,248,93,248,50,251,110,249,67,247,2,250,74,251,157,249,140,250,203,251,44,250,
125,249,53,250,157,249,32,249,45,249,225,247,68,246,189,244,104,242,120,242,97,246,252,248,67,248,131,247,155,246,101,244,
20,244,251,246,16,249,47,247,114,243,98,242,187,244,164,246,47,246,104,245,215,245,76,246,177,244,116,242,116,243,174,245,
174,244,186,243,160,245,19,246,218,244,20,245,84,244,209,241,251,240,196,241,19,243,178,244,160,244,161,243,26,244,206,244,
137,245,237,246,111,246,66,245,82,247,202,249,191,248,69,246,218,244,127,244,62,244,51,243,118,242,71,242,217,240,167,239,
163,240,218,240,26,239,141,238,201,239,52,241,205,242,68,244,117,244,142,243,185,242,77,242,123,241,31,240,175,238,234,236,
245,235,33,237,58,237,74,234,233,232,170,234,0,235,195,233,154,234,72,236,246,235,146,235,19,238,184,241,208,242,202,241,
69,241,128,241,120,242,146,243,246,241,97,239,166,240,245,242,219,242,209,244,48,249,252,250,114,252,49,0,164,2,101,5,
70,13,252,22,183,29,236,33,239,35,96,34,106,28,105,19,153,12,100,11,169,11,70,8,74,1,234,248,232,240,24,235,
27,233,175,234,238,236,138,238,163,242,143,250,67,2,131,6,215,7,143,7,72,7,26,8,6,8,24,5,95,2,223,3,
56,7,0,7,251,3,233,2,97,3,108,2,109,2,107,5,171,6,92,4,223,3,200,5,224,5,39,6,169,8,114,8,
33,5,151,5,252,10,139,15,155,15,203,12,86,11,231,12,20,15,208,15,150,15,142,15,9,15,81,12,74,10,40,12,
191,12,161,9,105,9,161,11,40,11,73,11,119,12,194,10,60,10,103,12,70,12,91,12,251,14,121,15,107,14,39,14,
98,12,51,10,129,9,37,9,139,9,141,9,194,7,168,6,198,5,94,4,165,5,238,6,230,5,171,8,69,13,194,11,
146,8,185,9,244,11,62,13,46,14,73,14,205,13,208,12,84,12,124,12,2,10,56,7,150,9,196,12,22,12,238,10,
3,10,247,8,5,10,197,9,62,6,137,5,198,7,14,7,48,5,40,6,178,6,209,3,150,1,184,3,97,6,120,5,
160,3,16,3,85,2,85,2,210,3,239,3,241,1,18,0,171,254,21,253,77,252,80,253,217,254,183,255,61,1,66,3,
6,3,4,1,253,255,120,0,250,1,62,3,244,2,134,2,138,2,195,1,158,1,244,2,167,3,136,3,159,3,6,4,
4,5,254,5,50,7,245,9,2,12,187,11,189,11,242,11,73,11,115,11,181,10,154,7,74,6,185,7,38,9,211,10,
102,11,240,7,59,3,190,2,122,7,193,12,132,13,74,11,170,10,40,12,242,13,50,14,198,12,249,11,134,10,217,6,
113,6,79,10,153,11,88,11,129,13,11,14,214,12,173,14,240,16,76,16,197,15,180,16,23,17,247,15,184,13,199,11,
131,11,138,12,124,12,120,9,160,6,252,7,82,10,181,9,112,8,192,7,60,7,231,8,114,10,172,7,33,5,81,7,
212,9,197,10,107,12,134,11,149,7,234,7,110,11,7,10,220,6,254,7,37,9,124,8,64,10,28,12,94,10,57,8,
135,7,101,6,16,5,19,5,70,6,189,6,168,5,105,5,238,6,57,8,250,8,66,9,206,8,106,9,54,10,115,8,
150,6,247,6,176,7,50,8,225,7,119,5,239,2,6,1,9,255,182,255,118,2,93,2,21,0,10,255,203,254,106,254,
249,253,214,253,199,254,219,255,253,255,77,0,174,1,120,3,251,3,250,2,50,3,35,4,6,3,82,3,57,6,103,5,
95,2,147,3,39,5,100,3,238,2,141,4,199,4,163,3,151,2,27,3,164,5,239,6,135,4,97,1,50,1,188,2,
142,2,187,1,102,2,232,1,251,255,163,0,81,2,83,1,138,255,141,254,251,253,142,254,36,255,147,254,31,254,16,254,
180,254,189,255,41,254,113,251,22,252,132,253,16,252,177,249,182,247,248,246,9,249,237,250,48,250,132,250,144,253,122,255,
61,254,141,252,61,253,232,254,178,254,72,253,250,251,244,249,65,248,38,249,110,251,34,253,139,255,179,2,244,2,221,0,
121,1,255,2,4,1,240,255,37,2,7,2,161,0,65,2,101,3,108,3,243,4,196,3,46,0,39,1,179,4,54,6,
68,7,77,6,117,2,129,1,100,3,45,3,237,2,127,4,229,3,25,1,68,0,4,1,85,0,86,255,204,0,219,2,
251,1,72,255,102,253,58,252,178,251,14,252,132,251,254,248,212,246,184,247,60,250,45,250,83,247,77,245,157,244,0,244,
146,244,191,245,66,245,48,244,250,243,168,243,250,242,254,241,48,241,171,242,31,245,198,244,126,243,185,244,4,247,194,249,
223,253,3,1,158,2,112,5,23,8,110,7,13,5,26,3,95,1,204,0,135,2,7,5,170,5,39,3,61,255,208,253,
139,255,210,0,8,0,209,254,179,253,164,252,25,252,255,250,79,249,46,249,176,249,77,249,206,249,187,249,229,246,66,246,
152,248,243,246,249,243,8,246,22,247,208,243,189,243,213,246,75,247,96,247,138,249,244,250,247,250,169,250,110,250,162,251,
7,254,24,255,202,253,136,251,142,250,173,250,70,249,85,247,210,248,64,252,13,252,38,248,255,245,246,246,118,246,88,243,
194,241,172,242,95,244,255,246,99,248,220,245,214,242,151,242,229,242,242,242,105,244,28,246,31,246,143,245,54,246,183,247,
42,249,182,250,14,251,173,248,130,247,136,251,177,255,100,254,186,251,189,252,162,254,174,253,217,251,188,251,182,251,65,250,
209,248,9,248,121,247,72,247,137,246,137,245,154,246,172,247,129,245,134,243,121,244,51,245,112,245,136,247,47,249,86,248,
190,247,171,248,160,248,5,247,94,246,80,247,176,247,34,247,79,247,252,247,123,248,164,249,117,250,242,248,69,247,60,248,
252,249,230,250,253,251,220,251,19,250,192,250,7,253,131,251,237,248,201,249,26,250,162,248,173,249,138,250,128,247,164,245,
161,247,92,248,252,245,36,244,174,244,98,246,22,248,125,249,124,250,40,251,70,251,60,250,183,249,29,252,104,255,203,0,
106,1,146,1,57,0,38,255,51,255,178,254,23,254,127,254,189,254,121,253,38,251,178,250,9,254,73,1,148,0,240,254,
119,0,248,4,213,9,12,11,243,6,173,2,13,3,176,4,60,3,30,1,53,1,68,2,135,3,72,4,35,3,223,2,
97,5,25,6,20,4,159,3,251,3,105,3,6,4,29,5,241,4,245,4,161,5,204,6,107,8,4,9,52,9,182,9,
241,8,9,9,134,11,59,12,192,11,115,13,8,14,228,12,217,13,156,14,161,12,149,10,229,9,201,10,142,12,93,12,
73,10,0,8,134,5,55,5,78,8,134,10,53,9,171,6,239,5,108,7,125,8,157,8,240,9,83,11,185,11,91,12,
241,11,100,11,72,13,114,13,114,10,71,10,83,12,92,12,1,12,172,11,141,10,108,10,148,10,136,10,170,11,53,12,
18,12,228,12,229,11,186,9,201,10,185,12,3,13,186,13,137,13,9,12,39,13,119,15,177,14,227,12,81,13,229,13,
23,12,152,10,245,11,181,12,105,11,252,11,145,13,16,13,13,13,55,14,21,14,95,14,122,15,196,14,244,13,173,14,
127,14,129,13,52,13,15,12,228,9,204,8,205,7,15,5,183,3,148,6,8,9,55,7,19,5,35,5,183,4,104,3,
169,2,196,2,84,4,241,5,249,4,241,2,104,2,76,2,175,1,0,2,218,2,180,1,102,0,117,2,9,3,232,254,
179,254,41,2,193,253,59,247,216,249,118,252,52,249,207,248,62,249,47,244,169,239,108,238,237,236,175,237,162,241,171,243,
61,242,212,239,186,238,21,240,182,242,111,244,63,243,197,238,150,235,168,237,55,241,64,242,195,242,1,244,254,243,63,243,
197,243,161,243,210,240,147,238,148,238,178,237,123,236,43,237,140,236,255,233,237,233,105,235,132,235,32,236,180,236,84,234,
136,231,169,231,51,233,16,234,13,234,165,233,250,233,130,235,133,236,60,235,1,233,16,233,173,235,242,237,167,238,143,238,
81,237,124,235,19,236,205,238,246,238,135,236,107,236,255,237,73,237,54,236,105,237,86,238,182,237,179,237,191,238,2,239,
25,237,39,234,248,232,242,233,63,235,68,236,62,237,65,238,87,239,219,239,152,239,32,239,214,238,250,239,228,242,234,244,
84,244,92,242,85,241,250,242,24,245,213,244,240,244,175,246,244,246,37,247,129,248,182,247,54,247,2,250,36,251,164,250,
183,252,45,253,173,250,154,251,189,254,217,254,250,253,169,254,210,255,38,0,80,254,207,251,70,252,9,255,250,0,98,1,
116,0,243,254,114,254,63,255,179,0,69,2,121,3,66,4,133,4,91,4,135,4,132,4,149,3,128,3,235,4,133,5,
96,5,33,6,253,5,125,4,152,5,180,8,44,8,86,5,151,6,155,10,97,11,18,9,23,8,184,9,139,11,246,11,
196,11,166,10,98,8,86,8,154,10,77,10,242,8,38,11,105,13,147,12,215,11,252,11,53,12,41,13,141,12,13,10,
124,9,225,9,54,9,184,10,155,13,53,13,212,11,81,13,107,14,77,12,61,10,161,10,53,11,216,10,15,11,29,11,
45,10,66,10,65,10,192,7,175,6,201,9,92,12,37,12,140,11,244,10,100,10,96,10,156,9,93,8,122,8,164,9,
212,10,50,11,9,10,27,9,72,10,105,12,68,13,71,11,239,7,72,7,21,8,230,5,186,3,19,6,108,9,241,9,
12,9,10,8,252,6,118,6,3,7,90,8,129,8,54,7,207,7,168,9,19,8,171,4,68,4,204,5,129,6,109,6,
173,5,97,4,131,3,188,3,140,4,103,4,127,3,168,3,217,3,61,3,109,4,85,6,219,4,150,1,16,0,70,0,
162,1,187,2,1,2,50,1,79,1,217,0,102,0,190,0,33,1,221,1,26,2,141,0,185,255,251,0,142,1,242,0,
161,0,175,255,125,253,164,251,100,251,51,252,184,252,37,253,182,254,125,0,232,0,14,0,224,253,164,251,220,252,16,1,
208,3,171,4,145,5,37,5,145,3,144,4,53,7,22,7,193,5,180,6,172,7,221,6,164,6,171,6,209,4,253,2,
164,3,90,5,127,5,211,3,211,2,245,3,179,4,211,2,153,0,241,0,212,2,166,3,163,3,60,4,146,4,55,4,
145,4,151,4,192,2,23,1,195,0,115,0,138,0,177,1,247,2,207,3,8,4,207,3,35,3,93,1,204,0,141,3,
109,5,4,4,18,3,232,2,225,1,201,1,239,1,0,1,123,1,208,2,213,2,13,3,194,2,151,0,123,255,199,255,
172,255,224,0,41,3,246,3,173,3,104,2,26,0,39,255,94,255,3,255,73,255,120,0,72,1,150,1,239,0,35,0,
208,0,73,1,163,0,207,0,120,1,243,1,182,2,21,2,142,0,162,0,181,0,164,0,185,2,18,3,196,255,70,255,
107,2,225,3,239,3,222,3,181,2,47,2,64,2,201,0,5,0,19,1,41,1,180,0,62,1,241,1,3,3,151,3,
190,1,250,255,203,0,239,1,204,1,243,0,41,0,181,0,196,1,107,1,212,0,149,0,44,255,23,254,187,255,103,2,
126,2,14,255,97,252,171,254,71,2,51,2,95,0,139,255,10,255,47,254,248,252,61,253,138,0,54,3,231,2,127,2,
224,1,251,255,202,255,160,0,157,255,150,255,230,1,160,2,242,0,128,255,47,255,242,254,28,254,148,254,61,1,171,2,
67,2,255,2,231,2,179,255,188,253,136,255,32,1,195,255,166,253,57,253,14,253,41,252,100,253,185,255,88,254,211,251,
166,252,118,253,216,252,43,254,93,255,188,253,192,252,9,254,10,255,240,254,165,254,219,254,83,255,152,254,213,252,246,251,
3,252,214,251,45,252,130,254,142,1,179,1,199,254,241,252,123,253,28,254,106,254,215,254,42,255,0,0,118,0,78,255,
23,255,93,0,253,254,221,251,49,252,204,254,141,255,35,255,229,254,122,254,200,254,98,255,45,254,123,252,167,252,64,253,
196,252,55,252,18,252,61,252,227,252,92,253,112,253,167,253,113,253,238,252,153,253,253,254,157,255,184,255,154,255,8,255,
43,254,178,252,24,251,4,251,66,251,176,249,7,249,198,251,42,254,188,253,216,253,70,255,247,254,250,253,255,254,18,0,
116,255,23,255,215,255,206,0,25,1,74,255,154,252,92,252,11,253,230,251,191,251,153,253,173,253,78,252,222,251,174,250,
0,249,116,249,62,250,204,249,1,251,255,253,5,255,75,253,114,251,128,251,184,252,19,253,223,252,99,253,167,253,123,253,
40,254,221,254,67,255,172,0,67,1,85,255,39,254,138,255,242,0,82,1,130,1,127,1,91,1,69,1,39,1,17,1,
174,0,143,0,63,2,168,4,26,5,157,3,63,2,89,2,49,3,188,2,115,1,108,1,249,1,9,2,26,2,46,1,
124,255,216,255,173,1,56,2,157,1,114,0,101,255,5,0,197,0,19,0,107,0,233,1,53,2,198,2,44,4,175,3,
81,2,173,2,149,3,182,3,79,3,179,2,238,2,135,3,113,2,189,0,178,0,174,1,189,2,64,3,207,1,128,255,
77,255,47,1,233,2,40,3,227,1,100,0,241,255,14,0,239,255,208,255,16,0,129,0,189,0,41,1,84,2,152,2,
160,0,221,254,228,254,17,255,33,0,21,3,245,3,97,1,117,0,79,2,163,2,19,1,42,0,3,0,26,0,99,0,
191,0,176,1,113,2,121,1,47,0,222,255,16,255,128,254,173,255,243,255,102,254,128,254,54,0,197,0,3,1,147,1,
9,1,10,1,94,3,23,5,32,4,110,2,82,1,222,0,101,1,194,1,63,1,210,1,110,3,153,3,100,3,93,4,
211,3,230,1,219,2,249,4,89,3,160,0,35,1,120,2,249,1,101,1,208,1,73,2,119,2,134,2,111,2,45,2,
251,1,90,2,83,3,108,4,100,5,161,5,35,4,193,1,54,1,213,2,47,3,1,1,235,255,41,1,254,0,73,254,
178,251,90,250,158,250,59,252,242,251,201,248,214,246,156,247,14,248,213,246,222,245,196,246,5,248,56,247,157,245,226,244,
140,243,98,242,169,243,8,245,19,245,11,246,178,246,178,245,66,246,17,248,162,247,159,246,196,247,129,249,207,249,187,248,
244,247,111,248,128,248,220,247,153,248,73,250,139,251,89,252,177,251,69,250,135,250,16,251,141,250,36,251,128,252,99,253,
12,255,29,0,12,255,117,254,184,254,38,254,47,254,206,254,79,254,121,254,6,0,148,0,119,0,58,1,197,1,15,1,
16,0,77,0,201,1,14,3,1,4,24,5,106,5,210,5,151,7,115,8,49,7,104,5,1,3,128,0,208,255,221,255,
189,255,161,0,156,1,63,2,0,4,109,5,53,5,228,4,141,4,82,4,104,5,230,5,233,4,21,5,244,5,163,5,
78,5,63,5,1,5,48,5,147,4,31,3,71,3,118,3,76,1,2,0,173,1,105,3,119,3,219,2,251,2,2,4,
74,4,138,3,126,3,235,3,204,3,146,3,210,2,90,1,181,0,211,0,97,0,200,255,20,0,87,1,77,2,92,1,
91,255,33,254,96,253,17,253,194,253,243,253,19,253,192,252,220,252,152,252,129,252,94,252,254,251,253,251,190,251,150,251,
226,252,156,253,27,252,199,251,241,253,167,254,239,252,174,251,95,251,23,251,57,251,51,251,126,250,230,250,135,252,176,252,
102,251,189,250,78,250,40,250,54,252,178,254,202,253,9,251,228,250,49,253,44,254,242,252,37,252,135,252,94,252,248,251,
63,252,190,251,155,250,227,250,148,251,62,251,121,251,193,252,122,253,46,253,135,252,103,252,196,252,93,252,248,251,233,252,
15,253,197,251,236,251,198,252,237,251,162,251,76,253,255,253,225,252,111,252,206,253,78,255,206,254,46,253,44,253,132,254,
61,255,113,255,51,255,246,253,250,252,119,253,141,254,243,254,106,254,13,254,247,254,6,0,138,255,34,254,48,253,242,252,
232,252,115,252,235,251,116,252,176,253,28,254,205,253,228,253,71,254,25,254,135,253,223,253,173,255,122,1,106,1,221,255,
224,254,37,255,191,255,88,0,191,0,58,0,128,255,203,255,38,0,220,255,88,0,168,1,48,2,236,1,200,1,196,1,
229,1,162,2,144,3,31,3,85,1,209,0,227,1,198,1,26,1,73,2,73,3,141,2,160,2,93,3,124,2,170,1,
180,2,215,3,210,3,42,3,112,2,40,2,71,2,105,2,114,2,239,1,61,1,159,1,128,2,152,2,68,2,133,1,
82,0,204,0,132,3,90,5,151,4,91,3,155,3,21,4,251,2,204,1,146,2,116,3,179,2,78,2,237,2,131,2,
59,1,181,0,186,0,149,0,35,0,128,255,87,255,11,0,155,1,209,3,120,4,34,2,99,0,232,1,110,3,166,2,
88,1,42,0,54,255,199,255,25,1,214,1,14,3,150,4,159,4,225,3,205,3,14,4,118,4,197,4,70,4,181,3,
161,3,12,3,100,2,179,2,171,2,200,1,227,1,10,3,101,3,184,2,231,1,128,1,233,1,125,2,101,2,179,2,
244,3,64,4,54,3,44,3,91,4,154,4,162,3,173,2,42,2,63,2,105,2,140,1,101,0,89,0,148,0,167,0,
239,1,158,3,109,3,28,2,136,1,86,1,192,0,59,0,96,0,29,1,165,1,148,1,194,1,62,2,197,1,105,0,
154,255,209,255,95,0,165,0,210,0,64,1,11,1,173,255,220,254,148,255,75,0,35,0,247,255,63,0,144,0,79,0,
248,255,194,0,235,1,227,1,137,1,189,1,151,1,43,1,248,0,187,0,60,1,76,2,162,1,226,255,224,255,251,0,
51,1,198,0,94,0,115,0,92,1,191,1,219,0,168,0,207,1,54,2,205,1,89,2,89,2,9,0,173,254,67,0,
42,1,187,0,3,2,242,2,21,1,64,0,147,1,76,1,38,0,165,0,16,1,182,0,210,0,65,0,98,255,217,0,
201,2,134,1,228,254,17,254,101,254,1,255,255,255,240,255,245,254,176,255,126,1,123,1,124,0,111,0,152,0,96,0,
53,0,21,0,6,0,196,255,107,255,245,255,110,0,75,255,5,254,244,253,205,254,181,0,226,1,135,0,134,255,95,0,
119,0,11,0,23,0,208,254,131,253,108,254,75,255,98,255,171,0,193,1,23,1,157,0,97,1,27,2,161,1,61,0,
95,255,32,255,110,254,74,254,208,255,20,1,198,255,158,252,19,251,171,252,248,253,249,252,112,252,135,252,243,250,150,249,
99,250,169,251,161,252,70,253,159,252,0,251,63,249,109,248,37,250,153,252,220,252,200,252,235,253,76,254,57,254,236,254,
14,255,195,254,85,255,48,0,81,1,78,2,8,1,211,254,63,255,69,1,248,1,127,1,180,0,127,255,38,254,74,253,
177,253,66,255,248,255,250,254,110,254,2,255,160,254,164,253,75,254,105,255,74,255,133,255,28,0,10,255,71,254,13,0,
135,1,77,1,190,1,144,2,14,2,53,1,248,0,62,1,192,1,43,1,235,255,69,0,20,1,97,0,26,0,54,1,
206,1,203,1,255,1,238,1,141,1,72,1,129,1,104,2,204,2,29,2,131,1,209,0,183,255,150,255,75,0,239,0,
214,1,216,1,195,0,82,1,139,2,104,1,81,0,102,1,9,2,186,1,203,1,44,1,0,0,240,255,125,0,239,0,
121,1,39,1,157,255,187,254,134,255,29,0,29,255,160,254,86,0,15,2,250,1,244,0,174,255,241,254,147,255,108,0,
134,0,5,0,171,254,223,253,226,254,67,255,78,254,121,254,27,255,41,255,16,0,114,0,34,255,236,254,189,255,116,255,
182,255,154,0,127,255,208,253,174,253,193,253,182,253,32,254,17,254,233,253,85,254,40,254,7,254,125,255,84,0,163,254,
47,253,241,253,239,254,24,255,50,255,227,254,43,254,86,254,21,255,104,255,206,255,239,255,249,254,109,254,35,255,103,255,
252,254,26,255,40,255,154,254,94,254,93,254,5,254,9,254,102,254,22,254,201,253,160,254,73,255,139,254,230,253,141,254,
91,255,47,255,62,254,119,253,178,253,95,254,72,254,235,253,78,254,202,254,155,254,117,254,251,254,178,255,16,0,95,0,
155,0,215,255,71,254,150,253,24,254,186,254,52,255,161,255,206,255,250,255,101,0,216,0,29,1,11,1,185,0,155,0,
198,0,209,0,146,0,57,0,244,255,175,255,141,255,5,0,163,0,152,0,118,0,126,0,175,255,205,254,134,255,155,0,
37,0,1,255,145,254,177,254,216,254,195,254,166,254,216,254,202,254,233,253,45,253,116,253,206,253,102,253,238,252,246,252,
74,253,226,253,162,254,33,255,92,255,122,255,188,255,59,0,35,0,112,255,164,255,105,0,17,0,128,255,249,255,134,0,
199,0,40,1,102,1,161,1,169,1,26,1,71,1,115,2,240,2,66,3,77,4,124,4,182,3,86,3,182,2,178,1,
127,1,221,1,48,2,50,2,114,1,6,1,249,1,206,2,195,2,247,2,62,3,159,2,105,1,189,0,37,1,121,1,
162,0,255,255,129,0,194,0,130,0,208,0,102,1,166,1,125,1,238,0,151,0,170,0,151,0,189,0,69,1,16,1,
87,0,122,0,36,1,100,1,102,1,102,1,30,1,95,0,168,255,212,255,135,0,209,0,91,1,116,2,126,2,90,1,
217,0,23,1,58,1,140,1,50,2,219,2,98,3,87,3,21,3,131,3,141,3,76,2,209,1,15,3,196,3,235,2,
193,1,8,1,204,0,225,0,14,1,144,1,62,2,67,2,133,1,165,0,54,0,88,0,79,0,194,255,139,255,148,255,
18,255,202,254,118,255,239,255,123,255,15,255,151,255,199,0,166,1,165,1,199,0,195,255,245,255,69,1,209,1,155,1,
245,1,231,1,185,0,89,0,131,1,149,2,176,2,98,2,81,2,93,2,250,1,78,1,152,0,224,255,19,0,70,1,
254,1,62,2,143,2,225,1,154,0,103,0,174,0,159,0,197,0,194,0,100,0,123,0,191,0,161,0,113,0,27,0,
146,255,11,255,46,254,104,253,193,253,164,254,8,255,37,255,56,255,255,254,184,254,200,254,215,254,110,254,47,254,214,254,
164,255,223,255,243,255,226,255,133,255,89,255,59,255,223,254,211,254,0,255,240,254,55,255,240,255,83,0,92,0,59,0,
142,255,62,254,188,252,201,251,30,252,179,253,119,255,238,255,5,255,138,254,237,254,160,254,235,253,14,254,246,253,36,253,
101,253,200,254,103,255,7,255,244,254,140,255,134,255,255,253,188,252,94,253,98,254,169,254,72,255,23,0,44,0,254,255,
119,255,51,254,43,253,144,252,28,252,37,253,71,255,186,255,131,254,157,253,53,253,132,253,136,254,66,254,250,252,175,253,
195,255,71,0,175,255,198,255,54,0,35,0,207,255,195,255,180,255,59,255,230,254,231,254,224,254,90,255,196,255,124,254,
90,253,188,254,62,0,251,255,226,255,105,0,147,0,30,1,36,2,78,2,80,1,60,0,28,0,59,0,124,255,52,255,
16,0,15,0,190,255,41,1,87,2,157,1,17,1,125,1,224,1,249,1,245,0,143,254,195,252,198,252,202,253,225,254,
138,255,129,255,187,254,220,253,30,254,15,255,250,254,39,254,250,253,189,254,25,0,217,0,66,0,4,0,173,0,139,0,
4,0,21,0,133,255,165,254,48,255,84,0,210,0,11,1,24,1,0,1,17,1,21,1,53,1,147,1,121,1,34,1,
58,1,11,1,102,0,74,0,194,0,80,1,194,1,187,1,172,1,47,2,66,2,23,1,128,255,4,254,9,253,93,253,
94,254,206,254,0,255,100,255,147,255,152,255,152,255,144,255,211,255,63,0,122,0,152,0,76,0,10,0,7,1,248,1,
64,1,205,0,140,1,80,1,25,0,79,255,85,254,41,253,213,252,37,253,203,253,126,254,182,254,44,255,232,255,153,255,
28,255,125,255,64,255,132,254,215,254,18,255,57,254,180,253,233,253,44,254,164,254,81,255,203,255,181,255,250,254,123,254,
21,255,64,0,223,0,99,0,142,255,196,255,147,0,184,0,205,0,52,1,4,1,190,0,55,1,131,1,80,1,111,1,
175,1,198,1,10,2,36,2,204,1,178,1,225,1,135,1,189,0,76,0,59,0,41,0,52,0,164,0,89,1,138,1,
124,0,5,255,180,254,54,255,130,255,39,0,107,1,26,2,254,1,57,2,17,3,102,3,231,1,193,254,51,252,47,252,
15,254,185,255,50,0,23,0,15,0,27,0,22,0,212,255,154,255,31,0,181,0,41,0,143,255,33,0,240,0,114,1,
147,1,107,0,249,254,54,255,58,0,152,0,159,0,44,0,83,255,57,255,148,255,111,255,142,255,124,0,36,1,231,0,
148,0,223,0,46,1,197,0,82,0,150,0,206,0,79,0,12,0,211,0,92,1,135,0,221,255,80,0,32,0,45,255,
17,255,35,255,70,255,6,1,119,2,158,1,43,1,177,1,178,0,175,255,43,0,165,255,102,254,222,254,149,255,77,255,
121,255,160,255,243,254,232,254,85,255,241,254,216,254,238,255,18,1,188,1,208,1,247,0,25,0,15,0,9,0,108,255,
187,254,162,254,161,255,0,1,55,1,126,0,26,0,34,0,58,0,76,0,70,0,123,0,204,0,194,0,0,1,166,1,
150,1,32,1,39,1,3,1,118,0,227,255,247,254,17,254,160,253,14,253,246,252,12,254,240,254,246,254,233,254,201,254,
207,254,116,255,35,0,194,0,96,1,248,0,236,255,200,255,31,0,210,255,253,254,80,254,128,254,247,254,75,254,87,253,
143,253,190,253,62,253,183,253,16,255,111,255,66,255,18,0,252,0,125,0,155,255,166,255,186,255,98,255,128,255,139,255,
212,254,151,254,80,255,216,255,243,255,59,0,158,0,83,0,241,254,238,253,236,254,93,0,2,0,226,254,239,254,232,255,
155,0,176,0,133,0,254,255,255,254,214,254,2,0,114,0,185,255,231,255,152,0,253,255,2,255,197,254,192,254,58,255,
50,0,89,0,247,255,30,0,253,255,131,255,67,0,141,1,66,1,220,255,10,255,250,254,40,255,28,255,181,254,173,254,
21,255,207,254,16,254,17,254,89,254,8,254,235,253,66,254,238,253,105,253,74,254,148,255,94,255,169,254,228,254,252,254,
135,254,205,254,78,255,233,254,186,254,53,255,234,254,28,254,74,254,229,254,205,254,160,254,6,255,120,255,177,255,236,255,
7,0,62,0,45,1,39,2,248,1,34,1,246,0,155,1,76,2,63,2,156,1,89,1,110,1,71,1,138,1,68,2,
17,2,250,0,72,0,237,255,145,255,187,255,88,0,149,0,106,0,127,0,194,0,127,0,250,255,21,0,143,0,161,0,
84,0,227,255,61,255,141,254,93,254,9,255,160,255,1,255,81,254,182,254,175,254,192,253,196,253,195,254,108,255,212,255,
34,0,36,0,32,0,231,255,130,255,115,255,84,255,88,255,69,0,121,0,222,254,240,253,174,254,58,255,183,255,220,0,
68,1,225,0,48,1,152,1,27,1,173,0,172,0,21,0,221,254,37,254,153,254,151,255,241,255,179,255,162,255,76,255,
156,254,210,254,143,255,158,255,218,255,118,0,7,0,80,255,103,255,31,255,195,254,129,255,248,255,166,255,215,255,159,255,
101,254,65,254,76,255,199,255,5,0,150,0,195,0,176,0,229,0,253,0,161,0,30,0,55,0,44,1,201,1,33,1,
47,0,13,0,109,0,165,0,152,0,184,0,104,1,28,2,235,1,72,1,144,1,128,2,102,2,43,1,67,0,251,255,
220,255,224,255,216,255,239,255,170,0,53,1,168,0,232,255,144,255,37,255,219,254,0,255,64,255,177,255,65,0,114,0,
184,0,90,1,51,1,43,0,207,255,61,0,81,0,99,0,246,0,231,0,29,0,17,0,83,0,223,255,218,255,60,0,
111,255,10,255,199,0,188,1,59,0,28,255,37,255,177,254,208,254,121,0,146,1,67,1,31,1,196,1,190,2,74,3,
71,2,4,0,96,254,47,254,237,254,139,255,241,254,225,253,36,254,48,255,126,255,44,255,82,254,86,253,10,254,4,0,
139,0,214,255,179,255,120,255,185,254,152,254,158,254,252,253,223,253,143,254,162,254,117,254,60,255,216,255,48,255,155,254,
215,254,240,254,226,254,3,255,212,254,212,254,171,255,27,0,178,255,235,255,201,0,219,0,37,0,200,255,9,0,79,0,
46,0,213,255,89,255,214,254,222,254,117,255,213,255,194,255,65,255,137,254,167,254,175,255,25,0,125,255,241,254,242,254,
70,255,103,255,14,255,192,254,160,254,63,254,45,254,246,254,172,255,131,255,243,254,197,254,78,255,60,0,232,0,198,0,
210,255,4,255,73,255,60,0,63,1,3,2,241,1,56,1,161,0,52,0,54,0,224,0,44,1,27,1,163,1,217,1,
57,1,45,1,126,1,32,1,245,0,70,1,50,1,34,1,107,1,66,1,157,0,20,0,184,255,163,255,18,0,211,0,
19,1,70,0,108,255,183,255,145,0,226,0,194,0,179,0,20,1,235,1,103,2,252,1,97,1,47,1,248,0,126,0,
42,0,22,0,20,0,43,0,21,0,183,255,181,255,250,255,228,255,41,0,222,0,132,0,160,255,244,255,223,0,47,1,
237,0,45,0,179,255,4,0,7,0,200,255,51,0,79,0,210,255,206,255,182,255,73,255,107,255,142,255,192,255,233,0,
76,1,15,0,160,255,87,0,145,0,170,0,196,0,44,0,205,255,74,0,207,0,230,0,94,0,151,255,146,255,201,255,
85,255,74,255,244,255,219,255,65,255,92,255,168,255,175,255,0,0,61,0,10,0,42,0,140,0,113,0,70,0,85,0,
40,0,30,0,82,0,247,255,116,255,113,255,115,255,197,255,120,0,29,0,12,255,225,254,21,255,50,255,219,255,83,0,
67,0,120,0,87,0,146,255,59,255,18,255,229,254,195,255,5,1,85,1,25,1,161,0,238,255,203,255,87,0,234,0,
232,0,6,0,110,255,42,0,205,0,122,0,67,0,0,0,130,255,249,255,175,0,17,0,42,255,34,255,98,255,190,255,
23,0,198,255,46,255,8,255,40,255,111,255,175,255,148,255,139,255,172,255,102,255,64,255,128,255,22,255,155,254,129,255,
118,0,48,0,211,255,167,255,68,255,117,255,190,255,81,255,122,255,245,255,16,255,97,254,62,255,76,255,19,254,234,253,
201,254,99,255,231,255,109,0,172,0,210,0,176,0,11,0,111,255,125,255,27,0,141,0,138,0,112,0,29,0,116,255,
63,255,134,255,82,255,207,254,189,254,196,254,167,254,200,254,232,254,153,254,54,254,12,254,249,253,85,254,62,255,190,255,
133,255,89,255,64,255,40,255,151,255,189,255,219,254,129,254,115,255,75,0,105,0,5,0,140,255,30,0,66,1,65,1,
194,0,230,0,216,0,183,0,110,1,6,2,148,1,199,0,52,0,22,0,151,0,50,1,79,1,22,1,231,0,187,0,
114,0,91,0,122,0,124,0,242,0,250,1,24,2,34,1,206,0,99,1,253,1,230,1,26,0,103,253,6,253,190,255,
89,2,123,2,52,1,51,0,175,255,233,255,250,0,57,1,83,0,136,0,121,1,249,0,53,0,53,0,158,255,86,255,
114,0,250,0,152,0,178,0,148,0,24,0,121,0,33,1,27,1,185,0,104,0,150,0,44,1,92,1,93,1,187,1,
247,1,201,1,89,1,224,0,211,0,247,0,221,0,11,1,98,1,27,1,192,0,7,1,117,1,152,1,154,1,237,1,
82,2,152,1,6,0,136,255,80,0,243,0,255,0,195,0,151,0,129,0,14,0,136,255,173,255,5,0,209,255,130,255,
194,255,54,0,24,0,216,255,36,0,1,0,79,255,173,255,81,0,173,255,103,255,87,0,65,1,75,2,86,2,116,255,
231,252,59,254,214,0,23,2,133,2,135,1,207,254,196,252,24,253,151,254,34,255,95,254,216,253,101,254,186,255,87,1,
136,1,78,255,36,253,79,253,178,254,208,255,102,0,50,0,114,255,7,255,19,255,226,254,72,254,253,253,76,254,179,254,
27,255,131,255,88,255,209,254,201,254,22,255,33,255,14,255,98,255,43,0,169,0,146,0,151,0,118,0,179,255,139,255,
108,0,245,0,8,1,28,1,147,0,198,255,191,255,15,0,250,255,198,255,226,255,83,0,129,0,246,255,70,255,18,255,
100,255,243,255,235,255,67,255,97,255,37,0,11,0,188,255,119,0,254,0,101,0,254,255,1,0,46,255,19,254,2,254,
148,254,130,255,226,0,6,1,93,255,70,254,86,254,32,254,102,254,134,255,115,255,110,254,177,254,206,255,60,0,252,255,
75,255,103,254,33,254,183,254,121,255,194,255,136,255,69,255,113,255,14,0,128,0,52,0,147,255,71,255,51,255,79,255,
190,255,5,0,33,0,114,0,94,0,163,255,76,255,195,255,117,0,10,1,91,1,89,1,3,1,55,0,81,255,245,254,
26,255,118,255,243,255,65,0,28,0,248,255,119,0,62,1,94,1,240,0,157,0,90,0,62,0,104,0,0,0,11,255,
219,254,152,255,123,0,24,1,18,1,196,0,179,0,113,0,101,0,15,1,12,1,98,0,201,0,58,1,124,0,59,0,
207,0,200,0,161,0,45,1,165,1,96,1,197,0,165,0,218,0,89,0,147,255,172,255,24,0,110,0,26,1,100,1,
238,0,170,0,174,0,179,0,18,1,91,1,231,0,10,0,79,255,45,255,241,255,31,1,230,1,216,1,16,1,56,0,
7,0,146,0,233,0,43,0,116,255,24,0,226,0,171,0,70,0,192,255,223,254,229,254,217,255,51,0,200,255,92,255,
29,255,8,255,23,255,92,255,196,255,233,255,250,255,11,0,158,255,80,255,181,255,177,255,25,255,231,254,233,254,55,255,
42,0,68,0,220,254,200,253,52,254,118,255,86,0,36,0,147,255,115,255,192,255,130,0,1,1,105,0,225,255,0,0,
185,255,191,255,171,0,190,0,243,255,208,255,209,255,139,255,175,255,194,255,143,255,206,255,245,255,159,255,182,255,45,0,
39,0,212,255,177,255,156,255,106,255,86,255,165,255,63,0,193,0,178,0,237,255,43,255,9,255,240,254,84,254,192,253,
240,253,232,254,235,255,53,0,218,255,29,255,75,254,74,254,34,255,163,255,122,255,29,255,203,254,253,254,130,255,109,255,
214,254,43,254,140,253,216,253,33,255,233,255,185,255,46,255,165,254,168,254,22,255,52,255,131,255,50,0,34,0,122,255,
53,255,61,255,122,255,211,255,192,255,164,255,223,255,215,255,192,255,2,0,254,255,198,255,244,255,33,0,68,0,173,0,
164,0,67,0,167,0,18,1,64,0,98,255,139,255,178,255,144,255,255,255,90,0,235,255,219,255,150,0,200,0,19,0,
98,255,30,255,47,255,97,255,105,255,97,255,149,255,248,255,63,0,51,0,5,0,1,0,212,255,77,255,63,255,250,255,
90,0,235,255,242,255,205,0,213,0,220,255,224,255,145,0,245,255,56,255,243,255,121,0,47,0,118,0,140,0,214,255,
226,255,116,0,99,0,173,0,102,1,59,1,182,0,177,0,160,0,102,0,42,0,197,255,169,255,241,255,24,0,69,0,
96,0,241,255,219,255,182,0,40,1,191,0,186,0,6,1,180,0,97,0,189,0,4,1,200,0,175,0,245,0,53,1,
55,1,230,0,88,0,254,255,13,0,69,0,127,0,158,0,114,0,50,0,60,0,114,0,170,0,3,1,73,1,24,1,
173,0,87,0,6,0,2,0,131,0,221,0,203,0,248,0,78,1,13,1,114,0,61,0,155,0,56,1,119,1,6,1,
101,0,32,0,87,0,227,0,18,1,114,0,181,255,161,255,15,0,107,0,60,0,187,255,184,255,30,0,66,0,73,0,
91,0,27,0,202,255,181,255,118,255,61,255,146,255,248,255,218,255,141,255,96,255,69,255,50,255,38,255,56,255,107,255,
122,255,87,255,59,255,46,255,90,255,7,0,127,0,195,255,153,254,152,254,97,255,150,255,104,255,118,255,56,255,196,254,
30,255,231,255,16,0,220,255,155,255,240,254,158,254,129,255,98,0,21,0,145,255,185,255,5,0,38,0,60,0,5,0,
156,255,166,255,16,0,47,0,252,255,242,255,48,0,77,0,231,255,85,255,85,255,187,255,194,255,126,255,117,255,144,255,
151,255,180,255,220,255,171,255,17,255,192,254,63,255,217,255,216,255,213,255,22,0,219,255,88,255,123,255,226,255,223,255,
194,255,182,255,139,255,144,255,233,255,18,0,252,255,46,0,112,0,31,0,164,255,156,255,166,255,167,255,16,0,52,0,
143,255,110,255,68,0,149,0,242,255,112,255,149,255,5,0,37,0,200,255,158,255,3,0,113,0,160,0,160,0,90,0,
251,255,226,255,82,0,42,1,144,1,35,1,216,0,59,1,151,1,122,1,49,1,14,1,4,1,227,0,238,0,77,1,
71,1,188,0,129,0,146,0,116,0,110,0,163,0,201,0,176,0,91,0,87,0,232,0,44,1,222,0,186,0,182,0,
144,0,98,0,240,255,177,255,98,0,15,1,239,0,192,0,154,0,46,0,6,0,29,0,239,255,214,255,1,0,32,0,
73,0,112,0,72,0,27,0,53,0,17,0,113,255,42,255,142,255,181,255,113,255,111,255,92,255,18,255,99,255,197,255,
117,255,144,255,89,0,120,0,239,255,112,255,27,255,73,255,156,255,63,255,211,254,245,254,249,254,184,254,145,254,169,254,
45,255,190,255,226,255,252,255,33,0,8,0,32,0,108,0,99,0,64,0,72,0,62,0,42,0,64,0,197,0,242,1,
75,3,54,4,62,4,192,2,46,0,65,254,21,254,102,255,178,0,122,0,93,255,180,254,152,254,26,255,1,0,64,0,
66,0,206,0,194,0,200,255,5,255,134,254,41,254,63,254,109,254,191,254,75,255,43,255,198,254,40,255,125,255,104,255,
184,255,6,0,241,255,32,0,130,0,229,0,44,1,145,0,122,255,69,255,173,255,222,255,254,255,28,0,7,0,176,255,
53,255,58,255,208,255,43,0,71,0,122,0,156,0,205,0,210,0,32,0,121,255,132,255,167,255,219,255,25,0,173,255,
71,255,205,255,52,0,199,255,100,255,164,255,77,0,182,0,97,0,232,255,217,255,207,255,180,255,210,255,254,255,30,0,
64,0,82,0,83,0,43,0,13,0,128,0,8,1,230,0,132,0,14,0,137,255,23,0,126,1,169,1,180,0,102,0,
104,0,171,255,207,254,164,254,3,255,116,255,148,255,123,255,136,255,154,255,142,255,171,255,214,255,184,255,131,255,103,255,
70,255,106,255,209,255,180,255,70,255,159,255,108,0,135,0,30,0,251,255,81,0,211,0,210,0,68,0,46,0,164,0,
188,0,138,0,107,0,17,0,191,255,208,255,202,255,163,255,215,255,41,0,47,0,18,0,38,0,124,0,211,0,245,0,
238,0,185,0,138,0,163,0,118,0,225,255,228,255,91,0,42,0,184,255,194,255,217,255,232,255,54,0,89,0,14,0,
169,255,159,255,22,0,98,0,2,0,170,255,204,255,27,0,155,0,224,0,70,0,171,255,226,255,16,0,195,255,140,255,
101,255,41,255,56,255,137,255,188,255,179,255,117,255,45,255,50,255,130,255,175,255,118,255,68,255,122,255,175,255,188,255,
12,0,90,0,57,0,61,0,135,0,100,0,250,255,216,255,213,255,248,255,102,0,161,0,155,0,241,0,165,1,117,2,
54,3,237,2,231,0,110,254,70,253,142,253,65,254,173,254,201,254,123,254,147,253,7,253,14,254,200,255,133,0,26,0,
226,254,163,253,27,254,234,255,112,0,172,255,123,255,98,255,167,254,60,254,4,254,139,253,255,253,124,255,78,0,26,0,
178,255,86,255,124,255,103,0,233,0,72,0,167,255,216,255,74,0,153,0,233,0,31,1,39,1,39,1,33,1,29,1,
28,1,8,1,39,1,147,1,183,1,154,1,196,1,196,1,68,1,3,1,27,1,201,0,61,0,46,0,125,0,142,0,
67,0,39,0,107,0,134,0,105,0,118,0,96,0,251,255,211,255,214,255,139,255,64,255,102,255,214,255,41,0,17,0,
204,255,216,255,9,0,215,255,106,255,92,255,185,255,242,255,230,255,241,255,241,255,179,255,143,255,146,255,138,255,188,255,
254,255,219,255,188,255,202,255,162,255,139,255,179,255,177,255,198,255,3,0,210,255,122,255,143,255,225,255,54,0,52,0,
171,255,116,255,218,255,254,255,225,255,235,255,194,255,145,255,187,255,204,255,122,255,3,255,204,254,93,255,72,0,126,0,
39,0,209,255,116,255,113,255,221,255,216,255,100,255,98,255,194,255,246,255,211,255,105,255,7,255,15,255,122,255,235,255,
18,0,231,255,167,255,154,255,187,255,98,255,91,254,36,254,137,255,196,0,169,0,23,0,107,255,186,254,192,254,9,255,
192,254,164,254,36,255,165,255,57,0,214,0,137,0,72,255,85,254,161,254,175,255,35,0,187,255,125,255,192,255,35,0,
119,0,70,0,112,255,224,254,12,255,125,255,248,255,52,0,236,255,166,255,163,255,99,255,18,255,68,255,165,255,195,255,
238,255,51,0,39,0,230,255,219,255,231,255,226,255,6,0,48,0,7,0,233,255,55,0,131,0,123,0,79,0,14,0,
210,255,223,255,249,255,186,255,114,255,166,255,31,0,73,0,22,0,208,255,155,255,155,255,234,255,50,0,25,0,192,255,
102,255,68,255,160,255,57,0,86,0,236,255,166,255,183,255,194,255,172,255,147,255,118,255,123,255,204,255,31,0,54,0,
50,0,254,255,141,255,81,255,119,255,194,255,45,0,152,0,208,0,252,0,238,0,97,0,13,0,84,0,93,0,5,0,
231,255,227,255,241,255,101,0,203,0,206,0,244,0,48,1,255,0,146,0,90,0,103,0,135,0,118,0,68,0,51,0,
64,0,114,0,204,0,228,0,157,0,95,0,96,0,147,0,177,0,86,0,207,255,157,255,127,255,107,255,176,255,222,255,
202,255,253,255,51,0,12,0,20,0,77,0,72,0,96,0,160,0,130,0,87,0,125,0,132,0,83,0,64,0,75,0,
102,0,138,0,154,0,148,0,103,0,38,0,55,0,144,0,181,0,134,0,50,0,34,0,171,0,23,1,171,0,22,0,
7,0,37,0,94,0,206,0,7,1,232,0,210,0,212,0,221,0,19,1,83,1,57,1,207,0,144,0,103,0,224,255,
145,255,12,0,65,0,144,255,7,255,246,254,230,254,53,255,169,255,113,255,57,255,172,255,6,0,5,0,248,255,145,255,
19,255,25,255,59,255,41,255,44,255,24,255,235,254,33,255,142,255,219,255,47,0,60,0,199,255,180,255,81,0,152,0,
97,0,120,0,145,0,21,0,178,255,214,255,192,255,70,255,52,255,196,255,108,0,177,0,136,0,82,0,94,0,122,0,
128,0,137,0,124,0,81,0,52,0,10,0,166,255,84,255,123,255,11,0,125,0,108,0,19,0,219,255,182,255,136,255,
156,255,20,0,135,0,154,0,127,0,107,0,50,0,225,255,235,255,72,0,139,0,153,0,125,0,59,0,3,0,222,255,
192,255,219,255,31,0,50,0,38,0,33,0,240,255,176,255,175,255,197,255,205,255,234,255,38,0,110,0,158,0,129,0,
60,0,47,0,78,0,88,0,88,0,91,0,65,0,21,0,13,0,70,0,155,0,186,0,130,0,26,0,180,255,124,255,
154,255,241,255,68,0,121,0,138,0,130,0,119,0,101,0,96,0,125,0,132,0,80,0,2,0,164,255,102,255,169,255,
255,255,200,255,131,255,189,255,5,0,27,0,63,0,104,0,114,0,93,0,49,0,58,0,114,0,105,0,67,0,95,0,
102,0,64,0,77,0,97,0,68,0,88,0,163,0,168,0,97,0,47,0,52,0,75,0,77,0,43,0,250,255,0,0,
96,0,186,0,166,0,76,0,255,255,227,255,247,255,247,255,213,255,215,255,224,255,201,255,2,0,121,0,125,0,49,0,
17,0,244,255,208,255,220,255,215,255,186,255,203,255,210,255,194,255,242,255,31,0,255,255,232,255,220,255,177,255,231,255,
117,0,131,0,62,0,95,0,125,0,47,0,2,0,36,0,44,0,31,0,15,0,244,255,32,0,136,0,139,0,45,0,
11,0,65,0,114,0,100,0,47,0,16,0,255,255,207,255,158,255,150,255,155,255,183,255,5,0,77,0,66,0,249,255,
192,255,192,255,227,255,12,0,30,0,249,255,182,255,142,255,128,255,138,255,198,255,251,255,228,255,174,255,166,255,196,255,
206,255,170,255,150,255,193,255,219,255,169,255,110,255,85,255,89,255,120,255,146,255,178,255,10,0,98,0,82,0,5,0,
244,255,52,0,105,0,77,0,22,0,9,0,255,255,224,255,217,255,243,255,37,0,70,0,14,0,217,255,60,0,168,0,
93,0,224,255,206,255,214,255,208,255,12,0,104,0,102,0,22,0,247,255,13,0,241,255,187,255,202,255,4,0,29,0,
26,0,22,0,4,0,219,255,192,255,199,255,175,255,111,255,120,255,203,255,236,255,220,255,211,255,186,255,165,255,163,255,
144,255,168,255,1,0,23,0,231,255,225,255,223,255,200,255,231,255,45,0,84,0,58,0,241,255,235,255,48,0,24,0,
201,255,245,255,62,0,16,0,197,255,165,255,149,255,174,255,212,255,204,255,198,255,232,255,236,255,185,255,158,255,197,255,
0,0,63,0,118,0,88,0,16,0,45,0,94,0,14,0,194,255,248,255,50,0,69,0,101,0,86,0,29,0,33,0,
62,0,49,0,28,0,10,0,244,255,229,255,198,255,168,255,185,255,196,255,148,255,97,255,98,255,141,255,199,255,219,255,
181,255,182,255,32,0,119,0,84,0,8,0,225,255,207,255,227,255,28,0,34,0,233,255,191,255,168,255,148,255,170,255,
226,255,2,0,24,0,52,0,40,0,9,0,42,0,80,0,29,0,247,255,50,0,73,0,5,0,213,255,196,255,194,255,
9,0,82,0,53,0,252,255,244,255,12,0,44,0,34,0,230,255,220,255,5,0,12,0,12,0,50,0,86,0,98,0,
100,0,105,0,94,0,23,0,217,255,255,255,29,0,233,255,208,255,218,255,174,255,144,255,197,255,246,255,245,255,245,255,
254,255,214,255,132,255,116,255,184,255,232,255,236,255,249,255,251,255,223,255,200,255,177,255,160,255,193,255,3,0,50,0,
57,0,27,0,1,0,248,255,229,255,212,255,212,255,211,255,226,255,247,255,224,255,207,255,7,0,51,0,253,255,181,255,
199,255,18,0,24,0,218,255,197,255,209,255,200,255,223,255,29,0,45,0,17,0,6,0,17,0,34,0,23,0,218,255,
175,255,207,255,10,0,19,0,230,255,201,255,238,255,0,0,189,255,142,255,176,255,189,255,167,255,199,255,239,255,201,255,
161,255,193,255,210,255,159,255,118,255,125,255,145,255,171,255,184,255,148,255,108,255,120,255,159,255,205,255,9,0,75,0,
139,0,167,0,93,0,212,255,167,255,0,0,82,0,63,0,10,0,4,0,35,0,50,0,36,0,38,0,69,0,68,0,
32,0,40,0,70,0,39,0,8,0,56,0,109,0,101,0,75,0,69,0,58,0,32,0,16,0,18,0,22,0,37,0,
69,0,72,0,52,0,71,0,111,0,111,0,77,0,26,0,252,255,28,0,61,0,32,0,18,0,77,0,125,0,73,0,
215,255,167,255,231,255,33,0,11,0,255,255,40,0,60,0,49,0,59,0,65,0,28,0,250,255,5,0,18,0,1,0,
250,255,253,255,245,255,5,0,35,0,26,0,37,0,119,0,161,0,98,0,29,0,7,0,228,255,178,255,180,255,225,255,
251,255,11,0,45,0,60,0,49,0,45,0,43,0,30,0,28,0,51,0,87,0,87,0,38,0,29,0,81,0,83,0,
26,0,251,255,238,255,231,255,238,255,231,255,235,255,14,0,6,0,220,255,200,255,169,255,162,255,244,255,59,0,58,0,
68,0,66,0,8,0,227,255,231,255,203,255,147,255,121,255,147,255,195,255,230,255,12,0,59,0,71,0,23,0,219,255,
204,255,230,255,240,255,235,255,4,0,21,0,240,255,195,255,177,255,182,255,208,255,235,255,248,255,240,255,205,255,192,255,
207,255,152,255,80,255,130,255,214,255,223,255,223,255,210,255,164,255,177,255,217,255,186,255,176,255,242,255,17,0,229,255,
187,255,183,255,198,255,197,255,174,255,149,255,145,255,182,255,235,255,251,255,240,255,230,255,194,255,127,255,77,255,77,255,
125,255,189,255,234,255,252,255,244,255,236,255,252,255,236,255,169,255,132,255,138,255,139,255,147,255,162,255,170,255,197,255,
235,255,254,255,247,255,195,255,170,255,18,0,166,0,29,1,192,1,28,2,85,1,228,255,245,254,218,254,43,255,93,255,
45,255,233,254,224,254,249,254,33,255,105,255,205,255,50,0,122,0,118,0,251,255,49,255,159,254,137,254,176,254,193,254,
186,254,201,254,255,254,56,255,113,255,208,255,45,0,83,0,107,0,116,0,63,0,247,255,216,255,208,255,194,255,167,255,
148,255,180,255,254,255,76,0,131,0,128,0,86,0,71,0,75,0,51,0,20,0,9,0,25,0,67,0,100,0,90,0,
41,0,239,255,235,255,40,0,65,0,43,0,66,0,113,0,114,0,108,0,127,0,119,0,97,0,102,0,97,0,51,0,
29,0,56,0,68,0,61,0,91,0,142,0,173,0,185,0,158,0,103,0,75,0,54,0,21,0,35,0,76,0,61,0,
18,0,0,0,244,255,232,255,231,255,237,255,250,255,4,0,11,0,35,0,58,0,53,0,35,0,25,0,19,0,13,0,
11,0,23,0,53,0,80,0,81,0,60,0,39,0,36,0,46,0,51,0,46,0,28,0,12,0,21,0,24,0,255,255,
243,255,1,0,9,0,12,0,11,0,246,255,222,255,219,255,230,255,253,255,20,0,39,0,45,0,16,0,223,255,195,255,
189,255,206,255,255,255,30,0,6,0,226,255,205,255,192,255,195,255,212,255,222,255,214,255,209,255,241,255,20,0,17,0,
13,0,12,0,232,255,227,255,35,0,52,0,241,255,207,255,237,255,255,255,240,255,228,255,215,255,181,255,173,255,233,255,
47,0,59,0,34,0,9,0,16,0,60,0,87,0,77,0,62,0,31,0,4,0,13,0,251,255,197,255,200,255,229,255,
213,255,203,255,222,255,233,255,254,255,31,0,45,0,45,0,36,0,9,0,235,255,209,255,180,255,164,255,173,255,187,255,
184,255,186,255,225,255,24,0,64,0,75,0,22,0,196,255,191,255,218,255,185,255,173,255,219,255,236,255,232,255,237,255,
213,255,193,255,214,255,246,255,24,0,42,0,11,0,237,255,235,255,223,255,214,255,222,255,211,255,201,255,223,255,251,255,
4,0,244,255,227,255,247,255,8,0,243,255,243,255,41,0,101,0,117,0,93,0,68,0,50,0,20,0,0,0,254,255,
251,255,1,0,248,255,198,255,194,255,2,0,29,0,14,0,4,0,225,255,192,255,220,255,11,0,37,0,28,0,244,255,
233,255,255,255,252,255,245,255,238,255,197,255,196,255,251,255,252,255,222,255,238,255,232,255,204,255,249,255,69,0,78,0,
47,0,31,0,15,0,244,255,230,255,225,255,200,255,180,255,184,255,179,255,179,255,209,255,234,255,250,255,17,0,9,0,
251,255,24,0,38,0,6,0,238,255,233,255,242,255,248,255,221,255,212,255,5,0,47,0,62,0,76,0,64,0,48,0,
63,0,43,0,251,255,246,255,251,255,227,255,212,255,208,255,206,255,210,255,202,255,189,255,190,255,189,255,201,255,247,255,
32,0,25,0,232,255,178,255,154,255,160,255,187,255,229,255,249,255,241,255,251,255,4,0,236,255,221,255,226,255,222,255,
226,255,6,0,48,0,30,0,189,255,127,255,209,255,81,0,118,0,76,0,16,0,219,255,179,255,168,255,184,255,155,255,
56,255,16,255,94,255,161,255,154,255,129,255,114,255,150,255,0,0,119,0,239,0,74,1,11,1,64,0,150,255,65,255,
38,255,79,255,143,255,174,255,212,255,29,0,71,0,54,0,24,0,20,0,37,0,49,0,21,0,210,255,166,255,176,255,
200,255,215,255,234,255,255,255,21,0,42,0,51,0,54,0,48,0,24,0,17,0,12,0,216,255,183,255,235,255,34,0,
50,0,79,0,95,0,85,0,105,0,127,0,98,0,64,0,43,0,14,0,12,0,56,0,86,0,73,0,68,0,104,0,
129,0,89,0,24,0,4,0,36,0,78,0,85,0,46,0,3,0,12,0,49,0,50,0,17,0,0,0,10,0,31,0,
39,0,4,0,199,255,187,255,232,255,13,0,30,0,41,0,49,0,74,0,98,0,71,0,34,0,36,0,38,0,43,0,
89,0,115,0,82,0,51,0,40,0,19,0,9,0,22,0,23,0,4,0,6,0,38,0,59,0,50,0,28,0,246,255,
189,255,158,255,189,255,242,255,23,0,49,0,58,0,37,0,13,0,16,0,27,0,13,0,236,255,202,255,192,255,221,255,
248,255,243,255,237,255,242,255,240,255,6,0,38,0,32,0,32,0,71,0,60,0,245,255,218,255,240,255,244,255,238,255,
249,255,10,0,13,0,7,0,8,0,9,0,243,255,212,255,208,255,235,255,4,0,247,255,231,255,18,0,76,0,65,0,
19,0,14,0,24,0,1,0,226,255,226,255,247,255,8,0,26,0,40,0,32,0,22,0,35,0,48,0,43,0,19,0,
238,255,232,255,18,0,43,0,28,0,19,0,20,0,18,0,25,0,26,0,12,0,11,0,32,0,53,0,54,0,38,0,
18,0,244,255,209,255,208,255,228,255,217,255,215,255,255,255,20,0,248,255,227,255,232,255,242,255,242,255,232,255,225,255,
228,255,239,255,254,255,3,0,2,0,12,0,16,0,8,0,24,0,38,0,14,0,252,255,2,0,4,0,18,0,39,0,
17,0,235,255,244,255,20,0,29,0,22,0,19,0,15,0,10,0,20,0,32,0,21,0,13,0,28,0,32,0,18,0,
12,0,9,0,15,0,42,0,58,0,40,0,14,0,254,255,243,255,217,255,191,255,221,255,28,0,39,0,23,0,38,0,
44,0,25,0,18,0,8,0,245,255,248,255,255,255,241,255,224,255,220,255,242,255,28,0,40,0,11,0,251,255,13,0,
25,0,21,0,24,0,31,0,15,0,251,255,251,255,253,255,250,255,2,0,253,255,240,255,8,0,42,0,46,0,50,0,
59,0,49,0,36,0,27,0,9,0,0,0,253,255,243,255,247,255,10,0,7,0,248,255,250,255,20,0,56,0,67,0,
33,0,247,255,233,255,241,255,1,0,10,0,255,255,233,255,241,255,27,0,39,0,252,255,227,255,247,255,16,0,49,0,
73,0,41,0,2,0,11,0,10,0,243,255,252,255,11,0,6,0,7,0,2,0,238,255,246,255,22,0,33,0,25,0,
18,0,17,0,16,0,2,0,231,255,218,255,231,255,253,255,1,0,250,255,0,0,9,0,1,0,248,255,253,255,5,0,
251,255,223,255,211,255,235,255,253,255,241,255,229,255,233,255,239,255,245,255,251,255,2,0,12,0,14,0,20,0,33,0,
17,0,237,255,233,255,234,255,214,255,209,255,216,255,209,255,221,255,254,255,6,0,0,0,5,0,15,0,24,0,31,0,
25,0,19,0,22,0,27,0,27,0,26,0,19,0,4,0,252,255,4,0,22,0,34,0,29,0,10,0,3,0,29,0,
50,0,33,0,12,0,21,0,36,0,38,0,28,0,14,0,8,0,3,0,248,255,254,255,13,0,9,0,254,255,249,255,
240,255,239,255,255,255,13,0,22,0,19,0,1,0,254,255,13,0,12,0,251,255,237,255,228,255,235,255,0,0,13,0,
15,0,25,0,32,0,23,0,18,0,21,0,17,0,12,0,24,0,39,0,39,0,37,0,33,0,13,0,0,0,13,0,
19,0,2,0,247,255,2,0,18,0,23,0,13,0,6,0,12,0,17,0,16,0,20,0,23,0,16,0,7,0,1,0,
254,255,0,0,8,0,18,0,20,0,14,0,8,0,7,0,2,0,250,255,245,255,244,255,249,255,8,0,13,0,252,255,
231,255,224,255,228,255,231,255,234,255,245,255,8,0,20,0,16,0,11,0,14,0,15,0,10,0,14,0,26,0,27,0,
9,0,247,255,245,255,248,255,254,255,16,0,34,0,25,0,252,255,244,255,0,0,4,0,0,0,4,0,3,0,253,255,
1,0,10,0,9,0,9,0,13,0,5,0,245,255,237,255,232,255,230,255,240,255,244,255,235,255,239,255,255,255,255,255,
245,255,250,255,3,0,0,0,254,255,10,0,18,0,7,0,252,255,251,255,243,255,228,255,224,255,233,255,249,255,9,0,
8,0,254,255,3,0,17,0,15,0,5,0,8,0,21,0,30,0,24,0,8,0,253,255,2,0,15,0,20,0,12,0,
6,0,11,0,16,0,14,0,7,0,251,255,242,255,250,255,16,0,30,0,14,0,241,255,235,255,249,255,254,255,245,255,
230,255,225,255,235,255,243,255,245,255,0,0,15,0,19,0,21,0,18,0,254,255,241,255,255,255,15,0,14,0,3,0,
249,255,243,255,239,255,252,255,29,0,37,0,4,0,234,255,241,255,0,0,3,0,254,255,251,255,0,0,2,0,251,255,
251,255,0,0,255,255,255,255,4,0,6,0,6,0,5,0,255,255,249,255,2,0,21,0,27,0,16,0,9,0,10,0,
6,0,1,0,2,0,12,0,29,0,31,0,13,0,6,0,20,0,30,0,29,0,22,0,11,0,10,0,15,0,10,0,
9,0,16,0,17,0,19,0,27,0,23,0,14,0,14,0,15,0,9,0,1,0,255,255,6,0,6,0,255,255,7,0,
20,0,14,0,252,255,239,255,237,255,249,255,5,0,1,0,251,255,1,0,1,0,251,255,2,0,9,0,1,0,253,255,
10,0,11,0,254,255,253,255,1,0,246,255,236,255,234,255,239,255,247,255,249,255,246,255,10,0,42,0,43,0,3,0,
177,255,108,255,162,255,44,0,88,0,20,0,226,255,225,255,237,255,1,0,6,0,244,255,238,255,235,255,217,255,225,255,
4,0,8,0,251,255,6,0,12,0,248,255,237,255,236,255,227,255,236,255,11,0,19,0,7,0,7,0,7,0,254,255,
253,255,1,0,1,0,3,0,1,0,0,0,11,0,16,0,2,0,249,255,255,255,2,0,255,255,252,255,249,255,249,255,
248,255,244,255,245,255,249,255,248,255,251,255,2,0,6,0,7,0,0,0,241,255,236,255,248,255,5,0,5,0,252,255,
247,255,250,255,252,255,247,255,244,255,241,255,239,255,240,255,242,255,245,255,249,255,251,255,248,255,241,255,239,255,244,255,
247,255,242,255,241,255,244,255,244,255,253,255,9,0,9,0,2,0,3,0,3,0,254,255,252,255,252,255,254,255,6,0,
14,0,15,0,10,0,2,0,252,255,254,255,5,0,6,0,1,0,4,0,14,0,12,0,4,0,5,0,7,0,4,0,
7,0,9,0,1,0,253,255,3,0,5,0,1,0,251,255,250,255,3,0,5,0,250,255,249,255,7,0,11,0,7,0,
9,0,11,0,6,0,1,0,1,0,8,0,13,0,7,0,252,255,252,255,10,0,16,0,1,0,239,255,242,255,255,255,
4,0,4,0,5,0,5,0,2,0,253,255,253,255,4,0,9,0,11,0,12,0,13,0,12,0,4,0,253,255,3,0,
9,0,4,0,2,0,4,0,252,255,249,255,3,0,5,0,252,255,253,255,5,0,7,0,6,0,6,0,11,0,12,0,
6,0,2,0,4,0,5,0,3,0,1,0,253,255,250,255,249,255,250,255,253,255,253,255,251,255,0,0,4,0,255,255,
255,255,5,0,4,0,253,255,255,255,5,0,2,0,252,255,255,255,5,0,6,0,3,0,4,0,8,0,11,0,9,0,
4,0,254,255,247,255,241,255,250,255,9,0,7,0,255,255,1,0,1,0,253,255,1,0,3,0,250,255,245,255,248,255,
249,255,249,255,250,255,0,0,7,0,5,0,254,255,253,255,255,255,253,255,254,255,4,0,6,0,1,0,251,255,251,255,
254,255,254,255,255,255,0,0,254,255,252,255,253,255,3,0,12,0,11,0,250,255,238,255,250,255,10,0,12,0,4,0,
252,255,249,255,253,255,4,0,1,0,244,255,237,255,244,255,0,0,10,0,12,0,1,0,252,255,10,0,15,0,252,255,
241,255,254,255,10,0,6,0,249,255,242,255,248,255,253,255,251,255,250,255,254,255,2,0,6,0,6,0,254,255,247,255,
247,255,249,255,250,255,252,255,0,0,255,255,250,255,252,255,4,0,5,0,2,0,254,255,245,255,238,255,248,255,6,0,
9,0,4,0,0,0,253,255,255,255,255,255,252,255,251,255,254,255,0,0,254,255,251,255,0,0,6,0,1,0,248,255,
248,255,1,0,9,0,5,0,252,255,253,255,4,0,3,0,255,255,253,255,252,255,4,0,13,0,5,0,251,255,255,255,
1,0,251,255,249,255,252,255,252,255,251,255,253,255,254,255,250,255,251,255,4,0,11,0,7,0,1,0,255,255,1,0,
7,0,4,0,250,255,250,255,6,0,10,0,2,0,252,255,1,0,10,0,7,0,251,255,246,255,252,255,4,0,9,0,
4,0,249,255,248,255,1,0,3,0,255,255,3,0,9,0,5,0,251,255,253,255,9,0,13,0,5,0,0,0,2,0,
8,0,9,0,4,0,1,0,1,0,254,255,255,255,9,0,10,0,2,0,251,255,248,255,251,255,5,0,9,0,5,0,
0,0,251,255,251,255,252,255,251,255,250,255,255,255,3,0,9,0,14,0,9,0,250,255,243,255,245,255,251,255,1,0,
4,0,0,0,251,255,251,255,254,255,254,255,254,255,1,0,0,0,255,255,2,0,2,0,253,255,255,255,5,0,4,0,
0,0,0,0,0,0,252,255,250,255,0,0,4,0,253,255,251,255,8,0,12,0,2,0,254,255,1,0,253,255,254,255,
4,0,5,0,3,0,3,0,253,255,252,255,4,0,10,0,2,0,246,255,245,255,1,0,10,0,5,0,248,255,245,255,
255,255,5,0,254,255,249,255,254,255,9,0,16,0,13,0,0,0,248,255,249,255,251,255,1,0,8,0,3,0,253,255,
253,255,254,255,252,255,251,255,250,255,249,255,249,255,248,255,251,255,3,0,5,0,2,0,3,0,5,0,6,0,7,0,
3,0,251,255,250,255,254,255,253,255,249,255,255,255,7,0,0,0,245,255,249,255,255,255,252,255,251,255,1,0,6,0,
8,0,7,0,5,0,3,0,2,0,2,0,4,0,7,0,9,0,5,0,250,255,242,255,251,255,2,0,253,255,248,255,
250,255,254,255,0,0,255,255,250,255,248,255,251,255,254,255,254,255,255,255,2,0,4,0,255,255,250,255,255,255,6,0,
6,0,2,0,0,0,2,0,6,0,8,0,5,0,254,255,250,255,252,255,254,255,253,255,254,255,255,255,251,255,253,255,
3,0,1,0,254,255,0,0,255,255,252,255,1,0,10,0,10,0,4,0,1,0,5,0,7,0,6,0,4,0,253,255,
247,255,250,255,253,255,250,255,251,255,1,0,3,0,4,0,3,0,0,0,0,0,3,0,3,0,4,0,7,0,4,0,
253,255,250,255,253,255,0,0,1,0,1,0,2,0,3,0,3,0,2,0,253,255,248,255,252,255,5,0,7,0,0,0,
249,255,255,255,8,0,7,0,0,0,252,255,250,255,252,255,0,0,253,255,249,255,253,255,0,0,254,255,0,0,1,0,
1,0,3,0,2,0,0,0,4,0,8,0,4,0,254,255,251,255,251,255,253,255,1,0,3,0,1,0,252,255,251,255,
254,255,2,0,7,0,5,0,253,255,250,255,254,255,0,0,0,0,254,255,250,255,251,255,1,0,4,0,1,0,253,255,
251,255,253,255,2,0,4,0,2,0,255,255,252,255,252,255,255,255,5,0,8,0,4,0,0,0,2,0,3,0,0,0,
0,0,255,255,254,255,255,255,253,255,249,255,253,255,0,0,253,255,251,255,253,255,0,0,6,0,7,0,255,255,250,255,
0,0,6,0,3,0,253,255,251,255,254,255,1,0,1,0,2,0,2,0,2,0,1,0,0,0,254,255,251,255,253,255,
3,0,4,0,2,0,3,0,3,0,255,255,255,255,2,0,2,0,1,0,1,0,254,255,253,255,254,255,253,255,251,255,
254,255,3,0,5,0,4,0,3,0,1,0,2,0,6,0,6,0,1,0,253,255,254,255,255,255,255,255,2,0,3,0,
255,255,253,255,255,255,255,255,255,255,0,0,254,255,252,255,255,255,2,0,4,0,2,0,0,0,255,255,1,0,4,0,
5,0,0,0,253,255,255,255,3,0,2,0,0,0,255,255,254,255,252,255,250,255,251,255,255,255,0,0,255,255,253,255,
252,255,254,255,1,0,253,255,249,255,253,255,3,0,5,0,4,0,2,0,1,0,1,0,1,0,2,0,4,0,5,0,
4,0,1,0,254,255,253,255,254,255,251,255,251,255,0,0,3,0,0,0,253,255,255,255,255,255,253,255,254,255,1,0,
4,0,4,0,3,0,1,0,1,0,3,0,2,0,254,255,253,255,253,255,253,255,253,255,253,255,254,255,255,255,255,255,
255,255,2,0,4,0,1,0,254,255,253,255,253,255,0,0,5,0,6,0,4,0,0,0,254,255,0,0,2,0,0,0,
253,255,253,255,1,0,2,0,0,0,252,255,252,255,0,0,3,0,1,0,254,255,255,255,1,0,1,0,2,0,2,0,
0,0,0,0,2,0,1,0,1,0,3,0,2,0,255,255,255,255,1,0,0,0,254,255,254,255,255,255,255,255,0,0,
1,0,2,0,0,0,255,255,0,0,1,0,0,0,255,255,0,0,0,0,0,0,0,0,255,255,255,255,0,0,1,0,
1,0,255,255,253,255,252,255,254,255,1,0,3,0,2,0,1,0,255,255,254,255,254,255,255,255,255,255,255,255,0,0,
1,0,3,0,2,0,255,255,254,255,255,255,1,0,3,0,2,0,255,255,255,255,0,0,1,0,1,0,1,0,1,0,
0,0,255,255,1,0,3,0,3,0,0,0,255,255,1,0,2,0,1,0,0,0,1,0,1,0,255,255,255,255,0,0,
1,0,0,0,0,0,254,255,254,255,1,0,2,0,1,0,255,255,0,0,1,0,1,0,255,255,255,255,1,0,1,0,
1,0,0,0,0,0,1,0,2,0,0,0,254,255,254,255,0,0,0,0,0,0,255,255,255,255,255,255,0,0,0,0,
0,0,255,255,1,0,2,0,0,0,255,255,0,0,0,0,0,0,0,0,255,255,255,255,1,0,2,0,0,0,255,255,
0,0,0,0,1,0,0,0,0,0,
};

3779
src/client/sound/data/cow1.pcm Executable file

File diff suppressed because it is too large Load Diff

3779
src/client/sound/data/cow2.pcm Executable file

File diff suppressed because it is too large Load Diff

5515
src/client/sound/data/cow3.pcm Executable file

File diff suppressed because it is too large Load Diff

4685
src/client/sound/data/cow4.pcm Executable file

File diff suppressed because it is too large Load Diff

1249
src/client/sound/data/cowhurt1.pcm Executable file

File diff suppressed because it is too large Load Diff

1249
src/client/sound/data/cowhurt2.pcm Executable file

File diff suppressed because it is too large Load Diff

1400
src/client/sound/data/cowhurt3.pcm Executable file

File diff suppressed because it is too large Load Diff

1274
src/client/sound/data/creeper1.pcm Executable file

File diff suppressed because it is too large Load Diff

1341
src/client/sound/data/creeper2.pcm Executable file

File diff suppressed because it is too large Load Diff

1274
src/client/sound/data/creeper3.pcm Executable file

File diff suppressed because it is too large Load Diff

1425
src/client/sound/data/creeper4.pcm Executable file

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

769
src/client/sound/data/eat1.pcm Executable file
View File

@@ -0,0 +1,769 @@
unsigned char PCM_eat1[24538] = {
1,0,0,0,2,0,0,0,68,172,0,0,229,47,0,0,255,254,49,254,167,253,238,253,235,254,14,0,171,0,109,0,
189,255,43,255,224,254,223,254,209,254,78,254,49,254,122,255,11,1,105,1,220,0,85,0,105,0,222,0,238,0,185,0,
171,0,156,0,155,0,145,0,131,0,0,1,167,1,160,1,252,0,247,255,210,254,11,254,232,253,63,254,152,254,196,254,
230,254,7,255,62,255,94,255,81,255,180,255,131,0,17,1,72,1,91,1,112,1,105,1,0,1,115,0,240,255,95,255,
254,254,235,254,37,255,135,255,104,255,220,254,210,254,32,255,190,254,247,253,8,254,245,254,223,255,120,0,191,0,2,1,
158,1,243,1,91,1,87,0,202,255,212,255,248,255,56,0,141,0,107,0,21,0,235,255,185,255,219,255,81,0,142,0,
202,0,4,1,195,0,253,255,1,255,142,254,12,255,15,0,251,0,44,1,206,0,128,0,26,0,255,255,167,0,31,1,
4,1,210,0,181,0,196,0,184,0,166,0,25,1,76,1,167,0,22,0,21,0,98,0,151,0,131,0,148,0,177,0,
114,0,133,0,35,1,254,0,150,255,68,254,44,254,18,255,98,0,130,1,222,1,176,1,103,1,7,1,238,0,106,1,
240,1,173,1,200,0,110,0,135,0,212,255,4,255,180,255,105,1,103,2,226,1,216,0,156,0,213,0,191,0,118,0,
10,0,123,255,202,254,101,254,119,255,184,1,51,3,248,2,81,1,100,255,191,254,85,255,208,255,211,255,241,255,133,0,
24,1,3,1,86,0,154,255,128,255,65,0,237,0,223,0,140,0,68,0,112,0,134,1,100,2,147,1,221,255,30,255,
245,255,133,1,44,2,93,1,155,0,7,1,177,1,66,1,209,255,194,254,205,254,60,255,154,255,215,255,227,255,45,0,
63,0,117,255,13,255,151,255,20,0,137,0,254,0,199,0,43,0,174,255,17,255,63,254,35,254,28,255,175,255,94,255,
126,255,220,255,136,255,241,254,187,254,66,255,57,0,194,0,209,0,107,0,95,255,137,254,170,254,97,255,206,255,135,255,
3,255,153,254,182,254,51,255,19,254,241,251,111,252,187,254,140,255,239,255,160,1,108,3,236,3,213,2,198,0,249,254,
9,254,130,253,22,253,52,253,164,253,171,253,115,253,24,253,140,252,162,252,162,253,11,255,93,0,164,0,22,0,69,0,
21,1,33,1,105,0,233,255,166,255,220,254,235,253,167,253,122,253,11,253,212,252,246,252,4,254,173,255,11,0,87,255,
62,255,145,255,235,255,131,0,74,1,70,2,154,2,21,1,175,254,88,253,140,253,48,254,12,254,210,253,192,254,66,0,
38,1,246,0,70,0,217,255,228,254,215,253,13,255,237,0,119,0,215,255,41,1,121,2,155,2,31,2,50,1,255,255,
249,254,156,254,190,254,163,254,78,254,2,254,202,253,11,254,163,254,60,255,71,0,205,1,207,2,137,2,123,1,238,0,
235,0,113,0,254,255,149,0,90,1,115,1,224,1,227,2,42,3,179,2,7,2,54,0,90,253,82,251,224,250,146,251,
255,252,176,254,82,0,138,1,177,1,217,0,52,0,129,0,46,1,172,1,206,1,67,1,38,0,113,254,35,252,211,250,
115,251,173,252,231,253,151,255,164,1,152,3,123,4,228,3,148,2,242,0,180,255,230,255,237,0,162,1,194,1,107,1,
210,0,234,255,53,255,235,255,111,1,213,1,64,1,235,0,132,0,131,255,172,254,145,254,66,255,171,0,138,1,14,1,
48,0,148,255,183,255,231,0,163,1,21,1,46,0,35,255,33,254,200,253,241,253,42,254,43,254,72,254,47,255,150,0,
252,1,183,2,255,1,217,0,117,0,68,0,249,255,177,255,73,255,85,255,112,0,223,1,212,1,234,255,90,254,117,254,
12,255,42,255,27,255,149,255,63,0,184,255,93,254,224,253,210,254,246,0,242,2,63,3,158,2,178,1,209,255,64,254,
186,254,39,0,245,0,11,1,174,0,56,0,245,255,240,255,93,0,242,0,17,1,247,0,170,0,2,0,224,255,106,0,
184,0,176,0,108,0,18,0,14,0,8,0,242,255,87,0,216,0,242,0,114,0,67,255,148,254,138,255,54,1,17,2,
205,1,63,1,25,1,21,1,191,0,40,0,165,255,114,255,127,255,172,255,242,255,225,255,14,255,108,254,55,255,60,0,
152,255,80,254,93,254,136,255,148,0,219,0,142,0,98,0,153,0,185,0,95,0,1,0,67,0,166,0,55,0,4,255,
26,254,91,254,28,255,64,255,43,255,52,255,250,254,203,254,236,254,82,255,29,0,182,0,225,0,110,1,13,2,187,1,
214,0,244,255,241,254,51,254,92,254,33,255,26,0,230,0,216,0,27,0,37,255,33,254,221,253,132,254,77,255,31,0,
187,0,180,0,127,0,82,0,64,0,109,0,102,0,126,0,37,1,120,1,31,1,170,0,91,0,149,0,60,1,104,1,
233,0,122,0,137,0,1,1,109,1,19,1,89,0,85,0,140,0,121,0,169,0,155,0,42,0,70,0,98,0,6,0,
198,255,115,255,64,255,134,255,196,255,23,0,110,0,12,0,7,255,210,253,39,253,128,253,1,254,105,254,77,255,21,0,
61,0,65,0,79,0,76,0,165,0,115,1,134,1,37,0,168,254,138,254,141,255,116,0,157,0,156,0,185,0,168,0,
129,0,76,0,68,0,170,0,166,0,12,0,73,0,132,1,68,2,68,2,138,2,186,2,171,1,49,0,140,255,38,255,
161,254,112,254,80,254,251,253,22,254,73,255,234,0,156,1,110,1,77,1,62,1,248,0,117,0,222,255,190,255,47,0,
90,0,216,255,83,255,93,255,251,255,184,0,190,0,53,0,14,0,3,0,201,255,48,0,8,1,29,1,69,0,126,255,
56,255,175,254,18,254,151,254,217,255,188,0,197,0,255,255,213,255,148,0,163,0,145,0,139,1,68,2,213,1,214,0,
251,255,189,255,225,255,40,0,156,0,208,0,118,0,153,255,91,254,79,253,67,253,125,254,17,0,199,0,147,0,245,255,
116,255,135,255,13,0,214,0,181,1,48,2,210,1,98,0,193,254,247,253,115,253,17,253,49,253,45,253,135,253,28,255,
129,0,150,0,25,0,254,255,49,0,212,255,242,254,87,254,106,254,104,255,104,0,77,0,186,255,51,255,143,254,61,254,
122,254,72,255,80,0,203,0,184,0,108,0,51,0,57,0,237,255,199,255,196,0,206,1,194,1,30,1,129,0,31,0,
154,255,211,254,185,254,103,255,198,255,98,255,235,254,30,255,213,255,139,0,208,0,146,0,182,0,19,1,73,0,251,254,
88,254,16,254,174,254,103,0,110,1,227,0,188,255,44,255,134,255,220,255,121,255,172,254,245,253,1,254,219,254,119,255,
126,255,176,255,63,0,140,0,59,0,206,255,235,255,88,0,85,0,199,255,70,255,26,255,35,255,146,255,102,0,246,0,
22,1,23,1,168,0,216,255,205,255,249,0,122,2,92,3,48,3,36,2,202,0,131,255,144,254,68,254,203,254,230,255,
198,0,11,1,252,0,116,0,165,255,114,255,138,255,94,255,123,255,217,255,246,255,20,0,35,0,201,255,134,255,253,255,
82,1,7,3,171,3,109,2,166,0,247,255,50,0,52,0,111,255,177,254,38,255,33,0,56,0,204,255,170,255,199,255,
25,0,30,0,100,255,235,254,145,255,110,0,45,0,18,255,131,254,136,254,159,254,115,255,122,0,32,0,55,255,120,255,
138,0,71,1,103,1,98,1,65,1,96,0,242,254,31,254,129,254,127,255,13,0,40,0,79,0,54,0,206,255,107,255,
246,254,192,254,39,255,178,255,15,0,83,0,98,0,121,0,56,1,129,2,20,3,84,2,65,1,182,0,141,0,123,0,
88,0,33,0,164,255,207,254,57,254,246,253,157,253,88,253,95,253,253,253,63,255,104,0,105,1,161,2,177,3,119,4,
237,4,195,4,230,3,97,2,217,0,45,0,14,0,219,255,89,255,153,254,15,254,192,253,166,253,19,254,186,254,84,255,
176,255,78,255,217,254,9,255,1,255,120,254,77,254,212,254,153,255,101,0,153,1,235,2,107,3,48,3,186,2,15,2,
144,1,168,1,223,1,34,1,65,255,202,253,224,253,177,254,45,255,83,255,85,255,253,254,187,254,99,255,99,0,244,0,
93,1,138,1,106,1,41,1,133,0,22,0,78,0,101,0,137,0,216,0,11,0,46,254,207,252,213,252,46,254,195,255,
63,0,145,255,219,254,29,255,16,0,165,0,128,0,49,0,65,0,131,0,141,0,104,0,59,0,9,0,237,255,57,0,
185,0,144,0,171,255,182,254,2,254,38,254,3,255,5,255,28,254,211,253,162,254,34,0,125,1,228,1,215,1,6,2,
85,2,87,2,78,1,247,254,115,252,218,250,10,250,213,249,148,250,12,252,130,253,164,254,154,255,204,0,222,1,4,2,
201,1,207,1,195,1,158,1,59,1,133,0,40,0,103,0,39,1,144,1,112,0,236,254,138,254,215,254,195,255,178,0,
238,255,36,254,106,253,240,253,68,254,251,253,181,254,160,0,203,1,26,2,186,1,198,255,236,253,54,254,31,255,234,254,
64,254,51,254,215,254,128,255,192,255,224,255,14,0,81,0,167,0,134,0,236,255,198,255,45,0,177,0,23,1,135,0,
24,255,95,254,132,254,156,254,158,254,186,254,23,255,198,255,192,0,28,2,236,2,48,2,186,0,135,255,6,255,166,255,
169,0,210,0,63,0,165,255,104,255,180,255,47,0,42,0,216,255,48,0,55,1,241,1,216,1,98,1,31,1,173,0,
214,255,98,255,15,255,90,254,115,254,213,255,55,1,154,1,4,1,28,0,22,255,253,253,167,253,135,254,94,0,119,2,
119,3,119,3,128,3,8,3,195,1,68,0,196,254,99,254,184,255,6,1,217,0,194,255,82,255,31,0,213,0,105,0,
122,255,208,254,241,254,240,255,176,0,105,0,239,255,234,255,21,0,78,0,107,0,62,0,20,0,38,0,204,0,200,1,
224,1,92,1,50,1,215,0,94,0,77,0,212,255,13,255,54,255,63,0,211,0,122,0,83,0,161,0,148,0,195,0,
101,1,109,1,227,0,14,0,32,255,167,254,74,254,232,253,25,254,185,254,151,255,122,0,210,0,122,0,75,255,210,253,
75,253,134,253,162,253,130,253,164,253,236,254,203,0,107,1,248,0,239,0,83,1,157,1,252,1,71,2,211,1,231,0,
157,0,35,1,102,1,176,0,173,255,67,255,121,255,126,255,87,254,215,252,232,252,76,254,235,255,57,1,103,1,68,1,
225,1,223,1,251,0,147,0,160,0,222,0,121,1,21,2,216,1,114,0,90,255,27,255,95,254,32,254,190,255,122,1,
221,1,1,1,76,255,207,253,0,253,179,252,130,253,66,255,76,0,11,0,246,255,240,0,8,2,62,2,141,1,198,0,
178,0,228,0,12,1,122,1,110,1,78,0,4,255,162,254,126,255,148,0,114,0,112,255,166,254,70,254,98,254,8,255,
174,255,169,255,1,255,111,254,151,254,105,255,57,0,175,0,75,1,234,1,125,1,21,0,210,254,21,254,224,253,131,254,
201,255,3,1,223,1,54,2,238,1,83,1,212,0,191,0,8,1,254,0,65,0,119,255,215,254,136,253,75,251,129,249,
217,249,28,252,97,254,2,0,222,1,61,3,157,2,94,1,222,1,130,3,148,4,193,4,214,3,48,2,105,1,86,1,
0,0,134,253,190,251,30,251,30,251,168,251,176,252,173,253,98,254,50,255,53,0,68,1,168,2,58,4,236,4,13,4,
50,2,203,0,186,0,174,1,12,3,44,4,154,4,116,4,42,3,124,0,87,254,134,253,8,253,243,253,62,0,180,255,
245,250,76,246,39,245,17,247,18,250,150,252,45,253,174,250,94,247,137,248,218,254,211,4,28,7,226,7,36,10,75,14,
237,17,206,17,34,14,201,10,115,9,56,8,173,6,152,5,169,2,174,251,104,243,63,238,71,237,182,238,114,241,62,246,
160,252,41,1,50,1,91,254,190,252,137,254,169,2,52,7,185,10,198,11,235,9,91,6,196,2,32,0,21,254,27,252,
134,250,36,249,213,247,173,247,206,248,92,250,100,252,141,254,234,255,209,0,223,1,242,2,148,3,22,3,135,1,176,255,
214,253,108,252,55,252,15,253,103,254,191,255,167,0,101,1,34,2,106,2,86,2,207,1,80,0,181,254,41,254,108,254,
244,254,107,255,169,255,252,255,38,0,0,0,70,0,119,0,103,255,230,253,12,253,198,252,19,253,235,253,248,254,242,255,
137,0,248,0,154,1,23,2,80,2,110,2,97,2,100,2,132,2,118,2,59,2,189,1,8,1,169,0,227,0,173,1,
149,2,184,2,214,1,35,0,44,254,244,252,23,252,16,251,172,251,148,254,94,1,87,2,28,2,212,1,154,1,91,1,
187,1,172,1,20,0,143,255,3,1,113,1,194,0,159,0,86,0,192,255,68,255,198,254,68,255,126,0,156,0,254,255,
4,0,83,0,53,0,123,255,130,254,24,254,29,254,186,253,84,253,227,253,220,254,53,255,106,255,56,0,227,0,155,0,
43,0,161,0,121,1,124,1,197,0,96,0,120,0,109,0,243,255,53,255,204,254,222,254,172,254,67,254,118,254,34,255,
240,255,217,0,132,1,195,1,71,1,116,0,246,0,32,2,143,1,237,255,229,254,201,254,111,255,119,255,156,254,139,254,
140,254,224,253,203,254,32,1,248,1,37,1,53,0,120,255,197,254,135,254,142,255,214,1,160,3,130,3,113,2,151,1,
148,0,63,255,8,254,65,253,156,253,15,255,73,0,143,0,57,0,24,0,220,0,48,2,5,3,157,2,111,1,181,0,
93,0,143,255,107,254,162,253,188,253,83,254,123,254,132,254,174,254,134,254,187,254,23,0,41,2,204,3,213,3,173,2,
173,1,18,1,210,0,212,0,128,0,182,255,194,254,47,254,110,254,231,254,53,255,155,255,229,255,247,255,8,0,59,0,
147,0,202,0,18,1,157,1,181,1,107,1,125,1,91,1,97,0,43,255,142,254,124,254,99,254,85,254,137,254,214,254,
70,255,108,255,51,255,180,255,126,0,105,0,63,0,137,0,193,0,181,0,68,0,75,0,113,1,61,2,209,1,189,0,
103,255,159,254,83,254,98,253,117,252,194,252,38,254,40,0,234,1,134,2,0,2,220,0,34,0,124,0,13,1,10,1,
184,0,60,0,134,255,253,254,93,255,198,0,32,2,101,2,236,1,18,1,160,255,82,254,68,254,126,255,75,1,231,1,
206,255,13,253,10,253,138,255,170,1,17,2,218,1,144,1,87,0,253,254,58,255,86,0,157,0,200,255,30,255,61,0,
76,2,15,3,222,2,24,3,16,3,167,1,102,255,115,253,26,252,86,251,90,251,2,252,186,252,42,253,68,254,227,0,
24,3,24,3,124,2,114,2,239,1,218,0,14,0,155,255,126,255,30,0,72,1,46,2,105,2,206,1,97,0,217,254,
158,253,116,252,230,251,253,252,0,255,178,255,252,254,232,254,140,255,209,255,237,255,42,0,128,0,144,0,248,255,129,255,
47,255,83,254,30,254,40,255,76,0,252,0,43,1,50,1,128,1,166,1,160,1,143,1,238,0,25,0,202,255,185,255,
161,255,251,255,203,0,24,1,89,0,224,254,93,253,16,253,249,253,114,254,104,254,227,254,122,255,124,255,189,255,32,1,
0,2,240,0,35,0,146,0,98,0,11,0,150,0,201,0,71,0,215,255,171,255,220,255,96,0,158,0,63,0,182,255,
92,255,78,255,40,0,108,1,168,1,89,1,176,1,55,2,35,2,120,1,197,0,125,0,69,0,162,255,220,254,150,254,
195,254,11,255,124,255,18,0,194,0,74,1,53,1,45,1,89,1,182,0,16,0,17,0,80,255,226,253,225,252,106,252,
175,252,172,253,50,255,247,0,248,1,219,1,255,0,16,0,94,0,124,1,83,1,215,255,138,254,196,253,69,253,184,253,
118,255,47,1,182,1,40,1,0,0,200,254,181,253,231,252,249,252,251,253,68,255,28,0,27,0,117,255,67,254,55,253,
208,253,155,255,204,0,10,1,54,1,228,1,75,2,196,1,47,1,154,0,160,255,55,255,154,255,242,255,244,255,6,0,
222,0,60,2,13,3,178,2,69,1,42,0,73,0,106,0,16,0,54,0,219,0,182,0,207,254,53,252,5,251,168,251,
196,252,56,253,132,253,86,254,210,254,182,254,210,254,24,255,173,255,195,0,157,1,246,1,8,2,23,2,24,2,11,1,
14,255,243,253,91,254,79,255,5,0,112,0,159,0,114,0,252,255,75,255,200,254,50,255,243,255,28,0,27,0,80,0,
154,0,12,1,154,1,17,2,46,2,0,2,191,1,87,1,53,1,141,1,158,1,95,1,226,0,204,255,240,254,253,254,
66,255,120,255,196,255,235,255,49,0,54,1,70,2,33,2,64,1,192,0,140,0,85,0,24,0,220,255,53,255,42,253,
190,250,127,250,48,252,2,254,153,255,142,0,107,0,207,255,27,255,93,254,193,253,52,253,67,253,89,254,132,255,197,0,
137,2,57,3,100,2,177,1,127,1,216,1,152,2,19,2,104,0,135,255,143,255,203,255,5,0,31,0,107,0,226,0,
245,0,166,0,103,0,158,0,44,1,147,1,161,1,74,1,213,0,22,1,80,2,51,3,34,2,248,255,34,255,232,255,
37,1,19,2,187,1,77,0,73,255,253,254,29,255,42,0,213,1,136,2,180,1,197,0,193,0,186,0,172,255,43,254,
66,253,18,253,105,253,92,254,131,255,161,0,194,1,7,2,31,1,25,0,143,255,236,255,16,1,109,1,216,0,144,0,
71,0,92,255,152,254,8,255,160,0,221,1,134,1,59,0,242,254,40,254,112,254,150,255,13,0,202,254,89,253,206,253,
13,255,64,255,147,255,240,0,12,2,147,2,22,3,149,3,250,3,86,3,33,1,84,255,42,255,24,255,36,254,223,252,
216,251,130,251,214,251,48,252,217,252,144,254,101,0,239,0,128,0,5,0,204,255,9,0,180,0,118,1,245,1,6,2,
39,2,170,2,165,2,92,1,171,255,215,254,56,255,225,255,79,255,177,253,76,253,159,254,72,255,106,254,210,253,235,254,
108,1,178,3,28,4,252,2,163,1,169,0,57,0,121,0,30,1,110,1,228,0,155,255,243,253,70,252,49,251,77,251,
5,252,88,252,226,252,124,254,62,0,101,1,90,2,238,2,21,2,237,255,177,254,147,255,95,0,146,255,251,254,17,0,
171,1,16,2,80,1,250,0,19,2,233,3,74,4,26,2,21,255,6,253,107,252,202,252,67,252,44,251,127,252,135,255,
30,1,135,1,251,2,220,5,88,8,99,8,86,5,60,0,227,251,156,250,13,252,149,254,131,0,244,0,78,0,253,254,
128,253,56,252,90,251,249,251,139,253,106,254,193,255,248,1,255,2,18,3,198,3,41,5,2,6,174,4,157,1,220,254,
109,253,51,253,207,252,140,251,123,251,153,253,241,255,56,1,6,2,244,2,64,3,250,1,244,255,163,254,112,254,251,254,
253,255,142,1,112,3,63,5,156,6,114,6,133,4,22,2,239,255,66,254,241,252,181,251,12,251,9,251,249,250,24,251,
48,252,131,254,12,1,68,2,163,2,79,3,69,3,190,1,66,0,7,0,3,0,81,255,253,254,163,255,102,0,254,0,
143,1,221,1,165,1,172,0,114,255,168,254,221,253,10,253,48,253,58,254,203,254,133,254,210,254,83,0,122,1,151,1,
107,1,132,0,102,254,122,252,232,251,25,252,147,252,149,253,208,254,190,255,16,0,19,255,33,253,77,252,81,253,69,254,
195,253,241,252,111,253,40,255,231,0,148,1,23,1,118,0,44,0,173,255,235,254,97,254,17,254,144,253,27,253,112,253,
14,254,170,254,117,0,194,2,106,3,119,2,7,1,20,0,83,0,211,0,137,0,224,255,59,255,118,254,127,253,24,253,
68,254,40,0,70,1,105,1,191,0,208,255,59,255,30,255,5,0,124,1,197,1,229,0,28,0,104,0,53,2,126,3,
189,2,95,2,126,3,105,3,243,0,39,254,74,253,152,254,49,0,60,0,243,254,58,254,223,254,2,0,202,0,182,255,
136,252,255,251,107,1,246,7,86,9,112,5,133,0,38,253,66,251,76,252,250,0,138,5,113,7,61,7,182,3,252,252,
233,247,56,248,91,252,218,0,212,3,110,4,94,2,27,255,56,253,115,254,147,2,24,7,221,8,128,6,25,1,117,251,
168,248,15,250,11,254,169,1,54,3,127,2,42,0,41,253,228,250,90,251,145,254,42,2,184,4,167,5,234,4,76,4,
60,5,99,7,125,9,191,9,195,7,107,4,74,0,235,252,173,251,119,251,217,250,237,249,132,249,94,250,37,252,126,253,
123,254,208,0,188,3,86,4,200,2,140,1,113,1,245,1,155,2,146,3,84,5,251,6,165,6,108,3,110,254,232,249,
72,247,130,246,174,246,161,247,136,249,214,250,244,250,193,251,10,254,13,2,231,6,14,9,151,7,224,4,148,2,236,1,
235,1,90,0,82,254,54,253,135,252,60,252,180,251,50,250,85,249,217,250,192,253,14,0,187,0,183,255,233,254,107,0,
4,3,168,4,203,4,198,3,37,3,244,2,146,1,177,255,17,255,93,0,148,2,24,3,38,1,55,254,82,252,222,252,
225,253,151,253,140,253,134,254,90,0,23,2,135,2,32,3,177,3,141,2,44,1,204,255,243,253,89,253,3,254,204,254,
146,254,78,253,156,253,152,255,19,1,226,1,109,2,168,3,122,4,13,2,176,254,44,253,223,251,123,250,43,250,35,251,
136,252,178,252,107,252,184,253,113,0,82,3,196,4,254,3,247,1,156,0,27,1,143,1,25,1,207,1,170,2,4,2,
236,0,224,254,44,252,242,250,25,251,45,252,165,253,38,254,126,254,156,255,124,0,251,0,162,1,70,2,99,3,183,4,
225,3,241,0,55,255,155,255,98,0,140,0,217,0,136,2,122,3,3,1,144,253,34,252,235,252,199,254,108,255,249,254,
225,255,101,2,71,5,189,6,190,5,156,3,120,1,241,255,205,254,120,252,247,249,109,249,126,250,35,252,197,253,185,255,
142,1,9,1,80,255,173,255,196,1,225,2,249,0,148,253,118,252,157,253,98,255,223,1,251,3,92,4,128,3,96,2,
48,1,6,255,27,252,101,250,180,250,154,252,180,254,177,254,93,253,29,254,179,0,116,2,176,2,252,0,229,253,80,252,
180,252,96,253,83,254,76,255,207,255,37,0,21,0,192,255,214,254,219,252,139,251,209,251,182,252,38,254,52,0,184,2,
170,5,66,8,33,9,202,7,116,6,45,6,96,4,26,1,99,254,86,251,148,247,163,244,95,244,125,247,109,251,68,254,
140,0,237,1,66,2,35,2,105,2,157,3,80,4,145,4,138,5,176,5,144,4,250,2,203,0,2,255,155,253,190,251,
215,249,182,247,195,246,214,248,82,252,137,255,72,1,31,1,159,1,123,3,206,4,121,4,94,1,84,253,42,252,126,253,
45,255,223,255,153,254,149,253,31,255,119,1,174,2,4,2,227,255,86,255,204,0,63,1,70,1,74,2,169,2,244,2,
96,4,144,5,238,5,232,4,95,2,235,0,10,1,217,0,78,0,133,255,149,254,88,254,134,254,140,255,74,2,170,4,
162,4,13,3,160,0,223,253,156,252,86,253,53,255,197,1,254,2,30,1,185,254,113,254,195,254,219,253,163,252,2,253,
39,255,214,0,74,0,72,255,75,0,59,2,162,2,246,1,172,2,247,4,69,5,239,1,89,254,159,252,245,251,41,252,
84,252,212,251,200,251,164,252,207,253,224,253,127,252,232,251,33,253,8,255,181,255,73,254,208,253,164,255,11,1,60,2,
77,4,222,5,231,5,11,4,176,1,85,0,46,0,173,1,105,2,105,1,5,2,74,2,122,255,3,253,189,252,51,254,
212,255,195,255,146,0,199,2,122,3,146,3,88,4,41,6,79,8,19,7,212,2,101,255,177,253,118,253,98,253,167,252,
82,252,55,252,207,252,33,254,195,254,109,0,107,3,146,4,246,3,156,2,117,0,42,255,186,255,103,1,91,2,137,0,
182,253,72,253,60,254,60,254,197,253,156,253,201,253,40,254,154,253,97,252,115,252,54,254,57,1,172,4,228,6,91,7,
126,5,46,2,233,1,164,4,95,4,227,255,175,251,127,250,235,251,235,254,248,1,156,3,73,4,66,4,74,3,1,3,
128,3,89,3,221,2,205,1,230,255,180,253,255,250,3,249,65,248,121,247,35,248,150,251,144,0,74,5,132,7,17,6,
213,1,243,254,63,1,32,4,155,2,71,255,225,252,191,253,17,1,248,255,253,250,247,248,98,250,8,253,207,254,251,254,
51,1,216,5,221,8,64,9,91,8,30,8,101,9,231,8,63,4,10,254,200,248,150,244,251,241,167,241,194,243,228,246,
213,247,146,247,157,250,213,0,92,7,68,11,7,10,219,6,111,5,225,3,242,0,144,253,18,252,35,254,26,255,6,252,
124,249,201,248,193,246,55,244,79,244,225,246,53,250,105,254,154,3,57,9,33,13,244,10,126,4,144,0,191,255,125,255,
229,254,113,254,122,0,5,3,103,2,127,0,167,254,28,253,223,252,82,252,153,251,124,252,250,253,91,254,186,252,76,251,
240,252,75,1,243,7,49,13,130,12,73,9,100,6,214,2,129,255,101,252,100,250,160,249,109,247,126,246,10,248,147,247,
132,247,223,251,115,1,97,4,42,3,38,0,121,255,189,0,14,2,98,3,123,4,197,4,254,3,110,2,140,0,130,255,
56,0,3,1,79,1,76,1,151,254,17,251,126,250,75,250,194,249,87,251,202,252,113,252,236,251,190,252,10,0,50,3,
27,3,183,1,222,255,61,253,140,251,215,249,251,248,74,253,238,3,235,6,202,5,85,2,202,255,97,0,113,1,137,0,
63,254,170,252,111,252,252,249,38,245,1,244,247,247,152,252,197,255,161,2,145,5,104,7,91,7,121,4,41,0,35,255,
182,0,53,1,93,2,247,4,14,7,235,6,27,3,123,255,225,254,81,253,196,250,46,249,188,247,228,247,192,248,214,248,
45,251,104,255,217,2,33,5,197,6,114,10,151,15,63,17,29,15,117,12,109,11,126,11,114,9,246,4,173,255,35,250,
9,247,147,247,253,249,209,253,200,0,195,0,185,255,173,253,93,250,61,249,39,250,70,250,129,250,193,251,176,253,74,0,
130,2,233,4,190,7,119,8,239,8,123,11,217,10,161,4,197,253,214,249,219,249,132,252,191,253,140,252,188,252,130,0,
157,4,165,5,7,5,29,5,138,5,201,4,242,2,225,1,217,1,128,2,78,4,225,5,246,5,133,4,88,2,170,2,
230,4,107,4,160,0,194,250,125,245,25,244,241,244,249,247,241,253,170,2,151,6,0,11,24,11,188,6,209,0,222,250,
162,248,46,249,129,248,83,247,101,246,9,247,137,251,142,0,212,1,28,0,143,254,244,255,192,2,149,2,139,255,249,252,
165,252,1,254,4,255,138,0,166,4,164,7,222,6,119,5,37,3,105,254,45,250,42,248,106,248,232,249,127,250,157,251,
105,254,253,0,96,3,126,5,168,6,135,7,147,7,235,6,201,6,226,6,196,6,111,6,10,6,8,4,228,254,87,250,
214,248,157,247,214,245,202,244,230,245,101,248,252,248,239,249,174,254,98,4,4,8,40,8,186,6,201,6,214,4,66,0,
91,253,77,251,71,250,148,251,246,252,106,254,42,0,246,1,172,3,20,2,251,253,135,251,17,251,4,252,89,252,207,251,
157,253,102,255,193,254,65,254,85,253,71,251,109,249,132,247,60,246,52,246,6,247,179,248,70,250,229,251,103,255,129,4,
16,8,154,8,165,8,63,8,57,5,83,1,87,253,75,249,149,247,65,246,136,243,39,243,213,245,0,249,164,251,198,253,
46,255,124,254,192,252,27,253,125,255,216,2,95,6,75,9,157,12,72,15,150,15,183,15,246,16,239,16,156,12,138,4,
29,254,171,251,57,249,72,244,54,239,27,237,18,238,236,240,12,246,250,252,158,3,247,7,117,9,156,11,31,17,234,20,
145,17,47,10,222,5,215,6,218,7,165,3,219,253,72,253,186,255,21,254,53,248,233,243,187,244,44,248,150,249,19,249,
65,249,241,249,148,250,11,252,85,255,34,4,184,8,173,12,84,15,122,14,34,11,43,8,115,6,205,4,144,0,207,250,
126,248,27,251,23,0,23,3,4,2,31,0,147,255,134,255,198,254,202,251,49,249,117,250,48,252,191,250,175,247,158,246,
198,249,72,255,59,4,188,6,126,6,255,7,176,12,163,14,252,11,141,7,219,2,31,0,247,255,158,255,97,252,213,245,
199,240,118,242,200,247,164,250,243,249,233,248,75,252,56,3,84,5,13,0,120,250,21,249,218,250,118,254,77,2,113,5,
8,10,101,16,239,18,36,14,161,5,129,252,202,244,99,242,167,243,60,243,175,241,4,243,127,249,69,2,223,6,191,6,
253,5,88,6,44,8,190,8,147,5,34,3,213,4,66,7,69,7,229,5,92,5,87,5,101,4,207,1,232,251,26,244,
88,239,231,237,212,237,72,240,126,245,132,253,232,8,115,18,231,19,213,15,51,12,27,9,187,2,32,249,174,242,111,243,
136,247,64,251,97,254,162,0,199,2,219,4,229,3,151,254,118,248,102,246,108,248,236,250,109,253,105,1,56,7,192,12,
230,13,178,11,94,10,1,9,79,5,64,0,57,253,212,252,66,250,232,245,137,245,190,249,10,255,181,255,245,250,4,248,
227,247,127,247,248,246,236,245,196,248,7,2,122,12,170,21,140,26,195,26,122,26,156,21,59,13,40,8,33,2,21,251,
93,246,215,241,180,241,242,243,19,241,41,238,153,237,24,238,244,244,90,255,113,4,176,3,67,2,40,4,198,9,253,16,
90,21,199,21,241,21,82,19,197,11,219,3,239,252,133,248,201,246,228,243,102,242,203,242,5,242,193,244,205,251,57,1,
212,1,249,254,54,255,85,3,126,5,230,4,30,3,97,5,97,13,200,15,13,10,47,5,107,3,73,4,62,4,111,254,
42,247,165,242,94,239,132,236,163,235,16,239,159,243,230,244,33,246,198,249,180,253,83,0,128,0,205,0,146,5,145,11,
221,11,220,6,42,2,4,1,169,2,193,2,224,255,95,254,221,253,63,252,108,252,84,253,114,253,212,253,160,250,94,244,
81,242,158,245,186,248,238,248,170,252,167,5,160,10,193,11,3,14,5,15,40,15,189,12,73,6,200,3,254,6,1,9,
238,5,225,0,193,0,133,1,133,251,54,244,11,242,88,243,171,241,136,236,32,237,139,242,71,248,118,1,9,9,55,14,
28,21,175,21,202,17,37,16,20,10,235,0,157,251,110,249,169,246,46,240,25,236,69,239,222,245,229,255,160,6,57,3,
219,253,50,249,11,245,102,246,102,249,220,251,86,2,54,12,211,19,236,18,33,14,186,15,37,19,137,13,145,0,78,249,
218,250,44,248,217,241,148,243,8,251,15,3,145,6,66,1,135,253,250,255,98,254,129,249,58,251,60,2,184,3,46,254,
82,252,205,2,51,11,81,13,191,9,200,8,238,9,99,8,243,3,34,250,190,240,124,241,35,247,191,251,129,255,120,1,
131,2,242,1,125,0,235,254,96,248,79,241,37,242,16,248,211,254,60,2,165,1,162,4,216,9,200,9,128,5,235,0,
182,254,200,253,228,249,92,245,186,245,28,249,178,249,12,249,242,251,203,253,14,251,144,250,47,254,185,1,8,6,28,10,
128,9,40,8,181,10,230,9,151,2,14,254,220,0,223,5,77,4,97,250,251,242,71,242,171,243,247,247,197,252,46,0,
138,5,246,9,93,14,179,21,229,23,210,16,245,5,99,255,71,0,251,254,144,248,8,247,102,250,125,250,99,245,241,242,
54,249,107,255,189,254,228,251,73,251,99,254,38,2,164,6,198,12,135,11,36,7,225,10,220,15,218,18,147,17,6,8,
244,4,229,6,84,253,45,244,218,245,169,250,221,255,124,3,98,8,23,17,69,20,99,15,116,7,130,0,93,254,34,253,
45,251,127,252,63,254,113,255,120,2,223,5,11,8,186,6,59,5,193,8,33,10,249,5,239,2,210,254,59,248,204,246,
68,249,188,248,227,247,216,249,44,249,127,244,208,243,135,248,239,249,241,246,97,246,44,247,51,245,125,243,195,245,233,251,
209,2,142,6,253,6,222,5,101,5,210,4,88,254,184,246,153,247,14,249,26,244,162,240,37,242,211,245,174,248,223,248,
6,249,64,250,171,251,101,251,86,246,221,242,120,247,12,254,187,2,199,5,111,5,152,4,29,6,128,7,38,6,41,2,
21,254,122,251,8,249,142,244,94,239,68,238,39,240,254,242,226,249,37,0,121,0,239,255,133,0,153,0,143,255,63,253,
146,253,169,254,229,251,112,251,181,255,36,2,200,255,15,250,216,245,222,244,23,243,29,240,85,238,240,240,217,247,1,251,
185,249,31,251,98,254,79,2,146,7,73,9,116,7,1,8,80,9,70,6,198,0,66,252,133,250,40,253,185,253,133,247,
51,244,255,245,125,245,61,246,201,250,210,254,13,2,193,2,164,1,113,3,162,5,106,6,103,8,201,8,202,5,104,4,
216,6,210,8,93,8,76,7,6,5,71,3,116,4,112,3,139,255,55,254,79,254,67,254,155,254,39,255,80,3,242,8,
169,9,138,9,214,11,79,10,53,4,174,255,81,254,101,253,46,253,181,255,42,2,174,1,230,1,109,5,199,9,214,11,
28,9,223,4,216,5,121,7,245,3,92,3,104,8,158,10,20,8,89,4,88,4,43,8,78,5,120,253,98,254,12,4,
60,4,218,0,97,255,120,4,176,11,154,11,9,9,31,11,200,13,234,13,14,12,155,9,173,8,225,7,193,6,52,8,
255,10,109,11,137,9,124,6,228,2,47,1,241,1,5,2,11,1,172,1,185,4,229,7,213,6,23,3,200,4,168,12,
82,19,36,19,63,12,97,6,157,7,85,10,225,8,0,7,227,6,6,5,56,2,242,0,145,254,163,251,99,249,152,245,
213,246,150,255,143,2,229,253,89,252,162,255,174,4,229,7,229,8,97,12,172,14,152,10,241,3,230,252,165,248,116,250,
243,250,102,247,113,249,211,0,58,2,54,255,62,1,37,3,211,253,122,248,247,248,189,252,232,255,182,1,27,7,246,14,
65,17,25,15,239,11,150,7,192,4,153,1,118,250,229,242,145,237,244,234,108,238,62,248,36,1,90,3,255,3,108,9,
6,16,50,16,84,8,168,1,116,3,191,6,64,7,66,8,114,7,157,3,95,255,176,251,31,250,191,248,254,245,9,245,
214,243,140,239,25,237,206,241,149,250,191,253,124,251,230,253,107,4,156,9,239,12,229,11,31,9,247,9,149,8,249,0,
191,251,188,253,113,255,37,251,63,245,67,241,103,237,48,235,177,237,153,240,131,238,60,239,97,250,232,3,131,4,147,6,
54,9,219,4,68,254,40,247,118,237,122,230,116,229,186,233,124,242,95,250,49,253,15,255,60,4,122,10,78,14,25,14,
18,9,184,0,169,247,192,240,238,238,254,240,105,243,13,246,209,249,179,252,169,251,250,247,89,246,92,248,42,251,188,249,
216,243,61,240,207,240,243,243,144,251,83,6,241,17,89,25,171,18,176,4,16,255,105,253,152,246,117,239,140,237,102,239,
191,242,182,245,206,245,37,246,215,248,190,246,224,241,2,244,119,251,64,4,217,8,103,4,127,0,136,1,99,3,239,7,
162,9,25,7,69,9,105,10,204,4,88,254,202,248,225,244,64,241,145,237,216,238,58,240,145,238,6,243,116,253,136,4,
204,4,43,4,224,8,187,12,1,11,74,8,228,3,40,254,72,252,49,253,157,252,161,249,71,248,102,250,138,250,115,247,
186,244,223,245,212,253,35,4,44,0,49,251,75,254,145,7,216,16,9,16,57,6,67,4,161,13,57,20,167,18,19,12,
187,2,132,252,128,249,32,243,239,236,111,237,82,244,4,251,77,246,54,236,28,238,54,247,255,251,162,253,169,255,211,7,
151,19,114,21,93,13,144,7,66,9,170,13,107,15,199,16,212,19,120,21,162,18,179,10,125,2,169,249,12,234,69,221,
111,220,130,220,61,218,7,224,40,237,240,247,186,254,139,7,135,20,206,33,99,41,36,40,242,34,116,29,216,21,164,11,
138,255,143,248,24,249,57,245,191,240,227,246,129,252,142,251,229,248,8,243,4,240,237,243,21,247,114,249,218,0,10,13,
124,23,227,28,112,33,207,34,60,29,11,22,219,15,95,12,113,12,59,9,173,0,255,247,129,245,27,251,16,254,110,247,
206,240,151,244,161,1,19,11,108,9,114,4,177,2,236,4,128,6,164,0,188,252,163,4,79,13,127,14,72,13,83,12,
15,10,249,5,1,2,18,1,209,2,23,3,167,2,203,5,60,6,134,1,205,1,232,2,176,255,41,3,85,7,231,255,
22,247,123,244,100,246,124,253,77,4,188,6,138,8,99,11,226,14,10,16,179,10,71,3,92,254,68,249,5,247,116,247,
57,238,99,224,64,224,142,233,122,238,114,239,25,247,54,9,228,22,171,26,142,30,217,29,0,25,3,23,247,13,223,3,
203,4,109,4,42,1,80,0,167,249,142,239,173,236,130,242,101,246,125,242,162,243,86,250,93,253,54,0,202,253,76,249,
213,255,97,6,248,9,84,13,33,4,83,252,0,0,60,252,107,244,111,238,86,229,79,230,218,240,146,246,19,250,160,254,
61,5,187,13,107,15,5,9,178,1,30,255,216,1,172,1,172,251,176,245,72,241,200,239,0,242,194,243,130,243,215,242,
120,244,83,249,237,250,61,246,26,242,199,242,154,247,173,253,96,255,47,252,67,249,83,249,209,249,133,247,31,249,121,2,
202,6,14,5,227,4,107,253,21,245,250,250,117,0,107,254,154,255,122,254,160,248,218,245,235,245,94,248,190,251,78,251,
19,248,150,246,9,248,14,249,176,248,164,247,220,248,170,4,187,15,42,9,23,2,125,6,17,9,62,6,246,255,254,250,
188,250,33,247,185,243,129,243,149,241,143,245,173,248,168,244,114,251,103,7,110,8,53,4,29,0,77,2,212,8,76,11,
186,12,81,2,189,237,213,239,125,3,186,13,206,20,103,27,239,20,221,6,236,255,212,250,237,235,41,225,226,228,213,232,
252,236,84,248,41,3,137,12,137,20,27,21,159,18,175,17,44,13,212,5,165,4,42,9,46,11,164,9,120,5,55,2,
105,4,165,2,68,250,44,247,32,248,92,248,52,249,125,247,82,244,33,243,50,245,36,252,20,3,229,6,83,9,24,9,
117,7,65,6,79,6,248,7,40,8,16,8,179,6,195,0,42,253,176,252,208,251,237,254,24,1,149,253,18,251,6,253,
137,2,82,4,173,255,156,254,222,255,147,254,171,255,135,1,207,3,41,11,134,19,105,20,92,12,1,7,126,9,181,9,
113,8,31,9,87,7,110,6,121,5,26,2,28,2,179,2,100,0,135,250,137,239,41,235,243,242,234,252,219,4,203,6,
67,4,202,8,241,17,57,21,171,15,81,5,185,0,94,1,41,250,227,236,197,232,219,241,183,253,32,4,87,7,155,11,
9,17,247,20,182,21,83,20,85,16,104,7,166,251,42,245,248,246,116,250,133,255,89,8,229,11,29,9,130,6,243,0,
156,250,17,250,207,249,208,244,214,241,156,246,249,251,122,254,15,7,18,18,162,22,85,24,178,22,98,18,45,14,178,3,
10,249,222,247,28,248,70,246,251,246,100,251,118,0,62,1,100,4,68,13,128,15,218,10,209,4,65,251,123,245,10,247,
20,248,152,251,190,6,188,14,114,11,95,7,18,8,253,5,70,4,38,7,41,6,136,254,74,245,4,241,246,244,124,249,
128,249,83,248,211,250,86,3,61,7,80,254,205,242,47,239,160,246,119,2,111,7,88,8,0,9,239,7,230,9,141,14,
200,19,170,24,155,21,224,13,229,8,189,0,206,246,176,244,49,249,5,254,94,1,134,2,200,254,162,249,29,248,106,244,
125,238,147,239,43,246,58,254,141,7,91,12,188,11,10,15,80,24,14,30,230,27,75,20,190,9,133,2,43,253,57,242,
236,233,231,233,242,235,226,240,34,245,44,244,66,245,195,249,92,253,142,252,252,247,223,249,201,1,254,6,168,11,209,17,
33,22,7,17,28,4,228,255,106,254,70,243,221,238,177,245,239,249,144,248,154,243,64,242,161,247,187,255,31,9,229,8,
160,255,164,254,28,0,160,251,38,252,75,5,90,14,161,11,230,0,126,254,64,2,238,2,180,252,129,241,149,242,87,253,
87,252,213,247,216,250,162,252,129,253,135,0,65,1,36,255,121,255,196,3,131,3,114,252,110,246,192,243,15,246,2,253,
81,1,135,2,107,5,147,11,11,17,148,13,125,3,207,250,165,243,59,242,58,250,127,0,126,254,126,252,207,253,237,254,
35,1,48,4,154,6,106,10,246,9,248,0,62,249,176,248,22,252,74,254,125,249,243,241,195,241,163,248,99,253,221,250,
52,248,168,249,228,249,159,250,5,252,9,250,142,250,251,252,194,251,119,254,8,6,2,8,165,5,143,5,179,0,87,241,
16,229,130,227,196,227,10,230,160,238,196,250,16,9,176,23,107,35,185,35,28,21,217,9,67,9,110,4,112,248,86,236,
15,232,161,238,19,243,172,242,66,252,20,14,95,19,184,4,91,243,213,234,191,231,141,231,188,226,171,223,84,238,76,252,
49,253,6,4,151,14,217,17,190,18,131,15,151,0,188,240,212,249,164,11,120,0,28,243,180,254,234,15,33,34,244,31,
53,254,203,239,227,248,190,243,148,232,159,223,194,220,4,238,99,4,105,15,205,21,112,30,145,37,123,37,134,36,236,30,
106,13,203,3,43,3,155,246,179,228,219,220,221,228,135,243,62,245,143,238,190,234,80,236,224,248,148,255,8,242,180,231,
169,238,95,250,47,5,179,14,0,13,249,4,17,14,126,27,33,17,216,253,76,241,116,238,103,249,60,250,85,235,156,231,
63,237,212,244,100,251,238,244,139,242,172,2,70,14,84,6,145,246,187,244,212,2,126,11,70,9,189,5,239,7,250,14,
206,14,103,10,94,7,126,251,125,241,224,244,240,247,152,244,17,235,47,229,171,243,114,5,218,4,27,252,92,251,104,11,
190,30,124,28,130,14,54,11,89,15,227,14,123,5,106,251,56,251,237,255,129,254,104,243,50,232,53,232,215,234,152,235,
141,245,96,1,165,8,121,16,148,9,199,249,208,255,200,10,93,0,131,240,184,238,12,4,155,27,9,17,228,253,134,3,
162,8,75,5,17,3,179,246,23,240,157,252,36,1,167,254,52,15,119,36,103,34,11,14,155,252,36,249,197,251,43,240,
194,215,225,205,91,217,51,237,20,3,134,10,198,254,253,1,5,28,76,35,51,10,116,239,46,232,200,239,213,245,79,241,
109,236,248,238,225,246,129,5,191,16,253,10,173,251,90,237,6,234,35,248,71,1,234,246,14,240,107,249,24,4,198,4,
244,4,12,20,138,40,9,40,138,12,214,239,1,236,234,242,234,234,83,219,240,212,153,225,8,252,60,6,249,250,78,245,
51,250,75,255,80,1,231,254,171,255,42,13,165,26,215,16,33,2,156,22,164,51,201,37,197,0,89,240,107,251,142,12,
192,5,228,236,19,231,65,250,240,13,228,16,140,7,64,7,156,19,35,21,134,9,167,7,94,12,197,8,255,6,177,11,
157,14,10,14,241,6,93,1,207,2,197,254,58,0,179,14,33,21,215,23,61,26,109,14,40,6,244,13,68,25,138,33,
194,28,134,14,146,9,82,14,69,20,53,17,189,6,119,10,184,25,140,25,73,5,64,248,62,5,188,12,155,246,130,229,
8,241,199,7,247,15,247,255,214,248,186,14,122,30,2,26,123,19,241,13,7,13,73,19,158,21,13,19,140,22,86,32,
138,33,93,17,41,252,121,247,253,9,114,29,184,26,24,10,233,254,21,255,77,254,89,237,14,222,149,234,195,5,107,23,
141,25,195,19,29,24,201,37,104,35,152,15,209,2,9,1,194,253,45,248,137,241,99,237,236,247,159,8,154,10,83,2,
171,252,59,252,253,253,215,249,165,244,230,250,61,6,126,11,224,7,251,253,56,249,187,254,197,5,242,4,248,248,83,236,
12,235,97,237,125,235,231,234,209,237,194,244,222,252,86,251,104,245,200,249,219,1,49,3,110,255,120,248,148,245,240,250,
124,252,180,243,2,232,228,224,116,225,191,230,41,234,227,231,138,230,127,241,110,2,84,9,207,3,54,252,207,254,244,2,
19,249,116,241,42,247,99,250,122,247,244,239,105,233,16,239,201,242,242,240,218,250,90,2,224,253,182,253,190,251,11,241,
220,235,71,238,125,238,157,234,44,232,179,235,94,244,186,251,185,252,227,253,230,0,218,253,125,250,138,246,244,234,1,234,
191,246,155,249,208,245,161,247,157,250,39,252,86,251,17,251,201,252,140,247,229,237,44,235,53,239,122,245,132,250,107,252,
199,254,252,5,196,14,38,19,54,23,216,24,44,10,29,245,61,237,53,235,114,231,191,233,107,242,159,247,14,246,129,247,
68,253,26,255,189,3,151,11,13,11,66,9,83,10,35,7,112,6,209,8,31,9,62,16,238,26,246,25,27,14,12,0,
112,247,28,249,149,250,219,239,149,229,183,235,128,248,142,1,146,10,97,15,160,12,185,8,128,4,160,1,175,3,23,7,
62,7,189,254,43,244,123,249,66,5,63,4,151,255,203,254,86,252,25,252,113,1,10,7,248,5,188,253,43,249,205,252,
65,255,14,252,198,249,67,255,222,7,52,11,14,13,145,15,187,13,128,10,11,8,31,7,218,14,193,24,64,23,85,17,
59,15,108,9,62,2,13,3,197,1,159,246,14,239,199,240,224,246,135,255,136,1,162,251,109,252,221,2,14,4,95,2,
44,3,127,7,214,11,22,11,19,8,197,6,87,6,100,7,60,11,40,19,236,30,56,39,191,34,21,19,213,5,84,2,
28,0,189,249,160,247,85,253,63,255,17,250,80,252,148,6,193,9,209,5,222,0,27,251,215,249,44,252,155,249,65,248,
88,2,126,14,229,14,165,7,111,2,7,3,2,9,125,10,187,7,101,14,209,17,111,5,57,253,217,251,96,245,208,242,
164,247,128,254,153,4,96,5,174,6,189,8,128,2,241,252,238,252,112,251,78,253,46,1,115,0,231,2,151,11,254,18,
197,19,207,11,149,2,192,3,14,9,1,3,130,247,129,244,201,243,185,240,180,242,66,246,58,246,37,246,204,246,33,248,
169,250,102,252,50,250,60,246,170,250,47,3,133,3,195,5,93,13,138,13,183,13,48,20,252,21,191,16,44,4,156,241,
212,229,173,227,59,226,108,223,77,222,50,224,171,229,162,238,107,247,101,253,45,1,236,1,178,4,56,12,84,13,157,9,
237,13,196,21,248,24,226,21,201,13,196,9,46,13,236,18,194,19,214,5,203,239,115,226,197,225,211,234,56,240,71,233,
90,231,55,241,126,250,243,254,170,252,80,249,58,254,102,2,151,253,135,247,46,253,84,15,47,24,134,16,230,8,42,3,
27,0,54,2,128,251,141,240,206,239,240,239,211,236,179,234,228,231,231,232,64,237,239,241,166,250,149,254,215,249,107,251,
84,2,13,3,27,1,225,252,147,244,183,245,219,2,11,10,53,6,123,254,169,247,167,249,39,255,51,249,104,238,23,233,
146,231,186,238,46,252,159,0,117,252,107,252,199,2,234,7,139,5,200,253,252,249,6,253,245,251,93,243,231,237,59,237,
200,242,237,2,197,11,157,4,71,3,134,11,2,14,35,8,203,251,73,239,132,237,16,246,54,0,29,5,184,7,61,15,
197,17,70,4,244,246,34,247,113,244,41,231,92,226,30,236,26,246,199,248,143,245,129,245,77,0,171,11,167,16,100,19,
18,16,200,11,1,17,137,19,30,10,211,255,53,254,196,7,92,16,67,7,49,249,198,247,173,249,154,247,99,244,150,242,
98,250,185,4,11,3,155,1,46,7,23,8,10,8,98,7,158,0,53,255,90,2,222,254,107,252,210,2,33,15,147,22,
220,14,42,4,253,2,253,2,230,1,131,3,95,3,86,0,76,0,52,8,232,20,200,30,242,33,228,27,118,16,19,7,
162,252,1,241,66,238,104,244,228,248,231,246,158,242,220,240,139,245,147,3,135,16,42,16,46,10,140,6,126,2,124,0,
28,2,255,3,236,6,35,9,134,3,208,248,144,247,67,1,202,5,194,255,162,247,252,243,46,246,191,247,122,245,47,248,
213,2,180,11,196,10,194,5,232,4,129,1,68,251,106,253,245,1,81,3,205,6,215,5,26,2,24,7,57,12,38,10,
133,8,103,5,90,251,207,241,237,238,187,238,166,242,18,253,34,3,212,2,245,6,44,12,207,9,141,0,221,246,138,244,
163,245,252,247,159,1,183,3,65,247,99,244,146,254,89,7,56,12,46,4,236,241,169,235,173,238,211,235,190,233,191,243,
116,9,135,28,149,28,247,18,248,19,49,26,32,23,70,14,105,5,170,249,40,237,103,229,114,226,105,227,79,230,233,231,
113,234,34,238,21,237,188,233,149,237,188,247,84,253,199,250,119,249,119,255,231,7,250,13,244,14,16,13,135,16,62,19,
113,7,14,245,228,235,238,237,138,245,212,249,26,248,55,248,198,249,184,245,234,240,67,241,74,241,171,239,206,242,146,249,
177,253,20,254,10,0,146,7,4,9,167,252,22,246,101,252,72,253,161,248,10,247,87,246,19,250,107,1,160,3,139,0,
164,252,147,254,0,8,250,14,4,14,122,6,46,254,173,254,4,5,99,10,212,14,178,11,129,0,13,250,253,251,66,1,
158,5,255,5,110,3,170,255,197,251,78,248,159,244,148,245,247,254,59,9,56,12,229,8,66,7,212,11,184,14,160,9,
24,3,157,1,3,3,174,1,36,255,107,3,52,11,194,13,17,15,158,14,33,4,215,247,161,244,96,246,18,249,140,249,
226,244,173,242,221,248,59,3,21,12,113,15,6,15,199,15,31,19,65,24,215,24,178,15,170,6,233,7,253,10,84,2,
167,243,212,238,26,241,160,241,163,245,184,253,17,3,89,4,51,1,61,252,55,250,116,253,50,6,110,11,30,9,234,10,
0,17,109,18,240,18,252,20,6,20,252,16,170,14,160,10,35,2,121,249,218,246,174,249,42,251,132,247,211,246,221,252,
16,0,252,1,51,7,136,8,15,10,175,15,76,15,105,10,212,6,75,2,187,255,46,2,93,8,24,15,215,18,23,21,
185,19,221,12,68,8,76,6,209,2,28,1,74,0,46,254,22,254,242,2,6,12,199,18,97,20,188,19,122,14,229,5,
215,255,254,251,137,251,211,254,181,0,29,1,157,2,8,6,194,11,160,15,135,14,131,11,70,8,50,2,167,247,61,238,
152,237,114,242,71,246,83,252,206,4,83,8,224,8,80,10,224,6,169,0,49,255,8,0,79,1,90,2,101,1,170,4,
188,11,117,12,73,8,108,6,114,7,222,8,201,6,158,0,98,251,128,251,144,255,180,2,139,4,73,5,128,2,209,255,
66,1,109,4,241,6,139,7,176,5,5,1,181,251,130,251,169,254,163,0,143,1,9,255,110,253,235,1,122,4,232,3,
221,2,219,253,61,252,149,1,235,5,72,8,98,6,225,0,251,0,150,3,82,2,14,0,186,253,231,251,80,251,9,251,
37,251,186,249,33,247,236,246,224,251,237,6,163,14,192,10,102,6,242,9,153,10,144,2,181,252,141,253,83,252,179,249,
244,250,137,250,195,248,68,250,114,251,211,252,13,0,197,2,254,5,121,8,160,9,22,9,193,0,205,246,160,246,125,249,
20,249,228,249,246,251,42,253,212,254,123,2,135,7,129,10,241,8,180,5,174,5,5,7,81,4,207,254,165,248,102,244,
138,248,227,255,99,0,144,253,230,249,118,244,144,242,216,242,163,240,7,238,25,234,122,229,4,231,227,237,153,243,181,248,
252,0,185,9,185,12,95,9,71,2,29,250,24,247,211,249,46,249,98,243,153,239,240,240,154,246,23,253,242,254,58,251,
158,246,4,246,223,245,192,239,131,234,182,236,59,239,52,240,24,243,205,247,163,1,140,12,208,14,114,11,85,5,166,252,
11,249,199,247,225,241,25,241,56,250,36,2,247,4,147,7,184,9,17,9,115,6,35,2,199,252,18,249,154,246,79,243,
5,240,233,238,42,242,206,247,247,249,93,247,245,243,52,245,240,251,198,255,39,253,127,250,53,249,171,247,138,248,5,251,
110,251,222,251,155,0,186,6,239,7,210,2,209,249,123,244,146,247,221,248,141,243,168,240,175,238,114,235,202,240,183,252,
224,3,210,5,205,6,193,8,109,10,86,7,150,0,88,253,131,253,23,251,95,252,38,9,29,17,60,6,43,249,180,249,
226,1,150,4,9,250,94,236,44,234,27,237,64,236,122,236,130,240,41,246,189,251,235,255,245,3,95,7,102,6,99,1,
203,253,139,253,38,251,85,247,207,250,233,1,178,2,225,254,139,252,1,1,250,9,180,8,95,251,172,241,131,241,120,246,
230,250,171,248,173,243,95,245,18,252,10,2,164,9,83,20,205,27,213,27,44,22,207,16,206,19,137,25,11,20,4,11,
89,12,195,14,132,9,72,6,142,9,205,8,249,254,193,246,52,247,41,251,133,0,2,4,43,253,123,243,122,247,202,5,
158,15,233,17,81,15,129,6,253,253,38,1,104,9,252,8,44,3,73,255,160,253,97,0,60,6,167,8,222,5,75,254,
14,245,11,241,230,240,29,241,117,244,175,245,249,240,26,242,63,251,112,1,246,3,126,4,121,0,97,252,77,253,173,1,
132,5,150,4,35,0,115,0,221,8,186,16,97,15,50,8,176,1,55,251,73,243,57,236,243,231,163,229,51,228,153,228,
54,232,124,238,244,243,81,246,58,247,134,244,0,239,59,242,84,252,249,254,132,253,149,0,232,5,144,11,13,14,154,11,
45,10,190,9,122,6,142,2,246,253,29,247,45,242,186,240,10,237,128,232,56,236,184,244,65,248,10,249,9,250,216,249,
14,251,225,252,185,250,21,247,50,247,31,249,140,249,195,251,225,255,133,2,39,8,7,15,176,13,143,8,230,5,33,5,
25,9,173,10,5,3,138,254,217,255,237,253,27,254,132,3,157,9,185,16,161,18,219,12,127,11,14,14,121,9,163,1,
102,255,139,1,193,2,27,4,71,9,82,11,112,7,140,8,130,12,79,10,250,6,40,4,131,0,114,0,88,0,63,253,
141,252,32,0,238,7,90,15,66,14,65,9,195,10,208,17,125,21,94,17,36,10,219,5,232,5,137,7,82,7,117,5,
49,2,8,0,94,2,187,1,196,253,188,1,226,7,163,8,130,7,118,1,7,253,6,3,164,6,16,3,172,0,7,0,
135,3,104,8,116,5,108,1,241,1,51,252,199,241,208,241,214,249,7,255,70,3,212,3,91,252,216,249,31,1,216,7,
189,11,205,10,31,4,88,0,120,0,133,255,207,253,237,251,243,249,214,246,105,242,5,239,0,238,15,243,14,252,118,254,
53,251,255,249,28,253,159,5,211,13,90,15,52,12,245,5,163,1,116,3,23,3,50,253,38,249,45,251,125,2,105,6,
17,1,210,252,139,254,185,254,195,253,9,252,225,244,194,239,5,244,124,250,148,255,190,5,58,9,222,7,180,5,57,7,
64,14,187,20,136,18,119,10,254,3,18,1,169,1,112,3,155,0,228,249,238,246,196,249,36,255,100,3,203,2,188,255,
226,253,153,250,90,247,235,247,214,249,5,253,249,2,215,9,194,16,161,21,31,23,147,22,117,18,92,11,206,5,2,4,
96,4,92,1,223,251,85,253,93,3,198,3,199,0,143,0,93,1,89,0,147,254,68,252,114,248,206,246,185,250,62,0,
238,2,75,3,190,4,79,8,103,9,23,7,62,7,12,11,50,13,121,10,196,5,11,2,128,252,150,245,2,244,241,247,
21,251,23,251,247,249,43,249,17,249,239,250,222,253,255,254,198,255,49,1,39,0,124,254,200,0,229,4,55,6,87,5,
119,5,193,6,118,7,133,7,48,8,27,9,83,7,62,3,34,0,8,252,198,247,225,249,33,255,41,1,153,2,120,3,
49,1,35,1,56,7,189,12,187,12,18,12,86,11,49,6,1,3,123,5,90,4,83,255,109,254,84,2,168,9,95,16,
111,15,163,9,158,6,66,5,96,1,213,252,139,250,36,249,204,248,43,252,56,2,185,8,82,14,185,15,96,12,0,9,
42,8,241,6,121,3,89,0,84,255,71,0,117,3,247,6,92,8,152,7,12,5,237,1,132,255,88,254,203,254,92,253,
48,248,195,245,156,249,173,255,62,3,135,1,195,255,75,5,1,13,209,14,179,11,95,8,42,8,216,8,187,5,54,0,
56,252,102,251,104,252,232,251,23,251,188,252,170,255,212,1,211,254,167,246,180,243,92,249,218,0,199,6,179,7,192,254,
185,236,1,218,182,210,251,216,170,229,49,247,246,9,214,19,245,19,123,17,146,16,196,17,28,17,231,8,77,251,57,242,
180,241,31,244,105,246,146,248,44,248,153,246,137,245,148,241,68,236,36,234,141,233,22,234,211,238,222,245,21,251,237,254,
112,3,63,7,64,8,167,7,53,6,153,2,159,255,86,0,91,0,185,252,0,249,85,247,60,248,23,250,147,248,246,244,
170,241,113,237,33,236,108,239,102,241,73,241,197,242,143,248,120,1,100,4,191,0,73,2,59,8,26,10,42,10,156,11,
12,13,33,13,233,8,138,1,220,253,205,254,117,255,2,254,84,251,166,249,34,251,107,252,50,250,44,249,219,252,83,0,
31,255,79,252,2,253,219,255,155,0,134,0,2,2,225,3,113,5,133,6,158,6,95,7,122,9,56,9,48,5,183,2,
250,3,193,4,144,4,21,5,230,3,123,0,191,254,59,1,96,5,124,6,95,4,64,2,116,1,129,1,119,1,189,1,
63,2,188,255,142,250,114,247,158,247,251,249,145,253,119,0,167,1,168,0,210,253,103,252,131,255,56,5,200,7,154,5,
176,3,156,4,112,4,8,1,119,254,199,254,71,254,46,252,107,251,50,252,225,252,144,252,219,252,80,254,129,252,141,248,
252,248,252,251,41,253,220,252,143,251,46,250,140,250,155,254,209,3,57,2,168,251,159,248,59,248,100,248,239,248,111,246,
88,242,195,240,80,241,190,242,162,244,232,247,163,252,190,255,26,255,186,251,212,248,36,248,29,249,219,251,170,252,223,249,
64,250,236,252,60,252,117,252,30,0,43,4,110,6,19,4,238,254,11,251,222,248,223,249,146,252,239,252,54,252,58,252,
206,252,127,253,7,253,128,251,4,249,62,246,154,245,32,247,55,251,78,2,248,7,229,9,68,10,21,10,240,9,177,10,
147,12,22,14,21,12,82,7,33,3,100,255,250,251,158,250,75,251,225,252,66,254,119,254,64,254,152,254,6,255,170,255,
167,255,222,252,221,250,158,253,206,255,244,253,220,252,218,253,250,253,190,252,229,251,116,253,125,0,62,2,137,2,70,1,
226,253,192,250,187,249,39,249,102,248,161,249,87,253,146,1,227,3,160,2,29,255,192,251,144,249,52,250,202,252,35,254,
119,255,78,2,43,5,130,7,153,7,144,4,17,2,163,1,78,1,109,0,206,254,121,252,50,251,212,251,93,252,138,251,
183,250,29,251,201,252,59,253,127,250,105,249,192,252,113,255,188,255,116,0,59,3,225,6,67,7,166,5,245,5,218,4,
140,2,33,3,81,3,42,2,214,2,12,4,130,5,149,6,222,3,76,0,242,0,20,3,73,2,151,255,160,253,57,253,
104,254,158,255,244,254,53,253,29,252,69,252,246,252,179,253,98,255,33,0,226,253,121,252,207,253,176,254,163,254,129,255,
163,1,193,3,250,4,195,5,87,5,158,4,146,5,9,6,151,6,64,9,103,10,125,10,156,11,203,9,20,6,176,4,
65,4,245,3,54,4,206,4,157,5,46,5,130,5,123,9,197,12,136,11,42,8,114,5,13,4,70,2,186,253,59,248,
84,246,226,248,127,252,173,254,108,255,156,255,177,0,102,2,209,2,155,2,175,2,70,1,233,254,248,254,118,1,247,2,
235,1,36,0,182,255,182,0,142,2,88,4,190,3,153,0,144,254,243,254,180,255,171,255,217,254,156,254,252,255,100,1,
219,1,30,1,71,255,118,254,80,253,254,248,45,245,254,244,214,245,118,245,10,244,196,243,72,246,48,250,23,254,188,0,
247,1,67,4,162,6,111,6,132,6,118,8,206,8,215,6,154,4,78,2,196,0,168,1,118,3,158,3,146,2,1,2,
237,1,142,0,113,254,163,255,254,3,229,6,34,7,146,5,206,2,29,1,155,1,219,2,159,3,211,3,121,3,195,1,
196,255,8,0,115,1,23,1,173,254,83,252,234,251,76,252,110,252,96,253,47,254,212,254,43,1,72,3,138,3,7,3,
44,1,189,254,56,254,235,254,33,255,51,255,70,255,221,254,212,255,114,4,96,10,11,14,116,14,128,10,227,2,217,251,
64,248,250,247,123,249,71,251,206,253,85,1,223,3,56,4,5,4,88,5,74,8,243,10,172,10,113,6,181,0,126,253,
62,254,251,255,219,255,124,255,151,0,12,2,41,3,41,4,104,5,74,6,179,4,70,1,179,254,134,253,178,253,111,254,
104,254,45,254,208,253,16,253,231,252,223,252,118,252,232,252,115,254,173,255,207,255,204,255,157,255,149,254,56,254,208,254,
53,255,142,255,67,255,125,255,45,1,105,0,217,253,193,253,178,253,220,251,116,250,129,249,173,248,65,248,223,248,147,250,
43,251,136,251,242,253,117,0,130,2,245,4,176,5,9,4,71,2,52,2,216,2,241,1,199,0,132,1,190,2,20,3,
232,2,178,2,75,2,239,0,208,255,47,1,88,4,33,7,82,8,85,7,187,4,120,2,200,2,250,5,113,9,28,10,
151,7,115,4,96,3,60,4,132,4,55,2,30,254,185,250,120,249,99,250,130,252,220,253,151,253,203,253,97,0,70,3,
166,3,29,2,213,255,21,253,79,251,67,251,225,251,77,252,70,252,54,252,234,252,4,254,68,254,138,253,214,252,97,252,
3,252,14,252,9,252,106,251,56,250,90,248,235,246,20,247,175,248,252,251,13,0,198,2,102,4,0,6,79,7,200,7,
201,6,226,3,13,0,137,253,250,252,54,253,93,254,246,255,229,0,42,2,229,2,197,1,22,1,199,0,36,255,185,253,
150,253,112,254,107,255,121,255,32,0,211,1,111,2,197,1,178,0,121,255,242,253,38,252,173,251,45,252,144,251,168,250,
206,250,13,252,245,253,67,255,213,255,240,255,200,255,197,0,254,1,167,1,253,0,183,0,10,0,63,255,117,255,223,0,
21,2,78,3,62,5,8,6,66,6,221,7,12,10,10,14,96,19,11,19,233,9,183,253,85,245,239,242,144,245,71,253,
82,8,165,16,128,18,40,16,30,14,174,13,60,12,22,9,180,5,147,1,149,252,159,248,137,247,140,249,232,251,60,252,
122,251,44,250,206,247,159,245,108,245,152,247,103,251,201,255,47,3,171,3,80,1,227,254,194,254,149,0,95,2,107,3,
68,4,247,3,201,1,87,255,167,253,181,252,181,252,114,252,202,250,197,248,59,247,19,246,147,245,91,246,235,247,223,247,
41,247,206,249,31,253,8,252,171,248,220,245,12,244,68,244,51,245,222,246,202,251,77,1,92,3,76,2,153,255,102,253,
92,252,243,249,95,246,37,244,79,243,146,243,32,245,54,247,236,249,18,253,238,253,101,251,123,248,112,247,218,247,199,249,
35,253,238,255,200,0,222,0,176,0,170,254,70,252,213,253,196,2,9,6,243,4,20,1,200,253,150,252,44,253,67,255,
255,0,224,0,106,0,23,0,75,255,146,255,170,1,214,3,204,4,217,4,221,4,171,5,80,7,220,7,216,5,123,3,
179,2,145,2,205,2,210,3,48,5,246,5,91,5,53,4,25,3,85,1,214,255,46,255,119,254,98,254,213,254,228,254,
22,0,158,2,28,4,118,3,237,0,92,254,248,253,158,254,21,255,199,0,206,2,147,2,127,1,73,2,30,4,14,5,
122,4,134,2,92,0,171,254,160,252,97,250,244,248,175,248,158,249,0,251,30,252,195,253,57,0,249,2,124,5,247,5,
45,4,146,2,45,1,245,254,172,253,11,254,240,254,242,255,133,255,94,252,203,248,204,247,203,249,49,253,246,255,234,0,
246,255,180,254,106,255,131,1,212,2,14,3,100,2,209,0,170,254,28,252,137,250,219,250,146,250,97,248,236,246,251,247,
98,250,240,251,16,252,191,252,68,255,246,2,30,7,183,9,224,8,129,6,217,4,134,3,191,2,206,2,23,2,132,0,
254,255,141,0,59,1,243,1,94,2,22,3,82,5,107,7,233,6,227,3,238,255,117,253,18,254,98,0,76,2,198,2,
202,1,9,1,239,1,186,3,2,5,2,5,255,3,6,3,171,2,174,2,166,2,207,2,175,3,165,4,179,4,165,3,
180,1,195,255,239,254,111,255,173,0,130,1,122,1,89,1,175,0,204,254,100,253,136,253,215,253,213,253,14,254,71,254,
102,254,156,254,183,254,124,254,4,254,85,254,21,0,162,1,145,1,3,1,156,1,118,3,16,5,128,5,89,5,47,4,
212,1,11,0,21,255,125,254,182,255,110,2,38,4,209,3,47,2,137,0,209,254,165,252,40,252,100,254,158,0,238,0,
73,0,80,0,107,1,34,2,106,1,3,0,162,254,243,253,123,254,78,255,203,255,136,0,150,1,36,3,144,5,222,6,
36,5,100,2,5,1,88,0,134,255,194,254,235,253,243,253,84,0,171,3,176,5,147,6,39,7,203,7,107,8,15,7,
137,2,74,253,49,250,146,249,180,249,8,249,70,248,122,248,49,249,23,250,75,251,13,253,205,254,59,254,238,250,180,247,
49,246,203,245,169,245,7,246,196,248,77,254,177,3,114,6,255,6,206,6,244,6,244,7,125,9,96,10,191,8,45,4,
80,0,186,0,197,2,69,2,64,0,142,255,5,1,55,4,53,7,246,7,191,7,253,8,108,10,229,9,245,8,182,8,
48,7,150,3,55,255,152,252,237,253,253,1,130,6,254,9,87,10,65,8,183,6,7,6,91,5,211,4,28,5,104,6,
193,6,83,5,155,3,72,1,43,254,67,252,40,252,211,252,229,252,113,251,143,249,172,248,168,248,255,248,105,249,224,249,
197,250,85,252,197,253,63,254,197,254,1,0,65,0,160,254,28,252,156,249,140,247,197,245,104,244,142,244,241,245,146,246,
26,246,246,245,56,246,38,246,241,245,9,245,25,243,227,241,131,241,219,240,68,241,19,243,187,244,136,246,142,248,134,249,
157,249,108,249,121,248,233,246,216,245,39,245,123,243,246,240,47,239,34,239,210,240,84,243,159,245,94,247,110,248,176,248,
163,247,199,245,107,245,168,246,179,247,220,248,21,250,95,250,127,250,60,251,128,252,177,253,213,253,97,253,196,252,239,251,
92,252,215,253,16,254,43,253,54,253,205,254,189,255,139,254,7,254,170,255,191,0,13,0,176,254,128,254,94,0,20,1,
109,254,186,251,141,251,50,253,13,0,65,3,112,5,183,6,250,7,189,8,118,8,218,7,69,7,4,7,143,7,16,8,
44,8,163,8,105,9,66,10,224,10,40,11,146,11,53,11,206,9,37,9,51,9,90,9,8,10,44,10,98,9,50,9,
190,9,240,9,145,9,162,9,171,10,43,11,84,10,82,9,141,8,183,7,49,7,67,7,122,7,35,7,30,6,185,4,
75,3,173,2,66,3,227,3,158,3,82,3,199,3,207,3,217,2,187,2,77,4,157,5,49,5,138,4,172,5,121,7,
240,7,106,7,118,6,28,5,50,4,61,4,247,4,103,5,131,4,201,2,26,1,1,0,233,255,23,0,59,0,198,0,
175,0,124,255,71,254,75,253,143,252,116,252,202,252,90,253,30,254,35,255,54,0,110,0,159,255,230,254,241,254,217,254,
207,253,32,253,202,253,136,254,198,254,125,254,208,252,212,250,41,250,220,249,129,249,241,249,162,250,252,250,35,251,6,251,
8,251,204,250,63,249,222,247,107,248,109,249,252,249,105,251,186,253,194,255,33,1,117,2,52,4,94,5,140,5,245,5,
210,5,122,3,162,0,122,255,31,255,54,254,255,252,81,252,229,252,47,254,55,254,226,252,191,252,214,254,115,1,23,3,
189,3,193,3,230,2,128,1,48,1,91,2,150,3,63,4,150,4,116,4,188,3,253,2,213,2,231,2,207,2,242,2,
121,3,148,4,253,5,182,6,101,7,99,8,90,7,6,4,74,1,94,0,69,0,122,0,243,1,183,4,151,6,227,6,
137,6,176,5,93,5,255,5,106,6,219,6,224,6,46,5,135,3,214,2,12,1,71,254,82,252,117,251,152,251,237,252,
180,254,170,255,243,255,96,0,196,0,247,0,192,0,231,255,207,255,72,1,233,2,91,3,124,2,119,1,143,1,127,2,
189,3,142,4,200,3,214,1,230,255,206,254,113,255,230,0,29,1,143,0,127,1,150,3,251,3,147,2,221,1,22,2,
173,2,154,3,78,3,60,2,22,3,145,4,200,3,209,1,223,0,77,1,130,2,1,3,190,1,234,255,194,254,166,253,
8,252,216,250,196,251,191,254,70,1,223,1,8,1,112,255,222,254,116,0,132,2,34,4,45,6,24,8,190,7,165,4,
129,1,240,255,128,254,60,253,251,252,69,252,158,250,166,249,57,250,123,251,251,251,120,251,189,250,78,250,232,249,166,248,
47,247,52,247,84,248,154,249,220,250,177,251,8,252,196,251,209,250,219,249,48,249,111,249,1,251,133,252,68,253,178,253,
227,253,52,254,176,254,68,255,241,255,175,255,136,254,20,254,180,254,219,255,216,0,23,1,7,1,30,1,225,0,251,255,
94,255,250,255,25,1,43,2,210,2,121,1,215,254,239,253,255,254,2,0,191,255,113,254,110,253,56,253,249,252,111,252,
29,252,203,251,185,250,183,249,16,250,212,250,239,250,35,251,37,252,151,253,76,254,8,254,19,254,143,254,182,254,174,254,
135,254,111,254,255,254,93,255,11,254,241,251,31,251,253,250,117,250,1,251,129,252,222,252,117,252,18,252,203,251,195,252,
129,254,81,255,138,255,214,255,209,255,26,255,148,253,208,251,142,250,65,250,149,251,209,253,135,254,141,253,33,253,201,253,
113,254,97,254,99,253,188,252,151,253,192,254,66,255,68,255,116,254,96,253,38,253,133,253,207,253,34,254,197,254,246,254,
67,254,23,254,217,254,162,255,12,1,241,2,83,3,230,1,107,0,15,0,31,0,214,255,2,0,11,1,65,2,9,3,
191,2,238,1,43,2,155,3,29,5,78,5,228,3,246,2,243,3,25,5,87,4,132,2,82,1,35,0,180,254,6,255,
15,1,178,2,117,3,201,3,250,3,231,3,176,2,248,0,141,0,52,1,159,1,213,1,25,2,170,1,121,0,235,255,
147,0,149,1,121,2,13,3,196,2,187,1,212,0,167,0,232,0,204,0,133,0,83,1,177,2,103,2,143,0,104,255,
100,255,69,255,180,254,127,254,233,254,37,255,224,254,52,254,210,252,107,251,89,251,48,252,137,252,168,252,234,253,161,255,
216,255,80,255,238,255,206,0,66,0,248,254,199,254,235,255,81,1,157,2,51,3,84,2,136,1,21,2,198,2,135,2,
110,1,72,0,163,255,237,254,38,254,219,253,30,254,84,255,156,0,5,0,65,254,236,252,4,252,226,251,199,252,90,253,
228,252,204,252,211,253,75,254,119,253,70,253,24,254,239,253,204,252,171,252,226,253,73,255,134,0,194,1,174,2,121,3,
233,4,170,6,216,7,48,8,60,7,111,5,147,4,110,4,134,3,55,2,131,0,50,254,60,253,79,254,133,255,93,0,
118,1,67,2,248,1,225,0,79,0,103,1,193,3,56,5,43,4,111,1,136,254,97,252,251,251,177,252,171,252,106,252,
206,253,157,0,238,2,59,4,104,5,155,5,152,3,126,1,170,1,218,2,222,2,20,2,137,2,46,4,194,4,59,4,
249,3,184,2,155,255,35,253,189,252,66,253,49,254,36,255,215,255,104,1,241,2,38,2,68,0,58,255,71,254,7,253,
186,252,116,254,93,1,195,3,224,5,95,7,72,6,252,3,36,3,82,2,209,255,231,252,161,250,131,249,81,250,227,251,
105,253,214,0,37,5,156,6,154,6,113,7,42,6,2,2,219,255,188,1,100,4,122,5,185,4,219,1,29,255,60,255,
94,0,123,0,252,255,251,254,201,255,14,4,192,7,250,7,29,6,192,3,203,2,21,3,40,1,72,252,139,247,127,245,
229,246,200,249,196,249,53,246,189,244,7,248,197,251,66,253,5,253,183,250,191,248,30,251,251,254,57,254,112,250,194,250,
243,0,193,6,237,4,76,252,252,246,232,251,79,5,106,9,139,6,201,2,250,2,111,5,102,6,31,5,105,3,75,3,
111,4,36,5,75,5,123,4,238,1,254,255,71,1,61,4,175,6,229,8,207,9,175,7,129,5,118,6,238,8,187,11,
178,14,247,15,245,15,237,16,136,17,252,13,140,6,167,0,58,255,9,0,76,0,47,253,184,247,39,247,130,253,246,3,
187,5,159,3,142,0,245,254,27,254,32,251,208,245,224,242,16,246,142,251,218,252,228,248,199,243,205,242,3,248,234,254,
11,0,13,250,128,244,149,245,114,249,3,249,220,243,191,239,164,240,153,242,102,239,43,233,11,231,179,233,16,237,52,241,
2,247,29,250,36,247,1,242,8,241,221,245,105,252,187,255,192,254,184,251,117,249,12,249,49,249,151,248,229,247,153,248,
203,250,163,252,9,253,128,253,61,255,69,1,42,3,122,5,229,7,236,10,91,15,179,18,23,18,109,14,51,10,210,6,
185,3,152,0,140,0,3,5,57,9,197,8,169,5,32,5,28,8,55,10,183,9,47,9,235,8,77,7,225,4,153,3,
112,4,89,6,68,7,17,6,144,3,136,1,41,0,1,255,224,254,40,255,162,254,183,254,2,0,81,1,50,3,132,5,
242,5,182,4,102,4,82,5,51,6,190,6,21,7,18,7,40,6,202,3,4,1,48,255,153,253,246,251,21,252,111,254,
25,1,118,2,69,2,95,1,146,0,86,255,203,253,123,253,254,253,19,254,142,254,164,255,80,0,152,0,7,0,235,253,
39,251,27,249,216,248,4,250,155,250,86,250,194,250,252,251,32,253,240,253,136,254,15,255,200,255,183,0,91,1,44,1,
107,0,109,0,214,1,170,2,128,1,50,0,74,0,142,1,28,3,35,3,159,1,213,0,237,0,199,0,177,0,152,0,
169,255,41,254,193,252,80,251,126,250,231,250,135,250,145,248,187,247,107,248,175,248,190,248,6,249,165,248,100,247,44,246,
39,246,85,247,14,249,37,251,170,252,206,252,134,252,180,252,81,253,91,254,106,255,112,255,111,254,82,254,212,255,52,1,
207,1,147,2,128,3,235,3,129,3,23,3,38,4,73,6,161,7,111,7,155,6,118,6,223,6,196,6,82,6,248,5,
88,5,202,4,201,4,240,4,134,5,197,6,21,7,40,6,216,5,252,5,67,5,119,4,127,4,203,4,85,4,213,2,
32,2,178,3,133,5,57,5,228,3,137,3,126,3,197,2,120,2,163,2,25,2,177,1,48,2,171,2,212,2,251,2,
110,3,194,3,83,2,95,255,83,253,183,252,64,252,103,251,75,250,62,249,246,248,153,249,68,250,170,250,15,251,98,251,
57,252,23,253,223,251,207,249,31,250,250,251,5,253,68,253,68,253,255,252,113,252,219,251,95,251,182,250,29,250,6,250,
241,249,39,249,250,247,7,248,50,250,198,252,176,253,139,252,173,250,173,250,10,253,43,255,152,255,56,255,72,255,43,0,
30,1,178,1,10,2,199,1,77,1,87,1,152,1,189,1,67,1,255,255,119,255,12,0,29,0,55,255,106,254,21,255,
120,1,159,3,254,3,248,2,95,1,94,0,128,0,168,0,228,0,19,2,169,2,151,1,217,0,70,1,102,1,232,0,
124,0,109,0,211,0,19,1,221,0,35,1,188,1,69,1,218,255,10,255,208,255,90,1,7,2,188,1,53,1,76,0,
89,255,115,255,128,0,180,1,1,3,78,4,202,4,25,4,223,2,227,1,115,1,117,1,236,1,197,2,11,3,15,2,
185,0,237,255,188,255,73,0,55,1,185,1,234,1,59,2,107,2,67,2,190,1,241,0,81,0,211,255,248,254,101,254,
177,254,18,255,83,255,231,255,131,0,222,0,208,0,45,0,145,255,160,255,80,0,55,1,177,1,153,1,67,1,156,0,
155,255,187,254,147,254,50,255,246,255,105,0,116,0,45,0,242,255,172,255,2,255,81,254,25,254,122,254,44,255,184,255,
31,0,95,0,64,0,0,0,196,255,139,255,103,255,44,255,13,255,57,255,65,255,25,255,190,254,21,254,212,253,120,254,
110,255,179,255,59,255,148,255,242,0,63,1,118,0,148,0,97,1,87,1,202,0,1,1,166,1,98,1,83,0,169,255,
174,255,167,255,211,254,154,253,56,253,148,253,96,253,183,252,225,252,178,253,48,254,162,254,41,255,253,254,76,254,190,253,
67,253,182,252,80,252,151,252,131,253,65,254,213,254,162,255,89,0,220,0,177,0,120,255,119,254,120,254,186,254,201,254,
101,254,148,253,9,253,3,253,135,253,159,254,199,255,246,0,80,2,255,2,180,2,238,1,236,0,42,0,16,0,78,0,
141,0,140,0,92,0,129,0,241,0,88,1,166,1,92,1,17,0,95,254,170,253,246,254,217,0,139,0,80,254,94,253,
219,254,88,0,0,0,41,255,63,255,199,255,130,0,86,1,103,1,246,0,61,1,71,2,26,3,53,3,91,3,180,4,
209,6,199,7,215,6,85,5,107,4,240,3,96,3,114,2,196,1,66,2,0,3,166,2,146,1,48,0,25,255,162,255,
104,1,15,3,64,4,162,4,26,4,39,3,230,1,227,0,191,0,201,0,133,0,144,0,23,1,187,1,222,1,211,0,
67,255,185,254,37,255,80,255,49,255,101,255,195,255,3,0,73,0,161,0,26,1,12,2,97,3,23,4,124,3,36,2,
27,1,207,0,204,0,128,0,8,0,224,255,15,0,79,0,198,0,238,1,102,3,54,4,58,4,158,3,107,2,83,1,
211,0,106,0,172,255,175,254,10,254,47,254,134,254,184,254,35,255,118,255,86,255,20,255,190,254,52,254,129,253,2,253,
84,253,23,254,85,254,10,254,144,253,25,253,250,252,53,253,92,253,247,252,61,252,18,252,100,252,91,252,203,251,234,250,
94,250,150,250,189,250,176,250,13,251,64,251,16,251,37,251,88,251,150,251,45,252,197,252,8,253,15,253,34,253,122,253,
17,254,161,254,120,254,135,253,251,252,26,253,46,253,86,253,183,253,65,254,51,255,65,0,12,1,167,1,221,1,130,1,
209,0,25,0,123,255,235,254,166,254,193,254,211,254,246,254,74,255,102,255,127,255,218,255,9,0,230,255,160,255,123,255,
204,255,82,0,194,0,122,1,138,2,92,3,128,3,33,3,206,2,184,2,168,2,132,2,79,2,170,2,50,4,145,5,
75,5,21,4,214,2,214,1,117,1,252,0,229,255,83,255,143,255,144,255,32,255,220,254,64,255,67,0,95,1,54,2,
187,2,238,2,204,2,97,2,194,1,196,0,182,255,107,255,135,255,20,255,117,254,188,254,241,255,226,0,242,0,240,0,
80,1,228,1,106,2,116,2,167,2,231,3,101,5,91,6,233,6,201,6,243,5,187,4,83,3,8,2,244,0,254,255,
249,254,251,253,181,253,63,254,222,254,69,255,159,255,48,0,136,0,244,255,84,255,88,255,28,255,139,254,44,254,174,253,
254,252,130,252,91,252,51,252,216,251,194,251,31,252,183,252,112,253,235,253,68,254,0,255,161,255,210,255,21,0,96,0,
119,0,143,0,207,0,50,1,182,1,88,2,216,2,200,2,42,2,99,1,216,0,124,0,236,255,115,255,107,255,51,255,
145,254,20,254,240,253,64,254,63,255,157,0,174,1,62,2,99,2,16,2,139,1,72,1,54,1,50,1,9,1,100,0,
124,255,183,254,52,254,3,254,248,253,40,254,177,254,47,255,129,255,178,255,200,255,85,0,40,1,73,1,242,0,217,0,
215,0,52,0,151,254,223,252,244,251,127,251,27,251,20,251,180,251,192,252,195,253,214,254,30,0,97,1,133,2,52,3,
63,3,23,3,188,2,79,2,63,2,46,2,39,2,108,2,102,2,48,2,30,2,226,1,198,1,198,1,82,1,132,0,
149,255,23,255,35,255,135,254,154,253,109,253,10,253,127,252,24,253,248,253,26,254,218,253,44,253,104,252,105,252,199,252,
239,252,6,253,4,253,36,253,151,253,113,253,34,252,176,250,117,250,81,251,202,251,157,251,255,251,251,252,245,253,7,255,
245,255,143,0,240,0,160,0,179,255,229,254,118,254,147,254,78,255,66,0,1,1,69,1,55,1,66,1,177,1,110,2,
223,2,10,3,147,3,29,4,51,4,8,4,163,3,86,3,99,3,116,3,147,3,176,3,123,3,116,3,243,3,70,4,
193,3,182,2,181,1,183,0,249,255,241,255,50,0,129,0,46,1,217,1,235,1,98,1,231,0,23,1,130,1,211,1,
97,2,188,2,77,2,172,1,188,1,102,2,253,2,94,3,122,3,241,2,237,1,220,0,250,255,80,255,126,254,211,253,
202,253,140,253,2,253,113,253,249,254,164,0,209,1,184,2,215,3,7,5,6,6,178,6,216,6,154,6,162,5,168,3,
193,1,153,0,189,255,228,254,224,253,216,252,39,252,128,251,132,250,131,249,102,249,75,250,248,250,250,250,227,250,174,250,
113,250,156,250,22,251,156,251,235,251,208,251,131,251,54,251,201,250,58,250,37,250,7,251,44,252,195,252,242,252,33,253,
127,253,252,253,74,254,54,254,216,253,126,253,88,253,103,253,158,253,172,253,107,253,47,253,26,253,56,253,173,253,115,254,
121,255,64,0,66,0,2,0,243,255,184,255,100,255,99,255,139,255,99,255,228,254,101,254,31,254,41,254,111,254,159,254,
189,254,47,255,185,255,200,255,183,255,19,0,92,0,95,0,139,0,176,0,1,1,16,2,8,3,27,3,206,2,154,2,
154,2,168,2,166,2,180,2,123,2,4,2,229,1,227,1,228,1,44,2,62,2,248,1,183,1,165,1,240,1,44,2,
8,2,19,2,63,2,59,2,51,2,25,2,81,2,25,3,15,3,217,1,74,1,209,1,19,2,195,1,102,1,47,1,
65,1,98,1,87,1,73,1,250,0,166,0,19,1,148,1,121,1,96,1,57,1,219,0,232,0,38,1,21,1,23,1,
53,1,255,0,142,0,75,0,72,0,88,0,107,0,119,0,106,0,85,0,61,0,58,0,91,0,107,0,161,0,118,1,
163,2,126,3,169,3,63,3,211,2,162,2,52,2,77,1,111,0,25,0,22,0,243,255,199,255,159,255,70,255,16,255,
106,255,0,0,49,0,208,255,73,255,60,255,168,255,5,0,34,0,107,0,53,1,18,2,129,2,144,2,80,2,33,2,
111,2,123,2,206,1,69,1,53,1,94,1,148,1,47,1,87,0,70,0,202,0,210,0,150,0,183,0,12,1,45,1,
14,1,225,0,209,0,210,0,192,0,157,0,133,0,97,0,11,0,133,255,31,255,73,255,214,255,40,0,26,0,198,255,
76,255,30,255,92,255,168,255,230,255,31,0,32,0,232,255,179,255,146,255,124,255,134,255,175,255,187,255,141,255,92,255,
99,255,134,255,112,255,6,255,178,254,195,254,183,254,48,254,155,253,58,253,20,253,89,253,226,253,121,254,22,255,120,255,
156,255,175,255,122,255,6,255,173,254,100,254,41,254,54,254,110,254,167,254,229,254,252,254,236,254,12,255,60,255,71,255,
72,255,225,254,77,254,112,254,190,254,137,254,119,254,147,254,191,254,114,255,42,0,50,0,193,255,54,255,8,255,83,255,
99,255,222,254,109,254,156,254,229,254,199,254,166,254,159,254,153,254,173,254,129,254,31,254,5,254,51,254,215,254,212,255,
78,0,68,0,76,0,127,0,159,0,65,0,167,255,117,255,122,255,87,255,239,254,79,254,227,253,200,253,225,253,69,254,
146,254,152,254,192,254,241,254,17,255,99,255,151,255,93,255,8,255,9,255,99,255,138,255,52,255,247,254,47,255,130,255,
152,255,113,255,71,255,46,255,24,255,42,255,91,255,118,255,174,255,29,0,130,0,170,0,106,0,237,255,187,255,227,255,
42,0,121,0,179,0,9,1,145,1,203,1,147,1,84,1,43,1,10,1,253,0,245,0,189,0,93,0,46,0,61,0,
71,0,85,0,125,0,150,0,127,0,42,0,180,255,113,255,122,255,143,255,169,255,223,255,215,255,142,255,196,255,113,0,
202,0,244,0,69,1,77,1,226,0,120,0,77,0,64,0,18,0,172,255,122,255,195,255,223,255,149,255,196,255,125,0,
246,0,14,1,8,1,247,0,214,0,171,0,164,0,159,0,108,0,89,0,92,0,93,0,191,0,67,1,136,1,211,1,
57,2,168,2,34,3,119,3,126,3,41,3,174,2,123,2,103,2,29,2,229,1,243,1,240,1,168,1,65,1,231,0,
200,0,231,0,248,0,215,0,122,0,216,255,111,255,123,255,141,255,145,255,118,255,56,255,88,255,156,255,151,255,188,255,
5,0,40,0,89,0,78,0,233,255,149,255,67,255,243,254,210,254,166,254,128,254,158,254,193,254,196,254,212,254,20,255,
138,255,240,255,238,255,185,255,202,255,47,0,135,0,148,0,184,0,16,1,239,0,123,0,101,0,89,0,34,0,240,255,
130,255,42,255,48,255,40,255,43,255,41,255,230,254,241,254,79,255,134,255,165,255,164,255,155,255,213,255,67,0,182,0,
188,0,89,0,81,0,117,0,58,0,203,255,57,255,185,254,124,254,80,254,95,254,174,254,248,254,69,255,101,255,93,255,
113,255,120,255,193,255,106,0,123,0,230,255,135,255,88,255,13,255,237,254,26,255,52,255,54,255,137,255,193,255,126,255,
148,255,16,0,31,0,25,0,112,0,175,0,167,0,156,0,193,0,3,1,14,1,212,0,160,0,129,0,82,0,253,255,
169,255,145,255,173,255,215,255,248,255,229,255,155,255,91,255,70,255,84,255,111,255,94,255,44,255,34,255,56,255,95,255,
156,255,184,255,195,255,12,0,105,0,161,0,183,0,169,0,171,0,224,0,247,0,214,0,210,0,0,1,238,0,103,0,
22,0,74,0,107,0,122,0,184,0,200,0,203,0,245,0,240,0,253,0,75,1,94,1,60,1,253,0,157,0,124,0,
102,0,22,0,15,0,63,0,59,0,61,0,85,0,73,0,25,0,203,255,135,255,120,255,148,255,195,255,218,255,226,255,
24,0,71,0,67,0,102,0,195,0,6,1,20,1,25,1,47,1,67,1,86,1,117,1,143,1,159,1,170,1,180,1,
200,1,193,1,80,1,162,0,39,0,248,255,246,255,241,255,204,255,224,255,64,0,105,0,68,0,26,0,252,255,17,0,
82,0,106,0,105,0,121,0,136,0,143,0,140,0,118,0,75,0,53,0,127,0,183,0,93,0,248,255,248,255,39,0,
67,0,254,255,109,255,16,255,12,255,43,255,23,255,236,254,2,255,254,254,198,254,179,254,131,254,91,254,169,254,239,254,
232,254,202,254,135,254,51,254,216,253,131,253,90,253,60,253,83,253,162,253,149,253,111,253,163,253,190,253,177,253,225,253,
103,254,253,254,23,255,222,254,227,254,7,255,39,255,95,255,153,255,195,255,185,255,166,255,211,255,182,255,13,255,156,254,
191,254,28,255,94,255,87,255,31,255,231,254,174,254,110,254,67,254,67,254,93,254,101,254,86,254,78,254,67,254,76,254,
176,254,42,255,64,255,52,255,38,255,211,254,140,254,149,254,199,254,253,254,226,254,129,254,89,254,112,254,189,254,92,255,
237,255,44,0,101,0,206,0,29,1,59,1,111,1,125,1,57,1,14,1,210,0,83,0,3,0,227,255,255,255,74,0,
37,0,201,255,165,255,131,255,166,255,245,255,221,255,184,255,217,255,246,255,7,0,47,0,116,0,203,0,45,1,108,1,
110,1,153,1,233,1,241,1,30,2,129,2,130,2,92,2,84,2,73,2,68,2,34,2,225,1,186,1,155,1,121,1,
72,1,33,1,62,1,102,1,99,1,77,1,68,1,118,1,144,1,80,1,28,1,250,0,200,0,191,0,201,0,216,0,
251,0,249,0,206,0,152,0,85,0,24,0,2,0,22,0,36,0,68,0,172,0,239,0,213,0,191,0,235,0,104,1,
216,1,244,1,29,2,54,2,18,2,11,2,246,1,214,1,217,1,157,1,81,1,43,1,227,0,195,0,210,0,195,0,
162,0,41,0,155,255,149,255,157,255,162,255,33,0,142,0,116,0,85,0,148,0,241,0,5,1,234,0,219,0,201,0,
182,0,145,0,74,0,53,0,107,0,88,0,203,255,133,255,172,255,107,255,231,254,229,254,28,255,30,255,27,255,52,255,
74,255,58,255,76,255,167,255,215,255,205,255,169,255,58,255,182,254,82,254,18,254,38,254,60,254,48,254,101,254,143,254,
116,254,124,254,183,254,26,255,125,255,133,255,95,255,84,255,111,255,155,255,129,255,57,255,48,255,39,255,255,254,14,255,
44,255,25,255,6,255,29,255,76,255,103,255,74,255,15,255,216,254,194,254,210,254,199,254,155,254,185,254,15,255,15,255,
188,254,143,254,159,254,168,254,170,254,194,254,197,254,188,254,227,254,33,255,112,255,195,255,200,255,193,255,209,255,142,255,
94,255,143,255,176,255,237,255,46,0,240,255,186,255,223,255,23,0,122,0,179,0,146,0,174,0,243,0,250,0,229,0,
166,0,77,0,59,0,99,0,111,0,65,0,11,0,16,0,75,0,133,0,149,0,163,0,211,0,226,0,214,0,240,0,
17,1,61,1,121,1,139,1,170,1,213,1,175,1,109,1,60,1,7,1,3,1,2,1,198,0,162,0,195,0,5,1,
51,1,45,1,50,1,87,1,93,1,78,1,96,1,138,1,149,1,95,1,23,1,252,0,14,1,25,1,226,0,125,0,
45,0,1,0,6,0,89,0,222,0,56,1,70,1,60,1,24,1,222,0,215,0,208,0,169,0,184,0,185,0,142,0,
140,0,109,0,55,0,100,0,163,0,205,0,13,1,29,1,5,1,246,0,201,0,133,0,89,0,100,0,142,0,151,0,
124,0,83,0,41,0,3,0,219,255,7,0,83,0,24,0,204,255,194,255,100,255,253,254,245,254,0,255,28,255,38,255,
33,255,78,255,38,255,155,254,92,254,55,254,31,254,122,254,221,254,242,254,0,255,23,255,82,255,182,255,246,255,4,0,
5,0,232,255,164,255,97,255,84,255,99,255,57,255,248,254,231,254,220,254,235,254,42,255,19,255,184,254,162,254,151,254,
142,254,196,254,209,254,166,254,194,254,48,255,191,255,36,0,4,0,133,255,46,255,68,255,122,255,109,255,27,255,198,254,
222,254,28,255,186,254,57,254,68,254,99,254,159,254,21,255,49,255,54,255,116,255,139,255,173,255,233,255,216,255,168,255,
144,255,125,255,135,255,177,255,241,255,50,0,42,0,238,255,214,255,213,255,205,255,204,255,165,255,105,255,112,255,116,255,
81,255,121,255,196,255,221,255,223,255,185,255,155,255,197,255,236,255,252,255,230,255,160,255,169,255,237,255,224,255,198,255,
225,255,6,0,33,0,24,0,254,255,238,255,213,255,217,255,29,0,113,0,176,0,232,0,26,1,31,1,237,0,165,0,
77,0,17,0,3,0,249,255,255,255,249,255,180,255,122,255,108,255,79,255,40,255,39,255,116,255,241,255,60,0,53,0,
57,0,166,0,14,1,235,0,199,0,245,0,255,0,248,0,236,0,166,0,128,0,149,0,155,0,130,0,55,0,222,255,
211,255,29,0,102,0,107,0,112,0,158,0,161,0,204,0,132,1,21,2,35,2,25,2,249,1,160,1,62,1,1,1,
241,0,242,0,230,0,194,0,132,0,62,0,13,0,226,255,161,255,112,255,118,255,121,255,97,255,77,255,39,255,8,255,
39,255,115,255,183,255,157,255,41,255,229,254,20,255,85,255,65,255,33,255,122,255,230,255,201,255,95,255,19,255,24,255,
62,255,46,255,55,255,137,255,189,255,207,255,161,255,9,255,198,254,25,255,100,255,130,255,140,255,144,255,182,255,197,255,
172,255,190,255,229,255,246,255,27,0,40,0,230,255,167,255,153,255,137,255,151,255,202,255,172,255,71,255,40,255,73,255,
110,255,158,255,199,255,228,255,240,255,200,255,174,255,237,255,73,0,115,0,78,0,42,0,111,0,146,0,49,0,223,255,
132,255,7,255,60,255,223,255,41,0,58,0,245,255,146,255,215,255,91,0,143,0,182,0,219,0,243,0,2,1,238,0,
227,0,248,0,10,1,252,0,168,0,97,0,113,0,115,0,84,0,93,0,101,0,71,0,42,0,8,0,206,255,167,255,
171,255,181,255,192,255,192,255,178,255,215,255,27,0,65,0,104,0,110,0,103,0,166,0,176,0,130,0,160,0,176,0,
170,0,237,0,5,1,211,0,179,0,177,0,230,0,27,1,27,1,10,1,192,0,113,0,117,0,110,0,89,0,106,0,
133,0,222,0,61,1,38,1,251,0,237,0,180,0,151,0,202,0,8,1,40,1,28,1,218,0,140,0,104,0,114,0,
143,0,157,0,111,0,42,0,3,0,206,255,150,255,138,255,128,255,112,255,100,255,90,255,93,255,107,255,196,255,92,0,
142,0,126,0,160,0,154,0,98,0,78,0,83,0,105,0,100,0,18,0,204,255,205,255,238,255,253,255,206,255,141,255,
143,255,185,255,216,255,239,255,240,255,214,255,200,255,178,255,128,255,88,255,63,255,88,255,201,255,59,0,141,0,174,0,
86,0,230,255,174,255,128,255,112,255,26,255,118,254,105,254,184,254,221,254,60,255,114,255,44,255,253,254,4,255,33,255,
38,255,234,254,180,254,148,254,141,254,180,254,176,254,197,254,106,255,235,255,225,255,217,255,14,0,49,0,4,0,175,255,
115,255,70,255,30,255,23,255,87,255,177,255,187,255,154,255,206,255,128,0,83,1,171,1,173,1,235,1,13,2,164,1,
250,0,184,0,14,1,24,1,149,0,51,0,169,255,52,255,110,255,66,255,158,254,144,254,165,254,183,254,240,254,171,254,
99,254,165,254,29,255,205,255,1,0,128,255,139,255,224,255,205,255,4,0,92,0,71,0,36,0,27,0,69,0,142,0,
137,0,121,0,122,0,33,0,175,255,136,255,162,255,207,255,235,255,80,0,250,0,46,1,15,1,31,1,16,1,186,0,
104,0,54,0,35,0,44,0,80,0,112,0,150,0,247,0,33,1,162,0,22,0,18,0,118,0,9,1,95,1,23,1,
159,0,152,0,221,0,15,1,67,1,146,1,205,1,190,1,98,1,20,1,2,1,233,0,190,0,152,0,121,0,128,0,
133,0,99,0,88,0,126,0,190,0,251,0,11,1,240,0,226,0,252,0,213,0,25,0,94,255,254,254,205,254,249,254,
32,255,198,254,122,254,155,254,5,255,137,255,241,255,101,0,200,0,217,0,198,0,121,0,27,0,244,255,193,255,201,255,
40,0,109,0,222,0,74,1,96,1,179,1,235,1,199,1,211,1,194,1,136,1,119,1,73,1,69,1,124,1,109,1,
108,1,158,1,122,1,0,1,177,0,166,0,107,0,15,0,226,255,142,255,45,255,253,254,168,254,126,254,217,254,89,255,
195,255,14,0,103,0,182,0,155,0,89,0,9,0,170,255,131,255,0,255,66,254,109,254,31,255,179,255,13,0,225,255,
184,255,183,255,83,255,33,255,73,255,72,255,97,255,122,255,82,255,46,255,6,255,242,254,19,255,21,255,244,254,234,254,
23,255,86,255,71,255,10,255,245,254,33,255,146,255,183,255,46,255,180,254,193,254,238,254,197,254,49,254,207,253,247,253,
40,254,60,254,72,254,48,254,100,254,251,254,76,255,60,255,20,255,28,255,144,255,245,255,242,255,209,255,141,255,87,255,
129,255,144,255,59,255,240,254,7,255,85,255,62,255,225,254,232,254,13,255,30,255,83,255,74,255,37,255,103,255,159,255,
131,255,107,255,126,255,149,255,137,255,129,255,137,255,115,255,125,255,193,255,230,255,223,255,199,255,209,255,14,0,17,0,
220,255,212,255,203,255,144,255,111,255,151,255,208,255,225,255,221,255,193,255,135,255,131,255,198,255,226,255,182,255,124,255,
85,255,81,255,109,255,110,255,90,255,146,255,235,255,255,255,46,0,151,0,188,0,164,0,139,0,157,0,9,1,44,1,
147,0,239,255,142,255,87,255,178,255,69,0,33,0,147,255,72,255,49,255,90,255,185,255,231,255,254,255,55,0,62,0,
24,0,45,0,116,0,200,0,52,1,105,1,64,1,50,1,42,1,174,0,59,0,3,0,130,255,25,255,244,254,122,254,
4,254,6,254,13,254,227,253,230,253,113,254,17,255,34,255,16,255,5,255,165,254,144,254,217,254,198,254,160,254,171,254,
190,254,236,254,203,254,105,254,132,254,221,254,6,255,51,255,113,255,163,255,168,255,146,255,163,255,164,255,165,255,250,255,
19,0,199,255,190,255,214,255,228,255,17,0,248,255,170,255,177,255,211,255,235,255,86,0,243,0,111,1,200,1,9,2,
62,2,119,2,177,2,231,2,19,3,12,3,195,2,124,2,74,2,22,2,5,2,22,2,42,2,62,2,46,2,41,2,
106,2,146,2,127,2,103,2,105,2,177,2,210,2,97,2,243,1,200,1,155,1,88,1,232,0,163,0,161,0,108,0,
64,0,50,0,225,255,201,255,18,0,103,0,210,0,247,0,199,0,221,0,7,1,247,0,221,0,182,0,141,0,57,0,
140,255,1,255,188,254,121,254,86,254,80,254,76,254,120,254,200,254,24,255,140,255,4,0,39,0,36,0,80,0,123,0,
112,0,21,0,131,255,65,255,73,255,68,255,95,255,81,255,231,254,208,254,15,255,69,255,136,255,170,255,185,255,208,255,
161,255,132,255,169,255,139,255,58,255,5,255,252,254,15,255,12,255,34,255,70,255,17,255,249,254,72,255,137,255,153,255,
116,255,88,255,122,255,130,255,141,255,198,255,229,255,22,0,58,0,43,0,100,0,141,0,66,0,15,0,41,0,104,0,
126,0,102,0,161,0,242,0,41,1,152,1,176,1,95,1,73,1,64,1,78,1,125,1,96,1,57,1,11,1,182,0,
138,0,45,0,187,255,233,255,50,0,35,0,62,0,173,0,13,1,248,0,208,0,244,0,244,0,255,0,99,1,97,1,
4,1,13,1,35,1,202,0,103,0,69,0,44,0,38,0,67,0,45,0,252,255,219,255,173,255,210,255,44,0,43,0,
36,0,20,0,170,255,99,255,100,255,121,255,117,255,37,255,16,255,86,255,77,255,43,255,51,255,65,255,177,255,89,0,
139,0,116,0,154,0,242,0,31,1,36,1,21,1,208,0,162,0,160,0,91,0,15,0,1,0,238,255,10,0,125,0,
170,0,73,0,243,255,21,0,33,0,205,255,159,255,150,255,87,255,23,255,9,255,248,254,193,254,158,254,211,254,66,255,
160,255,185,255,177,255,235,255,67,0,116,0,150,0,128,0,22,0,178,255,127,255,129,255,162,255,179,255,214,255,25,0,
64,0,68,0,78,0,94,0,94,0,117,0,200,0,9,1,28,1,31,1,222,0,116,0,62,0,247,255,124,255,79,255,
121,255,131,255,120,255,127,255,97,255,80,255,162,255,224,255,205,255,216,255,9,0,64,0,97,0,2,0,130,255,124,255,
125,255,87,255,149,255,11,0,86,0,152,0,204,0,196,0,133,0,41,0,239,255,20,0,121,0,173,0,133,0,90,0,
86,0,80,0,76,0,63,0,6,0,180,255,136,255,189,255,236,255,191,255,142,255,50,255,162,254,162,254,20,255,176,255,
108,0,102,0,220,255,179,255,114,255,54,255,44,255,133,254,219,253,5,254,163,254,105,255,193,255,126,255,91,255,120,255,
191,255,16,0,46,0,85,0,90,0,65,0,94,0,16,0,151,255,219,255,69,0,127,0,194,0,206,0,204,0,194,0,
137,0,100,0,51,0,248,255,217,255,175,255,176,255,178,255,107,255,95,255,112,255,58,255,33,255,15,255,185,254,129,254,
165,254,253,254,76,255,104,255,85,255,62,255,85,255,117,255,107,255,58,255,252,254,245,254,16,255,233,254,183,254,155,254,
99,254,96,254,200,254,68,255,120,255,87,255,124,255,38,0,122,0,7,0,96,255,33,255,146,255,106,0,224,0,173,0,
81,0,29,0,47,0,154,0,206,0,118,0,33,0,250,255,243,255,67,0,119,0,59,0,22,0,60,0,112,0,140,0,
159,0,236,0,94,1,111,1,4,1,168,0,184,0,218,0,188,0,147,0,99,0,237,255,110,255,90,255,144,255,199,255,
8,0,26,0,226,255,207,255,223,255,0,0,103,0,149,0,81,0,5,0,172,255,127,255,177,255,198,255,200,255,229,255,
216,255,181,255,168,255,171,255,168,255,143,255,170,255,0,0,76,0,142,0,158,0,145,0,154,0,108,0,67,0,138,0,
213,0,231,0,237,0,244,0,237,0,180,0,131,0,154,0,166,0,159,0,201,0,242,0,181,0,42,0,204,255,145,255,
67,255,61,255,131,255,188,255,217,255,202,255,163,255,105,255,23,255,46,255,176,255,5,0,253,255,157,255,104,255,169,255,
160,255,93,255,121,255,149,255,185,255,52,0,118,0,92,0,71,0,75,0,86,0,53,0,0,0,56,0,185,0,227,0,
185,0,147,0,126,0,150,0,235,0,21,1,235,0,203,0,189,0,149,0,162,0,251,0,10,1,167,0,106,0,142,0,
196,0,188,0,120,0,106,0,191,0,6,1,252,0,177,0,121,0,140,0,130,0,70,0,22,0,183,255,113,255,139,255,
118,255,84,255,114,255,149,255,235,255,71,0,3,0,114,255,100,255,52,0,62,1,114,1,6,1,226,0,61,1,202,1,
213,1,56,1,165,0,71,0,19,0,61,0,117,0,135,0,134,0,48,0,138,255,0,255,223,254,71,255,240,255,103,0,
156,0,146,0,77,0,22,0,44,0,148,0,8,1,244,0,89,0,252,255,15,0,58,0,91,0,78,0,19,0,234,255,
214,255,190,255,159,255,105,255,53,255,56,255,125,255,188,255,153,255,62,255,20,255,35,255,95,255,135,255,72,255,217,254,
124,254,62,254,49,254,36,254,250,253,246,253,29,254,53,254,69,254,95,254,118,254,130,254,131,254,131,254,150,254,176,254,
200,254,229,254,219,254,184,254,222,254,30,255,15,255,243,254,34,255,135,255,251,255,85,0,107,0,60,0,31,0,45,0,
11,0,203,255,182,255,151,255,130,255,168,255,181,255,165,255,211,255,58,0,147,0,181,0,210,0,248,0,13,1,67,1,
89,1,6,1,232,0,16,1,227,0,164,0,181,0,253,0,39,1,210,0,109,0,138,0,209,0,242,0,215,0,136,0,
99,0,85,0,36,0,0,0,247,255,237,255,187,255,121,255,152,255,205,255,163,255,134,255,148,255,124,255,65,255,249,254,
211,254,215,254,205,254,180,254,166,254,190,254,236,254,238,254,231,254,253,254,26,255,59,255,38,255,2,255,42,255,33,255,
242,254,73,255,193,255,246,255,55,0,124,0,145,0,122,0,132,0,202,0,231,0,242,0,35,1,20,1,216,0,200,0,
187,0,188,0,224,0,244,0,251,0,245,0,218,0,218,0,250,0,247,0,240,0,80,1,216,1,5,2,237,1,204,1,
181,1,169,1,104,1,6,1,219,0,238,0,20,1,25,1,254,0,240,0,218,0,193,0,229,0,52,1,84,1,28,1,
241,0,3,1,233,0,172,0,108,0,9,0,231,255,240,255,194,255,192,255,212,255,138,255,30,255,168,254,87,254,91,254,
79,254,58,254,73,254,42,254,254,253,13,254,48,254,62,254,75,254,152,254,232,254,204,254,167,254,172,254,140,254,143,254,
222,254,18,255,36,255,56,255,85,255,169,255,32,0,93,0,93,0,70,0,54,0,94,0,160,0,212,0,10,1,29,1,
25,1,31,1,246,0,194,0,148,0,20,0,167,255,179,255,242,255,78,0,129,0,67,0,4,0,29,0,120,0,196,0,
215,0,239,0,202,0,65,0,10,0,63,0,138,0,201,0,136,0,230,255,164,255,220,255,38,0,64,0,39,0,175,255,
219,254,139,254,253,254,135,255,2,0,84,0,128,0,213,0,250,0,218,0,195,0,158,0,180,0,247,0,213,0,167,0,
160,0,126,0,113,0,68,0,191,255,85,255,58,255,93,255,120,255,110,255,146,255,169,255,90,255,54,255,120,255,184,255,
221,255,243,255,244,255,244,255,208,255,102,255,22,255,47,255,84,255,61,255,28,255,57,255,140,255,188,255,196,255,218,255,
180,255,84,255,57,255,72,255,55,255,44,255,60,255,109,255,177,255,211,255,190,255,160,255,191,255,59,0,212,0,26,1,
235,0,160,0,117,0,73,0,38,0,55,0,134,0,230,0,227,0,168,0,177,0,164,0,87,0,62,0,83,0,91,0,
58,0,253,255,210,255,127,255,13,255,229,254,187,254,112,254,115,254,112,254,37,254,20,254,95,254,145,254,122,254,117,254,
183,254,1,255,82,255,173,255,218,255,245,255,62,0,178,0,46,1,106,1,94,1,55,1,252,0,219,0,6,1,74,1,
86,1,27,1,250,0,35,1,57,1,56,1,69,1,52,1,41,1,73,1,108,1,141,1,134,1,79,1,83,1,119,1,
87,1,44,1,55,1,45,1,193,0,78,0,74,0,104,0,84,0,85,0,124,0,123,0,53,0,245,255,245,255,209,255,
126,255,158,255,5,0,7,0,195,255,137,255,90,255,46,255,13,255,18,255,43,255,17,255,213,254,173,254,167,254,205,254,
16,255,78,255,143,255,228,255,37,0,77,0,138,0,182,0,177,0,196,0,248,0,32,1,49,1,3,1,177,0,156,0,
169,0,135,0,65,0,11,0,249,255,228,255,177,255,151,255,185,255,226,255,246,255,17,0,19,0,235,255,240,255,24,0,
23,0,34,0,75,0,84,0,74,0,64,0,41,0,2,0,207,255,196,255,218,255,196,255,142,255,108,255,93,255,74,255,
55,255,73,255,122,255,154,255,156,255,139,255,138,255,160,255,180,255,226,255,16,0,23,0,33,0,25,0,242,255,216,255,
178,255,130,255,78,255,19,255,11,255,250,254,193,254,227,254,17,255,241,254,11,255,51,255,6,255,235,254,247,254,254,254,
26,255,72,255,135,255,195,255,181,255,157,255,211,255,234,255,189,255,214,255,29,0,46,0,60,0,76,0,73,0,81,0,
84,0,92,0,89,0,30,0,248,255,250,255,0,0,32,0,8,0,197,255,189,255,149,255,97,255,147,255,194,255,216,255,
32,0,77,0,60,0,47,0,59,0,55,0,35,0,43,0,57,0,65,0,92,0,89,0,51,0,18,0,237,255,223,255,
209,255,159,255,145,255,170,255,174,255,173,255,193,255,230,255,232,255,216,255,8,0,56,0,70,0,93,0,74,0,77,0,
150,0,157,0,125,0,146,0,169,0,191,0,209,0,193,0,162,0,128,0,136,0,194,0,236,0,11,1,16,1,215,0,
156,0,130,0,114,0,106,0,102,0,113,0,129,0,107,0,83,0,109,0,136,0,130,0,149,0,177,0,150,0,108,0,
79,0,50,0,39,0,15,0,225,255,207,255,175,255,117,255,108,255,133,255,172,255,241,255,37,0,42,0,33,0,27,0,
13,0,250,255,241,255,213,255,172,255,166,255,187,255,221,255,249,255,219,255,177,255,186,255,220,255,241,255,5,0,34,0,
34,0,23,0,70,0,73,0,254,255,253,255,18,0,237,255,225,255,230,255,5,0,64,0,74,0,87,0,103,0,52,0,
46,0,97,0,82,0,23,0,255,255,29,0,46,0,23,0,41,0,46,0,236,255,203,255,183,255,142,255,177,255,249,255,
253,255,202,255,179,255,228,255,254,255,213,255,193,255,190,255,177,255,184,255,157,255,107,255,125,255,152,255,134,255,136,255,
167,255,196,255,211,255,196,255,221,255,55,0,70,0,247,255,175,255,81,255,249,254,0,255,29,255,55,255,115,255,152,255,
179,255,239,255,14,0,18,0,10,0,226,255,225,255,32,0,84,0,119,0,128,0,93,0,79,0,74,0,40,0,64,0,
131,0,142,0,174,0,254,0,23,1,229,0,117,0,0,0,239,255,44,0,116,0,164,0,157,0,
};

769
src/client/sound/data/eat2.pcm Executable file
View File

@@ -0,0 +1,769 @@
unsigned char PCM_eat2[24538] = {
1,0,0,0,2,0,0,0,68,172,0,0,229,47,0,0,210,255,45,255,198,254,117,254,25,254,94,253,76,252,35,252,
20,253,106,253,184,252,83,252,91,252,201,251,56,251,232,251,23,253,10,254,225,255,223,2,128,5,250,6,68,8,137,10,
1,13,198,13,156,12,140,10,69,8,100,6,52,5,24,4,185,2,143,1,179,0,182,255,199,254,149,254,42,255,210,255,
25,0,142,0,203,1,29,3,71,3,218,1,117,255,94,253,249,251,163,250,189,249,35,250,136,251,54,253,28,254,158,253,
172,253,222,255,77,2,245,2,110,2,243,1,151,1,166,0,10,255,84,253,166,251,240,249,76,248,246,246,95,246,72,246,
75,246,109,247,28,250,158,252,34,254,190,255,124,1,66,2,19,2,228,1,120,2,213,3,166,4,87,3,15,0,137,252,
92,250,139,249,60,249,99,249,103,250,23,252,205,253,6,255,9,0,110,1,36,3,222,4,74,6,47,7,197,7,29,8,
252,7,114,7,1,7,199,6,131,5,167,2,246,255,100,254,58,253,119,252,117,252,19,253,190,253,178,253,79,253,126,253,
63,254,41,255,19,0,25,1,245,1,214,1,226,0,232,255,21,255,65,254,82,253,184,252,219,252,11,253,70,253,55,254,
77,255,10,0,144,0,226,0,144,1,169,2,46,3,246,2,172,2,130,2,27,2,87,1,192,0,126,0,19,0,147,255,
95,255,103,255,171,255,87,0,10,1,11,1,139,0,56,0,8,0,202,255,201,255,36,0,135,0,151,0,133,0,198,0,
62,1,126,1,97,1,34,1,17,1,19,1,198,0,17,0,59,255,190,254,162,254,102,254,22,254,97,254,78,255,6,0,
24,0,2,0,46,0,109,0,149,0,156,0,160,0,237,0,42,1,159,0,137,255,227,254,246,254,36,255,250,254,209,254,
42,255,217,255,106,0,215,0,48,1,93,1,95,1,8,1,82,0,213,255,192,255,230,255,138,0,121,1,12,2,27,2,
208,1,102,1,18,1,228,0,200,0,100,0,220,255,222,255,47,0,41,0,227,255,150,255,110,255,146,255,224,255,81,0,
227,0,76,1,72,1,224,0,131,0,138,0,203,0,24,1,76,1,81,1,84,1,11,1,62,0,153,255,115,255,93,255,
38,255,251,254,14,255,86,255,170,255,237,255,213,255,129,255,94,255,47,255,228,254,241,254,29,255,8,255,254,254,41,255,
72,255,31,255,210,254,218,254,87,255,205,255,206,255,155,255,138,255,115,255,72,255,69,255,115,255,169,255,170,255,115,255,
65,255,44,255,66,255,135,255,186,255,183,255,156,255,134,255,104,255,49,255,7,255,244,254,237,254,46,255,128,255,118,255,
98,255,147,255,228,255,41,0,64,0,49,0,236,255,129,255,118,255,148,255,64,255,214,254,155,254,105,254,106,254,131,254,
142,254,173,254,208,254,234,254,31,255,175,255,121,0,163,0,42,0,251,255,7,0,205,255,98,255,3,255,248,254,64,255,
141,255,186,255,175,255,130,255,113,255,114,255,174,255,61,0,173,0,244,0,85,1,160,1,210,1,25,2,91,2,107,2,
52,2,196,1,76,1,0,1,251,0,4,1,227,0,187,0,145,0,96,0,93,0,92,0,40,0,35,0,126,0,234,0,
53,1,95,1,113,1,95,1,20,1,187,0,123,0,90,0,82,0,49,0,20,0,79,0,159,0,169,0,149,0,120,0,
87,0,116,0,209,0,44,1,128,1,207,1,247,1,4,2,240,1,151,1,77,1,71,1,40,1,216,0,83,0,112,255,
157,254,29,254,175,253,98,253,66,253,53,253,109,253,217,253,40,254,56,254,59,254,171,254,100,255,191,255,192,255,176,255,
159,255,189,255,16,0,100,0,132,0,104,0,104,0,193,0,44,1,101,1,115,1,112,1,77,1,7,1,204,0,155,0,
78,0,239,255,164,255,169,255,236,255,7,0,14,0,253,255,150,255,107,255,200,255,2,0,4,0,34,0,67,0,134,0,
231,0,246,0,195,0,134,0,64,0,11,0,209,255,141,255,144,255,172,255,158,255,138,255,102,255,109,255,234,255,78,0,
66,0,15,0,241,255,25,0,76,0,90,0,176,0,16,1,254,0,213,0,187,0,160,0,136,0,57,0,221,255,145,255,
66,255,81,255,137,255,130,255,178,255,247,255,213,255,183,255,220,255,242,255,180,255,63,255,2,255,226,254,182,254,224,254,
44,255,41,255,31,255,70,255,107,255,94,255,33,255,253,254,73,255,2,0,136,0,107,0,58,0,77,0,84,0,102,0,
159,0,199,0,243,0,24,1,8,1,222,0,166,0,105,0,67,0,33,0,252,255,213,255,170,255,147,255,145,255,136,255,
118,255,105,255,95,255,100,255,161,255,243,255,242,255,181,255,134,255,87,255,96,255,180,255,194,255,185,255,24,0,44,0,
143,255,23,255,41,255,109,255,199,255,23,0,37,0,2,0,220,255,190,255,210,255,66,0,187,0,218,0,210,0,245,0,
52,1,103,1,139,1,168,1,154,1,61,1,181,0,24,0,149,255,168,255,38,0,70,0,207,255,61,255,19,255,34,255,
251,254,186,254,135,254,133,254,205,254,185,254,36,254,218,253,236,253,47,254,185,254,29,255,78,255,142,255,165,255,175,255,
210,255,210,255,214,255,215,255,165,255,143,255,179,255,238,255,70,0,151,0,230,0,86,1,150,1,139,1,154,1,205,1,
231,1,230,1,192,1,100,1,241,0,114,0,225,255,136,255,170,255,32,0,137,0,175,0,167,0,114,0,23,0,247,255,
52,0,137,0,216,0,31,1,71,1,53,1,245,0,219,0,12,1,63,1,83,1,67,1,211,0,254,255,70,255,31,255,
117,255,206,255,185,255,90,255,64,255,95,255,89,255,94,255,141,255,194,255,0,0,29,0,3,0,179,255,45,255,237,254,
28,255,32,255,240,254,186,254,94,254,68,254,207,254,164,255,90,0,208,0,243,0,117,0,130,255,58,255,211,255,17,0,
171,255,180,255,152,0,121,1,147,1,62,1,22,1,38,1,75,1,101,1,89,1,7,1,104,0,254,255,243,255,107,255,
102,254,5,254,55,254,56,254,31,254,13,254,253,253,73,254,193,254,219,254,175,254,158,254,242,254,175,255,69,0,76,0,
53,0,128,0,232,0,209,0,67,0,161,255,240,254,67,254,219,253,188,253,203,253,208,253,201,253,33,254,224,254,174,255,
121,0,39,1,150,1,239,1,82,2,186,2,240,2,187,2,63,2,211,1,112,1,202,0,19,0,194,255,176,255,198,255,
11,0,218,255,31,255,199,254,214,254,124,254,214,253,161,253,228,253,48,254,134,254,204,254,210,254,14,255,118,255,101,255,
39,255,85,255,213,255,107,0,233,0,104,1,214,1,120,1,118,0,2,0,96,0,232,0,56,1,106,1,154,1,140,1,
35,1,152,0,2,0,66,255,108,254,15,254,142,254,75,255,156,255,107,255,244,254,25,255,66,0,78,1,128,1,83,1,
69,1,110,1,68,1,99,0,134,255,58,255,52,255,47,255,33,255,27,255,11,255,196,254,204,254,89,255,193,255,245,255,
255,255,140,255,85,255,237,255,144,0,177,0,125,0,115,0,248,0,156,1,226,1,217,1,165,1,108,1,25,1,184,0,
192,0,244,0,224,0,231,0,41,1,127,1,243,1,89,2,161,2,200,2,180,2,158,2,125,2,26,2,231,1,71,2,
230,2,16,3,115,2,212,1,236,1,61,2,92,2,125,2,83,2,117,1,101,0,161,255,9,255,162,254,32,254,242,252,
193,251,88,251,31,251,186,250,191,250,97,251,245,251,237,251,171,251,146,251,129,251,198,251,48,252,216,251,53,251,15,251,
10,251,53,251,250,251,238,252,140,253,227,253,107,254,148,255,28,1,35,2,21,2,106,1,252,0,249,0,65,1,202,1,
106,2,9,3,84,3,216,2,0,2,146,1,147,1,187,1,5,2,165,2,236,3,160,5,227,6,8,7,28,6,32,5,
229,4,162,4,171,3,239,2,208,2,99,2,115,1,112,0,149,255,35,255,14,255,5,255,24,255,95,255,153,255,160,255,
107,255,13,255,0,255,133,255,36,0,164,0,28,1,64,1,33,1,65,1,151,1,254,1,64,2,238,1,74,1,232,0,
15,1,193,1,73,2,66,2,69,2,103,2,62,2,220,1,92,1,237,0,196,0,156,0,51,0,171,255,70,255,2,255,
115,254,127,253,189,252,156,252,17,253,241,253,198,254,233,254,52,254,43,253,109,252,74,252,141,252,195,252,208,252,198,252,
207,252,48,253,107,253,238,252,93,252,35,252,250,251,22,252,71,252,42,252,76,252,212,252,36,253,68,253,135,253,243,253,
137,254,20,255,56,255,16,255,37,255,148,255,223,255,254,255,66,0,118,0,130,0,136,0,101,0,114,0,2,1,133,1,
194,1,239,1,194,1,70,1,14,1,61,1,151,1,234,1,83,2,218,2,240,2,163,2,212,2,94,3,130,3,74,3,
202,2,230,1,25,1,190,0,99,0,233,255,207,255,78,0,27,1,159,1,130,1,74,1,85,1,53,1,192,0,32,0,
137,255,128,255,103,0,84,2,197,4,158,6,27,8,248,9,56,11,70,11,194,10,245,8,36,5,22,1,16,255,239,254,
58,255,39,255,96,254,12,253,49,252,58,252,169,252,243,252,220,252,61,253,156,254,40,0,205,1,178,3,245,4,135,5,
201,5,121,5,177,4,165,3,58,2,84,0,240,253,167,251,210,249,32,248,238,246,179,246,43,247,6,248,213,248,107,249,
26,250,214,250,140,251,56,252,109,252,58,252,81,252,203,252,42,253,147,253,165,254,2,0,138,0,231,255,212,254,84,254,
85,254,208,253,18,253,25,253,90,253,20,253,190,252,247,252,187,253,171,254,147,255,102,0,216,0,234,0,23,1,99,1,
148,1,237,1,147,2,6,3,20,3,7,3,156,2,142,1,174,0,153,0,181,0,99,0,186,255,4,255,16,254,179,252,
186,251,159,251,156,251,81,251,4,251,184,250,164,250,244,250,72,251,104,251,79,251,19,251,11,251,52,251,123,251,1,252,
99,252,50,252,170,251,54,251,15,251,69,251,198,251,80,252,133,252,157,252,244,252,45,253,59,253,88,253,38,253,195,252,
200,252,23,253,111,253,171,253,127,253,37,253,16,253,22,253,230,252,157,252,141,252,182,252,237,252,145,253,12,255,222,0,
54,2,32,3,221,3,27,4,202,3,117,3,112,3,227,3,188,4,108,5,135,5,253,4,1,4,61,3,64,3,231,3,
178,4,33,5,239,4,54,4,159,3,215,3,126,4,220,4,17,5,40,5,117,4,230,2,182,1,178,1,6,2,213,1,
64,1,221,0,13,1,26,1,82,0,186,255,255,255,80,0,73,0,22,0,224,255,235,255,14,0,248,255,161,255,25,255,
203,254,222,254,0,255,121,255,126,0,94,1,192,1,217,1,165,1,76,1,27,1,12,1,106,1,135,2,195,3,100,4,
93,4,202,3,252,2,128,2,129,2,187,2,236,2,14,3,41,3,49,3,114,3,45,4,19,5,190,5,221,5,78,5,
220,4,121,5,128,6,197,6,210,6,141,7,206,7,115,6,197,4,78,4,171,4,222,4,220,4,51,5,163,5,233,4,
161,2,153,0,58,0,61,0,124,255,247,254,100,255,9,0,193,255,253,253,216,251,16,251,204,251,197,252,230,252,197,252,
168,253,1,255,121,255,49,255,29,255,226,255,234,0,2,1,139,0,185,0,107,1,188,1,123,1,109,1,207,1,211,1,
170,1,83,2,150,3,182,4,118,5,221,5,225,5,98,5,187,4,102,4,71,4,49,4,224,3,61,3,7,3,147,3,
52,4,63,4,126,3,112,2,209,1,189,1,243,1,17,2,235,1,188,1,76,1,97,0,97,255,112,254,107,253,0,252,
68,250,114,251,73,4,105,18,110,26,188,21,93,12,225,8,2,11,120,13,228,14,85,16,57,17,163,14,41,7,62,255,
91,253,11,2,14,8,33,11,191,10,113,7,167,1,192,250,15,244,252,237,224,232,39,229,194,226,229,224,84,222,5,219,
120,216,119,215,171,215,22,217,220,219,26,224,10,230,231,235,91,238,78,237,93,236,231,237,45,241,173,244,201,247,95,250,
23,252,174,252,167,252,73,253,110,255,158,2,246,5,234,8,22,11,206,12,195,14,132,16,64,17,149,17,195,18,121,20,
244,20,181,19,248,17,99,16,209,14,135,13,191,12,36,12,2,11,21,9,148,7,249,6,82,5,35,2,183,255,238,254,
160,254,61,254,139,253,16,252,28,250,147,248,195,247,107,247,52,247,212,246,157,246,66,247,148,248,38,250,1,252,132,253,
48,254,8,255,168,0,39,2,153,2,29,2,230,1,187,2,136,3,253,2,106,1,198,255,112,254,154,253,169,253,84,254,
232,254,71,255,36,255,190,253,82,251,68,249,62,249,107,251,90,253,31,253,140,251,89,250,235,250,61,253,42,255,35,255,
82,254,201,254,99,0,4,1,96,0,199,255,43,255,126,254,87,254,119,254,96,254,146,253,28,252,16,251,91,250,143,249,
114,249,164,249,17,249,198,247,241,245,138,244,252,244,214,246,33,249,135,251,184,253,254,255,8,2,115,2,246,1,136,2,
205,3,204,4,205,5,46,6,175,4,35,2,205,0,56,1,129,1,76,0,159,254,212,253,225,253,222,253,50,253,29,252,
236,250,67,250,51,251,54,253,86,255,246,1,12,4,54,4,131,4,170,6,23,8,100,6,208,3,105,3,173,3,7,2,
229,255,70,255,150,255,13,0,89,0,4,0,164,255,130,0,228,1,184,1,40,1,42,3,254,6,21,10,38,11,126,9,
8,7,182,6,89,7,168,6,193,4,12,2,186,255,249,254,85,254,250,252,27,252,38,252,93,253,95,255,55,0,222,255,
234,255,36,0,182,255,142,254,122,253,154,253,73,254,107,254,144,254,71,255,84,0,88,1,37,2,12,3,48,3,235,0,
181,253,49,253,252,255,45,3,168,4,187,4,141,4,172,5,44,8,252,8,116,6,56,3,247,1,120,2,255,2,202,2,
186,2,92,3,189,3,218,2,109,1,143,0,210,255,102,255,55,0,102,1,160,1,207,0,134,0,63,2,11,4,224,4,
141,6,242,7,200,7,212,6,5,4,255,255,7,253,210,251,142,253,139,0,247,1,31,3,86,3,223,1,89,2,112,4,
190,5,118,6,63,4,30,255,123,252,168,253,27,0,128,3,18,7,230,7,230,5,37,4,174,3,182,3,76,3,90,1,
38,0,223,1,27,3,77,2,189,1,54,0,247,252,174,251,138,253,206,254,205,252,253,248,14,246,96,245,107,246,8,247,
127,246,111,246,171,247,159,249,90,251,190,252,216,254,216,0,200,0,91,255,95,254,105,254,152,255,234,1,47,4,186,3,
175,255,8,251,196,248,4,249,207,249,220,248,128,245,48,241,167,238,57,239,137,241,187,244,80,248,144,250,33,252,220,254,
155,1,31,3,251,3,27,4,229,2,50,1,223,0,48,2,64,3,17,3,38,3,86,4,228,3,221,255,206,251,49,251,
193,252,129,254,141,255,65,255,43,254,30,253,22,252,56,251,13,251,144,251,49,252,208,252,110,252,49,249,12,245,152,244,
181,247,52,250,122,250,81,250,237,250,228,251,95,253,140,255,46,1,83,1,53,0,101,254,223,252,133,252,104,253,110,254,
13,254,57,252,10,250,193,248,154,249,126,251,5,252,142,251,193,251,215,252,54,254,84,254,19,253,66,254,116,3,147,7,
18,7,56,5,190,4,226,3,224,1,16,0,140,254,144,253,19,255,232,2,154,5,242,5,205,5,169,4,23,1,85,253,
163,251,241,251,6,255,145,4,144,8,191,7,118,3,187,255,28,255,0,1,161,3,225,5,251,6,127,6,178,4,27,2,
158,255,233,254,140,0,240,2,190,4,46,5,50,3,37,255,115,251,204,251,107,0,129,2,244,254,72,252,41,254,180,1,
158,3,184,1,247,254,167,0,70,5,104,8,43,8,225,4,142,2,178,3,177,4,217,2,208,0,210,1,191,4,146,6,
88,7,237,7,147,7,250,5,133,3,41,2,180,3,25,6,26,7,133,7,6,8,96,7,38,4,117,255,95,252,237,252,
202,0,174,4,252,5,12,6,23,6,116,6,211,7,113,8,119,7,82,7,188,8,135,10,157,11,173,11,55,12,29,13,
112,11,91,6,142,0,174,252,159,250,186,249,185,250,138,252,221,252,155,251,107,249,121,247,63,248,136,252,80,2,179,6,
192,8,154,10,178,13,143,16,160,17,59,16,133,12,127,8,228,5,5,4,196,1,22,255,139,253,238,254,124,0,185,253,
8,249,12,248,85,251,147,255,198,1,250,1,152,2,3,4,139,4,108,3,194,1,35,1,178,0,13,255,208,253,239,253,
19,254,179,254,193,0,247,1,11,0,123,253,126,254,102,2,51,5,66,6,95,7,114,7,177,5,16,5,130,5,56,4,
85,3,53,4,169,3,127,2,191,3,53,6,133,6,43,2,62,251,103,247,53,248,101,251,218,254,230,0,83,2,214,3,
127,1,172,249,235,242,54,242,15,244,134,244,109,243,122,241,80,241,57,245,226,250,50,254,53,253,199,250,103,251,69,253,
47,253,187,252,151,251,56,249,230,249,16,254,250,0,111,1,215,255,145,251,62,247,119,245,197,244,130,244,87,245,102,247,
224,251,209,0,202,1,15,255,89,251,108,250,243,255,253,6,93,8,231,5,181,2,5,254,33,248,127,242,100,238,174,236,
138,237,0,240,216,241,71,243,171,246,179,250,203,252,137,255,195,5,13,11,205,10,59,8,181,6,18,6,213,7,104,11,
247,13,141,15,57,14,235,7,82,2,94,2,94,4,174,3,231,255,111,251,172,249,191,250,118,251,83,251,99,251,144,251,
196,253,43,2,214,4,77,5,136,5,50,5,66,4,44,3,71,3,64,6,75,9,147,8,52,5,246,2,94,3,104,3,
233,0,103,255,239,1,245,5,99,6,74,2,197,254,215,254,17,1,250,4,78,8,102,6,76,1,52,1,143,6,143,8,
74,5,230,1,191,254,195,252,183,253,55,253,13,251,81,251,93,251,18,250,167,251,152,255,210,1,71,1,114,0,50,2,
154,6,34,11,77,12,71,8,187,0,87,249,118,245,186,244,224,243,96,242,201,241,213,242,22,245,104,246,254,245,33,245,
105,244,132,245,149,249,184,253,122,255,93,0,141,2,110,4,79,2,101,252,217,245,197,241,53,243,22,249,219,254,157,2,
174,4,201,6,237,10,242,14,163,15,13,13,98,8,131,3,118,0,141,255,141,255,253,253,68,250,120,247,216,246,159,246,
159,246,141,247,141,249,172,252,148,255,33,1,140,2,42,5,179,8,68,11,119,11,187,10,132,10,67,10,188,8,71,4,
158,253,208,247,94,243,36,240,212,238,0,238,175,237,187,239,100,242,158,243,142,244,88,246,72,249,62,252,177,252,239,250,
20,250,103,251,193,253,151,255,165,0,119,1,159,0,147,252,111,247,40,243,89,239,115,237,185,238,80,240,141,239,206,237,
211,237,106,240,65,244,44,247,254,247,45,248,165,248,238,247,247,246,231,247,195,249,173,251,72,253,248,252,222,250,19,248,
97,245,25,244,228,243,169,243,33,244,245,245,40,248,40,249,194,248,184,247,107,246,104,246,67,248,162,249,209,249,89,249,
172,247,43,246,46,246,211,246,253,247,212,248,152,247,29,246,127,246,121,246,141,245,221,246,69,249,7,250,222,250,110,252,
201,253,51,0,174,2,86,3,101,3,7,3,108,1,26,0,119,0,104,1,225,0,146,254,98,251,225,247,116,245,63,245,
54,246,167,246,70,246,35,247,40,250,79,252,26,252,140,251,1,252,217,253,105,0,233,1,10,2,104,2,21,5,50,10,
35,14,242,13,189,11,158,10,16,10,245,8,36,7,249,3,47,1,186,0,121,0,200,255,253,255,211,255,217,255,6,2,
13,5,12,8,171,11,117,15,235,17,159,17,194,15,21,15,115,16,157,19,93,23,231,24,116,22,224,17,151,14,54,12,
253,8,110,6,51,5,67,5,129,7,71,9,73,8,111,6,104,5,132,6,196,9,155,12,248,13,214,13,212,12,106,13,
178,15,85,17,83,17,13,16,44,14,157,11,74,9,140,9,128,11,217,12,185,13,239,12,167,8,116,3,141,1,150,3,
228,6,20,9,243,9,51,10,108,10,135,11,33,14,44,17,127,18,2,18,52,18,255,18,211,16,249,11,4,9,104,9,
159,11,169,14,58,17,104,18,182,17,25,15,27,13,24,13,115,13,218,13,97,13,222,10,135,9,69,10,141,9,48,9,
15,12,213,13,27,13,191,14,123,17,150,16,108,14,37,14,241,13,180,12,144,11,147,11,253,12,115,14,51,14,127,12,
40,11,26,10,212,7,85,5,172,3,108,2,166,2,88,3,31,2,99,1,47,3,142,5,233,6,132,6,98,5,30,5,
79,4,95,2,81,1,2,2,62,3,90,2,245,254,200,252,160,253,120,255,111,0,116,0,216,0,8,2,87,2,169,0,
217,253,107,251,138,250,59,251,28,252,139,252,96,253,9,254,77,253,255,251,33,251,23,251,213,251,156,252,16,254,42,0,
122,0,133,255,161,255,227,255,184,254,99,252,140,250,174,250,92,251,97,250,142,248,243,247,37,248,143,246,29,243,206,240,
241,240,97,242,173,243,69,244,91,245,92,247,145,248,235,248,214,249,124,250,154,249,12,248,191,246,48,246,199,246,70,247,
183,246,35,246,248,245,24,246,161,246,255,246,82,247,240,247,10,248,24,248,21,249,129,249,203,247,159,245,40,245,118,245,
144,245,40,246,127,246,7,246,71,245,158,243,38,242,160,242,228,243,208,245,208,248,101,250,138,249,190,248,202,249,140,251,
100,252,117,252,225,251,68,250,14,248,143,245,98,243,165,242,142,243,158,245,68,247,88,247,40,247,136,247,245,247,123,248,
131,249,104,251,4,253,11,253,222,252,147,253,37,255,84,1,66,1,94,253,43,249,239,247,106,249,127,251,179,252,213,252,
129,251,164,249,26,249,148,249,246,250,25,253,30,254,20,255,165,1,69,3,127,3,236,4,124,6,206,5,191,2,245,253,
174,249,125,248,216,249,184,251,206,252,253,251,174,249,193,248,76,251,73,255,227,0,131,255,226,253,47,254,13,0,42,1,
174,255,70,252,218,249,228,250,19,254,177,255,87,255,175,255,181,0,218,255,97,253,175,251,195,250,200,249,124,249,174,250,
229,253,170,1,141,2,86,0,124,253,184,251,60,252,198,253,100,254,70,255,160,0,41,0,237,253,201,252,197,254,26,3,
8,8,123,11,202,10,2,7,16,4,169,2,246,1,228,1,166,1,130,0,156,254,252,252,203,252,67,254,88,1,133,4,
87,5,62,4,122,3,62,4,254,5,82,7,44,8,174,8,22,8,129,6,101,4,6,2,12,255,170,251,201,250,185,252,
178,253,45,253,217,252,171,252,147,252,194,252,143,253,111,254,122,254,244,254,96,0,175,1,236,2,174,3,152,3,45,3,
117,2,164,1,210,0,58,0,156,255,230,253,251,252,164,253,183,252,226,250,132,250,173,251,31,255,69,2,37,2,170,1,
154,2,161,3,225,3,107,2,140,255,246,251,92,249,173,250,85,253,29,253,50,252,176,252,241,252,44,252,147,250,1,249,
225,249,242,253,38,2,60,4,254,4,25,5,118,5,171,6,248,6,23,6,22,5,90,3,213,0,185,253,207,249,60,246,
71,244,92,244,73,245,145,245,201,246,45,250,120,254,43,3,45,7,246,8,73,9,50,9,52,9,40,10,173,11,153,11,
91,8,69,3,14,255,207,253,168,255,139,1,191,0,226,253,185,250,254,247,207,244,14,243,83,247,133,255,149,5,246,7,
63,7,149,5,243,4,49,4,222,3,58,5,254,6,135,7,128,4,28,255,191,251,63,249,33,246,142,245,158,247,17,250,
109,252,236,253,207,253,29,253,121,253,152,254,179,255,153,1,157,3,245,3,35,3,221,2,141,3,30,3,232,0,53,255,
156,253,16,252,181,252,68,253,157,252,154,253,97,255,228,0,38,3,167,5,61,8,78,9,234,6,9,4,49,3,212,2,
255,1,190,1,165,2,116,3,64,3,153,1,49,253,59,248,133,246,211,246,142,247,220,249,2,253,83,255,98,0,117,0,
181,0,123,1,6,2,157,2,1,3,13,2,173,0,40,0,41,0,24,1,82,2,117,1,165,255,157,255,176,0,118,1,
93,2,41,4,91,5,173,3,221,0,215,255,150,0,178,1,31,1,80,255,8,255,153,255,127,255,172,254,8,253,220,252,
204,254,142,255,106,254,249,252,222,252,227,254,62,1,70,3,87,5,100,6,117,6,60,6,76,7,25,10,227,10,69,9,
185,7,178,4,109,0,16,253,175,250,71,250,165,250,175,248,56,245,94,243,129,245,159,250,127,255,115,3,109,6,126,7,
194,5,176,1,114,255,117,0,150,1,1,2,23,1,188,255,70,1,104,3,110,3,150,2,16,1,95,1,174,4,101,6,
174,4,199,1,174,0,43,2,248,2,227,2,233,3,177,4,26,4,96,1,13,254,63,253,198,252,24,252,160,253,101,255,
9,1,5,3,101,4,29,8,41,13,184,14,147,13,48,11,206,8,98,7,84,4,201,0,41,255,244,253,125,254,0,1,
36,2,90,2,81,2,194,0,117,254,39,252,225,250,228,252,6,1,168,3,193,4,136,6,95,8,247,8,97,8,209,6,
75,6,104,7,119,7,147,6,65,5,183,2,26,1,76,255,139,250,0,247,6,247,251,247,141,249,133,250,63,249,193,247,
144,247,38,249,146,252,41,255,92,0,238,3,40,10,94,14,147,14,125,13,179,13,143,14,3,13,183,7,5,1,185,251,
24,249,210,248,190,249,176,251,82,253,128,252,35,251,81,251,120,251,1,251,180,251,51,0,98,8,247,13,41,13,188,10,
110,10,219,10,75,11,182,11,102,10,252,6,227,2,172,253,252,247,204,244,227,242,139,240,201,240,33,243,3,244,94,244,
230,245,99,249,25,255,115,3,240,4,90,7,84,10,92,9,166,4,24,0,188,253,93,252,248,248,73,244,245,243,179,248,
133,252,31,252,71,248,74,244,71,244,47,246,199,246,169,249,198,0,188,7,196,8,10,3,227,254,10,1,135,2,78,255,
169,250,131,249,76,254,200,1,174,254,27,252,45,253,9,254,92,253,20,251,34,251,134,0,184,6,72,12,126,17,233,16,
246,8,78,255,98,250,45,252,147,255,85,255,29,252,142,249,202,249,134,251,151,253,26,0,167,2,217,5,7,9,85,11,
169,13,119,12,1,7,105,4,146,5,62,7,237,8,33,8,41,6,178,6,7,8,240,8,68,8,214,4,56,2,102,1,
249,0,115,2,159,4,41,5,223,5,105,9,205,14,120,17,244,15,45,13,94,10,2,8,227,6,239,5,247,2,217,253,
145,251,147,255,232,5,120,9,244,7,148,5,2,9,193,13,205,13,212,11,154,8,83,4,0,0,65,251,89,251,194,0,
226,3,0,5,111,5,25,3,82,1,130,0,24,253,78,249,155,249,205,253,234,0,0,1,113,0,84,254,213,251,154,253,
105,1,236,1,168,253,216,246,222,242,41,245,143,251,51,255,170,251,19,247,138,247,145,249,126,249,250,247,114,247,129,249,
8,252,155,252,128,250,1,247,15,246,121,247,16,247,91,244,202,241,147,241,173,243,17,246,14,247,7,245,173,241,152,240,
7,241,168,242,190,246,6,251,135,252,206,249,61,245,92,243,17,243,20,242,113,241,177,241,157,243,147,245,157,244,35,243,
239,243,90,246,228,247,183,245,181,241,47,239,200,238,27,241,217,243,118,244,210,243,160,241,163,239,143,240,19,242,58,242,
161,240,196,237,112,236,175,236,36,238,102,242,144,247,229,250,122,251,124,250,243,250,144,251,77,250,91,249,21,249,118,249,
14,251,147,251,133,250,0,249,37,247,189,245,54,244,76,242,8,242,26,244,100,247,160,249,55,249,128,247,84,246,190,246,
240,247,71,248,117,249,42,252,216,252,211,249,255,245,154,245,53,248,77,249,150,248,254,248,166,251,21,255,244,255,213,254,
70,254,120,253,250,253,4,1,62,3,6,4,249,2,94,255,172,253,92,255,74,1,115,2,116,1,179,254,201,253,220,254,
16,0,107,2,249,7,17,15,15,19,90,19,14,18,245,14,38,11,126,8,117,6,156,4,115,2,232,255,138,254,147,254,
76,0,106,4,8,8,185,8,36,8,39,7,105,5,219,3,150,3,158,5,222,8,189,9,106,8,86,8,207,9,229,11,
14,13,200,10,161,7,150,7,236,8,101,9,207,8,25,8,118,9,54,11,210,10,9,11,171,12,99,13,32,13,66,11,
179,7,249,4,95,4,91,6,246,9,15,12,134,12,248,12,148,12,251,10,126,9,227,9,185,12,145,14,205,11,180,6,
56,4,129,5,106,8,141,11,81,14,160,15,50,15,2,13,71,9,53,6,46,5,192,5,149,7,177,8,79,8,227,8,
37,10,54,11,93,13,174,14,129,13,230,10,172,6,144,3,58,5,44,9,189,12,178,15,53,16,64,13,65,8,76,5,
100,8,117,14,236,16,247,13,90,7,141,0,212,253,178,0,77,7,168,14,152,19,130,19,217,14,93,9,210,5,191,4,
36,6,148,8,19,9,225,5,39,1,147,254,23,254,9,254,251,254,200,0,91,2,22,4,133,5,204,4,227,2,0,4,
51,8,99,10,49,10,135,11,90,13,222,11,122,6,46,255,77,248,125,244,66,246,215,250,217,252,29,253,165,252,88,250,
118,252,193,6,139,15,47,14,127,6,23,1,250,0,204,4,17,12,51,18,132,16,75,9,118,2,24,254,102,253,207,254,
79,254,159,250,56,245,113,241,249,240,8,241,235,239,109,239,148,240,84,242,197,243,183,245,59,249,99,254,199,3,84,5,
64,2,100,0,61,1,238,0,158,1,207,6,100,12,4,12,238,3,93,249,173,243,2,242,40,239,119,235,158,233,149,235,
133,241,157,246,102,248,98,250,52,252,155,250,11,248,96,249,154,254,192,3,161,6,39,7,157,5,68,4,222,3,87,2,
82,0,25,254,198,249,198,244,26,241,18,239,147,238,188,237,234,237,22,243,2,251,222,0,211,2,68,1,10,0,172,1,
10,3,5,2,145,0,211,255,138,253,33,248,78,243,184,242,127,243,189,242,207,242,141,244,45,245,103,244,8,244,188,244,
134,246,154,247,59,247,144,248,151,252,254,0,93,3,22,1,30,252,20,249,75,247,143,245,58,244,76,241,124,237,165,235,
6,236,74,239,47,245,126,250,127,253,96,255,235,1,188,4,202,5,154,5,190,5,18,6,123,6,148,6,149,5,189,2,
76,252,201,243,14,240,74,243,195,246,255,245,73,244,94,244,128,244,130,244,252,247,153,255,9,6,27,7,30,4,43,0,
158,253,130,253,163,255,119,3,36,6,104,4,186,255,22,251,18,247,73,244,37,244,209,246,253,249,91,251,213,251,205,252,
40,253,173,251,171,249,146,249,241,250,36,252,78,254,170,1,143,3,169,1,79,253,170,252,121,2,53,9,23,12,78,10,
29,5,114,0,156,254,97,255,19,1,83,0,221,253,22,252,122,249,43,247,91,248,152,251,157,253,52,253,39,252,29,252,
238,252,232,255,253,2,245,0,84,252,124,250,0,251,186,252,125,255,57,2,82,3,237,0,37,252,210,248,242,248,106,251,
110,253,53,253,120,251,130,249,107,247,123,245,68,245,92,246,188,247,206,251,225,0,226,1,146,1,0,3,108,3,177,2,
245,0,168,252,150,247,124,244,160,244,185,246,177,248,113,252,96,1,68,3,7,4,4,6,199,5,29,2,129,254,120,253,
118,252,218,248,8,247,65,249,220,249,39,248,181,249,89,254,26,1,29,1,75,1,25,2,133,2,38,4,143,7,207,9,
216,7,23,1,177,249,252,247,83,253,46,5,31,9,21,6,224,255,170,251,245,250,151,252,146,252,20,249,238,245,75,245,
13,247,28,251,181,254,122,2,39,8,43,9,242,3,156,0,189,0,60,2,67,5,124,7,116,9,128,12,191,12,2,10,
121,7,34,6,215,7,227,10,40,10,37,6,48,2,50,0,202,1,183,5,80,8,128,7,169,3,4,255,45,253,91,1,
42,9,108,13,77,12,191,9,27,7,187,4,211,4,6,6,80,4,237,0,36,0,198,1,134,3,69,5,56,7,47,9,
210,9,183,6,168,1,248,255,154,2,31,6,204,8,77,10,54,9,134,6,139,5,18,6,184,6,94,8,15,10,58,10,
219,9,230,8,41,6,9,3,108,2,251,3,38,5,29,8,54,14,158,15,244,8,56,3,225,4,15,12,8,20,92,22,
58,16,215,7,73,5,156,8,198,12,210,15,251,16,162,14,13,11,98,10,253,12,144,14,81,10,183,2,39,253,188,248,
51,246,47,250,79,2,93,9,18,13,151,10,51,4,51,2,70,6,18,10,41,10,68,9,194,8,102,6,51,4,50,7,
119,13,47,16,51,13,149,8,26,6,3,6,184,8,3,12,172,9,94,3,182,0,66,1,28,2,191,5,224,12,20,19,
161,20,233,20,28,25,234,29,231,30,33,29,102,24,116,18,121,15,54,13,33,9,103,6,34,6,221,4,105,0,55,252,
91,252,171,254,97,0,93,1,153,0,217,255,13,2,121,5,23,8,26,10,166,11,40,12,87,10,154,7,171,6,94,6,
12,5,43,2,219,252,61,247,19,243,33,239,246,236,44,238,172,240,60,243,50,244,201,241,31,240,92,243,39,249,205,254,
214,2,26,3,200,1,28,2,210,1,20,0,201,255,122,255,104,251,150,244,91,239,3,238,232,238,162,240,157,243,163,245,
141,243,102,238,133,234,64,236,210,243,139,251,116,253,141,250,118,249,221,252,83,1,5,4,153,3,222,0,126,255,129,254,
114,251,16,250,11,251,118,249,207,243,6,236,138,230,163,230,76,232,161,231,211,230,37,232,105,234,235,235,192,239,115,247,
150,250,126,246,131,244,82,246,47,247,86,248,208,250,246,252,56,253,190,249,177,243,110,237,77,232,8,232,195,237,129,243,
180,243,88,239,53,235,65,234,27,236,24,239,222,241,241,244,156,248,222,250,30,252,223,254,16,2,10,3,110,1,216,253,
132,248,69,243,35,241,161,240,85,239,224,240,213,244,27,244,174,239,103,238,76,241,182,245,217,248,232,247,138,243,28,242,
156,247,34,253,238,253,128,0,254,4,40,4,183,255,30,253,8,253,166,253,157,252,233,251,62,254,103,255,176,252,255,249,
86,250,52,252,166,251,24,249,255,249,194,253,202,254,125,254,64,2,18,8,143,8,167,3,48,2,3,8,103,14,44,14,
141,8,106,4,115,4,211,4,37,3,43,2,152,4,135,7,201,5,137,0,233,252,130,251,139,251,202,255,13,9,72,17,
245,16,83,8,50,0,197,0,200,8,244,14,147,13,153,7,191,1,192,255,140,3,67,8,143,7,85,3,222,0,179,0,
57,2,38,7,193,12,240,12,191,9,248,8,11,10,184,11,60,14,191,15,162,14,6,10,243,4,185,4,169,6,151,7,
43,10,131,11,72,8,87,2,163,249,101,244,132,250,56,4,149,9,52,14,50,18,215,18,126,17,61,16,218,17,134,22,
21,26,60,26,113,22,218,15,147,11,179,10,128,8,135,5,240,5,204,6,88,2,25,250,240,244,188,245,39,248,44,249,
24,251,95,252,177,250,14,252,140,2,20,8,177,12,144,18,117,21,51,19,84,15,253,13,91,15,127,15,42,13,37,10,
220,5,10,255,115,246,150,239,84,238,72,241,180,243,173,243,50,244,140,249,16,1,222,4,163,5,230,5,175,6,95,8,
41,9,204,11,67,19,244,23,189,20,235,13,130,7,85,5,69,7,58,7,9,4,39,0,231,252,173,252,20,255,141,1,
75,2,40,0,44,254,190,253,106,251,77,249,50,251,167,255,2,6,211,11,93,12,220,8,140,5,79,4,239,4,53,5,
107,3,190,254,155,248,85,246,222,247,58,247,251,246,107,253,230,4,8,5,18,1,158,254,85,252,16,250,140,250,238,252,
116,255,250,0,109,254,95,248,248,244,62,247,229,251,120,255,166,0,94,253,12,246,125,240,186,240,99,246,15,255,244,4,
24,5,14,4,34,5,63,6,162,3,138,252,230,246,138,245,212,242,252,239,12,245,156,254,178,1,60,253,175,248,183,247,
134,248,70,249,74,249,221,248,240,248,79,249,121,249,150,248,181,245,180,243,221,245,220,249,24,252,18,252,118,251,70,252,
55,253,45,251,74,247,96,245,42,246,130,247,24,248,243,247,209,247,218,248,144,250,220,252,68,1,220,4,211,3,216,255,
16,250,91,244,95,243,36,246,105,250,106,255,169,255,84,251,122,249,167,249,48,249,39,249,120,249,199,250,86,252,108,251,
56,249,82,247,141,245,193,244,102,246,135,252,25,4,95,5,172,0,51,252,93,250,20,251,25,253,183,255,7,2,195,0,
189,252,115,249,122,247,57,249,246,254,200,2,32,1,14,251,52,245,16,244,203,245,211,249,76,1,135,5,139,2,11,254,
149,252,94,254,254,255,89,254,192,253,125,1,13,5,114,5,141,4,142,4,147,5,238,4,23,1,202,252,221,250,137,250,
179,249,246,248,23,250,115,251,76,250,68,248,119,248,36,250,229,251,254,254,191,3,11,9,121,13,65,14,236,11,156,10,
161,9,98,6,176,2,228,255,246,253,51,254,39,0,104,1,230,0,63,255,58,253,34,251,208,250,44,254,222,1,15,1,
109,253,70,252,51,255,67,4,201,8,29,10,219,8,185,8,38,9,32,7,203,5,52,9,129,13,98,11,40,3,126,254,
136,1,52,4,194,2,226,2,202,5,65,6,244,1,95,253,247,253,252,1,47,4,225,3,75,4,191,7,68,11,41,11,
232,9,169,8,134,4,230,255,209,255,107,3,125,5,37,4,109,3,220,3,251,1,247,0,246,3,52,8,159,12,182,14,
129,11,198,7,118,6,241,3,248,255,226,253,50,0,72,6,249,10,121,10,70,6,246,1,6,0,109,255,174,254,24,255,
126,255,182,252,254,248,207,248,4,252,89,0,11,4,103,4,57,1,170,254,67,254,87,254,107,255,218,0,77,0,206,254,
136,253,78,252,31,252,100,252,181,252,19,254,44,254,244,251,150,250,233,249,185,247,194,245,91,246,104,247,2,246,220,245,
182,248,164,245,243,237,103,242,149,2,157,13,218,17,205,20,15,17,35,7,219,0,56,252,46,242,31,232,221,229,244,235,
198,245,130,252,209,0,230,6,237,9,216,6,202,1,127,252,198,248,107,246,211,241,251,238,254,242,196,251,139,6,123,13,
218,10,144,3,235,253,173,249,46,248,150,252,91,3,8,4,150,252,46,244,117,241,149,243,1,246,226,247,87,250,16,251,
223,248,24,246,39,244,227,243,4,246,64,250,177,254,110,255,56,252,128,248,208,245,118,246,156,250,152,253,0,254,143,251,
196,246,46,247,228,254,1,5,148,5,221,3,180,2,188,3,155,5,178,5,4,4,53,1,70,254,179,253,82,254,120,251,
36,246,172,243,120,245,226,250,70,2,80,7,22,8,250,5,102,3,47,3,211,3,149,2,177,1,0,2,80,2,207,4,
126,9,212,12,235,13,111,13,173,11,78,9,158,6,101,4,23,3,5,1,38,254,241,253,127,2,106,9,134,12,228,7,
191,0,137,254,236,0,75,4,230,5,228,3,27,2,130,4,89,6,214,4,8,6,5,11,192,13,55,14,214,15,30,16,
155,11,37,4,248,254,70,255,76,2,188,3,80,2,75,255,150,254,224,0,36,2,184,2,192,3,40,3,92,2,242,1,
88,1,7,4,194,7,15,7,61,4,116,2,187,3,153,8,171,9,197,4,59,4,80,11,146,15,131,9,222,0,199,1,
127,8,234,8,182,4,112,4,69,6,71,4,58,0,228,254,33,255,214,252,103,248,211,246,50,251,74,0,156,254,52,249,
146,247,142,249,171,253,205,3,202,7,199,8,52,10,26,10,144,6,184,2,112,0,177,0,160,2,90,1,81,252,82,247,
42,243,44,241,69,243,92,247,90,251,111,253,196,250,42,246,245,244,105,246,152,248,139,251,115,253,231,252,101,250,5,248,
159,249,135,254,28,1,95,255,160,251,131,248,239,246,3,246,78,247,247,251,185,255,86,255,132,251,4,246,29,243,178,245,
168,250,91,254,76,0,167,0,219,255,103,255,216,255,15,0,89,0,104,1,15,1,100,253,210,247,180,243,212,243,198,247,
157,252,96,0,57,3,134,4,108,1,198,251,2,250,146,251,191,251,223,250,168,250,185,251,241,252,99,251,124,249,160,251,
251,254,88,255,127,253,84,251,83,249,92,249,224,253,3,3,53,3,207,0,18,255,77,254,208,255,235,255,201,250,208,246,
57,249,124,254,59,2,22,2,64,255,71,253,165,252,74,253,148,255,193,1,18,3,220,3,175,4,121,6,173,6,116,4,
37,4,156,4,149,2,156,1,99,3,223,5,172,8,138,10,13,10,82,6,78,0,77,254,223,1,216,4,101,7,234,11,
5,13,131,7,186,255,174,250,236,250,180,255,238,4,78,6,49,3,178,255,133,255,24,1,175,1,13,2,197,3,176,6,
81,9,44,9,67,6,166,4,246,5,189,6,178,5,16,6,142,7,168,6,186,5,202,6,238,4,241,255,63,252,128,250,
210,252,1,3,76,6,175,5,103,5,186,6,6,9,4,9,121,5,54,3,176,3,24,4,187,4,171,6,255,7,227,6,
166,5,247,6,66,7,85,2,121,252,80,253,200,4,208,10,163,9,252,2,88,251,40,246,195,245,157,249,76,254,253,2,
116,8,125,11,151,10,53,7,192,0,39,252,9,0,136,8,110,16,247,20,99,19,238,14,158,8,200,255,28,253,218,2,
102,7,49,6,190,255,244,246,251,240,34,239,181,241,250,247,12,253,243,255,228,3,130,7,82,8,129,8,243,8,6,7,
120,3,80,1,139,2,243,7,92,12,16,10,248,2,95,251,11,249,135,254,110,4,191,5,20,3,212,252,139,247,22,246,
20,247,141,250,224,253,224,255,195,2,130,4,54,4,105,2,126,254,100,252,255,252,54,252,77,250,89,248,104,247,152,249,
152,252,215,253,118,254,98,254,121,251,53,247,42,248,19,255,204,4,226,6,205,6,227,4,209,2,69,1,206,0,44,3,
227,5,7,4,67,253,227,246,120,244,172,243,10,244,90,246,242,246,22,245,114,243,252,241,212,241,205,245,18,253,76,2,
119,1,152,253,64,251,123,251,29,254,98,1,33,4,243,6,124,8,172,7,145,4,44,255,48,250,160,247,250,246,77,248,
199,249,21,250,232,251,101,254,42,253,251,249,106,250,147,254,41,1,27,254,211,248,147,249,57,0,119,4,87,4,29,3,
110,2,249,2,117,0,176,247,76,240,22,241,106,248,144,2,206,10,179,13,237,9,7,255,26,242,116,233,148,230,1,235,
4,245,68,253,151,0,196,0,216,0,6,5,140,10,91,9,203,3,196,1,195,1,202,255,241,252,138,250,90,250,67,252,
177,250,197,244,100,242,86,248,231,0,207,2,47,254,167,250,162,249,239,248,23,250,253,253,14,4,242,9,35,11,69,7,
72,0,193,248,116,247,107,252,233,255,242,1,114,4,2,4,124,1,111,255,50,254,112,255,186,1,189,2,246,3,104,4,
14,3,136,2,80,2,6,1,42,0,44,255,99,253,51,253,160,255,241,2,3,4,204,255,80,248,94,243,169,242,43,245,
123,250,169,255,195,2,191,4,171,4,244,3,23,5,11,4,51,0,194,0,5,8,112,16,198,18,114,13,198,5,134,253,
74,243,212,235,145,237,206,246,29,254,79,255,17,0,221,0,45,253,10,249,168,249,122,252,168,253,198,252,253,250,21,248,
120,245,132,247,24,254,254,4,105,9,33,10,73,8,185,4,242,254,130,249,132,247,175,249,86,254,55,1,15,1,54,255,
94,251,150,247,240,245,142,245,9,248,253,253,24,4,113,7,117,4,145,251,181,245,185,247,121,253,230,2,54,5,61,4,
169,2,10,254,253,246,255,247,24,1,20,8,114,12,119,13,84,6,168,253,196,249,131,246,183,243,161,244,92,248,174,253,
91,2,53,4,92,5,196,6,211,5,208,2,199,0,243,255,82,254,99,253,167,0,35,5,165,5,118,5,184,7,112,7,
61,2,27,251,186,244,85,242,242,244,20,250,56,255,203,2,212,5,161,8,136,8,195,6,169,5,196,4,215,4,132,4,
239,2,90,3,85,3,12,0,179,254,244,0,221,3,153,6,238,5,212,255,68,250,189,250,211,254,112,2,107,4,172,3,
10,1,14,0,47,1,218,2,120,5,212,9,26,14,93,13,151,7,56,4,147,4,66,3,227,1,121,5,160,10,210,9,
30,3,80,254,92,0,34,5,157,5,4,2,232,253,77,248,112,244,152,248,171,255,224,3,56,9,28,16,67,20,84,20,
228,15,72,9,109,5,224,4,242,3,42,0,140,250,101,247,239,250,11,2,52,5,15,5,202,5,159,4,244,255,59,252,
45,252,234,253,111,254,255,253,153,255,72,4,61,9,80,10,133,8,224,8,235,10,61,10,18,6,65,2,253,0,233,253,
50,248,108,246,43,251,73,5,139,15,183,16,137,10,81,5,207,2,2,3,253,3,225,3,143,4,171,3,106,255,138,252,
154,253,90,1,162,4,227,5,123,8,2,12,209,11,60,8,153,4,63,1,193,252,201,250,65,255,63,3,175,0,140,252,
240,251,43,254,186,254,182,252,30,254,138,2,80,3,53,0,175,252,211,250,119,250,6,251,224,254,33,5,12,9,204,9,
73,9,228,8,232,6,230,0,247,250,161,249,33,252,198,0,131,4,4,5,153,3,88,2,118,3,154,6,25,9,22,10,
134,8,91,4,191,255,159,252,122,254,122,5,85,11,131,12,127,10,40,9,54,11,83,14,216,17,243,20,35,17,95,8,
19,3,200,255,97,252,53,250,161,245,185,240,24,243,86,250,128,1,38,8,181,10,21,8,128,4,109,2,74,5,92,12,
161,14,30,11,168,8,162,8,81,10,186,10,1,6,70,0,153,254,93,3,139,14,42,19,131,7,188,248,242,241,130,238,
43,237,171,240,34,247,163,253,3,1,142,0,253,0,112,4,40,7,84,6,245,1,129,250,254,241,171,237,232,240,204,247,
41,253,22,255,207,251,125,246,155,245,232,245,20,242,36,239,66,241,134,245,146,248,50,249,57,250,23,253,213,253,133,253,
45,255,174,254,240,251,209,250,166,248,214,244,13,242,10,240,47,243,73,253,165,2,34,253,227,245,220,242,213,241,54,242,
194,243,93,244,40,245,47,247,228,247,49,248,197,248,232,244,92,238,66,236,146,238,168,241,26,242,251,238,249,237,124,241,
114,244,147,244,251,243,251,244,149,246,36,245,231,242,6,245,246,248,81,250,69,251,113,254,220,0,161,254,200,247,222,240,
214,239,135,242,50,242,143,241,192,243,242,244,94,246,144,248,194,247,183,247,189,250,166,251,155,250,136,250,88,249,219,244,
151,239,59,238,115,241,133,246,132,250,230,251,73,254,183,2,123,2,192,253,152,251,165,251,29,250,44,248,220,248,140,251,
111,252,93,250,46,248,106,249,45,254,74,1,25,255,65,250,116,247,173,248,253,250,114,252,157,255,205,2,192,1,115,254,
127,253,182,0,6,4,23,2,241,255,116,3,237,5,201,1,183,251,62,248,89,248,220,251,217,255,184,1,63,2,36,1,
234,253,76,252,86,254,232,0,26,2,98,2,101,2,42,3,254,3,158,3,7,4,120,6,145,7,125,5,53,3,218,2,
18,4,158,5,98,5,79,3,39,1,13,0,96,1,17,4,41,5,131,4,34,2,26,254,32,251,163,251,247,0,246,7,
78,9,237,4,88,1,26,3,127,11,251,20,65,23,109,17,177,7,173,0,203,2,164,10,239,14,172,13,79,11,31,10,
124,8,170,5,211,3,84,3,96,1,228,254,20,1,204,7,177,13,121,16,216,15,202,11,143,7,37,7,66,11,136,16,
152,18,179,16,169,11,68,5,150,2,108,5,197,9,141,11,66,8,57,2,106,0,50,4,151,8,211,10,248,10,98,9,
10,7,198,5,157,7,34,12,176,15,136,15,236,11,140,7,154,6,199,9,254,12,15,13,27,9,125,3,107,1,248,1,
196,255,233,252,119,254,43,2,72,3,49,3,69,5,87,7,133,8,115,13,100,21,218,26,83,28,151,25,173,18,1,10,
192,2,237,254,191,252,115,249,32,246,20,245,45,247,53,250,194,250,67,250,227,250,194,251,203,254,204,5,149,12,1,15,
194,13,174,9,15,4,72,3,86,9,167,14,69,16,203,15,45,11,123,3,112,252,188,248,212,250,141,254,80,254,3,252,
202,249,141,247,53,246,182,247,161,252,144,255,81,254,19,255,118,2,12,5,170,6,49,6,124,5,230,6,82,7,201,6,
161,7,146,8,6,8,254,4,196,1,230,0,208,253,176,246,176,241,151,241,102,243,13,244,0,244,9,246,131,249,40,252,
79,254,108,255,6,254,201,251,113,251,26,253,197,255,22,3,25,5,215,1,48,248,79,239,132,241,209,251,7,1,127,0,
13,2,245,3,139,2,147,0,228,255,165,254,153,252,156,254,187,4,209,3,219,249,232,243,150,245,111,247,221,246,228,243,
201,237,233,230,83,228,24,233,5,240,38,241,91,239,84,244,19,2,121,16,79,22,135,18,219,10,194,3,37,255,4,254,
83,254,148,252,242,249,65,249,84,247,113,242,157,241,241,247,254,252,39,249,255,239,173,234,117,235,156,238,151,244,20,254,
169,5,85,7,3,5,207,1,200,254,147,252,169,253,80,2,4,5,58,1,79,249,179,242,10,242,31,249,34,1,86,255,
17,246,183,241,95,245,149,250,168,252,90,252,250,252,182,253,240,251,75,251,177,255,120,5,124,7,72,7,152,9,40,13,
53,13,234,9,15,6,233,1,20,252,121,245,128,241,165,239,86,237,197,236,170,239,86,244,64,249,25,252,16,252,10,252,
131,254,82,3,60,7,64,7,5,5,104,3,191,3,23,7,63,11,114,11,52,7,22,2,116,254,220,253,7,0,63,1,
201,0,134,255,5,251,169,246,131,249,191,0,249,4,194,3,251,255,97,254,120,254,235,253,168,254,146,0,83,0,177,252,
117,248,165,248,245,252,116,0,247,0,172,253,117,248,222,246,84,249,129,251,223,251,91,251,5,251,14,252,111,254,219,0,
89,4,88,9,70,11,105,9,210,8,89,10,82,12,115,13,103,12,216,11,28,13,94,13,105,12,37,11,100,9,147,6,
7,2,125,254,148,254,174,1,191,5,13,5,228,254,146,252,205,0,57,5,54,7,3,8,163,7,168,4,78,0,243,254,
109,1,137,4,114,5,248,3,41,3,138,4,96,6,38,8,118,10,133,12,33,12,69,9,226,6,107,5,74,4,148,4,
177,4,127,3,62,3,198,3,183,2,219,255,33,253,140,252,81,255,252,3,139,4,193,255,154,253,172,255,77,255,62,252,
114,252,220,1,244,4,77,255,168,248,56,249,40,253,153,253,140,247,89,240,255,239,43,245,235,251,67,1,110,0,103,251,
230,246,147,242,195,239,215,240,1,244,167,244,209,239,252,232,2,229,79,229,254,234,225,243,175,250,214,252,236,249,5,245,
89,243,167,244,46,245,117,244,89,245,118,249,159,253,213,253,114,250,187,246,11,246,229,248,59,252,114,254,133,0,57,1,
5,255,141,252,98,252,228,253,197,255,246,255,236,253,34,252,175,251,19,253,2,0,141,0,219,253,215,250,107,248,204,248,
157,252,115,254,176,251,172,247,39,246,251,248,208,253,67,0,134,1,104,6,77,12,79,11,151,5,233,4,118,9,109,11,
202,8,83,6,178,6,17,8,238,9,135,12,146,13,99,13,6,14,87,13,129,10,162,9,166,12,175,15,143,14,147,11,
204,12,25,17,245,15,57,8,30,3,56,4,51,6,216,6,213,6,124,5,196,2,200,254,133,251,190,252,212,1,64,6,
133,6,3,5,224,8,87,17,25,21,161,17,45,13,16,12,45,12,138,11,178,12,146,14,60,12,155,7,36,7,80,12,
76,17,117,15,54,8,239,1,54,1,97,7,160,15,52,19,247,15,13,7,236,253,7,251,102,254,118,3,184,3,80,253,
4,249,119,252,221,0,5,0,17,253,186,253,31,1,12,2,216,0,117,2,217,7,33,12,175,10,75,5,196,0,38,255,
25,255,16,253,44,249,14,248,155,249,61,250,41,250,247,250,234,252,52,255,136,0,162,0,5,0,208,255,173,0,177,0,
149,254,242,252,83,254,16,0,171,253,161,248,163,245,78,245,196,245,72,246,107,248,12,253,157,0,149,0,158,253,131,248,
148,245,170,247,52,250,158,250,79,250,169,249,25,249,223,247,68,247,215,250,106,255,125,0,112,254,63,248,195,240,8,240,
92,246,84,254,93,5,66,9,248,7,58,3,120,255,118,254,177,253,222,252,252,253,129,254,122,252,203,251,154,253,145,253,
56,250,142,247,137,249,33,254,99,255,193,252,5,251,126,251,42,251,194,248,163,246,103,246,60,246,188,245,115,246,111,247,
74,248,239,249,241,250,250,250,212,250,199,249,171,249,30,252,173,253,40,252,30,250,176,250,103,254,177,2,87,5,183,6,
128,7,201,6,64,2,241,250,96,247,176,250,150,255,156,255,7,251,76,248,0,251,115,0,96,6,159,10,165,9,222,4,
218,0,9,255,81,255,158,0,92,1,16,2,83,2,254,255,49,252,113,250,0,252,14,255,122,0,96,255,146,254,44,0,
67,2,72,2,168,1,65,3,210,4,19,2,172,253,68,253,14,0,36,2,135,2,200,1,237,0,75,0,245,254,196,253,
233,253,70,254,182,255,88,4,82,9,200,10,142,9,37,7,168,3,11,1,35,2,247,5,88,7,249,3,123,0,65,0,
109,0,197,254,223,252,155,253,55,2,70,6,136,5,198,4,63,9,36,15,147,15,41,9,66,2,109,1,158,4,163,6,
239,6,244,6,127,6,71,4,27,1,112,255,218,254,224,253,17,253,77,253,85,255,208,1,118,1,162,254,251,252,100,255,
138,4,51,6,224,2,253,255,5,255,54,255,20,2,64,5,74,5,221,3,7,3,37,2,187,0,233,255,236,0,6,3,
118,4,255,3,22,1,154,253,223,252,108,255,232,2,119,4,1,2,151,253,242,252,41,1,177,5,38,8,197,8,86,7,
242,4,25,3,90,1,21,255,129,253,169,254,140,1,116,2,56,1,191,0,107,1,22,2,148,2,57,3,103,4,1,5,
223,2,211,254,106,252,153,253,153,1,35,5,46,4,210,255,208,253,78,0,116,4,198,6,129,5,133,2,91,1,140,2,
177,3,37,3,171,1,174,255,114,253,190,253,66,0,27,1,91,1,250,1,76,255,186,250,206,249,232,252,31,0,217,0,
123,0,212,255,103,252,52,247,136,244,239,245,72,250,192,253,243,252,31,250,65,248,81,246,244,242,9,240,242,240,14,245,
198,247,199,247,231,247,74,249,6,250,103,249,149,249,217,250,217,250,149,249,137,248,19,248,65,249,197,251,33,253,58,253,
93,252,26,249,225,245,229,245,140,246,176,245,254,244,140,245,167,246,208,245,144,243,179,244,101,247,113,246,228,244,134,246,
224,249,113,253,133,0,148,2,226,1,229,253,217,250,238,249,84,249,212,250,251,251,141,249,157,249,5,254,164,255,37,253,
129,250,91,249,38,250,79,252,38,254,71,255,22,0,142,255,182,253,238,253,93,1,28,4,194,3,153,2,78,3,181,4,
57,4,253,2,29,3,155,3,244,2,73,1,158,0,98,2,207,3,23,3,127,3,10,7,174,11,21,14,33,12,61,8,
149,6,109,6,199,4,38,2,129,0,253,255,176,0,0,3,114,5,100,6,3,6,182,4,100,3,132,2,2,0,42,252,
158,251,233,254,37,1,238,0,157,1,19,4,130,5,155,5,56,7,134,9,90,8,40,4,39,2,186,4,233,8,146,11,
114,13,237,14,57,13,9,9,49,7,255,7,164,8,205,9,223,11,178,11,215,7,61,3,43,1,60,1,212,0,145,255,
61,254,120,252,119,251,44,253,44,0,219,1,119,1,156,255,27,253,236,249,192,247,235,249,57,254,63,255,208,253,1,254,
137,255,128,255,239,253,236,253,129,0,188,3,226,5,188,5,123,3,111,1,106,1,45,3,83,4,107,3,234,1,194,255,
20,253,40,253,52,255,212,255,245,0,24,4,15,6,209,4,27,1,138,252,140,249,241,249,115,251,87,250,183,248,104,249,
190,248,18,246,103,246,165,248,59,248,220,246,107,247,219,248,113,250,76,252,163,253,159,255,166,3,3,7,61,7,113,5,
65,3,64,2,68,3,208,4,143,5,119,5,17,4,251,0,248,253,247,253,122,0,149,2,108,4,193,6,198,7,123,6,
50,3,142,255,65,255,244,1,104,2,114,0,248,0,96,3,197,2,23,255,25,252,163,251,120,253,135,0,128,3,118,5,
78,5,34,3,36,2,36,4,162,5,64,4,188,3,139,6,236,8,31,7,133,2,82,0,127,3,196,7,83,7,12,1,
32,245,102,230,160,221,178,224,230,236,116,252,5,9,58,14,151,14,135,14,11,14,69,12,62,9,90,4,208,253,32,247,
245,242,176,243,176,247,203,250,199,250,185,248,220,246,191,243,81,237,69,232,162,234,74,243,205,251,85,255,139,255,5,0,
211,0,97,1,182,0,122,254,246,253,164,255,238,255,161,254,87,254,252,0,74,5,237,5,222,0,217,250,195,247,130,245,
91,241,63,238,51,239,63,242,84,245,25,247,127,247,62,250,146,255,210,2,170,2,214,0,40,255,107,255,150,1,60,4,
111,6,167,7,60,7,201,5,228,5,105,7,219,6,240,3,99,1,18,0,123,254,13,252,99,251,180,253,255,0,217,4,
190,8,90,9,88,5,123,1,72,3,210,7,11,10,117,12,149,15,245,14,86,10,128,4,58,2,5,7,51,14,84,18,
132,17,246,10,113,3,208,255,106,255,248,1,76,6,182,9,107,11,41,10,97,6,106,3,243,2,223,4,103,7,67,8,
132,7,161,5,159,2,60,255,98,253,113,254,198,254,2,252,205,251,74,0,23,4,32,5,156,4,95,2,61,254,222,249,
176,248,81,251,17,254,203,254,103,253,62,250,167,247,246,246,98,247,99,248,66,248,224,246,95,247,44,249,119,249,164,248,
225,246,126,244,88,243,150,243,198,244,120,245,128,244,235,244,84,246,114,244,62,242,213,243,180,246,149,248,48,249,140,247,
46,243,43,238,217,235,217,235,117,236,227,237,128,239,233,242,114,249,236,253,163,253,115,251,242,249,160,251,131,254,95,254,
227,253,26,0,195,2,7,4,136,4,74,5,16,4,41,255,81,252,122,255,61,4,232,6,23,7,103,4,35,0,54,253,
202,252,67,254,46,1,89,3,31,2,77,0,159,2,8,8,124,11,33,11,158,10,151,11,51,11,189,9,253,8,233,7,
184,6,109,7,87,11,79,16,247,17,216,16,115,15,213,13,8,14,14,16,36,15,160,9,115,2,246,253,14,255,118,4,
206,9,80,11,80,11,251,13,176,16,45,17,64,17,66,17,18,18,193,17,246,12,196,8,224,8,88,9,17,9,71,8,
233,5,209,2,161,255,235,252,7,250,220,244,73,240,248,240,23,246,52,252,178,0,90,2,244,1,175,1,240,2,35,4,
88,3,67,2,70,3,189,4,35,4,7,2,172,253,246,245,33,240,95,240,40,243,207,244,97,244,67,243,66,244,162,246,
221,249,85,254,244,254,124,249,247,243,47,242,120,242,128,242,16,241,56,239,189,239,228,242,118,245,12,247,16,250,116,253,
131,255,88,255,124,252,20,252,56,0,35,2,156,0,7,255,164,251,127,246,95,243,140,243,129,245,74,247,214,248,246,249,
211,249,109,250,116,252,183,253,47,254,198,253,51,252,33,252,15,254,86,255,168,255,27,255,18,253,119,252,75,255,174,1,
169,1,244,1,63,3,0,5,166,6,232,5,45,4,100,5,148,8,175,11,175,15,175,20,160,24,54,25,67,22,67,18,
49,15,148,13,61,14,125,16,98,17,167,15,62,12,173,7,123,3,209,2,243,6,75,13,202,16,0,15,203,11,160,11,
83,13,248,13,234,13,105,13,212,10,231,7,103,7,196,7,148,8,0,10,3,8,62,2,72,253,33,251,150,251,148,252,
218,251,211,250,233,250,6,252,178,253,39,254,6,254,15,255,192,255,98,255,87,255,32,0,251,0,9,0,10,253,229,250,
169,251,73,253,26,252,223,248,227,246,55,246,172,246,112,248,21,249,79,247,48,244,217,241,236,242,135,246,197,249,84,252,
93,254,45,255,215,254,96,254,135,254,109,254,89,252,178,247,98,243,114,243,69,246,208,247,249,247,187,247,174,247,58,248,
88,249,3,252,147,254,30,254,160,252,203,251,43,251,226,251,66,252,105,249,206,245,82,245,224,247,157,250,106,251,187,249,
221,246,91,246,28,248,92,248,248,248,0,254,26,5,144,8,155,5,47,0,33,254,44,255,139,1,59,5,44,7,40,5,
90,2,170,1,183,1,71,0,139,254,101,255,17,2,21,3,63,2,239,2,213,6,11,12,240,14,119,13,231,9,46,7,
167,5,113,5,176,5,201,5,32,8,223,11,133,12,215,9,24,7,126,6,211,7,209,9,103,12,222,13,33,12,0,10,
197,9,116,9,243,7,203,5,63,4,65,5,26,8,57,9,211,6,222,2,48,0,245,255,253,0,229,0,173,0,100,3,
94,7,99,9,103,9,188,7,28,5,235,2,126,1,155,1,184,3,84,6,105,7,198,5,143,1,198,251,229,246,30,246,
233,248,58,252,220,254,87,0,54,0,41,255,60,254,252,252,229,249,46,246,204,244,27,246,62,248,16,248,86,244,146,240,
21,240,156,242,12,245,211,244,113,244,59,245,78,244,167,242,191,241,191,239,54,237,192,235,194,236,154,240,35,243,88,242,
58,241,143,241,99,243,76,245,152,246,251,249,239,254,247,0,119,255,133,253,244,252,58,253,248,253,30,0,27,3,129,4,
236,2,204,255,93,254,92,255,81,0,203,255,186,254,245,253,179,252,65,251,227,251,24,254,147,255,191,0,194,2,23,5,
103,6,163,6,127,7,136,8,117,7,122,4,141,1,120,0,1,2,16,5,56,7,135,6,164,4,40,4,43,4,126,4,
231,6,245,10,143,14,222,14,122,11,28,8,255,6,234,7,107,9,231,8,25,7,217,5,65,4,30,3,43,4,98,6,
123,7,181,6,213,5,137,4,59,1,240,254,11,255,94,255,82,0,64,0,159,252,35,249,70,249,226,251,87,254,88,253,
20,249,24,246,190,245,82,245,182,244,54,246,166,249,14,253,49,254,117,251,153,247,239,245,79,245,163,245,122,248,178,251,
18,252,97,249,193,245,114,242,249,238,179,236,174,237,27,241,232,243,10,243,234,240,145,242,57,245,109,244,17,243,54,244,
20,247,123,249,26,249,14,247,42,246,38,246,165,246,105,250,240,1,63,6,46,1,41,247,222,239,20,238,86,242,245,250,
32,4,247,10,230,12,250,9,215,6,65,6,82,6,150,5,22,5,139,4,74,1,188,252,0,253,25,2,179,5,248,6,
154,9,42,12,94,10,30,5,104,1,57,1,251,2,120,6,238,11,145,16,165,17,31,16,101,14,11,13,135,11,164,10,
87,11,50,13,172,15,106,17,250,16,75,16,205,16,102,15,137,10,205,5,130,4,129,5,39,6,26,7,34,9,112,9,
115,7,192,5,136,4,125,4,183,6,157,7,136,5,173,3,142,2,31,3,61,8,164,13,18,13,59,9,68,8,228,10,
32,13,233,11,180,7,87,2,154,254,102,254,81,255,67,255,83,255,251,255,178,0,198,255,0,252,119,248,240,247,222,249,
136,253,174,0,13,2,55,4,38,6,67,3,191,252,33,248,138,247,223,248,125,249,202,248,133,247,19,246,159,245,183,247,
162,249,164,247,212,244,128,245,179,248,96,252,93,254,164,253,159,252,86,251,178,248,93,248,185,252,89,3,191,8,77,9,
118,4,142,254,250,251,17,254,249,2,145,6,75,6,127,4,178,4,82,6,1,7,184,5,81,2,193,254,91,253,206,253,
236,254,134,255,193,255,236,0,187,0,20,253,254,248,184,246,121,246,160,248,1,251,38,252,235,253,61,0,205,0,79,255,
193,253,171,253,65,254,247,254,26,1,230,3,59,4,254,1,4,0,96,255,204,255,99,1,183,2,81,2,42,2,138,3,
146,3,195,1,148,1,138,2,244,1,158,1,243,2,66,4,58,5,130,5,89,4,192,2,100,1,253,0,231,1,125,2,
36,3,125,4,30,4,187,2,137,2,26,1,109,253,42,251,188,251,32,252,97,250,196,248,61,249,92,250,156,250,118,249,
91,247,192,246,134,248,4,250,38,250,80,251,54,254,162,255,224,253,84,252,111,254,43,2,188,2,116,255,163,252,234,253,
152,1,225,1,235,252,133,248,69,248,204,248,180,248,91,250,231,253,97,1,28,3,208,2,24,2,209,2,51,5,74,7,
96,7,207,6,253,6,84,6,8,4,27,2,150,1,71,1,182,0,242,255,28,254,165,252,78,254,88,1,227,2,139,3,
84,3,24,2,185,1,239,1,253,1,84,3,107,4,230,2,227,0,93,0,168,0,123,0,217,254,246,253,182,0,131,4,
120,5,118,3,19,255,72,249,45,246,197,249,203,1,226,6,26,5,146,0,128,255,188,0,254,254,4,252,243,251,3,253,
154,253,121,253,155,251,42,251,236,253,249,255,16,0,216,254,194,252,172,253,132,2,187,6,220,7,152,6,30,4,205,0,
80,253,142,252,164,254,203,255,32,255,209,253,235,252,132,253,15,253,202,249,83,248,234,250,193,253,72,255,225,0,251,1,
236,0,221,253,113,251,37,252,202,254,50,0,38,255,155,252,153,250,177,250,167,251,228,251,62,252,231,252,254,252,141,252,
6,251,51,249,215,249,117,251,253,250,221,250,38,253,106,255,93,0,113,0,2,0,252,255,54,0,20,0,222,0,2,3,
82,4,34,3,7,0,246,252,29,252,167,253,4,255,217,254,87,254,101,253,169,251,117,251,151,254,32,3,161,4,233,1,
222,255,67,1,107,3,103,5,128,7,200,8,157,9,177,9,253,7,73,5,98,2,20,0,26,255,213,254,124,255,127,1,
134,3,65,4,195,3,47,3,114,2,132,0,18,255,230,255,220,1,87,3,217,2,250,0,63,0,0,0,36,255,76,255,
73,0,239,0,137,1,86,1,142,255,48,254,130,255,243,1,95,2,0,1,94,255,242,253,191,253,151,254,52,255,241,255,
161,0,193,255,254,252,153,249,24,248,110,249,246,250,122,251,221,252,111,254,180,253,201,251,254,250,4,251,4,251,236,250,
119,251,134,253,75,255,181,254,120,253,23,253,204,252,97,252,209,251,109,251,103,252,95,254,135,255,123,255,128,255,186,0,
136,2,157,2,101,0,48,255,250,0,252,2,118,3,121,3,58,3,136,2,254,0,191,254,38,254,234,255,95,2,67,4,
247,3,44,2,241,1,220,2,54,3,189,3,48,5,28,7,33,8,173,7,231,6,184,5,150,3,1,2,116,2,201,4,
7,7,16,7,199,5,180,5,113,7,190,8,252,6,158,3,153,2,122,3,39,2,131,254,38,253,193,255,155,2,10,2,
209,254,248,252,191,253,212,253,73,252,185,251,105,252,9,253,158,253,123,254,20,255,110,254,40,253,178,252,69,253,187,254,
32,0,34,1,77,3,239,4,192,3,22,3,7,5,146,6,100,5,196,1,90,254,208,253,231,254,248,254,242,253,117,253,
234,253,24,254,14,254,148,254,225,254,221,254,199,255,203,1,227,2,172,0,67,253,102,253,182,0,164,3,222,4,165,4,
26,4,246,3,6,3,111,0,102,253,136,252,183,254,207,0,121,0,101,255,199,254,2,254,40,253,190,252,232,252,158,253,
217,254,77,0,217,0,221,255,163,254,74,254,237,253,233,252,106,252,166,252,2,252,122,250,236,249,236,250,115,252,113,253,
67,253,238,251,110,250,47,250,144,251,140,253,237,254,99,255,146,255,244,255,229,0,245,2,65,4,87,2,106,255,48,254,
0,254,197,254,58,0,48,1,62,2,146,2,173,0,42,255,219,255,131,0,254,255,72,255,204,254,34,254,212,253,222,254,
167,255,115,254,88,253,71,254,108,255,115,254,150,252,79,253,255,255,109,0,100,254,182,252,196,251,25,251,133,251,120,253,
172,255,156,0,214,0,51,1,230,0,1,0,128,255,18,255,201,254,189,255,127,1,96,2,249,1,82,1,52,1,83,1,
41,1,252,0,105,1,95,2,73,3,178,3,158,3,253,3,101,5,39,6,207,4,8,3,157,2,239,2,237,2,146,2,
209,2,155,3,156,2,243,255,82,255,61,1,213,2,241,2,81,2,19,2,12,2,98,1,208,1,6,4,236,4,33,4,
38,4,107,4,130,3,169,2,71,3,251,3,116,2,156,255,24,254,76,254,96,255,156,0,96,1,27,2,247,2,76,3,
83,3,5,3,192,1,54,0,158,255,249,255,6,0,234,254,204,253,101,253,68,252,87,250,116,249,18,250,92,251,192,252,
63,254,153,255,81,255,208,252,42,250,199,249,167,251,40,253,220,252,97,253,197,255,191,0,5,255,230,252,192,251,241,250,
242,249,186,249,201,250,143,251,103,251,101,251,160,251,158,251,222,251,111,252,173,252,232,252,70,253,87,253,51,254,183,255,
213,255,15,0,240,1,177,2,142,1,145,0,110,0,37,1,84,1,225,255,109,254,37,254,3,255,106,0,180,0,221,255,
89,255,231,255,71,1,3,2,171,1,91,1,48,1,107,1,68,2,151,2,114,2,198,2,52,3,224,2,170,1,133,0,
54,0,175,0,53,2,184,4,244,6,243,6,19,4,95,1,32,2,74,5,95,7,3,7,136,6,204,6,99,5,60,3,
166,2,21,2,15,1,86,0,187,254,160,252,153,251,114,251,47,251,143,250,105,250,187,250,47,251,222,252,214,254,5,255,
44,254,151,253,108,254,239,0,31,2,138,0,4,255,29,255,193,254,192,252,67,252,26,255,113,1,122,1,150,1,233,1,
151,1,207,0,63,255,55,254,196,255,87,2,173,2,157,0,197,254,206,254,55,0,134,1,86,1,136,255,191,253,131,253,
110,254,95,255,89,0,12,1,57,0,163,254,83,254,29,255,205,255,120,0,154,1,191,2,191,2,44,1,64,255,200,254,
170,255,18,0,225,255,129,0,180,1,67,2,191,1,155,0,254,255,51,0,75,0,235,255,239,254,40,253,253,251,241,252,
225,254,199,255,133,255,240,254,132,254,199,254,158,255,165,0,101,2,98,4,243,4,116,4,56,4,10,4,137,3,110,3,
99,4,113,5,215,4,220,2,63,1,123,0,12,0,134,255,40,255,185,255,183,0,255,0,73,1,172,2,127,4,103,5,
81,5,185,5,207,6,70,6,55,3,173,255,247,253,156,254,79,255,221,253,14,252,230,251,75,252,217,252,144,254,220,0,
110,2,14,3,88,3,177,3,189,3,116,3,39,3,53,2,83,0,85,254,15,253,72,253,87,254,254,253,143,252,62,252,
248,252,229,253,237,254,128,255,98,255,35,255,132,255,123,0,111,0,241,254,229,253,216,253,164,253,223,252,251,251,144,251,
106,251,237,250,82,250,18,250,100,250,102,251,209,252,161,253,167,252,245,250,18,251,161,252,207,253,145,254,243,254,230,254,
22,255,104,255,110,255,127,255,162,255,28,255,250,253,115,253,218,253,107,254,16,255,189,255,58,0,198,0,233,0,46,0,
129,255,147,255,7,0,94,0,172,0,29,1,226,0,181,255,103,255,223,0,234,1,247,0,136,255,34,255,217,255,40,1,
173,1,219,0,230,255,84,255,108,255,116,0,26,1,229,0,171,0,143,0,22,1,240,1,131,1,71,0,254,255,234,0,
178,1,4,1,2,0,89,0,95,1,254,1,176,1,162,0,12,0,240,255,97,255,249,254,98,255,168,255,206,254,194,253,
245,253,178,254,189,254,106,254,27,254,116,253,98,252,176,251,26,252,241,252,247,252,55,252,46,252,216,253,213,255,173,0,
251,0,75,1,87,1,18,1,138,0,46,0,64,0,43,0,109,255,92,254,151,253,158,252,226,250,191,249,6,250,205,250,
228,251,102,253,205,254,106,255,45,255,160,255,52,1,13,2,48,2,19,3,86,4,198,4,236,3,141,2,179,1,50,1,
129,0,72,255,219,253,49,253,191,252,46,252,206,252,86,254,101,255,111,255,103,254,227,253,45,255,90,1,235,3,2,6,
54,6,140,5,241,4,212,3,162,2,195,1,97,1,20,2,103,2,117,0,182,253,95,252,73,252,26,253,39,255,247,0,
207,0,226,255,191,255,69,0,89,1,13,2,125,1,123,1,2,3,226,3,177,2,113,0,211,254,135,254,243,254,185,255,
157,0,221,0,170,0,233,0,91,1,38,1,82,0,211,255,55,0,54,1,64,2,197,2,189,2,233,1,224,255,70,254,
179,254,22,0,186,1,121,3,15,4,172,3,94,3,182,2,8,2,154,2,142,3,229,2,44,1,208,0,230,1,104,2,
214,1,237,0,3,0,92,255,19,255,80,255,156,0,115,2,55,3,253,1,81,255,86,253,25,254,135,0,254,1,175,2,
24,4,250,4,37,3,153,255,85,253,201,252,131,252,215,252,213,253,169,253,117,252,62,252,92,253,2,255,148,0,27,1,
248,255,247,254,217,0,65,4,221,4,98,2,66,0,75,0,129,1,186,1,15,0,24,254,150,253,31,254,42,254,108,253,
250,252,119,253,117,254,162,255,6,1,33,2,148,2,121,3,92,5,110,6,92,5,216,2,224,255,118,253,220,252,205,254,
13,2,64,3,165,0,141,252,77,250,45,251,36,254,0,1,14,2,40,1,76,0,239,1,227,4,157,5,2,4,183,2,
110,2,40,2,128,1,6,1,70,1,76,1,36,0,7,255,234,254,68,255,236,255,130,0,111,0,74,0,183,0,117,1,
153,1,232,0,255,0,39,2,80,2,22,1,135,255,65,254,227,253,236,253,57,253,65,252,76,252,132,253,126,254,78,254,
52,254,221,254,95,255,207,255,215,0,63,2,28,3,93,2,163,0,30,0,0,1,41,1,153,255,193,253,130,253,210,254,
235,255,214,255,150,255,57,0,221,0,40,0,58,255,10,0,144,1,137,1,252,255,85,254,31,254,185,255,31,1,21,1,
14,1,240,1,189,2,123,2,139,1,55,1,221,1,59,2,235,0,161,254,229,253,211,254,172,254,49,253,239,252,34,254,
15,254,129,251,170,248,185,247,145,248,65,250,203,251,93,252,61,252,113,252,120,253,15,255,161,0,31,1,218,255,14,254,
253,252,94,252,247,251,62,251,26,250,39,250,84,251,95,252,170,253,240,254,173,255,163,0,135,1,157,1,1,1,83,0,
31,1,55,3,224,3,1,2,40,255,68,253,251,252,156,253,209,254,47,0,102,0,125,255,194,254,166,254,89,255,62,1,
50,3,50,3,17,2,164,2,72,4,199,3,63,1,122,255,50,255,40,255,251,254,29,255,106,255,133,255,131,255,184,255,
92,0,11,1,78,1,75,1,34,1,223,0,134,0,208,255,33,255,69,255,203,255,214,255,16,255,240,253,85,254,248,0,
116,3,50,4,21,4,176,3,45,3,221,2,124,2,238,1,24,1,146,255,156,253,177,251,151,250,190,250,108,250,53,249,
223,249,181,252,231,254,150,255,223,255,193,0,130,2,35,4,200,3,168,0,68,253,100,253,106,0,132,2,223,2,131,2,
0,1,237,254,20,254,62,254,97,254,128,254,192,254,116,255,162,0,93,1,91,1,72,1,156,1,71,2,164,2,121,2,
69,2,229,1,17,1,91,0,74,0,167,0,204,0,153,0,161,0,118,1,202,2,44,3,21,2,236,0,71,0,206,255,
189,255,67,255,163,253,170,252,127,253,118,254,21,254,192,252,147,251,215,251,79,254,105,1,22,2,160,255,95,253,119,254,
15,1,49,2,175,2,45,3,235,2,7,3,201,3,189,3,247,2,210,1,99,0,158,255,152,255,239,255,207,0,184,1,
248,1,216,1,34,2,24,3,48,4,142,4,245,3,119,3,110,3,116,2,4,1,204,0,243,0,147,0,59,0,43,0,
151,0,244,0,85,0,191,255,149,0,119,2,138,3,230,1,164,254,233,253,91,1,119,4,226,2,208,255,167,255,68,0,
97,255,245,254,81,0,99,2,115,3,179,2,35,1,22,0,240,255,95,0,12,1,220,1,112,1,163,254,205,251,91,251,
197,251,92,251,100,251,112,252,232,252,172,252,231,252,46,253,38,253,104,253,128,253,170,252,51,251,44,250,161,250,242,251,
76,252,90,251,209,250,60,252,165,254,2,0,138,0,99,1,69,2,216,2,55,3,239,2,205,1,206,0,216,0,200,0,
4,255,141,252,153,251,159,252,35,254,71,254,113,253,186,253,150,254,46,254,216,253,79,255,34,1,167,1,60,1,129,0,
181,255,89,255,116,255,107,255,92,255,117,255,4,255,246,253,161,252,228,250,13,250,103,251,125,253,60,255,230,0,67,1,
78,0,165,0,183,2,120,4,195,4,182,3,154,2,128,2,18,2,119,0,205,255,170,1,200,4,129,6,115,5,158,3,
151,3,140,4,193,4,70,4,120,3,208,2,182,2,112,2,171,1,13,1,122,0,153,255,241,254,233,254,224,254,96,254,
191,254,80,1,95,4,104,5,121,4,192,2,35,1,196,0,184,1,84,2,161,1,135,0,243,255,181,255,93,255,218,254,
11,254,64,253,233,253,58,0,196,1,105,1,6,1,121,1,220,1,184,1,183,0,234,254,92,253,217,252,112,253,199,254,
130,0,69,2,247,2,236,1,31,0,69,255,171,0,239,2,175,2,79,0,110,255,142,0,255,0,144,255,71,254,18,255,
188,0,91,1,150,0,131,255,148,255,220,255,40,255,67,255,142,0,45,1,45,1,166,0,255,254,139,253,170,253,130,254,
213,254,86,255,235,0,55,2,100,2,94,2,104,2,221,2,233,3,86,4,217,3,227,2,69,1,45,255,241,252,79,251,
128,251,41,253,192,254,62,255,215,254,220,254,76,255,211,254,35,254,250,254,182,0,72,1,93,0,121,255,136,255,231,255,
139,255,175,254,31,255,229,0,33,1,255,254,255,252,70,252,27,252,121,252,140,253,80,255,212,1,124,3,143,2,238,0,
255,0,76,1,232,255,218,253,24,253,29,254,4,255,114,253,186,250,161,250,33,253,138,254,185,253,5,253,209,253,87,255,
206,0,206,1,163,1,166,0,133,0,75,1,143,1,88,1,200,0,40,255,249,252,52,251,105,250,17,251,14,252,124,251,
131,249,52,248,115,249,125,252,169,254,116,255,237,255,25,0,21,0,139,255,132,253,54,252,139,254,48,2,12,3,242,0,
18,254,113,251,16,249,121,248,143,251,52,0,157,2,209,2,161,2,206,1,190,255,217,253,141,253,254,253,62,254,159,254,
253,254,125,255,32,0,189,255,195,254,97,254,61,254,80,254,165,254,77,255,102,0,38,0,156,254,141,254,97,255,164,255,
140,0,255,1,231,2,101,3,2,4,238,4,145,4,68,2,19,1,221,1,88,1,203,254,245,252,64,253,10,255,75,1,
204,2,255,2,187,2,107,2,168,1,248,0,99,1,129,2,155,2,12,1,43,255,65,254,199,254,132,0,9,2,53,2,
98,1,77,0,189,255,26,0,16,1,38,2,235,2,118,3,66,4,7,5,254,4,4,4,33,3,25,3,44,3,181,2,
128,1,127,255,19,254,19,254,186,254,8,0,102,1,73,1,133,0,140,1,216,4,116,7,77,6,203,2,63,0,159,255,
126,0,179,1,170,1,13,0,10,254,175,253,47,255,195,255,141,254,18,254,150,255,233,1,12,3,180,1,70,255,83,254,
75,255,1,1,19,2,169,1,126,0,131,255,66,254,139,252,134,251,35,252,193,253,55,255,116,0,15,1,237,255,103,254,
185,254,30,0,186,0,99,0,79,0,203,0,83,0,88,255,196,255,63,0,117,255,222,254,236,254,78,255,14,0,128,0,
167,0,103,0,72,255,246,254,127,0,242,1,234,1,57,1,147,1,255,2,39,3,138,1,61,0,252,255,233,255,96,255,
245,254,12,0,3,2,114,2,156,0,46,254,205,253,173,255,169,0,213,255,75,255,77,255,58,255,187,255,205,0,100,1,
218,0,149,255,123,254,186,253,79,253,158,253,184,254,30,0,0,1,9,1,158,0,230,255,66,255,102,255,12,0,123,0,
141,0,131,0,156,0,248,0,201,1,147,2,6,2,36,0,139,254,71,254,255,254,203,255,242,255,209,254,44,253,80,253,
22,255,245,255,115,255,126,254,160,253,139,253,105,254,13,0,225,1,87,2,55,1,14,0,128,255,3,255,62,254,154,253,
153,253,27,254,188,254,27,255,20,255,234,254,172,254,33,254,163,253,74,254,58,0,93,1,169,0,94,0,162,1,102,2,
133,1,106,0,252,255,115,255,179,254,143,254,14,255,208,255,168,0,44,1,221,0,221,255,145,255,200,0,224,1,135,1,
239,0,161,1,10,3,59,3,103,2,105,2,233,2,162,2,77,1,88,255,155,254,122,255,116,255,35,254,172,253,183,254,
12,0,102,0,233,255,142,255,207,255,233,0,64,2,174,2,169,2,239,2,203,2,231,1,243,0,245,255,139,254,223,253,
37,255,97,0,118,255,61,254,100,254,93,254,222,253,146,254,9,0,211,0,160,0,103,255,40,254,123,254,52,0,221,1,
32,2,191,0,235,254,23,254,37,255,90,1,206,2,22,3,38,2,126,255,118,252,224,250,67,251,227,252,2,254,176,254,
217,255,84,0,77,255,76,253,231,251,242,252,227,254,181,255,216,255,218,254,133,253,214,253,65,254,4,254,7,255,116,0,
102,0,55,255,60,254,169,254,59,0,55,1,151,0,84,255,255,254,87,255,35,255,126,254,88,254,230,254,120,255,153,255,
96,255,158,254,196,253,58,254,46,0,254,1,14,2,7,1,223,0,88,1,125,1,125,2,46,4,121,3,218,255,103,253,
127,254,78,0,26,0,255,254,198,254,217,254,183,253,75,252,73,252,214,252,77,253,85,254,248,254,250,254,214,255,37,1,
150,1,81,1,57,1,48,2,231,3,135,4,227,2,249,255,212,253,126,253,44,254,45,254,26,253,72,252,73,252,154,252,
149,253,139,255,175,1,42,3,208,3,21,4,154,4,120,5,229,5,222,4,253,2,191,1,202,0,55,255,232,253,238,253,
240,254,42,0,87,1,25,2,1,2,36,1,214,255,235,254,92,255,137,0,253,0,122,0,233,255,51,0,4,1,98,1,
75,1,99,1,192,1,117,1,209,255,31,254,251,253,221,254,243,254,133,253,35,252,36,252,206,252,218,253,189,255,129,1,
235,1,23,1,113,0,93,1,230,2,178,2,201,0,220,255,198,0,17,1,184,255,165,254,6,255,65,0,232,0,69,0,
176,255,235,255,229,255,186,255,71,0,182,0,7,0,229,254,56,254,153,254,128,0,188,1,141,255,207,252,101,253,229,254,
85,254,131,253,41,254,75,255,132,0,61,2,55,3,254,2,174,3,168,5,180,6,142,5,186,2,254,255,201,254,171,254,
247,254,133,255,12,0,53,0,146,255,96,254,113,253,123,253,44,255,189,1,67,3,8,3,2,1,83,254,253,253,219,0,
240,3,74,4,16,2,162,255,145,254,168,254,84,255,26,0,67,0,49,255,102,253,80,252,181,252,64,254,198,255,39,0,
196,255,170,255,188,255,252,254,196,253,113,254,52,1,173,2,121,1,92,255,157,253,151,252,142,252,223,253,251,255,42,1,
119,1,112,1,248,255,66,254,203,254,71,0,94,0,151,255,117,255,59,0,246,0,139,0,26,255,131,254,185,255,8,1,
96,1,136,1,17,2,36,3,237,3,158,3,34,3,37,2,172,255,242,253,225,254,161,0,182,0,1,255,173,253,49,254,
124,255,18,0,244,255,162,0,151,2,187,3,19,3,245,1,239,0,30,0,181,255,32,255,204,254,238,255,154,1,186,1,
133,0,236,255,68,0,176,0,96,1,145,2,220,3,213,4,202,4,232,3,152,3,7,4,230,3,149,2,172,0,22,255,
131,254,52,255,183,0,65,2,80,3,77,3,167,1,5,255,178,253,76,255,247,1,40,3,163,3,69,4,171,3,86,1,
90,254,158,252,151,253,139,255,61,0,78,0,159,0,7,1,25,1,87,0,200,255,131,0,208,1,88,3,116,4,50,3,
55,0,168,254,78,255,24,0,105,255,212,253,152,252,203,251,64,251,78,251,234,251,112,252,159,252,2,253,210,253,7,254,
81,253,49,253,113,254,0,0,99,0,233,254,36,253,76,253,95,254,245,253,231,251,194,249,165,249,7,252,71,254,22,255,
174,255,233,255,163,255,37,0,23,1,57,1,219,0,192,0,251,0,16,1,141,0,244,255,229,255,243,255,179,255,150,255,
255,255,223,0,15,2,160,2,57,1,139,254,78,253,104,254,230,255,172,0,119,1,187,1,68,0,101,254,79,254,211,255,
36,1,114,1,149,1,212,1,29,1,212,255,184,255,170,0,153,1,132,2,3,3,63,2,197,0,153,255,0,255,237,254,
10,255,56,255,162,255,101,255,172,253,199,251,114,251,109,252,115,253,10,254,10,254,10,253,62,252,144,253,205,255,85,0,
250,254,243,252,85,251,223,250,55,251,225,251,61,253,28,255,92,0,119,0,219,255,167,254,222,252,194,251,219,252,156,255,
166,1,145,1,92,0,222,255,145,0,89,1,61,1,214,0,12,1,156,1,190,1,142,0,34,254,162,252,126,253,116,255,
0,1,169,1,178,1,207,1,243,1,163,1,45,1,45,1,200,1,99,2,133,2,21,3,67,4,29,4,167,1,131,254,
232,252,166,253,98,255,11,0,166,255,197,255,134,0,80,0,213,254,133,254,181,0,192,2,62,2,140,0,189,255,242,255,
179,0,213,1,180,2,109,2,101,1,19,1,225,1,179,2,111,2,47,1,254,255,181,255,96,0,232,0,15,0,214,254,
80,255,29,1,54,2,207,1,213,0,182,0,179,1,125,2,244,1,255,0,66,1,12,2,124,1,166,255,178,253,199,252,
206,253,173,255,150,0,83,0,106,255,218,254,115,255,95,0,164,0,55,0,108,255,78,255,1,0,179,255,189,253,242,251,
240,251,75,253,194,254,68,0,68,2,113,3,7,2,173,254,253,251,195,251,58,253,139,254,94,255,40,0,211,0,62,1,
234,0,113,255,21,254,56,254,100,255,122,0,235,0,104,0,250,254,204,253,228,253,97,254,142,254,54,255,237,255,91,255,
29,254,152,253,179,253,192,253,205,253,6,254,13,254,226,253,17,254,191,254,220,255,53,1,10,2,238,1,78,1,176,0,
136,0,45,1,245,1,219,1,47,1,59,0,160,254,167,253,110,254,29,255,83,254,92,253,241,253,89,0,75,2,156,1,
240,255,74,255,185,254,116,253,29,252,129,251,160,252,35,255,224,0,148,1,161,2,8,3,234,1,102,1,113,2,220,3,
37,5,108,5,211,3,117,1,133,255,113,254,31,255,86,1,246,2,255,2,123,2,154,1,177,255,191,253,64,253,213,253,
112,254,205,254,218,254,63,254,159,253,118,254,104,0,211,1,116,2,161,2,196,2,121,3,22,4,190,3,48,3,26,3,
30,3,238,2,249,2,151,3,219,3,248,2,166,1,142,0,218,255,226,255,117,0,245,0,221,0,16,0,126,255,13,0,
81,1,90,2,190,2,212,2,240,2,146,2,134,1,76,0,43,255,187,254,132,255,153,0,210,0,67,0,104,255,87,254,
28,253,121,252,30,253,58,254,207,254,4,255,229,254,163,254,153,255,31,2,201,3,246,2,51,2,55,4,248,6,146,6,
251,2,165,255,85,254,46,253,142,250,49,248,179,248,101,251,193,252,245,251,227,251,46,253,198,253,194,253,184,254,105,1,
99,5,65,8,61,8,57,7,6,7,74,6,239,3,227,0,236,253,120,251,217,249,178,248,10,248,2,248,155,247,192,246,
7,247,75,249,149,252,97,255,186,1,125,4,191,6,128,7,90,7,93,6,82,4,53,2,246,0,61,0,192,254,123,252,
64,251,118,251,122,251,236,250,28,251,133,252,39,254,155,255,94,1,52,3,134,4,211,4,129,3,138,1,175,0,128,0,
154,255,116,254,25,254,25,254,145,253,191,252,76,252,104,252,253,252,237,253,51,255,134,0,127,1,73,2,16,3,164,3,
205,3,243,2,235,0,19,255,201,254,192,255,223,0,140,1,133,1,194,0,253,255,177,255,99,255,230,254,166,254,20,255,
34,0,159,0,227,255,85,255,43,0,105,1,87,1,60,0,12,0,250,0,127,1,145,1,205,1,120,1,123,0,24,0,
116,0,248,0,237,1,176,2,216,1,250,255,124,254,223,253,6,254,209,253,231,252,145,252,232,252,30,253,34,253,175,252,
42,252,252,252,242,254,85,0,225,0,241,1,188,3,191,4,89,4,123,3,190,2,11,2,87,1,233,0,249,0,38,1,
152,0,60,255,93,254,239,254,237,255,67,0,202,0,90,2,181,3,60,3,115,1,37,0,15,0,166,0,203,0,242,255,
23,255,1,255,26,255,193,254,208,253,1,253,177,253,140,255,161,0,60,0,160,255,53,0,134,1,242,1,94,1,85,1,
74,2,252,2,240,2,35,3,175,3,173,3,197,2,254,0,121,255,235,255,99,1,171,1,20,1,169,0,209,255,52,254,
199,252,120,252,4,253,146,253,52,254,88,255,3,0,225,254,201,252,1,252,80,253,64,255,43,0,28,0,33,0,177,0,
84,1,139,1,160,1,223,1,158,1,174,0,24,0,26,0,57,0,135,0,246,0,161,1,7,2,87,0,29,254,192,254,
160,255,202,253,206,252,147,253,217,252,30,252,128,253,104,254,148,253,198,252,228,252,171,253,68,254,24,254,64,254,202,255,
82,1,65,1,122,0,226,255,37,255,21,255,63,0,240,0,117,0,67,0,154,0,69,0,183,255,96,0,240,0,70,255,
34,253,64,253,165,254,51,255,112,255,116,0,168,0,82,254,135,251,58,251,22,253,110,255,62,1,104,1,17,0,85,255,
235,255,71,0,164,255,203,254,16,255,226,0,108,2,148,2,227,2,151,3,128,3,202,2,245,1,87,1,249,0,80,0,
191,255,105,255,103,254,25,253,105,252,180,252,218,253,115,254,56,254,152,254,134,255,146,0,189,1,178,1,20,0,208,254,
54,255,153,0,56,1,59,0,213,254,102,254,189,254,240,254,182,254,109,254,150,254,127,255,209,0,202,1,26,2,188,1,
211,0,33,0,95,0,1,1,193,0,197,255,20,255,33,254,141,252,27,252,155,253,140,255,194,0,149,1,148,2,92,3,
115,3,53,3,203,2,76,2,64,2,88,2,195,1,166,0,175,255,62,255,51,255,57,255,57,255,65,255,82,255,36,255,
172,254,228,254,181,255,73,255,226,253,147,253,75,254,38,255,92,0,126,1,169,1,72,1,118,1,89,2,204,2,36,2,
56,1,162,0,1,0,67,255,117,254,171,253,149,253,55,254,175,254,22,255,218,255,55,0,183,255,28,255,15,255,142,255,
65,0,209,0,13,1,175,0,38,0,114,0,65,1,151,1,154,1,163,1,81,1,96,0,109,255,66,255,132,255,157,255,
248,255,186,0,94,1,113,1,213,0,69,0,56,0,45,0,25,0,231,255,75,255,245,254,12,255,247,254,251,254,61,255,
120,255,193,255,196,255,133,255,240,255,9,1,192,1,229,1,65,2,188,2,172,2,101,2,94,2,141,2,39,3,200,3,
91,3,175,1,222,255,86,255,6,0,110,0,15,0,93,255,116,254,31,254,54,255,179,0,52,1,25,1,41,1,38,1,
211,0,198,0,145,1,135,2,112,2,233,1,43,2,58,2,109,1,21,1,40,1,120,0,105,255,217,254,10,255,161,255,
169,255,238,254,110,254,161,254,251,254,50,255,150,255,230,255,131,255,239,254,51,255,93,0,103,1,88,1,152,0,89,0,
121,0,6,0,115,255,233,255,18,1,151,1,48,1,139,0,222,255,41,255,193,254,140,254,27,254,200,253,252,253,69,254,
64,254,221,253,34,253,186,252,9,253,108,253,204,253,150,254,131,255,57,0,90,0,150,255,19,255,195,255,251,255,241,254,
175,254,200,255,152,0,165,0,134,0,151,0,183,0,53,0,66,255,25,255,152,255,193,255,190,255,6,0,109,0,244,0,
69,1,131,0,86,255,74,255,236,255,21,0,217,255,92,255,182,254,26,254,147,253,199,253,204,254,144,255,237,255,125,0,
46,1,154,1,190,1,31,2,117,2,213,1,210,0,68,0,213,255,159,255,158,255,69,255,26,255,157,255,10,0,198,255,
243,254,44,254,63,254,79,255,158,0,91,1,9,1,199,255,151,254,53,254,73,254,122,254,144,254,67,254,31,254,148,254,
28,255,90,255,19,255,32,254,106,253,30,254,231,255,48,1,119,1,161,1,120,1,121,0,4,0,197,0,111,1,178,1,
37,2,14,2,166,0,50,255,51,255,210,255,102,255,249,253,12,253,156,253,153,254,147,254,3,254,205,253,6,254,159,254,
59,255,226,255,24,1,73,2,178,2,114,2,182,1,224,0,119,0,73,0,240,255,165,255,0,0,224,0,88,1,41,1,
232,0,230,0,35,1,69,1,30,1,103,1,143,2,205,3,224,3,70,2,28,0,200,254,82,254,28,254,118,253,12,252,
241,250,82,251,154,252,168,253,95,254,18,255,200,255,160,0,217,1,21,3,178,3,228,3,115,4,122,5,171,5,221,3,
93,1,65,0,77,0,206,255,65,254,168,252,228,251,251,251,139,252,249,252,67,253,18,254,203,254,160,254,211,254,54,0,
94,1,79,1,167,0,74,0,170,0,87,1,65,1,155,0,224,0,104,1,45,0,203,254,23,0,88,2,206,2,154,2,
48,3,127,3,240,2,6,2,214,0,87,0,9,1,210,0,110,255,14,255,53,255,152,254,212,253,233,252,134,252,18,254,
37,0,26,1,190,1,83,2,73,2,245,1,216,1,89,2,150,3,87,4,82,3,100,1,74,0,93,0,226,0,211,0,
170,255,49,254,8,253,211,251,35,251,53,252,179,254,221,0,120,1,238,0,124,0,144,0,172,0,128,0,72,0,33,0,
136,255,30,254,141,252,191,251,218,251,175,252,59,254,191,255,213,255,160,254,24,254,41,255,136,0,207,0,103,0,127,0,
1,1,246,0,252,255,131,254,148,253,249,253,68,255,131,0,237,0,29,0,226,254,63,254,225,253,119,253,168,253,173,254,
148,255,93,255,159,254,162,254,24,255,77,255,208,255,223,0,154,1,105,1,200,0,140,0,231,0,195,1,201,2,16,3,
126,2,190,1,202,0,215,255,92,255,68,255,215,255,183,0,120,0,147,255,184,255,113,0,140,0,153,0,113,1,93,2,
40,2,250,0,253,255,199,255,54,0,231,0,58,1,228,0,91,0,30,0,71,0,130,0,110,0,82,0,95,0,113,0,
211,0,38,1,210,0,77,0,182,255,101,255,178,255,24,255,215,253,49,254,46,255,60,255,203,254,238,253,125,253,38,254,
228,254,227,255,250,0,234,0,144,0,125,0,203,255,44,255,122,255,91,0,45,1,239,0,10,0,234,255,254,255,150,255,
146,255,13,0,177,0,105,1,119,1,14,1,8,1,191,0,48,0,93,0,25,1,66,2,87,3,193,2,8,1,228,255,
131,255,128,255,46,255,167,254,224,254,65,255,131,255,11,0,134,255,19,254,158,253,28,254,212,254,74,255,243,254,141,254,
189,254,98,255,66,0,84,0,161,255,159,255,255,255,230,255,237,255,70,0,179,0,72,1,114,1,2,1,234,0,59,1,
69,1,62,1,85,1,34,1,175,0,83,0,14,0,145,255,223,254,166,254,233,254,253,254,16,255,144,255,107,0,8,1,
152,0,237,255,60,0,138,0,21,0,186,255,226,255,126,0,218,0,193,255,225,253,221,252,190,252,250,252,119,253,201,253,
193,253,211,253,238,253,191,253,227,253,187,254,127,255,243,255,168,0,99,1,136,1,75,1,4,1,153,0,93,0,222,0,
143,1,82,1,78,0,217,255,94,0,179,0,31,0,147,255,83,0,11,2,248,2,141,2,245,1,169,1,137,1,180,1,
153,1,11,1,243,0,118,1,245,1,3,2,180,1,137,1,85,1,195,0,125,0,181,0,220,0,223,0,237,0,39,1,
82,1,185,0,111,255,91,254,254,253,52,254,148,254,206,254,180,254,103,254,104,254,217,254,84,255,211,255,125,0,33,1,
159,1,8,2,51,2,238,1,86,1,179,0,84,0,60,0,223,255,51,255,6,255,86,255,106,255,104,255,179,255,226,255,
219,255,132,0,12,2,237,2,8,2,35,0,231,254,62,255,42,0,58,0,202,255,159,255,146,255,211,255,90,0,118,0,
38,0,205,255,192,255,86,0,240,0,194,0,120,0,246,0,205,1,10,2,129,1,246,0,251,0,80,1,107,1,246,0,
5,0,244,254,255,253,75,253,57,253,242,253,179,254,206,254,254,254,247,255,235,0,25,1,19,1,51,1,20,1,218,0,
208,0,109,0,102,255,135,254,81,254,107,254,162,254,246,254,22,255,216,254,115,254,245,253,154,253,228,253,136,254,193,254,
186,254,9,255,143,255,172,255,17,255,166,254,112,255,162,0,210,0,24,0,79,255,228,254,205,254,241,254,46,255,27,255,
214,254,5,255,82,255,75,255,125,255,220,255,230,255,9,0,129,0,196,0,192,0,173,0,95,0,5,0,50,0,179,0,
223,0,150,0,20,0,203,255,226,255,176,255,13,255,191,254,226,254,6,255,40,255,86,255,103,255,104,255,112,255,54,255,
205,254,205,254,24,255,76,255,145,255,246,255,147,0,47,1,201,0,80,255,45,254,122,254,185,255,132,0,216,0,158,1,
6,2,56,1,45,0,100,255,141,254,71,254,31,255,51,0,149,0,216,0,110,1,105,1,148,0,252,255,47,0,232,0,
118,1,90,1,217,0,115,0,129,0,5,1,121,1,215,1,131,2,208,2,238,1,190,0,133,0,241,0,32,1,243,0,
148,0,79,0,90,0,64,0,162,255,225,254,142,254,184,254,214,254,230,254,118,255,85,0,21,1,116,1,221,0,190,255,
67,255,43,255,7,255,155,255,180,0,234,0,44,0,145,255,155,255,43,0,230,0,95,1,101,1,251,0,132,0,83,0,
29,0,4,0,98,0,150,0,89,0,44,0,212,255,57,255,39,255,172,255,251,255,3,0,135,0,162,1,139,2,201,2,
155,2,69,2,124,1,16,0,194,254,75,254,119,254,207,254,226,254,172,254,121,254,58,254,68,254,11,255,168,255,147,255,
19,0,143,1,77,2,204,1,189,1,8,2,19,1,4,0,94,0,171,0,205,255,210,254,114,254,73,254,43,254,118,254,
249,254,8,255,169,254,75,254,89,254,8,255,167,255,162,255,121,255,171,255,11,0,250,255,48,255,65,254,215,253,46,254,
233,254,71,255,89,255,170,255,68,0,246,0,114,1,119,1,248,0,20,0,133,255,177,255,235,255,238,255,247,255,167,255,
172,254,99,253,144,252,178,252,118,253,64,254,221,254,62,255,94,255,129,255,188,255,206,255,6,0,196,0,125,1,1,2,
151,2,181,2,233,1,180,0,249,255,43,0,133,0,72,0,240,255,188,255,151,255,200,255,245,255,235,255,108,0,116,1,
10,2,225,1,95,1,214,0,124,0,84,0,25,0,160,255,10,255,156,254,162,254,10,255,120,255,152,255,63,255,216,254,
208,254,221,254,222,254,16,255,109,255,206,255,205,255,60,255,164,254,134,254,12,255,197,255,193,255,61,255,45,255,163,255,
102,0,38,1,92,1,49,1,252,0,178,0,177,0,115,1,119,2,213,2,125,2,168,1,122,0,209,255,18,0,103,0,
136,0,196,0,220,0,132,0,233,255,130,255,151,255,1,0,148,0,240,0,231,0,31,1,141,1,99,1,177,0,233,255,
38,255,210,254,58,255,206,255,249,255,2,0,29,0,254,255,235,255,88,0,242,0,122,1,8,2,97,2,88,2,40,2,
234,1,99,1,165,0,52,0,20,0,223,255,174,255,166,255,142,255,86,255,59,255,121,255,242,255,57,0,63,0,109,0,
201,0,209,0,120,0,79,0,110,0,123,0,97,0,11,0,104,255,175,254,23,254,229,253,40,254,92,254,77,254,94,254,
161,254,208,254,224,254,252,254,79,255,231,255,152,0,26,1,86,1,79,1,7,1,224,0,52,1,80,1,130,0,149,255,
111,255,133,255,50,255,186,254,157,254,40,255,252,255,58,0,247,255,14,0,145,0,214,0,144,0,71,0,113,0,134,0,
27,0,187,255,191,255,234,255,4,0,231,255,174,255,158,255,173,255,201,255,21,0,147,0,1,1,49,1,76,1,95,1,
53,1,225,0,136,0,18,0,182,255,196,255,0,0,13,0,241,255,228,255,219,255,161,255,104,255,99,255,73,255,39,255,
63,255,98,255,153,255,11,0,84,0,41,0,155,255,1,255,252,254,163,255,93,0,179,0,107,0,229,255,207,255,226,255,
164,255,120,255,138,255,167,255,237,255,56,0,60,0,32,0,244,255,172,255,134,255,157,255,235,255,107,0,202,0,255,0,
80,1,143,1,160,1,157,1,105,1,61,1,65,1,38,1,14,1,25,1,229,0,104,0,209,255,73,255,30,255,60,255,
116,255,221,255,81,0,137,0,105,0,15,0,186,255,116,255,74,255,77,255,69,255,96,255,189,255,205,255,167,255,201,255,
225,255,174,255,109,255,52,255,25,255,46,255,103,255,197,255,21,0,50,0,59,0,39,0,3,0,55,0,204,0,33,1,
196,0,33,0,194,255,132,255,50,255,232,254,165,254,101,254,83,254,132,254,201,254,227,254,205,254,159,254,107,254,69,254,
94,254,245,254,208,255,72,0,98,0,143,0,173,0,152,0,128,0,95,0,85,0,150,0,206,0,164,0,57,0,198,255,
83,255,227,254,187,254,231,254,13,255,43,255,107,255,147,255,137,255,153,255,239,255,49,0,6,0,190,255,200,255,36,0,
117,0,73,0,231,255,209,255,189,255,175,255,249,255,5,0,179,255,190,255,27,0,90,0,126,0,166,0,202,0,211,0,
205,0,190,0,140,0,84,0,23,0,203,255,173,255,189,255,224,255,23,0,48,0,22,0,235,255,221,255,31,0,100,0,
108,0,113,0,68,0,199,255,97,255,37,255,30,255,101,255,166,255,186,255,213,255,219,255,154,255,97,255,135,255,201,255,
233,255,2,0,254,255,241,255,52,0,189,0,53,1,82,1,1,1,162,0,124,0,109,0,70,0,12,0,241,255,236,255,
196,255,146,255,148,255,196,255,233,255,3,0,54,0,56,0,1,0,18,0,54,0,59,0,137,0,190,0,119,0,74,0,
95,0,87,0,37,0,248,255,20,0,70,0,23,0,178,255,137,255,178,255,244,255,13,0,34,0,81,0,90,0,74,0,
69,0,7,0,163,255,175,255,28,0,87,0,100,0,115,0,97,0,66,0,41,0,250,255,220,255,12,0,104,0,108,0,
233,255,103,255,33,255,6,255,70,255,157,255,203,255,12,0,42,0,23,0,14,0,193,255,98,255,120,255,169,255,174,255,
158,255,107,255,88,255,177,255,61,0,155,0,171,0,145,0,100,0,50,0,32,0,27,0,33,0,81,0,117,0,99,0,
64,0,26,0,227,255,161,255,119,255,107,255,92,255,82,255,120,255,196,255,242,255,218,255,192,255,207,255,234,255,30,0,
53,0,229,255,173,255,245,255,92,0,129,0,62,0,204,255,153,255,160,255,179,255,212,255,199,255,108,255,16,255,22,255,
128,255,225,255,229,255,181,255,172,255,247,255,61,0,32,0,244,255,19,0,101,0,139,0,32,0,116,255,59,255,111,255,
232,255,132,0,181,0,126,0,88,0,48,0,234,255,141,255,73,255,149,255,47,0,98,0,65,0,54,0,119,0,212,0,
195,0,67,0,208,255,129,255,53,255,252,254,231,254,247,254,58,255,158,255,232,255,30,0,87,0,124,0,197,0,23,1,
0,1,191,0,134,0,57,0,44,0,57,0,26,0,41,0,66,0,33,0,1,0,223,255,210,255,1,0,43,0,46,0,
249,255,176,255,190,255,7,0,67,0,108,0,134,0,187,0,241,0,217,0,134,0,51,0,37,0,110,0,165,0,132,0,
40,0,240,255,31,0,90,0,116,0,151,0,139,0,77,0,52,0,90,0,142,0,120,0,79,0,132,0,178,0,144,0,
70,0,222,255,179,255,216,255,220,255,210,255,199,255,141,255,89,255,91,255,130,255,175,255,205,255,245,255,45,0,96,0,
148,0,181,0,187,0,178,0,139,0,81,0,34,0,36,0,88,0,117,0,113,0,89,0,2,0,165,255,144,255,137,255,
121,255,148,255,186,255,186,255,189,255,234,255,21,0,14,0,219,255,184,255,208,255,248,255,7,0,253,255,209,255,186,255,
237,255,15,0,7,0,29,0,43,0,6,0,212,255,168,255,132,255,124,255,137,255,138,255,132,255,157,255,192,255,170,255,
118,255,116,255,141,255,136,255,124,255,113,255,74,255,59,255,103,255,139,255,134,255,123,255,129,255,156,255,193,255,228,255,
243,255,244,255,247,255,235,255,211,255,188,255,150,255,157,255,220,255,235,255,222,255,228,255,190,255,159,255,201,255,225,255,
209,255,216,255,253,255,57,0,112,0,105,0,74,0,87,0,113,0,123,0,145,0,148,0,120,0,107,0,113,0,104,0,
53,0,253,255,18,0,53,0,31,0,28,0,51,0,61,0,66,0,48,0,42,0,68,0,80,0,111,0,141,0,116,0,
114,0,125,0,92,0,69,0,56,0,26,0,16,0,26,0,49,0,70,0,65,0,68,0,89,0,93,0,83,0,86,0,
106,0,106,0,73,0,49,0,38,0,2,0,227,255,243,255,16,0,9,0,245,255,235,255,228,255,246,255,34,0,63,0,
88,0,105,0,96,0,99,0,90,0,31,0,251,255,253,255,224,255,190,255,186,255,172,255,140,255,118,255,113,255,118,255,
122,255,127,255,159,255,205,255,218,255,210,255,236,255,31,0,53,0,49,0,42,0,18,0,255,255,246,255,214,255,199,255,
196,255,166,255,183,255,236,255,232,255,211,255,190,255,157,255,159,255,181,255,186,255,183,255,186,255,208,255,221,255,234,255,
5,0,241,255,209,255,204,255,160,255,128,255,158,255,196,255,244,255,254,255,209,255,209,255,216,255,183,255,184,255,216,255,
245,255,252,255,211,255,171,255,167,255,182,255,216,255,234,255,219,255,209,255,208,255,182,255,142,255,151,255,203,255,219,255,
202,255,194,255,192,255,184,255,174,255,183,255,210,255,235,255,13,0,32,0,38,0,70,0,76,0,60,0,81,0,74,0,
34,0,15,0,241,255,225,255,246,255,1,0,7,0,10,0,0,0,245,255,235,255,245,255,19,0,33,0,64,0,108,0,
103,0,71,0,61,0,56,0,50,0,56,0,52,0,33,0,37,0,54,0,45,0,23,0,18,0,46,0,69,0,60,0,
81,0,106,0,63,0,31,0,32,0,4,0,243,255,249,255,0,0,28,0,28,0,2,0,0,0,242,255,233,255,240,255,
215,255,206,255,235,255,238,255,242,255,252,255,221,255,208,255,239,255,251,255,253,255,17,0,35,0,52,0,76,0,88,0,
92,0,89,0,65,0,40,0,32,0,23,0,26,0,49,0,59,0,54,0,61,0,68,0,77,0,89,0,79,0,71,0,
84,0,75,0,53,0,59,0,69,0,69,0,77,0,85,0,83,0,74,0,77,0,92,0,87,0,64,0,36,0,12,0,
14,0,19,0,13,0,25,0,30,0,30,0,47,0,30,0,2,0,24,0,49,0,55,0,64,0,63,0,56,0,37,0,
17,0,22,0,30,0,24,0,32,0,43,0,46,0,50,0,47,0,50,0,75,0,88,0,72,0,63,0,61,0,55,0,
64,0,69,0,58,0,61,0,61,0,54,0,55,0,24,0,237,255,234,255,239,255,238,255,251,255,252,255,242,255,237,255,
224,255,217,255,229,255,234,255,228,255,230,255,225,255,214,255,222,255,215,255,191,255,204,255,219,255,212,255,228,255,240,255,
237,255,253,255,11,0,16,0,30,0,51,0,68,0,63,0,47,0,43,0,24,0,254,255,249,255,246,255,235,255,218,255,
209,255,217,255,221,255,224,255,213,255,180,255,186,255,194,255,147,255,121,255,130,255,135,255,153,255,160,255,154,255,164,255,
168,255,169,255,183,255,192,255,191,255,183,255,174,255,175,255,180,255,190,255,205,255,221,255,245,255,249,255,230,255,221,255,
206,255,186,255,187,255,185,255,174,255,183,255,187,255,165,255,153,255,158,255,156,255,155,255,157,255,143,255,128,255,127,255,
122,255,128,255,166,255,193,255,182,255,181,255,195,255,184,255,164,255,163,255,165,255,172,255,171,255,
};

769
src/client/sound/data/eat3.pcm Executable file
View File

@@ -0,0 +1,769 @@
unsigned char PCM_eat3[24538] = {
1,0,0,0,2,0,0,0,68,172,0,0,229,47,0,0,5,0,109,0,99,0,10,0,67,0,145,0,178,0,214,0,
160,0,158,0,208,0,136,0,131,0,229,0,3,1,24,1,37,1,233,0,150,0,96,0,70,0,64,0,115,0,173,0,
172,0,198,0,212,0,197,0,0,1,9,1,201,0,215,0,249,0,254,0,247,0,198,0,105,0,6,0,7,0,50,0,
42,0,130,0,235,0,199,0,130,0,80,0,105,0,160,0,107,0,92,0,108,0,43,0,47,0,74,0,30,0,243,255,
211,255,202,255,100,255,212,254,6,255,63,255,64,255,137,255,114,255,129,255,4,0,210,255,104,255,90,255,78,255,142,255,
205,255,203,255,222,255,190,255,113,255,61,255,27,255,24,255,248,254,184,254,187,254,244,254,34,255,52,255,78,255,100,255,
81,255,125,255,235,255,29,0,46,0,40,0,246,255,224,255,255,255,94,0,161,0,86,0,32,0,73,0,55,0,237,255,
172,255,124,255,145,255,183,255,151,255,138,255,173,255,133,255,68,255,73,255,42,255,241,254,248,254,241,254,238,254,56,255,
112,255,115,255,119,255,166,255,250,255,5,0,146,255,8,255,207,254,229,254,250,254,205,254,120,254,132,254,51,255,175,255,
96,255,196,254,75,254,36,254,243,253,61,253,185,252,190,252,208,252,45,253,146,253,139,253,161,253,183,253,141,253,128,253,
104,253,81,253,77,253,17,253,8,253,60,253,87,253,176,253,11,254,28,254,90,254,144,254,98,254,38,254,249,253,207,253,
242,253,92,254,193,254,25,255,95,255,134,255,185,255,186,255,90,255,49,255,97,255,143,255,212,255,49,0,98,0,109,0,
150,0,216,0,185,0,90,0,54,0,2,0,212,255,13,0,63,0,75,0,122,0,170,0,183,0,183,0,206,0,238,0,
229,0,188,0,148,0,182,0,57,1,135,1,84,1,5,1,6,1,62,1,27,1,188,0,173,0,179,0,202,0,53,1,
162,1,233,1,37,2,62,2,41,2,249,1,227,1,15,2,90,2,98,2,28,2,44,2,124,2,79,2,23,2,55,2,
62,2,29,2,207,1,166,1,7,2,93,2,121,2,146,2,94,2,43,2,60,2,108,2,212,2,214,2,79,2,39,2,
239,1,96,1,126,1,192,1,92,1,101,1,240,1,0,2,39,2,165,2,120,2,243,1,221,1,208,1,149,1,79,1,
53,1,65,1,230,0,173,0,10,1,237,0,173,0,15,1,17,1,201,0,251,0,49,1,112,1,227,1,60,2,157,2,
217,2,183,2,140,2,101,2,20,2,143,1,10,1,226,0,234,0,236,0,35,1,98,1,73,1,206,0,62,0,44,0,
169,0,2,1,243,0,244,0,20,1,73,1,184,1,151,1,145,0,199,255,87,255,211,254,177,254,161,254,87,254,151,254,
69,255,180,255,208,255,169,255,116,255,65,255,58,255,204,255,159,0,21,1,22,1,197,0,158,0,196,0,205,0,190,0,
167,0,124,0,127,0,100,0,221,255,174,255,23,0,104,0,152,0,200,0,160,0,90,0,49,0,232,255,28,0,31,1,
175,1,16,1,26,0,183,255,221,255,217,255,116,255,25,255,248,254,252,254,12,255,42,255,133,255,229,255,239,255,217,255,
195,255,122,255,21,255,227,254,99,255,148,0,107,1,117,1,205,1,249,2,34,4,8,5,80,6,191,7,31,8,79,7,
177,6,229,6,230,6,86,6,58,6,185,6,6,7,56,7,135,7,105,7,14,7,42,7,111,7,85,7,60,7,161,7,
71,8,139,8,67,8,181,7,220,6,8,6,22,6,233,6,14,7,170,5,243,3,54,3,244,1,2,255,13,253,36,255,
155,5,237,13,48,19,238,18,177,15,244,12,147,12,210,12,185,9,56,4,16,0,50,254,29,0,217,3,44,1,197,248,
71,244,197,244,54,246,53,248,232,248,119,247,245,246,147,248,109,252,123,0,163,255,175,251,143,250,3,251,48,250,68,248,
135,244,168,239,38,236,233,234,238,234,165,233,191,230,205,229,178,231,226,233,120,235,180,235,166,233,6,232,248,232,171,233,
132,232,81,231,6,230,255,227,29,227,96,228,118,229,113,228,22,227,155,227,101,229,48,231,183,231,112,230,164,229,110,230,
110,230,219,228,185,227,12,228,86,228,209,227,141,228,83,231,247,233,193,234,228,233,121,233,231,234,55,236,147,235,64,234,
177,234,10,237,231,237,76,236,48,236,8,239,151,241,172,241,158,240,179,240,217,241,105,242,207,241,234,240,76,241,9,243,
130,244,125,245,173,246,254,247,102,249,173,250,73,251,62,251,47,251,236,251,154,253,105,255,76,0,75,0,193,0,219,1,
183,2,81,3,101,3,117,3,32,5,180,7,135,9,88,10,52,10,13,10,164,10,252,10,232,10,170,11,121,13,255,14,
82,15,22,15,216,14,122,14,73,14,193,14,4,16,98,17,229,18,203,21,130,24,75,24,231,21,226,19,33,21,91,25,
247,26,139,24,26,23,235,24,223,27,158,28,193,27,236,29,120,33,24,33,242,30,157,30,88,30,147,27,47,22,165,16,
139,13,213,12,59,13,203,14,172,19,150,28,66,37,238,40,148,40,213,40,11,42,55,40,31,36,199,33,48,32,187,28,
203,23,145,20,163,22,147,26,9,25,243,18,246,15,94,20,194,26,114,25,7,20,160,24,190,38,104,44,239,30,118,11,
186,7,62,20,51,28,248,20,196,13,186,24,92,46,124,56,139,51,44,45,87,40,19,28,43,8,210,247,177,245,47,5,
242,27,87,38,70,30,70,15,138,5,143,5,106,7,116,1,3,253,196,6,208,24,175,38,21,40,47,32,191,31,68,39,
86,34,72,15,114,254,117,246,253,249,148,6,60,12,38,5,109,250,52,240,10,238,135,251,52,11,181,15,219,15,143,19,
2,25,49,25,225,17,177,12,23,13,105,8,91,251,177,238,2,232,93,229,231,229,220,237,42,252,246,7,53,11,242,5,
141,0,137,5,80,16,234,20,249,14,132,251,64,223,118,207,76,217,229,240,86,6,1,22,246,35,0,54,159,72,165,76,
190,62,37,44,226,27,30,13,162,253,137,234,120,219,60,219,151,232,10,0,144,24,224,32,2,27,156,23,164,23,188,19,
231,9,30,254,171,252,91,9,23,23,53,32,159,38,64,34,54,17,244,255,77,242,195,225,161,205,72,188,155,182,187,191,
152,207,67,223,183,239,160,0,133,14,142,22,93,21,218,8,146,244,181,222,231,202,101,189,180,185,231,187,226,192,224,201,
246,209,5,212,254,208,158,201,95,195,93,196,74,199,195,199,17,202,232,207,33,215,60,222,90,228,121,231,227,226,143,212,
198,194,18,183,147,179,182,179,245,183,224,192,188,198,153,200,14,205,245,209,10,211,105,209,117,206,34,205,228,207,199,212,
38,216,174,215,122,214,197,216,220,218,105,215,220,207,252,200,18,197,98,195,170,195,19,196,73,193,206,190,85,193,112,198,
174,205,49,216,5,226,52,234,137,241,70,242,134,233,34,222,248,215,148,216,99,218,144,215,250,208,138,201,24,197,252,201,
157,212,23,217,121,215,12,217,76,226,239,241,80,255,2,0,222,245,6,236,0,232,69,231,34,234,210,243,160,254,130,2,
8,1,37,254,22,253,181,255,57,0,108,251,70,247,20,247,175,250,213,0,89,2,208,251,124,245,13,246,12,251,27,255,
93,252,64,243,36,241,159,253,30,13,192,21,108,25,169,26,40,28,240,29,154,26,36,20,169,17,96,18,59,18,221,12,
46,0,220,245,44,246,171,251,74,3,21,13,37,19,8,22,212,25,189,25,148,20,50,16,29,14,62,15,167,22,235,34,
242,44,88,46,191,40,64,34,34,30,224,28,66,27,70,22,24,17,225,14,209,15,204,19,50,24,9,26,194,24,84,21,
149,18,87,18,193,19,16,20,37,16,92,11,113,13,94,23,9,36,44,47,149,55,32,60,21,57,129,46,78,34,192,25,
93,23,163,25,85,28,53,28,232,22,68,16,174,16,36,24,5,33,112,38,188,34,53,25,168,23,118,35,175,50,174,57,
185,54,98,47,194,41,223,41,2,46,99,48,123,46,68,40,51,31,155,24,58,24,144,26,70,25,235,19,120,16,49,18,
133,23,19,30,105,34,79,36,100,39,87,41,156,37,211,30,255,23,203,18,248,19,163,24,123,21,53,10,96,1,227,254,
39,0,10,4,206,8,148,12,149,17,158,25,142,33,213,37,173,35,48,25,235,11,184,4,121,4,5,7,1,8,9,3,
230,249,37,245,251,249,205,4,235,13,3,17,148,15,135,15,141,20,66,25,180,25,158,27,5,32,23,31,35,22,168,11,
132,7,227,9,187,11,24,7,95,252,49,245,181,248,32,254,88,254,113,255,148,3,184,6,59,7,15,5,55,2,147,0,
37,0,82,2,34,7,40,11,129,11,114,9,91,8,96,6,23,0,245,249,250,248,243,249,158,247,38,242,40,238,165,238,
63,243,154,249,52,252,0,247,52,238,254,234,153,241,225,251,71,1,131,0,150,253,152,254,173,5,75,10,187,5,248,253,
68,250,202,251,181,0,132,4,188,3,40,1,227,1,214,3,37,255,209,244,183,239,77,242,114,243,37,238,192,231,228,233,
23,248,229,8,126,16,36,14,101,8,220,4,28,4,248,3,134,5,13,6,214,254,251,246,187,249,160,0,221,1,102,254,
105,247,192,235,219,221,159,211,44,212,8,227,183,248,80,5,200,2,140,253,217,2,68,16,37,24,27,18,72,4,137,247,
17,237,75,230,29,231,145,237,230,240,107,236,143,232,182,238,205,251,145,8,9,14,242,6,98,250,208,241,216,234,83,228,
119,226,30,229,75,235,88,241,136,240,89,236,187,234,31,233,184,234,108,245,204,3,83,14,213,16,185,12,98,12,112,16,
225,13,133,5,253,253,234,245,150,236,68,228,190,222,185,222,5,229,138,238,82,247,38,252,52,250,159,244,36,245,90,252,
65,2,62,6,172,7,173,2,89,251,201,245,19,243,163,245,96,247,15,241,89,231,162,224,87,224,41,232,155,243,85,252,
204,254,90,250,244,242,97,238,168,240,250,248,147,255,101,254,165,248,167,244,151,244,3,246,16,246,97,244,96,240,52,235,
183,236,181,248,238,3,138,3,10,252,25,245,98,240,93,240,2,245,15,247,217,243,48,240,65,236,239,230,235,229,200,235,
94,243,23,247,78,244,121,239,26,239,161,239,96,236,71,233,135,233,204,235,46,238,233,241,85,251,95,7,188,12,68,8,
150,252,91,242,240,242,176,248,119,250,68,251,22,252,142,249,230,246,253,245,68,244,150,242,208,241,169,241,117,243,101,244,
102,241,209,239,207,242,229,244,74,244,113,244,203,246,64,253,116,7,214,11,28,4,12,250,73,247,122,247,52,246,100,246,
131,249,205,253,49,0,227,253,222,247,25,242,36,240,72,241,181,242,127,246,161,254,65,7,104,10,66,4,130,252,219,255,
219,9,150,14,96,13,197,9,223,4,120,252,50,241,19,235,75,233,103,229,3,228,184,230,179,234,3,244,186,254,175,2,
80,4,207,7,78,11,67,16,84,23,107,28,74,28,232,23,24,18,221,12,250,8,54,4,196,252,105,246,53,245,53,250,
247,2,142,6,249,1,1,0,170,4,238,6,227,4,172,4,128,6,245,7,62,10,8,12,210,8,145,1,117,252,156,251,
176,250,145,246,110,243,93,247,48,0,179,5,121,5,245,3,157,4,111,8,3,14,202,16,196,15,245,15,12,18,202,16,
109,11,54,4,63,251,73,245,103,248,51,1,61,9,28,13,157,12,23,14,153,19,251,22,186,23,104,21,52,12,106,0,
89,247,39,245,136,254,11,10,148,11,11,6,158,255,85,255,180,9,190,21,167,26,36,22,62,8,173,252,6,254,82,3,
123,1,6,252,176,252,206,4,189,10,191,8,152,3,39,0,166,255,231,0,61,2,201,7,118,18,73,21,85,11,22,3,
22,3,33,5,192,8,223,14,134,22,221,30,202,32,83,25,83,14,152,2,181,251,182,254,227,3,12,6,83,7,38,6,
1,3,173,0,189,255,90,255,213,249,220,238,225,232,105,235,145,242,183,250,119,253,194,252,94,2,142,12,24,21,87,27,
233,27,198,22,118,18,132,15,65,11,206,5,149,255,200,252,25,1,86,8,254,12,147,12,32,9,157,9,136,15,69,22,
165,27,49,29,64,25,171,18,181,10,222,1,178,251,152,249,80,249,97,249,226,249,255,249,203,249,103,254,205,9,32,19,
230,20,58,19,35,13,59,1,52,249,4,250,20,255,59,8,23,18,216,21,153,24,49,28,29,23,244,9,71,252,80,242,
183,241,22,249,249,0,82,8,85,15,87,21,34,25,243,21,92,14,4,9,47,2,227,245,32,232,110,223,33,225,62,232,
197,234,103,234,69,238,112,250,233,13,93,25,111,14,81,248,182,236,226,242,101,2,122,12,200,9,35,2,108,3,133,16,
106,27,216,23,20,10,143,251,125,242,125,239,48,237,120,238,205,249,108,6,12,11,226,11,120,14,98,18,47,18,47,12,
125,6,75,3,210,3,226,9,2,12,129,5,168,1,208,4,85,8,229,7,190,1,240,246,58,237,171,235,93,244,173,1,
37,12,107,16,140,16,51,15,112,11,168,7,66,6,200,2,11,255,136,254,59,249,50,238,9,231,154,229,61,231,27,234,
188,236,52,239,96,239,22,239,207,242,70,245,210,244,73,247,182,247,11,243,229,242,225,249,201,2,230,9,29,11,14,8,
48,6,80,4,6,1,144,255,214,255,7,254,13,250,88,249,72,254,179,3,145,6,134,7,98,3,9,249,199,236,185,224,
68,215,156,213,61,218,72,222,245,226,133,238,185,253,96,7,69,9,219,7,179,6,230,3,171,252,96,244,168,238,175,237,
19,245,53,252,28,245,129,233,128,236,20,251,129,6,189,6,141,249,21,228,54,212,94,211,20,221,142,233,247,244,70,251,
207,252,47,255,187,2,255,2,23,255,197,251,90,254,185,4,126,8,149,8,172,8,146,10,220,9,85,2,209,249,31,247,
241,246,234,243,58,239,208,237,218,240,14,244,3,245,67,245,112,247,183,254,9,10,36,20,99,26,131,26,16,17,33,1,
148,243,28,235,30,227,142,220,125,219,119,219,180,219,245,227,23,241,51,249,246,250,84,250,71,0,62,16,184,27,32,26,
138,20,129,19,89,27,163,38,82,38,43,24,12,3,94,236,243,223,184,224,243,228,57,237,204,251,139,9,71,18,204,21,
82,23,19,26,63,24,122,16,229,11,0,12,43,12,89,14,155,20,151,25,250,24,111,22,11,19,84,9,219,251,235,243,
25,242,205,242,29,246,198,247,239,243,185,243,85,253,122,8,218,18,191,33,175,49,229,58,225,54,121,37,144,18,92,6,
104,255,110,252,143,250,183,250,148,0,116,3,196,250,114,235,23,220,204,210,58,213,135,225,255,241,148,0,72,8,237,9,
204,8,186,5,154,3,130,8,234,18,162,24,174,22,195,17,35,10,132,0,114,250,7,248,128,242,54,232,164,223,90,220,
38,221,58,227,99,237,166,246,187,252,8,254,32,253,134,0,149,4,206,2,103,0,96,2,44,5,138,4,155,254,237,244,
197,236,127,233,35,233,13,232,186,230,137,233,156,240,215,245,70,247,113,250,69,3,108,16,137,27,148,28,85,21,136,14,
40,10,179,4,4,251,103,240,187,237,23,238,148,228,28,215,6,210,104,213,163,223,28,239,222,253,112,6,99,6,51,1,
224,252,159,251,128,0,155,10,219,13,198,3,190,244,255,233,249,231,119,238,97,244,96,242,102,240,20,248,6,3,197,5,
151,0,167,251,49,252,50,1,97,4,219,255,239,246,7,243,195,245,223,249,242,253,151,255,208,248,107,236,28,228,138,228,
62,239,68,2,214,18,194,23,32,19,225,10,67,5,26,9,130,17,210,16,13,9,204,5,146,4,161,255,153,249,0,245,
224,247,49,6,209,19,207,21,161,15,34,6,165,252,103,246,47,245,211,253,202,16,72,35,68,44,163,43,98,36,134,25,
110,12,244,252,169,237,214,227,115,226,250,232,207,243,232,250,125,249,17,246,18,249,18,2,20,9,36,7,83,1,127,2,
80,9,13,12,64,8,153,3,38,5,170,15,71,29,203,35,232,32,229,25,53,15,167,255,97,240,235,229,22,226,65,231,
224,245,76,10,210,25,21,28,164,23,205,18,47,12,253,7,122,8,87,9,23,11,239,12,174,10,170,5,154,255,219,250,
122,254,112,9,247,15,244,11,117,4,13,5,222,13,81,17,89,10,10,4,38,5,130,12,177,24,52,34,77,35,171,31,
112,22,162,6,180,249,224,244,181,245,26,250,7,254,130,0,104,5,119,12,51,19,150,21,163,12,71,252,236,243,7,249,
252,4,116,17,104,24,219,24,206,25,98,26,40,19,131,7,162,255,27,253,197,252,180,250,114,247,15,245,98,242,234,240,
254,243,89,252,166,9,223,23,202,30,163,24,111,11,55,6,34,11,148,15,59,16,149,12,255,2,173,246,253,234,244,229,
223,234,94,241,135,246,49,253,6,2,213,8,130,23,172,37,106,40,104,29,126,13,206,7,170,14,203,20,82,14,153,253,
127,239,96,233,140,233,42,243,62,2,41,10,121,10,156,10,251,8,70,3,69,1,155,7,228,14,70,17,69,14,162,5,
50,253,9,249,132,242,149,233,25,231,110,234,158,236,231,235,203,233,36,233,164,238,213,251,8,11,10,21,243,22,195,16,
219,5,138,251,143,243,106,236,84,228,80,222,69,224,192,229,172,231,18,234,73,238,217,240,127,244,228,250,175,4,188,15,
235,15,195,4,86,253,190,254,247,6,237,16,216,16,165,7,161,2,215,4,196,4,81,249,148,232,19,224,60,225,196,232,
173,241,181,244,190,248,245,1,64,4,144,2,140,8,145,14,62,11,177,0,38,245,172,240,84,245,178,252,177,254,29,247,
150,235,90,229,165,230,159,236,176,242,248,246,57,252,54,2,29,5,175,0,154,243,232,233,35,240,167,251,42,254,115,251,
151,248,229,245,109,243,176,238,63,239,230,250,171,253,134,237,238,221,179,217,175,224,236,241,48,1,252,8,230,16,61,26,
214,31,178,25,186,8,253,250,34,243,52,238,70,240,205,242,146,240,29,240,181,241,5,245,166,247,211,240,150,232,226,234,
157,240,67,243,18,239,185,223,126,214,35,230,100,255,65,14,156,22,11,28,195,26,59,21,117,12,19,2,179,252,149,249,
138,242,80,233,108,227,95,233,196,249,1,8,235,16,254,18,121,9,129,251,100,243,1,245,220,250,254,248,29,244,86,247,
175,253,220,5,212,19,240,32,135,35,71,22,10,4,166,254,97,255,205,250,56,249,249,253,40,1,219,254,233,249,245,249,
200,1,60,11,84,13,135,2,207,242,101,236,71,241,92,249,178,252,205,251,72,254,56,4,53,9,6,13,82,12,146,5,
176,254,158,248,45,241,51,239,195,248,127,4,219,6,9,5,19,8,169,13,242,18,137,24,142,28,188,29,58,27,18,21,
150,13,69,3,141,247,208,241,104,238,198,231,146,230,247,236,85,242,163,246,25,252,12,0,215,0,60,254,179,251,226,251,
125,253,138,3,31,11,5,9,112,2,143,6,26,19,7,27,44,27,109,23,240,13,208,254,18,242,12,234,201,230,186,233,
227,235,90,235,106,236,8,236,143,236,235,239,43,240,90,243,253,252,33,3,17,6,168,10,160,14,161,15,171,14,3,18,
6,24,46,23,209,17,47,11,188,2,55,251,153,238,208,221,198,214,13,216,248,220,140,233,234,249,137,9,96,22,169,27,
31,25,15,18,152,13,154,15,19,16,247,11,44,5,253,247,101,234,226,232,63,242,91,251,57,0,205,8,202,22,179,31,
116,31,249,24,79,16,182,10,156,7,188,6,248,10,28,16,157,15,238,4,184,241,61,228,177,228,244,234,153,239,61,242,
67,242,221,235,22,227,221,228,133,240,155,253,139,12,140,24,32,30,64,36,252,38,146,31,106,19,172,5,214,249,184,244,
202,238,39,226,94,215,87,215,165,227,16,248,65,11,64,22,161,25,250,22,230,15,91,11,116,13,255,19,161,29,19,34,
66,25,32,16,32,17,136,17,234,12,224,6,31,254,145,248,62,249,141,246,114,241,148,242,44,249,205,2,5,10,165,8,
3,8,173,16,133,26,152,31,165,30,207,20,55,9,149,2,184,248,12,233,39,222,159,221,166,230,205,244,3,254,45,254,
78,251,197,251,12,3,92,13,194,15,33,8,176,2,39,9,8,21,71,26,146,24,194,21,55,20,224,20,254,20,249,16,
243,8,70,253,97,243,245,239,133,235,32,227,157,222,122,225,49,233,148,240,140,247,108,2,6,14,216,25,73,39,151,46,
82,48,40,47,235,36,153,24,163,19,92,20,89,26,67,29,126,20,130,3,184,236,189,218,136,215,71,216,81,218,136,230,
9,249,77,9,227,16,233,16,247,16,145,18,152,27,249,43,33,49,61,41,8,32,153,18,148,2,68,248,174,241,107,237,
88,237,7,236,9,227,55,217,30,219,233,230,166,240,44,240,202,233,233,236,27,250,13,5,147,14,252,23,146,30,87,34,
122,26,216,9,128,1,205,253,109,247,247,243,178,242,188,243,189,249,100,255,8,255,123,245,245,230,141,223,146,229,178,248,
64,16,253,29,187,30,218,21,15,9,170,4,216,11,193,21,227,24,138,12,97,244,107,225,88,218,124,214,227,209,51,214,
202,230,54,245,241,247,125,242,184,234,243,236,128,251,189,0,67,247,121,245,122,1,163,14,185,22,239,19,111,3,48,244,
83,246,140,4,18,15,112,16,43,12,183,7,4,10,116,17,169,18,239,8,83,250,87,243,238,248,83,252,223,247,159,247,
41,250,189,253,206,7,15,12,113,5,19,3,141,7,166,13,240,18,29,16,128,3,171,246,1,246,247,2,15,18,140,26,
202,18,218,248,212,228,255,226,179,229,238,232,122,235,68,233,165,232,151,236,9,244,215,251,32,252,214,252,226,8,1,22,
164,26,65,21,152,6,218,252,82,0,157,3,4,4,27,12,172,17,85,8,109,252,34,246,121,244,142,253,66,10,62,14,
226,11,189,1,193,242,133,237,17,242,160,249,75,4,195,14,156,16,120,3,154,242,132,239,229,247,64,7,206,21,249,14,
108,248,169,229,80,212,243,199,99,202,138,216,133,239,47,6,21,17,101,19,251,14,188,4,231,254,214,0,74,6,198,10,
100,6,209,252,45,255,219,10,26,13,66,7,87,254,253,234,202,217,183,218,248,226,132,236,233,245,116,244,225,242,89,255,
175,11,196,11,134,2,79,247,2,245,120,248,142,245,80,241,216,242,214,242,111,237,97,230,206,225,127,232,22,251,77,10,
114,18,166,27,46,33,31,31,45,27,33,23,186,20,161,17,202,7,66,253,170,244,173,230,224,213,49,199,93,191,88,200,
85,220,144,236,186,249,106,6,233,13,13,17,87,22,158,32,128,42,157,44,49,39,136,33,250,32,78,28,148,5,27,231,
81,214,217,211,26,215,11,220,208,222,187,224,236,227,127,231,181,239,197,252,113,7,50,13,228,14,155,16,199,21,51,25,
147,27,218,33,8,36,94,27,171,10,229,246,166,233,65,230,111,228,51,224,75,222,83,229,188,241,83,247,169,246,235,246,
86,247,61,250,57,3,229,15,50,29,17,39,21,42,15,36,188,21,68,9,109,4,206,0,152,250,230,241,115,232,69,225,
21,220,248,220,82,231,111,241,102,246,235,254,153,13,140,26,197,32,57,34,157,33,101,32,10,30,95,24,2,20,75,21,
36,18,238,1,36,238,225,230,162,239,223,252,97,6,136,9,219,3,144,1,77,13,3,27,58,35,11,39,215,33,45,24,
110,17,74,12,109,10,201,12,196,13,239,6,109,249,48,240,242,235,32,229,24,225,243,225,138,227,106,237,89,255,229,10,
236,10,15,5,175,1,69,5,97,11,152,16,5,21,251,21,218,18,235,13,86,7,39,255,34,246,172,237,185,231,168,225,
248,217,142,213,5,211,139,211,107,227,215,250,142,8,170,20,63,33,205,34,111,32,191,31,29,29,17,29,95,29,237,25,
72,22,42,16,65,9,184,6,6,4,123,254,244,245,186,235,230,231,39,235,33,240,21,246,226,248,70,247,59,248,234,251,
40,254,141,2,224,10,210,15,224,14,121,13,4,13,253,12,154,13,78,13,220,12,53,10,116,2,146,251,29,248,47,246,
30,249,254,254,33,4,134,9,194,10,151,6,252,4,45,10,15,19,249,22,207,16,254,8,62,9,192,14,238,15,216,11,
225,10,54,14,185,18,253,23,246,20,223,6,80,253,136,250,237,242,73,235,155,235,178,239,104,244,231,244,76,236,246,229,
17,238,203,254,81,13,67,19,170,16,68,12,81,9,91,8,209,9,101,8,85,3,194,255,235,252,179,250,115,249,86,247,
95,249,72,254,55,252,108,246,39,242,55,237,176,236,213,242,251,248,23,254,185,2,228,4,136,4,209,1,156,0,126,2,
55,255,32,245,169,235,199,229,250,230,138,240,108,250,168,1,37,9,187,13,28,14,221,15,94,20,151,20,145,12,11,5,
252,4,124,4,187,253,122,245,167,239,128,240,135,248,111,251,163,243,75,237,51,239,236,243,133,248,182,251,149,249,225,245,
119,250,150,3,58,5,105,2,85,3,56,5,218,4,159,2,65,255,64,254,14,1,182,4,235,3,112,250,51,238,183,231,
20,228,248,222,23,220,120,223,85,231,172,239,148,248,102,1,176,3,176,254,46,249,183,244,207,242,40,248,149,253,97,253,
218,2,149,12,29,13,218,9,98,7,138,255,230,245,23,239,200,238,157,246,162,251,171,252,1,2,241,9,53,21,121,29,
150,22,228,10,23,4,25,253,106,248,250,247,242,251,4,9,202,23,185,26,16,16,244,0,73,249,113,249,147,248,182,246,
6,246,114,241,48,236,146,237,231,239,184,241,210,249,254,1,204,3,141,1,15,253,121,255,2,11,133,18,252,17,85,11,
57,3,24,2,251,255,252,246,174,242,100,245,137,248,143,246,192,239,12,239,186,245,238,254,235,9,116,10,242,0,195,1,
230,10,101,15,180,17,28,19,91,18,61,18,156,15,142,4,76,245,232,234,24,231,224,230,233,230,69,231,59,237,254,245,
20,252,179,3,166,10,79,13,35,16,144,12,212,255,164,250,137,2,11,11,168,11,47,4,77,249,218,243,47,250,116,7,
61,20,54,29,41,27,54,15,68,3,170,246,57,239,131,248,206,6,229,11,215,8,116,255,122,249,239,2,166,17,246,18,
114,7,138,250,76,240,229,235,148,240,51,251,17,13,92,36,144,49,120,44,57,25,141,2,2,249,227,252,132,255,28,253,
177,248,92,243,73,239,222,238,167,244,254,255,92,13,30,26,224,30,46,19,99,254,87,242,77,240,158,236,38,232,93,231,
144,234,244,247,38,9,182,11,104,0,187,242,89,230,250,220,136,218,227,225,135,239,159,2,43,28,46,45,55,47,32,47,
213,41,238,27,218,16,204,6,62,252,163,246,75,238,56,227,10,226,6,235,160,243,24,244,17,242,178,243,96,240,157,235,
65,244,159,4,140,16,175,19,188,13,214,9,65,15,238,20,199,19,235,14,163,12,126,10,221,254,225,237,220,228,141,230,
94,238,1,246,88,247,151,243,255,241,70,245,202,251,149,6,58,17,220,21,203,24,217,18,104,250,240,226,49,221,194,230,
178,252,117,15,108,18,174,12,99,3,44,254,79,1,239,3,23,7,205,11,172,13,79,15,14,10,11,254,217,250,169,2,
15,16,234,20,67,6,179,249,19,251,154,254,113,1,212,252,70,242,218,238,181,239,209,245,108,0,221,4,110,8,141,10,
121,6,178,3,101,254,6,250,191,254,45,2,165,3,195,3,92,3,36,16,17,29,65,27,52,19,204,1,73,241,85,239,
54,237,224,233,177,231,69,225,197,228,1,243,159,255,157,7,18,5,211,0,92,3,34,5,61,13,191,26,71,35,80,45,
196,45,137,25,252,7,182,6,162,13,229,17,45,9,169,250,233,241,204,235,150,233,116,238,243,245,77,2,40,18,207,22,
127,13,88,1,181,248,240,248,79,1,7,7,113,8,123,9,118,9,18,11,0,13,219,7,188,253,154,248,45,250,13,250,
154,248,111,251,59,251,179,247,62,249,153,251,116,0,35,12,104,18,57,13,197,2,228,253,52,8,103,21,131,23,193,20,
52,16,172,9,98,5,88,5,221,10,125,12,142,1,11,247,121,243,146,239,219,239,8,247,160,251,51,250,92,246,27,244,
189,245,3,248,26,248,67,245,45,236,248,224,136,218,20,214,145,218,215,241,49,10,192,16,184,8,66,248,219,230,106,221,
208,224,254,240,246,255,162,4,51,7,127,8,198,8,3,12,217,8,193,255,105,252,210,250,200,250,64,3,188,10,53,11,
190,11,8,7,146,248,147,240,126,243,72,242,32,238,212,239,91,243,73,247,100,252,163,254,120,253,15,252,27,254,40,1,
113,255,221,251,43,247,0,240,67,237,42,237,97,232,16,227,223,225,73,230,67,240,32,248,135,246,32,238,154,233,185,238,
58,248,62,3,85,15,67,23,92,24,209,17,235,5,97,254,178,255,81,4,167,4,149,255,211,254,140,5,126,8,248,3,
27,255,122,252,58,250,108,248,109,249,251,252,161,255,205,2,237,8,194,11,185,6,252,255,15,252,159,248,165,245,157,243,
102,239,80,235,40,238,215,244,12,247,0,246,146,245,206,244,121,245,138,248,63,251,224,255,120,6,1,10,113,13,15,19,
146,22,251,24,147,24,4,18,145,14,126,17,15,17,28,12,77,5,252,251,141,244,126,240,86,237,214,237,99,242,109,246,
111,247,106,245,53,243,147,243,232,246,2,253,158,1,253,2,91,8,209,17,22,23,75,24,209,24,8,25,110,25,44,21,
170,8,80,251,213,243,73,242,139,247,231,3,2,16,49,17,183,9,90,6,181,9,208,13,240,14,200,11,216,8,86,9,
205,9,108,12,207,18,119,21,255,17,52,11,196,2,42,254,17,0,7,3,150,2,165,0,229,0,25,1,160,254,57,0,
196,8,137,15,10,18,168,20,120,19,211,10,39,2,132,253,187,247,154,242,39,245,137,252,52,4,171,11,183,12,119,5,
106,255,228,255,84,6,34,13,21,10,219,2,37,6,146,16,100,24,132,27,154,25,86,20,36,15,61,14,146,15,238,9,
71,2,45,1,173,254,171,250,254,252,121,2,2,10,86,16,156,12,60,5,187,4,138,9,58,15,244,17,88,17,145,16,
139,14,26,10,102,6,25,6,68,9,212,12,217,12,60,11,57,12,93,11,99,3,241,249,158,244,114,244,146,250,244,0,
58,0,250,249,17,242,187,237,186,241,47,250,54,0,152,2,38,4,81,5,52,5,188,5,4,8,181,14,176,24,221,24,
255,13,3,4,146,250,129,241,209,235,52,230,94,228,164,230,40,232,117,238,241,247,36,253,227,253,123,248,225,243,204,249,
128,4,143,14,60,20,88,13,222,252,156,241,82,244,15,251,90,249,186,241,73,230,232,217,203,215,130,224,108,235,216,243,
202,250,139,3,83,8,6,5,12,2,207,3,112,9,192,16,17,19,156,13,50,6,38,4,63,2,205,248,250,240,4,237,
99,230,253,227,184,229,190,230,3,235,55,237,240,234,144,235,96,238,223,241,166,248,100,3,191,11,6,12,240,13,122,19,
172,18,132,16,86,17,18,18,58,16,188,4,81,247,189,242,154,238,43,233,247,228,182,223,86,222,252,223,33,227,111,236,
88,245,208,247,215,248,254,252,175,4,248,12,164,19,106,22,117,21,50,21,162,16,23,5,209,252,107,248,78,242,163,234,
234,225,104,220,20,221,249,225,184,233,53,241,253,245,209,245,35,243,229,247,203,0,25,5,240,8,65,11,107,8,80,5,
86,2,179,253,251,249,74,252,26,7,35,15,178,7,200,245,240,229,57,221,39,219,115,224,232,234,187,244,247,251,255,254,
32,254,235,250,199,242,196,238,52,247,14,254,62,252,198,248,45,249,167,3,84,14,142,10,242,255,184,246,68,240,94,237,
33,232,187,227,205,231,238,236,73,236,140,235,188,241,174,251,88,1,69,2,155,0,253,253,2,253,29,254,153,2,108,5,
98,254,80,245,160,244,63,249,40,255,89,7,23,16,187,19,153,17,219,10,246,0,101,250,133,244,31,241,230,246,221,244,
118,255,75,63,102,113,190,75,40,3,123,216,86,205,143,204,117,193,144,177,58,174,60,191,224,225,130,250,115,253,205,8,
80,47,168,95,0,120,124,114,244,108,66,107,55,93,71,74,162,60,194,52,137,42,101,19,36,249,146,229,235,210,254,201,
58,220,194,253,248,15,104,17,84,23,183,34,149,41,37,43,253,42,76,44,230,38,209,20,133,2,212,248,57,248,119,253,
51,254,130,250,147,248,216,244,103,237,155,230,10,231,94,241,25,0,26,15,63,27,178,32,210,31,68,26,111,19,207,8,
120,245,93,232,72,238,193,249,77,253,215,248,120,242,3,241,220,242,129,243,44,244,161,246,17,248,221,246,84,249,37,255,
107,255,187,253,1,254,67,250,200,244,40,243,78,247,189,0,173,7,18,9,205,8,156,8,103,12,41,18,18,19,183,18,
4,19,104,13,203,2,184,250,162,244,88,236,216,232,183,239,58,249,85,255,100,253,161,240,17,228,197,223,21,225,229,230,
70,238,107,244,29,248,196,247,38,250,6,3,66,10,143,12,186,11,19,8,182,1,167,246,29,236,175,236,19,245,91,252,
79,3,193,9,123,9,254,255,48,243,146,235,64,232,146,228,239,228,220,234,231,243,157,2,51,15,16,16,169,10,183,1,
94,249,107,250,116,253,71,252,206,251,142,249,91,245,64,245,210,250,255,1,247,2,245,0,192,3,2,4,250,253,178,249,
240,249,251,249,80,243,165,233,52,232,153,240,9,253,14,3,87,252,145,242,225,236,111,233,180,233,20,240,200,253,206,11,
99,15,15,13,88,11,91,6,40,253,108,243,30,237,242,235,169,239,112,246,134,248,166,246,129,250,233,255,24,2,243,5,
144,9,245,11,67,16,218,19,85,20,3,17,24,12,41,11,204,13,240,15,82,13,193,3,156,250,255,247,129,247,217,245,
204,245,111,249,189,253,159,255,147,255,151,253,153,252,148,255,22,1,122,254,166,251,151,249,195,249,86,253,164,2,197,9,
68,15,197,12,240,5,116,4,182,7,37,7,63,2,103,253,208,246,104,239,0,238,40,243,29,250,115,0,210,4,150,6,
17,8,143,10,35,12,44,13,98,14,30,14,41,13,169,10,198,5,35,4,75,5,126,2,204,250,133,240,62,235,94,239,
34,243,248,243,38,249,58,1,233,9,181,18,213,24,154,29,16,32,147,28,20,23,34,22,166,25,164,26,196,21,86,15,
37,9,239,4,48,6,99,9,15,11,230,9,167,2,102,249,1,244,109,240,97,238,126,241,91,250,204,4,96,11,18,14,
147,15,50,15,71,10,228,0,123,251,13,1,177,9,59,14,255,18,177,23,74,22,26,16,222,10,141,7,95,3,99,254,
230,251,9,253,36,0,119,3,27,6,200,8,218,11,208,11,36,6,243,255,198,253,102,251,216,245,31,242,48,245,122,254,
53,9,203,16,27,20,246,18,68,14,73,10,45,10,85,13,144,17,185,19,141,18,112,16,243,14,125,13,179,11,187,7,
149,254,141,241,106,230,24,226,255,228,17,235,158,241,55,250,198,2,28,5,161,1,39,254,39,254,153,2,1,9,133,12,
154,12,202,12,61,15,250,17,208,17,40,16,117,14,192,9,29,4,54,3,229,5,209,8,24,10,243,7,46,4,111,1,
220,255,128,253,126,246,122,237,39,235,119,240,152,248,76,0,193,4,151,6,74,8,235,7,224,2,151,251,9,247,53,246,
8,248,11,254,141,4,162,3,108,253,227,248,162,246,234,245,128,246,115,247,136,250,6,0,208,2,152,1,112,2,21,7,
16,10,134,9,187,7,128,4,40,255,247,249,50,248,25,249,108,249,83,251,229,0,230,4,183,5,67,6,126,2,143,248,
41,241,196,240,97,243,237,247,83,254,52,1,39,253,217,246,18,244,238,244,154,247,156,250,16,250,169,245,121,243,103,245,
12,249,20,254,89,2,92,3,44,2,82,255,236,250,77,247,237,247,124,253,48,3,182,7,216,13,156,15,5,9,183,4,
123,7,112,7,96,0,4,250,139,249,115,250,201,248,112,248,79,250,26,249,109,246,101,247,3,249,56,249,64,250,11,250,
251,249,250,254,128,3,82,1,21,253,76,252,120,255,193,3,111,6,234,6,184,3,203,254,37,251,144,244,58,236,89,234,
179,237,74,242,13,248,35,251,38,250,197,248,94,246,127,241,65,238,36,239,241,240,245,240,117,239,228,239,249,246,214,255,
124,0,133,250,172,244,146,239,254,233,25,230,242,232,181,239,134,240,145,237,215,238,253,241,255,242,206,243,249,246,5,249,
254,245,109,245,140,252,33,3,28,4,145,0,89,250,181,245,80,243,1,243,49,247,250,251,171,249,130,238,196,226,217,225,
101,235,68,247,17,1,142,6,77,7,63,4,209,255,116,254,64,255,94,255,2,1,66,5,185,10,184,13,63,10,24,4,
159,255,162,251,230,248,239,247,97,247,88,247,65,247,142,250,67,6,21,19,148,22,121,20,28,20,235,19,215,16,166,11,
16,7,195,4,19,1,170,250,12,247,157,245,222,242,186,243,231,250,20,3,83,6,231,2,141,253,140,250,157,248,81,247,
86,248,138,251,247,253,198,254,18,2,141,7,87,10,132,9,119,5,5,0,168,252,118,252,150,0,203,6,139,9,28,9,
89,8,196,8,144,9,128,6,234,255,244,249,182,247,238,250,144,254,48,255,108,255,162,252,105,247,16,246,17,249,218,255,
174,7,255,12,50,17,179,16,12,12,237,11,36,12,30,7,217,2,135,2,184,5,88,7,185,1,153,251,236,249,207,248,
5,249,138,251,8,254,117,0,60,4,224,10,70,16,58,12,42,1,60,250,175,251,231,0,82,4,188,3,203,1,211,2,
39,5,244,3,80,0,168,252,249,246,108,240,31,241,31,250,221,254,43,251,217,249,238,253,167,2,217,5,109,5,177,6,
158,15,116,23,192,22,116,17,152,10,91,2,143,250,180,247,246,251,204,1,196,2,196,254,164,251,165,253,194,0,40,1,
150,255,252,253,132,0,8,5,33,6,212,8,54,14,206,14,220,11,74,10,82,10,210,10,176,10,128,9,6,4,120,251,
17,249,0,251,81,250,131,250,177,250,68,248,142,249,188,254,9,3,195,6,52,9,91,9,13,8,66,6,228,6,232,9,
12,11,14,9,11,6,64,4,104,2,61,252,245,244,38,245,131,250,156,250,135,244,124,241,121,245,164,250,186,253,155,2,
212,8,41,10,131,7,40,8,220,10,122,8,223,3,25,3,210,1,163,253,177,251,203,250,248,248,189,251,126,2,221,4,
177,1,254,254,31,254,82,252,114,252,220,1,30,7,190,6,155,2,168,255,46,0,241,255,18,253,120,252,109,253,52,253,
67,254,196,254,99,252,148,249,15,247,115,248,53,1,92,10,186,13,252,12,122,9,235,3,84,254,0,251,20,252,6,1,
233,6,23,10,25,8,232,3,133,1,195,255,13,253,124,248,46,241,202,235,46,237,74,244,165,255,157,10,193,14,208,15,
80,18,40,16,2,5,138,244,57,230,72,227,196,238,232,255,191,8,156,5,47,2,178,5,47,11,27,16,12,17,195,8,
204,254,253,250,40,248,112,246,62,253,215,8,132,14,42,12,74,8,50,7,137,5,102,0,229,251,25,251,68,251,168,249,
177,245,229,240,93,239,2,244,104,253,105,6,225,10,4,11,28,7,81,1,110,1,16,10,37,21,253,29,101,34,61,34,
138,32,168,29,118,24,242,19,157,16,130,8,200,250,73,238,195,229,174,225,2,227,87,227,110,225,161,232,12,250,160,10,
70,19,137,18,73,15,72,17,212,19,189,16,205,7,167,249,10,237,204,235,11,245,188,255,252,6,152,10,188,10,140,10,
109,11,72,8,55,2,231,255,173,255,66,254,191,253,230,254,209,255,205,254,17,253,72,254,38,4,107,11,140,11,124,2,
7,252,123,255,187,6,183,10,10,11,47,12,213,12,161,7,143,1,195,255,81,255,127,0,187,2,213,4,41,11,182,18,
156,18,71,10,235,255,160,251,39,253,160,251,81,249,192,252,230,254,78,251,71,247,76,244,49,245,183,254,186,10,100,18,
222,22,247,20,180,10,168,0,1,252,166,250,235,250,48,249,14,242,140,232,178,227,238,230,193,237,183,243,161,249,248,253,
123,253,172,249,116,247,55,250,147,254,69,254,228,247,102,238,71,233,159,235,56,235,153,229,116,233,205,251,52,13,34,12,
64,252,247,247,139,10,254,28,24,27,216,11,20,2,109,9,171,23,83,21,71,0,232,237,190,233,40,238,229,243,244,246,
236,248,192,0,87,17,108,36,41,46,118,40,46,27,230,16,150,11,216,6,182,250,187,230,233,215,154,212,82,213,142,213,
151,213,127,214,254,220,173,232,242,240,122,244,102,251,63,8,157,22,51,36,55,46,58,47,122,39,49,28,225,15,114,3,
197,246,108,233,191,224,106,225,131,229,254,230,121,231,85,231,193,230,155,234,246,241,90,245,43,244,219,242,119,244,84,253,
150,12,171,23,234,23,148,18,131,16,174,18,30,17,136,8,139,254,250,246,104,243,186,243,75,243,135,242,99,245,87,248,
216,248,208,248,193,247,248,245,67,242,232,235,148,234,2,240,38,244,138,245,241,243,87,238,131,235,223,236,117,236,52,235,
244,235,20,238,245,240,88,244,155,248,32,251,161,249,111,248,188,248,235,248,167,252,165,2,77,4,157,0,22,250,114,245,
121,246,128,249,22,251,60,253,9,0,103,255,199,248,201,240,119,239,251,245,94,252,254,251,227,250,247,255,1,2,94,250,
152,244,111,248,124,255,169,2,241,1,231,3,38,12,52,21,47,26,127,27,199,26,103,26,80,27,211,26,210,23,188,21,
43,20,21,14,177,6,156,4,65,5,121,6,167,9,136,11,180,11,143,13,100,15,139,15,229,14,39,12,122,7,3,5,
169,7,100,12,232,13,206,11,228,8,99,7,170,8,169,10,44,10,29,8,123,7,15,10,87,14,62,16,65,15,199,13,
118,11,94,8,81,8,184,12,80,17,11,20,184,24,116,31,213,34,52,34,12,32,97,26,103,17,58,12,253,13,48,18,
52,21,252,19,187,12,225,5,74,3,133,255,26,251,159,250,167,251,72,251,179,248,182,245,21,246,88,246,59,244,172,243,
160,240,109,232,128,225,44,220,183,215,39,217,81,225,25,235,64,238,27,234,33,232,207,232,135,231,150,230,73,230,70,232,
146,237,100,238,39,236,157,239,82,245,209,246,28,242,40,232,88,224,129,224,242,230,153,237,38,241,154,247,136,1,201,5,
173,5,142,5,220,1,240,253,58,255,44,2,206,3,97,4,1,5,53,8,58,12,180,11,0,5,216,250,99,242,128,241,
231,248,115,0,142,0,72,253,100,254,56,3,251,7,62,11,45,8,81,251,178,238,63,239,103,250,253,4,118,9,156,8,
229,6,247,6,68,5,16,0,1,252,147,252,215,1,123,10,193,16,154,14,127,7,7,4,60,7,5,14,235,17,219,14,
163,9,170,8,97,10,26,10,125,7,98,5,243,4,152,5,200,7,28,11,34,14,236,16,118,18,194,17,248,16,32,16,
69,12,205,5,116,0,60,254,11,253,207,250,169,249,210,249,142,247,254,244,116,247,84,251,17,251,116,249,198,248,169,246,
18,245,234,249,144,7,174,25,107,38,153,38,83,28,120,15,87,6,65,0,200,249,236,244,209,244,123,248,21,253,16,254,
53,249,201,242,95,240,165,244,0,252,238,253,247,248,25,243,74,241,166,246,239,254,138,1,176,1,153,6,93,12,36,14,
199,12,175,8,106,2,194,252,90,252,126,2,101,9,79,14,249,18,177,19,39,14,9,7,209,1,204,255,111,0,127,1,
18,3,84,4,228,3,163,2,68,255,80,250,91,248,85,250,246,253,188,254,154,250,247,248,239,252,215,255,24,0,170,1,
199,8,166,20,218,26,11,24,80,21,130,21,92,20,96,15,87,9,117,10,211,18,0,23,148,16,234,5,117,2,14,7,
104,9,16,7,191,4,181,3,98,5,30,9,46,12,14,15,11,15,227,8,228,0,2,252,104,251,151,253,99,254,162,250,
70,243,13,239,70,244,223,253,230,2,56,2,120,254,37,251,107,250,9,249,114,245,14,244,80,245,92,243,95,237,208,234,
116,240,182,249,66,254,42,250,255,241,5,238,141,240,40,246,46,252,196,0,180,1,183,255,18,254,170,253,27,252,78,247,
69,241,49,239,57,241,58,242,132,243,138,250,217,2,189,2,208,250,92,245,164,248,178,255,82,1,248,251,215,246,251,245,
94,246,13,248,133,253,29,3,140,3,138,254,93,249,48,250,10,254,254,253,22,251,220,247,56,245,182,245,1,247,203,244,
49,241,180,240,205,244,126,249,108,250,32,250,97,250,199,248,12,246,139,243,165,242,154,246,190,252,44,0,62,3,135,8,
132,13,134,15,122,13,193,9,121,10,12,17,190,21,140,17,56,8,182,1,226,253,97,248,95,242,217,237,27,233,248,228,
103,228,237,230,38,234,125,237,222,242,2,250,206,253,50,253,235,252,80,252,40,246,28,236,67,231,4,236,201,242,156,243,
36,241,5,241,223,244,216,251,211,2,15,7,217,8,24,9,224,7,182,5,162,3,99,1,192,253,66,249,19,246,173,245,
246,246,164,246,233,243,125,241,137,240,221,239,134,240,243,245,197,254,133,4,182,6,126,10,82,15,176,16,6,15,188,14,
75,15,130,11,156,6,62,8,105,12,166,11,253,6,29,2,55,255,116,253,160,250,118,248,239,248,192,251,153,255,145,1,
186,2,171,5,82,7,109,6,105,4,70,0,219,250,215,243,232,234,142,230,180,231,24,231,58,229,217,229,201,230,50,231,
146,233,146,238,185,243,243,246,83,251,49,4,23,13,181,14,145,9,107,6,90,10,129,15,173,15,25,14,98,16,242,21,
6,26,169,26,132,26,189,27,83,30,114,34,53,39,186,42,15,44,230,43,161,44,51,45,86,40,7,30,39,19,171,10,
232,7,183,11,57,15,8,12,91,3,178,250,33,246,193,245,200,248,244,253,155,1,142,3,160,7,193,12,184,14,18,14,
160,14,227,17,189,20,75,18,79,11,152,6,225,6,142,7,24,5,8,0,176,250,26,250,185,0,62,8,163,10,237,10,
253,12,114,14,137,13,247,11,250,7,39,0,85,250,243,249,221,250,89,250,195,248,64,246,150,242,211,237,61,236,206,240,
242,243,162,240,37,238,20,240,135,241,225,240,149,239,80,238,186,238,165,241,31,245,131,246,100,245,160,243,43,242,130,242,
199,247,235,0,189,10,31,20,252,24,78,23,222,20,92,20,20,19,68,15,117,7,132,253,217,245,18,241,37,238,247,234,
163,229,214,225,36,227,48,232,88,237,212,238,168,240,246,251,194,14,250,29,66,35,247,32,117,28,147,22,23,16,199,12,
129,11,48,10,244,9,144,8,54,4,0,254,211,246,119,243,221,246,174,251,160,254,54,2,207,7,184,13,121,17,234,17,
33,14,111,7,126,3,115,2,148,254,211,250,148,253,201,2,197,3,20,1,155,254,245,254,145,0,67,255,197,252,198,254,
162,4,64,10,7,13,118,10,51,6,155,7,221,11,169,11,183,6,236,253,235,242,125,237,56,242,140,251,70,2,248,3,
229,1,175,255,48,0,10,2,107,1,191,252,73,247,105,245,26,247,159,249,245,250,149,250,199,249,132,248,30,246,16,244,
106,241,200,237,25,237,225,237,2,236,254,233,212,234,210,239,88,247,169,250,126,249,94,249,247,249,106,249,169,247,96,245,
157,245,104,249,5,255,161,3,100,4,153,3,157,1,185,250,184,244,160,245,114,247,106,246,155,244,222,241,89,238,115,235,
53,233,63,230,123,226,13,225,175,227,199,233,20,243,130,253,225,6,189,13,104,16,100,17,118,19,61,21,227,21,96,20,
58,18,9,21,87,26,210,26,49,23,41,19,25,16,15,14,89,12,186,11,25,12,58,13,11,17,185,21,71,25,229,29,
133,33,49,33,105,31,243,29,11,29,151,27,139,22,71,15,199,9,36,7,117,6,248,4,223,1,62,0,73,1,237,2,
85,1,83,251,199,245,104,242,104,238,205,235,34,236,205,235,233,232,78,229,105,227,43,226,38,224,201,225,5,233,129,241,
202,249,108,1,44,6,176,7,25,5,94,255,13,252,20,254,213,2,132,5,214,3,8,1,5,0,16,254,165,247,64,239,
149,234,65,234,243,235,221,238,206,240,33,242,203,245,31,248,156,244,231,238,22,237,74,239,50,238,4,232,74,230,164,235,
5,241,85,243,161,242,233,241,233,244,186,247,93,247,201,246,116,245,147,241,130,236,161,232,8,233,138,237,168,242,231,247,
147,254,49,7,137,17,123,27,134,35,159,40,166,39,72,34,227,32,53,38,99,43,112,41,216,32,191,23,220,16,102,10,
27,5,199,0,4,251,64,246,173,243,64,240,240,237,254,239,130,245,131,252,219,1,238,5,213,12,100,20,174,23,245,21,
87,16,234,9,45,5,136,1,164,254,209,252,248,252,83,255,105,1,70,2,140,2,121,2,164,3,112,5,53,7,142,13,
222,25,5,38,121,43,134,39,221,28,97,16,101,4,63,249,189,238,47,230,252,224,168,221,186,220,56,223,227,223,190,219,
117,216,113,218,46,223,252,226,251,229,101,233,241,235,231,236,37,238,62,240,69,240,49,236,13,231,127,228,17,229,74,233,
214,239,190,244,5,248,99,252,251,1,237,6,134,8,182,6,224,5,231,8,238,13,237,16,143,15,243,11,42,9,76,7,
130,5,95,3,39,1,216,255,98,254,148,250,93,245,203,241,74,241,51,241,113,237,92,232,210,231,179,234,109,237,225,240,
147,243,17,242,59,239,47,240,160,244,103,249,41,254,55,4,16,10,103,13,22,15,116,16,166,16,40,14,75,10,117,10,
219,17,131,28,45,35,226,33,47,29,71,29,210,33,3,37,248,37,85,38,16,38,33,36,85,32,95,29,38,28,136,24,
223,17,145,13,63,14,156,17,194,20,10,21,192,16,4,10,220,5,56,6,185,7,192,6,223,3,220,2,110,6,76,11,
242,10,239,5,104,2,40,1,243,255,237,255,6,1,217,0,19,255,42,252,3,248,37,244,209,242,225,242,59,241,64,239,
24,240,136,242,243,244,26,247,51,248,193,249,91,251,138,248,93,243,194,241,163,241,238,237,242,230,187,223,209,218,160,217,
218,219,218,223,91,228,103,232,64,235,216,238,245,243,191,245,198,242,219,240,160,242,152,245,218,247,231,248,240,248,216,247,
68,246,10,247,127,251,203,1,156,6,111,7,157,6,206,7,5,10,172,11,153,12,31,12,219,10,203,9,154,9,126,11,
132,14,180,16,74,17,250,15,64,15,130,17,76,20,225,20,190,18,18,15,148,13,247,14,70,15,255,12,136,10,50,10,
47,11,122,11,20,12,107,12,138,8,23,2,231,254,141,255,253,0,43,2,131,3,12,4,205,3,82,6,26,11,253,11,
230,8,229,7,143,10,205,13,64,15,134,14,166,12,190,11,148,13,2,17,164,18,108,16,188,10,54,3,125,252,180,250,
97,254,131,0,218,253,20,252,132,252,239,251,147,251,34,252,29,252,206,252,173,255,13,4,43,7,163,5,217,0,8,254,
216,254,78,0,137,0,161,0,30,0,12,254,199,252,75,252,77,249,254,244,125,243,139,245,208,248,131,251,61,254,26,1,
101,2,32,1,232,253,40,251,169,250,19,251,200,250,149,248,11,245,234,244,182,249,236,254,190,1,40,1,115,252,111,246,
145,243,50,245,175,247,253,246,47,244,248,241,94,241,34,243,79,246,160,247,118,244,64,239,172,237,158,238,38,237,205,235,
155,239,27,249,27,5,108,12,70,12,208,12,84,21,250,34,250,44,37,43,112,30,183,19,110,20,2,26,207,25,97,19,
179,13,37,15,241,19,119,14,153,251,240,232,85,225,255,226,208,229,119,228,8,226,33,228,62,235,55,244,74,251,25,254,
88,254,132,0,82,6,55,12,144,14,91,13,101,9,103,3,70,254,13,254,106,2,20,5,179,2,140,255,145,254,17,253,
170,249,30,247,85,246,150,244,32,243,105,247,177,1,56,12,48,17,123,13,148,2,157,246,212,240,100,242,103,243,26,238,
112,231,130,230,166,234,228,236,79,234,9,233,143,237,215,242,100,242,60,238,193,238,89,246,142,255,219,7,213,14,238,16,
147,13,113,8,182,3,173,254,231,247,155,241,146,239,64,240,132,241,209,245,5,253,186,2,159,4,215,3,66,3,162,4,
42,7,161,11,227,18,13,24,130,22,69,16,151,9,36,6,185,5,198,2,168,252,241,248,97,247,215,243,240,239,221,240,
80,248,165,1,249,6,31,9,95,12,49,15,70,13,125,9,219,9,97,12,171,11,255,8,19,8,125,8,183,7,21,4,
39,254,144,249,115,250,90,0,85,6,68,9,180,9,38,9,10,9,210,8,39,6,68,1,105,252,19,249,246,247,101,247,
81,245,249,243,110,246,132,251,62,0,207,2,157,2,43,0,185,253,13,254,148,0,149,2,58,5,140,10,210,14,42,14,
186,11,63,12,16,14,124,12,164,8,207,6,122,6,2,6,148,6,136,7,186,6,181,4,141,3,55,3,142,1,120,255,
5,0,222,0,230,254,220,253,95,0,74,2,12,1,210,254,169,252,148,250,128,250,184,252,222,254,195,255,180,255,25,0,
253,0,222,254,112,250,18,249,237,249,59,249,50,248,43,249,1,253,103,2,42,5,56,3,186,255,155,254,236,255,194,1,
186,3,71,5,167,5,91,5,142,3,86,0,89,254,253,252,200,250,77,250,62,252,131,253,73,253,73,253,176,253,101,253,
117,252,81,250,89,245,195,239,130,238,220,241,218,245,60,248,0,249,59,248,36,247,149,247,243,248,163,249,233,249,54,250,
69,250,35,251,68,254,170,1,73,2,246,1,243,2,10,3,174,1,209,0,239,0,116,2,251,3,118,3,23,3,32,4,
68,4,213,2,246,255,246,252,37,253,23,255,187,254,9,254,202,255,183,0,75,254,108,251,178,250,219,250,44,250,0,250,
63,252,134,254,208,253,197,251,223,250,197,250,40,250,116,249,136,250,39,252,64,252,117,253,38,0,55,0,139,253,130,250,
49,248,192,247,160,248,65,249,84,248,1,244,139,238,80,239,133,249,31,6,194,11,222,9,112,5,10,1,69,253,129,249,
25,246,90,246,197,250,52,255,5,0,120,254,100,255,99,2,100,2,65,255,115,251,60,249,184,251,40,1,110,5,39,8,
178,8,194,6,204,4,109,3,166,1,209,0,78,2,181,3,239,2,221,2,110,4,132,3,43,0,241,254,218,0,214,2,
174,1,1,253,51,247,119,243,52,244,227,247,213,250,203,252,15,254,185,252,71,249,186,246,223,246,19,249,202,249,213,246,
95,244,209,246,136,251,241,253,126,253,172,251,64,250,212,250,47,254,102,3,165,5,195,1,94,254,152,2,137,10,138,14,
8,13,122,9,39,7,205,5,213,3,135,1,55,0,230,0,6,3,124,4,76,5,36,7,16,8,195,4,73,255,104,252,
237,252,73,254,203,254,60,255,7,1,122,3,43,5,74,6,200,6,86,6,80,6,52,7,216,7,87,8,154,8,2,7,
246,3,247,1,232,1,250,2,1,5,53,8,66,11,163,12,12,13,137,13,161,14,196,16,178,17,70,15,25,12,15,11,
21,12,8,14,64,15,51,15,55,14,86,12,133,10,243,8,117,7,167,6,41,4,18,255,159,251,80,250,174,248,175,248,
133,252,219,1,79,4,196,2,52,0,139,254,164,254,210,0,129,2,219,2,1,4,48,6,59,8,42,8,129,5,173,3,
233,3,33,4,192,4,207,7,54,12,193,12,9,7,217,255,202,251,165,251,14,254,239,255,24,1,106,3,184,5,245,5,
12,3,174,254,44,253,213,254,209,1,141,5,50,7,194,5,16,4,246,2,13,2,241,0,62,255,43,254,52,254,19,255,
7,1,243,2,191,3,214,2,180,255,172,252,113,252,53,254,222,255,88,0,251,255,219,255,15,1,48,4,59,7,35,8,
159,8,52,9,125,7,171,4,30,4,150,5,169,7,210,9,111,10,246,8,23,6,47,1,21,253,75,255,157,5,246,8,
100,7,91,3,69,0,199,255,214,255,2,255,53,254,115,253,54,252,13,251,168,250,68,250,245,248,137,248,157,250,236,252,
93,253,52,252,23,249,139,244,188,241,163,241,182,241,143,242,240,246,234,251,253,252,28,252,44,253,209,255,19,1,164,0,
177,2,222,7,201,9,181,6,192,3,165,1,249,253,240,249,230,246,200,244,174,244,5,247,146,250,46,254,161,0,207,0,
6,255,145,252,72,250,123,248,234,247,88,249,188,251,101,252,8,250,167,246,6,245,189,245,191,247,70,249,9,249,240,247,
157,247,131,248,108,249,15,248,129,245,100,246,205,250,199,253,126,253,145,252,237,252,206,253,95,254,11,255,130,255,107,255,
100,255,108,255,24,0,113,2,210,4,87,5,232,4,180,4,165,4,114,4,185,3,89,2,117,1,74,2,251,3,80,5,
39,6,211,5,196,4,38,4,92,2,174,255,92,0,90,4,88,7,142,7,181,5,143,3,210,2,1,3,105,2,199,0,
105,0,43,3,240,6,3,9,249,8,198,6,28,4,134,3,237,4,15,8,0,12,19,13,135,10,61,7,75,5,26,6,
15,8,125,7,180,5,22,5,15,4,8,3,92,3,113,2,181,255,6,255,228,1,120,5,37,6,174,2,87,253,124,249,
117,248,46,249,249,249,40,250,132,249,38,248,60,247,62,247,182,247,6,249,89,250,161,249,1,247,199,243,106,241,111,241,
217,242,90,243,3,242,221,239,161,240,1,245,34,247,61,244,179,240,72,240,25,242,184,243,146,245,254,247,132,247,56,244,
232,242,157,244,162,247,223,249,218,248,73,246,203,245,3,248,237,251,174,254,78,254,201,252,90,252,88,254,243,1,14,3,
6,1,144,254,208,251,126,249,193,249,80,252,192,255,250,1,205,0,41,253,41,250,174,249,222,250,143,251,204,251,4,253,
74,254,137,253,127,251,41,251,134,252,118,252,7,251,28,251,232,252,26,254,232,252,204,249,80,247,47,247,64,249,83,252,
208,254,31,0,93,0,235,255,36,0,238,0,131,0,43,255,89,254,100,254,206,254,65,254,53,252,78,250,154,250,96,253,
58,0,44,1,146,1,130,2,167,2,210,1,192,1,35,3,228,4,60,6,8,7,194,6,29,6,224,5,104,4,227,1,
203,0,54,0,31,254,99,252,239,253,242,1,87,4,68,3,186,0,236,254,7,0,179,4,140,8,99,7,116,2,95,253,
90,251,214,252,103,254,95,254,68,255,97,2,226,5,109,8,58,10,206,10,138,8,144,4,94,3,222,5,112,8,226,9,
161,10,86,9,171,6,108,5,99,6,79,8,237,9,77,11,119,12,219,12,249,13,94,16,224,16,11,14,6,10,199,7,
51,8,221,7,8,5,79,3,19,4,126,5,195,6,31,7,110,6,1,5,123,2,179,255,191,253,11,253,227,253,17,255,
179,255,185,255,105,254,222,252,16,252,28,251,160,251,55,254,152,255,18,255,49,254,12,253,218,251,55,251,68,252,216,254,
142,255,116,253,30,251,250,248,251,246,151,246,22,248,202,250,255,252,176,252,26,251,230,250,82,252,216,253,181,253,23,252,
2,251,106,250,196,249,190,250,235,252,5,254,195,254,220,255,205,255,184,254,179,253,203,252,118,252,196,252,4,253,21,253,
32,252,223,249,161,248,59,249,197,249,232,249,134,250,208,250,3,250,204,249,103,252,15,1,189,4,39,6,149,6,146,7,
6,9,55,9,86,7,156,4,190,2,154,2,6,3,125,2,16,2,114,2,128,2,175,2,58,3,46,3,159,3,140,4,
141,3,148,1,91,2,239,5,53,8,27,7,87,5,204,4,87,4,221,3,11,4,183,4,240,5,77,7,32,8,178,8,
18,9,66,8,139,5,126,2,141,1,125,2,183,3,65,5,114,7,143,9,204,10,27,11,167,10,111,9,201,7,203,6,
31,8,140,11,111,13,12,12,255,9,238,8,130,7,65,4,118,1,60,3,236,6,165,6,145,3,29,2,193,3,41,6,
70,5,124,2,3,2,196,2,154,2,170,1,93,0,214,255,83,255,8,253,205,250,2,251,125,252,122,252,17,251,46,251,
127,252,150,252,192,252,202,254,115,1,223,2,72,2,74,0,86,254,134,253,83,253,161,252,137,252,130,253,38,253,114,251,
52,251,233,252,114,254,189,254,108,255,58,1,48,2,168,1,209,0,64,0,201,254,165,250,15,246,254,244,29,246,105,246,
44,246,54,246,15,246,155,245,30,246,253,247,218,249,83,251,14,252,96,251,192,250,50,251,51,252,90,253,70,253,199,251,
234,250,80,251,167,251,7,251,1,251,102,253,226,255,255,255,53,255,19,255,128,255,127,255,120,254,241,253,162,254,36,255,
102,255,20,0,126,0,59,0,60,0,219,0,251,0,138,0,48,0,217,254,165,252,144,251,198,250,233,248,235,247,99,248,
129,248,53,249,204,251,29,254,98,254,45,253,8,252,78,252,12,253,84,253,155,254,45,0,168,255,1,254,106,253,237,253,
127,254,249,254,35,0,238,1,168,3,188,4,118,4,59,3,79,2,63,2,187,2,152,2,231,1,251,1,147,1,86,255,
164,253,90,254,7,0,247,0,25,1,43,1,171,1,69,2,16,2,223,0,71,255,115,253,235,251,213,251,156,253,54,0,
149,1,216,1,98,2,116,1,163,254,42,253,2,254,129,0,146,3,206,4,251,4,222,5,10,6,240,5,89,7,15,9,
253,9,9,10,98,8,42,6,234,5,156,6,38,5,8,2,227,255,117,255,25,0,235,0,0,2,238,3,117,5,124,5,
26,5,151,5,185,6,114,6,207,3,16,1,244,255,231,255,216,255,119,255,20,255,45,254,136,252,22,251,234,249,101,249,
1,250,183,250,121,251,92,252,236,252,201,254,50,2,102,4,40,4,137,2,251,0,200,255,244,254,156,255,65,1,82,2,
135,2,89,1,113,255,152,254,115,254,0,254,35,253,49,252,145,251,205,250,192,249,229,248,170,248,76,249,248,248,13,247,
239,245,159,245,23,246,237,248,231,251,230,252,85,252,15,250,142,248,245,249,126,251,132,251,16,251,178,250,254,249,9,248,
209,246,200,248,28,251,132,251,2,252,191,252,218,251,14,250,245,249,239,251,187,253,229,254,7,1,87,3,130,3,18,1,
91,253,162,250,120,250,249,251,19,253,232,252,114,252,89,252,69,251,118,249,13,250,106,253,47,0,238,0,218,1,141,4,
176,6,174,5,133,3,148,2,112,1,134,255,46,255,12,1,178,2,163,2,144,1,24,0,150,255,193,1,184,4,179,5,
135,5,81,5,203,4,166,4,118,5,154,6,122,7,2,8,106,8,28,9,21,10,27,10,19,8,111,5,92,4,100,4,
168,4,75,6,90,8,150,7,16,5,102,4,37,5,64,5,37,4,39,2,169,0,225,255,93,255,118,0,128,2,42,3,
19,3,72,3,148,3,81,4,137,5,85,6,233,5,13,5,63,5,117,5,201,3,168,0,220,253,12,253,177,253,163,253,
35,253,203,253,213,254,99,254,192,252,204,251,223,251,50,252,160,252,218,252,43,253,58,254,37,255,99,255,2,255,131,253,
22,252,77,252,156,253,74,255,216,0,249,0,32,255,22,253,0,253,36,254,156,254,83,254,36,254,27,255,242,0,158,1,
255,0,103,0,186,255,243,254,29,254,195,252,156,251,171,251,40,253,87,255,138,0,75,0,91,255,226,253,130,252,247,251,
239,251,107,252,242,252,91,252,94,251,22,251,24,251,206,251,139,253,210,254,103,255,78,0,245,0,88,0,121,254,123,252,
150,252,19,255,195,1,208,3,146,5,101,6,183,5,214,3,221,1,210,0,27,0,119,255,251,255,97,1,187,2,206,3,
213,3,246,2,227,1,34,0,45,255,232,0,71,3,116,4,15,5,18,5,77,4,147,2,242,255,108,254,223,254,58,255,
169,254,124,254,15,255,45,255,26,254,186,252,60,252,207,252,31,254,47,0,208,2,199,4,39,5,120,4,212,3,20,4,
177,4,156,4,27,4,6,3,166,0,254,253,163,252,250,252,105,253,76,252,48,251,185,250,31,249,127,247,6,247,164,246,
132,247,92,250,127,252,6,252,65,250,90,250,166,252,48,254,117,254,196,254,128,255,125,1,25,4,73,5,59,5,188,4,
129,3,26,2,86,1,93,0,82,254,166,252,9,253,254,254,54,1,57,3,29,5,21,6,28,5,173,3,93,3,251,2,
226,1,219,0,168,0,44,2,25,4,246,3,178,2,125,2,173,2,212,1,181,0,151,0,248,0,232,1,247,4,23,10,
67,15,129,17,154,14,186,8,209,3,129,0,241,253,116,252,73,253,117,0,14,3,253,2,41,1,106,254,146,252,34,254,
99,1,203,2,30,2,206,0,156,255,62,254,112,252,148,251,72,252,237,252,68,253,243,253,44,254,34,254,139,254,191,254,
16,255,22,0,28,1,45,2,36,3,13,3,97,2,147,1,117,0,179,255,235,254,61,253,148,251,243,250,115,251,200,252,
73,254,136,255,206,255,132,254,131,252,232,250,2,250,124,249,0,249,211,248,129,248,208,247,248,247,52,248,248,246,31,246,
84,247,105,249,238,250,184,251,209,252,131,254,129,255,173,254,122,251,101,247,76,246,138,250,230,2,175,10,6,13,3,10,
142,4,170,254,254,249,108,247,24,248,124,252,108,1,52,4,244,4,129,3,134,0,252,253,117,252,120,251,23,251,194,251,
205,252,5,253,249,252,67,253,14,253,209,251,24,250,165,249,133,251,135,254,56,1,77,2,81,1,71,0,226,0,168,2,
113,4,134,5,34,6,33,6,65,5,121,4,2,4,175,3,47,4,34,5,207,5,137,6,91,7,170,7,60,7,25,7,
125,7,160,6,134,4,62,3,171,3,68,5,140,6,180,6,5,6,224,3,109,0,185,253,82,253,238,254,194,0,77,2,
35,4,241,4,97,4,156,3,122,2,111,1,238,0,29,0,43,255,97,254,233,253,98,254,18,255,80,255,101,255,8,255,
86,254,35,254,237,254,5,0,38,0,157,255,65,255,60,255,125,255,208,254,24,253,209,251,245,250,7,251,29,253,85,255,
242,255,7,0,199,0,92,1,95,0,217,254,79,254,135,254,117,255,57,0,190,255,80,255,162,255,158,255,229,254,107,254,
249,254,37,255,22,255,166,1,147,4,58,3,61,255,136,252,13,252,126,252,111,252,179,252,8,254,62,255,204,255,48,0,
201,0,30,1,112,0,122,255,16,255,161,255,186,1,56,4,4,6,137,7,5,8,198,6,255,4,42,4,222,4,196,5,
212,4,75,2,48,0,161,255,156,255,169,255,195,0,73,1,219,254,85,251,30,249,180,247,140,246,82,246,28,248,104,252,
167,1,57,5,226,5,95,4,87,2,55,1,50,1,107,1,46,1,16,0,143,254,3,254,232,253,19,253,240,252,219,254,
36,2,82,5,112,6,96,5,243,3,140,2,126,1,166,1,36,2,68,2,46,2,184,1,213,1,217,2,28,3,86,2,
78,1,247,255,145,254,61,253,216,251,240,250,189,250,247,250,109,251,252,251,225,252,211,253,74,254,131,254,234,253,44,252,
247,250,241,250,94,251,76,252,170,253,54,255,135,0,8,1,176,1,244,2,30,3,16,2,117,1,182,1,19,2,203,1,
39,1,73,0,8,254,220,251,247,252,91,255,69,255,69,254,239,254,33,0,75,0,233,255,51,0,255,0,238,0,7,0,
105,255,236,254,253,253,72,253,173,253,229,253,220,251,13,249,72,248,21,249,83,250,33,252,43,254,211,255,39,0,14,255,
13,254,111,253,104,253,179,255,115,3,149,5,117,5,131,4,118,3,142,1,132,254,60,252,114,252,99,254,36,0,215,0,
233,0,214,0,136,0,70,255,253,252,29,251,35,250,194,249,252,250,56,253,77,254,24,254,114,253,14,253,106,253,20,254,
37,255,160,0,118,1,186,1,196,1,124,1,226,1,227,2,254,2,100,2,61,2,119,2,97,2,225,1,151,1,56,2,
188,3,233,4,36,5,118,5,17,6,62,6,42,6,168,5,209,4,17,5,243,5,163,5,139,4,211,3,92,3,241,2,
70,2,76,1,23,1,232,1,164,2,14,3,39,3,106,2,159,1,77,2,47,4,80,5,230,4,12,4,36,3,203,1,
99,0,58,255,182,254,209,254,157,254,254,254,201,0,77,2,19,3,98,3,103,2,64,1,166,1,38,3,188,4,229,5,
179,6,250,6,11,6,24,4,198,1,229,255,48,255,183,254,191,253,34,253,47,253,100,253,111,253,165,253,103,254,0,255,
246,254,174,254,192,254,155,255,188,255,153,253,227,250,29,249,245,247,118,247,168,247,142,248,225,249,86,250,166,249,31,249,
196,249,20,251,37,252,150,253,93,255,26,0,139,0,171,1,59,2,190,1,13,1,173,0,98,0,111,255,57,254,30,254,
55,255,43,0,1,0,155,255,26,0,251,0,198,1,178,2,48,3,108,2,136,0,156,254,250,253,34,255,25,1,75,2,
168,2,162,2,124,1,171,255,197,254,15,255,77,0,194,1,96,2,77,2,146,1,15,0,15,255,124,255,169,0,104,1,
23,1,81,0,247,255,254,255,234,255,218,255,154,0,187,1,232,1,114,1,16,1,254,255,226,253,242,251,180,250,32,249,
189,247,73,248,189,249,35,250,223,249,23,250,89,251,166,252,167,252,170,252,156,253,58,254,233,254,137,0,188,1,90,1,
56,0,175,255,205,255,247,255,1,0,166,255,118,255,231,255,139,255,129,254,180,254,105,255,53,255,162,254,0,254,39,253,
100,252,247,251,175,251,230,250,197,249,163,249,119,250,197,250,69,250,156,249,83,249,89,250,83,252,79,253,98,253,231,253,
133,254,213,254,41,255,81,255,29,255,228,254,148,255,66,1,49,2,199,1,252,0,56,0,40,0,15,1,28,2,85,3,
85,4,39,4,113,3,237,2,123,2,15,2,128,1,64,1,195,1,82,2,195,2,131,3,95,4,84,5,102,6,2,7,
9,7,8,7,247,6,46,6,32,5,194,4,166,4,108,4,95,4,16,4,169,3,10,4,237,4,151,5,71,5,223,3,
239,2,228,2,199,2,126,3,161,5,158,7,205,8,89,9,252,8,41,8,100,7,193,6,195,6,157,7,157,8,190,8,
106,7,14,5,114,2,69,0,40,255,111,254,53,253,129,252,234,252,146,253,106,254,252,254,34,254,247,252,141,252,192,251,
118,250,136,249,6,249,152,249,32,251,138,251,87,250,161,249,176,250,28,252,34,252,71,251,175,250,67,250,229,249,152,249,
105,249,156,249,229,249,133,250,50,252,223,253,49,254,90,253,51,252,228,251,190,252,128,253,140,253,173,253,67,254,2,255,
53,0,246,1,237,2,166,2,76,2,241,1,185,1,118,2,206,2,97,1,106,255,237,253,190,252,203,251,250,250,118,250,
140,250,3,251,134,251,194,251,174,251,247,251,210,252,151,253,138,254,62,0,218,1,171,2,48,3,113,3,203,2,244,0,
239,254,91,254,47,255,117,0,245,1,123,3,228,4,178,5,83,5,243,4,245,4,191,3,150,1,32,0,211,255,92,0,
1,1,87,1,33,1,83,0,249,255,52,0,70,0,206,0,65,1,38,0,173,254,220,254,80,0,163,0,45,255,111,254,
2,255,241,254,93,254,55,254,100,254,188,254,181,254,89,254,87,254,84,254,11,254,254,253,6,254,184,253,184,253,251,254,
164,0,69,1,113,1,1,2,181,2,80,3,87,3,156,2,239,1,201,1,205,1,211,1,96,2,68,3,66,3,140,2,
35,2,161,1,18,1,11,1,27,1,61,1,221,1,137,2,214,2,0,3,74,3,42,3,87,2,207,1,135,1,149,0,
194,255,117,255,221,254,145,254,50,255,212,255,28,0,171,0,150,1,21,2,134,1,83,0,109,255,69,255,119,255,116,255,
93,255,119,255,93,255,185,254,28,254,108,254,147,255,186,0,200,1,137,2,100,2,55,2,213,2,47,3,237,2,102,3,
32,5,232,6,99,7,202,6,252,5,21,5,52,4,130,3,239,2,157,2,58,2,180,1,182,1,102,1,214,255,201,254,
122,255,110,0,220,0,134,1,236,1,245,0,134,255,162,254,42,254,10,255,39,1,47,2,195,1,4,1,249,255,210,254,
17,253,30,250,112,248,179,249,129,251,127,252,229,253,146,255,12,0,202,254,227,252,255,251,40,252,175,252,23,254,60,0,
162,1,131,1,4,0,213,253,133,251,59,249,44,248,249,248,97,250,214,251,231,252,212,252,106,252,239,251,8,251,109,250,
213,249,22,249,115,249,184,250,224,251,230,252,22,254,103,255,31,0,26,0,184,255,184,254,100,254,194,255,235,0,98,1,
73,2,38,3,205,3,116,4,143,4,105,4,76,4,138,3,116,2,111,2,111,3,239,3,219,3,59,4,176,4,159,4,
33,4,234,2,19,1,121,255,96,254,66,253,41,252,9,252,253,252,19,254,205,254,28,255,32,255,235,254,157,254,251,254,
44,0,207,1,181,3,115,4,156,3,233,2,57,2,207,0,171,255,5,255,156,254,154,254,213,254,132,255,49,0,206,255,
17,255,15,255,79,255,42,255,226,254,28,255,229,255,211,0,162,1,137,1,185,255,51,253,240,251,228,251,158,251,120,251,
46,252,152,252,55,252,10,252,112,252,15,253,130,253,243,253,144,254,143,254,218,253,98,253,105,253,195,253,202,253,36,253,
112,253,181,255,85,2,91,3,176,2,221,1,75,1,225,255,188,254,135,255,212,0,107,1,249,1,82,2,33,2,165,1,
186,0,181,255,44,255,228,254,146,254,2,254,72,253,55,253,234,253,140,254,42,255,100,0,196,1,2,2,63,1,83,1,
127,2,83,3,243,3,250,4,195,5,37,6,29,6,96,5,160,4,13,4,247,2,39,2,73,2,87,2,31,2,17,2,
144,1,209,0,129,0,3,0,88,255,25,255,5,255,95,255,61,0,196,0,84,1,73,2,145,2,248,1,86,1,253,0,
197,0,149,0,154,0,210,0,3,1,46,1,6,1,90,0,163,255,236,254,20,254,145,253,120,253,96,253,111,253,7,254,
141,254,105,254,93,254,113,254,148,253,66,252,170,251,195,251,46,252,156,252,147,252,251,251,84,251,57,251,133,251,207,251,
77,252,8,253,167,253,23,254,27,254,75,253,68,252,108,252,237,253,109,255,21,0,242,255,52,255,111,254,24,254,44,254,
147,254,245,254,230,254,117,254,133,254,174,255,171,0,110,0,245,255,181,255,122,255,4,0,255,0,254,0,67,0,178,255,
14,255,34,254,48,253,148,252,25,253,168,254,180,255,215,255,200,255,184,255,252,255,98,0,68,0,20,0,3,0,4,0,
144,0,8,1,41,1,167,1,37,2,123,2,151,2,198,1,175,0,46,0,84,0,10,1,70,1,7,1,71,1,138,1,
18,2,6,3,51,3,121,3,83,4,87,4,83,4,174,4,35,4,143,3,159,3,147,3,134,3,60,3,129,2,58,2,
65,2,217,1,52,1,127,0,227,255,221,255,51,0,73,0,43,0,231,255,85,255,9,255,147,255,178,0,21,2,54,3,
151,3,115,3,167,2,41,1,211,255,229,254,162,254,194,255,72,1,224,1,246,1,245,1,206,1,204,1,251,1,237,1,
40,1,12,0,133,255,118,255,173,255,46,0,44,0,53,0,89,1,17,2,152,1,69,1,245,0,161,0,81,1,235,1,
72,1,205,0,5,1,205,0,75,0,114,0,79,1,95,2,185,2,215,1,120,0,61,255,60,254,201,253,220,253,61,254,
253,254,36,0,178,1,166,2,49,2,184,1,201,1,37,1,55,0,26,0,185,0,203,1,236,2,238,3,164,4,113,4,
128,3,67,2,219,0,82,0,243,0,72,1,255,0,68,1,16,2,242,1,121,0,252,254,216,254,61,0,12,2,131,2,
76,1,212,255,247,254,68,254,145,253,78,253,84,253,30,253,217,252,246,252,135,253,71,254,163,254,70,254,142,253,23,253,
239,252,5,253,177,253,71,254,255,253,192,253,140,253,189,252,100,252,103,252,244,251,24,252,171,252,153,252,113,252,156,252,
1,253,122,253,100,253,212,252,63,252,237,251,57,252,211,252,98,253,8,254,102,254,57,254,8,254,79,254,149,254,99,254,
87,254,87,254,196,253,59,253,232,252,196,252,124,253,88,254,191,254,114,255,54,0,115,0,46,0,108,255,160,254,107,254,
12,255,184,255,154,255,112,255,111,255,125,255,156,0,179,1,76,1,188,0,67,0,64,255,139,254,94,254,188,254,206,255,
208,0,133,1,244,1,168,1,255,0,185,0,212,0,22,1,141,1,211,1,119,1,143,1,78,2,20,2,192,1,215,2,
195,3,171,3,153,3,138,3,55,3,214,2,122,2,49,2,233,1,189,1,232,1,40,2,49,2,36,2,224,1,24,1,
61,0,26,0,223,0,251,1,97,2,2,2,238,1,16,2,36,2,208,2,195,3,176,4,67,5,37,4,44,2,47,1,
225,0,19,1,142,1,178,1,100,2,173,3,234,4,138,6,55,7,95,5,15,2,146,254,192,251,241,249,211,248,64,249,
39,251,121,252,168,252,74,252,220,251,111,252,230,253,31,255,7,0,109,0,254,255,122,255,88,255,106,255,179,255,48,0,
206,0,233,0,227,255,197,254,119,254,59,254,196,253,155,253,70,254,215,255,219,0,131,0,95,0,219,0,201,0,18,0,
252,254,223,253,119,253,132,253,140,253,221,253,121,254,26,255,193,255,99,0,227,0,35,1,33,1,37,1,31,1,102,0,
13,255,59,254,4,254,174,253,199,253,100,254,167,254,59,255,75,0,93,0,127,255,136,254,175,253,164,253,73,254,192,254,
27,255,125,255,245,255,195,0,147,1,229,1,59,1,16,0,184,255,162,255,1,255,192,254,173,254,134,254,210,254,114,254,
90,253,19,253,77,253,160,253,248,253,138,253,21,253,73,253,87,253,145,253,55,254,164,254,32,255,140,255,119,255,152,255,
219,255,164,255,154,255,203,255,162,255,226,255,220,0,159,1,24,2,141,2,165,2,72,2,166,1,32,1,208,0,75,0,
41,0,21,1,32,2,95,2,210,1,73,1,153,1,28,2,74,2,64,2,169,1,37,1,237,0,82,0,96,0,54,1,
171,1,114,2,39,3,149,2,171,1,189,0,67,255,65,253,61,251,9,251,215,252,183,254,130,0,12,2,114,2,45,2,
48,1,210,255,64,255,199,254,132,254,252,255,50,2,158,3,54,4,231,3,254,2,254,1,253,0,66,0,125,255,94,254,
164,253,58,253,167,252,20,253,178,254,177,255,163,255,110,255,54,255,52,255,221,255,250,0,32,2,25,3,167,3,161,3,
52,3,172,2,248,1,31,1,128,0,243,255,13,255,69,254,101,254,10,255,70,255,111,255,13,0,121,0,92,0,236,255,
59,255,153,254,0,254,115,253,168,253,92,254,206,254,36,255,95,255,122,255,160,255,136,255,127,255,43,0,2,1,101,1,
196,1,85,2,145,2,109,2,42,2,162,1,57,1,105,1,187,1,225,1,172,1,217,0,3,0,150,255,30,255,189,254,
11,255,17,0,32,1,237,1,236,2,187,3,215,3,233,3,193,3,157,2,48,1,92,0,18,0,212,255,95,255,11,255,
211,254,85,254,198,253,118,253,178,253,106,254,3,255,185,255,192,0,225,0,196,255,147,254,232,253,171,253,192,253,5,254,
215,254,95,0,103,1,136,1,28,2,37,3,111,3,33,3,182,2,41,2,153,1,5,1,157,0,185,0,89,1,22,2,
41,2,150,1,241,0,19,0,108,255,108,255,82,255,134,255,94,0,156,0,45,0,190,255,199,255,157,0,0,1,162,0,
238,0,15,1,48,0,139,255,252,254,32,254,214,253,216,253,108,253,228,252,177,252,219,252,49,253,174,253,111,254,43,255,
133,255,180,255,204,255,116,255,231,254,228,254,147,255,146,0,19,1,144,0,165,255,208,254,45,254,18,254,21,254,19,254,
136,254,6,255,127,255,183,255,160,254,64,253,165,252,2,252,221,251,134,252,34,253,27,254,81,255,12,0,162,0,253,0,
248,0,173,0,26,0,1,0,52,0,202,255,45,255,128,254,166,253,30,253,168,252,27,252,214,251,36,252,127,253,29,255,
141,255,10,255,89,254,235,253,237,253,14,254,123,254,87,255,4,0,74,0,78,0,8,0,181,255,198,255,32,0,245,255,
102,255,145,255,54,0,112,0,116,0,94,0,232,255,116,255,107,255,98,255,66,255,178,255,37,0,150,255,172,254,47,254,
59,254,190,254,5,255,5,255,126,255,137,0,208,1,70,2,121,1,226,0,246,0,244,0,13,1,70,1,133,1,244,1,
87,2,202,2,66,3,85,3,96,3,182,3,17,4,244,3,73,3,181,2,73,2,224,1,241,1,250,1,148,1,65,1,
208,0,81,0,17,0,201,255,221,255,27,0,208,255,148,255,144,255,83,255,78,255,176,255,0,0,222,255,108,255,13,255,
169,254,123,254,204,254,33,255,118,255,119,255,159,254,248,253,229,253,10,254,177,254,245,254,149,254,212,254,77,255,126,255,
169,255,83,255,252,254,30,255,23,255,55,255,181,255,47,0,162,0,169,0,67,0,173,255,200,254,95,254,158,254,154,254,
141,254,157,254,116,254,85,254,44,254,222,253,120,253,252,252,33,253,205,253,31,254,110,254,228,254,12,255,75,255,7,0,
222,0,35,1,5,1,54,1,253,0,248,255,118,255,188,255,54,0,242,0,200,1,133,2,241,2,221,2,159,2,96,2,
55,2,43,2,196,1,81,1,85,1,118,1,139,1,163,1,139,1,11,1,156,0,52,1,183,1,254,0,253,0,251,1,
30,2,10,2,57,2,20,2,41,2,237,1,2,1,204,0,6,1,229,0,53,1,12,2,169,2,157,2,252,1,123,1,
70,1,23,1,62,1,140,1,155,1,226,1,55,2,233,1,150,1,250,1,144,2,206,2,154,2,247,1,6,1,8,0,
133,255,148,255,139,255,87,255,71,255,105,255,233,255,48,0,165,255,20,255,211,254,94,254,188,253,51,253,39,253,157,253,
39,254,251,254,47,0,191,0,212,255,244,253,158,252,200,252,87,254,97,0,115,1,192,1,162,2,36,3,152,1,198,254,
248,252,129,253,236,254,54,255,14,255,207,255,102,1,40,3,40,4,45,4,201,3,254,2,214,1,19,1,219,0,86,0,
129,255,97,255,222,255,82,0,1,1,89,1,130,0,93,255,215,254,194,254,151,254,203,253,183,252,101,252,94,253,110,255,
151,1,244,2,179,3,82,4,220,4,205,4,217,3,216,2,111,2,2,2,29,1,85,0,98,0,245,0,72,1,146,1,
255,1,251,1,195,1,182,1,131,1,150,1,2,2,207,1,53,1,228,0,172,0,145,0,124,0,84,0,67,0,192,255,
27,255,35,255,209,254,213,253,98,253,191,253,183,254,168,255,243,255,28,0,253,255,120,255,109,255,86,255,165,254,52,254,
37,254,16,254,183,253,109,253,239,253,135,254,182,254,104,255,49,0,44,0,186,255,30,255,138,254,90,254,85,254,232,253,
25,253,218,252,81,253,191,253,67,254,252,254,187,255,94,0,42,0,101,255,17,255,174,254,213,253,44,253,9,253,88,253,
171,253,193,253,235,253,46,254,45,254,152,253,164,252,208,251,14,251,138,250,180,250,61,251,191,251,77,252,49,253,29,254,
64,254,18,254,52,254,67,254,163,254,12,255,158,254,212,254,2,0,56,0,233,255,42,0,54,0,63,0,231,0,95,1,
78,1,99,1,133,1,107,1,109,1,56,1,165,0,124,0,131,0,106,0,170,0,172,0,63,0,50,0,48,0,250,255,
25,0,102,0,152,0,151,0,69,0,198,255,252,254,234,253,247,252,49,252,250,251,215,252,21,254,199,254,222,254,133,254,
61,254,174,254,109,255,142,255,249,254,77,254,123,254,134,255,18,0,248,255,141,0,159,1,210,1,54,1,245,0,92,1,
159,1,47,1,49,0,50,255,140,254,35,254,54,254,253,254,220,255,188,0,75,1,187,0,43,0,56,0,142,255,42,255,
48,0,138,0,212,255,223,255,46,0,1,0,60,0,200,0,50,1,213,1,55,2,14,2,69,2,201,2,247,2,30,3,
92,3,172,3,238,3,124,3,168,2,113,2,153,2,99,2,244,1,203,1,182,1,113,1,126,1,145,1,235,0,86,0,
111,0,133,0,88,0,62,0,96,0,203,0,178,1,168,2,25,2,249,255,115,254,140,254,179,255,222,0,19,1,210,0,
219,0,185,0,63,0,223,255,251,255,120,0,229,0,131,1,70,2,112,2,103,2,177,2,218,2,223,2,168,2,205,1,
212,0,113,0,121,0,118,0,65,0,44,0,75,0,11,0,89,255,136,254,151,253,16,253,32,253,253,252,43,253,33,254,
134,254,147,254,77,255,214,255,30,0,173,0,14,1,123,1,227,1,161,1,52,1,237,0,163,0,134,0,145,0,135,0,
235,255,217,254,109,254,171,254,203,254,153,254,250,253,113,253,161,253,70,254,229,254,33,255,94,255,73,0,251,0,182,0,
74,0,68,0,156,0,251,0,199,0,255,255,242,254,35,254,121,254,229,255,242,0,233,0,204,0,89,1,198,1,76,1,
110,0,23,0,42,0,0,0,167,255,16,255,75,254,72,254,239,254,87,255,155,255,150,255,63,255,132,255,109,0,5,1,
25,1,53,1,86,1,36,1,40,1,94,1,231,0,34,0,139,255,58,255,188,255,99,0,92,0,71,0,77,0,88,0,
149,0,170,0,138,0,109,0,121,0,180,0,164,0,120,0,144,0,143,0,176,0,225,0,109,0,183,255,40,255,178,254,
209,254,161,255,103,0,171,0,203,0,9,1,248,0,150,0,60,0,74,0,235,0,248,0,33,0,209,255,244,255,211,255,
200,255,186,255,172,255,214,255,175,255,12,255,126,254,109,254,168,254,65,255,103,0,3,1,181,0,100,0,253,255,34,0,
6,1,211,0,11,0,44,0,79,0,57,0,37,0,232,255,247,255,217,255,135,255,222,255,240,255,39,255,123,254,13,254,
114,253,254,252,94,253,34,254,167,254,213,255,55,1,46,1,128,0,246,255,55,255,222,254,230,254,148,254,88,254,180,254,
14,255,237,254,29,255,204,255,205,255,39,255,118,254,244,253,131,254,157,255,252,255,136,0,189,1,105,2,28,2,100,1,
57,1,200,1,2,2,157,1,28,1,113,0,162,255,250,254,69,254,109,253,17,253,111,253,205,253,205,253,213,253,66,254,
245,254,93,255,133,255,14,0,164,0,116,0,213,255,163,255,222,255,238,255,209,255,211,255,0,0,84,0,75,0,175,255,
123,255,211,255,178,255,47,255,23,255,130,255,29,0,134,0,194,0,14,1,27,1,180,0,82,0,49,0,56,0,122,0,
201,0,250,0,249,0,115,0,219,255,184,255,165,255,230,255,99,0,197,255,105,254,134,253,52,253,196,253,0,255,39,0,
25,1,55,1,92,0,117,255,226,254,211,254,55,255,186,255,107,0,211,0,203,0,8,1,137,1,3,2,8,2,147,1,
219,1,137,2,69,2,155,1,61,1,131,1,133,2,244,2,112,2,173,1,162,0,218,255,171,255,158,255,219,255,231,255,
75,255,6,255,22,255,235,254,22,255,131,255,212,255,103,0,252,0,53,1,69,1,222,0,14,0,165,255,208,255,88,0,
40,1,223,1,247,1,115,1,26,1,11,1,200,0,242,0,90,1,16,1,42,1,159,1,229,0,172,255,111,254,68,253,
140,253,132,254,58,255,100,0,251,0,202,0,76,1,240,1,248,1,119,1,131,0,34,0,96,0,63,0,255,255,26,0,
123,0,178,0,122,0,42,0,192,255,114,255,178,255,255,255,68,0,207,0,75,1,168,1,140,1,189,0,37,0,243,255,
186,255,199,255,228,255,63,255,20,254,156,253,14,254,131,254,250,254,182,255,52,0,230,255,192,254,233,253,90,254,113,255,
160,0,82,1,52,1,48,1,232,0,224,255,103,255,105,255,57,255,37,255,252,254,23,255,150,255,137,255,34,255,198,254,
125,254,172,254,218,254,196,254,206,254,199,254,219,254,217,254,86,254,81,254,238,254,2,255,165,254,137,254,169,254,192,254,
187,254,145,254,47,254,233,253,210,253,106,253,226,252,203,252,29,253,167,253,28,254,74,254,127,254,17,255,145,255,130,255,
148,255,56,0,234,0,181,1,43,2,114,1,107,0,185,255,220,254,10,254,172,253,29,254,38,255,132,255,33,255,231,254,
3,255,100,255,4,0,240,0,180,1,171,1,106,1,21,1,88,0,10,0,238,255,111,255,140,255,29,0,101,0,108,0,
212,255,17,255,224,254,2,255,116,255,223,255,225,255,4,0,53,0,53,0,48,0,4,0,16,0,90,0,49,0,219,255,
160,255,57,255,18,255,177,255,238,0,241,1,13,2,193,1,146,1,111,1,124,1,146,1,121,1,62,1,138,0,114,255,
183,254,137,254,205,254,188,255,30,1,37,2,99,2,61,2,21,2,180,1,58,1,97,1,19,2,95,2,36,2,226,1,
127,1,23,1,111,1,48,2,53,2,174,1,76,1,167,0,171,255,64,255,201,255,192,0,88,1,61,1,231,0,199,0,
240,0,46,1,14,1,236,0,33,1,209,0,38,0,25,0,31,0,4,0,116,0,249,0,43,1,85,1,50,1,183,0,
118,0,139,0,160,0,162,0,148,0,63,0,242,255,83,0,33,1,162,1,131,1,237,0,158,0,243,0,136,1,13,2,
65,2,56,2,38,2,133,1,141,0,61,0,87,0,128,0,234,0,60,1,103,1,93,1,159,0,241,255,81,0,43,1,
207,1,242,1,73,1,107,0,15,0,180,255,17,255,225,254,1,255,198,254,206,254,88,255,60,255,130,254,103,254,237,254,
86,255,129,255,148,255,171,255,195,255,171,255,88,255,9,255,205,254,122,254,86,254,195,254,84,255,132,255,122,255,70,255,
243,254,14,255,205,255,88,0,240,255,38,255,183,254,103,254,22,254,7,254,19,254,53,254,170,254,70,255,176,255,171,255,
102,255,107,255,189,255,215,255,122,255,251,254,223,254,8,255,41,255,94,255,94,255,253,254,220,254,39,255,139,255,247,255,
52,0,18,0,184,255,106,255,77,255,16,255,159,254,160,254,36,255,122,255,98,255,65,255,106,255,128,255,52,255,14,255,
90,255,190,255,255,255,4,0,221,255,186,255,113,255,251,254,201,254,223,254,221,254,186,254,176,254,195,254,227,254,77,255,
9,0,103,0,252,255,65,255,191,254,174,254,236,254,16,255,65,255,226,255,142,0,222,0,219,0,108,0,194,255,70,255,
249,254,250,254,94,255,214,255,51,0,94,0,60,0,7,0,0,0,29,0,3,0,138,255,62,255,118,255,227,255,84,0,
162,0,117,0,222,255,114,255,110,255,26,255,91,254,130,254,205,255,1,1,181,1,30,2,33,2,138,1,25,0,98,254,
150,253,208,253,88,254,228,254,125,255,44,0,162,0,143,0,68,0,24,0,253,255,55,0,227,0,77,1,6,1,144,0,
113,0,137,0,109,0,8,0,191,255,227,255,94,0,244,0,68,1,248,0,96,0,1,0,218,255,225,255,71,0,231,0,
71,1,24,1,127,0,228,255,103,255,29,255,127,255,137,0,75,1,71,1,5,1,235,0,147,0,206,255,47,255,14,255,
5,255,9,255,142,255,101,0,221,0,194,0,119,0,81,0,107,0,160,0,158,0,95,0,53,0,42,0,15,0,14,0,
139,0,119,1,243,1,85,1,78,0,245,255,63,0,79,0,244,255,242,255,132,0,242,0,233,0,160,0,6,0,29,255,
110,254,124,254,36,255,247,255,161,0,210,0,132,0,9,0,135,255,58,255,107,255,253,255,168,0,11,1,15,1,246,0,
140,0,176,255,23,255,69,255,1,0,194,0,14,1,231,0,112,0,208,255,116,255,146,255,4,0,153,0,233,0,169,0,
13,0,107,255,240,254,161,254,145,254,207,254,65,255,200,255,41,0,42,0,247,255,217,255,237,255,56,0,127,0,143,0,
172,0,12,1,93,1,88,1,12,1,116,0,191,255,155,255,38,0,180,0,193,0,96,0,23,0,30,0,16,0,225,255,
234,255,58,0,178,0,7,1,242,0,146,0,25,0,185,255,161,255,197,255,21,0,148,0,28,1,110,1,119,1,84,1,
13,1,169,0,108,0,110,0,116,0,67,0,226,255,151,255,90,255,2,255,230,254,59,255,182,255,23,0,51,0,23,0,
254,255,220,255,162,255,126,255,141,255,198,255,21,0,114,0,183,0,153,0,26,0,142,255,23,255,177,254,146,254,227,254,
94,255,151,255,106,255,18,255,14,255,123,255,235,255,72,0,166,0,204,0,207,0,231,0,237,0,160,0,15,0,179,255,
190,255,190,255,127,255,74,255,110,255,201,255,197,255,133,255,163,255,220,255,236,255,43,0,137,0,163,0,102,0,3,0,
198,255,215,255,43,0,107,0,86,0,65,0,57,0,225,255,100,255,48,255,97,255,168,255,182,255,204,255,252,255,248,255,
250,255,29,0,25,0,9,0,11,0,4,0,23,0,119,0,9,1,84,1,2,1,104,0,254,255,224,255,251,255,69,0,
145,0,120,0,31,0,17,0,35,0,17,0,5,0,213,255,160,255,233,255,131,0,246,0,245,0,116,0,8,0,254,255,
221,255,115,255,0,255,232,254,114,255,76,0,228,0,244,0,93,0,81,255,164,254,12,255,24,0,224,0,99,1,210,1,
159,1,104,0,166,254,46,253,185,252,107,253,182,254,242,255,207,0,85,1,140,1,89,1,196,0,45,0,238,255,241,255,
0,0,31,0,93,0,173,0,202,0,110,0,244,255,174,255,62,255,217,254,16,255,133,255,225,255,77,0,143,0,127,0,
117,0,162,0,194,0,121,0,10,0,240,255,0,0,233,255,171,255,84,255,55,255,131,255,191,255,151,255,113,255,153,255,
206,255,219,255,226,255,4,0,52,0,63,0,3,0,223,255,8,0,8,0,198,255,165,255,165,255,161,255,168,255,174,255,
183,255,225,255,251,255,180,255,69,255,15,255,6,255,30,255,103,255,143,255,107,255,96,255,169,255,254,255,14,0,250,255,
245,255,244,255,249,255,0,0,1,0,36,0,76,0,46,0,247,255,205,255,153,255,168,255,36,0,136,0,134,0,127,0,
124,0,20,0,127,255,76,255,139,255,39,0,215,0,11,1,226,0,222,0,211,0,122,0,6,0,166,255,113,255,119,255,
174,255,7,0,72,0,33,0,193,255,133,255,96,255,49,255,34,255,83,255,173,255,216,255,130,255,18,255,60,255,189,255,
202,255,155,255,228,255,106,0,134,0,60,0,242,255,185,255,124,255,127,255,241,255,104,0,147,0,168,0,199,0,206,0,
141,0,253,255,144,255,164,255,3,0,125,0,245,0,16,1,187,0,104,0,106,0,144,0,119,0,33,0,255,255,73,0,
128,0,46,0,174,255,130,255,144,255,175,255,234,255,236,255,116,255,29,255,111,255,229,255,231,255,176,255,182,255,6,0,
51,0,24,0,27,0,46,0,37,0,97,0,152,0,72,0,216,255,122,255,48,255,98,255,196,255,220,255,243,255,63,0,
134,0,149,0,156,0,226,0,252,0,165,0,107,0,70,0,213,255,146,255,180,255,184,255,133,255,82,255,34,255,20,255,
107,255,240,255,59,0,111,0,159,0,122,0,61,0,70,0,83,0,70,0,52,0,16,0,5,0,0,0,209,255,218,255,
14,0,202,255,70,255,66,255,194,255,48,0,51,0,255,255,215,255,207,255,239,255,245,255,163,255,78,255,75,255,125,255,
198,255,32,0,114,0,159,0,143,0,38,0,146,255,99,255,156,255,136,255,40,255,41,255,163,255,36,0,72,0,1,0,
219,255,53,0,155,0,159,0,126,0,94,0,33,0,0,0,10,0,214,255,141,255,170,255,243,255,250,255,187,255,157,255,
231,255,53,0,76,0,115,0,179,0,236,0,9,1,239,0,213,0,209,0,135,0,3,0,194,255,220,255,224,255,166,255,
120,255,72,255,9,255,32,255,116,255,163,255,171,255,170,255,222,255,53,0,44,0,215,255,180,255,222,255,25,0,232,255,
90,255,11,255,14,255,61,255,143,255,188,255,178,255,191,255,255,255,57,0,35,0,227,255,218,255,17,0,113,0,204,0,
225,0,205,0,181,0,127,0,75,0,58,0,41,0,253,255,230,255,36,0,146,0,197,0,189,0,171,0,125,0,40,0,
236,255,248,255,88,0,202,0,203,0,104,0,41,0,253,255,167,255,114,255,129,255,201,255,86,0,215,0,17,1,38,1,
15,1,203,0,146,0,132,0,125,0,58,0,249,255,43,0,106,0,71,0,2,0,155,255,4,255,169,254,148,254,123,254,
121,254,203,254,103,255,243,255,31,0,251,255,204,255,196,255,240,255,60,0,103,0,75,0,53,0,86,0,65,0,205,255,
106,255,92,255,151,255,215,255,208,255,208,255,40,0,119,0,130,0,128,0,110,0,38,0,202,255,147,255,144,255,184,255,
7,0,90,0,121,0,106,0,101,0,102,0,113,0,185,0,16,1,237,0,74,0,172,255,124,255,173,255,196,255,144,255,
121,255,160,255,151,255,51,255,188,254,124,254,110,254,125,254,206,254,103,255,13,0,137,0,177,0,148,0,146,0,209,0,
19,1,28,1,228,0,159,0,126,0,76,0,230,255,168,255,176,255,176,255,162,255,164,255,176,255,227,255,80,0,168,0,
135,0,250,255,136,255,131,255,216,255,92,0,178,0,169,0,130,0,105,0,83,0,52,0,14,0,9,0,32,0,32,0,
255,255,187,255,146,255,239,255,175,0,63,1,67,1,243,0,200,0,158,0,61,0,253,255,216,255,151,255,126,255,157,255,
178,255,140,255,65,255,56,255,138,255,229,255,45,0,94,0,125,0,122,0,36,0,159,255,70,255,42,255,53,255,73,255,
135,255,21,0,142,0,145,0,121,0,144,0,132,0,27,0,197,255,211,255,229,255,182,255,160,255,204,255,237,255,3,0,
52,0,44,0,193,255,108,255,92,255,101,255,137,255,184,255,242,255,83,0,188,0,22,1,55,1,228,0,87,0,214,255,
120,255,109,255,141,255,130,255,120,255,175,255,14,0,78,0,74,0,45,0,30,0,26,0,38,0,57,0,52,0,51,0,
85,0,96,0,34,0,219,255,211,255,225,255,199,255,144,255,94,255,105,255,202,255,22,0,247,255,196,255,185,255,176,255,
196,255,254,255,26,0,51,0,95,0,98,0,47,0,225,255,161,255,201,255,87,0,191,0,160,0,43,0,210,255,206,255,
244,255,250,255,244,255,33,0,83,0,41,0,187,255,117,255,114,255,129,255,198,255,97,0,206,0,179,0,97,0,247,255,
152,255,144,255,188,255,254,255,123,0,206,0,126,0,237,255,193,255,218,255,178,255,93,255,74,255,146,255,9,0,78,0,
79,0,124,0,203,0,197,0,134,0,131,0,215,0,7,1,164,0,48,0,62,0,95,0,29,0,171,255,87,255,101,255,
227,255,90,0,108,0,73,0,50,0,27,0,225,255,144,255,69,255,36,255,105,255,27,0,227,0,68,1,207,0,241,255,
179,255,220,255,117,255,147,254,231,253,224,253,111,254,252,254,68,255,126,255,211,255,74,0,162,0,175,0,134,0,255,255,
79,255,37,255,115,255,183,255,195,255,189,255,241,255,62,0,111,0,206,0,91,1,161,1,112,1,8,1,174,0,71,0,
202,255,130,255,67,255,198,254,129,254,205,254,56,255,103,255,147,255,216,255,7,0,28,0,249,255,110,255,231,254,234,254,
61,255,117,255,166,255,36,0,240,0,169,1,246,1,238,1,231,1,171,1,230,0,51,0,1,0,242,255,8,0,108,0,
235,0,86,1,83,1,215,0,120,0,141,0,205,0,169,0,14,0,154,255,100,255,255,254,141,254,102,254,157,254,232,254,
242,254,221,254,213,254,241,254,138,255,128,0,34,1,49,1,242,0,165,0,76,0,232,255,183,255,195,255,170,255,54,255,
225,254,38,255,157,255,250,255,166,0,134,1,252,1,234,1,138,1,34,1,246,0,213,0,92,0,173,255,45,255,173,254,
255,253,172,253,228,253,68,254,192,254,74,255,155,255,191,255,229,255,14,0,41,0,78,0,131,0,104,0,246,255,197,255,
233,255,222,255,106,255,195,254,91,254,72,254,54,254,67,254,161,254,24,255,177,255,145,0,52,1,53,1,17,1,64,1,
112,1,50,1,193,0,141,0,114,0,46,0,7,0,60,0,137,0,168,0,184,0,229,0,21,1,22,1,247,0,225,0,
226,0,219,0,154,0,82,0,89,0,88,0,211,255,13,255,193,254,3,255,249,254,44,254,105,253,158,253,158,254,119,255,
183,255,247,255,173,0,74,1,101,1,91,1,111,1,137,1,137,1,63,1,200,0,135,0,73,0,226,255,213,255,48,0,
93,0,57,0,250,255,226,255,250,255,209,255,77,255,252,254,50,255,166,255,220,255,207,255,229,255,56,0,187,0,52,1,
23,1,118,0,21,0,21,0,238,255,141,255,124,255,203,255,0,0,254,255,214,255,148,255,102,255,85,255,135,255,42,0,
178,0,139,0,228,255,100,255,160,255,59,0,101,0,49,0,209,255,63,255,243,254,50,255,154,255,187,255,129,255,73,255,
62,255,54,255,71,255,128,255,197,255,17,0,81,0,146,0,224,0,244,0,204,0,160,0,96,0,45,0,56,0,72,0,
50,0,17,0,13,0,46,0,42,0,245,255,246,255,36,0,47,0,58,0,69,0,241,255,113,255,108,255,206,255,247,255,
234,255,249,255,0,0,1,0,67,0,167,0,190,0,106,0,1,0,228,255,236,255,209,255,190,255,215,255,213,255,157,255,
133,255,147,255,141,255,185,255,50,0,74,0,218,255,157,255,226,255,50,0,42,0,11,0,32,0,25,0,204,255,161,255,
185,255,179,255,117,255,86,255,89,255,93,255,165,255,36,0,100,0,122,0,149,0,141,0,96,0,9,0,154,255,108,255,
128,255,148,255,160,255,164,255,144,255,147,255,230,255,61,0,37,0,233,255,229,255,235,255,235,255,240,255,212,255,174,255,
173,255,182,255,165,255,204,255,100,0,174,0,46,0,157,255,138,255,218,255,65,0,90,0,45,0,34,0,69,0,113,0,
143,0,114,0,251,255,111,255,86,255,176,255,2,0,68,0,162,0,17,1,121,1,169,1,134,1,43,1,205,0,191,0,
218,0,179,0,100,0,254,255,155,255,209,255,110,0,132,0,15,0,203,255,251,255,53,0,41,0,46,0,109,0,107,0,
0,0,161,255,139,255,104,255,8,255,167,254,73,254,228,253,218,253,78,254,249,254,198,255,123,0,171,0,121,0,59,0,
222,255,124,255,103,255,94,255,240,254,79,254,15,254,55,254,50,254,228,253,23,254,52,255,155,0,169,1,76,2,114,2,
233,1,253,0,75,0,174,255,247,254,232,254,119,255,131,255,66,255,170,255,141,0,129,1,102,2,228,2,208,2,85,2,
166,1,229,0,44,0,206,255,254,255,49,0,210,255,85,255,149,255,130,0,105,1,231,1,224,1,131,1,61,1,254,0,
168,0,149,0,176,0,127,0,74,0,105,0,56,0,39,255,251,253,184,253,50,254,191,254,81,255,57,0,107,1,79,2,
165,2,139,2,180,1,84,0,138,255,187,255,89,0,211,0,205,0,139,0,101,0,239,255,21,255,182,254,96,255,145,0,
94,1,141,1,99,1,192,0,168,255,135,254,141,253,44,253,146,253,166,253,10,253,239,252,138,253,213,253,102,253,170,252,
74,252,110,252,150,252,148,252,219,252,175,253,159,254,239,254,178,254,111,254,72,254,136,254,72,255,151,255,36,255,1,255,
135,255,1,0,111,0,52,1,209,1,202,1,106,1,207,0,240,255,80,255,89,255,213,255,52,0,8,0,160,255,179,255,
135,0,201,1,204,2,48,3,61,3,81,3,90,3,78,3,109,3,169,3,145,3,48,3,240,2,193,2,108,2,17,2,
192,1,92,1,1,1,240,0,0,1,203,0,95,0,238,255,115,255,54,255,106,255,203,255,34,0,78,0,40,0,195,255,
69,255,208,254,127,254,78,254,68,254,98,254,112,254,101,254,164,254,74,255,212,255,235,255,204,255,162,255,97,255,255,254,
158,254,151,254,233,254,42,255,73,255,139,255,4,0,116,0,108,0,8,0,229,255,14,0,40,0,55,0,59,0,6,0,
164,255,98,255,153,255,73,0,222,0,204,0,64,0,239,255,49,0,106,0,30,0,216,255,239,255,255,255,197,255,83,255,
251,254,252,254,28,255,69,255,182,255,68,0,170,0,3,1,84,1,110,1,78,1,54,1,58,1,25,1,211,0,152,0,
108,0,124,0,211,0,8,1,233,0,170,0,89,0,239,255,161,255,150,255,171,255,212,255,27,0,96,0,132,0,116,0,
50,0,7,0,36,0,123,0,198,0,149,0,249,255,137,255,133,255,195,255,204,255,58,255,134,254,94,254,201,254,102,255,
177,255,144,255,152,255,254,255,86,0,64,0,163,255,232,254,150,254,141,254,144,254,237,254,165,255,29,0,33,0,15,0,
250,255,169,255,76,255,45,255,41,255,45,255,51,255,0,255,212,254,35,255,159,255,230,255,50,0,148,0,212,0,228,0,
210,0,157,0,66,0,218,255,125,255,59,255,94,255,5,0,183,0,18,1,25,1,207,0,86,0,225,255,135,255,141,255,
40,0,198,0,178,0,46,0,236,255,36,0,136,0,157,0,71,0,239,255,199,255,168,255,143,255,112,255,23,255,158,254,
146,254,64,255,69,0,53,1,204,1,203,1,124,1,88,1,54,1,178,0,197,255,200,254,40,254,242,253,38,254,198,254,
137,255,73,0,247,0,56,1,229,0,64,0,175,255,134,255,174,255,211,255,236,255,17,0,43,0,10,0,211,255,17,0,
196,0,241,0,52,0,139,255,127,255,135,255,111,255,64,255,248,254,245,254,37,255,28,255,77,255,25,0,236,0,31,1,
187,0,75,0,9,0,172,255,35,255,211,254,18,255,151,255,239,255,45,0,14,0,137,255,209,255,166,0,43,0,212,254,
132,254,27,255,139,255,186,255,4,0,92,0,157,0,226,0,244,0,133,0,15,0,8,0,24,0,247,255,3,0,150,0,
80,1,163,1,124,1,5,1,110,0,4,0,231,255,247,255,16,0,70,0,187,0,54,1,112,1,123,1,99,1,47,1,
10,1,235,0,164,0,74,0,48,0,99,0,129,0,63,0,223,255,186,255,207,255,6,0,75,0,117,0,146,0,185,0,
180,0,170,0,251,0,44,1,182,0,6,0,101,255,203,254,102,254,8,254,108,253,28,253,144,253,67,254,149,254,182,254,
53,255,254,255,159,0,24,1,104,1,52,1,178,0,116,0,119,0,100,0,5,0,104,255,223,254,148,254,134,254,207,254,
84,255,212,255,67,0,144,0,181,0,192,0,141,0,30,0,228,255,47,0,187,0,13,1,18,1,39,1,103,1,112,1,
26,1,198,0,179,0,183,0,159,0,85,0,246,255,233,255,97,0,248,0,41,1,247,0,159,0,33,0,170,255,114,255,
67,255,35,255,103,255,200,255,222,255,227,255,7,0,20,0,254,255,225,255,191,255,184,255,12,0,117,0,83,0,208,255,
168,255,218,255,204,255,105,255,42,255,44,255,1,255,109,254,235,253,36,254,222,254,69,255,27,255,173,254,76,254,75,254,
164,254,232,254,223,254,176,254,148,254,168,254,232,254,84,255,189,255,218,255,198,255,191,255,175,255,98,255,231,254,136,254,
141,254,27,255,5,0,193,0,5,1,252,0,205,0,173,0,176,0,136,0,60,0,45,0,42,0,197,255,46,255,249,254,
104,255,32,0,192,0,33,1,250,0,100,0,2,0,11,0,75,0,193,0,62,1,84,1,254,0,194,0,7,1,115,1,
128,1,52,1,229,0,214,0,15,1,49,1,243,0,143,0,78,0,75,0,136,0,198,0,179,0,82,0,248,255,11,0,
146,0,8,1,41,1,49,1,17,1,207,0,221,0,234,0,65,0,106,255,37,255,31,255,227,254,169,254,198,254,226,254,
176,254,4,255,75,0,128,1,246,1,227,1,124,1,252,0,122,0,241,255,147,255,131,255,206,255,49,0,18,0,174,255,
181,255,235,255,234,255,208,255,159,255,70,255,228,254,134,254,37,254,236,253,32,254,143,254,211,254,254,254,44,255,100,255,
254,255,32,1,75,2,174,2,26,2,167,1,36,2,186,2,174,2,113,2,60,2,147,1,101,0,
};

2319
src/client/sound/data/explode.pcm Executable file

File diff suppressed because it is too large Load Diff

2198
src/client/sound/data/fallbig1.pcm Executable file

File diff suppressed because it is too large Load Diff

1595
src/client/sound/data/fallbig2.pcm Executable file

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

7805
src/client/sound/data/fuse.pcm Executable file

File diff suppressed because it is too large Load Diff

5086
src/client/sound/data/glass1.pcm Executable file

File diff suppressed because it is too large Load Diff

5086
src/client/sound/data/glass2.pcm Executable file

File diff suppressed because it is too large Load Diff

5086
src/client/sound/data/glass3.pcm Executable file

File diff suppressed because it is too large Load Diff

1381
src/client/sound/data/grass1.pcm Executable file

File diff suppressed because it is too large Load Diff

1381
src/client/sound/data/grass2.pcm Executable file

File diff suppressed because it is too large Load Diff

1381
src/client/sound/data/grass3.pcm Executable file

File diff suppressed because it is too large Load Diff

1381
src/client/sound/data/grass4.pcm Executable file

File diff suppressed because it is too large Load Diff

1381
src/client/sound/data/gravel1.pcm Executable file

File diff suppressed because it is too large Load Diff

1381
src/client/sound/data/gravel2.pcm Executable file

File diff suppressed because it is too large Load Diff

1381
src/client/sound/data/gravel3.pcm Executable file

File diff suppressed because it is too large Load Diff

1381
src/client/sound/data/gravel4.pcm Executable file

File diff suppressed because it is too large Load Diff

7202
src/client/sound/data/hurt.pcm Executable file

File diff suppressed because it is too large Load Diff

951
src/client/sound/data/pig1.pcm Executable file
View File

@@ -0,0 +1,951 @@
unsigned char PCM_pig1[30336] = {
1,0,0,0,2,0,0,0,68,172,0,0,56,59,0,0,0,0,1,0,0,0,255,255,255,255,0,0,0,0,0,0,
0,0,0,0,0,0,255,255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,
0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,255,255,255,255,0,0,0,0,255,255,0,0,0,0,0,0,255,255,0,0,0,0,0,0,0,0,0,0,1,0,
0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,255,255,0,0,0,0,0,0,0,0,
1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,255,255,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,1,0,0,0,255,255,255,255,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,
0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,255,255,255,255,0,0,0,0,0,0,
0,0,1,0,1,0,0,0,255,255,0,0,0,0,0,0,0,0,0,0,1,0,0,0,255,255,0,0,0,0,0,0,
0,0,1,0,0,0,255,255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,255,255,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,1,0,0,0,255,255,255,255,
0,0,0,0,0,0,0,0,255,255,0,0,1,0,1,0,0,0,0,0,1,0,0,0,255,255,255,255,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,0,0,1,0,1,0,0,0,255,255,0,0,1,0,
0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,0,0,1,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,255,255,
255,255,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,255,255,0,0,0,0,
255,255,0,0,1,0,1,0,255,255,255,255,0,0,0,0,0,0,0,0,0,0,255,255,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,255,255,255,255,0,0,0,0,0,0,255,255,0,0,
1,0,1,0,0,0,0,0,0,0,0,0,255,255,0,0,0,0,0,0,0,0,0,0,0,0,255,255,0,0,0,0,
0,0,0,0,0,0,1,0,1,0,0,0,255,255,255,255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,
0,0,255,255,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,0,0,0,0,
1,0,1,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,1,0,0,0,255,255,0,0,1,0,0,0,0,0,1,0,0,0,255,255,0,0,
0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,255,255,0,0,1,0,1,0,0,0,255,255,255,255,
0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,255,255,0,0,0,0,0,0,0,0,0,0,0,0,
1,0,1,0,0,0,255,255,255,255,1,0,0,0,255,255,0,0,1,0,0,0,255,255,0,0,0,0,0,0,1,0,
1,0,1,0,0,0,255,255,255,255,0,0,0,0,0,0,255,255,0,0,0,0,0,0,0,0,1,0,1,0,0,0,
0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,255,0,0,0,0,0,0,1,0,1,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,0,0,1,0,1,0,255,255,255,255,0,0,0,0,0,0,0,0,0,0,255,255,0,0,1,0,1,0,255,255,
255,255,1,0,1,0,0,0,255,255,255,255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,
0,0,0,0,0,0,255,255,0,0,0,0,0,0,0,0,0,0,255,255,0,0,1,0,1,0,0,0,0,0,0,0,
0,0,255,255,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,255,255,0,0,0,0,0,0,
255,255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,255,255,0,0,1,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,1,0,0,0,0,0,0,0,1,0,
0,0,255,255,255,255,0,0,0,0,255,255,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,
0,0,255,255,255,255,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,
0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,0,0,1,0,1,0,0,0,0,0,1,0,
0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,255,255,255,255,0,0,255,255,0,0,
1,0,1,0,255,255,0,0,1,0,0,0,255,255,255,255,0,0,0,0,0,0,1,0,1,0,0,0,255,255,255,255,
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,255,255,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,0,0,0,0,0,0,0,0,0,0,255,255,0,0,
0,0,1,0,0,0,1,0,1,0,0,0,255,255,0,0,0,0,255,255,255,255,0,0,1,0,1,0,0,0,0,0,
0,0,0,0,0,0,255,255,255,255,0,0,0,0,0,0,1,0,0,0,255,255,0,0,1,0,1,0,0,0,255,255,
0,0,0,0,1,0,0,0,0,0,0,0,0,0,255,255,255,255,0,0,0,0,0,0,1,0,0,0,255,255,0,0,
0,0,0,0,0,0,0,0,0,0,255,255,0,0,1,0,1,0,0,0,0,0,0,0,255,255,0,0,0,0,0,0,
255,255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,255,255,
255,255,0,0,0,0,0,0,0,0,1,0,0,0,255,255,0,0,1,0,0,0,0,0,0,0,1,0,1,0,0,0,
0,0,0,0,0,0,0,0,0,0,255,255,255,255,0,0,0,0,0,0,0,0,0,0,255,255,0,0,1,0,1,0,
0,0,0,0,0,0,0,0,255,255,255,255,255,255,0,0,1,0,1,0,1,0,2,0,1,0,0,0,255,255,255,255,
255,255,0,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,1,0,0,0,0,0,255,255,
0,0,0,0,0,0,1,0,1,0,0,0,0,0,255,255,254,255,255,255,0,0,0,0,255,255,0,0,1,0,1,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,255,255,255,255,0,0,
1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,255,255,255,255,0,0,
0,0,255,255,255,255,255,255,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,255,255,0,0,1,0,0,0,
255,255,0,0,0,0,0,0,1,0,2,0,1,0,0,0,255,255,255,255,255,255,0,0,2,0,1,0,0,0,0,0,
0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,1,0,2,0,0,0,255,255,1,0,
1,0,255,255,0,0,0,0,255,255,254,255,255,255,0,0,1,0,1,0,1,0,2,0,1,0,255,255,255,255,0,0,
255,255,0,0,0,0,255,255,0,0,0,0,0,0,0,0,1,0,0,0,254,255,255,255,255,255,254,255,254,255,255,255,
0,0,1,0,1,0,1,0,255,255,254,255,254,255,255,255,255,255,0,0,0,0,255,255,1,0,3,0,1,0,255,255,
255,255,254,255,254,255,0,0,1,0,0,0,255,255,0,0,255,255,255,255,255,255,255,255,255,255,1,0,2,0,1,0,
0,0,255,255,255,255,0,0,1,0,255,255,254,255,0,0,2,0,1,0,1,0,1,0,0,0,0,0,255,255,254,255,
254,255,254,255,0,0,1,0,1,0,0,0,0,0,2,0,1,0,255,255,255,255,255,255,255,255,0,0,1,0,255,255,
255,255,0,0,0,0,1,0,2,0,1,0,0,0,255,255,254,255,255,255,0,0,255,255,0,0,2,0,2,0,1,0,
1,0,0,0,255,255,255,255,255,255,0,0,0,0,255,255,0,0,0,0,255,255,255,255,1,0,0,0,255,255,0,0,
0,0,255,255,0,0,255,255,254,255,0,0,1,0,1,0,1,0,1,0,0,0,0,0,0,0,255,255,254,255,254,255,
255,255,0,0,1,0,0,0,0,0,1,0,1,0,254,255,253,255,254,255,0,0,0,0,255,255,255,255,255,255,0,0,
1,0,0,0,255,255,0,0,1,0,2,0,2,0,1,0,0,0,255,255,255,255,255,255,255,255,0,0,0,0,0,0,
255,255,0,0,1,0,1,0,1,0,2,0,2,0,2,0,1,0,0,0,255,255,255,255,0,0,0,0,0,0,1,0,
2,0,2,0,1,0,255,255,255,255,0,0,255,255,255,255,255,255,255,255,1,0,2,0,1,0,0,0,0,0,255,255,
255,255,1,0,0,0,0,0,1,0,1,0,1,0,2,0,2,0,255,255,1,0,2,0,0,0,0,0,0,0,254,255,
253,255,254,255,255,255,0,0,1,0,1,0,1,0,1,0,1,0,0,0,254,255,253,255,255,255,0,0,0,0,0,0,
1,0,0,0,0,0,0,0,255,255,1,0,3,0,0,0,253,255,254,255,255,255,254,255,0,0,2,0,2,0,3,0,
3,0,2,0,1,0,1,0,0,0,255,255,255,255,254,255,255,255,1,0,1,0,1,0,0,0,0,0,1,0,0,0,
253,255,253,255,0,0,3,0,3,0,2,0,2,0,1,0,0,0,1,0,1,0,255,255,0,0,3,0,3,0,2,0,
1,0,254,255,252,255,255,255,1,0,255,255,0,0,2,0,3,0,4,0,3,0,1,0,0,0,255,255,254,255,255,255,
1,0,3,0,3,0,3,0,3,0,4,0,1,0,255,255,0,0,0,0,255,255,255,255,255,255,255,255,2,0,3,0,
1,0,2,0,3,0,255,255,253,255,255,255,255,255,255,255,0,0,0,0,0,0,2,0,1,0,1,0,2,0,255,255,
253,255,0,0,1,0,0,0,0,0,0,0,0,0,2,0,2,0,255,255,255,255,1,0,0,0,255,255,255,255,255,255,
0,0,255,255,252,255,252,255,254,255,0,0,1,0,2,0,1,0,0,0,255,255,254,255,254,255,254,255,254,255,0,0,
2,0,1,0,0,0,0,0,255,255,255,255,255,255,253,255,253,255,255,255,0,0,1,0,4,0,4,0,2,0,2,0,
2,0,0,0,0,0,1,0,0,0,252,255,251,255,254,255,255,255,255,255,0,0,2,0,1,0,0,0,0,0,255,255,
0,0,0,0,255,255,254,255,255,255,255,255,0,0,1,0,255,255,255,255,1,0,0,0,255,255,1,0,255,255,253,255,
254,255,0,0,0,0,2,0,3,0,3,0,2,0,1,0,0,0,0,0,255,255,253,255,255,255,0,0,1,0,1,0,
255,255,255,255,0,0,255,255,252,255,255,255,1,0,253,255,253,255,254,255,253,255,253,255,254,255,253,255,254,255,3,0,
4,0,3,0,0,0,250,255,247,255,250,255,253,255,254,255,255,255,2,0,4,0,6,0,4,0,0,0,254,255,252,255,
252,255,255,255,0,0,254,255,254,255,254,255,254,255,1,0,3,0,3,0,1,0,0,0,254,255,255,255,1,0,2,0,
0,0,253,255,253,255,253,255,253,255,255,255,1,0,1,0,3,0,5,0,2,0,253,255,253,255,255,255,255,255,255,255,
255,255,254,255,255,255,2,0,3,0,3,0,2,0,0,0,254,255,254,255,254,255,253,255,254,255,2,0,3,0,1,0,
0,0,3,0,4,0,4,0,4,0,254,255,250,255,252,255,253,255,252,255,0,0,1,0,255,255,1,0,3,0,1,0,
1,0,2,0,1,0,1,0,2,0,254,255,252,255,255,255,255,255,255,255,2,0,1,0,255,255,1,0,2,0,255,255,
255,255,0,0,0,0,255,255,255,255,255,255,255,255,0,0,2,0,3,0,3,0,1,0,1,0,0,0,1,0,2,0,
1,0,255,255,255,255,253,255,252,255,1,0,3,0,255,255,254,255,1,0,255,255,255,255,0,0,0,0,0,0,3,0,
4,0,3,0,1,0,253,255,253,255,1,0,1,0,254,255,0,0,2,0,0,0,1,0,4,0,5,0,3,0,255,255,
253,255,254,255,254,255,253,255,253,255,255,255,1,0,3,0,7,0,8,0,5,0,2,0,0,0,252,255,250,255,251,255,
253,255,253,255,0,0,2,0,1,0,4,0,7,0,4,0,1,0,2,0,0,0,252,255,254,255,255,255,254,255,1,0,
4,0,3,0,5,0,5,0,0,0,252,255,255,255,2,0,1,0,254,255,254,255,0,0,2,0,4,0,5,0,2,0,
0,0,2,0,2,0,0,0,255,255,255,255,0,0,3,0,3,0,0,0,3,0,6,0,3,0,0,0,255,255,255,255,
1,0,2,0,253,255,254,255,3,0,4,0,1,0,0,0,254,255,252,255,254,255,255,255,0,0,4,0,4,0,1,0,
3,0,6,0,3,0,1,0,2,0,1,0,255,255,254,255,0,0,3,0,4,0,4,0,6,0,8,0,7,0,4,0,
1,0,255,255,0,0,2,0,4,0,5,0,5,0,6,0,6,0,4,0,3,0,2,0,0,0,255,255,1,0,4,0,
4,0,4,0,1,0,255,255,0,0,1,0,254,255,253,255,1,0,2,0,255,255,254,255,254,255,254,255,255,255,255,255,
254,255,253,255,251,255,252,255,255,255,1,0,0,0,255,255,0,0,1,0,0,0,254,255,255,255,1,0,2,0,2,0,
254,255,250,255,251,255,253,255,252,255,254,255,0,0,254,255,255,255,1,0,255,255,255,255,0,0,251,255,246,255,248,255,
246,255,243,255,248,255,254,255,253,255,252,255,253,255,254,255,252,255,249,255,248,255,252,255,255,255,252,255,250,255,253,255,
255,255,255,255,255,255,254,255,0,0,4,0,4,0,255,255,251,255,250,255,252,255,254,255,255,255,2,0,7,0,11,0,
8,0,255,255,248,255,250,255,252,255,248,255,248,255,254,255,253,255,251,255,252,255,250,255,251,255,0,0,1,0,255,255,
254,255,250,255,247,255,247,255,248,255,251,255,0,0,2,0,1,0,0,0,1,0,1,0,2,0,0,0,251,255,252,255,
0,0,2,0,4,0,11,0,13,0,10,0,8,0,5,0,250,255,247,255,255,255,4,0,2,0,2,0,255,255,250,255,
254,255,6,0,9,0,9,0,8,0,1,0,252,255,254,255,1,0,253,255,249,255,252,255,1,0,5,0,8,0,7,0,
4,0,3,0,4,0,5,0,6,0,7,0,4,0,4,0,6,0,8,0,6,0,2,0,0,0,3,0,4,0,3,0,
4,0,2,0,254,255,253,255,253,255,0,0,6,0,4,0,254,255,254,255,1,0,4,0,6,0,5,0,4,0,3,0,
254,255,252,255,254,255,252,255,251,255,2,0,3,0,255,255,255,255,253,255,249,255,249,255,250,255,255,255,5,0,3,0,
255,255,1,0,255,255,249,255,249,255,251,255,248,255,246,255,247,255,250,255,250,255,249,255,250,255,253,255,254,255,255,255,
0,0,251,255,250,255,253,255,254,255,254,255,253,255,250,255,247,255,244,255,243,255,250,255,5,0,10,0,7,0,1,0,
252,255,249,255,245,255,246,255,252,255,255,255,253,255,252,255,249,255,245,255,244,255,244,255,244,255,246,255,249,255,252,255,
252,255,253,255,2,0,3,0,254,255,0,0,4,0,252,255,241,255,239,255,241,255,246,255,253,255,2,0,4,0,3,0,
4,0,13,0,21,0,16,0,9,0,1,0,244,255,242,255,251,255,251,255,246,255,254,255,8,0,7,0,5,0,6,0,
4,0,0,0,3,0,8,0,5,0,254,255,254,255,4,0,7,0,9,0,10,0,3,0,252,255,255,255,8,0,11,0,
9,0,3,0,248,255,243,255,246,255,252,255,0,0,252,255,244,255,250,255,10,0,9,0,253,255,251,255,248,255,238,255,
237,255,251,255,8,0,5,0,252,255,249,255,250,255,245,255,238,255,236,255,240,255,244,255,247,255,248,255,250,255,249,255,
239,255,227,255,230,255,244,255,250,255,247,255,250,255,252,255,241,255,234,255,236,255,235,255,240,255,6,0,13,0,4,0,
4,0,3,0,247,255,242,255,244,255,240,255,243,255,251,255,252,255,252,255,255,255,254,255,255,255,2,0,3,0,8,0,
12,0,7,0,0,0,249,255,240,255,235,255,235,255,238,255,244,255,251,255,253,255,5,0,19,0,21,0,13,0,1,0,
239,255,224,255,229,255,246,255,3,0,10,0,12,0,12,0,3,0,240,255,232,255,242,255,255,255,3,0,3,0,4,0,
14,0,27,0,27,0,17,0,9,0,251,255,239,255,254,255,20,0,19,0,6,0,254,255,245,255,239,255,246,255,3,0,
12,0,17,0,22,0,22,0,3,0,229,255,215,255,218,255,230,255,5,0,36,0,33,0,13,0,10,0,3,0,240,255,
237,255,247,255,249,255,255,255,14,0,26,0,33,0,20,0,249,255,247,255,15,0,25,0,26,0,33,0,33,0,18,0,
1,0,236,255,223,255,234,255,0,0,9,0,2,0,249,255,248,255,248,255,244,255,243,255,245,255,247,255,253,255,14,0,
29,0,22,0,3,0,255,255,251,255,230,255,230,255,253,255,1,0,0,0,11,0,5,0,250,255,1,0,255,255,252,255,
11,0,11,0,0,0,7,0,4,0,245,255,251,255,4,0,3,0,16,0,25,0,15,0,6,0,3,0,7,0,17,0,
16,0,9,0,10,0,0,0,240,255,240,255,250,255,253,255,245,255,234,255,241,255,255,255,248,255,244,255,252,255,239,255,
224,255,232,255,236,255,229,255,225,255,223,255,234,255,251,255,255,255,3,0,14,0,18,0,22,0,16,0,249,255,245,255,
3,0,2,0,254,255,1,0,252,255,2,0,11,0,1,0,7,0,37,0,38,0,13,0,252,255,234,255,218,255,229,255,
0,0,17,0,24,0,29,0,25,0,8,0,253,255,8,0,26,0,22,0,4,0,0,0,18,0,32,0,28,0,10,0,
238,255,214,255,219,255,236,255,241,255,253,255,17,0,12,0,247,255,235,255,227,255,229,255,248,255,5,0,22,0,50,0,
47,0,14,0,2,0,245,255,209,255,214,255,19,0,63,0,65,0,53,0,29,0,253,255,236,255,232,255,233,255,248,255,
14,0,31,0,38,0,25,0,250,255,223,255,212,255,214,255,233,255,5,0,25,0,33,0,32,0,10,0,235,255,221,255,
222,255,217,255,217,255,241,255,16,0,21,0,4,0,242,255,234,255,240,255,1,0,17,0,30,0,43,0,43,0,22,0,
247,255,215,255,200,255,217,255,245,255,5,0,19,0,36,0,38,0,28,0,13,0,240,255,220,255,231,255,248,255,251,255,
1,0,11,0,11,0,250,255,224,255,214,255,231,255,246,255,251,255,5,0,10,0,8,0,12,0,2,0,233,255,228,255,
225,255,209,255,224,255,3,0,9,0,6,0,17,0,11,0,253,255,9,0,21,0,12,0,14,0,42,0,61,0,48,0,
25,0,16,0,15,0,9,0,3,0,3,0,12,0,30,0,49,0,59,0,52,0,30,0,2,0,241,255,1,0,37,0,
48,0,34,0,35,0,39,0,21,0,19,0,37,0,37,0,26,0,28,0,27,0,21,0,17,0,2,0,240,255,237,255,
243,255,5,0,24,0,17,0,255,255,246,255,237,255,227,255,222,255,224,255,232,255,240,255,239,255,249,255,16,0,23,0,
14,0,2,0,231,255,216,255,243,255,9,0,253,255,254,255,18,0,11,0,251,255,249,255,239,255,223,255,219,255,220,255,
217,255,205,255,192,255,213,255,247,255,248,255,243,255,253,255,244,255,243,255,27,0,45,0,13,0,247,255,1,0,10,0,
9,0,12,0,27,0,33,0,26,0,36,0,57,0,60,0,49,0,35,0,14,0,14,0,37,0,59,0,81,0,83,0,
50,0,21,0,9,0,254,255,253,255,7,0,15,0,33,0,44,0,25,0,10,0,24,0,36,0,18,0,249,255,4,0,
27,0,15,0,14,0,53,0,63,0,47,0,54,0,56,0,48,0,61,0,58,0,33,0,23,0,10,0,11,0,48,0,
63,0,49,0,55,0,64,0,55,0,37,0,26,0,52,0,84,0,60,0,38,0,56,0,44,0,13,0,11,0,253,255,
237,255,10,0,45,0,51,0,48,0,36,0,8,0,237,255,233,255,253,255,2,0,255,255,27,0,46,0,39,0,54,0,
61,0,28,0,20,0,42,0,38,0,18,0,13,0,24,0,29,0,6,0,244,255,6,0,18,0,13,0,12,0,2,0,
243,255,227,255,188,255,181,255,236,255,7,0,253,255,3,0,253,255,232,255,225,255,206,255,186,255,192,255,204,255,238,255,
33,0,32,0,255,255,233,255,185,255,148,255,177,255,208,255,206,255,209,255,222,255,238,255,248,255,240,255,235,255,245,255,
244,255,234,255,233,255,234,255,231,255,237,255,253,255,242,255,196,255,173,255,182,255,184,255,205,255,242,255,237,255,242,255,
51,0,81,0,54,0,42,0,33,0,28,0,50,0,52,0,27,0,13,0,241,255,220,255,9,0,50,0,19,0,235,255,
229,255,225,255,224,255,246,255,250,255,219,255,212,255,236,255,231,255,225,255,3,0,7,0,224,255,223,255,249,255,250,255,
240,255,221,255,206,255,236,255,15,0,254,255,218,255,191,255,176,255,180,255,203,255,233,255,248,255,230,255,210,255,202,255,
176,255,160,255,170,255,158,255,140,255,164,255,198,255,196,255,157,255,110,255,100,255,123,255,134,255,141,255,154,255,149,255,
138,255,132,255,115,255,97,255,90,255,118,255,200,255,14,0,11,0,234,255,217,255,214,255,220,255,227,255,241,255,4,0,
9,0,26,0,57,0,35,0,240,255,239,255,14,0,39,0,59,0,50,0,34,0,48,0,52,0,37,0,29,0,3,0,
242,255,45,0,113,0,104,0,71,0,76,0,69,0,16,0,243,255,14,0,60,0,120,0,170,0,119,0,13,0,226,255,
205,255,170,255,211,255,43,0,81,0,99,0,116,0,73,0,241,255,173,255,156,255,172,255,187,255,226,255,32,0,45,0,
6,0,221,255,174,255,140,255,155,255,188,255,223,255,3,0,12,0,14,0,14,0,235,255,214,255,236,255,240,255,245,255,
26,0,33,0,13,0,2,0,218,255,182,255,194,255,210,255,234,255,43,0,85,0,66,0,32,0,7,0,247,255,219,255,
181,255,220,255,95,0,184,0,150,0,60,0,238,255,188,255,161,255,170,255,225,255,47,0,116,0,133,0,90,0,66,0,
90,0,74,0,37,0,66,0,114,0,125,0,128,0,114,0,80,0,51,0,3,0,241,255,60,0,114,0,87,0,101,0,
159,0,140,0,72,0,27,0,11,0,33,0,71,0,92,0,131,0,169,0,137,0,79,0,47,0,3,0,235,255,34,0,
100,0,122,0,130,0,115,0,73,0,35,0,247,255,219,255,17,0,100,0,121,0,105,0,73,0,12,0,222,255,206,255,
194,255,223,255,45,0,102,0,122,0,121,0,94,0,58,0,31,0,16,0,45,0,115,0,153,0,122,0,63,0,22,0,
1,0,244,255,2,0,48,0,73,0,70,0,93,0,130,0,110,0,32,0,212,255,180,255,201,255,27,0,117,0,128,0,
82,0,50,0,243,255,142,255,117,255,156,255,164,255,190,255,250,255,252,255,221,255,217,255,196,255,156,255,160,255,200,255,
251,255,41,0,45,0,11,0,219,255,157,255,104,255,95,255,128,255,200,255,39,0,85,0,45,0,221,255,161,255,144,255,
158,255,183,255,213,255,247,255,6,0,219,255,143,255,110,255,125,255,141,255,150,255,167,255,188,255,216,255,244,255,254,255,
244,255,224,255,197,255,159,255,137,255,184,255,246,255,220,255,179,255,212,255,204,255,117,255,90,255,136,255,162,255,179,255,
218,255,5,0,10,0,192,255,95,255,73,255,115,255,176,255,238,255,246,255,203,255,180,255,181,255,187,255,200,255,175,255,
115,255,108,255,173,255,239,255,3,0,3,0,19,0,7,0,195,255,130,255,89,255,82,255,187,255,81,0,96,0,29,0,
14,0,251,255,181,255,138,255,142,255,163,255,192,255,215,255,230,255,235,255,208,255,150,255,96,255,85,255,135,255,194,255,
212,255,222,255,211,255,140,255,101,255,163,255,229,255,251,255,39,0,102,0,129,0,122,0,84,0,1,0,159,255,113,255,
167,255,20,0,103,0,164,0,217,0,179,0,48,0,209,255,182,255,163,255,166,255,227,255,49,0,82,0,38,0,228,255,
214,255,211,255,184,255,202,255,8,0,26,0,4,0,249,255,238,255,200,255,145,255,122,255,160,255,230,255,54,0,111,0,
96,0,65,0,73,0,43,0,251,255,36,0,101,0,126,0,178,0,183,0,69,0,232,255,214,255,175,255,151,255,213,255,
50,0,97,0,87,0,62,0,41,0,230,255,152,255,156,255,201,255,218,255,240,255,4,0,243,255,214,255,195,255,187,255,
187,255,192,255,230,255,27,0,25,0,7,0,20,0,0,0,205,255,175,255,139,255,153,255,26,0,119,0,72,0,26,0,
49,0,62,0,59,0,71,0,105,0,152,0,174,0,142,0,83,0,36,0,5,0,235,255,225,255,252,255,26,0,26,0,
11,0,254,255,1,0,20,0,252,255,214,255,7,0,68,0,16,0,196,255,193,255,226,255,0,0,255,255,240,255,42,0,
125,0,129,0,107,0,76,0,240,255,185,255,221,255,245,255,18,0,103,0,148,0,121,0,97,0,75,0,53,0,65,0,
77,0,61,0,71,0,118,0,131,0,90,0,45,0,6,0,201,255,157,255,174,255,227,255,21,0,51,0,47,0,25,0,
247,255,205,255,203,255,252,255,48,0,82,0,77,0,25,0,242,255,219,255,167,255,157,255,230,255,50,0,92,0,106,0,
89,0,86,0,76,0,242,255,141,255,135,255,193,255,2,0,72,0,129,0,110,0,248,255,144,255,152,255,181,255,185,255,
230,255,17,0,32,0,95,0,113,0,252,255,166,255,197,255,227,255,243,255,45,0,104,0,114,0,95,0,72,0,30,0,
212,255,177,255,217,255,11,0,61,0,112,0,80,0,1,0,243,255,3,0,16,0,65,0,114,0,132,0,141,0,117,0,
71,0,32,0,238,255,222,255,33,0,104,0,144,0,200,0,225,0,181,0,141,0,129,0,113,0,110,0,150,0,201,0,
196,0,139,0,118,0,115,0,54,0,2,0,16,0,23,0,55,0,155,0,181,0,96,0,40,0,247,255,144,255,111,255,
175,255,215,255,233,255,14,0,20,0,243,255,189,255,116,255,111,255,194,255,247,255,10,0,82,0,149,0,140,0,81,0,
240,255,137,255,131,255,221,255,36,0,58,0,84,0,100,0,64,0,240,255,160,255,128,255,165,255,223,255,250,255,13,0,
21,0,231,255,159,255,101,255,60,255,100,255,224,255,35,0,45,0,115,0,170,0,105,0,8,0,215,255,191,255,198,255,
227,255,253,255,26,0,27,0,202,255,96,255,75,255,152,255,251,255,65,0,124,0,189,0,206,0,134,0,15,0,152,255,
52,255,38,255,174,255,100,0,163,0,133,0,114,0,73,0,231,255,153,255,160,255,245,255,111,0,188,0,170,0,95,0,
24,0,224,255,171,255,145,255,180,255,219,255,220,255,1,0,93,0,106,0,217,255,29,255,211,254,251,254,47,255,99,255,
181,255,226,255,190,255,107,255,19,255,1,255,78,255,158,255,230,255,79,0,123,0,57,0,222,255,131,255,70,255,99,255,
172,255,234,255,33,0,45,0,32,0,36,0,253,255,168,255,117,255,93,255,73,255,57,255,30,255,52,255,128,255,121,255,
66,255,120,255,225,255,248,255,212,255,177,255,177,255,195,255,184,255,212,255,55,0,77,0,14,0,16,0,55,0,20,0,
205,255,142,255,101,255,112,255,162,255,243,255,99,0,149,0,104,0,49,0,231,255,138,255,149,255,240,255,13,0,25,0,
74,0,79,0,50,0,53,0,19,0,185,255,143,255,153,255,144,255,149,255,236,255,94,0,146,0,166,0,191,0,153,0,
62,0,13,0,248,255,236,255,19,0,97,0,200,0,28,1,234,0,146,0,186,0,188,0,55,0,11,0,57,0,32,0,
26,0,70,0,59,0,69,0,117,0,74,0,8,0,17,0,7,0,194,255,152,255,185,255,4,0,34,0,18,0,49,0,
116,0,133,0,107,0,83,0,48,0,235,255,162,255,132,255,132,255,142,255,200,255,30,0,74,0,80,0,65,0,21,0,
247,255,238,255,230,255,246,255,18,0,32,0,67,0,103,0,108,0,95,0,28,0,187,255,188,255,7,0,46,0,47,0,
253,255,179,255,187,255,217,255,187,255,192,255,236,255,214,255,176,255,170,255,134,255,86,255,72,255,60,255,67,255,138,255,
217,255,226,255,213,255,240,255,235,255,159,255,130,255,173,255,194,255,230,255,70,0,134,0,133,0,98,0,27,0,232,255,
254,255,39,0,58,0,40,0,228,255,178,255,192,255,205,255,187,255,182,255,206,255,232,255,197,255,99,255,56,255,99,255,
109,255,78,255,94,255,124,255,107,255,83,255,95,255,122,255,119,255,75,255,58,255,112,255,190,255,249,255,9,0,215,255,
163,255,158,255,105,255,31,255,95,255,223,255,3,0,30,0,75,0,5,0,147,255,135,255,145,255,105,255,76,255,88,255,
143,255,227,255,4,0,231,255,232,255,5,0,232,255,186,255,206,255,240,255,238,255,249,255,13,0,4,0,5,0,22,0,
4,0,232,255,215,255,193,255,221,255,27,0,25,0,247,255,230,255,191,255,166,255,172,255,154,255,157,255,202,255,197,255,
173,255,182,255,154,255,119,255,157,255,211,255,230,255,230,255,204,255,186,255,172,255,102,255,32,255,26,255,24,255,242,254,
175,254,103,254,118,254,188,254,157,254,110,254,203,254,17,255,192,254,134,254,164,254,163,254,148,254,173,254,211,254,65,255,
6,0,157,0,26,1,0,2,240,2,119,3,221,3,46,4,67,4,83,4,99,4,98,4,141,4,178,4,118,4,48,4,
38,4,16,4,231,3,193,3,95,3,202,2,78,2,216,1,77,1,243,0,212,0,137,0,10,0,184,255,144,255,89,255,
15,255,175,254,93,254,106,254,191,254,37,255,160,255,240,255,8,0,104,0,245,0,32,1,21,1,29,1,20,1,11,1,
10,1,225,0,200,0,235,0,252,0,240,0,251,0,1,1,209,0,97,0,234,255,172,255,111,255,222,254,74,254,14,254,
245,253,230,253,0,254,12,254,211,253,151,253,135,253,136,253,160,253,222,253,37,254,104,254,174,254,239,254,61,255,160,255,
234,255,27,0,87,0,149,0,196,0,227,0,239,0,16,1,71,1,77,1,33,1,6,1,9,1,36,1,52,1,23,1,
5,1,12,1,221,0,172,0,190,0,177,0,106,0,80,0,91,0,100,0,126,0,125,0,81,0,81,0,128,0,151,0,
149,0,139,0,123,0,127,0,131,0,96,0,60,0,38,0,245,255,214,255,250,255,33,0,47,0,75,0,66,0,4,0,
222,255,187,255,86,255,237,254,188,254,169,254,151,254,91,254,246,253,188,253,183,253,164,253,167,253,239,253,46,254,21,254,
212,253,193,253,220,253,249,253,42,254,138,254,246,254,82,255,164,255,4,0,121,0,197,0,236,0,77,1,181,1,188,1,
179,1,207,1,208,1,207,1,198,1,101,1,3,1,252,0,241,0,191,0,149,0,93,0,36,0,242,255,138,255,12,255,
198,254,149,254,91,254,75,254,87,254,45,254,204,253,149,253,174,253,199,253,192,253,224,253,69,254,225,254,143,255,3,0,
34,0,9,0,202,255,164,255,184,255,162,255,82,255,61,255,72,255,6,255,181,254,166,254,150,254,99,254,74,254,74,254,
61,254,63,254,106,254,137,254,108,254,45,254,13,254,58,254,128,254,131,254,116,254,186,254,30,255,67,255,82,255,149,255,
254,255,73,0,104,0,148,0,199,0,171,0,73,0,1,0,244,255,0,0,5,0,244,255,231,255,224,255,183,255,95,255,
2,255,183,254,122,254,96,254,140,254,212,254,246,254,245,254,226,254,222,254,62,255,221,255,43,0,64,0,140,0,0,1,
108,1,208,1,61,2,208,2,76,3,88,3,70,3,87,3,77,3,65,3,80,3,11,3,135,2,66,2,27,2,229,1,
189,1,115,1,245,0,156,0,98,0,2,0,148,255,88,255,70,255,36,255,227,254,181,254,158,254,108,254,71,254,114,254,
182,254,225,254,37,255,147,255,252,255,73,0,89,0,32,0,244,255,1,0,18,0,48,0,122,0,173,0,176,0,165,0,
110,0,23,0,250,255,10,0,5,0,16,0,96,0,200,0,242,0,196,0,108,0,10,0,173,255,141,255,187,255,248,255,
52,0,121,0,179,0,246,0,89,1,176,1,234,1,50,2,149,2,239,2,27,3,34,3,47,3,57,3,40,3,14,3,
234,2,190,2,189,2,253,2,52,3,9,3,148,2,64,2,255,1,124,1,5,1,252,0,27,1,31,1,15,1,219,0,
180,0,203,0,205,0,161,0,159,0,180,0,168,0,166,0,206,0,249,0,19,1,34,1,26,1,17,1,41,1,36,1,
198,0,142,0,189,0,191,0,145,0,182,0,229,0,199,0,166,0,146,0,116,0,68,0,201,255,58,255,255,254,191,254,
80,254,22,254,253,253,221,253,210,253,156,253,77,253,86,253,153,253,228,253,62,254,93,254,73,254,88,254,87,254,73,254,
131,254,204,254,14,255,120,255,185,255,186,255,209,255,195,255,126,255,107,255,102,255,97,255,193,255,54,0,39,0,227,255,
219,255,240,255,245,255,227,255,215,255,228,255,235,255,233,255,236,255,210,255,170,255,153,255,141,255,147,255,196,255,217,255,
191,255,190,255,224,255,39,0,155,0,231,0,240,0,252,0,251,0,211,0,187,0,154,0,70,0,0,0,224,255,206,255,
204,255,189,255,137,255,99,255,95,255,102,255,69,255,222,254,137,254,146,254,187,254,233,254,27,255,2,255,205,254,234,254,
28,255,73,255,160,255,218,255,238,255,44,0,86,0,76,0,108,0,179,0,252,0,58,1,37,1,244,0,30,1,83,1,
55,1,9,1,218,0,135,0,51,0,17,0,21,0,230,255,117,255,60,255,43,255,200,254,89,254,64,254,61,254,58,254,
78,254,102,254,156,254,238,254,41,255,91,255,107,255,53,255,30,255,76,255,117,255,184,255,53,0,157,0,202,0,211,0,
198,0,183,0,161,0,147,0,165,0,140,0,36,0,208,255,169,255,109,255,31,255,228,254,212,254,237,254,254,254,1,255,
24,255,37,255,11,255,232,254,195,254,160,254,137,254,104,254,76,254,83,254,74,254,26,254,24,254,112,254,217,254,6,255,
10,255,14,255,254,254,197,254,117,254,28,254,228,253,241,253,0,254,214,253,160,253,123,253,90,253,56,253,248,252,180,252,
195,252,15,253,65,253,104,253,138,253,103,253,11,253,206,252,225,252,55,253,196,253,152,254,142,255,49,0,144,0,34,1,
154,1,148,1,194,1,158,2,82,3,88,3,47,3,34,3,17,3,13,3,38,3,50,3,22,3,218,2,143,2,65,2,
5,2,218,1,122,1,232,0,157,0,142,0,67,0,12,0,47,0,24,0,177,255,160,255,214,255,238,255,35,0,188,0,
106,1,175,1,137,1,112,1,151,1,207,1,17,2,80,2,122,2,219,2,104,3,153,3,138,3,151,3,109,3,255,2,
194,2,148,2,39,2,176,1,63,1,203,0,140,0,71,0,136,255,183,254,108,254,97,254,66,254,52,254,45,254,16,254,
26,254,108,254,219,254,58,255,110,255,146,255,181,255,149,255,93,255,135,255,203,255,234,255,80,0,206,0,222,0,228,0,
42,1,76,1,69,1,75,1,64,1,36,1,10,1,230,0,183,0,119,0,65,0,53,0,10,0,179,255,169,255,226,255,
252,255,3,0,239,255,178,255,156,255,161,255,104,255,29,255,29,255,103,255,182,255,191,255,172,255,229,255,56,0,81,0,
95,0,125,0,130,0,122,0,118,0,91,0,39,0,240,255,199,255,181,255,169,255,121,255,3,255,117,254,44,254,10,254,
186,253,105,253,87,253,62,253,236,252,159,252,143,252,165,252,154,252,99,252,71,252,79,252,69,252,39,252,243,251,152,251,
95,251,138,251,221,251,51,252,192,252,138,253,87,254,7,255,175,255,107,0,45,1,185,1,2,2,55,2,106,2,127,2,
142,2,221,2,94,3,175,3,198,3,231,3,4,4,221,3,150,3,97,3,36,3,194,2,89,2,10,2,197,1,90,1,
215,0,138,0,134,0,156,0,192,0,235,0,27,1,115,1,180,1,113,1,9,1,31,1,128,1,178,1,217,1,67,2,
227,2,132,3,245,3,20,4,222,3,122,3,2,3,102,2,215,1,169,1,171,1,147,1,144,1,162,1,98,1,211,0,
78,0,9,0,7,0,248,255,185,255,186,255,9,0,25,0,214,255,167,255,174,255,223,255,6,0,241,255,238,255,62,0,
129,0,126,0,116,0,104,0,86,0,107,0,153,0,211,0,52,1,114,1,69,1,17,1,1,1,195,0,115,0,77,0,
37,0,28,0,113,0,178,0,150,0,123,0,109,0,51,0,7,0,51,0,137,0,190,0,197,0,206,0,227,0,210,0,
144,0,64,0,253,255,224,255,198,255,104,255,226,254,128,254,79,254,52,254,8,254,220,253,24,254,179,254,26,255,50,255,
68,255,87,255,86,255,38,255,192,254,91,254,239,253,111,253,73,253,142,253,178,253,154,253,126,253,80,253,0,253,145,252,
11,252,159,251,65,251,204,250,112,250,61,250,21,250,233,249,125,249,8,249,54,249,195,249,48,250,1,251,65,252,50,253,
6,254,46,255,87,0,88,1,69,2,16,3,246,3,230,4,136,5,31,6,184,6,224,6,230,6,9,7,155,6,195,5,
78,5,237,4,43,4,120,3,249,2,82,2,127,1,179,0,241,255,24,255,44,254,131,253,71,253,30,253,215,252,195,252,
7,253,98,253,157,253,190,253,239,253,88,254,242,254,129,255,240,255,122,0,29,1,137,1,214,1,51,2,79,2,55,2,
101,2,152,2,103,2,29,2,212,1,101,1,6,1,172,0,52,0,245,255,227,255,145,255,49,255,253,254,194,254,167,254,
213,254,6,255,57,255,157,255,241,255,4,0,244,255,210,255,178,255,188,255,247,255,59,0,80,0,41,0,26,0,104,0,
213,0,241,0,208,0,237,0,86,1,148,1,132,1,114,1,140,1,200,1,1,2,33,2,94,2,207,2,14,3,11,3,
39,3,86,3,71,3,11,3,196,2,132,2,74,2,216,1,43,1,191,0,171,0,115,0,243,255,113,255,2,255,180,254,
157,254,125,254,17,254,127,253,6,253,187,252,174,252,186,252,160,252,107,252,71,252,78,252,137,252,194,252,188,252,161,252,
152,252,123,252,86,252,60,252,11,252,207,251,162,251,106,251,51,251,4,251,187,250,120,250,68,250,208,249,85,249,72,249,
96,249,64,249,19,249,245,248,2,249,107,249,18,250,227,250,247,251,19,253,10,254,217,254,75,255,135,255,32,0,19,1,
27,2,76,3,90,4,246,4,141,5,72,6,170,6,160,6,129,6,116,6,142,6,170,6,157,6,176,6,239,6,206,6,
52,6,126,5,183,4,234,3,75,3,174,2,2,2,166,1,152,1,92,1,232,0,144,0,93,0,35,0,217,255,150,255,
106,255,65,255,5,255,219,254,221,254,228,254,212,254,196,254,211,254,19,255,114,255,194,255,24,0,171,0,68,1,136,1,
145,1,144,1,132,1,124,1,124,1,106,1,114,1,192,1,5,2,4,2,254,1,254,1,162,1,204,0,220,255,78,255,
78,255,151,255,220,255,54,0,196,0,62,1,89,1,31,1,195,0,120,0,89,0,102,0,176,0,58,1,213,1,128,2,
90,3,45,4,190,4,70,5,229,5,82,6,113,6,102,6,47,6,207,5,104,5,0,5,179,4,185,4,225,4,221,4,
211,4,220,4,167,4,22,4,64,3,65,2,103,1,174,0,185,255,207,254,118,254,103,254,100,254,140,254,141,254,52,254,
210,253,94,253,194,252,85,252,255,251,151,251,151,251,15,252,132,252,215,252,20,253,64,253,118,253,118,253,44,253,16,253,
23,253,243,252,235,252,11,253,22,253,46,253,28,253,149,252,19,252,199,251,91,251,229,250,99,250,171,249,30,249,208,248,
111,248,38,248,10,248,240,247,17,248,57,248,16,248,32,248,122,248,149,248,214,248,138,249,15,250,99,250,200,250,230,250,
229,250,29,251,47,251,7,251,249,250,239,250,231,250,234,250,193,250,185,250,37,251,140,251,150,251,168,251,0,252,104,252,
166,252,204,252,249,252,1,253,208,252,146,252,35,252,117,251,239,250,166,250,104,250,90,250,134,250,185,250,203,250,171,250,
168,250,26,251,175,251,111,252,229,253,138,255,175,0,212,1,26,3,253,3,186,4,136,5,48,6,225,6,191,7,198,8,
104,10,149,12,181,14,191,16,181,18,87,20,219,21,48,23,218,23,56,24,179,24,221,24,162,24,106,24,19,24,86,23,
74,22,245,20,12,19,90,16,47,13,23,10,30,7,17,4,54,1,217,254,196,252,186,250,190,248,217,246,0,245,74,243,
240,241,243,240,76,240,46,240,128,240,223,240,114,241,124,242,155,243,140,244,129,245,123,246,95,247,51,248,251,248,219,249,
221,250,168,251,39,252,181,252,108,253,34,254,187,254,59,255,190,255,48,0,95,0,106,0,109,0,94,0,127,0,249,0,
131,1,4,2,127,2,222,2,64,3,133,3,81,3,6,3,25,3,32,3,224,2,196,2,244,2,91,3,191,3,218,3,
228,3,25,4,17,4,191,3,175,3,234,3,28,4,60,4,75,4,59,4,41,4,59,4,100,4,78,4,183,3,185,2,
96,1,144,255,111,253,23,251,104,248,138,245,16,243,132,241,221,240,114,240,16,240,42,240,82,240,200,239,241,238,15,238,
155,236,223,234,129,233,114,232,36,232,48,233,252,234,27,237,36,240,27,244,122,248,23,253,168,1,241,5,49,10,82,14,
13,18,156,21,210,24,17,27,123,28,102,29,130,29,181,28,76,27,44,25,86,22,72,19,44,16,14,13,120,10,120,8,
92,6,15,4,11,2,48,0,43,254,35,252,108,250,120,249,121,249,237,249,153,250,26,252,112,254,217,0,75,3,21,6,
13,9,64,12,244,15,221,19,154,23,247,26,114,29,176,30,202,30,187,29,154,27,216,24,177,21,88,18,84,15,130,12,
32,9,49,5,80,1,109,253,54,249,225,244,204,240,43,237,61,234,26,232,161,230,225,229,222,229,238,229,117,229,13,229,
132,229,187,230,124,232,246,234,246,237,27,241,92,244,169,247,200,250,112,253,75,255,121,0,156,1,1,3,149,4,81,6,
250,7,68,9,11,10,254,9,24,9,28,8,137,7,39,7,248,6,82,7,35,8,246,8,123,9,199,9,7,10,56,10,
87,10,128,10,205,10,106,11,43,12,111,12,19,12,121,11,188,10,227,9,0,9,223,7,187,6,255,5,42,5,228,3,
188,2,156,1,25,0,166,254,91,253,211,251,128,250,169,249,180,248,128,247,67,246,185,244,234,242,51,241,146,239,32,238,
53,237,249,236,152,237,219,238,240,239,169,240,169,241,211,242,99,243,116,243,200,243,134,244,99,245,91,246,138,247,214,248,
0,250,179,250,206,250,170,250,173,250,236,250,133,251,158,252,237,253,234,254,94,255,112,255,64,255,187,254,253,253,127,253,
104,253,96,253,72,253,66,253,60,253,235,252,16,252,184,250,78,249,71,248,252,247,126,248,96,249,84,250,136,251,218,252,
229,253,175,254,36,255,39,255,74,255,225,255,108,0,205,0,52,1,120,1,189,1,56,2,117,2,64,2,222,1,57,1,
88,0,170,255,20,255,74,254,161,253,83,253,36,253,252,252,228,252,207,252,213,252,30,253,151,253,17,254,139,254,32,255,
198,255,93,0,254,0,175,1,44,2,116,2,243,2,186,3,116,4,22,5,197,5,80,6,123,6,95,6,37,6,170,5,
214,4,245,3,57,3,90,2,89,1,184,0,102,0,224,255,106,255,124,255,167,255,115,255,34,255,9,255,86,255,13,0,
178,0,13,1,164,1,143,2,89,3,14,4,228,4,191,5,163,6,167,7,194,8,231,9,203,10,34,11,23,11,228,10,
127,10,230,9,0,9,181,7,55,6,164,4,4,3,147,1,89,0,25,255,205,253,162,252,189,251,250,250,251,249,240,248,
77,248,206,247,93,247,151,247,77,248,225,248,148,249,103,250,214,250,55,251,6,252,237,252,178,253,103,254,253,254,163,255,
171,0,18,2,123,3,92,4,194,4,89,5,3,6,34,6,239,5,171,5,22,5,128,4,89,4,83,4,71,4,101,4,
136,4,119,4,254,3,244,2,231,1,135,1,122,1,52,1,206,0,103,0,33,0,82,0,225,0,139,1,87,2,243,2,
240,2,161,2,120,2,125,2,213,2,62,3,4,3,87,2,199,1,251,0,211,255,249,254,68,254,17,253,202,251,21,251,
152,250,181,249,131,248,127,247,222,246,173,246,50,247,54,248,247,248,103,249,214,249,229,249,187,249,86,250,169,251,237,252,
33,254,97,255,107,0,96,1,106,2,93,3,36,4,166,4,244,4,103,5,193,5,133,5,12,5,162,4,32,4,244,3,
89,4,140,4,56,4,175,3,235,2,23,2,185,1,170,1,173,1,237,1,49,2,23,2,219,1,229,1,79,2,195,2,
207,2,169,2,185,2,236,2,67,3,188,3,241,3,238,3,240,3,191,3,135,3,167,3,192,3,167,3,155,3,93,3,
201,2,37,2,129,1,3,1,204,0,88,0,59,255,206,253,110,252,251,250,98,249,218,247,91,246,200,244,108,243,81,242,
52,241,121,240,114,240,177,240,11,241,143,241,54,242,84,243,218,244,68,246,144,247,150,248,30,249,192,249,127,250,181,250,
179,250,169,250,46,250,122,249,214,248,69,248,219,247,40,247,49,246,145,245,249,244,103,244,146,244,196,244,16,244,198,242,
238,240,37,239,201,238,176,239,84,241,33,244,190,247,97,251,207,254,232,1,19,5,199,8,199,12,27,17,155,21,150,25,
27,29,70,32,193,34,224,36,157,38,114,39,201,39,178,39,117,38,55,36,39,33,54,29,7,25,177,20,224,15,245,10,
239,5,175,0,220,251,147,247,168,243,79,240,55,237,53,234,176,231,185,229,149,228,62,228,232,227,239,227,45,229,20,231,
160,233,140,237,99,242,160,247,29,253,40,2,103,6,219,9,130,12,242,14,40,17,64,18,30,18,8,17,102,15,43,14,
69,13,233,11,70,10,108,8,39,6,196,3,205,0,207,252,142,248,101,244,124,240,168,237,225,235,200,234,193,234,160,235,
171,236,125,237,3,238,240,238,48,241,231,244,229,249,62,255,205,3,11,8,143,12,202,16,187,20,110,24,96,27,25,30,
255,32,16,35,231,35,224,35,240,34,78,33,46,31,104,28,19,25,98,21,194,17,197,14,25,12,108,9,100,7,247,5,
35,4,148,1,215,254,161,252,57,251,117,250,87,250,217,250,203,251,73,253,233,254,213,255,123,0,167,1,17,3,150,4,
69,6,105,7,156,7,41,7,249,5,232,3,96,1,249,254,16,253,164,251,100,250,3,249,78,247,98,245,192,243,154,242,
126,241,51,240,47,239,183,238,79,238,178,237,83,237,121,237,11,238,22,239,143,240,55,242,12,244,253,245,236,247,66,250,
62,253,44,0,127,2,112,4,39,6,160,7,27,9,165,10,246,11,231,12,45,13,116,12,37,11,237,9,177,8,3,7,
223,4,129,2,65,0,69,254,35,252,177,249,172,247,160,246,43,246,213,245,152,245,111,245,85,245,125,245,49,246,137,247,
58,249,177,250,196,251,175,252,75,253,113,253,153,253,16,254,172,254,133,255,139,0,49,1,134,1,230,1,237,1,85,1,
136,0,162,255,159,254,240,253,188,253,155,253,45,253,78,252,42,251,49,250,176,249,161,249,222,249,107,250,111,251,168,252,
119,253,187,253,234,253,94,254,29,255,245,255,168,0,35,1,75,1,57,1,96,1,210,1,96,2,6,3,69,3,130,2,
55,1,16,0,41,255,172,254,95,254,189,253,49,253,12,253,137,252,121,251,137,250,227,249,108,249,41,249,242,248,167,248,
83,248,56,248,169,248,65,249,146,249,75,250,210,251,81,253,80,254,255,254,129,255,60,0,116,1,193,2,188,3,68,4,
95,4,76,4,2,4,107,3,250,2,215,2,175,2,105,2,192,1,108,0,239,254,162,253,83,252,65,251,150,250,240,249,
85,249,10,249,37,249,206,249,188,250,95,251,246,251,235,252,24,254,74,255,100,0,106,1,157,2,198,3,141,4,75,5,
20,6,158,6,42,7,205,7,35,8,74,8,108,8,84,8,24,8,197,7,26,7,40,6,14,5,238,3,56,3,233,2,
121,2,174,1,161,0,151,255,211,254,11,254,21,253,128,252,83,252,228,251,43,251,167,250,136,250,186,250,251,250,16,251,
10,251,0,251,4,251,48,251,104,251,190,251,102,252,217,252,128,252,249,251,245,251,63,252,194,252,124,253,221,253,212,253,
246,253,58,254,39,254,167,253,8,253,178,252,163,252,142,252,171,252,3,253,12,253,251,252,95,253,245,253,144,254,94,255,
82,0,141,1,246,2,219,3,58,4,165,4,45,5,197,5,79,6,153,6,244,6,135,7,214,7,161,7,13,7,143,6,
174,6,9,7,253,6,143,6,172,5,146,4,12,4,218,3,113,3,58,3,254,2,47,2,76,1,141,0,172,255,32,255,
38,255,65,255,45,255,242,254,215,254,55,255,202,255,28,0,48,0,56,0,112,0,199,0,245,0,44,1,151,1,18,2,
221,2,222,3,97,4,98,4,44,4,186,3,66,3,173,2,194,1,20,1,210,0,82,0,130,255,152,254,148,253,224,252,
169,252,144,252,119,252,80,252,237,251,98,251,171,250,211,249,49,249,212,248,198,248,34,249,172,249,105,250,145,251,220,252,
45,254,131,255,117,0,60,1,109,2,187,3,185,4,96,5,152,5,171,5,228,5,26,6,105,6,175,6,62,6,67,5,
83,4,101,3,181,2,118,2,46,2,226,1,214,1,188,1,173,1,16,2,159,2,1,3,82,3,151,3,188,3,237,3,
120,4,77,5,17,6,188,6,86,7,173,7,237,7,48,8,28,8,249,7,63,8,120,8,97,8,35,8,96,7,22,6,
221,4,162,3,70,2,32,1,16,0,242,254,13,254,102,253,10,253,0,253,209,252,120,252,120,252,159,252,188,252,31,253,
137,253,160,253,150,253,140,253,200,253,142,254,91,255,198,255,10,0,56,0,115,0,234,0,32,1,224,0,125,0,227,255,
20,255,85,254,119,253,138,252,214,251,1,251,23,250,116,249,181,248,235,247,140,247,10,247,74,246,9,246,6,246,224,245,
209,245,154,245,98,245,222,245,172,246,74,247,242,247,106,248,157,248,41,249,10,250,248,250,19,252,248,252,93,253,220,253,
209,254,225,255,190,0,102,1,21,2,205,2,37,3,213,2,10,2,37,1,118,0,244,255,123,255,11,255,138,254,248,253,
130,253,13,253,155,252,137,252,213,252,116,253,128,254,133,255,45,0,230,0,208,1,140,2,218,2,154,2,27,2,205,1,
116,1,233,0,138,0,123,0,210,0,152,1,106,2,42,3,21,4,9,5,237,5,175,6,227,6,145,6,33,6,189,5,
152,5,129,5,7,5,170,4,185,4,108,4,170,3,5,3,124,2,34,2,10,2,233,1,13,2,165,2,247,2,254,2,
46,3,48,3,22,3,103,3,193,3,244,3,186,4,43,6,180,7,44,9,136,10,152,11,56,12,48,12,100,11,21,10,
137,8,216,6,35,5,132,3,233,1,82,0,5,255,16,254,56,253,127,252,239,251,64,251,138,250,38,250,213,249,114,249,
117,249,206,249,202,249,77,249,165,248,236,247,97,247,81,247,166,247,90,248,145,249,252,250,44,252,54,253,45,254,219,254,
72,255,164,255,226,255,245,255,220,255,144,255,102,255,212,255,201,0,252,1,98,3,226,4,92,6,207,7,234,8,41,9,
155,8,129,7,198,5,162,3,128,1,67,255,248,252,73,251,87,250,152,249,41,249,100,249,226,249,76,250,222,250,141,251,
249,251,34,252,58,252,63,252,53,252,63,252,102,252,100,252,181,251,65,250,159,248,103,247,206,246,201,246,177,246,229,245,
92,245,101,246,133,247,135,245,159,239,195,231,213,223,44,217,130,213,221,213,93,217,179,222,247,229,168,239,40,250,238,1,
26,5,88,5,72,5,221,5,130,7,83,11,123,17,92,24,8,31,180,38,19,48,165,56,191,60,246,59,46,57,72,54,
157,50,188,45,55,40,216,33,55,26,145,18,103,12,101,7,44,2,57,252,139,246,220,242,164,241,43,241,101,239,5,236,
61,232,107,229,46,228,88,228,168,229,67,232,145,236,92,243,1,253,247,7,181,17,27,25,133,30,151,34,229,37,59,40,
132,40,178,38,52,36,241,33,213,31,200,29,86,27,168,23,237,18,91,14,171,10,36,7,44,2,243,250,63,242,49,233,
165,224,209,217,64,213,13,210,35,208,252,208,251,212,192,218,207,224,199,229,163,232,233,233,232,234,72,236,52,238,178,240,
248,243,212,248,64,255,66,5,65,9,108,11,205,11,42,10,242,7,88,7,250,8,150,11,99,13,227,13,244,13,92,13,
195,10,156,6,150,2,83,255,140,253,130,254,159,1,216,4,254,6,203,7,116,7,174,6,220,5,15,5,154,4,157,4,
60,5,47,7,57,10,89,12,22,12,217,9,208,6,59,4,228,2,78,2,195,1,142,1,205,1,0,2,5,2,92,1,
3,255,43,251,197,246,60,242,157,238,69,237,230,237,118,239,151,241,203,243,79,245,150,245,61,244,177,241,78,239,20,238,
116,238,145,240,109,243,156,245,35,247,156,248,128,249,109,249,96,249,45,250,216,251,84,254,20,1,57,3,111,4,85,4,
208,2,46,1,48,0,55,255,182,254,125,255,191,0,196,1,104,2,187,1,66,255,131,251,209,246,245,241,51,238,236,235,
47,235,21,236,210,237,130,239,1,241,75,242,76,243,251,243,169,244,44,246,177,248,123,251,99,254,113,1,250,3,182,5,
13,7,95,8,29,10,39,12,186,13,202,14,81,15,75,14,133,11,20,8,119,4,206,0,185,253,125,251,253,249,97,249,
152,249,59,250,31,251,5,252,169,252,63,253,240,253,132,254,26,255,28,0,157,1,122,3,139,5,179,7,14,10,138,12,
169,14,4,16,130,16,74,16,165,15,106,14,92,12,5,10,247,7,38,6,159,4,85,3,208,1,24,0,125,254,242,252,
155,251,168,250,189,249,148,248,117,247,207,246,208,246,40,247,177,247,182,248,52,250,42,252,2,255,59,2,178,4,75,6,
64,7,126,7,123,7,199,7,87,8,249,8,130,9,230,9,96,10,203,10,165,10,170,9,221,7,245,5,46,5,164,5,
249,5,9,5,31,3,85,1,253,255,103,254,129,252,3,251,37,250,187,249,197,249,39,250,194,250,140,251,83,252,216,252,
244,252,173,252,90,252,80,252,190,252,218,253,203,255,116,2,108,5,35,8,119,10,115,12,159,13,186,13,59,13,98,12,
57,11,1,10,236,8,41,8,183,7,249,6,163,5,11,4,66,2,100,0,215,254,114,253,196,251,232,249,72,248,251,246,
166,245,63,244,129,243,209,243,168,244,118,245,247,245,61,246,161,246,216,246,74,246,130,245,102,245,236,245,168,246,52,247,
107,247,206,247,185,248,189,249,85,250,112,250,109,250,205,250,110,251,187,251,165,251,142,251,138,251,118,251,106,251,110,251,
37,251,152,250,108,250,173,250,26,251,13,252,97,253,70,254,211,254,115,255,245,255,104,0,252,0,127,1,14,2,203,2,
115,3,63,4,148,5,6,7,254,7,129,8,242,8,129,9,205,9,104,9,136,8,208,7,169,7,205,7,143,7,180,6,
123,5,71,4,165,3,137,3,38,3,124,2,58,2,90,2,135,2,182,2,236,2,48,3,66,3,221,2,112,2,91,2,
119,2,5,3,244,3,64,4,201,3,110,3,73,3,238,2,81,2,112,1,77,0,30,255,33,254,134,253,16,253,63,252,
48,251,117,250,52,250,56,250,82,250,71,250,234,249,79,249,147,248,207,247,53,247,204,246,109,246,41,246,14,246,10,246,
107,246,87,247,51,248,168,248,15,249,160,249,116,250,79,251,165,251,229,251,213,252,229,253,139,254,31,255,118,255,130,255,
202,255,12,0,238,255,238,255,0,0,168,255,13,255,87,254,164,253,84,253,75,253,12,253,139,252,241,251,104,251,22,251,
14,251,101,251,217,251,11,252,108,252,143,253,17,255,90,0,89,1,56,2,40,3,76,4,180,5,93,7,3,9,83,10,
108,11,187,12,80,14,122,15,170,15,73,15,147,14,39,13,142,11,188,10,108,10,11,10,146,9,27,9,236,8,3,9,
173,8,171,7,86,6,252,4,35,4,39,4,181,4,112,5,39,6,203,6,129,7,244,7,222,7,228,7,41,8,11,8,
188,7,185,7,199,7,157,7,33,7,132,6,51,6,220,5,248,4,226,3,223,2,212,1,23,1,186,0,40,0,18,255,
164,253,72,252,105,251,225,250,92,250,236,249,185,249,228,249,117,250,35,251,173,251,250,251,210,251,72,251,195,250,118,250,
110,250,175,250,78,251,116,252,218,253,251,254,193,255,46,0,2,0,83,255,152,254,97,254,11,255,31,0,253,0,215,1,
207,2,109,3,136,3,68,3,169,2,17,2,239,1,61,2,212,2,104,3,94,3,147,2,172,1,12,1,95,0,103,255,
119,254,13,254,43,254,115,254,3,255,30,0,15,1,39,1,230,0,175,0,62,0,191,255,116,255,76,255,140,255,34,0,
158,0,61,1,212,1,142,1,217,0,156,0,111,0,232,255,56,255,81,254,92,253,186,252,72,252,178,251,209,250,189,249,
238,248,133,248,58,248,239,247,133,247,38,247,46,247,37,247,192,246,198,246,47,247,48,247,33,247,131,247,55,248,88,249,
160,250,112,251,16,252,240,252,202,253,110,254,184,254,100,254,208,253,162,253,237,253,118,254,248,254,15,255,174,254,99,254,
120,254,98,254,208,253,73,253,21,253,2,253,61,253,207,253,61,254,113,254,221,254,196,255,3,1,30,2,208,2,88,3,
248,3,188,4,178,5,214,6,21,8,38,9,141,9,119,9,136,9,192,9,241,9,64,10,89,10,201,9,225,8,38,8,
150,7,230,6,1,6,51,5,174,4,28,4,22,3,178,1,111,0,159,255,251,254,109,254,107,254,209,254,243,254,203,254,
144,254,42,254,206,253,227,253,128,254,154,255,246,0,44,2,45,3,6,4,119,4,117,4,129,4,220,4,16,5,227,4,
224,4,44,5,72,5,53,5,11,5,66,4,201,2,77,1,16,0,7,255,62,254,129,253,183,252,29,252,183,251,134,251,
177,251,238,251,0,252,86,252,4,253,123,253,223,253,144,254,18,255,70,255,224,255,180,0,27,1,93,1,186,1,222,1,
239,1,20,2,246,1,185,1,158,1,84,1,217,0,123,0,8,0,46,255,232,253,94,252,244,250,250,249,109,249,57,249,
84,249,173,249,65,250,237,250,87,251,93,251,97,251,209,251,115,252,227,252,83,253,210,253,243,253,2,254,166,254,166,255,
111,0,225,0,38,1,136,1,219,1,149,1,3,1,196,0,162,0,158,0,73,1,90,2,4,3,53,3,54,3,72,3,
129,3,118,3,211,2,37,2,239,1,215,1,113,1,197,0,232,255,206,254,149,253,127,252,194,251,80,251,247,250,207,250,
244,250,39,251,92,251,191,251,3,252,226,251,162,251,119,251,123,251,220,251,112,252,23,253,242,253,189,254,76,255,215,255,
42,0,21,0,238,255,182,255,96,255,71,255,71,255,37,255,53,255,66,255,226,254,136,254,97,254,27,254,237,253,239,253,
179,253,67,253,237,252,176,252,156,252,179,252,228,252,63,253,154,253,201,253,31,254,165,254,255,254,107,255,34,0,139,0,
126,0,157,0,241,0,11,1,235,0,148,0,4,0,176,255,195,255,218,255,245,255,21,0,223,255,163,255,227,255,26,0,
244,255,255,255,83,0,159,0,14,1,189,1,133,2,141,3,202,4,214,5,174,6,148,7,71,8,110,8,68,8,57,8,
68,8,35,8,238,7,190,7,66,7,77,6,57,5,80,4,127,3,148,2,86,1,243,255,247,254,57,254,47,253,41,252,
151,251,62,251,254,250,203,250,93,250,241,249,211,249,196,249,220,249,31,250,242,249,174,249,59,250,43,251,228,251,168,252,
88,253,182,253,23,254,173,254,131,255,126,0,3,1,244,0,192,0,55,0,44,255,24,254,58,253,157,252,112,252,137,252,
175,252,200,252,137,252,250,251,154,251,144,251,163,251,193,251,6,252,124,252,7,253,181,253,136,254,33,255,102,255,144,255,
109,255,23,255,43,255,105,255,80,255,45,255,234,254,9,254,225,252,237,251,67,251,47,251,171,251,30,252,66,252,94,252,
193,252,61,253,63,253,237,252,255,252,105,253,217,253,96,254,227,254,93,255,16,0,198,0,111,1,104,2,69,3,138,3,
206,3,23,4,169,3,4,3,229,2,184,2,52,2,229,1,158,1,5,1,86,0,106,255,32,254,27,253,127,252,246,251,
188,251,202,251,158,251,111,251,137,251,153,251,170,251,0,252,106,252,220,252,104,253,215,253,64,254,229,254,120,255,187,255,
246,255,79,0,140,0,147,0,154,0,216,0,36,1,48,1,2,1,208,0,172,0,154,0,169,0,217,0,6,1,16,1,
243,0,175,0,92,0,30,0,253,255,23,0,121,0,207,0,22,1,188,1,135,2,210,2,185,2,200,2,43,3,166,3,
12,4,137,4,25,5,74,5,37,5,23,5,47,5,88,5,115,5,68,5,22,5,61,5,134,5,7,6,187,6,235,6,
153,6,144,6,226,6,32,7,31,7,200,6,76,6,8,6,17,6,57,6,37,6,196,5,131,5,116,5,74,5,248,4,
114,4,198,3,35,3,73,2,100,1,29,1,1,1,150,0,157,0,41,1,116,1,150,1,223,1,44,2,123,2,159,2,
132,2,144,2,170,2,139,2,123,2,120,2,49,2,216,1,137,1,23,1,162,0,80,0,4,0,170,255,73,255,238,254,
148,254,56,254,211,253,48,253,118,252,68,252,119,252,92,252,37,252,72,252,156,252,238,252,61,253,131,253,197,253,236,253,
255,253,59,254,137,254,211,254,97,255,58,0,15,1,187,1,109,2,104,3,95,4,207,4,6,5,82,5,99,5,133,5,
24,6,152,6,227,6,42,7,22,7,229,6,5,7,247,6,181,6,189,6,140,6,228,5,125,5,93,5,2,5,127,4,
252,3,93,3,180,2,57,2,254,1,190,1,69,1,190,0,60,0,190,255,120,255,114,255,106,255,30,255,106,254,165,253,
74,253,15,253,158,252,83,252,106,252,175,252,241,252,6,253,0,253,238,252,186,252,190,252,69,253,240,253,154,254,59,255,
92,255,53,255,113,255,207,255,10,0,82,0,103,0,64,0,51,0,238,255,67,255,213,254,196,254,165,254,139,254,188,254,
42,255,109,255,9,255,36,254,107,253,40,253,63,253,133,253,168,253,126,253,64,253,34,253,7,253,187,252,106,252,124,252,
207,252,238,252,236,252,14,253,44,253,15,253,201,252,153,252,193,252,18,253,18,253,176,252,37,252,144,251,22,251,180,250,
39,250,115,249,221,248,108,248,220,247,241,246,237,245,152,245,56,246,8,247,109,247,204,247,145,248,104,249,222,249,7,250,
50,250,60,250,209,249,42,249,235,248,85,249,42,250,12,251,182,251,1,252,4,252,27,252,136,252,24,253,147,253,69,254,
121,255,18,1,16,3,140,5,75,8,65,11,135,14,160,17,33,20,108,22,167,24,125,26,73,28,123,30,144,32,241,33,
107,34,184,33,1,32,254,29,210,27,15,25,185,21,30,18,117,14,229,10,92,7,187,3,251,255,220,251,77,247,247,242,
112,239,151,236,31,234,226,231,200,229,255,227,208,226,70,226,112,226,119,227,63,229,121,231,4,234,206,236,203,239,24,243,
181,246,90,250,210,253,250,0,174,3,33,6,131,8,125,10,244,11,75,13,78,14,118,14,224,13,171,12,176,10,64,8,
193,5,52,3,227,0,28,255,133,253,191,251,215,249,223,247,11,246,159,244,158,243,29,243,69,243,220,243,146,244,94,245,
34,246,195,246,131,247,184,248,134,250,239,252,184,255,119,2,242,4,71,7,167,9,240,11,220,13,95,15,133,16,69,17,
207,17,109,18,3,19,88,19,109,19,60,19,188,18,11,18,28,17,202,15,31,14,23,12,158,9,0,7,135,4,34,2,
239,255,49,254,194,252,105,251,58,250,37,249,13,248,63,247,230,246,185,246,153,246,161,246,197,246,10,247,117,247,184,247,
192,247,211,247,245,247,22,248,84,248,147,248,146,248,86,248,251,247,177,247,164,247,139,247,46,247,229,246,205,246,173,246,
208,246,115,247,36,248,148,248,232,248,70,249,221,249,208,250,252,251,78,253,224,254,128,0,230,1,55,3,162,4,245,5,
35,7,115,8,223,9,60,11,163,12,249,13,235,14,121,15,174,15,137,15,94,15,9,15,220,13,253,11,33,10,91,8,
139,6,167,4,107,2,232,255,134,253,72,251,46,249,92,247,190,245,111,244,142,243,181,242,206,241,70,241,236,240,94,240,
5,240,52,240,167,240,90,241,137,242,1,244,107,245,217,246,84,248,138,249,105,250,103,251,174,252,240,253,30,255,107,0,
230,1,125,3,247,4,37,6,31,7,248,7,147,8,238,8,46,9,86,9,66,9,214,8,22,8,52,7,89,6,132,5,
153,4,142,3,122,2,126,1,154,0,180,255,177,254,139,253,90,252,75,251,162,250,136,250,183,250,218,250,10,251,75,251,
112,251,170,251,11,252,62,252,80,252,171,252,92,253,94,254,191,255,58,1,129,2,116,3,244,3,48,4,142,4,28,5,
200,5,161,6,147,7,121,8,53,9,115,9,30,9,156,8,27,8,99,7,147,6,33,6,6,6,186,5,9,5,45,4,
80,3,103,2,112,1,133,0,201,255,69,255,226,254,163,254,114,254,12,254,105,253,163,252,171,251,175,250,2,250,131,249,
230,248,60,248,172,247,84,247,77,247,131,247,208,247,61,248,210,248,98,249,178,249,227,249,79,250,249,250,232,251,119,253,
129,255,80,1,185,2,234,3,203,4,93,5,211,5,73,6,201,6,47,7,66,7,19,7,202,6,110,6,253,5,82,5,
114,4,166,3,237,2,34,2,104,1,167,0,169,255,175,254,240,253,102,253,25,253,221,252,134,252,88,252,121,252,169,252,
209,252,250,252,46,253,162,253,113,254,115,255,97,0,25,1,223,1,246,2,25,4,248,4,158,5,25,6,108,6,180,6,
238,6,238,6,163,6,62,6,252,5,190,5,73,5,187,4,51,4,150,3,223,2,17,2,57,1,167,0,130,0,124,0,
96,0,48,0,211,255,47,255,110,254,240,253,211,253,192,253,141,253,93,253,21,253,147,252,254,251,82,251,132,250,219,249,
106,249,249,248,149,248,87,248,30,248,231,247,210,247,227,247,254,247,252,247,228,247,242,247,51,248,117,248,182,248,43,249,
221,249,156,250,79,251,11,252,200,252,92,253,184,253,15,254,125,254,200,254,216,254,249,254,75,255,194,255,113,0,32,1,
113,1,147,1,183,1,160,1,76,1,240,0,137,0,33,0,227,255,211,255,220,255,202,255,131,255,56,255,251,254,180,254,
128,254,107,254,107,254,149,254,199,254,195,254,171,254,182,254,226,254,17,255,18,255,241,254,242,254,253,254,246,254,6,255,
5,255,170,254,8,254,64,253,109,252,217,251,155,251,140,251,143,251,154,251,172,251,181,251,146,251,75,251,252,250,205,250,
236,250,49,251,102,251,194,251,61,252,151,252,12,253,170,253,24,254,105,254,215,254,91,255,21,0,238,0,132,1,201,1,
202,1,169,1,230,1,132,2,250,2,66,3,137,3,143,3,81,3,33,3,8,3,212,2,132,2,77,2,35,2,178,1,
41,1,250,0,1,1,237,0,225,0,11,1,91,1,148,1,159,1,196,1,33,2,105,2,133,2,162,2,226,2,121,3,
62,4,208,4,107,5,63,6,227,6,70,7,133,7,86,7,228,6,189,6,211,6,220,6,240,6,42,7,97,7,63,7,
151,6,187,5,33,5,217,4,155,4,40,4,136,3,218,2,43,2,151,1,53,1,237,0,172,0,106,0,56,0,50,0,
24,0,188,255,166,255,29,0,153,0,203,0,200,0,162,0,171,0,20,1,155,1,51,2,206,2,40,3,96,3,143,3,
140,3,150,3,220,3,21,4,52,4,77,4,71,4,83,4,109,4,30,4,117,3,251,2,222,2,254,2,6,3,161,2,
29,2,255,1,40,2,28,2,199,1,125,1,101,1,105,1,167,1,39,2,148,2,235,2,108,3,248,3,106,4,202,4,
2,5,53,5,155,5,6,6,79,6,115,6,102,6,82,6,69,6,238,5,115,5,75,5,67,5,253,4,155,4,73,4,
252,3,135,3,231,2,95,2,248,1,121,1,231,0,97,0,11,0,33,0,114,0,155,0,204,0,49,1,131,1,156,1,
125,1,41,1,234,0,231,0,11,1,99,1,196,1,213,1,193,1,196,1,200,1,208,1,201,1,139,1,87,1,64,1,
227,0,53,0,115,255,154,254,203,253,65,253,232,252,162,252,90,252,222,251,57,251,175,250,62,250,195,249,107,249,116,249,
197,249,23,250,99,250,182,250,239,250,32,251,137,251,6,252,74,252,86,252,61,252,32,252,70,252,153,252,197,252,207,252,
237,252,34,253,75,253,66,253,21,253,253,252,235,252,176,252,108,252,67,252,17,252,205,251,171,251,197,251,223,251,191,251,
127,251,65,251,15,251,14,251,77,251,165,251,20,252,144,252,219,252,238,252,227,252,193,252,214,252,66,253,148,253,174,253,
230,253,20,254,0,254,245,253,36,254,95,254,160,254,240,254,24,255,213,254,57,254,167,253,89,253,64,253,52,253,251,252,
138,252,35,252,199,251,67,251,167,250,23,250,115,249,163,248,205,247,80,247,82,247,119,247,125,247,149,247,174,247,147,247,
111,247,113,247,149,247,215,247,236,247,141,247,28,247,58,247,253,247,27,249,91,250,207,251,120,253,252,254,24,0,245,0,
188,1,112,2,55,3,40,4,4,5,167,5,138,6,60,8,125,10,126,12,203,13,143,14,48,15,192,15,225,15,163,15,
176,15,19,16,30,16,171,15,28,15,135,14,196,13,224,12,253,11,254,10,192,9,144,8,168,7,146,6,234,4,1,3,
79,1,22,0,84,255,202,254,111,254,84,254,37,254,151,253,206,252,20,252,202,251,15,252,109,252,184,252,64,253,238,253,
83,254,90,254,45,254,19,254,87,254,240,254,174,255,129,0,69,1,187,1,203,1,111,1,206,0,76,0,24,0,239,255,
179,255,131,255,42,255,90,254,121,253,18,253,250,252,234,252,7,253,93,253,185,253,240,253,229,253,182,253,179,253,18,254,
211,254,202,255,169,0,114,1,86,2,50,3,241,3,194,4,128,5,11,6,181,6,126,7,236,7,251,7,9,8,26,8,
3,8,223,7,248,7,64,8,67,8,199,7,46,7,188,6,38,6,60,5,69,4,116,3,195,2,37,2,105,1,98,0,
71,255,107,254,183,253,226,252,3,252,144,251,179,251,238,251,180,251,22,251,113,250,247,249,200,249,245,249,120,250,51,251,
235,251,109,252,187,252,232,252,252,252,252,252,231,252,201,252,194,252,187,252,116,252,222,251,41,251,138,250,16,250,154,249,
19,249,161,248,101,248,81,248,60,248,245,247,128,247,64,247,145,247,84,248,38,249,217,249,121,250,238,250,29,251,78,251,
245,251,33,253,137,254,232,255,45,1,89,2,84,3,237,3,24,4,26,4,74,4,204,4,127,5,24,6,76,6,30,6,
213,5,124,5,210,4,232,3,31,3,152,2,41,2,140,1,111,0,255,254,255,253,152,253,34,253,109,252,236,251,190,251,
156,251,129,251,161,251,243,251,46,252,46,252,29,252,35,252,71,252,164,252,69,253,254,253,203,254,209,255,231,0,172,1,
242,1,232,1,242,1,51,2,100,2,106,2,132,2,214,2,87,3,229,3,53,4,43,4,11,4,6,4,242,3,160,3,
75,3,68,3,102,3,102,3,73,3,253,2,90,2,167,1,35,1,154,0,252,255,146,255,116,255,92,255,236,254,20,254,
49,253,134,252,19,252,194,251,96,251,35,251,133,251,254,251,172,251,2,251,188,250,154,250,112,250,113,250,167,250,83,251,
147,252,172,253,255,253,228,253,244,253,89,254,234,254,158,255,131,0,75,1,170,1,202,1,199,1,165,1,232,1,201,2,
146,3,226,3,17,4,30,4,210,3,134,3,143,3,183,3,233,3,70,4,131,4,68,4,175,3,241,2,31,2,131,1,
40,1,209,0,157,0,166,0,146,0,66,0,215,255,48,255,101,254,233,253,200,253,170,253,94,253,6,253,210,252,175,252,
105,252,17,252,205,251,153,251,154,251,238,251,83,252,156,252,210,252,202,252,104,252,243,251,192,251,200,251,226,251,7,252,
41,252,13,252,170,251,75,251,0,251,143,250,25,250,251,249,36,250,79,250,91,250,37,250,183,249,117,249,154,249,244,249,
60,250,69,250,22,250,250,249,43,250,176,250,139,251,181,252,8,254,73,255,70,0,16,1,214,1,121,2,199,2,229,2,
24,3,124,3,255,3,124,4,212,4,218,4,133,4,79,4,130,4,160,4,77,4,213,3,112,3,37,3,249,2,202,2,
168,2,200,2,239,2,215,2,152,2,65,2,4,2,4,2,222,1,103,1,20,1,251,0,214,0,191,0,208,0,212,0,
154,0,18,0,100,255,209,254,111,254,55,254,4,254,178,253,116,253,109,253,93,253,49,253,24,253,43,253,120,253,212,253,
239,253,236,253,28,254,122,254,226,254,53,255,114,255,211,255,93,0,222,0,71,1,140,1,166,1,184,1,185,1,153,1,
124,1,100,1,81,1,97,1,115,1,124,1,159,1,132,1,224,0,18,0,121,255,45,255,30,255,230,254,95,254,13,254,
89,254,52,255,78,0,51,1,182,1,214,1,118,1,210,0,129,0,168,0,27,1,187,1,130,2,135,3,169,4,151,5,
80,6,206,6,188,6,48,6,138,5,252,4,178,4,137,4,61,4,30,4,85,4,66,4,176,3,29,3,192,2,113,2,
21,2,172,1,74,1,207,0,19,0,78,255,206,254,216,254,167,255,231,0,12,2,31,3,10,4,77,4,14,4,1,4,
81,4,197,4,96,5,63,6,38,7,173,7,203,7,187,7,114,7,214,6,42,6,185,5,140,5,117,5,53,5,209,4,
130,4,39,4,115,3,153,2,23,2,231,1,183,1,176,1,42,2,204,2,8,3,226,2,158,2,92,2,54,2,0,2,
125,1,32,1,97,1,233,1,102,2,19,3,229,3,108,4,178,4,244,4,232,4,48,4,28,3,59,2,176,1,120,1,
155,1,226,1,239,1,177,1,71,1,155,0,159,255,169,254,23,254,198,253,84,253,202,252,123,252,112,252,116,252,131,252,
205,252,90,253,246,253,102,254,135,254,90,254,23,254,250,253,14,254,87,254,238,254,193,255,85,0,82,0,8,0,255,255,
38,0,19,0,190,255,128,255,118,255,84,255,248,254,193,254,199,254,142,254,9,254,182,253,169,253,183,253,212,253,209,253,
173,253,201,253,44,254,126,254,141,254,78,254,247,253,216,253,235,253,27,254,110,254,163,254,153,254,178,254,29,255,143,255,
197,255,184,255,130,255,7,255,37,254,74,253,222,252,142,252,37,252,220,251,147,251,15,251,130,250,17,250,137,249,201,248,
255,247,129,247,63,247,221,246,112,246,93,246,190,246,107,247,12,248,80,248,82,248,74,248,39,248,235,247,239,247,135,248,
158,249,180,250,125,251,35,252,220,252,213,253,255,254,190,255,193,255,157,255,149,255,54,255,92,254,88,253,152,252,115,252,
176,252,182,252,70,252,120,251,98,250,34,249,254,247,74,247,22,247,18,247,255,246,225,246,230,246,107,247,163,248,114,250,
190,252,95,255,18,2,221,4,191,7,129,10,48,13,230,15,137,18,38,21,169,23,193,25,136,27,41,29,82,30,222,30,
3,31,174,30,153,29,170,27,11,25,30,22,16,19,188,15,45,12,137,8,183,4,123,0,221,251,109,247,198,243,188,240,
241,237,156,235,211,233,79,232,29,231,128,230,144,230,102,231,221,232,146,234,135,236,226,238,106,241,4,244,235,246,11,250,
4,253,173,255,255,1,244,3,197,5,143,7,5,9,15,10,252,10,147,11,74,11,80,10,32,9,173,7,235,5,38,4,
142,2,41,1,229,255,152,254,33,253,150,251,26,250,211,248,227,247,94,247,85,247,212,247,176,248,133,249,29,250,193,250,
202,251,57,253,233,254,197,0,179,2,122,4,213,5,206,6,230,7,82,9,170,10,159,11,45,12,52,12,202,11,80,11,
227,10,115,10,23,10,207,9,100,9,176,8,176,7,95,6,203,4,70,3,53,2,144,1,12,1,168,0,137,0,148,0,
145,0,114,0,71,0,15,0,181,255,91,255,62,255,64,255,52,255,76,255,135,255,108,255,208,254,2,254,61,253,153,252,
23,252,110,251,123,250,140,249,176,248,155,247,143,246,0,246,158,245,24,245,230,244,74,245,233,245,171,246,180,247,228,248,
4,250,252,250,200,251,144,252,105,253,77,254,100,255,216,0,144,2,123,4,128,6,56,8,67,9,184,9,236,9,9,10,
236,9,115,9,205,8,53,8,133,7,120,6,34,5,239,3,0,3,245,1,162,0,89,255,50,254,237,252,111,251,190,249,
244,247,77,246,223,244,172,243,254,242,255,242,112,243,35,244,25,245,51,246,51,247,238,247,110,248,239,248,177,249,230,250,
174,252,214,254,7,1,14,3,203,4,2,6,119,6,23,6,72,5,197,4,241,4,173,5,178,6,142,7,192,7,23,7,
181,5,2,4,134,2,127,1,239,0,224,0,32,1,74,1,67,1,19,1,166,0,15,0,143,255,92,255,162,255,110,0,
129,1,128,2,27,3,12,3,63,2,15,1,20,0,172,255,217,255,95,0,211,0,205,0,31,0,225,254,79,253,173,251,
66,250,89,249,18,249,33,249,54,249,85,249,121,249,122,249,109,249,117,249,141,249,210,249,107,250,91,251,154,252,253,253,
57,255,76,0,89,1,93,2,75,3,26,4,177,4,23,5,107,5,189,5,254,5,0,6,183,5,68,5,198,4,105,4,
71,4,240,3,237,2,153,1,113,0,67,255,191,253,253,251,84,250,252,248,254,247,105,247,92,247,186,247,74,248,221,248,
42,249,33,249,17,249,50,249,179,249,216,250,128,252,66,254,236,255,76,1,77,2,67,3,94,4,77,5,229,5,91,6,
175,6,113,6,137,5,172,4,74,4,235,3,54,3,113,2,194,1,26,1,115,0,156,255,143,254,184,253,102,253,134,253,
242,253,143,254,57,255,187,255,213,255,145,255,91,255,147,255,52,0,14,1,254,1,200,2,43,3,48,3,231,2,55,2,
91,1,177,0,40,0,171,255,112,255,94,255,29,255,148,254,220,253,38,253,198,252,223,252,96,253,14,254,142,254,178,254,
148,254,97,254,68,254,69,254,100,254,226,254,230,255,17,1,236,1,72,2,61,2,26,2,250,1,177,1,77,1,15,1,
253,0,232,0,159,0,34,0,162,255,21,255,98,254,192,253,75,253,204,252,35,252,106,251,207,250,123,250,87,250,36,250,
234,249,229,249,19,250,50,250,73,250,202,250,199,251,201,252,146,253,58,254,195,254,64,255,214,255,124,0,48,1,17,2,
7,3,189,3,13,4,28,4,36,4,44,4,29,4,224,3,109,3,233,2,103,2,194,1,5,1,115,0,4,0,135,255,
229,254,26,254,76,253,167,252,54,252,1,252,245,251,224,251,195,251,146,251,9,251,74,250,192,249,120,249,90,249,105,249,
152,249,246,249,145,250,42,251,103,251,44,251,156,250,251,249,143,249,175,249,130,250,146,251,89,252,223,252,77,253,138,253,
140,253,108,253,103,253,175,253,71,254,66,255,164,0,238,1,152,2,165,2,115,2,79,2,58,2,43,2,84,2,192,2,
55,3,191,3,100,4,254,4,138,5,238,5,238,5,162,5,61,5,212,4,174,4,231,4,65,5,123,5,92,5,28,5,
106,5,53,6,184,6,198,6,162,6,98,6,13,6,154,5,42,5,30,5,112,5,220,5,100,6,255,6,128,7,182,7,
110,7,226,6,111,6,220,5,1,5,74,4,13,4,92,4,250,4,95,5,114,5,86,5,186,4,154,3,127,2,164,1,
17,1,203,0,127,0,10,0,167,255,73,255,204,254,68,254,190,253,61,253,219,252,189,252,10,253,162,253,26,254,72,254,
66,254,31,254,14,254,62,254,183,254,103,255,24,0,158,0,19,1,138,1,17,2,217,2,180,3,22,4,248,3,205,3,
177,3,111,3,37,3,26,3,86,3,189,3,46,4,107,4,95,4,63,4,246,3,53,3,46,2,104,1,12,1,2,1,
51,1,114,1,184,1,49,2,211,2,95,3,184,3,238,3,11,4,21,4,43,4,104,4,219,4,143,5,78,6,144,6,
21,6,87,5,228,4,179,4,156,4,242,4,198,5,74,6,244,5,65,5,194,4,97,4,159,3,26,2,0,0,12,254,
206,252,133,252,91,253,254,254,107,0,193,0,240,255,142,254,90,253,186,252,131,252,96,252,73,252,76,252,66,252,83,252,
237,252,244,253,219,254,91,255,80,255,154,254,140,253,192,252,126,252,168,252,247,252,53,253,92,253,83,253,245,252,122,252,
97,252,214,252,133,253,244,253,218,253,44,253,18,252,208,250,200,249,139,249,109,250,226,251,233,252,20,253,159,252,227,251,
32,251,112,250,244,249,1,250,185,250,158,251,39,252,103,252,146,252,125,252,45,252,4,252,5,252,30,252,171,252,193,253,
237,254,229,255,85,0,220,255,183,254,68,253,161,251,89,250,237,249,12,250,69,250,82,250,183,249,52,248,41,246,35,244,
160,242,246,241,48,242,2,243,244,243,231,244,14,246,46,247,223,247,68,248,222,248,30,250,23,252,147,254,150,1,28,5,
120,8,7,11,210,12,7,14,222,14,128,15,161,15,66,15,24,15,127,15,37,16,156,16,129,16,158,15,225,13,93,11,
178,8,150,6,253,4,143,3,56,2,233,0,145,255,86,254,137,253,125,253,32,254,248,254,201,255,145,0,33,1,57,1,
222,0,159,0,76,1,31,3,151,5,34,8,28,10,215,10,93,10,103,9,90,8,33,7,208,5,160,4,124,3,64,2,
12,1,249,255,242,254,244,253,201,252,27,251,59,249,217,247,247,246,70,246,230,245,255,245,84,246,170,246,22,247,224,247,
32,249,132,250,183,251,186,252,168,253,128,254,58,255,207,255,52,0,145,0,32,1,203,1,58,2,57,2,229,1,139,1,
92,1,102,1,208,1,154,2,74,3,110,3,14,3,99,2,192,1,141,1,252,1,10,3,126,4,207,5,175,6,85,7,
211,7,255,7,241,7,202,7,75,7,55,6,228,4,6,4,220,3,15,4,46,4,218,3,212,2,48,1,69,255,133,253,
28,252,185,250,82,249,152,248,250,248,20,250,14,251,51,251,160,250,25,250,226,249,207,249,12,250,164,250,61,251,200,251,
99,252,232,252,47,253,66,253,79,253,94,253,43,253,142,252,202,251,64,251,26,251,38,251,7,251,163,250,30,250,167,249,
155,249,7,250,79,250,28,250,251,249,118,250,93,251,63,252,242,252,118,253,189,253,0,254,137,254,27,255,99,255,148,255,
5,0,215,0,196,1,41,2,196,1,22,1,145,0,76,0,72,0,103,0,131,0,150,0,173,0,217,0,13,1,34,1,
58,1,143,1,231,1,236,1,152,1,19,1,154,0,142,0,36,1,35,2,5,3,109,3,60,3,113,2,58,1,218,255,
149,254,196,253,149,253,203,253,69,254,32,255,57,0,51,1,140,1,250,0,21,0,148,255,102,255,158,255,175,0,89,2,
239,3,42,5,214,5,198,5,60,5,176,4,111,4,125,4,165,4,177,4,137,4,29,4,94,3,98,2,137,1,9,1,
145,0,6,0,170,255,70,255,146,254,248,253,237,253,123,254,89,255,212,255,165,255,132,255,0,0,224,0,190,1,98,2,
221,2,84,3,180,3,235,3,17,4,67,4,180,4,65,5,100,5,25,5,158,4,191,3,160,2,228,1,136,1,16,1,
100,0,141,255,150,254,170,253,222,252,41,252,144,251,39,251,24,251,91,251,148,251,134,251,71,251,8,251,248,250,63,251,
224,251,199,252,226,253,32,255,37,0,121,0,54,0,231,255,178,255,125,255,95,255,105,255,170,255,36,0,118,0,60,0,
153,255,188,254,162,253,143,252,234,251,208,251,43,252,202,252,96,253,178,253,188,253,123,253,227,252,31,252,167,251,219,251,
147,252,75,253,195,253,251,253,222,253,136,253,93,253,125,253,178,253,213,253,206,253,173,253,157,253,97,253,177,252,249,251,
164,251,138,251,142,251,184,251,232,251,31,252,117,252,180,252,163,252,95,252,35,252,4,252,255,251,30,252,130,252,51,253,
6,254,159,254,188,254,98,254,187,253,254,252,135,252,139,252,226,252,73,253,125,253,103,253,93,253,157,253,215,253,178,253,
68,253,231,252,229,252,32,253,76,253,98,253,118,253,150,253,9,254,229,254,162,255,240,255,42,0,160,0,24,1,53,1,
248,0,216,0,70,1,40,2,1,3,154,3,28,4,153,4,220,4,202,4,117,4,235,3,59,3,177,2,179,2,58,3,
251,3,193,4,54,5,230,4,229,3,175,2,165,1,25,1,6,1,243,0,200,0,224,0,35,1,63,1,44,1,239,0,
144,0,42,0,204,255,161,255,249,255,190,0,112,1,177,1,95,1,154,0,240,255,17,0,235,0,183,1,56,2,208,2,
111,3,183,3,182,3,130,3,22,3,159,2,67,2,29,2,61,2,74,2,249,1,107,1,185,0,14,0,191,255,185,255,
181,255,148,255,35,255,135,254,80,254,95,254,34,254,186,253,159,253,243,253,177,254,189,255,236,0,23,2,13,3,154,3,
163,3,80,3,41,3,153,3,132,4,152,5,133,6,251,6,17,7,30,7,37,7,220,6,35,6,56,5,126,4,9,4,
192,3,164,3,159,3,139,3,99,3,25,3,174,2,103,2,93,2,97,2,95,2,128,2,249,2,191,3,106,4,191,4,
11,5,144,5,27,6,82,6,53,6,51,6,132,6,216,6,236,6,221,6,215,6,243,6,53,7,79,7,216,6,219,5,
212,4,28,4,161,3,29,3,62,2,67,1,41,1,81,2,140,3,159,3,168,2,150,1,35,1,30,1,211,0,106,0,
129,0,116,0,68,255,168,253,65,253,118,254,38,0,10,1,251,0,122,0,159,255,119,254,162,253,130,253,109,253,125,252,
228,250,202,249,198,249,104,250,67,251,57,252,239,252,2,253,168,252,102,252,83,252,236,251,255,250,80,250,154,250,129,251,
74,252,6,253,44,254,136,255,93,0,127,0,98,0,29,0,98,255,74,254,117,253,129,253,143,254,29,0,106,1,219,1,
24,1,134,255,56,254,164,253,90,253,55,253,77,253,33,253,115,252,220,251,202,251,250,251,1,252,141,251,197,250,71,250,
76,250,94,250,82,250,116,250,176,250,142,250,25,250,249,249,121,250,38,251,147,251,188,251,208,251,22,252,111,252,39,252,
29,251,30,250,146,249,30,249,117,248,164,247,206,246,3,246,41,245,99,244,11,244,255,243,204,243,130,243,141,243,52,244,
99,245,192,246,31,248,192,249,201,251,248,253,32,0,111,2,200,4,125,6,93,7,53,8,179,9,192,11,25,14,100,16,
18,18,197,18,110,18,57,17,194,15,106,14,216,12,250,10,113,9,163,8,117,8,138,8,47,8,237,6,35,5,90,3,
184,1,107,0,175,255,143,255,7,0,26,1,152,2,32,4,57,5,173,5,201,5,29,6,253,6,88,8,209,9,7,11,
179,11,132,11,111,10,24,9,254,7,233,6,156,5,65,4,250,2,197,1,153,0,98,255,15,254,117,252,78,250,186,247,
105,245,12,244,178,243,192,243,198,243,246,243,137,244,85,245,17,246,124,246,188,246,62,247,237,247,114,248,45,249,177,250,
188,252,124,254,137,255,92,0,155,1,14,3,248,3,11,4,157,3,86,3,138,3,226,3,64,4,210,4,46,5,233,4,
106,4,5,4,179,3,126,3,57,3,178,2,20,2,109,1,201,0,122,0,111,0,90,0,84,0,112,0,161,0,20,1,
167,1,204,1,89,1,164,0,40,0,58,0,185,0,84,1,224,1,45,2,37,2,242,1,168,1,97,1,63,1,18,1,
176,0,79,0,255,255,163,255,66,255,202,254,30,254,77,253,96,252,108,251,171,250,28,250,152,249,4,249,58,248,89,247,
181,246,38,246,131,245,52,245,111,245,251,245,145,246,193,246,105,246,39,246,123,246,82,247,125,248,172,249,154,250,101,251,
49,252,236,252,133,253,205,253,185,253,167,253,195,253,243,253,90,254,16,255,233,255,195,0,85,1,60,1,140,0,195,255,
91,255,155,255,86,0,27,1,176,1,32,2,120,2,151,2,64,2,174,1,128,1,211,1,89,2,249,2,153,3,9,4,
73,4,74,4,234,3,71,3,149,2,34,2,104,2,97,3,89,4,192,4,150,4,51,4,222,3,127,3,16,3,232,2,
23,3,69,3,73,3,39,3,19,3,105,3,1,4,73,4,55,4,25,4,251,3,210,3,145,3,39,3,187,2,149,2,
236,2,169,3,29,4,184,3,193,2,152,1,76,0,42,255,93,254,197,253,166,253,26,254,147,254,221,254,17,255,204,254,
231,253,233,252,67,252,3,252,29,252,148,252,148,253,218,254,153,255,138,255,21,255,171,254,135,254,133,254,106,254,119,254,
235,254,126,255,6,0,136,0,213,0,223,0,180,0,104,0,82,0,143,0,217,0,82,1,9,2,117,2,106,2,56,2,
247,1,220,1,5,2,22,2,10,2,78,2,187,2,234,2,238,2,236,2,196,2,94,2,225,1,138,1,111,1,157,1,
31,2,161,2,196,2,166,2,114,2,37,2,244,1,226,1,151,1,64,1,68,1,98,1,58,1,240,0,194,0,193,0,
241,0,65,1,115,1,43,1,83,0,82,255,169,254,122,254,144,254,136,254,35,254,128,253,208,252,44,252,180,251,123,251,
86,251,19,251,175,250,70,250,228,249,154,249,162,249,14,250,114,250,116,250,86,250,114,250,174,250,199,250,204,250,251,250,
94,251,209,251,68,252,172,252,237,252,252,252,232,252,203,252,197,252,204,252,177,252,154,252,219,252,92,253,185,253,244,253,
70,254,160,254,209,254,235,254,16,255,85,255,213,255,138,0,43,1,116,1,112,1,110,1,146,1,168,1,176,1,21,2,
224,2,160,3,34,4,84,4,39,4,254,3,51,4,96,4,23,4,145,3,51,3,43,3,123,3,245,3,66,4,37,4,
190,3,45,3,80,2,74,1,138,0,16,0,176,255,166,255,237,255,0,0,188,255,81,255,178,254,214,253,3,253,146,252,
159,252,225,252,253,252,247,252,243,252,217,252,131,252,5,252,152,251,68,251,231,250,169,250,193,250,241,250,14,251,71,251,
116,251,39,251,104,250,159,249,38,249,56,249,177,249,24,250,49,250,42,250,57,250,104,250,208,250,124,251,5,252,243,251,
99,251,202,250,133,250,194,250,130,251,131,252,92,253,193,253,227,253,36,254,149,254,40,255,203,255,9,0,162,255,57,255,
159,255,227,0,118,2,188,3,124,4,209,4,193,4,99,4,254,3,212,3,28,4,217,4,149,5,13,6,134,6,238,6,
230,6,151,6,82,6,6,6,185,5,171,5,205,5,228,5,230,5,242,5,23,6,50,6,3,6,128,5,226,4,70,4,
186,3,151,3,249,3,77,4,51,4,247,3,177,3,73,3,8,3,46,3,140,3,234,3,10,4,191,3,108,3,174,3,
108,4,248,4,250,4,162,4,38,4,178,3,144,3,187,3,217,3,220,3,192,3,81,3,193,2,122,2,76,2,232,1,
112,1,9,1,171,0,77,0,251,255,254,255,156,0,146,1,69,2,103,2,73,2,102,2,193,2,25,3,108,3,156,3,
166,3,22,4,254,4,153,5,187,5,199,5,168,5,91,5,50,5,52,5,75,5,79,5,190,4,150,3,133,2,211,1,
122,1,153,1,222,1,194,1,133,1,167,1,24,2,120,2,136,2,36,2,84,1,74,0,93,255,19,255,215,255,113,1,
30,3,68,4,171,4,65,4,91,3,217,2,9,3,20,3,59,2,211,0,144,255,193,254,161,254,149,255,109,1,230,2,
146,2,106,0,248,253,176,252,167,252,50,253,208,253,240,253,13,253,192,251,111,251,114,252,185,253,64,254,218,253,248,252,
103,252,167,252,98,253,248,253,16,254,167,253,67,253,123,253,248,253,21,254,3,254,47,254,144,254,8,255,97,255,60,255,
133,254,92,253,23,252,169,251,122,252,117,253,144,253,1,253,89,252,219,251,177,251,189,251,125,251,187,250,246,249,222,249,
108,250,6,251,60,251,1,251,140,250,39,250,233,249,6,250,196,250,170,251,223,251,130,251,64,251,49,251,213,250,221,249,
222,248,168,248,226,248,206,248,162,248,138,248,229,247,135,246,18,245,49,244,44,244,162,244,8,245,128,245,108,246,159,247,
129,248,136,248,227,247,128,247,12,248,176,249,118,252,204,255,188,2,232,4,41,6,126,6,170,6,41,7,156,7,41,8,
73,9,116,10,16,11,118,11,231,11,38,12,7,12,105,11,50,10,159,8,227,6,34,5,250,3,228,3,34,4,166,3,
112,2,37,1,30,0,161,255,10,0,53,1,128,2,115,3,228,3,200,3,86,3,241,2,241,2,177,3,85,5,98,7,
17,9,216,9,116,9,44,8,229,6,54,6,230,5,118,5,132,4,28,3,228,1,88,1,24,1,95,0,170,254,22,252,
114,249,141,247,150,246,119,246,14,247,212,247,221,247,205,246,137,245,44,245,177,245,148,246,206,247,87,249,254,250,190,252,
36,254,156,254,183,254,112,255,218,0,164,2,144,4,31,6,4,7,134,7,9,8,183,8,129,9,5,10,213,9,12,9,
57,8,181,7,138,7,194,7,34,8,33,8,140,7,123,6,252,4,127,3,141,2,25,2,218,1,168,1,81,1,235,0,
199,0,173,0,44,0,112,255,226,254,147,254,95,254,75,254,145,254,29,255,138,255,196,255,220,255,153,255,20,255,190,254,
145,254,63,254,229,253,190,253,182,253,126,253,212,252,233,251,38,251,134,250,209,249,39,249,163,248,250,247,21,247,107,246,
96,246,198,246,27,247,14,247,189,246,153,246,225,246,118,247,77,248,121,249,164,250,70,251,132,251,8,252,17,253,58,254,
20,255,126,255,152,255,184,255,33,0,153,0,199,0,197,0,208,0,225,0,241,0,12,1,245,0,97,0,104,255,119,254,
234,253,211,253,15,254,98,254,174,254,36,255,220,255,115,0,132,0,34,0,162,255,114,255,225,255,212,0,19,2,106,3,
86,4,123,4,50,4,221,3,113,3,243,2,164,2,141,2,104,2,249,1,93,1,249,0,224,0,191,0,90,0,192,255,
14,255,94,254,200,253,76,253,244,252,3,253,150,253,88,254,245,254,82,255,71,255,208,254,98,254,103,254,208,254,93,255,
240,255,147,0,96,1,58,2,197,2,183,2,50,2,175,1,115,1,137,1,50,2,84,3,252,3,189,3,90,3,96,3,
151,3,197,3,198,3,142,3,84,3,47,3,19,3,27,3,40,3,231,2,104,2,8,2,242,1,11,2,42,2,52,2,
12,2,173,1,120,1,173,1,246,1,40,2,89,2,45,2,141,1,64,1,172,1,88,2,216,2,29,3,39,3,26,3,
29,3,34,3,10,3,178,2,2,2,36,1,132,0,134,0,14,1,135,1,125,1,7,1,120,0,255,255,165,255,61,255,
157,254,255,253,190,253,192,253,142,253,9,253,178,252,227,252,46,253,10,253,176,252,123,252,27,252,117,251,39,251,106,251,
162,251,110,251,251,250,137,250,88,250,134,250,217,250,42,251,155,251,30,252,86,252,22,252,147,251,16,251,183,250,189,250,
23,251,87,251,82,251,75,251,96,251,134,251,177,251,189,251,185,251,235,251,70,252,160,252,14,253,106,253,110,253,63,253,
36,253,64,253,198,253,177,254,159,255,61,0,129,0,155,0,178,0,195,0,206,0,234,0,42,1,128,1,182,1,150,1,
98,1,96,1,88,1,36,1,252,0,11,1,103,1,243,1,69,2,56,2,238,1,78,1,105,0,182,255,109,255,110,255,
172,255,32,0,153,0,204,0,158,0,76,0,4,0,202,255,169,255,128,255,34,255,230,254,27,255,128,255,237,255,78,0,
62,0,194,255,91,255,36,255,11,255,54,255,105,255,45,255,166,254,86,254,97,254,127,254,99,254,7,254,163,253,115,253,
153,253,251,253,64,254,45,254,235,253,175,253,137,253,136,253,176,253,230,253,41,254,139,254,246,254,62,255,108,255,156,255,
234,255,95,0,212,0,29,1,61,1,73,1,74,1,67,1,43,1,10,1,17,1,76,1,140,1,174,1,183,1,169,1,
105,1,238,0,115,0,50,0,27,0,42,0,107,0,174,0,186,0,143,0,96,0,140,0,42,1,195,1,1,2,34,2,
71,2,60,2,222,1,87,1,249,0,228,0,231,0,9,1,95,1,146,1,120,1,112,1,157,1,198,1,214,1,190,1,
124,1,71,1,68,1,105,1,194,1,66,2,175,2,0,3,73,3,129,3,152,3,128,3,55,3,240,2,236,2,39,3,
138,3,20,4,144,4,186,4,161,4,102,4,21,4,231,3,231,3,231,3,24,4,200,4,169,5,90,6,199,6,202,6,
97,6,216,5,86,5,250,4,245,4,3,5,192,4,79,4,248,3,195,3,163,3,122,3,29,3,101,2,77,1,93,0,
58,0,176,0,34,1,78,1,25,1,147,0,73,0,159,0,96,1,41,2,153,2,125,2,42,2,47,2,178,2,115,3,
26,4,67,4,196,3,212,2,169,1,104,0,168,255,62,0,222,1,226,2,243,1,163,255,217,253,163,253,73,254,197,254,
237,254,108,254,125,252,180,249,72,248,185,249,62,253,158,0,27,2,139,1,234,255,98,254,249,253,2,255,81,0,92,0,
99,255,10,255,20,0,243,1,207,3,212,4,99,4,188,2,241,0,247,255,233,255,6,0,159,255,21,255,79,255,62,0,
222,0,140,0,163,255,240,254,237,254,125,255,58,0,172,0,57,0,178,254,253,252,110,252,137,253,150,255,232,0,34,0,
253,253,177,252,30,253,254,253,253,253,27,253,251,251,234,250,243,249,102,249,146,249,22,250,42,250,146,249,212,248,167,248,
30,249,140,249,135,249,86,249,29,249,194,248,144,248,183,248,214,248,194,248,214,248,61,249,206,249,98,250,167,250,15,250,
188,248,170,247,138,247,38,248,219,248,14,249,198,248,200,248,66,249,126,249,46,249,144,248,237,247,1,248,71,249,237,250,
33,252,249,252,126,253,158,253,187,253,80,254,160,255,90,1,115,2,142,2,203,2,19,4,5,6,231,7,61,9,216,9,
227,9,153,9,48,9,44,9,195,9,64,10,41,10,40,10,182,10,38,11,3,11,231,10,40,11,50,11,143,10,115,9,
67,8,46,7,84,6,224,5,217,5,29,6,132,6,184,6,76,6,51,5,170,3,33,2,84,1,120,1,179,1,96,1,
206,0,102,0,60,0,52,0,34,0,26,0,73,0,84,0,203,255,197,254,174,253,25,253,89,253,0,254,98,254,50,254,
111,253,98,252,114,251,173,250,12,250,181,249,181,249,248,249,66,250,14,250,42,249,38,248,184,247,11,248,180,248,76,249,
26,250,148,251,96,253,173,254,81,255,210,255,103,0,195,0,5,1,250,1,6,4,169,6,241,8,20,10,27,10,216,9,
212,9,5,10,50,10,219,9,210,8,206,7,73,7,226,6,96,6,199,5,229,4,193,3,142,2,92,1,81,0,120,255,
159,254,240,253,154,253,56,253,172,252,106,252,131,252,184,252,245,252,34,253,104,253,49,254,68,255,1,0,86,0,92,0,
2,0,136,255,81,255,96,255,133,255,142,255,81,255,213,254,20,254,9,253,44,252,229,251,189,251,3,251,205,249,188,248,
58,248,10,248,146,247,188,246,254,245,126,245,45,245,78,245,3,246,209,246,52,247,40,247,221,246,142,246,171,246,130,247,
178,248,161,249,77,250,4,251,208,251,156,252,103,253,57,254,16,255,185,255,23,0,147,0,138,1,161,2,117,3,19,4,
129,4,137,4,50,4,233,3,10,4,89,4,132,4,189,4,40,5,84,5,233,4,20,4,28,3,57,2,143,1,68,1,
132,1,13,2,103,2,156,2,208,2,193,2,119,2,47,2,173,1,2,1,232,0,146,1,148,2,175,3,157,4,231,4,
106,4,128,3,211,2,228,2,100,3,178,3,215,3,47,4,119,4,55,4,173,3,87,3,33,3,194,2,91,2,4,2,
141,1,9,1,203,0,227,0,36,1,77,1,39,1,184,0,23,0,62,255,109,254,30,254,88,254,179,254,221,254,163,254,
16,254,96,253,173,252,12,252,232,251,87,252,197,252,232,252,252,252,235,252,131,252,58,252,125,252,252,252,118,253,45,254,
47,255,62,0,69,1,59,2,224,2,5,3,212,2,173,2,234,2,172,3,189,4,166,5,253,5,203,5,110,5,47,5,
252,4,159,4,31,4,172,3,37,3,129,2,43,2,16,2,122,1,149,0,50,0,26,0,158,255,3,255,232,254,41,255,
51,255,244,254,255,254,126,255,183,255,71,255,208,254,198,254,253,254,76,255,168,255,232,255,233,255,173,255,134,255,211,255,
56,0,245,255,32,255,119,254,58,254,22,254,213,253,148,253,98,253,13,253,126,252,25,252,82,252,253,252,134,253,176,253,
112,253,156,252,152,251,61,251,155,251,15,252,92,252,175,252,48,253,213,253,40,254,220,253,106,253,91,253,169,253,28,254,
105,254,118,254,160,254,249,254,33,255,54,255,131,255,184,255,140,255,56,255,237,254,206,254,37,255,252,255,222,0,45,1,
197,0,31,0,207,255,26,0,215,0,143,1,21,2,167,2,60,3,146,3,157,3,80,3,186,2,62,2,18,2,44,2,
140,2,4,3,83,3,108,3,47,3,132,2,171,1,215,0,3,0,32,255,22,254,79,253,120,253,39,254,77,254,183,253,
216,252,37,252,4,252,51,252,7,252,131,251,17,251,222,250,20,251,156,251,38,252,187,252,76,253,95,253,4,253,214,252,
251,252,46,253,111,253,227,253,115,254,223,254,226,254,95,254,132,253,209,252,175,252,40,253,234,253,55,254,125,253,87,252,
233,251,92,252,39,253,227,253,24,254,165,253,62,253,88,253,157,253,220,253,39,254,97,254,145,254,242,254,134,255,16,0,
72,0,30,0,218,255,171,255,136,255,150,255,223,255,230,255,122,255,71,255,214,255,209,0,126,1,109,1,205,0,88,0,
139,0,11,1,78,1,114,1,218,1,132,2,55,3,199,3,1,4,224,3,201,3,29,4,194,4,122,5,16,6,51,6,
186,5,217,4,210,3,246,2,198,2,43,3,91,3,253,2,133,2,84,2,90,2,80,2,8,2,129,1,200,0,10,0,
164,255,190,255,46,0,218,0,153,1,49,2,164,2,222,2,196,2,220,2,124,3,211,3,107,3,255,2,16,3,127,3,
63,4,6,5,59,5,214,4,78,4,2,4,11,4,30,4,238,3,174,3,163,3,160,3,112,3,42,3,23,3,112,3,
220,3,174,3,14,3,198,2,215,2,152,2,25,2,11,2,148,2,36,3,61,3,227,2,112,2,10,2,156,1,96,1,
163,1,24,2,42,2,232,1,218,1,41,2,108,2,70,2,247,1,247,1,40,2,15,2,182,1,134,1,124,1,78,1,
47,1,152,1,79,2,135,2,13,2,99,1,182,0,223,255,94,255,33,0,224,1,241,2,58,2,118,0,30,255,235,254,
177,255,214,0,163,1,134,1,104,0,239,254,66,254,2,255,123,0,61,1,140,0,4,255,219,253,174,253,88,254,91,255,
12,0,204,255,179,254,171,253,130,253,28,254,198,254,245,254,154,254,32,254,29,254,130,254,164,254,124,254,163,254,50,255,
222,255,130,0,215,0,181,0,119,0,99,0,105,0,115,0,55,0,111,255,123,254,231,253,215,253,58,254,209,254,17,255,
125,254,19,253,89,251,1,250,59,249,158,248,221,247,59,247,25,247,81,247,120,247,146,247,215,247,244,247,153,247,64,247,
110,247,227,247,25,248,19,248,68,248,209,248,125,249,38,250,197,250,67,251,181,251,29,252,43,252,197,251,77,251,10,251,
249,250,9,251,54,251,127,251,180,251,177,251,184,251,245,251,16,252,218,251,160,251,150,251,176,251,207,251,32,252,22,253,
146,254,210,255,161,0,85,1,236,1,99,2,7,3,228,3,195,4,145,5,116,6,142,7,144,8,1,9,31,9,146,9,
110,10,79,11,201,11,182,11,116,11,67,11,11,11,5,11,72,11,59,11,145,10,155,9,99,8,251,6,7,6,38,6,
82,7,122,8,212,7,206,4,31,1,30,255,143,255,65,1,109,2,15,2,185,255,174,251,7,248,137,247,157,250,226,254,
117,1,239,0,40,254,119,251,236,250,11,253,22,0,250,0,168,254,199,251,119,251,249,253,78,1,109,3,115,3,200,1,
117,255,136,253,206,252,231,252,80,252,184,250,194,249,110,250,179,251,36,252,91,251,220,249,142,248,59,248,108,249,3,252,
66,254,28,254,78,252,221,251,103,254,224,2,224,6,79,8,103,7,186,6,9,8,117,10,51,12,100,12,141,11,211,10,
146,10,86,10,26,10,255,9,131,9,102,8,59,7,63,6,251,4,50,3,68,1,167,255,153,254,14,254,159,253,182,252,
28,251,112,249,230,248,19,250,14,252,69,253,244,252,179,251,192,250,189,250,83,251,15,252,194,252,70,253,19,254,222,255,
201,1,221,1,171,255,237,252,177,251,120,252,235,253,164,254,181,254,162,254,30,254,213,252,42,251,231,249,77,249,155,248,
76,247,64,246,79,246,22,247,228,247,57,248,235,247,182,247,5,248,4,248,129,247,111,247,22,248,45,249,144,250,138,251,
175,251,252,251,53,253,241,254,190,0,34,2,106,2,194,1,12,1,215,0,89,1,60,2,182,2,216,2,114,3,80,4,
108,4,131,3,35,2,15,1,230,0,122,1,240,1,233,1,190,1,161,1,152,1,198,1,33,2,61,2,174,1,119,0,
93,255,162,255,158,1,239,3,227,4,66,4,13,3,24,2,120,1,246,0,185,0,43,1,31,2,199,2,188,2,70,2,
165,1,229,0,56,0,214,255,183,255,166,255,141,255,168,255,68,0,69,1,33,2,62,2,69,1,146,255,124,254,62,255,
96,1,61,3,28,4,47,4,96,3,240,1,9,1,41,1,112,1,13,1,13,0,42,255,65,255,53,0,209,0,101,0,
76,255,241,253,109,252,15,251,124,250,42,251,165,252,223,253,97,254,131,254,150,254,158,254,179,254,38,255,22,0,36,1,
239,1,153,2,84,3,16,4,239,4,31,6,49,7,126,7,35,7,204,6,145,6,4,6,97,5,100,5,249,5,122,6,
151,6,37,6,18,5,191,3,154,2,219,1,173,1,185,1,63,1,58,0,103,255,63,255,153,255,13,0,64,0,27,0,
173,255,12,255,103,254,244,253,197,253,244,253,136,254,44,255,98,255,23,255,172,254,87,254,255,253,196,253,213,253,235,253,
179,253,51,253,141,252,243,251,132,251,31,251,220,250,23,251,142,251,155,251,73,251,24,251,25,251,251,250,179,250,157,250,
250,250,118,251,139,251,87,251,138,251,105,252,122,253,110,254,102,255,11,0,211,255,25,255,153,254,112,254,149,254,33,255,
214,255,82,0,114,0,77,0,60,0,108,0,127,0,27,0,92,255,131,254,255,253,64,254,56,255,114,0,102,1,179,1,
151,1,141,1,135,1,149,1,67,2,126,3,150,4,93,5,222,5,237,5,216,5,249,5,220,5,69,5,214,4,209,4,
176,4,27,4,4,3,149,1,98,0,138,255,87,254,150,252,251,250,222,249,6,249,78,248,201,247,131,247,71,247,216,246,
132,246,173,246,28,247,142,247,19,248,171,248,77,249,242,249,130,250,63,251,110,252,186,253,205,254,156,255,241,255,237,255,
14,0,76,0,103,0,97,0,0,0,68,255,211,254,219,254,242,254,19,255,52,255,243,254,81,254,183,253,102,253,63,253,
225,252,84,252,49,252,187,252,147,253,72,254,130,254,94,254,96,254,131,254,106,254,78,254,119,254,175,254,253,254,143,255,
23,0,99,0,163,0,208,0,226,0,78,1,61,2,9,3,47,3,253,2,216,2,201,2,222,2,30,3,104,3,173,3,
233,3,254,3,249,3,247,3,190,3,57,3,237,2,27,3,45,3,176,2,23,2,218,1,197,1,188,1,9,2,107,2,
48,2,96,1,157,0,92,0,216,0,230,1,209,2,57,3,64,3,255,2,176,2,177,2,197,2,136,2,98,2,200,2,
152,3,141,4,49,5,24,5,181,4,196,4,27,5,56,5,242,4,73,4,148,3,117,3,14,4,28,5,56,6,143,6,
231,5,65,5,34,5,251,4,165,4,66,4,161,3,24,3,56,3,186,3,15,4,245,3,56,3,58,2,202,1,227,1,
244,1,210,1,118,1,226,0,119,0,122,0,162,0,144,0,66,0,6,0,67,0,7,1,202,1,1,2,185,1,60,1,
145,0,5,0,71,0,90,1,104,2,237,2,246,2,185,2,140,2,164,2,191,2,143,2,15,2,109,1,20,1,78,1,
202,1,244,1,153,1,240,0,75,0,206,255,118,255,57,255,223,254,34,254,59,253,196,252,6,253,183,253,52,254,25,254,
178,253,145,253,219,253,101,254,4,255,119,255,121,255,40,255,20,255,166,255,176,0,150,1,209,1,103,1,8,1,57,1,
144,1,134,1,50,1,176,0,16,0,200,255,21,0,111,0,66,0,138,255,169,254,40,254,71,254,188,254,243,254,135,254,
160,253,236,252,243,252,84,253,52,253,102,252,169,251,166,251,70,252,252,252,39,253,97,252,6,251,251,249,178,249,229,249,
24,250,234,249,83,249,199,248,214,248,126,249,49,250,86,250,191,249,221,248,102,248,140,248,235,248,86,249,249,249,177,250,
67,251,239,251,197,252,34,253,152,252,164,251,16,251,55,251,235,251,184,252,55,253,85,253,61,253,241,252,126,252,100,252,
228,252,106,253,112,253,29,253,189,252,164,252,41,253,25,254,232,254,123,255,251,255,138,0,75,1,14,2,129,2,188,2,
248,2,91,3,56,4,158,5,28,7,84,8,12,9,40,9,38,9,174,9,165,10,103,11,132,11,2,11,108,10,91,10,
188,10,222,10,247,9,207,7,148,5,59,5,51,7,80,9,174,8,207,4,115,0,183,254,225,255,252,1,63,3,81,2,
96,254,51,249,244,246,201,249,73,255,45,3,39,3,16,0,175,252,144,251,72,253,1,0,212,0,191,254,21,252,206,251,
55,254,54,1,192,2,101,2,204,0,162,254,211,252,72,252,63,252,28,251,104,249,16,249,84,250,206,251,46,252,35,251,
161,249,207,248,245,248,46,250,63,252,156,253,30,253,228,251,244,251,77,254,31,2,249,4,44,5,219,3,127,3,49,5,
213,7,68,9,187,8,140,7,231,6,179,6,180,6,215,6,187,6,21,6,252,4,207,3,25,3,216,2,84,2,61,1,
255,255,9,255,144,254,124,254,69,254,185,253,110,253,213,253,164,254,80,255,101,255,226,254,101,254,101,254,170,254,2,255,
109,255,156,255,130,255,202,255,167,0,49,1,126,0,175,254,23,253,32,253,102,254,32,255,185,254,10,254,123,253,228,252,
100,252,27,252,246,251,208,251,53,251,2,250,23,249,78,249,85,250,44,251,22,251,63,250,158,249,172,249,229,249,5,250,
81,250,154,250,183,250,35,251,3,252,203,252,55,253,114,253,183,253,92,254,107,255,123,0,70,1,176,1,159,1,83,1,
27,1,242,0,4,1,173,1,161,2,26,3,183,2,218,1,90,1,132,1,164,1,28,1,69,0,191,255,192,255,29,0,
148,0,12,1,94,1,30,1,77,0,190,255,40,0,72,1,62,2,132,2,68,2,248,1,229,1,250,1,254,1,242,1,
12,2,54,2,58,2,60,2,59,2,203,1,244,0,71,0,23,0,51,0,48,0,228,255,204,255,76,0,241,0,34,1,
188,0,230,255,44,255,50,255,241,255,223,0,137,1,185,1,147,1,97,1,37,1,238,0,26,1,152,1,184,1,46,1,
154,0,167,0,19,1,12,1,74,0,91,255,208,254,158,254,122,254,98,254,111,254,108,254,60,254,52,254,116,254,146,254,
64,254,196,253,179,253,99,254,152,255,212,0,196,1,35,2,255,1,0,2,140,2,64,3,179,3,229,3,230,3,222,3,
249,3,34,4,46,4,254,3,131,3,246,2,156,2,81,2,217,1,51,1,120,0,235,255,217,255,3,0,221,255,105,255,
19,255,238,254,212,254,208,254,231,254,255,254,29,255,77,255,115,255,152,255,230,255,63,0,84,0,36,0,230,255,189,255,
173,255,155,255,88,255,246,254,199,254,234,254,19,255,240,254,121,254,213,253,52,253,200,252,180,252,248,252,98,253,162,253,
158,253,146,253,179,253,0,254,65,254,16,254,114,253,42,253,175,253,143,254,77,255,192,255,191,255,113,255,79,255,97,255,
80,255,25,255,12,255,68,255,158,255,1,0,100,0,139,0,44,0,136,255,41,255,52,255,115,255,160,255,151,255,154,255,
247,255,133,0,0,1,92,1,101,1,240,0,102,0,81,0,193,0,124,1,41,2,103,2,42,2,221,1,232,1,81,2,
166,2,97,2,147,1,196,0,68,0,46,0,137,0,240,0,222,0,92,0,177,255,253,254,117,254,19,254,143,253,22,253,
22,253,102,253,159,253,138,253,6,253,101,252,79,252,201,252,58,253,67,253,8,253,236,252,22,253,81,253,150,253,249,253,
34,254,218,253,131,253,130,253,227,253,118,254,211,254,195,254,121,254,51,254,62,254,190,254,38,255,4,255,198,254,209,254,
247,254,22,255,63,255,107,255,134,255,107,255,44,255,46,255,140,255,246,255,39,0,6,0,191,255,192,255,42,0,157,0,
184,0,100,0,222,255,164,255,254,255,177,0,45,1,20,1,176,0,156,0,233,0,83,1,179,1,191,1,77,1,203,0,
170,0,224,0,67,1,162,1,204,1,194,1,141,1,48,1,248,0,22,1,51,1,0,1,161,0,126,0,233,0,157,1,
220,1,123,1,249,0,141,0,53,0,33,0,74,0,101,0,108,0,126,0,150,0,177,0,187,0,140,0,79,0,61,0,
68,0,112,0,232,0,76,1,60,1,29,1,106,1,241,1,67,2,56,2,242,1,190,1,226,1,103,2,251,2,34,3,
192,2,75,2,45,2,115,2,237,2,54,3,236,2,61,2,181,1,157,1,210,1,13,2,30,2,3,2,205,1,136,1,
91,1,124,1,183,1,150,1,27,1,181,0,130,0,108,0,154,0,7,1,94,1,111,1,43,1,145,0,253,255,216,255,
20,0,112,0,189,0,226,0,9,1,85,1,129,1,100,1,46,1,247,0,197,0,170,0,155,0,160,0,231,0,80,1,
137,1,131,1,80,1,253,0,137,0,232,255,53,255,184,254,149,254,215,254,96,255,181,255,122,255,252,254,162,254,133,254,
171,254,235,254,211,254,80,254,10,254,137,254,127,255,65,0,105,0,6,0,170,255,222,255,106,0,214,0,30,1,58,1,
230,0,105,0,81,0,153,0,226,0,247,0,222,0,214,0,2,1,26,1,226,0,101,0,198,255,90,255,130,255,6,0,
55,0,224,255,120,255,102,255,142,255,174,255,178,255,131,255,35,255,223,254,230,254,29,255,93,255,97,255,248,254,119,254,
69,254,58,254,35,254,10,254,200,253,73,253,239,252,253,252,75,253,182,253,32,254,40,254,164,253,251,252,173,252,209,252,
42,253,122,253,180,253,243,253,53,254,93,254,112,254,135,254,173,254,249,254,83,255,86,255,214,254,58,254,247,253,39,254,
152,254,235,254,245,254,224,254,184,254,98,254,248,253,185,253,184,253,231,253,64,254,192,254,61,255,136,255,194,255,28,0,
118,0,192,0,36,1,148,1,255,1,163,2,120,3,22,4,86,4,77,4,16,4,248,3,83,4,224,4,49,5,11,5,
101,4,135,3,251,2,12,3,104,3,80,3,78,2,241,0,52,0,82,0,205,0,31,1,235,0,33,0,58,255,191,254,
194,254,15,255,112,255,179,255,182,255,126,255,82,255,143,255,36,0,119,0,63,0,208,255,155,255,206,255,74,0,169,0,
150,0,20,0,110,255,26,255,90,255,208,255,233,255,92,255,61,254,0,253,63,252,64,252,236,252,243,253,147,254,26,254,
206,252,227,251,90,252,252,253,144,255,8,0,36,255,108,253,68,252,28,253,214,255,184,2,22,4,138,3,18,2,61,1,
211,1,86,3,130,4,55,4,163,2,85,1,138,1,223,2,6,4,32,4,73,3,20,2,255,0,132,0,174,0,162,0,
187,255,176,254,143,254,102,255,80,0,81,0,71,255,20,254,156,253,25,254,77,255,95,0,69,0,19,255,5,254,34,254,
93,255,176,0,251,0,24,0,236,254,143,254,101,255,184,0,84,1,200,0,168,255,177,254,80,254,168,254,109,255,250,255,
219,255,48,255,143,254,114,254,203,254,7,255,153,254,156,253,217,252,228,252,107,253,186,253,155,253,80,253,15,253,232,252,
245,252,58,253,146,253,213,253,232,253,190,253,127,253,129,253,8,254,6,255,12,0,148,0,131,0,53,0,30,0,132,0,
58,1,175,1,137,1,22,1,216,0,225,0,246,0,16,1,66,1,75,1,209,0,255,255,92,255,38,255,66,255,119,255,
156,255,179,255,213,255,240,255,243,255,228,255,190,255,155,255,212,255,107,0,237,0,44,1,93,1,145,1,165,1,149,1,
132,1,147,1,191,1,195,1,110,1,222,0,88,0,21,0,66,0,175,0,218,0,144,0,24,0,194,255,170,255,168,255,
125,255,67,255,95,255,222,255,99,0,172,0,197,0,201,0,177,0,123,0,68,0,51,0,98,0,202,0,37,1,31,1,
206,0,124,0,60,0,12,0,243,255,219,255,182,255,145,255,106,255,61,255,33,255,22,255,15,255,29,255,69,255,91,255,
68,255,48,255,107,255,254,255,160,0,4,1,25,1,10,1,14,1,54,1,109,1,163,1,205,1,229,1,2,2,27,2,
245,1,172,1,149,1,164,1,151,1,117,1,92,1,61,1,248,0,137,0,19,0,214,255,222,255,237,255,228,255,232,255,
10,0,46,0,65,0,60,0,15,0,194,255,142,255,164,255,238,255,38,0,40,0,9,0,233,255,222,255,243,255,20,0,
12,0,216,255,167,255,136,255,113,255,104,255,103,255,95,255,82,255,58,255,35,255,49,255,82,255,79,255,44,255,8,255,
238,254,239,254,247,254,223,254,206,254,232,254,11,255,44,255,63,255,16,255,184,254,160,254,208,254,12,255,65,255,89,255,
68,255,49,255,71,255,121,255,179,255,216,255,205,255,166,255,153,255,203,255,51,0,148,0,165,0,97,0,10,0,234,255,
27,0,108,0,150,0,147,0,139,0,148,0,176,0,203,0,196,0,160,0,139,0,148,0,163,0,166,0,171,0,196,0,
221,0,228,0,224,0,209,0,168,0,124,0,103,0,89,0,69,0,47,0,13,0,232,255,215,255,198,255,156,255,105,255,
51,255,241,254,178,254,140,254,140,254,184,254,232,254,234,254,201,254,167,254,133,254,106,254,104,254,132,254,185,254,242,254,
25,255,57,255,92,255,107,255,102,255,118,255,167,255,217,255,238,255,227,255,202,255,192,255,215,255,9,0,52,0,44,0,
231,255,139,255,79,255,86,255,142,255,196,255,197,255,137,255,53,255,4,255,25,255,93,255,143,255,137,255,102,255,88,255,
122,255,199,255,20,0,45,0,22,0,248,255,241,255,23,0,119,0,210,0,222,0,174,0,122,0,102,0,137,0,199,0,
229,0,214,0,174,0,118,0,81,0,102,0,149,0,173,0,170,0,147,0,115,0,89,0,74,0,71,0,92,0,120,0,
114,0,77,0,49,0,47,0,67,0,104,0,120,0,82,0,20,0,251,255,19,0,68,0,117,0,133,0,108,0,84,0,
90,0,109,0,128,0,144,0,148,0,139,0,137,0,164,0,223,0,25,1,39,1,10,1,234,0,221,0,227,0,243,0,
251,0,246,0,239,0,242,0,1,1,12,1,254,0,219,0,185,0,174,0,190,0,206,0,188,0,154,0,150,0,170,0,
188,0,190,0,164,0,115,0,91,0,109,0,137,0,155,0,158,0,134,0,99,0,85,0,89,0,102,0,121,0,132,0,
116,0,84,0,63,0,77,0,121,0,154,0,143,0,107,0,81,0,78,0,94,0,118,0,142,0,164,0,174,0,164,0,
131,0,81,0,28,0,252,255,5,0,39,0,53,0,32,0,254,255,230,255,218,255,220,255,219,255,191,255,143,255,101,255,
84,255,109,255,166,255,213,255,225,255,207,255,163,255,124,255,137,255,187,255,226,255,235,255,223,255,211,255,230,255,11,0,
30,0,25,0,3,0,221,255,195,255,206,255,234,255,8,0,36,0,40,0,17,0,250,255,240,255,230,255,216,255,191,255,
156,255,142,255,161,255,180,255,183,255,178,255,151,255,89,255,29,255,17,255,34,255,33,255,3,255,219,254,198,254,217,254,
2,255,23,255,12,255,235,254,190,254,159,254,174,254,231,254,31,255,47,255,31,255,23,255,45,255,77,255,100,255,106,255,
85,255,50,255,42,255,77,255,125,255,152,255,139,255,94,255,49,255,33,255,40,255,53,255,68,255,78,255,78,255,80,255,
94,255,103,255,95,255,89,255,108,255,140,255,162,255,181,255,217,255,13,0,57,0,83,0,106,0,133,0,156,0,174,0,
195,0,220,0,242,0,12,1,53,1,102,1,139,1,145,1,123,1,95,1,88,1,114,1,151,1,159,1,125,1,77,1,
50,1,59,1,81,1,78,1,28,1,205,0,131,0,101,0,120,0,137,0,112,0,54,0,236,255,176,255,168,255,203,255,
229,255,211,255,145,255,68,255,45,255,84,255,120,255,121,255,112,255,110,255,122,255,154,255,199,255,236,255,255,255,243,255,
201,255,161,255,154,255,186,255,235,255,1,0,222,255,146,255,92,255,120,255,222,255,59,0,46,0,157,255,233,254,179,254,
57,255,20,0,168,0,151,0,236,255,40,255,248,254,157,255,178,0,125,1,120,1,194,0,24,0,37,0,232,0,186,1,
228,1,67,1,115,0,45,0,145,0,45,1,126,1,92,1,242,0,139,0,88,0,93,0,107,0,72,0,246,255,182,255,
193,255,12,0,71,0,49,0,225,255,154,255,140,255,191,255,12,0,46,0,4,0,188,255,151,255,180,255,246,255,19,0,
232,255,168,255,153,255,193,255,238,255,237,255,185,255,126,255,97,255,79,255,58,255,58,255,81,255,94,255,83,255,61,255,
48,255,59,255,86,255,83,255,36,255,252,254,251,254,15,255,32,255,36,255,28,255,17,255,10,255,20,255,66,255,131,255,
166,255,155,255,128,255,118,255,146,255,197,255,235,255,246,255,243,255,241,255,15,0,93,0,168,0,185,0,154,0,110,0,
75,0,65,0,71,0,72,0,66,0,58,0,51,0,38,0,13,0,236,255,216,255,211,255,204,255,190,255,187,255,196,255,
206,255,200,255,185,255,191,255,226,255,253,255,253,255,251,255,16,0,56,0,90,0,105,0,105,0,106,0,115,0,129,0,
127,0,93,0,55,0,50,0,76,0,99,0,94,0,57,0,20,0,18,0,43,0,49,0,14,0,214,255,176,255,181,255,
222,255,3,0,8,0,239,255,206,255,193,255,215,255,255,255,20,0,255,255,207,255,170,255,182,255,234,255,23,0,24,0,
252,255,229,255,219,255,219,255,218,255,210,255,197,255,194,255,212,255,245,255,13,0,6,0,230,255,204,255,208,255,249,255,
43,0,59,0,38,0,11,0,255,255,20,0,75,0,130,0,136,0,98,0,63,0,61,0,87,0,115,0,124,0,113,0,
94,0,84,0,85,0,79,0,64,0,54,0,54,0,57,0,59,0,60,0,59,0,50,0,23,0,243,255,222,255,232,255,
11,0,41,0,40,0,12,0,245,255,236,255,241,255,6,0,21,0,6,0,231,255,211,255,208,255,223,255,244,255,0,0,
253,255,240,255,228,255,225,255,228,255,223,255,215,255,212,255,204,255,196,255,203,255,218,255,226,255,224,255,215,255,205,255,
200,255,201,255,211,255,228,255,232,255,214,255,189,255,178,255,192,255,223,255,245,255,245,255,235,255,224,255,219,255,226,255,
243,255,253,255,255,255,1,0,8,0,14,0,12,0,10,0,22,0,46,0,69,0,77,0,64,0,46,0,44,0,53,0,
57,0,58,0,53,0,33,0,22,0,47,0,96,0,128,0,106,0,34,0,222,255,214,255,15,0,96,0,147,0,116,0,
1,0,138,255,118,255,217,255,94,0,142,0,63,0,187,255,115,255,155,255,8,0,80,0,41,0,177,255,84,255,87,255,
161,255,233,255,1,0,236,255,204,255,192,255,209,255,237,255,243,255,209,255,160,255,148,255,199,255,21,0,67,0,50,0,
246,255,193,255,189,255,236,255,38,0,54,0,6,0,191,255,165,255,208,255,14,0,22,0,229,255,187,255,190,255,222,255,
249,255,246,255,212,255,183,255,178,255,185,255,195,255,206,255,204,255,193,255,194,255,210,255,229,255,246,255,252,255,245,255,
236,255,237,255,255,255,26,0,41,0,38,0,34,0,36,0,41,0,51,0,68,0,79,0,80,0,79,0,72,0,59,0,
44,0,29,0,20,0,27,0,48,0,60,0,44,0,11,0,246,255,254,255,25,0,49,0,48,0,21,0,234,255,201,255,
206,255,252,255,45,0,53,0,24,0,244,255,226,255,234,255,2,0,28,0,46,0,49,0,32,0,12,0,4,0,9,0,
17,0,24,0,29,0,32,0,34,0,36,0,46,0,61,0,66,0,58,0,55,0,57,0,53,0,45,0,37,0,27,0,
17,0,10,0,18,0,43,0,64,0,62,0,38,0,11,0,246,255,235,255,240,255,5,0,29,0,28,0,254,255,222,255,
219,255,248,255,25,0,38,0,25,0,0,0,238,255,243,255,14,0,44,0,51,0,36,0,19,0,17,0,29,0,43,0,
52,0,58,0,59,0,58,0,61,0,61,0,56,0,53,0,51,0,41,0,29,0,22,0,17,0,15,0,13,0,2,0,
241,255,235,255,240,255,242,255,227,255,201,255,188,255,197,255,211,255,216,255,219,255,223,255,222,255,219,255,221,255,227,255,
237,255,242,255,239,255,238,255,242,255,240,255,231,255,229,255,242,255,2,0,7,0,1,0,247,255,244,255,251,255,8,0,
13,0,4,0,242,255,227,255,225,255,237,255,252,255,3,0,3,0,253,255,246,255,245,255,252,255,2,0,0,0,245,255,
230,255,225,255,240,255,7,0,18,0,10,0,245,255,221,255,212,255,224,255,242,255,244,255,230,255,211,255,208,255,220,255,
229,255,218,255,203,255,200,255,208,255,223,255,234,255,234,255,228,255,225,255,226,255,233,255,243,255,250,255,251,255,251,255,
246,255,235,255,232,255,243,255,1,0,7,0,1,0,240,255,225,255,224,255,233,255,243,255,248,255,247,255,243,255,236,255,
229,255,230,255,244,255,4,0,13,0,13,0,5,0,252,255,255,255,14,0,33,0,45,0,43,0,34,0,30,0,34,0,
44,0,53,0,58,0,55,0,46,0,37,0,38,0,49,0,55,0,49,0,37,0,25,0,19,0,23,0,35,0,47,0,
46,0,29,0,6,0,249,255,250,255,3,0,14,0,13,0,0,0,245,255,244,255,253,255,13,0,21,0,10,0,245,255,
230,255,230,255,244,255,5,0,11,0,8,0,5,0,6,0,9,0,11,0,8,0,3,0,0,0,253,255,252,255,1,0,
9,0,10,0,1,0,242,255,233,255,236,255,250,255,5,0,0,0,240,255,229,255,230,255,239,255,249,255,0,0,0,0,
250,255,248,255,253,255,8,0,20,0,28,0,31,0,28,0,25,0,26,0,29,0,32,0,37,0,45,0,51,0,52,0,
48,0,38,0,23,0,15,0,17,0,21,0,22,0,16,0,4,0,248,255,242,255,243,255,248,255,249,255,245,255,236,255,
230,255,231,255,238,255,247,255,252,255,250,255,247,255,249,255,255,255,5,0,9,0,8,0,5,0,3,0,4,0,5,0,
3,0,0,0,254,255,254,255,252,255,245,255,236,255,229,255,225,255,227,255,228,255,224,255,218,255,219,255,224,255,224,255,
221,255,217,255,214,255,217,255,222,255,225,255,226,255,228,255,230,255,233,255,237,255,240,255,241,255,240,255,237,255,236,255,
241,255,252,255,8,0,13,0,7,0,252,255,248,255,251,255,1,0,5,0,5,0,0,0,252,255,254,255,5,0,11,0,
13,0,7,0,254,255,248,255,248,255,253,255,3,0,6,0,3,0,255,255,0,0,4,0,4,0,2,0,2,0,2,0,
0,0,0,0,1,0,2,0,0,0,255,255,1,0,6,0,8,0,5,0,0,0,252,255,254,255,6,0,14,0,16,0,
9,0,253,255,247,255,251,255,6,0,15,0,16,0,10,0,0,0,252,255,2,0,11,0,14,0,8,0,255,255,252,255,
0,0,6,0,6,0,3,0,0,0,254,255,254,255,3,0,8,0,7,0,1,0,250,255,247,255,250,255,0,0,2,0,
253,255,246,255,242,255,246,255,254,255,4,0,3,0,253,255,249,255,248,255,249,255,252,255,253,255,0,0,1,0,255,255,
251,255,251,255,254,255,1,0,2,0,1,0,0,0,1,0,4,0,5,0,4,0,0,0,252,255,253,255,4,0,8,0,
7,0,5,0,1,0,253,255,254,255,3,0,8,0,8,0,4,0,255,255,253,255,254,255,2,0,5,0,5,0,3,0,
0,0,255,255,5,0,10,0,10,0,3,0,253,255,253,255,2,0,6,0,7,0,4,0,1,0,0,0,3,0,6,0,
6,0,4,0,254,255,248,255,245,255,249,255,1,0,9,0,11,0,5,0,253,255,250,255,251,255,254,255,3,0,5,0,
1,0,253,255,254,255,1,0,5,0,7,0,3,0,251,255,246,255,246,255,250,255,255,255,2,0,0,0,253,255,250,255,
251,255,254,255,0,0,0,0,254,255,252,255,252,255,255,255,2,0,4,0,5,0,5,0,2,0,0,0,0,0,0,0,
254,255,251,255,253,255,0,0,4,0,4,0,0,0,251,255,249,255,250,255,253,255,3,0,7,0,4,0,254,255,248,255,
246,255,249,255,2,0,9,0,7,0,255,255,249,255,250,255,2,0,11,0,11,0,2,0,246,255,241,255,247,255,3,0,
10,0,8,0,0,0,249,255,249,255,0,0,7,0,8,0,2,0,249,255,245,255,249,255,3,0,11,0,10,0,2,0,
248,255,246,255,255,255,9,0,13,0,9,0,0,0,249,255,250,255,1,0,6,0,5,0,1,0,252,255,250,255,253,255,
1,0,4,0,5,0,3,0,254,255,251,255,252,255,1,0,3,0,2,0,254,255,252,255,254,255,0,0,1,0,0,0,
254,255,253,255,254,255,0,0,1,0,1,0,253,255,248,255,248,255,253,255,3,0,4,0,0,0,251,255,248,255,251,255,
0,0,5,0,8,0,6,0,255,255,250,255,251,255,255,255,3,0,6,0,5,0,1,0,255,255,255,255,255,255,254,255,
255,255,1,0,1,0,255,255,251,255,251,255,254,255,0,0,255,255,253,255,252,255,252,255,254,255,1,0,4,0,5,0,
1,0,252,255,252,255,2,0,8,0,10,0,8,0,3,0,255,255,0,0,4,0,7,0,7,0,2,0,252,255,251,255,
254,255,1,0,3,0,3,0,0,0,253,255,253,255,254,255,253,255,252,255,255,255,1,0,3,0,2,0,0,0,254,255,
253,255,253,255,255,255,3,0,6,0,7,0,5,0,1,0,254,255,255,255,2,0,4,0,7,0,8,0,5,0,2,0,
0,0,1,0,5,0,9,0,10,0,6,0,0,0,252,255,253,255,4,0,9,0,6,0,254,255,248,255,246,255,252,255,
3,0,5,0,2,0,254,255,251,255,251,255,254,255,255,255,254,255,251,255,250,255,252,255,0,0,3,0,3,0,0,0,
253,255,252,255,255,255,2,0,1,0,254,255,251,255,251,255,253,255,1,0,3,0,0,0,252,255,250,255,249,255,251,255,
253,255,254,255,254,255,253,255,253,255,253,255,254,255,0,0,1,0,1,0,0,0,253,255,251,255,254,255,0,0,2,0,
5,0,8,0,6,0,255,255,250,255,250,255,254,255,2,0,3,0,1,0,255,255,253,255,252,255,253,255,0,0,1,0,
};

1812
src/client/sound/data/pig2.pcm Executable file

File diff suppressed because it is too large Load Diff

1037
src/client/sound/data/pig3.pcm Executable file

File diff suppressed because it is too large Load Diff

1455
src/client/sound/data/pigdeath.pcm Executable file

File diff suppressed because it is too large Load Diff

1282
src/client/sound/data/pop.pcm Executable file

File diff suppressed because it is too large Load Diff

583
src/client/sound/data/pop2.pcm Executable file
View File

@@ -0,0 +1,583 @@
unsigned char PCM_pop2[18544] = {
1,0,0,0,2,0,0,0,68,172,0,0,48,36,0,0,62,3,60,3,41,3,248,2,176,2,100,2,18,2,189,1,
126,1,98,1,109,1,132,1,178,1,238,1,21,2,1,2,196,1,95,1,194,0,250,255,42,255,106,254,188,253,37,253,
217,252,188,252,189,252,220,252,251,252,39,253,255,252,188,252,68,252,173,251,232,250,28,250,89,249,153,248,227,247,41,247,
131,246,220,245,92,245,19,245,228,244,20,245,130,245,31,246,193,246,98,247,232,247,58,248,63,248,32,248,217,247,105,247,
239,246,117,246,2,246,168,245,111,245,128,245,178,245,46,246,246,246,226,247,228,248,250,249,16,251,14,252,242,252,192,253,
133,254,22,255,171,255,43,0,137,0,220,0,49,1,127,1,204,1,55,2,222,2,176,3,169,4,84,6,89,8,175,10,
107,14,147,18,37,23,127,28,219,33,210,38,198,41,170,43,125,44,194,42,96,40,18,38,211,37,246,38,157,41,222,47,
116,55,48,63,81,69,248,73,230,76,184,75,128,72,111,68,84,64,184,60,41,58,212,58,164,61,165,65,210,71,253,78,
32,86,227,91,63,96,43,99,148,98,79,95,189,90,108,84,56,77,3,70,50,64,196,59,61,56,170,54,191,54,146,55,
89,57,240,59,179,62,87,65,162,67,140,69,91,70,207,69,148,68,3,66,19,62,109,57,223,51,78,45,103,38,90,31,
129,24,23,18,27,13,91,10,219,8,43,9,7,12,132,15,62,19,160,22,95,25,184,26,95,25,252,22,80,19,205,13,
251,7,62,2,81,253,11,249,222,245,242,244,224,244,120,245,12,247,151,248,246,249,248,249,141,249,160,248,168,246,148,244,
134,242,48,241,29,240,95,239,22,239,207,238,128,238,44,237,142,235,157,233,242,230,30,228,114,225,30,223,21,221,101,219,
85,218,123,217,196,216,11,216,81,215,128,214,97,213,69,212,49,211,96,210,219,209,164,209,66,210,64,211,187,212,135,214,
122,216,114,218,225,219,210,220,98,221,12,221,78,220,54,219,123,218,42,218,84,218,43,220,67,223,48,227,52,232,221,237,
167,243,181,248,5,253,155,0,0,3,87,4,49,5,190,5,42,6,167,6,107,7,144,8,188,9,223,10,238,11,192,12,
47,13,13,13,192,12,85,12,1,12,203,11,48,12,88,13,209,14,130,16,86,18,224,19,205,20,240,20,146,20,226,19,
25,19,101,18,16,18,114,18,19,19,166,19,22,20,32,20,138,19,151,17,254,14,208,11,168,7,63,3,168,254,64,250,
2,246,254,241,174,238,165,235,236,232,193,230,192,228,210,226,216,224,205,222,133,220,173,217,163,214,115,211,29,208,211,204,
187,201,116,199,114,197,197,195,1,195,138,194,39,194,254,193,214,193,182,193,78,193,202,192,110,192,254,191,148,191,102,191,
92,191,115,191,159,191,216,191,24,192,80,192,114,192,124,192,136,192,144,192,131,192,200,192,60,193,247,193,24,195,163,196,
115,198,125,200,127,202,111,204,62,206,182,207,196,208,201,209,151,210,83,211,30,212,38,213,112,214,226,215,166,217,174,219,
244,221,66,224,167,226,35,229,153,231,219,233,33,236,103,238,147,240,211,242,26,245,165,247,64,250,13,253,25,0,61,3,
125,6,194,9,16,13,76,16,86,19,88,22,85,25,63,28,75,31,98,34,187,37,9,41,70,44,100,47,59,50,176,52,
148,54,70,56,149,57,159,58,114,59,71,60,49,61,44,62,55,63,166,64,57,66,204,67,102,69,204,70,225,71,101,72,
146,72,75,72,156,71,203,70,212,69,230,68,4,68,67,67,158,66,12,66,130,65,247,64,73,64,112,63,79,62,43,61,
167,59,25,58,94,56,118,54,91,52,25,50,127,47,188,44,216,41,219,38,228,35,246,32,13,30,59,27,126,24,183,21,
0,19,62,16,134,13,190,10,230,7,253,4,10,2,21,255,46,252,96,249,158,246,248,243,94,241,208,238,77,236,198,233,
70,231,241,228,180,226,122,224,110,222,114,220,144,218,192,216,10,215,93,213,201,211,61,210,188,208,68,207,217,205,112,204,
29,203,210,201,133,200,77,199,30,198,31,197,82,196,237,195,184,195,235,195,82,196,228,196,119,197,17,198,153,198,52,199,
218,199,143,200,106,201,128,202,182,203,39,205,221,206,209,208,232,210,51,213,162,215,16,218,140,220,243,222,117,225,245,227,
111,230,207,232,36,235,109,237,163,239,217,241,29,244,143,246,42,249,232,251,169,254,123,1,56,4,241,6,141,9,39,12,
183,14,59,17,196,19,69,22,186,24,39,27,138,29,190,31,220,33,224,35,148,37,71,39,230,40,171,42,113,44,69,46,
6,48,178,49,59,51,62,52,16,53,194,53,38,54,110,54,164,54,115,54,43,54,195,53,28,53,92,52,148,51,192,50,
233,49,10,49,10,48,251,46,210,45,134,44,11,43,143,41,212,39,14,38,56,36,107,34,157,32,218,30,19,29,70,27,
109,25,101,23,58,21,18,19,224,16,199,14,161,12,137,10,80,8,25,6,175,3,55,1,177,254,55,252,198,249,88,247,
241,244,135,242,30,240,198,237,125,235,70,233,46,231,51,229,76,227,122,225,208,223,54,222,190,220,125,219,54,218,5,217,
201,215,149,214,108,213,103,212,109,211,174,210,35,210,186,209,107,209,81,209,70,209,103,209,170,209,18,210,106,210,203,210,
29,211,115,211,206,211,58,212,189,212,136,213,94,214,83,215,96,216,143,217,193,218,82,220,231,221,170,223,145,225,131,227,
117,229,89,231,62,233,35,235,30,237,39,239,58,241,119,243,197,245,33,248,169,250,66,253,215,255,108,2,238,4,104,7,
188,9,6,12,72,14,135,16,186,18,226,20,221,22,180,24,139,26,57,28,253,29,169,31,110,33,25,35,189,36,30,38,
75,39,110,40,78,41,47,42,246,42,190,43,124,44,42,45,196,45,63,46,170,46,241,46,26,47,49,47,42,47,252,46,
203,46,108,46,255,45,110,45,206,44,255,43,46,43,62,42,60,41,44,40,247,38,152,37,31,36,125,34,167,32,206,30,
228,28,6,27,31,25,69,23,100,21,139,19,185,17,241,15,62,14,138,12,233,10,63,9,126,7,152,5,169,3,186,1,
223,255,13,254,87,252,172,250,13,249,85,247,138,245,180,243,235,241,59,240,167,238,38,237,222,235,159,234,105,233,62,232,
14,231,232,229,187,228,154,227,113,226,77,225,35,224,1,223,232,221,220,220,221,219,27,219,121,218,241,217,218,217,233,217,
20,218,156,218,36,219,208,219,110,220,31,221,204,221,142,222,90,223,60,224,62,225,97,226,130,227,209,228,31,230,130,231,
245,232,112,234,247,235,131,237,27,239,172,240,68,242,200,243,81,245,203,246,55,248,178,249,52,251,206,252,117,254,61,0,
14,2,234,3,184,5,115,7,55,9,218,10,132,12,31,14,188,15,73,17,215,18,77,20,178,21,24,23,109,24,198,25,
23,27,92,28,156,29,198,30,231,31,232,32,229,33,203,34,156,35,91,36,245,36,76,37,139,37,135,37,42,37,188,36,
17,36,84,35,118,34,167,33,208,32,255,31,46,31,81,30,112,29,132,28,116,27,102,26,59,25,252,23,172,22,79,21,
216,19,91,18,221,16,111,15,3,14,163,12,76,11,242,9,144,8,10,7,128,5,237,3,98,2,217,0,96,255,233,253,
123,252,255,250,99,249,193,247,19,246,109,244,198,242,50,241,166,239,53,238,195,236,126,235,75,234,60,233,99,232,202,231,
32,231,163,230,31,230,149,229,17,229,141,228,21,228,201,227,155,227,118,227,127,227,154,227,189,227,15,228,117,228,231,228,
121,229,6,230,155,230,27,231,138,231,2,232,116,232,3,233,135,233,60,234,239,234,187,235,144,236,115,237,91,238,84,239,
77,240,91,241,110,242,163,243,224,244,66,246,191,247,71,249,208,250,95,252,223,253,103,255,237,0,112,2,5,4,139,5,
13,7,123,8,183,9,249,10,44,12,117,13,191,14,23,16,111,17,186,18,235,19,213,20,181,21,114,22,8,23,154,23,
6,24,94,24,157,24,212,24,10,25,61,25,126,25,208,25,32,26,100,26,147,26,159,26,183,26,152,26,129,26,79,26,
241,25,123,25,248,24,70,24,150,23,230,22,62,22,161,21,239,20,43,20,67,19,85,18,57,17,10,16,222,14,140,13,
50,12,209,10,87,9,219,7,97,6,237,4,135,3,19,2,145,0,245,254,90,253,176,251,12,250,117,248,255,246,168,245,
82,244,17,243,210,241,150,240,108,239,68,238,43,237,28,236,28,235,34,234,69,233,117,232,192,231,34,231,164,230,51,230,
204,229,131,229,48,229,4,229,225,228,199,228,187,228,167,228,164,228,169,228,196,228,243,228,70,229,187,229,66,230,204,230,
100,231,252,231,168,232,101,233,55,234,22,235,23,236,14,237,23,238,24,239,36,240,65,241,109,242,180,243,240,244,83,246,
162,247,13,249,116,250,231,251,95,253,214,254,77,0,181,1,11,3,82,4,152,5,206,6,255,7,43,9,61,10,75,11,
75,12,76,13,62,14,66,15,68,16,84,17,86,18,87,19,68,20,48,21,246,21,168,22,89,23,201,23,63,24,160,24,
253,24,85,25,171,25,253,25,70,26,135,26,171,26,193,26,208,26,198,26,174,26,129,26,45,26,175,25,50,25,154,24,
243,23,94,23,177,22,4,22,70,21,73,20,47,19,3,18,198,16,135,15,69,14,12,13,199,11,141,10,48,9,222,7,
127,6,56,5,249,3,191,2,134,1,66,0,3,255,178,253,107,252,30,251,219,249,164,248,98,247,44,246,232,244,180,243,
131,242,101,241,75,240,50,239,36,238,20,237,8,236,21,235,37,234,82,233,168,232,248,231,100,231,213,230,79,230,225,229,
135,229,73,229,21,229,16,229,13,229,20,229,68,229,107,229,188,229,52,230,185,230,95,231,24,232,232,232,179,233,148,234,
106,235,79,236,43,237,17,238,247,238,241,239,246,240,9,242,67,243,132,244,209,245,26,247,95,248,166,249,195,250,245,251,
15,253,73,254,125,255,197,0,28,2,127,3,228,4,64,6,165,7,254,8,93,10,181,11,21,13,91,14,171,15,209,16,
221,17,187,18,155,19,99,20,44,21,246,21,195,22,139,23,77,24,217,24,79,25,174,25,230,25,19,26,41,26,56,26,
37,26,26,26,234,25,181,25,116,25,33,25,191,24,71,24,173,23,236,22,40,22,73,21,114,20,139,19,182,18,202,17,
225,16,217,15,193,14,156,13,138,12,111,11,110,10,98,9,99,8,86,7,62,6,13,5,214,3,144,2,54,1,212,255,
90,254,207,252,52,251,161,249,10,248,128,246,4,245,151,243,51,242,215,240,140,239,81,238,36,237,33,236,36,235,57,234,
77,233,112,232,137,231,194,230,248,229,82,229,194,228,88,228,217,227,133,227,25,227,200,226,139,226,85,226,65,226,76,226,
121,226,164,226,254,226,91,227,198,227,78,228,215,228,101,229,247,229,133,230,26,231,197,231,129,232,77,233,79,234,96,235,
119,236,149,237,178,238,198,239,249,240,27,242,102,243,182,244,36,246,142,247,243,248,91,250,192,251,48,253,176,254,45,0,
171,1,44,3,146,4,219,5,12,7,40,8,78,9,103,10,139,11,182,12,220,13,1,15,14,16,12,17,250,17,205,18,
130,19,40,20,177,20,27,21,134,21,229,21,72,22,169,22,1,23,83,23,146,23,190,23,203,23,215,23,218,23,220,23,
222,23,195,23,147,23,71,23,212,22,51,22,127,21,199,20,7,20,78,19,149,18,233,17,46,17,116,16,157,15,191,14,
213,13,203,12,194,11,171,10,140,9,106,8,67,7,18,6,221,4,166,3,99,2,30,1,227,255,162,254,114,253,55,252,
13,251,220,249,194,248,168,247,169,246,170,245,189,244,227,243,247,242,37,242,80,241,128,240,224,239,49,239,173,238,20,238,
157,237,19,237,152,236,40,236,183,235,111,235,41,235,234,234,164,234,96,234,21,234,235,233,195,233,186,233,243,233,80,234,
187,234,86,235,241,235,158,236,61,237,227,237,130,238,36,239,200,239,118,240,51,241,11,242,224,242,199,243,180,244,157,245,
154,246,145,247,160,248,180,249,226,250,5,252,38,253,43,254,53,255,32,0,16,1,239,1,206,2,158,3,98,4,23,5,
180,5,83,6,240,6,161,7,66,8,238,8,121,9,254,9,116,10,210,10,62,11,172,11,40,12,165,12,254,12,48,13,
67,13,53,13,2,13,207,12,160,12,147,12,125,12,117,12,92,12,57,12,11,12,184,11,94,11,246,10,110,10,230,9,
76,9,166,8,242,7,70,7,117,6,179,5,206,4,221,3,216,2,211,1,193,0,181,255,171,254,181,253,196,252,218,251,
5,251,52,250,98,249,143,248,169,247,206,246,217,245,238,244,6,244,53,243,113,242,170,241,234,240,25,240,89,239,134,238,
211,237,28,237,168,236,68,236,244,235,168,235,105,235,17,235,179,234,60,234,197,233,81,233,217,232,118,232,47,232,15,232,
245,231,21,232,62,232,123,232,186,232,248,232,69,233,135,233,229,233,58,234,173,234,39,235,168,235,49,236,184,236,69,237,
213,237,103,238,255,238,178,239,111,240,74,241,59,242,80,243,99,244,107,245,86,246,47,247,234,247,135,248,41,249,219,249,
170,250,130,251,87,252,42,253,233,253,159,254,54,255,220,255,113,0,37,1,199,1,101,2,242,2,104,3,221,3,58,4,
149,4,237,4,53,5,131,5,184,5,223,5,0,6,16,6,39,6,35,6,40,6,7,6,227,5,180,5,114,5,49,5,
229,4,146,4,49,4,204,3,76,3,199,2,65,2,165,1,24,1,107,0,198,255,253,254,74,254,143,253,229,252,61,252,
159,251,250,250,78,250,100,249,119,248,122,247,146,246,178,245,237,244,84,244,208,243,85,243,194,242,56,242,153,241,251,240,
95,240,193,239,55,239,179,238,49,238,198,237,96,237,8,237,195,236,144,236,91,236,34,236,227,235,152,235,67,235,234,234,
149,234,88,234,51,234,13,234,6,234,249,233,255,233,9,234,36,234,80,234,157,234,16,235,143,235,25,236,164,236,44,237,
151,237,239,237,62,238,138,238,228,238,68,239,188,239,89,240,246,240,172,241,90,242,17,243,177,243,68,244,209,244,92,245,
245,245,153,246,77,247,27,248,234,248,167,249,68,250,197,250,60,251,144,251,250,251,93,252,245,252,141,253,39,254,186,254,
52,255,171,255,240,255,56,0,115,0,170,0,217,0,11,1,40,1,71,1,94,1,112,1,129,1,138,1,147,1,138,1,
136,1,104,1,68,1,29,1,213,0,145,0,53,0,215,255,110,255,7,255,184,254,100,254,32,254,195,253,113,253,252,252,
135,252,240,251,102,251,221,250,76,250,199,249,33,249,120,248,199,247,23,247,113,246,211,245,93,245,236,244,138,244,12,244,
138,243,249,242,106,242,224,241,97,241,3,241,196,240,124,240,80,240,14,240,216,239,165,239,119,239,88,239,78,239,91,239,
114,239,142,239,177,239,213,239,242,239,10,240,34,240,50,240,72,240,90,240,123,240,163,240,219,240,36,241,140,241,250,241,
128,242,9,243,161,243,42,244,168,244,46,245,155,245,40,246,161,246,53,247,214,247,123,248,31,249,197,249,86,250,245,250,
129,251,26,252,174,252,76,253,227,253,120,254,7,255,134,255,20,0,151,0,36,1,175,1,63,2,201,2,84,3,212,3,
79,4,205,4,51,5,155,5,246,5,59,6,131,6,188,6,8,7,71,7,140,7,184,7,210,7,234,7,209,7,193,7,
163,7,171,7,178,7,196,7,209,7,217,7,219,7,204,7,182,7,162,7,136,7,94,7,52,7,213,6,99,6,235,5,
95,5,224,4,95,4,237,3,127,3,12,3,150,2,16,2,152,1,32,1,186,0,78,0,217,255,81,255,180,254,3,254,
52,253,109,252,187,251,26,251,142,250,24,250,182,249,90,249,252,248,172,248,74,248,250,247,144,247,51,247,210,246,117,246,
43,246,228,245,212,245,181,245,184,245,177,245,174,245,157,245,117,245,84,245,50,245,38,245,49,245,70,245,151,245,226,245,
61,246,161,246,247,246,85,247,161,247,240,247,55,248,131,248,190,248,15,249,87,249,176,249,30,250,177,250,94,251,21,252,
234,252,185,253,141,254,54,255,228,255,123,0,10,1,139,1,17,2,138,2,6,3,125,3,248,3,114,4,240,4,109,5,
234,5,98,6,200,6,43,7,144,7,241,7,98,8,202,8,53,9,162,9,250,9,64,10,111,10,149,10,165,10,168,10,
159,10,132,10,82,10,39,10,243,9,198,9,162,9,140,9,140,9,135,9,129,9,110,9,93,9,36,9,239,8,167,8,
99,8,36,8,223,7,175,7,113,7,66,7,231,6,139,6,16,6,136,5,232,4,74,4,180,3,49,3,182,2,79,2,
250,1,168,1,88,1,13,1,179,0,91,0,234,255,130,255,3,255,133,254,255,253,113,253,226,252,73,252,199,251,76,251,
239,250,172,250,152,250,157,250,152,250,159,250,150,250,136,250,106,250,88,250,76,250,99,250,133,250,152,250,185,250,194,250,
209,250,212,250,220,250,228,250,0,251,25,251,62,251,115,251,176,251,11,252,137,252,30,253,171,253,39,254,150,254,242,254,
62,255,133,255,214,255,68,0,181,0,40,1,141,1,240,1,78,2,197,2,68,3,199,3,96,4,224,4,106,5,184,5,
8,6,65,6,132,6,187,6,252,6,49,7,109,7,154,7,213,7,3,8,54,8,103,8,132,8,166,8,165,8,164,8,
154,8,148,8,144,8,136,8,116,8,73,8,34,8,231,7,176,7,126,7,80,7,49,7,14,7,226,6,180,6,131,6,
89,6,57,6,26,6,230,5,170,5,78,5,232,4,90,4,210,3,71,3,206,2,78,2,224,1,113,1,14,1,182,0,
112,0,43,0,234,255,140,255,57,255,189,254,81,254,211,253,116,253,43,253,234,252,169,252,92,252,6,252,186,251,105,251,
54,251,5,251,249,250,247,250,231,250,217,250,190,250,164,250,157,250,148,250,155,250,166,250,181,250,195,250,211,250,224,250,
252,250,18,251,61,251,87,251,117,251,138,251,165,251,199,251,237,251,32,252,84,252,160,252,215,252,24,253,81,253,135,253,
198,253,248,253,61,254,129,254,217,254,50,255,168,255,36,0,164,0,36,1,162,1,29,2,137,2,241,2,80,3,144,3,
203,3,235,3,4,4,6,4,18,4,54,4,96,4,151,4,201,4,241,4,19,5,27,5,14,5,11,5,250,4,252,4,
244,4,245,4,241,4,239,4,238,4,233,4,236,4,213,4,194,4,150,4,108,4,43,4,244,3,175,3,110,3,45,3,
229,2,182,2,121,2,110,2,97,2,106,2,81,2,26,2,212,1,103,1,247,0,120,0,33,0,213,255,162,255,76,255,
238,254,113,254,252,253,138,253,42,253,223,252,191,252,154,252,122,252,50,252,243,251,161,251,102,251,43,251,243,250,209,250,
160,250,129,250,98,250,85,250,73,250,102,250,117,250,142,250,129,250,114,250,91,250,62,250,43,250,14,250,6,250,230,249,
221,249,190,249,180,249,160,249,174,249,177,249,199,249,192,249,201,249,195,249,200,249,203,249,205,249,194,249,180,249,154,249,
134,249,118,249,112,249,153,249,210,249,13,250,76,250,117,250,170,250,195,250,236,250,4,251,46,251,76,251,116,251,154,251,
201,251,4,252,80,252,180,252,9,253,88,253,130,253,173,253,194,253,221,253,242,253,26,254,67,254,106,254,147,254,174,254,
213,254,8,255,81,255,153,255,220,255,0,0,31,0,35,0,20,0,15,0,11,0,41,0,68,0,102,0,137,0,167,0,
212,0,14,1,75,1,145,1,199,1,0,2,33,2,44,2,54,2,52,2,67,2,71,2,78,2,90,2,87,2,104,2,
122,2,145,2,164,2,168,2,155,2,133,2,77,2,19,2,225,1,215,1,214,1,233,1,12,2,41,2,69,2,65,2,
56,2,47,2,51,2,57,2,84,2,117,2,170,2,204,2,234,2,241,2,1,3,250,2,247,2,248,2,250,2,16,3,
17,3,32,3,30,3,31,3,27,3,13,3,2,3,226,2,189,2,143,2,92,2,39,2,0,2,235,1,243,1,240,1,
236,1,205,1,168,1,104,1,37,1,230,0,178,0,151,0,99,0,42,0,197,255,98,255,248,254,160,254,79,254,45,254,
24,254,11,254,235,253,179,253,123,253,59,253,3,253,212,252,163,252,121,252,78,252,12,252,206,251,121,251,53,251,231,250,
160,250,90,250,17,250,213,249,165,249,152,249,141,249,159,249,169,249,202,249,201,249,200,249,178,249,149,249,109,249,61,249,
25,249,5,249,245,248,6,249,52,249,119,249,178,249,239,249,21,250,56,250,58,250,68,250,75,250,117,250,156,250,204,250,
232,250,255,250,11,251,8,251,13,251,32,251,82,251,151,251,212,251,251,251,27,252,34,252,34,252,20,252,22,252,52,252,
88,252,139,252,180,252,225,252,10,253,42,253,90,253,118,253,183,253,225,253,31,254,78,254,115,254,160,254,179,254,205,254,
220,254,239,254,250,254,10,255,15,255,7,255,16,255,7,255,15,255,26,255,30,255,47,255,49,255,23,255,243,254,187,254,
139,254,83,254,38,254,2,254,231,253,200,253,172,253,130,253,96,253,71,253,46,253,43,253,28,253,21,253,7,253,228,252,
181,252,126,252,66,252,13,252,213,251,172,251,136,251,104,251,63,251,23,251,222,250,174,250,109,250,52,250,3,250,206,249,
173,249,112,249,65,249,1,249,195,248,145,248,89,248,70,248,54,248,60,248,45,248,32,248,4,248,237,247,216,247,210,247,
216,247,247,247,32,248,60,248,88,248,101,248,117,248,127,248,144,248,158,248,192,248,220,248,12,249,71,249,150,249,231,249,
69,250,170,250,3,251,79,251,153,251,218,251,39,252,115,252,192,252,3,253,69,253,116,253,166,253,198,253,245,253,51,254,
123,254,204,254,38,255,130,255,221,255,47,0,122,0,184,0,225,0,232,0,248,0,235,0,240,0,243,0,31,1,92,1,
162,1,212,1,6,2,24,2,36,2,21,2,5,2,4,2,254,1,253,1,243,1,218,1,200,1,168,1,141,1,113,1,
86,1,67,1,45,1,33,1,22,1,14,1,250,0,222,0,183,0,140,0,86,0,45,0,14,0,16,0,11,0,247,255,
199,255,128,255,50,255,204,254,124,254,43,254,14,254,225,253,197,253,144,253,103,253,55,253,19,253,250,252,209,252,179,252,
124,252,69,252,238,251,153,251,80,251,34,251,7,251,250,250,252,250,8,251,252,250,204,250,137,250,50,250,179,249,54,249,
187,248,121,248,68,248,61,248,111,248,202,248,28,249,114,249,182,249,243,249,8,250,36,250,54,250,101,250,150,250,199,250,
228,250,253,250,255,250,4,251,252,250,4,251,41,251,89,251,149,251,209,251,15,252,84,252,150,252,232,252,58,253,156,253,
3,254,111,254,218,254,67,255,174,255,254,255,82,0,148,0,204,0,249,0,30,1,70,1,96,1,138,1,178,1,238,1,
46,2,125,2,213,2,50,3,106,3,162,3,189,3,207,3,207,3,203,3,195,3,190,3,181,3,187,3,199,3,226,3,
253,3,43,4,77,4,104,4,112,4,118,4,117,4,107,4,102,4,67,4,31,4,222,3,168,3,108,3,58,3,27,3,
16,3,12,3,247,2,195,2,126,2,36,2,170,1,52,1,188,0,95,0,6,0,198,255,164,255,140,255,128,255,120,255,
118,255,98,255,45,255,229,254,144,254,16,254,146,253,14,253,160,252,56,252,218,251,151,251,93,251,44,251,25,251,9,251,
3,251,242,250,222,250,187,250,130,250,67,250,8,250,234,249,213,249,195,249,166,249,135,249,90,249,60,249,25,249,7,249,
14,249,22,249,31,249,18,249,246,248,232,248,248,248,28,249,90,249,150,249,223,249,13,250,52,250,57,250,88,250,116,250,
182,250,234,250,32,251,68,251,98,251,123,251,161,251,196,251,14,252,85,252,163,252,212,252,230,252,241,252,251,252,2,253,
39,253,85,253,169,253,249,253,72,254,145,254,215,254,43,255,136,255,240,255,87,0,189,0,26,1,101,1,151,1,197,1,
238,1,26,2,68,2,110,2,154,2,188,2,235,2,13,3,61,3,104,3,155,3,210,3,4,4,49,4,91,4,116,4,
121,4,114,4,100,4,77,4,61,4,41,4,57,4,63,4,84,4,104,4,122,4,136,4,141,4,135,4,133,4,107,4,
90,4,52,4,25,4,232,3,205,3,175,3,165,3,147,3,145,3,131,3,124,3,90,3,49,3,10,3,209,2,165,2,
111,2,62,2,13,2,216,1,169,1,120,1,80,1,54,1,37,1,13,1,236,0,178,0,118,0,29,0,197,255,110,255,
57,255,22,255,0,255,248,254,246,254,238,254,223,254,185,254,162,254,120,254,85,254,51,254,3,254,229,253,182,253,167,253,
157,253,154,253,166,253,170,253,175,253,153,253,109,253,57,253,6,253,212,252,169,252,143,252,117,252,106,252,88,252,82,252,
72,252,67,252,66,252,59,252,64,252,53,252,60,252,50,252,70,252,67,252,85,252,94,252,102,252,124,252,136,252,159,252,
173,252,182,252,191,252,202,252,227,252,255,252,42,253,85,253,138,253,173,253,198,253,219,253,235,253,24,254,58,254,113,254,
154,254,202,254,246,254,30,255,76,255,118,255,174,255,228,255,30,0,88,0,152,0,217,0,47,1,130,1,216,1,26,2,
72,2,119,2,127,2,139,2,141,2,160,2,180,2,210,2,248,2,31,3,67,3,90,3,112,3,131,3,161,3,209,3,
251,3,60,4,118,4,167,4,183,4,169,4,139,4,96,4,37,4,255,3,229,3,231,3,233,3,235,3,227,3,212,3,
184,3,147,3,117,3,101,3,104,3,102,3,86,3,46,3,252,2,184,2,115,2,42,2,250,1,216,1,188,1,156,1,
123,1,87,1,52,1,16,1,240,0,191,0,141,0,82,0,22,0,221,255,167,255,121,255,88,255,60,255,33,255,21,255,
2,255,253,254,225,254,212,254,169,254,108,254,49,254,241,253,216,253,187,253,180,253,176,253,177,253,178,253,175,253,180,253,
186,253,208,253,227,253,244,253,240,253,234,253,228,253,245,253,5,254,45,254,97,254,161,254,218,254,17,255,54,255,105,255,
122,255,160,255,172,255,199,255,212,255,234,255,1,0,25,0,54,0,85,0,117,0,150,0,185,0,224,0,5,1,48,1,
84,1,118,1,142,1,156,1,175,1,208,1,250,1,56,2,144,2,242,2,89,3,157,3,218,3,254,3,21,4,29,4,
40,4,46,4,64,4,67,4,89,4,93,4,121,4,148,4,188,4,239,4,7,5,49,5,60,5,80,5,87,5,90,5,
96,5,85,5,78,5,57,5,31,5,255,4,227,4,200,4,173,4,145,4,114,4,82,4,60,4,45,4,37,4,39,4,
46,4,59,4,61,4,67,4,61,4,56,4,39,4,20,4,241,3,205,3,146,3,109,3,63,3,32,3,16,3,7,3,
17,3,9,3,255,2,234,2,209,2,175,2,149,2,124,2,124,2,128,2,135,2,149,2,154,2,165,2,157,2,147,2,
139,2,105,2,95,2,63,2,63,2,58,2,64,2,72,2,83,2,78,2,74,2,50,2,50,2,51,2,82,2,110,2,
152,2,206,2,237,2,23,3,45,3,75,3,103,3,133,3,155,3,160,3,153,3,134,3,122,3,97,3,89,3,83,3,
79,3,81,3,63,3,45,3,19,3,246,2,216,2,183,2,147,2,105,2,63,2,31,2,252,1,235,1,221,1,217,1,
211,1,190,1,156,1,118,1,76,1,36,1,255,0,236,0,219,0,221,0,218,0,224,0,231,0,219,0,213,0,186,0,
165,0,127,0,97,0,63,0,35,0,9,0,237,255,222,255,201,255,201,255,209,255,229,255,245,255,9,0,29,0,39,0,
59,0,66,0,83,0,82,0,85,0,69,0,41,0,14,0,242,255,0,0,6,0,39,0,73,0,115,0,148,0,167,0,
188,0,203,0,233,0,6,1,32,1,60,1,63,1,70,1,37,1,2,1,227,0,202,0,199,0,198,0,237,0,21,1,
70,1,106,1,145,1,166,1,173,1,166,1,157,1,145,1,129,1,128,1,129,1,150,1,160,1,181,1,190,1,201,1,
198,1,185,1,178,1,148,1,135,1,102,1,99,1,81,1,89,1,80,1,98,1,94,1,107,1,110,1,117,1,135,1,
142,1,151,1,127,1,84,1,37,1,245,0,212,0,184,0,187,0,195,0,215,0,204,0,207,0,178,0,181,0,181,0,
183,0,201,0,202,0,216,0,206,0,210,0,197,0,198,0,203,0,197,0,209,0,202,0,212,0,205,0,206,0,195,0,
193,0,182,0,183,0,172,0,183,0,175,0,182,0,163,0,158,0,142,0,142,0,137,0,145,0,140,0,151,0,140,0,
135,0,125,0,113,0,122,0,119,0,131,0,139,0,148,0,157,0,166,0,169,0,178,0,177,0,174,0,182,0,178,0,
195,0,199,0,207,0,215,0,215,0,215,0,214,0,211,0,226,0,233,0,0,1,15,1,37,1,47,1,57,1,50,1,
52,1,42,1,37,1,26,1,27,1,9,1,14,1,251,0,250,0,247,0,1,1,26,1,41,1,68,1,72,1,89,1,
79,1,75,1,56,1,42,1,15,1,247,0,209,0,165,0,126,0,74,0,38,0,239,255,188,255,128,255,65,255,3,255,
212,254,154,254,128,254,92,254,74,254,67,254,72,254,84,254,117,254,146,254,198,254,223,254,5,255,32,255,71,255,112,255,
161,255,205,255,247,255,30,0,51,0,67,0,71,0,77,0,77,0,76,0,66,0,46,0,16,0,240,255,193,255,150,255,
106,255,74,255,44,255,30,255,34,255,47,255,66,255,90,255,115,255,139,255,155,255,178,255,199,255,235,255,17,0,51,0,
99,0,129,0,171,0,186,0,211,0,225,0,236,0,244,0,251,0,252,0,248,0,246,0,238,0,237,0,238,0,243,0,
3,1,16,1,35,1,54,1,68,1,73,1,79,1,72,1,75,1,67,1,76,1,92,1,130,1,153,1,202,1,225,1,
8,2,19,2,41,2,47,2,69,2,83,2,100,2,111,2,112,2,111,2,102,2,90,2,79,2,71,2,66,2,54,2,
47,2,16,2,3,2,218,1,193,1,152,1,129,1,100,1,82,1,67,1,60,1,59,1,61,1,70,1,81,1,88,1,
98,1,101,1,106,1,93,1,95,1,79,1,83,1,75,1,77,1,74,1,73,1,68,1,63,1,58,1,48,1,48,1,
36,1,37,1,29,1,27,1,21,1,13,1,5,1,251,0,239,0,220,0,206,0,183,0,166,0,144,0,127,0,106,0,
93,0,83,0,69,0,65,0,51,0,50,0,42,0,48,0,54,0,67,0,85,0,100,0,114,0,105,0,103,0,87,0,
85,0,73,0,74,0,71,0,76,0,69,0,60,0,38,0,23,0,1,0,245,255,227,255,222,255,214,255,210,255,201,255,
200,255,184,255,188,255,180,255,185,255,191,255,199,255,211,255,217,255,224,255,234,255,233,255,243,255,241,255,241,255,238,255,
230,255,231,255,229,255,231,255,236,255,234,255,243,255,235,255,234,255,229,255,230,255,233,255,240,255,238,255,240,255,235,255,
229,255,229,255,218,255,223,255,218,255,223,255,221,255,224,255,225,255,228,255,232,255,237,255,239,255,245,255,242,255,253,255,
252,255,7,0,13,0,19,0,27,0,35,0,35,0,49,0,46,0,59,0,58,0,63,0,68,0,61,0,71,0,56,0,
69,0,53,0,64,0,51,0,59,0,53,0,59,0,58,0,59,0,62,0,59,0,63,0,66,0,66,0,65,0,72,0,
64,0,75,0,67,0,72,0,68,0,70,0,65,0,64,0,59,0,61,0,54,0,58,0,52,0,51,0,48,0,46,0,
41,0,42,0,35,0,40,0,34,0,37,0,31,0,32,0,30,0,24,0,26,0,17,0,20,0,11,0,16,0,9,0,
10,0,8,0,6,0,4,0,6,0,255,255,4,0,0,0,255,255,2,0,254,255,1,0,0,0,0,0,1,0,254,255,
3,0,253,255,2,0,0,0,254,255,2,0,255,255,0,0,0,0,1,0,254,255,2,0,0,0,253,255,4,0,254,255,
255,255,5,0,248,255,8,0,250,255,3,0,0,0,253,255,4,0,253,255,1,0,1,0,254,255,1,0,0,0,0,0,
0,0,0,0,1,0,254,255,2,0,255,255,0,0,2,0,252,255,4,0,252,255,4,0,254,255,1,0,253,255,4,0,
252,255,5,0,252,255,1,0,2,0,252,255,5,0,253,255,0,0,2,0,253,255,4,0,252,255,2,0,0,0,255,255,
1,0,0,0,255,255,1,0,0,0,254,255,2,0,0,0,254,255,3,0,254,255,255,255,4,0,249,255,8,0,250,255,
2,0,1,0,254,255,3,0,254,255,0,0,255,255,3,0,254,255,1,0,0,0,254,255,2,0,0,0,254,255,3,0,
252,255,5,0,250,255,7,0,249,255,6,0,252,255,2,0,0,0,255,255,0,0,1,0,255,255,1,0,1,0,253,255,
4,0,252,255,3,0,255,255,1,0,0,0,255,255,0,0,1,0,0,0,0,0,0,0,254,255,4,0,251,255,7,0,
248,255,7,0,251,255,3,0,254,255,1,0,0,0,0,0,0,0,1,0,254,255,2,0,255,255,255,255,3,0,253,255,
3,0,253,255,1,0,1,0,255,255,0,0,1,0,253,255,5,0,250,255,6,0,252,255,1,0,1,0,254,255,4,0,
251,255,4,0,253,255,2,0,0,0,255,255,1,0,255,255,0,0,1,0,0,0,255,255,2,0,253,255,4,0,252,255,
4,0,252,255,4,0,252,255,4,0,253,255,1,0,0,0,0,0,1,0,255,255,255,255,2,0,255,255,0,0,1,0,
254,255,1,0,2,0,252,255,4,0,252,255,4,0,253,255,2,0,255,255,255,255,4,0,250,255,7,0,249,255,6,0,
251,255,4,0,254,255,1,0,0,0,254,255,4,0,252,255,3,0,254,255,1,0,0,0,255,255,2,0,253,255,3,0,
253,255,3,0,253,255,3,0,252,255,4,0,253,255,3,0,253,255,1,0,0,0,255,255,3,0,253,255,1,0,0,0,
255,255,3,0,253,255,3,0,253,255,3,0,253,255,3,0,254,255,2,0,253,255,3,0,255,255,255,255,2,0,254,255,
0,0,3,0,251,255,5,0,253,255,1,0,255,255,1,0,255,255,2,0,254,255,1,0,255,255,3,0,252,255,4,0,
253,255,1,0,2,0,252,255,4,0,254,255,0,0,1,0,254,255,2,0,255,255,1,0,254,255,2,0,253,255,5,0,
250,255,7,0,249,255,5,0,253,255,2,0,255,255,1,0,254,255,1,0,1,0,255,255,0,0,1,0,253,255,5,0,
250,255,6,0,251,255,3,0,1,0,252,255,4,0,253,255,2,0,0,0,254,255,2,0,254,255,2,0,255,255,255,255,
2,0,254,255,2,0,255,255,254,255,4,0,252,255,3,0,255,255,255,255,2,0,254,255,1,0,0,0,255,255,2,0,
254,255,1,0,0,0,1,0,253,255,4,0,251,255,4,0,254,255,3,0,251,255,5,0,251,255,5,0,253,255,2,0,
254,255,1,0,0,0,0,0,1,0,255,255,255,255,2,0,254,255,3,0,253,255,2,0,255,255,0,0,2,0,253,255,
3,0,254,255,0,0,3,0,250,255,9,0,245,255,10,0,248,255,7,0,249,255,6,0,251,255,4,0,254,255,255,255,
2,0,254,255,2,0,254,255,2,0,254,255,1,0,0,0,0,0,0,0,1,0,254,255,2,0,254,255,3,0,252,255,
3,0,255,255,255,255,3,0,252,255,3,0,255,255,0,0,0,0,1,0,253,255,4,0,252,255,3,0,255,255,255,255,
2,0,253,255,2,0,255,255,2,0,254,255,1,0,255,255,0,0,2,0,254,255,2,0,254,255,2,0,254,255,3,0,
252,255,5,0,251,255,4,0,254,255,255,255,4,0,251,255,4,0,253,255,1,0,1,0,255,255,0,0,1,0,255,255,
0,0,2,0,251,255,7,0,249,255,6,0,252,255,1,0,0,0,0,0,1,0,0,0,253,255,3,0,254,255,3,0,
253,255,3,0,252,255,4,0,253,255,1,0,1,0,255,255,0,0,0,0,254,255,4,0,253,255,2,0,254,255,1,0,
254,255,4,0,252,255,3,0,0,0,252,255,6,0,250,255,5,0,253,255,1,0,0,0,255,255,3,0,251,255,5,0,
252,255,2,0,255,255,2,0,253,255,3,0,254,255,255,255,4,0,250,255,6,0,253,255,0,0,1,0,253,255,4,0,
254,255,1,0,254,255,2,0,255,255,0,0,1,0,253,255,4,0,253,255,2,0,253,255,4,0,252,255,4,0,254,255,
254,255,3,0,255,255,255,255,2,0,255,255,253,255,6,0,248,255,8,0,249,255,7,0,249,255,6,0,250,255,6,0,
252,255,2,0,254,255,2,0,255,255,2,0,252,255,3,0,254,255,2,0,0,0,254,255,2,0,254,255,2,0,255,255,
0,0,0,0,1,0,254,255,3,0,252,255,4,0,254,255,0,0,2,0,252,255,5,0,252,255,2,0,255,255,1,0,
255,255,1,0,254,255,2,0,255,255,1,0,254,255,2,0,255,255,0,0,255,255,3,0,253,255,3,0,252,255,3,0,
1,0,253,255,4,0,251,255,4,0,253,255,4,0,252,255,4,0,252,255,3,0,254,255,2,0,255,255,255,255,3,0,
252,255,2,0,1,0,253,255,2,0,255,255,255,255,4,0,251,255,3,0,255,255,0,0,2,0,253,255,2,0,0,0,
255,255,1,0,255,255,2,0,254,255,2,0,254,255,0,0,2,0,255,255,0,0,0,0,255,255,1,0,1,0,254,255,
2,0,254,255,1,0,0,0,0,0,2,0,253,255,1,0,0,0,1,0,0,0,255,255,1,0,253,255,6,0,250,255,
5,0,252,255,2,0,255,255,2,0,253,255,4,0,252,255,3,0,253,255,3,0,254,255,2,0,252,255,5,0,252,255,
4,0,251,255,4,0,253,255,3,0,254,255,0,0,2,0,252,255,5,0,251,255,5,0,251,255,5,0,251,255,4,0,
254,255,1,0,254,255,4,0,251,255,5,0,251,255,3,0,0,0,255,255,2,0,252,255,4,0,253,255,2,0,0,0,
255,255,0,0,2,0,252,255,5,0,251,255,5,0,250,255,7,0,249,255,7,0,249,255,5,0,253,255,2,0,0,0,
255,255,0,0,2,0,253,255,3,0,254,255,2,0,254,255,2,0,253,255,2,0,1,0,252,255,6,0,249,255,5,0,
254,255,0,0,2,0,253,255,3,0,254,255,1,0,0,0,255,255,1,0,255,255,1,0,255,255,1,0,254,255,2,0,
255,255,0,0,1,0,254,255,4,0,250,255,6,0,252,255,2,0,255,255,1,0,254,255,2,0,255,255,255,255,1,0,
0,0,0,0,0,0,0,0,254,255,3,0,254,255,1,0,0,0,255,255,1,0,255,255,0,0,2,0,253,255,3,0,
252,255,4,0,253,255,3,0,252,255,4,0,253,255,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,
254,255,4,0,250,255,6,0,251,255,4,0,253,255,2,0,254,255,2,0,254,255,2,0,254,255,1,0,1,0,253,255,
5,0,250,255,6,0,251,255,4,0,252,255,4,0,252,255,3,0,255,255,255,255,2,0,254,255,1,0,0,0,255,255,
2,0,254,255,2,0,254,255,3,0,252,255,5,0,250,255,5,0,255,255,255,255,0,0,1,0,253,255,5,0,251,255,
3,0,255,255,0,0,255,255,2,0,254,255,2,0,255,255,255,255,2,0,254,255,1,0,2,0,251,255,6,0,250,255,
5,0,253,255,2,0,254,255,2,0,255,255,255,255,3,0,253,255,2,0,255,255,255,255,2,0,0,0,253,255,4,0,
252,255,3,0,0,0,253,255,4,0,252,255,4,0,253,255,2,0,253,255,4,0,253,255,2,0,255,255,0,0,0,0,
0,0,1,0,255,255,1,0,255,255,255,255,2,0,255,255,0,0,1,0,254,255,2,0,255,255,0,0,1,0,255,255,
1,0,255,255,1,0,255,255,2,0,253,255,2,0,0,0,254,255,3,0,253,255,2,0,254,255,3,0,253,255,2,0,
255,255,0,0,2,0,254,255,0,0,1,0,254,255,4,0,252,255,2,0,255,255,255,255,3,0,253,255,2,0,254,255,
3,0,252,255,4,0,253,255,0,0,4,0,250,255,6,0,252,255,2,0,255,255,2,0,252,255,5,0,252,255,3,0,
254,255,0,0,1,0,255,255,2,0,253,255,3,0,254,255,0,0,2,0,254,255,0,0,2,0,252,255,6,0,251,255,
1,0,2,0,253,255,4,0,253,255,0,0,2,0,253,255,4,0,252,255,3,0,253,255,2,0,255,255,1,0,255,255,
0,0,0,0,1,0,0,0,255,255,2,0,253,255,3,0,255,255,0,0,1,0,254,255,2,0,255,255,1,0,255,255,
0,0,0,0,2,0,253,255,3,0,254,255,0,0,3,0,251,255,5,0,253,255,1,0,1,0,254,255,1,0,0,0,
0,0,255,255,3,0,252,255,3,0,254,255,0,0,3,0,253,255,2,0,255,255,0,0,1,0,255,255,0,0,1,0,
254,255,2,0,255,255,0,0,255,255,1,0,255,255,2,0,254,255,2,0,253,255,3,0,255,255,254,255,5,0,251,255,
2,0,0,0,0,0,255,255,2,0,253,255,2,0,255,255,1,0,255,255,1,0,255,255,1,0,254,255,3,0,253,255,
2,0,255,255,1,0,254,255,2,0,253,255,5,0,251,255,3,0,255,255,254,255,5,0,251,255,2,0,2,0,251,255,
5,0,254,255,254,255,5,0,250,255,7,0,250,255,3,0,255,255,255,255,4,0,252,255,3,0,253,255,3,0,254,255,
2,0,254,255,2,0,254,255,2,0,254,255,3,0,253,255,1,0,0,0,0,0,0,0,0,0,1,0,253,255,4,0,
252,255,4,0,252,255,5,0,250,255,5,0,254,255,0,0,1,0,0,0,253,255,5,0,252,255,3,0,0,0,252,255,
5,0,253,255,0,0,3,0,251,255,5,0,253,255,1,0,0,0,255,255,2,0,253,255,3,0,255,255,254,255,5,0,
250,255,4,0,254,255,0,0,2,0,255,255,254,255,3,0,252,255,6,0,250,255,4,0,253,255,2,0,254,255,3,0,
254,255,1,0,0,0,253,255,5,0,252,255,2,0,1,0,251,255,7,0,249,255,6,0,251,255,5,0,250,255,6,0,
251,255,3,0,255,255,255,255,1,0,0,0,255,255,1,0,254,255,2,0,0,0,254,255,3,0,251,255,6,0,251,255,
3,0,254,255,1,0,0,0,0,0,255,255,2,0,253,255,3,0,254,255,1,0,0,0,0,0,0,0,0,0,255,255,
1,0,1,0,254,255,3,0,253,255,1,0,2,0,252,255,4,0,254,255,0,0,1,0,254,255,2,0,253,255,4,0,
253,255,1,0,0,0,255,255,0,0,2,0,253,255,2,0,0,0,254,255,2,0,255,255,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,1,0,254,255,2,0,254,255,1,0,1,0,253,255,5,0,250,255,6,0,251,255,3,0,
255,255,255,255,3,0,253,255,3,0,253,255,1,0,1,0,253,255,5,0,251,255,3,0,0,0,253,255,5,0,251,255,
4,0,254,255,0,0,0,0,0,0,2,0,254,255,0,0,1,0,253,255,5,0,252,255,2,0,0,0,255,255,255,255,
4,0,250,255,6,0,252,255,1,0,1,0,255,255,0,0,1,0,255,255,0,0,2,0,252,255,6,0,250,255,3,0,
0,0,255,255,2,0,254,255,0,0,1,0,254,255,3,0,253,255,1,0,0,0,255,255,1,0,0,0,0,0,0,0,
255,255,0,0,1,0,1,0,255,255,0,0,255,255,1,0,1,0,254,255,3,0,253,255,2,0,255,255,1,0,0,0,
255,255,0,0,2,0,252,255,6,0,249,255,7,0,250,255,4,0,254,255,1,0,0,0,255,255,2,0,254,255,2,0,
254,255,1,0,255,255,2,0,254,255,1,0,255,255,0,0,1,0,0,0,255,255,1,0,255,255,2,0,254,255,1,0,
0,0,0,0,1,0,255,255,0,0,255,255,3,0,254,255,0,0,2,0,251,255,7,0,250,255,5,0,251,255,4,0,
253,255,3,0,254,255,0,0,2,0,252,255,6,0,251,255,3,0,255,255,254,255,4,0,253,255,3,0,252,255,4,0,
251,255,6,0,251,255,3,0,255,255,1,0,255,255,0,0,0,0,1,0,0,0,0,0,0,0,254,255,4,0,251,255,
5,0,253,255,1,0,0,0,255,255,2,0,254,255,1,0,1,0,254,255,2,0,255,255,1,0,255,255,2,0,253,255,
2,0,1,0,253,255,4,0,253,255,1,0,255,255,1,0,255,255,1,0,0,0,255,255,0,0,0,0,1,0,255,255,
1,0,254,255,2,0,254,255,3,0,253,255,1,0,1,0,255,255,1,0,254,255,2,0,254,255,3,0,253,255,2,0,
0,0,254,255,2,0,254,255,1,0,1,0,254,255,2,0,254,255,1,0,0,0,0,0,0,0,0,0,0,0,1,0,
255,255,1,0,254,255,3,0,253,255,2,0,255,255,1,0,255,255,1,0,254,255,2,0,255,255,2,0,253,255,2,0,
0,0,255,255,3,0,251,255,4,0,253,255,3,0,254,255,2,0,253,255,2,0,255,255,0,0,2,0,253,255,4,0,
252,255,2,0,255,255,1,0,0,0,255,255,3,0,251,255,6,0,249,255,6,0,253,255,1,0,0,0,254,255,2,0,
0,0,255,255,0,0,0,0,255,255,2,0,0,0,254,255,2,0,254,255,1,0,1,0,255,255,0,0,1,0,253,255,
3,0,255,255,255,255,2,0,253,255,2,0,255,255,1,0,255,255,1,0,255,255,0,0,0,0,0,0,0,0,1,0,
254,255,2,0,254,255,1,0,0,0,0,0,0,0,255,255,1,0,0,0,1,0,253,255,4,0,250,255,9,0,247,255,
7,0,250,255,5,0,253,255,1,0,0,0,0,0,0,0,1,0,254,255,2,0,255,255,1,0,254,255,3,0,253,255,
2,0,0,0,254,255,2,0,255,255,255,255,3,0,253,255,2,0,0,0,254,255,3,0,252,255,4,0,253,255,3,0,
253,255,3,0,252,255,4,0,253,255,1,0,1,0,253,255,5,0,251,255,4,0,252,255,3,0,0,0,254,255,3,0,
252,255,5,0,250,255,6,0,251,255,4,0,253,255,0,0,2,0,253,255,4,0,252,255,4,0,252,255,2,0,0,0,
255,255,3,0,252,255,2,0,1,0,254,255,2,0,255,255,0,0,1,0,255,255,255,255,4,0,253,255,2,0,254,255,
0,0,1,0,1,0,254,255,2,0,253,255,3,0,254,255,2,0,253,255,3,0,254,255,1,0,1,0,253,255,3,0,
255,255,255,255,2,0,253,255,4,0,252,255,4,0,251,255,6,0,250,255,7,0,249,255,5,0,254,255,255,255,4,0,
251,255,6,0,249,255,6,0,252,255,2,0,0,0,0,0,253,255,6,0,249,255,5,0,253,255,1,0,0,0,1,0,
254,255,2,0,254,255,1,0,0,0,0,0,1,0,255,255,0,0,0,0,0,0,0,0,1,0,255,255,1,0,253,255,
4,0,253,255,1,0,1,0,254,255,2,0,254,255,2,0,254,255,2,0,0,0,253,255,6,0,249,255,6,0,252,255,
2,0,255,255,2,0,254,255,1,0,0,0,255,255,1,0,255,255,3,0,252,255,3,0,254,255,0,0,3,0,252,255,
4,0,252,255,3,0,255,255,255,255,3,0,252,255,5,0,251,255,3,0,255,255,0,0,2,0,254,255,255,255,2,0,
255,255,0,0,1,0,255,255,0,0,1,0,254,255,1,0,0,0,1,0,254,255,3,0,251,255,6,0,251,255,3,0,
255,255,255,255,3,0,253,255,1,0,0,0,0,0,0,0,0,0,0,0,255,255,2,0,254,255,1,0,0,0,255,255,
2,0,254,255,1,0,0,0,0,0,0,0,1,0,254,255,1,0,1,0,255,255,1,0,255,255,255,255,2,0,254,255,
2,0,254,255,0,0,2,0,253,255,2,0,255,255,0,0,2,0,253,255,3,0,253,255,4,0,251,255,6,0,249,255,
8,0,248,255,7,0,250,255,5,0,253,255,1,0,0,0,255,255,1,0,0,0,0,0,0,0,0,0,255,255,2,0,
253,255,4,0,252,255,5,0,250,255,4,0,254,255,0,0,3,0,252,255,3,0,254,255,1,0,0,0,0,0,1,0,
253,255,4,0,252,255,3,0,0,0,252,255,6,0,250,255,4,0,254,255,1,0,255,255,2,0,253,255,1,0,1,0,
255,255,0,0,0,0,1,0,253,255,5,0,251,255,3,0,0,0,253,255,5,0,251,255,5,0,252,255,2,0,254,255,
2,0,255,255,0,0,0,0,255,255,1,0,0,0,255,255,1,0,254,255,3,0,254,255,0,0,3,0,250,255,8,0,
248,255,6,0,253,255,2,0,254,255,1,0,0,0,0,0,0,0,1,0,252,255,6,0,249,255,8,0,248,255,7,0,
249,255,5,0,255,255,255,255,2,0,253,255,2,0,0,0,255,255,3,0,251,255,5,0,252,255,4,0,253,255,2,0,
254,255,2,0,0,0,254,255,3,0,252,255,5,0,251,255,4,0,253,255,2,0,255,255,0,0,255,255,2,0,255,255,
255,255,3,0,251,255,7,0,249,255,5,0,253,255,2,0,254,255,2,0,255,255,255,255,2,0,252,255,5,0,252,255,
4,0,250,255,5,0,254,255,0,0,1,0,255,255,0,0,1,0,0,0,255,255,1,0,1,0,254,255,1,0,1,0,
254,255,3,0,253,255,2,0,254,255,2,0,253,255,4,0,253,255,1,0,0,0,255,255,2,0,254,255,1,0,0,0,
1,0,253,255,3,0,254,255,1,0,1,0,253,255,3,0,254,255,1,0,0,0,0,0,255,255,2,0,255,255,255,255,
3,0,251,255,5,0,254,255,254,255,4,0,252,255,3,0,254,255,1,0,254,255,3,0,254,255,0,0,1,0,254,255,
3,0,254,255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,254,255,2,0,254,255,3,0,253,255,3,0,
254,255,2,0,254,255,0,0,2,0,252,255,6,0,250,255,5,0,251,255,4,0,254,255,1,0,255,255,0,0,1,0,
0,0,1,0,252,255,4,0,255,255,0,0,1,0,254,255,0,0,3,0,253,255,1,0,1,0,253,255,5,0,249,255,
8,0,248,255,7,0,252,255,1,0,1,0,254,255,2,0,254,255,4,0,250,255,6,0,252,255,2,0,0,0,255,255,
1,0,0,0,0,0,255,255,2,0,254,255,1,0,0,0,0,0,255,255,2,0,253,255,2,0,0,0,255,255,1,0,
254,255,2,0,254,255,3,0,253,255,2,0,255,255,255,255,3,0,252,255,4,0,255,255,255,255,0,0,0,0,0,0,
2,0,255,255,0,0,255,255,0,0,1,0,0,0,0,0,0,0,254,255,3,0,254,255,1,0,0,0,254,255,4,0,
251,255,5,0,251,255,4,0,254,255,1,0,255,255,1,0,254,255,3,0,253,255,2,0,255,255,0,0,0,0,1,0,
255,255,255,255,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,253,255,4,0,253,255,3,0,252,255,5,0,
250,255,5,0,254,255,255,255,3,0,253,255,2,0,255,255,0,0,0,0,2,0,252,255,3,0,0,0,253,255,5,0,
250,255,4,0,0,0,254,255,3,0,252,255,3,0,0,0,254,255,2,0,255,255,255,255,4,0,251,255,4,0,253,255,
1,0,1,0,255,255,2,0,252,255,4,0,252,255,3,0,1,0,252,255,4,0,252,255,3,0,254,255,2,0,255,255,
1,0,254,255,2,0,253,255,6,0,248,255,8,0,248,255,8,0,249,255,6,0,250,255,5,0,253,255,1,0,0,0,
255,255,1,0,0,0,255,255,2,0,254,255,1,0,254,255,3,0,254,255,2,0,254,255,255,255,2,0,0,0,255,255,
1,0,254,255,1,0,1,0,255,255,0,0,0,0,0,0,0,0,2,0,253,255,2,0,255,255,1,0,254,255,3,0,
253,255,2,0,0,0,254,255,2,0,255,255,255,255,2,0,254,255,2,0,254,255,1,0,1,0,253,255,3,0,254,255,
1,0,255,255,2,0,252,255,6,0,250,255,4,0,253,255,1,0,2,0,253,255,2,0,0,0,253,255,5,0,250,255,
6,0,252,255,2,0,255,255,0,0,0,0,1,0,254,255,3,0,253,255,2,0,254,255,2,0,254,255,3,0,252,255,
2,0,1,0,253,255,4,0,252,255,3,0,253,255,4,0,252,255,4,0,253,255,1,0,1,0,254,255,2,0,255,255,
255,255,2,0,255,255,1,0,254,255,1,0,255,255,3,0,253,255,3,0,252,255,4,0,254,255,0,0,1,0,254,255,
3,0,253,255,2,0,0,0,254,255,4,0,252,255,2,0,0,0,255,255,2,0,0,0,253,255,4,0,252,255,5,0,
252,255,3,0,253,255,3,0,254,255,1,0,1,0,254,255,1,0,0,0,255,255,1,0,0,0,255,255,1,0,255,255,
2,0,254,255,0,0,1,0,255,255,2,0,254,255,0,0,2,0,253,255,3,0,253,255,2,0,0,0,255,255,1,0,
254,255,2,0,255,255,0,0,2,0,252,255,3,0,255,255,0,0,1,0,255,255,0,0,1,0,254,255,2,0,255,255,
1,0,255,255,1,0,254,255,3,0,254,255,0,0,2,0,253,255,3,0,254,255,1,0,0,0,0,0,255,255,3,0,
251,255,6,0,252,255,1,0,1,0,254,255,2,0,1,0,251,255,6,0,251,255,3,0,255,255,0,0,0,0,0,0,
1,0,254,255,2,0,255,255,0,0,0,0,1,0,255,255,1,0,255,255,255,255,1,0,1,0,253,255,5,0,250,255,
4,0,254,255,0,0,2,0,253,255,4,0,250,255,7,0,250,255,5,0,252,255,2,0,255,255,1,0,1,0,253,255,
3,0,254,255,0,0,1,0,0,0,255,255,2,0,252,255,4,0,253,255,2,0,0,0,253,255,6,0,248,255,8,0,
250,255,4,0,253,255,2,0,0,0,254,255,2,0,254,255,2,0,255,255,255,255,0,0,2,0,253,255,4,0,252,255,
2,0,255,255,1,0,255,255,2,0,253,255,2,0,255,255,2,0,253,255,1,0,2,0,252,255,5,0,252,255,1,0,
0,0,1,0,255,255,1,0,254,255,2,0,254,255,2,0,0,0,254,255,3,0,255,255,254,255,4,0,251,255,5,0,
254,255,255,255,2,0,253,255,3,0,255,255,0,0,0,0,1,0,254,255,2,0,255,255,0,0,1,0,255,255,0,0,
0,0,0,0,0,0,0,0,254,255,4,0,251,255,5,0,253,255,0,0,1,0,255,255,2,0,255,255,0,0,1,0,
253,255,5,0,251,255,4,0,253,255,1,0,1,0,254,255,2,0,255,255,255,255,2,0,253,255,3,0,254,255,2,0,
254,255,0,0,1,0,0,0,0,0,1,0,252,255,5,0,253,255,1,0,2,0,251,255,6,0,251,255,3,0,254,255,
1,0,1,0,253,255,4,0,251,255,5,0,253,255,0,0,1,0,255,255,3,0,251,255,5,0,251,255,6,0,251,255,
4,0,251,255,5,0,252,255,4,0,253,255,3,0,252,255,3,0,0,0,254,255,4,0,252,255,3,0,254,255,1,0,
255,255,2,0,254,255,2,0,254,255,2,0,254,255,2,0,254,255,2,0,254,255,2,0,254,255,2,0,254,255,2,0,
254,255,2,0,255,255,255,255,2,0,253,255,3,0,254,255,1,0,0,0,253,255,4,0,253,255,3,0,253,255,1,0,
0,0,0,0,1,0,254,255,2,0,253,255,4,0,252,255,3,0,255,255,255,255,1,0,1,0,254,255,3,0,253,255,
2,0,255,255,1,0,255,255,1,0,0,0,255,255,1,0,255,255,2,0,254,255,1,0,255,255,2,0,254,255,2,0,
254,255,1,0,1,0,252,255,7,0,248,255,8,0,249,255,4,0,255,255,255,255,2,0,255,255,0,0,0,0,0,0,
0,0,0,0,1,0,254,255,2,0,254,255,1,0,1,0,254,255,2,0,253,255,3,0,254,255,2,0,254,255,1,0,
0,0,0,0,255,255,2,0,254,255,2,0,255,255,254,255,3,0,254,255,1,0,0,0,255,255,0,0,1,0,254,255,
2,0,255,255,1,0,0,0,255,255,1,0,254,255,4,0,252,255,3,0,253,255,3,0,255,255,255,255,1,0,255,255,
0,0,2,0,253,255,3,0,254,255,0,0,0,0,1,0,254,255,2,0,254,255,2,0,254,255,2,0,253,255,2,0,
0,0,255,255,1,0,255,255,0,0,2,0,253,255,2,0,254,255,2,0,255,255,2,0,252,255,3,0,255,255,0,0,
1,0,255,255,0,0,1,0,255,255,1,0,254,255,3,0,253,255,3,0,254,255,1,0,255,255,0,0,2,0,254,255,
2,0,255,255,255,255,2,0,0,0,254,255,3,0,252,255,4,0,253,255,3,0,252,255,3,0,254,255,1,0,1,0,
254,255,1,0,0,0,254,255,3,0,255,255,255,255,1,0,255,255,0,0,2,0,253,255,1,0,2,0,253,255,3,0,
253,255,2,0,254,255,2,0,255,255,0,0,0,0,255,255,2,0,254,255,1,0,1,0,254,255,2,0,254,255,2,0,
255,255,2,0,252,255,4,0,253,255,2,0,0,0,254,255,3,0,251,255,5,0,252,255,4,0,252,255,3,0,253,255,
3,0,255,255,255,255,1,0,255,255,0,0,4,0,249,255,7,0,250,255,4,0,254,255,1,0,0,0,0,0,255,255,
2,0,253,255,4,0,253,255,1,0,1,0,253,255,3,0,255,255,255,255,2,0,253,255,2,0,0,0,255,255,1,0,
254,255,2,0,255,255,0,0,1,0,255,255,0,0,1,0,255,255,1,0,255,255,1,0,255,255,1,0,0,0,255,255,
2,0,254,255,1,0,255,255,3,0,252,255,3,0,255,255,255,255,3,0,252,255,4,0,252,255,5,0,250,255,7,0,
249,255,7,0,250,255,3,0,1,0,253,255,3,0,254,255,0,0,1,0,0,0,255,255,0,0,2,0,251,255,8,0,
246,255,9,0,250,255,3,0,0,0,254,255,2,0,253,255,4,0,253,255,2,0,255,255,255,255,2,0,255,255,0,0,
1,0,255,255,0,0,1,0,255,255,0,0,1,0,255,255,0,0,1,0,253,255,4,0,253,255,2,0,254,255,2,0,
254,255,2,0,255,255,255,255,2,0,254,255,2,0,254,255,1,0,0,0,0,0,0,0,0,0,255,255,1,0,1,0,
254,255,2,0,254,255,2,0,254,255,2,0,254,255,2,0,254,255,1,0,1,0,254,255,2,0,254,255,2,0,254,255,
2,0,255,255,0,0,1,0,253,255,4,0,253,255,3,0,252,255,3,0,254,255,2,0,255,255,0,0,1,0,253,255,
3,0,255,255,0,0,1,0,253,255,4,0,252,255,4,0,253,255,0,0,2,0,254,255,2,0,253,255,3,0,253,255,
4,0,252,255,3,0,253,255,3,0,254,255,1,0,255,255,2,0,253,255,4,0,251,255,5,0,252,255,3,0,253,255,
4,0,251,255,4,0,254,255,0,0,2,0,253,255,3,0,254,255,1,0,255,255,0,0,1,0,0,0,0,0,0,0,
255,255,1,0,255,255,1,0,1,0,254,255,1,0,255,255,0,0,3,0,252,255,3,0,253,255,2,0,255,255,2,0,
254,255,2,0,254,255,0,0,1,0,255,255,2,0,253,255,4,0,252,255,3,0,255,255,254,255,4,0,252,255,3,0,
0,0,254,255,1,0,0,0,255,255,2,0,255,255,255,255,2,0,255,255,0,0,0,0,255,255,3,0,252,255,4,0,
252,255,3,0,0,0,253,255,4,0,252,255,3,0,255,255,255,255,2,0,254,255,2,0,255,255,0,0,255,255,3,0,
251,255,7,0,248,255,7,0,252,255,1,0,1,0,253,255,5,0,250,255,6,0,251,255,4,0,255,255,253,255,5,0,
252,255,1,0,3,0,251,255,4,0,254,255,0,0,2,0,253,255,3,0,252,255,4,0,255,255,254,255,4,0,250,255,
6,0,252,255,2,0,0,0,254,255,3,0,252,255,4,0,253,255,1,0,1,0,255,255,1,0,255,255,0,0,0,0,
2,0,253,255,4,0,252,255,3,0,253,255,3,0,253,255,3,0,254,255,1,0,0,0,255,255,1,0,255,255,2,0,
254,255,2,0,253,255,3,0,254,255,1,0,0,0,255,255,1,0,255,255,1,0,0,0,255,255,1,0,254,255,3,0,
253,255,2,0,255,255,0,0,1,0,253,255,4,0,252,255,4,0,252,255,3,0,255,255,0,0,0,0,255,255,2,0,
253,255,5,0,249,255,8,0,248,255,6,0,253,255,1,0,1,0,254,255,1,0,0,0,0,0,0,0,1,0,253,255,
4,0,252,255,2,0,0,0,255,255,2,0,252,255,6,0,249,255,7,0,249,255,6,0,252,255,3,0,255,255,254,255,
3,0,254,255,2,0,254,255,2,0,254,255,2,0,255,255,0,0,0,0,1,0,254,255,2,0,255,255,0,0,0,0,
0,0,1,0,254,255,2,0,254,255,2,0,253,255,4,0,253,255,1,0,0,0,0,0,0,0,0,0,1,0,254,255,
3,0,253,255,2,0,254,255,2,0,255,255,0,0,1,0,254,255,2,0,254,255,2,0,254,255,3,0,253,255,1,0,
1,0,254,255,2,0,255,255,0,0,1,0,255,255,1,0,255,255,0,0,2,0,253,255,3,0,253,255,1,0,1,0,
255,255,0,0,1,0,253,255,3,0,255,255,0,0,0,0,1,0,253,255,3,0,255,255,255,255,2,0,253,255,3,0,
254,255,2,0,253,255,3,0,255,255,0,0,1,0,254,255,2,0,0,0,254,255,2,0,255,255,0,0,2,0,251,255,
6,0,250,255,6,0,251,255,3,0,0,0,254,255,2,0,255,255,0,0,1,0,255,255,0,0,2,0,253,255,2,0,
255,255,0,0,2,0,253,255,2,0,0,0,254,255,5,0,250,255,3,0,0,0,254,255,4,0,254,255,253,255,5,0,
251,255,6,0,251,255,2,0,254,255,3,0,254,255,3,0,251,255,4,0,252,255,6,0,250,255,4,0,253,255,2,0,
255,255,2,0,254,255,1,0,255,255,2,0,252,255,8,0,246,255,9,0,249,255,4,0,255,255,254,255,3,0,254,255,
1,0,1,0,252,255,3,0,0,0,255,255,2,0,253,255,2,0,255,255,2,0,253,255,3,0,253,255,4,0,252,255,
2,0,255,255,1,0,255,255,1,0,255,255,0,0,1,0,254,255,2,0,254,255,4,0,250,255,6,0,250,255,5,0,
254,255,255,255,3,0,252,255,3,0,255,255,255,255,2,0,255,255,254,255,5,0,250,255,6,0,251,255,3,0,254,255,
0,0,2,0,255,255,0,0,0,0,255,255,1,0,1,0,254,255,2,0,254,255,2,0,255,255,0,0,1,0,255,255,
1,0,255,255,1,0,255,255,2,0,254,255,2,0,253,255,4,0,251,255,7,0,248,255,7,0,250,255,6,0,252,255,
1,0,0,0,255,255,2,0,0,0,254,255,1,0,0,0,0,0,1,0,255,255,255,255,2,0,254,255,2,0,255,255,
255,255,3,0,252,255,3,0,0,0,254,255,2,0,255,255,255,255,3,0,253,255,3,0,251,255,7,0,249,255,5,0,
253,255,0,0,2,0,254,255,3,0,251,255,6,0,250,255,4,0,0,0,253,255,4,0,252,255,4,0,252,255,4,0,
251,255,6,0,250,255,6,0,251,255,2,0,2,0,251,255,6,0,251,255,3,0,255,255,255,255,2,0,254,255,1,0,
0,0,255,255,2,0,253,255,3,0,254,255,1,0,0,0,255,255,2,0,254,255,2,0,254,255,2,0,254,255,2,0,
253,255,4,0,252,255,3,0,254,255,1,0,255,255,2,0,254,255,2,0,254,255,1,0,0,0,255,255,3,0,251,255,
5,0,252,255,2,0,255,255,1,0,255,255,1,0,255,255,0,0,1,0,255,255,1,0,0,0,254,255,3,0,254,255,
2,0,253,255,3,0,254,255,2,0,255,255,255,255,1,0,0,0,0,0,1,0,254,255,3,0,251,255,6,0,251,255,
4,0,254,255,0,0,1,0,253,255,4,0,253,255,3,0,253,255,1,0,0,0,1,0,254,255,3,0,252,255,5,0,
251,255,4,0,253,255,2,0,255,255,2,0,252,255,5,0,250,255,7,0,251,255,2,0,255,255,1,0,255,255,2,0,
253,255,2,0,0,0,254,255,3,0,254,255,1,0,255,255,1,0,0,0,0,0,0,0,255,255,1,0,0,0,0,0,
0,0,0,0,0,0,255,255,1,0,0,0,254,255,4,0,251,255,4,0,253,255,2,0,255,255,0,0,0,0,0,0,
0,0,1,0,255,255,0,0,0,0,1,0,254,255,3,0,253,255,2,0,0,0,255,255,0,0,1,0,255,255,0,0,
1,0,255,255,0,0,1,0,254,255,2,0,254,255,2,0,255,255,0,0,0,0,0,0,0,0,0,0,1,0,253,255,
4,0,252,255,2,0,0,0,255,255,3,0,250,255,6,0,252,255,3,0,255,255,255,255,0,0,1,0,0,0,255,255,
1,0,255,255,0,0,1,0,0,0,255,255,1,0,254,255,3,0,254,255,0,0,2,0,252,255,4,0,254,255,255,255,
3,0,253,255,2,0,255,255,255,255,2,0,255,255,0,0,0,0,0,0,0,0,1,0,255,255,0,0,1,0,255,255,
1,0,0,0,255,255,1,0,255,255,1,0,1,0,254,255,2,0,253,255,4,0,252,255,4,0,252,255,4,0,253,255,
1,0,0,0,255,255,2,0,253,255,4,0,253,255,2,0,254,255,1,0,0,0,0,0,1,0,254,255,2,0,255,255,
0,0,1,0,254,255,2,0,0,0,254,255,3,0,253,255,2,0,0,0,254,255,4,0,251,255,5,0,253,255,0,0,
3,0,251,255,4,0,253,255,3,0,253,255,2,0,254,255,1,0,1,0,254,255,0,0,3,0,252,255,3,0,255,255,
255,255,2,0,255,255,255,255,3,0,252,255,3,0,255,255,0,0,0,0,0,0,255,255,3,0,252,255,3,0,253,255,
3,0,254,255,1,0,255,255,1,0,254,255,3,0,253,255,3,0,253,255,3,0,253,255,3,0,254,255,1,0,255,255,
3,0,251,255,5,0,252,255,3,0,255,255,1,0,252,255,6,0,251,255,3,0,255,255,254,255,3,0,254,255,2,0,
254,255,0,0,0,0,0,0,1,0,255,255,0,0,0,0,0,0,255,255,2,0,253,255,4,0,253,255,1,0,0,0,
0,0,0,0,0,0,0,0,1,0,254,255,2,0,254,255,1,0,0,0,0,0,255,255,2,0,254,255,2,0,253,255,
4,0,251,255,7,0,250,255,2,0,1,0,254,255,3,0,254,255,0,0,1,0,255,255,2,0,254,255,0,0,2,0,
253,255,4,0,251,255,5,0,253,255,0,0,2,0,252,255,6,0,250,255,5,0,252,255,2,0,1,0,253,255,4,0,
253,255,1,0,0,0,0,0,1,0,253,255,5,0,249,255,8,0,250,255,4,0,252,255,4,0,252,255,4,0,252,255,
5,0,249,255,8,0,249,255,3,0,1,0,253,255,3,0,254,255,1,0,0,0,255,255,1,0,255,255,1,0,0,0,
255,255,1,0,255,255,1,0,255,255,0,0,1,0,255,255,1,0,255,255,0,0,2,0,252,255,4,0,253,255,2,0,
0,0,254,255,1,0,1,0,254,255,2,0,255,255,1,0,255,255,0,0,0,0,1,0,254,255,3,0,253,255,2,0,
1,0,252,255,4,0,253,255,3,0,254,255,0,0,3,0,251,255,5,0,251,255,4,0,253,255,4,0,252,255,3,0,
254,255,0,0,2,0,254,255,2,0,254,255,1,0,255,255,3,0,253,255,2,0,254,255,1,0,0,0,0,0,1,0,
254,255,3,0,252,255,4,0,254,255,0,0,1,0,255,255,2,0,254,255,0,0,2,0,253,255,5,0,249,255,5,0,
254,255,1,0,1,0,252,255,4,0,253,255,2,0,0,0,254,255,3,0,253,255,3,0,253,255,2,0,254,255,3,0,
253,255,3,0,251,255,5,0,253,255,2,0,0,0,253,255,3,0,255,255,0,0,1,0,255,255,0,0,1,0,255,255,
0,0,1,0,255,255,2,0,254,255,1,0,255,255,2,0,254,255,2,0,254,255,2,0,254,255,3,0,252,255,3,0,
0,0,254,255,2,0,255,255,0,0,0,0,2,0,252,255,5,0,250,255,5,0,254,255,0,0,2,0,251,255,5,0,
253,255,3,0,253,255,2,0,255,255,0,0,1,0,254,255,1,0,1,0,254,255,2,0,255,255,0,0,0,0,0,0,
255,255,3,0,252,255,4,0,252,255,3,0,254,255,1,0,255,255,1,0,0,0,254,255,3,0,253,255,3,0,253,255,
3,0,253,255,4,0,252,255,2,0,0,0,255,255,2,0,255,255,255,255,3,0,250,255,9,0,246,255,10,0,248,255,
5,0,253,255,1,0,0,0,0,0,0,0,0,0,254,255,4,0,252,255,4,0,251,255,4,0,255,255,0,0,1,0,
253,255,4,0,252,255,3,0,255,255,255,255,2,0,253,255,3,0,254,255,1,0,255,255,0,0,1,0,0,0,255,255,
0,0,0,0,1,0,1,0,253,255,3,0,252,255,6,0,249,255,7,0,250,255,4,0,255,255,254,255,3,0,255,255,
255,255,2,0,254,255,1,0,0,0,1,0,254,255,2,0,255,255,0,0,0,0,2,0,252,255,5,0,251,255,3,0,
0,0,255,255,1,0,255,255,0,0,255,255,3,0,252,255,5,0,250,255,4,0,254,255,2,0,254,255,1,0,255,255,
2,0,254,255,2,0,253,255,2,0,0,0,0,0,255,255,0,0,1,0,255,255,1,0,0,0,254,255,3,0,253,255,
2,0,0,0,255,255,3,0,250,255,6,0,252,255,2,0,1,0,254,255,0,0,2,0,253,255,4,0,252,255,4,0,
252,255,3,0,254,255,2,0,255,255,0,0,0,0,0,0,0,0,1,0,254,255,2,0,255,255,0,0,255,255,2,0,
255,255,0,0,0,0,255,255,1,0,1,0,254,255,3,0,253,255,1,0,1,0,255,255,0,0,2,0,253,255,3,0,
254,255,0,0,0,0,1,0,0,0,0,0,255,255,0,0,1,0,255,255,1,0,255,255,1,0,255,255,1,0,255,255,
0,0,1,0,0,0,255,255,1,0,255,255,1,0,0,0,0,0,255,255,2,0,254,255,2,0,254,255,2,0,253,255,
5,0,250,255,5,0,252,255,4,0,253,255,3,0,253,255,2,0,255,255,1,0,0,0,0,0,0,0,0,0,0,0,
255,255,1,0,1,0,253,255,5,0,249,255,6,0,252,255,3,0,254,255,0,0,1,0,255,255,2,0,253,255,3,0,
253,255,4,0,252,255,3,0,255,255,255,255,3,0,251,255,6,0,250,255,5,0,253,255,1,0,0,0,0,0,255,255,
3,0,251,255,5,0,252,255,3,0,255,255,0,0,0,0,254,255,3,0,254,255,1,0,1,0,254,255,1,0,1,0,
254,255,2,0,255,255,1,0,0,0,255,255,1,0,255,255,1,0,0,0,255,255,1,0,0,0,255,255,0,0,1,0,
254,255,3,0,255,255,254,255,2,0,255,255,0,0,1,0,255,255,0,0,1,0,0,0,255,255,0,0,1,0,254,255,
3,0,253,255,3,0,252,255,3,0,254,255,1,0,1,0,254,255,1,0,1,0,252,255,6,0,251,255,3,0,255,255,
254,255,4,0,251,255,7,0,248,255,7,0,250,255,4,0,254,255,1,0,1,0,254,255,3,0,250,255,8,0,247,255,
9,0,249,255,5,0,253,255,1,0,0,0,255,255,0,0,3,0,251,255,5,0,251,255,4,0,254,255,0,0,1,0,
254,255,3,0,254,255,0,0,0,0,2,0,252,255,6,0,249,255,6,0,253,255,0,0,0,0,1,0,0,0,0,0,
255,255,1,0,254,255,5,0,250,255,6,0,250,255,5,0,254,255,255,255,3,0,253,255,2,0,255,255,255,255,1,0,
1,0,254,255,2,0,254,255,1,0,255,255,2,0,255,255,0,0,1,0,254,255,3,0,253,255,2,0,255,255,2,0,
252,255,6,0,248,255,8,0,250,255,4,0,254,255,0,0,2,0,252,255,5,0,252,255,1,0,1,0,254,255,3,0,
254,255,0,0,1,0,255,255,1,0,255,255,2,0,253,255,4,0,251,255,3,0,1,0,252,255,5,0,250,255,5,0,
254,255,0,0,1,0,254,255,0,0,4,0,251,255,5,0,251,255,4,0,253,255,3,0,254,255,0,0,1,0,255,255,
0,0,1,0,254,255,2,0,0,0,253,255,5,0,250,255,7,0,250,255,3,0,1,0,252,255,5,0,251,255,4,0,
254,255,1,0,255,255,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,255,255,0,0,1,0,254,255,
2,0,254,255,3,0,253,255,3,0,252,255,4,0,252,255,4,0,253,255,2,0,0,0,254,255,1,0,255,255,2,0,
254,255,2,0,253,255,3,0,253,255,3,0,253,255,2,0,255,255,3,0,251,255,6,0,249,255,7,0,250,255,6,0,
250,255,5,0,253,255,0,0,2,0,254,255,0,0,2,0,252,255,4,0,254,255,1,0,255,255,1,0,254,255,4,0,
252,255,3,0,254,255,1,0,0,0,0,0,0,0,255,255,2,0,254,255,1,0,0,0,0,0,255,255,1,0,0,0,
0,0,0,0,255,255,1,0,255,255,2,0,253,255,2,0,0,0,255,255,2,0,253,255,2,0,0,0,254,255,4,0,
251,255,5,0,251,255,4,0,253,255,2,0,254,255,4,0,250,255,6,0,250,255,6,0,251,255,4,0,252,255,3,0,
254,255,2,0,254,255,2,0,254,255,2,0,253,255,3,0,0,0,254,255,3,0,252,255,3,0,255,255,1,0,255,255,
255,255,3,0,252,255,4,0,253,255,1,0,1,0,253,255,5,0,250,255,6,0,252,255,1,0,1,0,255,255,0,0,
1,0,253,255,4,0,253,255,0,0,2,0,252,255,6,0,250,255,4,0,254,255,1,0,0,0,255,255,1,0,255,255,
2,0,253,255,3,0,254,255,1,0,255,255,2,0,253,255,5,0,251,255,3,0,254,255,0,0,1,0,1,0,253,255,
4,0,250,255,5,0,254,255,0,0,2,0,253,255,3,0,253,255,3,0,252,255,4,0,255,255,254,255,3,0,253,255,
1,0,3,0,250,255,7,0,250,255,4,0,254,255,255,255,5,0,249,255,7,0,249,255,6,0,251,255,4,0,254,255,
0,0,0,0,1,0,254,255,2,0,254,255,2,0,255,255,2,0,253,255,2,0,254,255,3,0,253,255,4,0,251,255,
4,0,253,255,2,0,255,255,255,255,3,0,252,255,5,0,251,255,3,0,255,255,0,0,1,0,255,255,1,0,255,255,
0,0,1,0,255,255,2,0,253,255,3,0,253,255,2,0,0,0,255,255,2,0,252,255,4,0,253,255,1,0,1,0,
255,255,1,0,255,255,255,255,3,0,254,255,1,0,0,0,255,255,1,0,0,0,0,0,255,255,2,0,252,255,5,0,
251,255,5,0,252,255,2,0,254,255,2,0,254,255,3,0,253,255,1,0,0,0,255,255,3,0,252,255,2,0,0,0,
0,0,0,0,254,255,4,0,251,255,6,0,250,255,4,0,255,255,0,0,0,0,1,0,253,255,4,0,252,255,3,0,
255,255,255,255,3,0,251,255,5,0,253,255,1,0,2,0,251,255,5,0,254,255,255,255,2,0,255,255,255,255,3,0,
252,255,2,0,0,0,255,255,2,0,255,255,254,255,4,0,250,255,7,0,250,255,5,0,253,255,255,255,3,0,252,255,
4,0,254,255,0,0,1,0,254,255,2,0,255,255,2,0,253,255,3,0,254,255,1,0,1,0,254,255,1,0,1,0,
253,255,5,0,251,255,3,0,255,255,0,0,1,0,255,255,255,255,1,0,1,0,255,255,0,0,0,0,255,255,1,0,
0,0,254,255,4,0,252,255,3,0,254,255,0,0,1,0,255,255,1,0,0,0,254,255,3,0,253,255,4,0,251,255,
4,0,252,255,4,0,253,255,2,0,254,255,1,0,0,0,0,0,255,255,2,0,253,255,3,0,255,255,0,0,0,0,
0,0,255,255,2,0,255,255,0,0,0,0,255,255,3,0,252,255,5,0,250,255,5,0,253,255,2,0,255,255,0,0,
1,0,255,255,1,0,255,255,0,0,1,0,1,0,253,255,3,0,254,255,0,0,2,0,252,255,5,0,251,255,5,0,
251,255,3,0,255,255,0,0,1,0,255,255,255,255,3,0,253,255,3,0,253,255,2,0,255,255,0,0,1,0,254,255,
1,0,1,0,254,255,2,0,254,255,0,0,2,0,254,255,2,0,255,255,254,255,4,0,253,255,1,0,1,0,253,255,
3,0,254,255,2,0,254,255,2,0,253,255,2,0,0,0,255,255,0,0,2,0,253,255,3,0,253,255,2,0,254,255,
4,0,251,255,5,0,251,255,3,0,255,255,0,0,2,0,253,255,3,0,252,255,4,0,253,255,3,0,254,255,0,0,
1,0,255,255,1,0,0,0,255,255,2,0,254,255,1,0,255,255,2,0,253,255,4,0,252,255,3,0,254,255,0,0,
2,0,252,255,6,0,250,255,5,0,252,255,2,0,0,0,0,0,0,0,255,255,2,0,254,255,2,0,255,255,0,0,
0,0,1,0,254,255,3,0,253,255,2,0,255,255,0,0,2,0,252,255,4,0,253,255,1,0,1,0,254,255,2,0,
255,255,0,0,1,0,255,255,0,0,1,0,254,255,4,0,251,255,5,0,252,255,2,0,1,0,252,255,6,0,251,255,
3,0,255,255,255,255,1,0,1,0,253,255,4,0,252,255,3,0,253,255,3,0,253,255,3,0,254,255,255,255,3,0,
253,255,1,0,1,0,253,255,5,0,250,255,5,0,252,255,3,0,254,255,1,0,255,255,2,0,254,255,2,0,254,255,
0,0,3,0,252,255,4,0,253,255,1,0,0,0,255,255,1,0,1,0,254,255,1,0,0,0,255,255,2,0,254,255,
0,0,2,0,253,255,5,0,249,255,6,0,252,255,2,0,1,0,253,255,3,0,253,255,3,0,255,255,254,255,4,0,
251,255,5,0,252,255,1,0,2,0,253,255,3,0,253,255,2,0,0,0,254,255,4,0,250,255,7,0,250,255,4,0,
255,255,254,255,3,0,254,255,2,0,254,255,0,0,2,0,254,255,1,0,255,255,0,0,2,0,253,255,2,0,254,255,
1,0,2,0,252,255,4,0,253,255,0,0,3,0,253,255,2,0,255,255,255,255,1,0,0,0,1,0,253,255,2,0,
0,0,0,0,0,0,0,0,0,0,255,255,2,0,254,255,2,0,0,0,254,255,1,0,0,0,0,0,0,0,0,0,
255,255,2,0,254,255,1,0,255,255,1,0,255,255,2,0,253,255,3,0,253,255,3,0,254,255,1,0,0,0,255,255,
0,0,1,0,0,0,0,0,0,0,255,255,0,0,2,0,253,255,3,0,253,255,3,0,254,255,2,0,253,255,2,0,
254,255,4,0,253,255,1,0,1,0,252,255,6,0,250,255,6,0,252,255,2,0,255,255,1,0,255,255,2,0,252,255,
5,0,253,255,2,0,254,255,2,0,253,255,4,0,254,255,254,255,6,0,248,255,7,0,252,255,0,0,4,0,251,255,
3,0,254,255,2,0,254,255,3,0,251,255,5,0,253,255,2,0,254,255,1,0,255,255,3,0,253,255,3,0,252,255,
4,0,253,255,2,0,0,0,255,255,1,0,0,0,254,255,5,0,250,255,4,0,0,0,252,255,6,0,250,255,5,0,
251,255,5,0,252,255,3,0,253,255,3,0,252,255,5,0,251,255,4,0,254,255,1,0,255,255,0,0,1,0,0,0,
254,255,4,0,251,255,5,0,252,255,3,0,253,255,3,0,253,255,4,0,250,255,9,0,245,255,10,0,248,255,5,0,
254,255,2,0,253,255,3,0,252,255,4,0,254,255,2,0,254,255,1,0,255,255,2,0,253,255,4,0,253,255,1,0,
0,0,255,255,0,0,2,0,254,255,0,0,2,0,252,255,4,0,254,255,1,0,255,255,0,0,1,0,255,255,2,0,
254,255,0,0,3,0,252,255,5,0,250,255,5,0,253,255,3,0,253,255,2,0,254,255,2,0,254,255,2,0,254,255,
2,0,254,255,1,0,254,255,4,0,252,255,4,0,251,255,4,0,253,255,4,0,251,255,4,0,254,255,1,0,0,0,
255,255,1,0,254,255,4,0,253,255,0,0,2,0,253,255,4,0,252,255,4,0,252,255,4,0,253,255,1,0,1,0,
254,255,2,0,255,255,255,255,3,0,252,255,3,0,254,255,1,0,0,0,255,255,2,0,254,255,2,0,253,255,3,0,
254,255,2,0,255,255,0,0,1,0,254,255,1,0,0,0,0,0,1,0,254,255,1,0,0,0,0,0,255,255,2,0,
254,255,1,0,0,0,255,255,1,0,255,255,1,0,0,0,255,255,1,0,0,0,254,255,5,0,250,255,4,0,0,0,
253,255,4,0,252,255,4,0,252,255,4,0,251,255,6,0,250,255,4,0,255,255,255,255,1,0,255,255,0,0,2,0,
253,255,3,0,253,255,2,0,1,0,252,255,5,0,252,255,1,0,2,0,253,255,2,0,0,0,254,255,3,0,253,255,
2,0,0,0,254,255,3,0,254,255,0,0,2,0,252,255,3,0,0,0,255,255,2,0,253,255,1,0,2,0,253,255,
4,0,252,255,2,0,0,0,0,0,1,0,255,255,0,0,
};
SoundDesc SA_pop2((char*)PCM_pop2);

864
src/client/sound/data/sand1.pcm Executable file
View File

@@ -0,0 +1,864 @@
unsigned char PCM_sand1[27580] = {
1,0,0,0,2,0,0,0,68,172,0,0,214,53,0,0,228,255,206,255,185,255,221,255,34,0,229,255,245,255,97,0,
68,0,242,255,198,255,227,255,6,0,186,255,169,255,176,255,131,255,238,255,61,0,43,0,82,0,174,255,24,255,4,0,
171,0,53,0,140,255,45,255,80,255,96,255,167,255,120,0,207,0,23,1,30,1,55,0,229,255,218,255,159,255,223,255,
20,255,198,254,86,0,23,0,54,255,64,0,223,0,28,1,134,0,156,254,221,254,255,255,192,255,50,0,55,0,236,255,
219,0,59,0,236,254,49,255,223,254,187,254,108,0,144,1,207,0,244,255,177,0,210,1,247,1,82,1,186,255,60,255,
6,0,124,255,5,1,82,4,3,3,101,0,182,255,35,254,29,254,251,255,2,1,31,1,115,255,58,255,174,0,134,254,
9,254,65,0,116,253,252,251,177,255,172,0,176,255,211,254,59,253,105,252,210,250,1,251,213,253,38,252,62,250,252,253,
221,255,217,253,169,251,202,250,184,253,80,0,100,254,102,253,7,255,69,255,33,254,119,254,186,1,24,6,82,8,159,6,
61,3,162,1,111,255,61,254,116,3,82,5,99,254,112,251,189,252,208,251,39,254,72,2,5,3,42,3,229,2,176,1,
160,0,72,0,48,1,201,255,30,254,49,0,133,255,202,254,236,2,95,1,199,253,94,2,85,5,245,3,69,3,221,254,
120,251,206,254,224,0,218,255,210,0,42,2,67,1,201,255,13,0,85,2,80,5,106,5,46,1,217,255,231,2,188,0,
51,253,131,1,59,5,81,4,148,3,11,254,43,249,116,0,151,6,165,2,63,1,139,1,193,253,27,0,161,8,143,8,
173,0,140,254,98,0,146,254,197,255,183,3,28,2,165,1,216,4,20,4,140,0,22,252,29,250,140,253,18,255,64,255,
151,0,49,0,102,3,196,3,244,252,208,255,153,4,191,254,189,254,41,1,64,251,225,249,163,251,198,250,34,255,244,1,
6,253,113,251,5,254,109,253,153,254,16,2,81,254,173,250,90,1,41,6,26,3,125,1,39,2,76,0,74,250,80,247,
56,254,138,4,234,5,165,8,158,5,13,253,44,252,134,2,62,6,62,3,85,0,232,0,127,253,59,251,77,0,136,4,
148,7,24,8,36,3,150,2,226,3,9,255,150,250,112,249,201,250,42,252,207,251,14,254,155,252,131,250,80,5,186,11,
226,5,173,4,170,254,149,244,125,251,14,5,68,2,218,0,161,3,67,3,121,1,176,1,44,2,171,1,184,2,153,2,
39,0,219,1,168,3,47,254,127,247,215,246,62,251,156,254,65,255,47,0,27,254,27,251,0,0,122,6,241,4,96,0,
235,254,18,255,64,0,188,3,239,3,197,0,220,3,251,5,240,255,196,255,29,5,126,3,179,253,116,250,189,253,11,1,
221,251,212,250,154,0,160,254,1,251,142,254,135,2,196,2,72,0,42,255,11,255,227,252,131,253,125,253,194,248,31,250,
39,0,237,0,253,255,21,255,170,252,68,252,119,254,179,255,1,253,207,250,67,255,66,3,11,0,88,253,34,1,185,5,
118,4,174,255,43,253,210,252,186,252,111,252,194,252,171,0,81,4,108,0,247,250,102,252,205,255,53,0,104,0,29,1,
83,1,201,0,98,253,37,250,142,252,109,255,34,254,67,254,209,255,230,254,60,255,84,0,234,252,54,250,28,254,110,1,
217,254,99,253,188,0,246,2,121,2,241,2,239,2,143,1,71,3,128,5,137,0,20,249,231,248,79,253,67,0,123,3,
52,7,68,7,86,4,127,2,218,1,5,1,84,0,160,254,40,251,215,249,52,253,155,1,142,3,120,2,240,254,189,252,
232,254,14,2,153,2,180,1,189,0,223,255,214,255,137,1,202,4,82,6,88,3,101,255,77,254,242,253,132,252,15,252,
189,254,239,3,62,7,224,5,132,2,27,255,203,252,90,254,187,0,9,0,113,0,227,1,141,255,16,254,222,255,132,254,
223,252,12,1,9,5,30,4,29,1,165,253,78,252,123,254,36,1,54,4,77,6,165,2,119,253,20,252,52,250,208,248,
141,252,102,255,102,254,2,0,26,3,176,1,73,252,89,246,194,245,155,254,144,8,162,9,96,4,157,254,207,250,42,252,
28,1,96,2,235,255,211,0,197,4,240,3,149,253,7,250,188,251,90,251,186,247,30,249,248,254,34,0,216,253,58,254,
201,253,73,251,69,253,130,2,190,5,142,8,95,9,5,5,86,2,73,4,209,2,94,254,203,254,68,1,255,254,167,250,
126,250,247,254,183,2,93,1,183,253,37,254,15,3,152,5,70,2,21,255,216,255,58,0,153,255,133,0,197,255,24,254,
83,1,186,4,130,0,53,249,238,246,153,250,251,253,145,251,25,250,24,0,121,3,29,255,207,252,40,253,165,252,54,1,
144,6,184,2,225,253,191,255,22,0,1,253,252,253,208,2,105,5,59,3,208,255,231,255,127,1,157,1,125,2,158,2,
231,254,42,252,190,253,237,255,103,0,53,254,58,250,63,250,152,254,80,1,223,2,230,3,0,255,23,248,84,249,246,254,
199,0,101,2,184,5,2,4,36,254,42,252,71,254,3,0,250,0,110,1,88,0,180,254,202,254,145,0,129,0,117,253,
170,252,193,255,68,1,80,1,211,2,18,1,155,252,42,255,247,5,92,4,243,251,221,247,176,249,237,251,165,252,208,252,
5,252,237,250,252,252,161,1,242,2,202,255,1,253,160,252,222,252,77,253,66,0,101,5,99,6,111,2,236,2,103,8,
251,7,227,0,134,251,118,250,184,252,140,0,176,2,253,2,235,1,93,255,146,254,190,254,40,252,6,252,40,1,65,3,
163,0,199,254,79,253,79,253,190,1,199,5,163,5,250,3,93,1,251,253,226,251,3,251,56,252,63,0,229,2,79,1,
156,253,78,250,241,249,11,253,192,255,37,0,254,255,254,254,166,251,82,247,5,246,177,250,155,1,101,3,148,0,93,0,
99,3,71,3,52,255,11,253,216,253,117,253,85,252,99,252,79,251,215,250,224,255,251,5,53,6,183,3,208,2,116,1,
213,255,75,1,64,4,110,4,37,2,173,0,44,1,238,2,116,5,133,7,210,6,211,2,178,255,27,2,35,6,252,3,
163,254,168,253,110,254,201,253,233,255,120,3,169,3,7,4,94,6,12,5,125,0,184,254,239,255,106,1,20,3,239,3,
79,2,242,0,129,2,18,2,165,252,17,250,57,254,165,2,77,5,224,6,19,4,187,0,117,2,240,3,201,2,242,2,
48,2,88,1,235,3,186,1,162,249,205,249,118,0,116,255,115,250,125,250,31,252,32,253,242,255,25,2,167,0,103,253,
122,250,62,249,178,252,85,4,238,6,181,255,46,249,221,250,205,254,58,2,68,5,47,2,149,251,172,250,122,252,79,253,
126,2,20,8,21,5,132,254,55,252,236,252,5,255,250,1,166,3,157,4,174,5,146,4,237,0,79,253,72,252,72,255,
197,2,22,1,8,253,187,252,80,253,38,251,176,250,86,253,204,254,59,255,30,0,195,255,72,255,16,255,87,251,18,247,
32,250,225,1,160,4,45,0,108,250,131,248,120,250,54,254,119,2,100,4,111,1,130,252,199,250,153,253,106,1,25,2,
140,2,139,6,213,6,96,255,70,251,202,254,148,0,131,254,108,252,107,250,42,251,131,255,205,0,118,253,172,251,78,254,
135,2,18,4,202,2,229,1,186,0,48,255,83,0,75,0,173,252,109,253,51,2,175,2,160,1,124,1,227,253,96,251,
137,253,19,254,167,254,91,3,78,5,97,3,244,3,137,4,96,2,128,1,23,2,94,2,57,2,0,255,50,250,78,250,
36,254,241,255,10,0,219,255,68,254,158,252,254,252,135,254,44,0,149,1,116,1,252,254,152,251,53,250,217,252,154,1,
235,3,48,2,239,254,128,253,148,255,5,3,41,4,214,3,55,4,89,3,90,0,69,253,169,250,213,249,237,251,237,253,
250,254,225,0,215,1,228,2,150,6,117,6,36,0,173,253,217,0,140,2,179,3,51,5,81,3,255,1,48,5,38,7,
11,5,129,2,116,0,60,255,174,0,123,2,144,1,216,0,106,2,193,1,43,255,9,2,169,7,38,7,206,3,61,2,
253,254,163,253,88,1,219,0,228,251,130,251,153,251,201,248,198,250,69,255,177,255,39,0,39,1,213,255,154,0,2,2,
24,255,212,254,194,3,246,3,227,255,100,0,167,2,193,0,58,254,205,254,185,0,38,2,107,2,37,1,254,255,23,1,
44,3,200,2,227,254,25,250,12,248,118,250,195,255,33,3,164,0,24,252,44,253,38,2,232,2,233,255,142,254,219,254,
195,255,196,0,39,0,110,0,30,3,136,2,224,254,18,255,229,0,103,255,133,254,187,0,103,2,197,1,45,0,130,255,
115,255,228,253,73,253,59,0,234,1,179,255,163,253,213,253,142,1,231,7,209,7,212,254,72,249,230,252,106,1,129,1,
221,254,174,251,161,250,95,253,64,1,16,2,56,255,133,252,233,252,113,254,255,253,236,252,57,255,173,3,4,4,139,0,
7,0,223,1,140,0,183,253,81,253,3,255,174,1,73,3,145,2,178,2,17,4,104,2,146,254,206,252,29,253,42,254,
107,255,136,255,164,254,119,254,124,255,169,0,102,0,201,254,125,254,140,0,152,2,129,3,137,4,114,4,89,0,192,251,
142,253,27,3,51,4,163,0,21,252,10,248,72,248,188,253,95,2,60,3,253,1,16,0,107,0,16,3,215,3,178,3,
74,4,91,2,108,255,113,255,251,0,241,3,170,6,150,2,89,251,96,250,139,252,163,252,46,253,19,254,136,254,95,0,
244,0,229,255,169,1,202,2,234,254,208,252,69,0,31,3,121,3,210,4,125,6,173,5,52,2,63,253,201,249,103,252,
113,3,175,5,66,1,164,255,252,2,110,3,39,1,112,1,73,1,118,254,145,253,227,254,147,255,115,0,58,0,241,253,
191,254,217,1,199,255,236,251,52,253,198,254,181,254,209,2,239,5,226,0,130,252,221,255,89,3,227,1,24,255,66,253,
25,251,54,248,191,248,191,254,118,1,82,252,5,250,102,254,43,0,119,255,58,2,197,3,219,0,117,255,73,0,188,253,
231,249,86,252,220,2,78,5,217,5,53,8,209,4,1,252,70,250,11,254,83,254,219,254,83,0,236,253,150,253,167,0,
111,254,36,251,77,254,13,1,113,255,223,253,249,252,7,254,233,1,241,2,198,0,35,1,237,1,9,255,60,252,55,253,
73,255,105,254,10,252,240,252,97,255,82,254,197,252,44,254,236,253,90,251,133,252,127,0,9,1,71,255,36,1,190,5,
159,6,38,3,57,0,52,254,88,252,103,254,74,2,211,0,135,253,88,255,123,1,29,255,179,252,31,253,208,255,210,3,
230,3,84,254,195,250,252,251,147,253,143,255,46,1,138,254,243,251,137,254,249,0,109,255,135,253,86,253,30,254,231,253,
47,251,106,249,238,250,205,252,221,254,171,0,152,254,201,252,209,255,30,1,191,254,59,255,150,1,90,3,200,6,113,7,
133,1,179,252,57,254,97,1,210,1,117,0,106,0,72,1,159,255,99,253,225,253,255,253,117,253,97,0,106,3,87,1,
40,254,73,255,56,2,245,1,39,0,63,1,234,2,83,3,150,6,96,8,129,1,113,251,146,254,204,1,197,0,192,0,
9,1,19,1,62,2,17,0,1,252,50,254,133,3,37,4,55,2,176,1,132,1,235,0,148,0,110,0,221,255,218,255,
46,2,31,5,243,5,0,5,46,2,209,254,94,255,150,1,194,255,0,254,225,0,19,3,38,2,223,1,242,0,38,253,
4,252,30,1,58,5,3,3,192,0,117,2,17,3,40,2,60,3,49,3,110,0,216,254,242,254,125,0,83,3,29,2,
121,252,7,250,233,251,79,254,15,1,84,2,80,255,146,250,24,249,36,253,78,2,224,1,125,254,34,254,160,255,147,2,
208,6,3,6,202,0,207,254,125,254,74,253,191,255,15,3,167,0,255,252,57,254,187,1,80,3,240,1,101,254,186,251,
106,253,100,1,55,1,39,253,183,251,81,253,210,254,24,0,84,255,168,253,130,0,97,3,118,0,40,255,214,1,232,1,
243,1,118,3,92,1,245,0,150,5,10,5,134,254,119,250,25,248,53,246,138,247,214,250,157,255,185,3,183,0,181,250,
176,250,143,252,13,252,197,254,39,4,37,5,154,2,79,1,231,255,241,251,38,250,29,255,243,4,19,5,203,2,187,1,
13,1,43,1,154,0,34,254,23,255,236,3,96,5,53,4,6,4,21,0,113,249,131,249,198,254,75,0,9,255,127,0,
11,3,150,2,37,0,112,255,224,0,212,1,45,1,175,255,39,254,175,253,198,254,120,0,182,1,74,1,54,255,200,254,
237,0,162,0,51,252,34,249,195,250,152,254,241,1,78,4,132,5,57,4,215,0,21,0,242,2,80,3,118,0,235,255,
83,1,240,2,98,6,188,7,84,4,85,3,42,6,96,5,66,1,233,254,75,254,193,254,88,0,244,1,217,2,122,1,
251,254,230,255,127,2,146,2,233,1,235,255,195,251,76,252,211,0,131,0,200,254,188,0,63,255,133,250,202,251,62,0,
64,0,123,254,179,254,17,255,46,255,240,0,197,2,152,1,235,255,159,1,99,3,17,2,169,1,56,3,152,2,28,0,
130,254,124,253,32,253,97,254,127,0,98,2,142,3,185,3,19,3,156,2,220,2,191,1,199,254,229,254,156,2,26,3,
193,0,203,1,14,4,36,3,145,1,181,1,82,2,72,1,90,253,117,249,114,248,203,247,123,247,150,251,225,1,188,3,
237,255,43,251,126,250,12,253,45,254,35,254,220,254,182,253,43,251,82,252,95,0,194,1,65,255,121,252,205,252,242,254,
218,254,100,253,71,255,236,3,21,6,98,4,145,1,165,254,50,252,98,253,152,1,28,3,120,1,155,0,134,255,11,253,
109,252,97,254,108,0,81,1,225,0,155,255,132,252,15,247,244,245,66,253,123,3,53,2,38,255,211,252,167,250,195,252,
29,2,61,4,134,3,26,3,224,1,117,0,16,2,155,5,59,6,123,2,68,254,99,253,33,255,121,255,202,252,10,252,
59,0,154,2,158,0,185,1,100,4,84,1,80,254,95,0,118,0,249,253,96,254,125,255,94,0,66,3,124,3,7,255,
195,252,239,253,5,253,173,250,90,251,166,253,98,254,58,255,125,0,185,254,79,252,149,253,161,254,239,253,54,0,57,2,
239,255,109,255,130,1,66,0,114,254,191,255,168,0,20,0,86,255,51,255,56,2,46,6,119,5,23,2,166,0,101,1,
245,3,37,5,223,1,206,255,155,2,106,3,247,255,7,255,10,2,87,3,209,0,243,254,69,1,223,3,71,2,12,0,
244,0,81,1,94,254,144,251,80,252,126,0,96,5,151,6,160,2,204,253,132,252,242,253,226,254,180,253,116,251,192,251,
247,255,127,3,27,3,255,1,52,2,77,2,41,3,15,5,106,4,63,1,101,0,65,2,42,2,98,255,94,254,148,0,
151,1,164,254,37,251,100,251,52,255,215,1,215,254,208,249,44,251,135,1,98,3,241,255,117,253,121,252,93,252,45,0,
78,5,130,5,139,2,145,0,5,254,25,251,253,250,92,252,31,253,210,254,62,1,20,2,215,0,189,254,224,254,93,2,
161,3,195,255,189,252,27,253,234,252,197,252,237,254,53,0,121,255,201,255,96,0,110,254,239,250,68,248,162,248,49,253,
121,1,36,0,138,252,137,252,103,255,185,2,75,4,37,0,157,249,89,250,193,0,179,2,191,255,56,254,33,255,15,0,
107,0,82,1,150,2,240,1,56,0,97,0,232,255,223,252,233,252,202,1,208,4,76,3,13,1,242,255,170,254,243,252,
90,252,232,252,226,253,191,0,54,3,33,0,22,253,152,1,46,5,239,0,14,254,163,0,49,2,49,2,94,2,41,0,
67,253,160,254,138,3,76,6,249,3,199,1,112,4,55,6,92,2,81,254,160,253,64,254,89,0,53,3,89,3,157,0,
0,254,169,253,86,254,127,252,24,250,185,252,223,0,32,255,117,251,193,253,119,2,217,1,115,254,24,255,35,1,217,254,
10,252,194,253,76,0,86,0,111,0,114,1,110,1,97,0,135,255,217,254,112,253,8,252,5,253,177,255,107,0,17,255,
84,254,180,254,162,255,223,0,214,0,230,254,148,253,162,254,129,0,167,1,98,2,209,2,196,2,140,2,20,2,74,1,
73,0,150,254,62,253,79,254,82,0,102,0,182,254,23,253,79,253,211,254,234,254,38,255,13,2,20,3,34,0,61,254,
255,253,164,253,150,254,170,255,17,1,16,4,131,2,0,253,22,254,8,2,3,0,133,254,215,255,78,254,220,254,38,3,
168,2,250,254,25,254,57,254,77,255,130,1,137,1,59,1,211,2,153,2,177,255,220,253,10,254,194,252,132,249,106,251,
199,2,113,4,167,0,139,0,134,0,89,254,227,255,46,0,64,252,86,253,238,0,236,254,76,253,240,255,35,2,165,2,
22,1,135,254,87,254,179,254,98,255,154,2,20,3,237,255,0,0,159,1,116,1,231,1,74,1,109,0,167,3,4,6,
172,3,244,0,27,255,176,255,164,3,119,4,131,2,87,3,12,2,149,253,113,253,125,255,8,255,13,254,225,252,185,252,
206,253,84,251,36,249,143,253,120,1,2,1,222,1,179,2,45,1,155,0,116,0,7,0,20,1,192,1,35,1,237,255,
131,253,46,253,200,0,174,3,5,4,68,2,87,254,217,252,209,255,215,2,103,4,86,3,201,254,54,253,130,0,56,2,
107,2,115,3,205,2,151,1,91,1,253,255,155,254,239,253,109,252,165,252,184,255,84,2,251,2,191,1,199,0,123,2,
7,3,204,0,116,0,203,0,91,255,24,255,138,254,54,253,243,255,215,2,134,1,254,1,42,3,170,255,209,253,166,0,
165,1,92,0,60,255,172,253,82,253,4,254,137,253,181,253,245,254,211,254,252,253,15,253,224,250,92,248,108,247,251,248,
74,252,114,255,200,1,72,2,192,0,161,0,23,1,98,254,146,253,68,1,142,1,1,255,215,0,124,3,95,3,247,3,
28,4,86,2,223,1,213,2,254,3,107,4,80,1,24,253,124,252,136,253,80,255,16,3,231,3,106,255,6,251,79,250,
103,253,32,2,68,3,88,0,92,253,180,250,235,248,76,250,67,253,237,255,6,2,185,1,191,255,207,254,55,254,103,254,
163,0,213,0,223,253,255,253,226,1,55,3,135,0,31,253,176,251,95,254,19,3,173,2,58,253,50,252,129,0,156,0,
22,253,200,254,216,2,209,1,178,254,131,253,129,253,230,255,43,3,233,1,235,253,183,252,223,253,141,255,28,1,191,0,
241,255,228,1,167,3,231,0,51,252,112,250,26,252,157,254,62,0,210,0,18,0,28,254,111,253,96,0,92,4,191,4,
111,2,234,1,95,2,24,0,216,252,210,251,115,252,26,255,78,3,11,4,25,1,18,0,194,0,1,1,123,3,248,5,
154,2,130,253,168,253,203,255,121,255,149,255,75,1,32,1,46,0,54,2,6,4,202,1,223,255,13,1,130,1,247,0,
62,1,228,255,207,253,68,255,18,2,229,1,238,255,96,255,56,1,174,2,254,0,112,255,120,0,144,0,64,0,139,2,
5,3,141,254,162,250,206,251,100,0,87,3,233,1,207,255,153,255,232,254,175,254,226,255,11,255,190,253,40,255,227,255,
107,255,88,0,144,0,37,0,96,0,34,254,201,251,27,254,224,0,94,1,16,2,20,1,182,254,212,254,127,255,60,0,
2,4,24,7,74,6,246,3,187,255,218,251,156,254,83,4,43,5,146,3,174,3,39,3,37,1,127,0,253,0,117,0,
191,0,182,2,194,1,153,254,33,255,112,0,48,255,125,0,246,1,118,254,234,253,12,2,234,0,151,253,77,255,252,0,
200,1,113,4,99,3,192,255,164,0,116,1,255,253,45,252,67,253,20,254,241,254,109,255,215,255,226,1,132,2,130,0,
109,0,95,1,174,254,153,251,15,253,40,0,188,0,76,0,151,1,93,3,156,2,10,0,157,255,43,2,138,3,22,1,
67,254,15,255,171,1,38,2,81,0,9,254,213,252,56,254,166,0,6,0,4,254,172,255,69,2,46,1,176,255,188,255,
49,254,10,253,204,254,184,255,77,255,220,255,28,255,179,253,253,254,41,0,124,0,224,3,124,6,222,2,130,253,112,251,
236,251,18,254,235,0,18,2,191,0,59,255,182,255,71,0,101,255,250,255,40,1,72,255,7,254,245,255,157,0,122,0,
253,1,57,2,219,1,172,2,44,1,253,253,59,252,110,251,171,253,188,1,87,1,113,0,106,3,58,2,32,253,236,253,
82,1,211,255,246,252,31,253,198,254,202,254,216,253,26,0,145,2,156,255,116,253,48,0,235,255,99,252,157,252,181,255,
225,2,249,3,25,0,113,252,254,253,193,255,109,255,221,254,187,253,159,255,109,4,80,3,195,253,227,252,95,254,3,254,
155,254,234,255,105,0,44,1,70,0,223,252,175,251,11,255,232,2,226,2,59,0,40,255,183,255,24,0,28,1,18,2,
193,1,23,2,165,2,25,1,168,255,127,0,223,1,213,1,195,255,252,253,139,255,177,1,32,1,242,255,253,254,127,253,
102,253,70,254,196,254,137,1,229,5,26,7,59,5,97,2,188,254,175,252,156,253,91,254,237,253,115,254,20,255,134,254,
216,254,32,0,83,255,62,253,97,253,22,255,236,255,252,255,4,0,82,0,47,0,121,254,71,254,112,2,148,5,171,3,
63,1,110,0,73,255,63,255,171,0,218,0,191,255,232,254,157,255,232,1,93,2,158,0,239,0,87,1,232,253,159,251,
64,254,249,0,117,1,162,2,16,4,246,1,166,253,185,253,172,1,214,1,184,255,135,1,188,2,231,255,22,255,89,0,
198,255,153,0,218,2,14,2,251,0,52,2,104,1,67,254,70,253,87,255,103,2,49,4,100,3,97,1,225,255,15,255,
115,255,7,1,172,1,250,255,73,253,126,251,94,251,96,253,95,0,253,0,190,255,170,0,133,1,192,254,121,253,245,255,
97,0,21,0,79,3,228,3,42,255,200,252,125,253,153,252,66,252,152,253,135,253,119,253,183,254,213,254,137,255,214,2,
54,4,233,1,69,0,95,0,21,1,172,3,185,6,37,6,163,1,147,252,85,251,255,255,0,5,12,3,12,253,68,251,
122,254,219,0,29,255,45,252,83,252,96,254,235,254,246,254,119,255,108,254,177,253,170,0,164,3,208,1,65,254,149,253,
153,254,35,255,186,255,118,255,108,253,119,253,166,1,185,4,61,3,229,255,252,252,233,251,115,253,202,254,47,255,58,1,
204,2,164,1,209,0,247,255,33,253,129,252,12,255,214,255,201,254,204,253,122,252,73,253,75,0,92,0,37,254,64,254,
127,255,229,255,255,255,28,255,32,254,227,254,48,255,25,254,206,254,36,1,56,2,134,2,183,2,79,1,205,255,180,1,
47,5,10,5,242,1,224,0,15,1,239,253,194,249,208,250,3,0,93,3,99,4,18,5,123,2,82,252,94,250,71,255,
137,3,196,3,157,3,139,3,244,1,127,255,41,253,81,253,218,0,106,2,250,255,23,255,18,0,253,254,55,254,110,255,
117,255,243,254,73,255,77,254,153,253,52,255,114,255,25,254,36,255,37,1,245,1,3,3,192,2,37,0,244,254,64,255,
135,254,47,255,162,1,197,1,24,0,220,254,137,252,165,250,252,252,25,1,137,2,173,1,11,1,163,1,12,1,56,253,
220,251,109,1,122,5,30,2,119,255,255,0,130,0,25,255,24,1,63,2,230,255,119,254,120,255,251,0,67,2,153,2,
160,2,196,3,194,3,212,0,169,254,206,255,49,1,39,0,164,254,137,255,50,2,201,3,51,3,13,1,115,254,84,253,
42,254,184,254,117,254,110,255,56,1,11,1,229,254,155,253,41,254,57,255,23,1,13,4,59,4,228,255,16,253,82,255,
166,1,32,1,130,0,9,0,99,254,201,253,35,255,77,255,26,254,52,255,217,1,7,2,225,0,225,0,11,0,239,254,
46,0,133,255,201,250,135,249,158,253,255,255,196,255,215,255,107,255,207,255,199,1,92,1,143,255,181,0,229,1,14,0,
65,254,212,253,35,254,7,0,142,1,142,0,232,255,35,1,48,1,239,255,157,0,57,2,151,1,77,1,94,4,35,5,
164,255,223,251,181,254,170,0,28,254,105,252,86,253,199,254,20,0,26,0,45,255,66,255,234,254,152,253,106,254,46,0,
158,255,242,254,96,255,52,254,82,252,240,251,114,252,193,254,120,2,129,2,154,254,166,252,21,253,93,252,142,252,167,0,
238,4,43,4,65,255,185,251,7,253,249,0,92,3,35,3,27,1,209,253,107,252,239,255,129,3,210,0,105,252,84,253,
123,0,249,0,166,0,58,1,168,1,113,1,48,0,50,255,126,0,82,1,131,255,168,254,246,254,157,253,16,254,41,2,
125,4,242,3,186,3,191,2,124,0,46,255,178,254,221,254,172,255,18,255,177,254,244,0,17,1,124,253,79,253,130,0,
6,0,139,253,41,254,106,255,15,255,74,255,193,255,235,254,164,253,232,251,109,250,40,252,226,254,249,253,87,253,68,0,
19,0,107,252,182,253,159,0,9,254,47,253,177,1,131,2,183,255,100,255,180,253,168,250,9,254,144,4,162,5,201,2,
223,255,53,253,172,251,131,251,171,253,235,2,155,5,170,2,239,0,158,1,78,254,96,250,252,252,184,1,30,2,63,0,
254,255,74,1,72,1,168,254,114,253,140,0,171,3,176,3,243,2,196,1,60,255,80,254,254,255,221,0,29,0,220,255,
43,1,4,4,81,5,78,1,85,252,245,252,149,255,119,255,195,255,36,0,210,252,110,250,112,252,192,252,89,250,10,251,
60,254,248,0,233,3,109,5,179,3,211,0,160,254,24,255,227,2,112,4,134,1,38,0,193,0,32,255,39,254,178,255,
167,255,192,254,146,255,135,255,165,254,134,255,20,0,50,255,28,255,172,254,22,253,226,253,253,0,245,1,97,0,35,255,
194,254,241,254,165,0,188,2,13,2,169,255,250,255,171,1,233,255,214,252,237,252,201,253,133,253,183,255,42,3,66,2,
76,255,216,255,38,1,231,255,55,0,76,3,165,3,111,0,174,254,43,0,175,2,130,3,165,1,60,0,130,1,26,2,
43,1,56,2,54,3,224,0,197,255,37,2,160,2,58,0,41,255,115,255,107,255,209,255,51,0,74,255,79,254,202,254,
192,255,210,255,200,255,253,255,135,254,80,252,57,253,168,255,121,255,207,255,222,3,213,5,121,1,126,252,136,252,117,255,
88,1,29,2,104,2,31,1,112,255,153,255,116,255,33,254,116,255,104,1,249,254,71,253,216,0,125,2,153,255,112,255,
161,2,119,3,117,1,87,255,161,254,141,255,83,0,17,0,211,255,87,255,227,254,246,255,21,1,145,0,204,255,249,254,
174,253,219,253,60,255,12,255,49,254,137,255,43,2,199,2,158,0,117,254,179,254,182,0,131,2,55,2,102,255,222,252,
21,253,224,254,140,0,159,0,254,253,34,252,131,254,62,1,122,0,36,255,180,0,30,5,205,8,186,6,233,0,223,254,
129,0,236,0,21,1,55,2,67,1,113,254,126,253,200,254,16,0,222,0,74,1,154,255,115,252,117,252,233,254,82,254,
156,253,159,1,20,4,172,0,51,253,95,251,209,249,197,251,127,255,49,0,181,0,111,2,191,1,71,0,125,255,187,252,
137,251,91,255,175,1,16,255,54,253,166,254,71,0,7,0,135,254,80,254,91,0,2,2,246,1,239,1,51,2,38,1,
124,254,125,252,136,253,65,0,27,1,41,255,130,252,79,252,44,255,155,0,127,254,178,253,205,255,179,0,220,255,112,254,
136,251,187,249,16,252,214,255,115,2,241,3,169,3,29,3,158,4,89,5,64,2,167,254,109,255,170,3,111,5,94,2,
95,255,196,255,6,1,38,1,6,0,169,254,172,255,66,1,156,255,171,254,121,0,122,254,211,250,149,253,234,0,40,254,
145,252,100,254,182,252,25,250,208,252,147,0,195,0,202,0,67,2,113,1,100,254,254,253,150,0,60,2,209,2,84,3,
2,2,173,255,148,254,78,254,226,255,28,3,145,3,240,1,158,1,201,255,54,253,226,254,70,1,169,1,24,4,47,5,
130,1,26,0,143,1,118,0,76,0,211,1,90,0,90,0,247,3,179,3,211,0,6,1,201,0,188,255,34,2,94,4,
44,3,14,2,166,1,220,0,103,1,74,2,197,0,75,254,74,254,215,0,165,2,137,2,218,2,58,3,209,1,178,0,
95,0,120,254,42,253,173,254,63,0,61,1,31,2,84,0,247,252,191,251,156,251,152,251,95,253,184,255,28,1,102,2,
167,2,9,1,218,255,108,0,110,1,62,1,30,255,84,253,90,255,177,2,216,0,87,251,10,251,104,0,252,2,116,1,
85,0,120,254,59,252,166,254,61,2,178,0,6,254,118,253,47,252,18,252,3,254,100,253,79,252,70,255,42,2,234,1,
111,0,206,253,112,252,245,254,118,0,17,255,136,255,135,255,72,251,214,248,85,251,229,253,239,255,150,2,238,1,86,253,
27,250,60,251,18,255,179,1,14,1,13,0,191,0,12,1,113,1,140,3,154,4,64,4,170,5,66,6,192,2,21,255,
251,253,69,254,178,0,33,3,94,1,73,255,136,1,224,3,164,3,243,2,90,0,251,252,90,255,56,5,238,5,195,2,
233,1,162,2,218,2,97,3,17,3,4,1,128,255,67,255,44,255,84,255,245,254,41,253,5,252,136,252,69,253,48,255,
228,2,192,4,51,2,20,253,216,249,49,252,5,0,96,254,6,252,5,0,119,3,156,0,23,254,104,254,13,254,191,254,
87,0,211,254,249,252,28,254,163,254,151,253,216,253,201,254,159,255,25,1,17,1,118,254,57,253,10,255,16,0,222,254,
101,254,255,253,45,251,215,249,60,253,11,0,43,255,142,254,128,255,247,0,218,2,7,2,204,253,164,251,106,252,254,252,
244,254,9,2,143,2,125,2,195,3,21,3,90,1,191,1,102,1,246,254,86,254,183,255,173,0,50,2,66,4,216,3,
114,0,137,252,174,250,150,252,77,0,52,1,187,255,19,0,54,1,240,0,148,2,163,6,192,7,47,5,131,2,146,0,
11,0,6,1,133,0,200,255,227,2,12,6,121,4,73,2,165,2,111,2,77,1,19,1,74,0,22,255,22,0,243,1,
247,1,233,0,19,255,56,252,164,251,37,254,222,254,234,252,247,251,195,251,184,251,77,254,215,1,205,2,116,2,220,1,
209,0,186,1,119,3,144,1,217,254,147,0,156,3,90,3,90,1,218,255,236,254,67,255,223,0,170,1,220,0,189,255,
59,254,145,252,193,253,152,1,181,3,96,3,164,1,89,253,98,249,180,249,223,251,152,254,85,2,234,1,175,253,7,254,
193,0,21,255,135,254,201,2,138,4,170,1,0,255,201,253,162,253,132,254,157,254,192,253,62,254,232,255,77,255,229,251,
243,250,209,254,107,2,23,3,95,2,131,255,221,252,219,254,53,1,229,255,0,0,157,2,24,4,244,5,124,7,253,4,
65,2,196,2,70,2,190,255,9,255,68,0,216,0,8,0,28,255,200,254,33,254,152,254,179,1,157,2,96,255,13,255,
87,2,243,1,246,254,143,254,20,255,95,255,141,0,199,255,210,252,179,252,27,255,107,255,205,254,105,0,162,1,232,255,
28,254,195,253,200,252,166,252,12,0,56,3,89,2,145,0,69,0,111,255,124,254,49,255,136,255,148,254,17,255,109,0,
246,255,222,255,143,1,217,0,3,254,115,254,162,0,82,0,229,255,180,0,112,0,127,0,90,1,245,255,84,254,112,255,
26,0,157,255,94,1,80,3,114,1,94,253,165,250,34,251,175,254,26,2,62,2,67,0,80,255,184,255,56,255,241,253,
204,254,113,1,88,2,250,0,170,255,255,255,40,2,81,4,162,4,201,3,204,1,59,254,84,252,22,254,220,255,137,255,
62,255,167,255,219,255,70,0,112,1,65,2,154,0,110,253,222,253,14,2,206,2,72,255,79,254,106,255,122,253,174,251,
50,254,103,1,161,2,243,2,187,1,73,0,2,1,143,0,229,253,108,254,132,0,119,254,197,252,170,255,33,1,194,254,
58,253,238,253,156,0,172,4,75,5,184,0,143,252,127,252,165,254,245,255,37,255,27,254,202,254,182,255,164,255,3,255,
196,253,178,253,60,0,79,1,77,254,233,251,108,253,199,255,80,0,224,255,95,255,238,254,100,255,167,0,176,0,11,0,
25,1,58,1,34,254,117,253,146,1,192,3,253,1,233,0,35,1,86,1,207,1,82,1,181,255,139,254,137,253,212,253,
179,0,128,1,4,254,50,252,19,254,64,255,199,254,215,253,109,252,154,252,11,255,147,0,227,0,79,2,14,4,75,4,
220,2,214,0,90,0,120,0,194,253,43,251,151,253,74,0,48,254,95,252,116,254,6,0,170,254,198,252,66,252,203,252,
108,253,139,255,241,3,9,5,180,255,147,251,91,254,151,3,6,6,205,4,152,2,114,2,158,1,12,254,150,253,24,1,
215,1,85,0,204,255,141,254,225,254,23,2,241,1,239,254,202,254,238,254,150,254,151,1,21,3,30,0,229,0,251,5,
167,6,234,2,135,255,157,252,212,251,160,255,185,3,9,3,133,0,137,1,45,4,3,3,21,255,157,253,245,254,171,255,
59,255,238,255,252,1,179,2,214,0,147,254,101,254,208,0,196,3,37,4,215,2,204,2,56,2,3,0,71,0,43,2,
119,0,191,253,173,254,29,0,72,255,5,255,149,0,38,2,212,2,148,2,220,1,46,2,26,3,149,1,109,254,82,254,
42,0,252,255,145,0,131,2,60,0,88,253,6,1,37,5,191,3,124,1,221,255,135,254,233,0,47,3,158,255,44,251,
129,250,147,251,100,253,183,254,143,254,80,255,90,0,115,255,104,254,93,253,252,251,172,253,214,0,127,0,135,254,124,253,
92,252,243,252,46,0,42,2,209,0,74,254,93,253,219,253,28,253,253,251,222,252,77,253,78,252,105,252,143,252,179,252,
219,254,159,255,199,254,164,1,235,3,152,0,38,255,49,1,157,254,62,250,6,252,15,1,112,3,127,2,106,0,226,255,
145,0,81,0,13,0,209,0,141,1,201,1,168,0,26,254,20,253,40,254,154,254,140,254,75,255,194,255,219,255,83,0,
49,255,204,251,139,250,171,253,195,0,121,1,37,2,203,1,104,255,235,254,254,255,107,255,211,0,131,4,65,3,115,254,
240,252,120,253,150,254,29,2,193,4,6,3,70,255,100,253,91,255,132,1,150,254,152,250,184,251,92,255,60,2,92,3,
152,0,67,253,4,254,81,255,171,254,231,254,238,255,243,0,199,1,52,0,178,254,217,0,219,1,67,255,179,254,63,1,
113,3,70,4,154,2,138,255,224,255,191,3,193,6,226,6,114,4,102,1,117,0,148,1,77,2,136,0,127,253,215,253,
193,1,41,3,148,0,125,254,184,254,118,0,175,2,194,3,78,3,137,1,37,255,243,254,38,0,134,254,175,252,0,255,
134,1,36,1,136,0,144,255,163,253,13,254,219,0,142,2,95,2,28,1,182,255,211,255,176,0,115,255,138,252,164,251,
182,253,122,255,27,255,238,253,232,251,74,249,11,250,203,254,23,2,104,1,14,255,139,252,206,250,228,250,41,252,198,253,
89,255,244,255,231,255,172,0,172,1,140,0,102,253,45,252,10,255,47,2,44,2,193,0,170,255,22,255,47,0,180,1,
160,0,173,254,45,255,168,0,181,0,254,0,187,3,228,5,241,2,189,254,76,0,177,3,12,2,131,255,44,0,179,255,
13,254,134,255,242,0,11,254,188,250,210,251,79,0,21,4,151,3,90,255,35,252,254,252,142,255,21,0,217,254,191,254,
159,255,143,255,94,255,43,255,119,253,26,253,120,0,115,2,52,0,126,254,14,255,98,255,15,255,98,253,202,250,231,251,
139,0,55,2,100,0,40,0,69,2,166,3,150,2,72,0,74,255,109,255,254,254,157,255,253,2,128,6,191,6,111,3,
204,255,76,255,107,0,227,255,46,255,169,0,203,2,22,3,42,1,54,0,129,3,234,6,126,4,12,0,36,0,187,2,
25,3,112,1,124,255,200,253,141,253,212,255,77,2,26,2,160,0,231,255,158,255,61,0,242,255,113,251,115,248,5,253,
132,1,50,0,157,254,146,253,107,251,149,252,173,254,29,252,130,250,191,252,214,252,139,252,195,255,106,1,215,255,4,255,
79,254,74,253,230,254,25,2,27,3,36,1,130,254,75,254,189,0,1,3,11,3,169,0,1,254,187,254,41,2,94,3,
0,1,17,255,31,1,141,4,32,3,169,253,70,251,43,253,140,255,83,1,236,1,240,0,34,0,6,0,106,0,80,1,
105,0,38,254,201,254,43,1,51,1,133,255,250,253,17,254,141,0,204,1,85,0,185,255,30,255,190,252,3,253,24,1,
83,4,107,4,205,1,81,255,158,0,50,3,251,2,206,1,157,1,222,1,155,2,121,2,165,0,91,255,139,255,97,0,
89,1,139,1,183,0,222,254,100,253,60,0,57,4,79,1,19,253,97,0,215,3,238,1,74,1,6,2,2,1,166,1,
14,2,143,254,162,252,146,254,240,255,225,0,80,2,184,1,188,255,131,255,125,1,231,2,148,1,16,0,134,0,155,0,
42,0,236,255,73,254,239,254,255,2,40,1,193,250,238,251,209,0,156,0,202,0,168,2,23,0,233,252,107,253,227,253,
13,254,102,255,200,255,134,255,96,0,174,1,30,2,164,0,173,255,73,2,212,3,118,0,169,253,232,254,20,2,133,5,
128,5,214,0,248,253,238,254,55,255,214,254,20,255,68,254,151,253,255,254,84,0,41,255,167,252,120,252,107,255,228,0,
122,254,0,252,246,252,172,0,124,3,41,2,121,254,113,252,177,252,17,254,125,255,92,0,238,0,19,0,77,254,131,255,
104,2,172,2,232,1,119,0,210,252,7,252,26,255,194,255,197,254,55,254,11,251,85,249,94,253,163,0,89,0,67,0,
125,255,22,254,206,254,80,255,98,253,33,251,64,250,123,251,2,254,148,255,244,255,144,254,87,251,70,251,242,255,18,3,
128,2,216,1,129,1,93,0,94,255,129,255,244,0,181,1,177,255,86,254,131,0,8,1,190,253,23,254,169,3,197,5,
140,2,202,0,193,1,51,2,36,2,241,1,134,1,31,2,7,2,99,255,185,254,104,2,222,3,88,0,223,254,199,1,
235,2,137,1,87,1,22,0,3,254,114,1,162,6,124,4,93,255,11,254,61,253,200,252,46,0,150,3,132,3,62,2,
188,255,255,251,80,251,100,254,114,0,53,0,134,0,103,0,153,253,51,252,154,254,119,255,147,254,102,1,134,4,127,2,
192,255,218,255,136,255,51,254,99,254,51,255,182,254,46,255,82,2,57,3,230,255,17,255,204,1,189,2,63,3,72,3,
101,254,251,250,100,255,196,2,213,255,80,253,74,254,140,0,211,1,216,0,102,0,182,1,104,1,141,0,88,1,193,0,
65,255,225,255,132,0,37,0,43,0,16,255,142,253,46,254,122,254,127,253,111,255,148,3,199,4,121,3,26,3,61,3,
217,2,144,2,149,1,206,255,99,255,211,255,144,255,206,0,15,4,104,5,73,4,243,3,142,3,10,0,202,252,172,254,
10,1,5,255,127,254,229,0,231,254,189,251,191,253,138,254,32,252,246,252,145,254,82,254,244,255,42,0,60,253,63,254,
134,1,109,0,118,254,59,254,39,252,65,250,120,252,172,254,87,252,173,250,14,255,0,3,252,0,65,255,199,255,11,254,
62,254,236,2,240,3,67,0,177,254,2,255,51,255,13,1,60,3,175,2,210,0,178,0,69,1,174,0,69,1,123,2,
39,0,118,254,11,1,21,0,146,251,234,252,218,0,63,1,107,1,252,255,185,251,19,252,173,255,163,254,94,252,129,253,
187,254,79,255,217,0,99,0,45,252,117,249,145,252,28,1,115,2,56,2,14,0,135,252,67,254,117,2,245,255,110,252,
178,254,78,0,26,1,148,5,29,6,225,255,84,253,76,0,85,1,193,255,162,254,249,253,119,253,156,253,161,254,148,0,
200,2,47,3,206,0,83,255,197,1,116,3,49,1,54,0,41,1,229,254,53,253,252,0,108,3,170,1,1,3,15,6,
146,3,97,255,77,255,64,0,161,255,33,255,217,255,174,1,167,2,225,1,28,2,104,2,79,255,33,252,124,252,148,253,
65,253,13,252,118,251,47,253,225,254,7,255,239,0,152,2,166,0,90,0,124,2,117,1,225,255,48,0,162,254,154,253,
117,255,158,255,181,254,32,0,119,1,171,1,153,1,108,0,252,255,254,1,234,3,26,3,125,255,66,253,199,255,172,1,
220,255,56,0,243,1,236,255,99,254,185,255,124,255,242,254,116,0,22,1,54,0,74,254,116,251,173,252,230,2,148,5,
115,1,253,252,190,251,141,251,231,251,118,254,102,1,105,0,211,252,69,252,137,254,23,255,32,254,225,254,114,1,71,3,
237,2,220,1,226,1,128,1,37,255,117,253,220,254,17,1,122,1,14,1,97,1,44,2,156,2,22,2,78,0,114,254,
47,254,205,254,221,254,20,255,81,255,109,254,251,254,145,2,57,4,203,1,141,255,82,254,125,253,177,255,250,1,222,255,
76,255,222,3,215,5,10,3,83,1,43,0,227,252,33,251,99,253,192,0,137,2,165,2,218,1,235,0,59,0,48,255,
22,254,152,255,226,2,136,2,163,255,241,255,206,0,199,254,170,254,254,0,240,0,50,0,220,0,78,0,59,255,226,254,
8,254,68,255,218,2,141,2,187,254,250,253,240,255,200,0,105,0,119,255,7,255,29,0,201,0,121,0,51,1,38,2,
86,2,127,3,145,4,6,3,75,0,73,254,99,253,227,254,195,1,49,2,121,0,67,0,10,1,28,0,53,255,48,0,
25,0,160,254,40,255,105,255,26,253,186,252,101,253,69,251,169,252,198,2,92,3,153,255,60,255,130,254,42,252,89,253,
42,255,107,255,67,1,161,1,207,254,230,253,206,254,218,254,191,255,112,1,157,1,105,255,235,251,176,250,97,252,175,253,
48,254,129,254,94,255,235,2,123,4,235,255,106,253,138,255,255,254,226,254,98,2,4,2,218,254,174,254,108,254,94,254,
45,0,9,255,195,253,174,0,84,0,164,252,28,255,13,4,108,3,9,1,4,1,169,1,109,2,167,3,221,4,173,4,
13,1,250,251,240,249,68,250,77,250,61,251,97,253,92,254,174,254,32,0,21,1,76,0,248,255,82,1,179,2,220,2,
13,2,214,0,130,0,114,2,103,4,152,2,234,255,85,1,91,3,183,2,45,3,86,3,36,0,248,255,205,3,68,3,
195,255,102,255,49,0,159,0,102,0,171,253,37,253,33,2,184,5,203,4,38,3,9,1,86,254,136,253,230,254,136,0,
60,0,48,254,175,253,200,255,146,2,240,3,155,2,21,1,11,1,87,255,246,253,130,0,95,1,240,254,210,254,227,254,
104,253,131,254,100,255,1,254,215,254,231,255,117,255,82,1,145,1,27,253,114,251,33,254,111,255,224,255,196,1,155,2,
143,255,81,251,209,251,51,255,70,255,34,255,180,1,150,1,223,254,47,254,216,254,30,0,213,0,217,254,128,254,95,1,
26,1,199,254,192,255,173,0,128,255,61,0,65,2,29,2,8,1,140,1,244,2,89,3,22,3,226,2,222,1,251,0,
105,1,33,1,90,0,156,1,223,2,249,1,63,1,9,1,250,254,89,252,177,252,171,255,40,1,238,255,113,255,218,0,
2,1,143,254,47,252,106,252,81,254,140,0,107,4,31,8,87,6,229,0,48,254,15,254,205,253,5,254,25,255,26,0,
34,0,184,255,182,0,227,1,11,1,146,255,117,254,183,254,124,1,28,2,175,255,89,1,135,4,205,2,208,1,73,3,
28,1,143,253,141,251,37,250,75,252,80,255,10,254,15,254,14,1,67,0,48,253,83,252,28,253,19,255,209,255,115,254,
95,254,193,253,220,251,82,254,61,2,80,1,198,254,35,253,227,252,51,0,201,1,239,253,39,252,165,254,106,0,22,1,
60,0,107,254,171,0,152,4,146,3,82,0,13,255,62,254,63,254,134,0,161,2,165,2,35,2,5,2,66,1,158,0,
135,1,2,2,42,1,254,1,146,3,242,1,175,255,7,1,110,2,18,0,162,254,193,1,181,3,98,1,104,0,48,1,
131,254,79,251,158,252,228,255,63,2,131,2,112,255,176,252,161,253,48,255,201,255,138,0,182,255,255,252,52,251,217,250,
153,250,221,250,51,253,117,0,41,1,120,255,207,253,29,252,27,252,179,255,92,2,87,1,137,0,200,0,247,255,214,254,
110,254,223,254,61,255,192,253,68,252,22,253,27,254,161,254,113,255,198,254,72,253,66,253,213,253,245,254,201,0,3,1,
20,0,39,0,247,0,48,2,145,2,167,0,35,255,21,0,185,1,209,2,96,2,210,0,32,1,32,2,241,0,3,0,
95,0,199,255,138,255,248,0,247,2,149,5,15,7,142,5,139,4,117,5,225,3,77,255,243,252,151,254,82,0,43,0,
210,0,71,2,229,0,240,253,136,253,209,254,117,255,241,255,216,0,53,1,76,255,236,251,75,251,178,253,233,254,87,254,
137,253,145,252,4,253,228,254,211,254,40,253,231,252,96,254,164,1,18,5,39,4,68,0,124,255,18,1,28,1,36,1,
127,2,157,2,108,1,22,1,196,0,228,254,190,252,197,252,217,255,29,3,139,2,220,255,209,255,227,0,66,255,74,253,
234,253,15,255,204,255,209,1,232,2,176,255,16,252,116,253,146,0,185,0,32,0,19,0,120,255,219,0,91,3,67,2,
25,1,160,3,192,3,188,255,253,252,201,251,137,252,81,1,179,3,181,255,40,253,181,254,174,254,208,253,93,255,42,0,
139,253,156,250,67,251,31,254,63,254,116,252,1,254,172,0,67,255,79,253,235,254,198,0,242,0,49,1,178,0,227,254,
53,254,181,255,227,2,183,6,83,7,185,2,195,254,222,0,234,4,216,4,230,1,207,255,40,255,168,255,14,0,2,254,
199,251,188,253,64,1,213,1,121,1,123,1,122,255,84,253,209,253,206,254,6,0,145,3,142,6,163,5,95,2,241,254,
125,253,32,0,9,4,10,5,4,4,89,2,248,255,94,255,38,1,162,1,228,0,202,1,46,2,152,255,245,252,96,252,
37,252,224,251,109,253,231,0,63,3,31,2,104,255,72,253,25,251,35,250,212,252,218,255,0,255,37,253,32,254,8,0,
30,0,44,255,21,255,139,0,194,2,120,3,141,1,151,255,185,255,44,0,130,0,217,1,159,1,125,255,128,255,139,255,
140,252,162,252,112,1,44,3,9,1,182,255,105,255,161,0,197,2,171,1,253,254,36,255,197,0,104,3,244,6,197,5,
74,255,67,251,252,251,46,253,160,253,49,255,158,1,1,2,192,255,181,254,189,0,206,2,98,2,31,0,141,254,242,254,
176,254,2,253,19,254,166,1,34,2,235,254,223,251,113,251,65,254,77,1,80,0,245,252,57,251,85,251,116,253,206,0,
154,0,223,252,238,251,50,254,213,255,26,1,169,0,57,253,133,253,230,2,228,3,115,0,247,255,176,255,33,253,208,252,
90,253,67,253,224,0,121,4,13,2,243,254,199,254,199,253,121,253,254,255,172,0,130,254,250,253,211,254,20,254,76,253,
42,254,113,254,102,254,176,0,103,2,86,0,253,253,23,253,43,252,51,253,115,255,111,255,31,0,123,2,167,0,179,252,
72,253,143,254,68,252,12,252,5,0,205,1,201,255,244,254,24,0,116,0,111,0,179,0,7,1,37,3,155,5,34,4,
148,0,22,255,217,255,146,2,246,4,88,4,242,3,120,4,69,2,187,0,10,2,203,0,193,254,149,0,237,1,247,0,
4,1,146,1,136,2,97,3,213,0,35,254,135,255,246,0,28,1,94,2,200,1,2,255,36,255,250,1,160,3,72,3,
135,1,72,255,70,254,114,255,56,1,203,0,65,255,80,0,185,2,194,2,240,0,97,255,213,254,0,255,129,254,146,253,
195,253,251,253,95,253,14,254,5,0,81,0,36,255,248,255,237,2,230,3,150,1,216,254,131,253,248,253,126,255,5,0,
146,0,239,2,169,3,248,0,246,254,91,255,114,0,16,1,73,0,27,255,34,255,135,255,165,255,110,254,41,251,70,250,
198,253,147,0,58,1,220,0,195,253,69,251,229,253,166,1,87,2,5,1,253,255,75,1,21,2,164,254,64,252,81,254,
243,254,139,253,202,254,125,0,37,255,187,253,218,255,225,2,202,1,211,254,210,254,14,255,111,254,236,0,13,3,21,1,
190,0,178,3,65,5,193,4,80,2,128,254,149,253,193,255,219,0,115,0,198,0,239,2,183,4,74,2,31,254,39,254,
177,1,135,4,120,4,88,1,107,255,58,2,233,4,229,2,44,0,56,0,152,255,236,252,99,253,178,1,64,3,245,1,
13,3,191,3,238,0,195,255,164,1,103,2,78,2,27,2,199,255,8,254,42,1,239,4,198,2,158,254,74,255,7,1,
140,255,79,255,190,0,199,255,138,255,46,2,83,3,105,2,191,0,160,253,99,252,244,254,96,0,164,254,132,253,58,255,
231,1,235,1,243,254,171,252,127,252,157,252,64,252,96,253,73,1,10,3,71,255,226,253,64,2,105,3,163,0,148,0,
217,0,195,255,186,0,41,1,132,255,121,255,179,0,149,2,118,5,153,4,111,255,69,252,249,251,160,252,213,255,115,3,
71,2,228,253,99,252,0,254,233,253,115,252,101,253,246,254,84,255,33,1,24,2,8,254,96,249,124,249,50,252,219,253,
137,253,46,252,210,251,35,253,200,254,136,255,154,255,207,255,149,255,141,254,187,254,149,0,198,1,224,1,27,2,192,2,
179,3,247,3,239,2,42,2,171,2,126,3,68,3,212,1,114,1,142,2,142,1,208,254,246,254,223,1,53,4,62,4,
108,1,69,254,226,253,245,254,88,0,127,2,26,3,24,1,252,254,36,253,161,250,217,249,14,253,240,0,203,0,226,254,
197,255,255,0,116,255,41,253,92,251,174,251,245,255,121,2,21,255,110,252,226,253,19,255,182,255,210,0,145,255,6,253,
237,253,226,0,159,0,224,254,132,0,204,1,247,254,5,254,69,0,116,0,114,1,90,4,185,2,100,0,122,2,74,1,
85,253,152,255,9,3,97,2,180,3,206,4,121,0,99,254,78,1,116,0,37,252,180,251,20,254,132,255,135,255,47,253,
181,250,95,252,220,254,194,253,70,253,116,255,105,255,27,254,39,0,246,1,21,255,227,251,18,253,9,0,81,1,194,1,
98,2,124,2,76,2,147,1,188,255,83,255,245,0,139,0,53,254,205,253,182,254,36,255,163,255,122,0,129,1,77,1,
182,255,17,0,105,0,225,252,222,251,239,255,137,0,243,254,97,1,221,1,173,254,247,254,166,0,123,0,51,2,186,2,
87,254,197,252,151,1,42,5,112,4,56,3,87,2,154,1,234,2,47,4,169,1,44,255,17,1,0,3,195,1,235,255,
254,253,12,253,122,255,97,1,220,255,157,255,155,1,67,2,92,2,43,2,205,255,14,255,73,3,139,6,18,4,244,0,
232,0,56,0,127,254,82,255,221,0,5,1,16,2,11,2,109,254,96,252,57,254,95,255,136,255,167,0,145,0,120,255,
21,0,209,0,171,255,95,254,144,253,52,252,212,251,244,253,53,0,9,0,253,253,84,252,99,253,243,255,56,0,89,0,
75,4,155,6,146,2,156,254,75,255,251,0,141,1,173,1,224,0,224,254,75,253,32,255,245,3,183,6,248,5,143,4,
64,3,150,2,105,2,236,255,84,253,178,255,63,4,172,5,59,4,212,1,220,254,173,251,232,250,21,254,150,255,209,252,
231,252,166,254,169,250,81,248,164,253,49,0,207,253,173,254,79,255,171,251,236,250,17,255,74,2,11,3,156,2,84,1,
94,0,54,0,163,255,34,254,245,252,94,253,23,255,222,0,56,1,8,0,71,0,250,2,1,3,58,254,48,251,30,253,
91,254,19,253,163,254,64,2,51,1,17,253,38,252,154,253,99,255,220,2,61,5,77,3,93,0,99,255,241,255,18,2,
196,3,225,1,123,254,241,253,181,255,251,255,171,254,215,254,20,0,21,0,134,255,113,254,236,252,181,254,65,3,196,4,
58,3,119,1,205,254,41,253,86,255,254,1,144,1,206,255,57,255,51,255,157,254,76,255,30,1,61,255,28,251,63,252,
62,0,93,255,48,252,31,253,96,1,51,4,10,3,93,0,4,0,232,0,10,0,224,253,18,252,173,250,96,249,35,250,
148,254,251,1,44,0,28,254,215,255,230,1,45,1,81,253,54,250,58,254,94,4,183,2,117,254,139,254,86,253,215,250,
242,253,36,2,173,0,180,253,13,253,208,252,47,253,214,255,248,2,50,3,240,255,41,252,20,251,6,253,39,0,158,2,
101,3,194,2,51,2,25,2,60,1,180,255,181,254,70,254,44,254,56,254,20,254,181,254,234,255,214,255,224,255,112,1,
147,1,0,0,183,255,68,0,197,0,126,1,98,0,116,253,91,252,87,254,113,1,153,2,241,0,111,0,41,3,227,5,
176,6,169,5,106,3,49,2,223,1,105,1,124,2,22,3,0,1,233,0,165,2,181,0,116,254,118,255,115,255,211,254,
174,0,9,2,31,2,233,2,213,1,101,254,108,253,12,0,65,2,44,2,56,2,173,3,12,4,66,2,112,0,143,255,
80,255,126,255,31,255,39,254,69,254,180,255,40,0,177,254,152,254,23,1,246,0,220,253,210,254,177,1,148,254,121,250,
60,253,120,1,180,0,89,254,126,254,217,255,126,0,76,1,217,2,130,2,182,254,54,251,127,252,36,1,24,3,89,0,
185,253,162,253,190,252,127,250,5,250,93,251,133,252,119,253,219,254,135,255,64,254,57,253,6,255,119,1,213,1,26,1,
61,0,49,255,66,254,109,253,124,253,34,255,103,1,166,3,165,4,115,3,213,2,65,3,195,1,248,0,254,2,237,2,
160,0,118,0,172,0,31,255,176,253,48,253,11,254,175,255,228,255,41,255,38,254,160,252,181,253,103,1,76,2,125,255,
192,251,210,248,177,249,56,254,82,1,225,0,111,254,25,252,234,251,7,253,141,254,174,1,150,3,194,1,117,0,244,0,
165,255,235,253,104,254,214,255,167,1,95,2,215,255,55,254,173,0,83,1,87,254,195,254,249,1,73,1,195,255,100,1,
212,0,145,253,187,253,215,255,117,0,233,1,72,3,141,1,136,255,204,255,153,0,45,1,87,2,57,3,36,2,186,0,
37,2,215,3,118,2,233,1,185,3,51,3,187,1,148,3,34,5,186,2,152,255,141,255,26,2,116,3,235,1,100,0,
139,0,245,0,240,0,27,1,114,2,140,3,225,1,81,1,255,4,74,5,71,255,88,252,61,255,48,1,145,255,149,252,
151,251,4,254,147,255,138,253,11,252,140,253,34,255,174,254,41,254,191,255,84,1,210,0,17,0,120,255,232,254,183,0,
237,2,182,2,122,3,231,4,138,2,221,255,138,1,139,4,146,4,69,0,62,251,197,251,98,0,78,3,72,4,67,3,
230,255,198,254,220,0,43,1,56,255,235,253,206,253,239,254,81,0,212,255,167,254,133,255,25,1,138,0,233,254,143,254,
33,255,8,0,251,0,231,0,235,0,93,1,219,254,19,251,97,251,124,253,249,253,202,254,155,254,145,251,203,249,73,251,
41,253,110,253,159,252,224,253,86,1,107,1,127,254,49,255,233,1,189,0,22,254,90,255,184,2,205,2,107,0,223,255,
211,255,105,255,30,2,207,4,62,3,108,2,18,3,184,0,154,255,137,1,111,0,253,254,79,2,137,4,64,2,61,0,
159,255,102,254,10,254,17,0,212,1,144,0,168,254,25,255,249,255,112,255,124,254,21,254,163,255,170,2,73,3,49,1,
8,0,192,0,197,1,89,1,21,0,124,1,142,4,226,4,132,4,7,6,107,5,60,2,98,1,187,2,164,2,136,1,
76,1,84,0,169,253,241,252,14,255,181,255,35,255,195,255,197,254,158,252,122,253,183,254,115,254,125,0,63,2,73,255,
235,252,61,255,94,1,69,0,199,254,169,255,93,2,242,2,49,255,159,251,94,252,190,254,44,1,213,4,199,4,29,254,
218,249,147,252,24,255,54,255,164,255,43,255,86,255,103,1,105,0,23,253,16,253,81,254,207,253,88,253,193,253,241,254,
21,255,13,252,207,250,213,254,57,1,244,254,30,254,243,255,212,255,206,253,90,254,0,1,169,0,145,254,31,255,119,255,
123,254,18,0,85,0,16,252,115,250,202,252,232,253,169,255,32,2,149,0,209,253,37,254,204,254,44,254,32,254,73,254,
223,253,183,254,97,1,93,2,89,0,92,255,176,0,238,1,8,3,44,3,51,1,152,0,34,2,208,1,215,255,107,254,
138,253,87,254,169,0,40,2,52,2,18,1,128,0,194,1,96,1,90,255,156,0,103,2,174,0,63,0,105,2,16,2,
21,255,102,252,176,251,51,254,88,1,244,0,100,253,211,249,107,249,3,253,174,0,58,0,185,252,24,251,229,253,74,1,
156,1,49,1,144,1,45,1,121,0,22,255,16,252,79,251,154,255,81,4,230,3,101,255,27,253,255,254,49,0,226,255,
101,1,169,2,180,1,109,1,5,2,76,1,175,255,88,255,229,1,133,4,135,3,238,1,157,1,130,255,219,253,50,255,
3,0,120,0,232,1,146,1,151,1,84,4,240,4,214,1,205,253,25,250,183,249,220,252,94,254,231,252,152,250,195,249,
197,252,135,255,206,253,156,252,0,253,14,251,73,251,14,255,108,255,70,254,193,255,112,255,241,253,110,255,69,0,236,255,
165,2,204,4,216,2,239,1,137,3,81,3,45,2,232,2,29,3,1,1,135,254,74,253,109,254,109,1,28,2,211,255,
242,255,88,3,214,4,1,3,11,1,188,0,59,1,59,1,114,0,240,254,209,252,156,251,152,252,150,254,171,255,229,254,
250,253,184,255,123,1,245,254,221,251,201,252,43,255,23,1,1,3,238,2,224,0,143,255,39,255,133,255,12,1,99,1,
193,255,127,255,223,0,23,0,2,254,246,254,255,0,183,255,228,253,58,255,157,1,164,2,1,1,26,253,139,252,28,1,
94,4,160,4,255,4,214,4,137,4,134,4,15,1,212,251,26,251,71,254,65,2,239,5,6,6,237,1,202,254,112,255,
119,1,218,1,211,0,11,1,187,2,113,3,19,2,248,255,191,0,252,4,148,6,6,4,148,3,212,4,46,3,167,1,
49,2,234,0,228,254,221,255,162,1,37,1,204,255,64,255,161,254,24,254,188,255,231,1,94,0,48,253,143,253,122,255,
85,254,192,252,50,255,248,1,16,255,176,249,40,249,192,253,175,2,247,3,119,1,245,255,234,0,26,0,129,254,109,255,
47,0,143,0,49,3,96,5,146,5,244,4,164,2,42,1,243,1,12,0,59,253,59,255,27,2,18,2,96,1,120,0,
67,0,225,0,17,255,186,252,102,253,29,255,7,1,204,1,221,254,223,252,136,254,242,254,24,255,151,1,44,2,26,0,
197,253,166,251,253,252,196,0,129,0,89,254,188,254,136,254,159,253,30,255,167,0,231,255,126,254,69,254,107,255,57,255,
89,252,184,250,158,252,103,255,117,0,221,254,241,251,205,250,122,252,60,255,229,0,176,0,160,255,71,254,195,253,242,255,
0,2,77,0,140,253,5,252,37,252,133,0,26,5,19,3,239,255,80,1,56,1,89,254,125,254,222,255,134,254,208,253,
150,0,125,3,123,3,103,2,93,2,84,2,158,1,217,0,86,0,109,1,174,3,99,3,242,0,226,0,41,3,167,3,
58,1,129,255,211,0,58,1,104,254,188,252,219,252,240,251,115,252,138,254,46,254,198,253,10,0,120,1,172,1,33,2,
68,0,192,252,247,251,42,254,161,0,158,1,10,1,26,0,26,255,13,254,112,254,91,0,90,1,11,0,116,254,66,255,
42,1,232,1,238,2,180,3,145,1,27,0,62,2,27,3,190,1,179,1,80,0,233,252,215,253,62,2,7,3,218,0,
179,255,22,255,151,255,159,1,130,0,127,252,119,253,191,2,239,3,161,1,119,0,180,254,255,252,7,255,168,1,57,1,
31,0,157,255,26,255,195,255,113,0,235,254,6,254,17,0,9,1,100,255,114,255,243,0,98,0,35,0,220,1,253,2,
187,4,64,6,213,2,120,255,184,1,61,2,90,254,65,253,39,255,231,0,7,2,160,255,235,251,210,252,82,254,193,252,
204,253,254,0,72,255,97,250,106,249,14,252,147,252,139,251,81,254,119,2,55,2,35,0,171,255,96,255,144,255,167,0,
203,1,226,3,187,4,125,1,69,254,217,254,86,1,108,3,65,3,2,1,183,255,137,255,38,255,97,255,74,0,94,2,
94,5,191,4,250,255,160,252,202,251,214,251,193,253,87,0,7,1,9,0,105,254,69,253,59,253,144,253,54,254,25,255,
135,255,169,255,8,255,243,253,155,254,236,255,102,255,176,254,77,255,55,0,182,0,101,0,74,0,63,1,39,1,225,255,
96,255,228,254,228,254,33,0,11,0,164,255,101,1,228,1,128,255,93,253,188,253,185,1,97,5,86,3,118,0,226,0,
177,255,143,254,189,1,70,3,52,0,69,253,58,252,20,253,47,254,83,253,109,254,162,1,240,255,254,251,129,252,0,254,
26,254,108,255,58,0,193,255,136,0,8,1,93,255,9,254,143,255,129,3,13,7,66,7,212,3,91,255,4,254,4,1,
30,4,70,4,170,2,50,0,29,254,18,254,79,254,165,253,210,254,22,2,112,3,75,1,139,254,121,253,33,253,209,252,
245,252,151,252,129,252,216,254,172,0,55,255,51,254,15,255,15,255,102,255,197,0,183,255,182,253,149,255,194,2,227,1,
221,254,254,253,130,254,194,254,61,255,3,255,81,254,82,0,102,3,38,3,139,1,219,0,179,254,203,252,231,254,213,1,
249,1,174,1,118,2,91,2,74,1,28,1,162,1,144,1,246,0,209,255,96,254,188,254,129,0,252,255,190,253,14,254,
197,0,41,2,17,1,124,255,177,254,153,253,240,252,2,255,215,0,33,255,67,254,222,0,36,2,48,0,253,253,32,253,
6,254,25,0,17,1,42,0,186,254,18,254,25,254,152,253,64,253,184,254,199,0,126,2,121,4,145,4,246,1,196,0,
3,2,252,1,249,255,148,254,61,255,79,1,192,2,119,2,250,1,105,2,190,2,10,3,241,3,28,3,182,255,177,253,
29,254,123,254,45,255,66,255,3,253,238,252,128,255,124,254,236,252,36,255,89,254,95,250,220,250,10,253,206,252,63,253,
65,254,254,254,97,0,37,0,193,255,5,2,44,2,119,255,179,255,219,1,155,2,150,2,162,1,255,0,41,2,226,2,
148,2,15,1,14,253,18,251,234,253,70,0,90,0,153,255,46,253,200,252,70,0,80,1,21,0,23,2,97,3,254,255,
26,253,246,252,152,252,2,253,95,0,65,3,244,1,237,254,193,253,174,254,114,1,22,4,8,3,65,0,190,255,108,255,
218,253,68,254,187,0,243,1,151,1,39,2,21,4,214,3,154,0,102,255,118,1,242,2,133,3,147,3,177,1,225,255,
171,255,29,255,37,255,133,1,107,3,214,1,142,254,254,253,77,0,241,0,128,0,185,2,1,4,101,1,148,255,37,0,
200,0,6,2,106,3,151,3,63,3,71,2,194,1,83,3,173,3,64,1,67,0,129,1,120,2,172,2,11,1,50,254,
44,254,200,0,245,1,204,0,159,254,252,252,109,253,82,254,22,253,33,252,179,254,110,1,253,255,10,253,82,252,30,253,
215,254,80,0,150,254,115,252,98,254,64,0,112,254,39,253,226,253,160,254,186,0,204,3,115,4,143,3,107,4,241,5,
254,3,188,254,80,252,142,255,87,3,127,3,81,1,106,255,130,255,106,0,160,255,205,254,149,255,127,255,7,255,6,0,
84,255,12,253,7,254,11,0,135,254,144,252,156,252,179,252,68,253,92,254,17,254,245,253,220,254,109,254,13,254,210,254,
165,253,3,252,165,252,114,252,123,252,51,0,234,1,196,254,144,253,43,255,181,255,170,0,207,1,213,0,24,0,127,0,
237,255,78,255,236,255,122,1,147,3,14,4,210,1,59,255,9,254,179,254,158,0,88,1,238,0,142,1,48,2,33,1,
61,255,107,254,101,0,213,2,243,0,59,253,121,253,194,255,45,0,5,0,22,0,205,254,81,253,50,254,238,255,93,255,
104,254,235,255,215,0,136,255,202,255,204,0,137,254,48,252,247,253,26,1,58,3,133,5,64,6,40,3,189,255,108,255,
49,0,239,0,190,1,198,255,243,252,166,254,221,0,130,255,87,0,218,2,69,0,135,252,207,252,98,253,90,253,215,254,
236,255,217,255,253,255,13,0,104,255,239,253,247,252,144,253,155,253,90,253,242,254,57,255,146,253,207,254,227,0,204,255,
22,255,99,0,14,1,90,1,244,1,125,2,209,2,231,1,119,0,148,255,42,254,41,254,170,0,197,0,119,254,192,254,
202,255,185,254,242,253,179,253,144,252,227,251,208,252,244,254,61,1,101,2,2,2,215,255,29,253,149,252,246,253,187,255,
28,2,121,3,152,2,58,1,158,255,160,254,41,0,195,1,109,2,219,3,172,2,72,255,64,0,88,2,120,0,112,0,
48,3,8,3,79,2,124,2,216,255,74,254,125,1,64,3,126,1,30,1,200,1,11,1,74,1,121,3,97,4,20,3,
8,2,56,2,20,2,163,0,108,255,64,0,147,1,154,0,121,254,62,254,9,0,24,2,131,2,184,0,129,255,80,0,
112,0,59,0,255,1,65,2,215,254,2,253,57,254,211,253,213,252,79,255,252,1,75,1,211,0,141,1,201,255,237,253,
97,255,137,255,204,252,148,252,161,254,216,254,18,254,214,253,155,254,8,1,80,2,232,0,26,0,198,255,81,254,70,255,
172,2,22,3,242,0,80,0,155,0,129,0,209,0,185,0,196,254,66,252,193,251,183,253,50,0,196,0,198,254,15,253,
146,254,227,0,197,0,171,0,186,1,83,0,37,254,201,255,169,1,21,0,119,255,95,1,8,2,163,1,94,1,6,0,
12,255,19,255,77,254,62,255,156,2,122,2,122,255,60,0,230,2,161,2,14,1,50,0,35,0,162,0,143,255,46,253,
161,252,101,253,254,253,85,255,42,0,245,254,42,254,147,255,248,0,5,0,7,254,115,253,99,253,16,253,208,254,140,1,
135,1,223,255,204,254,200,253,244,252,167,252,168,253,231,0,232,2,86,1,32,0,39,0,24,255,255,254,113,0,121,0,
42,255,56,254,80,255,145,2,99,3,11,1,157,0,178,0,14,255,172,0,247,3,118,2,216,255,43,0,213,255,186,255,
226,2,10,5,125,3,177,1,120,0,8,255,37,0,121,3,179,3,22,1,186,0,192,1,232,0,166,255,12,255,137,254,
121,255,96,1,151,1,5,0,34,254,231,253,70,0,96,1,104,254,179,251,149,252,132,254,75,255,38,255,137,254,156,254,
72,0,65,1,99,254,201,250,201,252,46,2,7,4,61,3,24,3,196,1,203,255,120,0,31,2,194,1,131,0,253,255,
158,255,253,254,245,254,174,255,49,0,70,0,202,255,189,254,190,254,82,255,239,253,8,253,15,0,127,3,22,3,238,255,
84,253,108,253,171,254,205,254,132,255,235,0,147,0,158,0,41,2,105,1,96,255,137,255,31,0,70,0,88,1,171,1,
174,0,55,0,179,255,74,254,150,253,144,254,180,255,71,255,91,254,59,255,247,0,146,0,26,254,108,253,85,0,111,2,
36,1,93,1,57,4,190,3,196,255,223,253,60,255,252,0,133,0,6,255,39,0,224,1,147,0,231,255,185,1,26,2,
154,1,39,2,60,1,39,255,225,254,206,255,134,0,93,1,248,1,94,1,201,0,161,2,68,4,50,1,83,253,234,253,
245,255,9,1,213,1,15,0,150,252,217,251,139,253,223,255,238,1,112,1,75,255,44,254,94,253,210,252,146,253,244,254,
21,1,49,3,84,3,103,2,86,1,71,0,30,1,122,2,174,1,34,1,155,1,143,0,172,255,128,0,97,0,149,254,
44,253,198,253,10,0,253,0,162,255,255,254,1,0,141,0,185,255,226,253,233,251,136,251,111,253,0,255,211,253,50,253,
104,255,164,255,151,253,131,254,195,255,192,254,106,0,136,2,208,255,73,253,35,254,189,254,243,254,26,255,103,254,24,254,
52,253,57,252,159,254,7,1,157,255,213,254,179,0,11,2,155,1,164,255,90,254,106,255,37,0,244,255,7,0,101,254,
201,252,128,254,149,0,167,1,235,2,64,1,6,253,227,251,47,254,39,0,87,0,94,0,69,2,182,3,19,2,174,255,
20,253,150,250,14,253,95,2,143,2,91,255,0,254,167,253,38,254,210,255,84,0,225,255,147,0,171,2,183,4,216,3,
252,255,50,253,246,252,88,254,36,1,166,2,146,0,132,254,238,255,69,2,43,2,235,0,148,1,87,3,57,3,183,1,
69,1,148,1,133,0,155,254,248,254,37,1,250,0,116,255,180,0,126,2,60,1,74,255,48,255,197,255,18,0,204,0,
142,1,184,255,164,251,26,250,36,252,204,254,20,1,81,1,50,255,72,255,63,1,241,0,32,1,10,3,193,2,127,2,
83,4,127,3,231,0,110,1,211,2,136,2,191,2,29,3,6,1,39,254,97,254,89,0,39,0,107,255,228,255,224,254,
13,254,4,0,74,0,109,254,197,254,210,254,182,253,123,255,200,0,207,254,211,254,135,0,207,255,119,255,21,1,96,1,
228,255,140,254,32,255,239,1,147,3,65,2,172,0,147,255,51,254,51,254,71,255,215,254,36,254,193,255,86,1,192,255,
194,253,59,255,184,1,103,1,43,0,198,0,166,1,66,1,126,0,118,255,111,254,109,255,159,1,126,1,173,255,231,254,
37,254,52,253,107,254,40,0,198,255,38,255,28,255,59,254,114,254,45,1,188,2,57,1,110,0,23,2,160,2,63,1,
118,1,162,2,235,1,240,0,165,0,234,255,84,0,148,0,56,253,1,251,60,254,252,0,61,0,4,0,23,0,164,254,
1,254,7,255,253,255,7,0,202,254,171,253,118,255,70,3,221,4,252,2,70,0,141,254,56,254,160,255,137,0,13,255,
16,255,168,1,170,0,247,252,174,253,15,0,79,255,244,255,103,2,221,0,58,254,91,255,192,255,132,253,74,254,190,1,
128,2,161,1,215,1,159,0,136,253,213,252,92,255,90,1,213,0,158,255,3,0,158,1,184,2,196,2,97,1,127,255,
82,0,170,2,118,1,151,254,78,255,56,1,217,0,178,0,202,0,205,253,204,250,53,253,37,2,42,4,208,3,217,1,
161,253,229,251,166,255,157,2,133,1,232,0,67,1,233,255,156,254,148,254,100,254,220,254,207,0,13,2,0,1,60,255,
247,254,147,255,235,254,119,253,115,253,14,255,74,0,40,0,158,0,89,2,210,1,24,255,110,255,90,2,151,2,102,0,
52,255,211,255,89,1,1,2,22,1,204,255,96,254,54,253,201,253,88,255,245,255,165,255,195,255,35,1,6,2,225,0,
34,0,104,0,88,255,50,255,218,1,20,3,123,1,136,255,179,253,226,253,254,0,24,2,113,255,2,254,163,255,11,1,
60,0,162,254,237,253,171,253,177,253,117,254,224,254,107,255,211,0,146,255,56,252,93,253,11,1,109,255,180,250,38,250,
109,253,79,255,74,254,234,253,162,255,31,0,7,255,248,254,170,254,132,253,128,254,214,0,97,1,23,1,119,1,68,1,
44,0,179,255,28,0,67,0,67,0,208,0,234,0,170,255,1,254,33,253,126,253,155,254,55,0,184,2,224,3,152,1,
222,255,110,1,79,2,91,1,84,1,214,1,241,1,167,1,227,255,245,253,76,254,249,255,57,1,151,1,205,1,194,2,
211,2,117,1,98,1,198,1,93,0,63,255,64,255,56,255,86,255,5,254,151,252,144,255,74,2,241,254,110,252,119,255,
94,1,97,255,247,253,124,254,103,254,140,253,138,254,59,0,85,255,140,254,1,0,66,0,159,0,14,3,29,2,82,254,
110,254,177,0,28,2,192,4,0,6,190,2,174,254,83,253,225,254,173,1,214,2,148,2,116,2,27,1,48,255,159,255,
185,1,220,2,15,2,75,0,167,255,214,255,3,255,15,254,211,253,121,253,4,254,200,255,31,0,180,254,102,254,28,0,
8,2,133,2,81,1,191,255,231,255,105,1,64,1,38,255,18,254,218,254,201,0,25,3,215,2,133,255,3,254,17,0,
242,1,128,1,20,0,161,255,157,255,255,253,236,252,98,255,63,2,135,2,202,1,189,0,241,255,99,0,104,0,15,0,
24,1,232,0,34,254,231,252,230,254,223,0,240,255,222,252,70,251,179,252,19,255,103,0,28,0,221,255,19,1,131,0,
235,253,217,254,164,1,38,1,148,0,120,1,196,0,243,0,220,2,197,2,95,2,73,2,4,255,42,252,164,253,234,254,
245,253,131,253,26,254,196,255,86,1,248,255,90,253,44,253,144,254,49,255,134,254,0,253,65,252,182,253,250,255,65,0,
238,254,104,255,131,1,218,1,51,1,234,1,35,2,186,0,181,255,225,255,216,0,169,1,161,0,200,254,235,254,135,0,
94,1,251,0,38,0,169,255,85,255,152,254,94,254,104,255,9,0,41,255,212,254,91,0,40,1,225,255,105,255,226,255,
114,254,189,253,92,0,12,1,124,254,100,255,242,2,43,2,96,255,104,0,139,2,207,1,93,0,65,0,42,0,166,255,
197,255,250,0,187,2,32,3,248,0,65,255,5,1,181,3,7,4,124,2,2,0,131,253,75,253,118,255,157,1,174,2,
164,2,93,1,57,255,180,252,249,250,239,251,0,255,218,0,0,0,119,254,57,254,82,254,213,253,199,254,63,1,55,1,
236,254,128,255,2,2,54,1,5,255,236,255,145,1,78,1,97,1,191,1,156,0,110,0,27,2,198,1,129,255,32,255,
30,0,70,0,124,0,184,1,163,2,47,1,14,254,84,253,185,255,151,1,157,2,122,3,220,1,229,255,18,1,54,1,
118,254,47,254,33,0,137,0,9,1,60,1,124,254,125,252,17,254,87,255,206,254,147,254,126,254,96,254,88,255,79,0,
128,255,191,253,218,252,89,253,187,254,118,255,225,253,203,251,168,252,140,254,196,253,203,252,33,254,1,255,246,254,237,255,
69,0,186,255,241,0,139,2,163,1,74,255,113,253,53,253,67,255,110,1,231,0,41,255,51,255,74,0,37,0,89,255,
34,255,33,255,229,0,9,5,158,5,63,0,6,253,115,255,240,0,194,255,57,0,220,1,212,1,179,0,10,0,3,0,
141,255,119,254,22,255,221,1,162,3,68,3,186,1,9,255,152,253,20,0,201,2,25,2,22,1,31,1,170,255,173,254,
164,0,12,2,91,1,32,1,126,0,203,254,63,255,89,1,0,2,80,2,214,2,78,1,55,255,208,255,167,1,129,1,
147,255,60,254,117,254,209,255,192,1,41,2,205,255,147,254,233,0,35,2,15,0,172,254,14,255,66,255,156,255,30,0,
204,255,115,255,189,255,65,0,121,1,75,3,148,3,167,1,66,0,224,0,71,1,193,0,210,0,158,0,136,255,9,255,
103,254,121,253,78,254,5,255,16,254,238,254,217,0,30,0,152,255,3,1,219,0,177,255,202,255,186,255,92,255,111,255,
56,255,180,255,82,1,28,2,195,1,139,0,166,254,161,254,202,0,145,1,81,0,125,255,6,0,1,1,194,0,168,255,
0,0,124,0,241,254,39,254,110,255,157,255,195,254,192,254,104,254,243,253,183,254,175,254,70,253,142,253,160,255,216,0,
224,0,35,0,178,254,127,254,121,0,194,1,215,0,116,0,200,1,27,2,145,0,150,255,35,0,13,1,48,1,240,255,
147,254,254,254,124,255,40,254,130,253,182,254,134,255,235,255,0,0,41,254,199,252,130,254,34,0,239,255,67,0,130,0,
133,255,246,254,137,254,162,253,157,254,63,1,246,1,104,0,67,255,25,255,149,254,104,254,6,0,89,1,127,0,253,255,
127,0,251,255,22,0,24,1,181,255,176,254,126,1,146,2,187,255,8,255,134,0,22,0,102,255,121,255,64,254,164,253,
105,255,122,0,95,255,39,254,208,253,23,254,244,254,84,0,248,1,189,2,96,1,90,255,79,255,215,0,216,1,192,1,
248,0,47,0,255,255,193,255,90,255,72,0,171,1,10,1,241,255,46,1,57,3,43,3,17,1,49,255,47,255,190,255,
42,255,168,254,231,254,241,254,225,255,200,1,190,1,57,0,244,255,60,0,91,0,208,0,179,255,229,252,7,252,128,253,
56,254,200,253,13,254,46,255,183,255,74,255,253,254,37,255,206,255,214,1,36,4,47,4,184,2,65,2,112,2,127,1,
204,255,114,255,62,0,128,255,41,254,101,255,29,1,130,0,143,255,239,254,43,254,63,255,148,0,127,255,139,255,188,1,
131,1,106,255,169,254,217,254,43,0,228,1,28,1,213,255,246,0,144,1,74,0,151,255,23,255,241,253,27,254,38,0,
194,1,253,0,28,255,18,255,84,0,99,0,217,255,140,255,49,255,153,0,104,3,68,3,92,0,16,255,177,255,121,0,
159,1,92,2,44,1,95,255,67,255,143,0,24,1,13,0,211,254,46,254,113,253,99,253,87,255,83,1,213,0,144,255,
197,255,43,0,22,0,255,0,200,1,96,0,211,254,40,255,77,255,34,254,145,253,56,254,83,255,202,0,187,1,255,0,
179,255,135,255,114,0,176,1,98,2,176,1,71,0,221,255,178,0,145,1,161,1,55,1,53,1,167,1,228,1,239,1,
188,1,191,0,25,0,30,1,2,2,12,1,226,255,8,0,215,0,115,1,3,1,164,255,117,255,45,1,139,2,88,2,
123,1,231,0,117,1,111,2,53,1,150,254,222,254,81,1,233,0,76,254,244,253,88,255,165,255,145,255,45,0,77,0,
92,255,77,254,104,254,73,0,74,2,165,1,240,254,20,254,79,0,50,2,110,1,1,0,243,255,203,0,118,1,223,0,
237,254,29,254,198,255,14,1,236,255,68,254,179,253,243,253,76,255,137,1,106,2,255,0,106,255,16,255,95,255,110,0,
245,1,103,2,26,2,6,2,19,1,233,255,229,0,78,2,64,1,118,255,56,255,117,255,31,255,32,255,38,0,44,1,
5,1,23,0,241,254,241,253,185,254,2,1,49,1,212,254,234,253,146,255,169,0,152,255,152,254,138,255,165,0,104,0,
84,0,57,0,195,254,90,254,92,0,216,1,166,1,160,0,201,254,216,253,28,255,70,0,218,255,206,254,48,254,3,255,
113,0,66,0,176,254,149,252,178,250,187,251,241,254,215,255,247,254,209,254,83,254,123,254,81,0,39,0,232,253,183,253,
211,254,35,255,110,255,228,254,178,253,174,254,199,0,53,1,14,1,226,0,172,255,71,255,224,0,101,1,163,255,229,254,
240,255,82,255,106,253,70,254,107,0,205,255,200,254,36,0,66,1,142,1,172,2,99,2,22,0,247,255,98,2,25,3,
96,1,42,0,98,0,92,0,183,255,28,0,127,1,216,1,217,0,193,255,107,255,22,0,135,0,18,0,176,0,212,1,
24,0,74,253,128,253,69,255,47,0,151,0,17,0,50,255,144,255,82,255,157,253,116,253,95,254,139,253,199,252,234,253,
246,254,247,254,88,254,97,253,220,253,210,255,100,0,214,255,50,0,106,0,148,0,51,2,189,2,156,0,150,255,190,0,
155,0,212,254,20,254,49,255,204,0,17,1,84,0,55,0,206,255,160,254,0,255,22,0,171,255,47,0,213,1,159,0,
196,254,104,0,133,1,66,255,102,254,74,0,209,0,222,255,34,0,188,0,7,0,117,255,211,255,23,255,70,253,141,253,
53,0,71,2,128,2,28,1,221,254,65,254,62,0,33,2,92,2,56,2,227,1,129,0,121,255,123,0,106,1,250,255,
249,254,121,0,23,1,225,255,181,255,125,255,40,254,210,254,95,0,19,255,137,253,146,254,136,255,37,255,21,255,240,255,
187,0,210,255,74,254,66,255,130,0,143,254,113,253,17,0,11,2,112,1,35,0,129,254,70,254,164,0,194,1,250,255,
219,254,82,255,128,255,154,255,74,0,198,0,50,0,153,254,138,253,132,254,88,0,213,0,249,255,62,255,126,255,96,0,
230,0,128,0,209,255,1,0,79,1,188,2,25,3,97,2,201,1,103,1,181,255,17,254,178,255,26,2,38,1,209,255,
163,0,62,0,95,255,52,1,2,2,233,255,189,255,80,1,43,1,47,1,166,1,196,255,92,254,129,0,62,2,246,0,
144,255,79,255,188,254,31,254,130,254,46,255,165,255,144,0,247,0,200,255,134,255,107,1,234,1,85,0,55,0,29,1,
100,0,126,255,225,255,36,0,248,255,240,255,140,255,59,255,22,0,32,1,141,0,240,254,130,254,228,255,148,1,45,2,
202,1,111,1,84,1,208,0,157,0,66,1,109,0,114,254,212,255,56,3,133,2,66,255,118,254,192,254,53,254,66,254,
191,254,86,255,57,0,35,255,160,252,60,253,206,255,160,255,73,254,181,254,254,254,91,254,121,254,247,254,122,255,193,0,
129,1,245,0,250,0,107,1,157,0,58,0,203,1,160,2,3,1,183,255,203,0,29,2,54,1,62,255,134,254,209,254,
53,255,37,0,22,1,198,0,209,255,80,255,105,255,18,0,139,0,26,0,95,255,210,254,151,254,77,255,42,0,176,255,
131,254,249,253,129,254,154,255,105,255,225,253,195,253,193,254,77,254,217,253,20,255,253,255,14,0,132,0,122,0,76,255,
71,254,39,254,197,254,230,255,66,1,37,2,120,1,84,0,13,1,246,1,174,0,0,0,206,1,50,3,243,2,50,2,
123,1,224,1,207,2,18,2,228,0,251,0,177,0,228,255,207,255,210,255,129,0,210,1,190,0,105,254,48,255,134,1,
109,1,106,255,223,253,74,254,39,0,201,0,226,255,173,255,43,0,94,0,63,0,37,255,152,253,220,253,199,255,195,0,
20,0,239,255,139,1,14,2,218,255,116,254,16,255,198,254,104,254,206,255,150,0,8,0,192,255,210,254,139,253,32,254,
64,255,6,255,193,254,102,255,77,0,163,0,252,255,137,255,76,0,232,0,182,0,233,0,90,1,189,0,84,255,42,255,
239,0,215,1,131,0,123,0,168,2,217,2,232,0,87,0,82,0,179,255,10,1,102,3,218,2,24,1,128,1,246,1,
222,0,188,0,93,1,95,0,101,255,145,0,53,2,170,2,244,1,98,0,105,255,201,255,165,255,120,254,38,254,155,254,
107,254,101,254,88,255,97,255,171,253,19,253,247,254,81,0,167,255,37,255,79,255,77,255,252,255,230,0,107,0,236,255,
159,0,112,0,47,255,70,255,19,0,143,255,42,255,121,0,122,1,134,0,75,255,108,255,51,0,29,0,166,254,139,253,
237,254,70,1,198,1,58,1,253,0,28,0,24,255,132,255,157,0,100,1,195,1,227,0,40,255,124,254,249,254,163,255,
68,0,107,0,31,0,19,0,180,255,121,254,172,253,96,254,33,0,46,1,10,0,142,254,69,255,16,0,212,254,145,254,
127,0,57,1,6,0,104,255,255,255,239,0,5,1,105,255,111,254,56,0,83,1,245,254,45,253,29,255,129,1,183,1,
18,1,84,0,180,255,147,0,42,2,198,1,224,255,30,255,175,255,209,255,7,255,230,254,75,0,212,0,79,255,231,254,
78,0,90,0,155,255,11,0,163,255,55,254,149,254,194,255,190,255,1,0,3,1,228,0,117,255,175,254,179,255,196,0,
10,0,55,255,38,0,136,1,169,1,249,255,251,253,227,254,78,1,14,1,42,0,85,1,120,1,144,0,164,1,92,2,
37,1,246,0,62,1,37,0,1,0,56,1,45,1,127,0,253,0,98,1,109,0,98,255,48,255,69,255,47,0,28,2,
2,2,159,255,130,255,27,1,9,0,184,254,251,255,95,0,250,255,228,1,195,2,18,0,46,254,203,254,97,255,163,255,
170,255,172,254,241,253,72,254,23,254,88,253,28,254,57,0,244,0,141,255,170,254,161,255,93,0,228,255,210,255,99,0,
77,0,196,255,194,255,27,0,66,0,89,0,147,0,166,0,195,0,140,1,19,2,229,0,114,255,209,255,254,0,159,1,
60,2,144,2,201,1,181,0,51,0,120,0,130,1,196,1,114,0,35,0,97,1,220,0,18,255,127,255,189,0,32,0,
87,255,143,255,119,255,63,255,149,255,211,255,170,255,49,255,23,255,49,0,182,0,28,255,47,254,73,255,150,255,255,254,
229,255,23,1,133,0,116,255,199,255,253,0,29,1,222,255,48,255,129,255,154,255,176,255,138,255,222,253,86,252,95,253,
77,255,180,255,53,255,237,254,211,254,10,255,223,255,197,0,25,1,75,1,152,1,20,1,205,255,34,255,138,255,151,0,
132,1,89,1,107,0,131,255,124,254,39,254,13,255,89,255,194,254,6,255,111,255,232,254,178,254,53,255,213,255,133,0,
183,0,29,0,21,255,0,254,134,254,184,0,0,1,108,255,221,255,200,0,24,255,199,253,254,254,108,0,83,1,200,1,
160,0,6,255,226,254,132,255,115,0,197,1,237,1,145,0,201,255,57,0,155,0,65,0,39,255,239,253,24,254,158,255,
137,0,116,0,123,0,21,0,19,255,160,255,126,1,201,1,41,1,144,1,34,1,112,255,71,255,233,255,52,255,39,255,
108,0,108,0,213,255,210,0,171,1,195,0,206,255,211,255,150,255,182,254,95,254,170,254,85,254,113,253,49,253,219,253,
48,255,71,0,226,255,49,255,240,255,200,0,189,0,221,0,192,0,162,255,149,254,179,254,20,0,253,0,76,255,60,253,
26,254,204,255,170,255,10,255,58,255,70,0,171,1,198,1,101,0,29,255,162,254,106,255,36,1,222,1,73,1,114,0,
86,255,179,254,80,255,35,0,179,0,240,0,43,0,86,255,170,255,157,0,156,1,153,1,243,255,20,255,111,0,249,1,
110,2,6,2,66,1,84,1,178,1,12,1,191,0,219,0,73,255,179,253,142,254,197,255,155,255,88,255,69,255,28,255,
163,255,25,0,244,254,167,253,99,254,213,255,244,255,150,255,157,255,63,255,170,254,13,255,73,0,170,0,83,255,108,254,
168,255,172,0,27,0,236,255,205,255,159,254,106,254,28,255,65,254,44,253,217,253,169,254,126,254,130,254,153,255,26,1,
47,1,162,255,190,254,75,255,223,255,45,0,203,0,91,1,55,1,228,0,146,1,95,2,82,1,243,255,242,0,93,2,
109,1,252,255,70,0,213,0,100,0,107,0,112,1,196,1,61,1,3,1,125,0,150,255,222,255,116,0,139,255,201,254,
117,255,172,255,241,254,212,254,53,255,87,255,194,255,8,0,33,255,11,254,146,253,184,252,21,252,199,252,94,253,170,253,
6,255,143,255,111,254,193,254,3,0,47,255,40,254,228,254,104,255,113,255,59,0,150,0,176,255,30,255,42,0,227,1,
49,2,225,0,46,0,253,0,112,1,141,0,196,255,111,255,92,254,32,254,120,0,0,2,160,0,182,255,246,255,175,255,
144,0,115,2,171,2,8,2,125,1,132,0,60,0,219,255,161,254,196,255,42,2,89,1,237,255,203,0,144,0,231,254,
231,254,207,255,32,0,137,0,197,0,244,255,54,255,73,0,117,1,17,0,199,254,82,0,108,1,204,0,208,0,35,0,
87,254,215,254,227,0,143,1,164,1,170,1,22,1,186,0,134,0,8,0,214,255,189,255,118,255,117,255,148,255,197,255,
15,0,11,0,16,0,81,0,127,0,227,0,171,0,53,255,252,254,196,0,65,1,243,255,1,0,203,1,160,2,165,1,
205,0,39,1,66,1,127,0,36,0,141,0,206,0,81,0,189,255,100,0,146,1,51,1,19,0,32,0,117,0,226,255,
11,255,169,254,250,254,148,255,178,255,185,255,32,0,32,0,145,255,94,255,194,255,64,0,124,0,16,0,239,254,129,254,
183,255,139,0,210,255,244,255,82,1,78,1,43,0,162,255,162,255,71,0,193,0,131,255,50,254,142,254,26,255,19,255,
231,254,78,254,211,253,224,253,203,253,174,253,2,254,34,255,172,0,129,0,208,254,161,254,119,255,67,255,28,255,58,255,
211,254,38,255,12,0,90,0,223,0,51,1,107,0,12,0,67,0,133,255,187,254,49,255,210,255,121,255,204,254,232,254,
102,255,75,255,1,255,21,255,145,255,173,0,78,1,137,0,7,0,144,0,180,0,49,0,154,255,41,255,34,255,69,255,
183,255,129,0,60,0,108,255,234,255,63,0,158,255,75,0,157,1,77,1,111,0,140,0,71,1,79,1,236,255,64,255,
181,0,146,1,168,0,16,0,63,0,167,0,42,1,3,1,45,0,111,255,62,255,197,255,215,255,93,255,161,0,89,2,
139,1,70,0,30,0,83,255,9,255,125,0,166,1,229,1,94,1,232,255,214,255,103,1,47,1,188,255,43,0,72,1,
32,1,14,1,141,1,234,0,200,255,72,0,252,0,36,0,7,0,19,1,225,0,188,0,121,1,54,0,78,254,20,255,
57,0,246,255,14,0,10,0,177,255,195,0,155,1,38,0,245,254,1,0,60,1,12,1,41,0,83,255,255,254,185,255,
157,0,94,0,72,0,104,1,92,1,91,255,120,254,121,255,20,0,15,0,57,0,178,255,229,254,200,255,22,1,87,0,
135,255,154,0,14,1,70,0,131,0,246,0,166,0,217,0,202,0,243,255,46,0,208,0,65,0,127,255,42,255,162,255,
71,1,207,1,76,0,148,255,132,0,64,1,233,0,227,255,35,255,192,254,109,254,104,255,2,1,203,0,42,0,113,0,
180,255,8,255,6,0,50,0,97,255,140,255,128,255,224,254,28,255,156,255,204,255,216,255,100,255,95,255,83,0,202,0,
137,0,187,0,169,1,136,2,39,2,12,1,190,0,124,0,193,255,195,255,246,255,243,255,205,0,40,1,221,255,216,254,
163,254,123,254,13,255,54,0,1,1,54,1,191,0,134,0,101,1,219,1,198,0,105,255,50,255,57,0,13,1,190,0,
86,0,13,0,152,255,74,0,121,1,165,0,223,254,127,254,46,255,231,255,213,255,213,254,62,254,30,254,181,253,44,254,
118,255,149,255,227,254,210,254,6,255,159,255,81,1,141,2,144,1,234,255,185,255,19,0,201,255,138,255,120,255,49,255,
36,255,83,255,205,255,172,0,158,0,230,255,77,0,151,0,19,0,18,1,46,2,145,0,207,254,27,255,158,255,189,255,
222,255,121,255,237,254,107,254,188,253,230,253,254,254,167,255,172,255,112,255,28,255,82,255,7,0,106,0,144,0,180,0,
57,0,109,255,212,255,2,1,252,0,150,0,92,1,52,1,111,255,64,255,126,0,105,0,250,255,54,0,162,255,8,255,
160,255,152,255,164,254,29,255,160,0,184,0,219,255,231,255,104,0,111,0,67,0,152,255,162,254,204,254,194,255,109,0,
216,0,23,0,113,254,207,254,166,0,201,0,200,255,63,255,55,255,61,0,105,1,29,1,107,0,44,0,18,0,210,0,
171,1,30,1,52,0,247,255,133,0,38,2,32,3,8,2,237,0,51,1,158,1,45,1,3,0,115,255,89,0,55,1,
26,1,232,0,225,0,212,0,122,0,155,255,123,255,119,0,189,0,248,255,240,254,1,254,88,254,71,255,154,254,206,253,
198,254,192,255,159,255,231,254,58,254,25,255,161,0,54,0,103,255,4,0,247,255,13,255,44,255,213,255,76,0,141,0,
6,0,106,255,147,255,173,255,159,255,193,255,105,255,16,255,150,255,253,255,210,255,59,0,11,1,168,0,54,255,232,254,
67,0,221,0,253,255,219,255,143,0,83,0,254,255,60,0,98,255,121,254,191,255,242,0,74,0,67,0,228,0,247,255,
24,255,22,0,114,1,11,2,147,1,72,0,81,0,166,1,89,1,238,255,189,255,239,255,155,255,129,255,134,255,140,255,
189,255,151,255,94,255,174,255,211,255,120,255,111,255,249,255,116,0,84,0,206,255,120,255,101,255,137,255,223,255,40,0,
153,0,249,0,32,0,217,254,247,254,143,255,106,255,138,255,25,0,37,0,217,255,174,255,232,255,170,0,251,0,254,255,
215,254,245,254,213,255,233,255,16,255,222,254,223,255,156,0,30,0,85,255,119,255,1,0,181,255,28,255,102,255,5,0,
133,0,35,1,214,0,121,255,28,255,73,0,162,1,135,2,140,2,108,1,57,0,26,0,181,0,152,0,124,255,105,255,
203,0,243,0,177,255,116,255,222,255,203,255,77,0,238,0,55,0,156,255,79,0,194,0,186,0,95,1,139,1,67,0,
102,255,125,255,39,255,114,255,252,0,224,0,50,255,108,255,150,0,18,0,119,255,160,255,63,255,119,255,153,0,6,0,
34,254,193,253,149,254,51,255,1,0,220,0,133,0,51,255,113,254,148,254,186,254,226,254,70,255,242,254,238,253,169,253,
23,254,56,254,95,254,242,254,209,255,223,0,36,1,27,0,132,255,104,0,60,1,254,0,108,0,45,0,107,0,22,1,
133,1,20,1,114,0,220,0,176,1,53,1,12,0,215,255,231,255,134,255,176,255,6,0,158,255,149,255,90,0,165,0,
96,0,27,0,208,255,244,255,102,0,87,0,98,0,6,1,17,1,62,0,146,255,75,255,39,255,34,255,59,255,103,255,
81,255,241,254,242,254,71,255,104,255,193,255,114,0,183,0,150,0,75,0,108,255,164,254,28,255,5,0,37,0,106,0,
71,1,250,0,196,255,30,0,28,1,151,0,129,0,140,1,212,0,165,255,250,0,167,1,116,255,110,254,247,255,241,0,
181,0,76,0,213,255,208,255,54,0,31,0,170,255,79,255,52,255,145,255,226,255,213,255,20,0,60,0,209,255,230,255,
69,0,121,255,94,254,161,254,226,255,254,0,53,1,183,0,181,0,32,1,197,0,20,0,30,0,166,0,90,1,209,1,
38,1,201,255,39,255,108,255,197,255,199,255,178,255,185,255,165,255,230,255,222,0,56,1,116,0,61,0,111,0,193,255,
168,255,218,0,232,0,135,255,56,255,66,0,151,0,84,255,3,254,114,254,131,255,27,255,109,254,71,255,30,0,93,255,
77,254,135,254,217,255,199,0,100,0,208,255,67,0,216,0,172,0,61,0,248,255,55,0,249,0,188,0,91,255,119,255,
38,1,50,1,169,255,89,255,31,0,103,0,51,0,196,255,129,255,237,255,26,0,125,255,55,255,139,255,217,255,6,0,
222,255,181,255,49,0,107,0,220,255,182,255,7,0,26,0,103,0,217,0,192,0,78,0,133,255,160,254,183,254,109,255,
121,255,66,255,82,255,35,255,14,255,180,255,53,0,217,255,169,255,42,0,13,0,55,255,162,255,42,1,59,1,194,255,
20,255,124,255,106,255,198,254,234,254,234,255,88,0,67,0,217,0,14,1,224,255,83,255,28,0,58,0,206,255,224,255,
71,255,79,254,255,254,67,0,18,0,114,255,174,255,48,0,69,0,180,255,228,254,213,254,115,255,243,255,116,0,222,0,
153,0,13,0,233,255,112,0,159,1,255,1,97,0,201,254,242,254,149,255,11,0,145,0,83,0,202,255,21,0,40,0,
216,255,105,0,203,0,18,0,200,255,12,0,218,255,187,255,113,255,86,254,16,254,87,255,42,0,244,255,6,0,140,0,
222,0,166,0,0,0,232,255,231,0,158,1,1,1,228,255,47,255,72,255,51,0,182,0,50,0,42,0,196,0,93,0,
153,255,199,255,156,255,207,254,11,255,197,255,133,255,1,255,230,254,28,255,35,0,50,1,174,0,165,255,255,255,234,0,
239,0,52,0,102,255,82,255,36,0,85,0,110,255,27,255,74,255,198,254,172,254,102,255,93,255,58,255,67,0,247,0,
182,0,123,0,247,255,82,255,92,255,141,255,245,255,137,0,209,255,18,255,68,0,239,0,5,0,59,0,212,0,24,0,
37,0,24,1,211,0,149,0,58,1,247,0,33,0,24,0,115,0,247,0,104,1,229,0,35,0,64,0,163,0,160,0,
100,0,83,0,190,0,238,0,6,0,254,254,245,254,146,255,43,0,13,0,35,255,218,254,77,255,217,254,99,254,156,255,
140,0,132,255,178,254,119,255,56,0,249,255,126,255,176,255,142,0,12,1,158,0,57,0,154,0,31,1,22,1,186,0,
163,0,207,0,237,0,7,1,242,0,132,0,94,0,139,0,82,0,77,0,255,0,13,1,16,0,78,255,15,255,236,254,
239,254,70,255,74,0,62,1,106,0,133,254,212,253,101,254,85,255,37,0,255,255,158,255,67,0,142,0,195,255,175,255,
38,0,219,255,229,255,193,0,32,1,211,0,5,0,218,254,198,254,228,255,56,0,194,255,239,255,72,0,255,255,146,255,
83,255,20,255,38,255,184,255,197,255,130,254,183,253,25,255,159,0,141,0,176,0,91,1,226,0,67,0,93,0,218,255,
160,255,193,0,254,0,30,0,77,0,86,0,33,255,36,255,142,0,225,0,89,0,98,0,176,0,228,0,239,0,132,0,
254,255,31,0,189,0,172,0,152,255,32,255,251,255,67,0,64,255,149,254,207,254,71,255,161,255,81,255,202,254,95,255,
97,0,104,0,208,255,244,254,50,254,209,254,35,0,30,0,141,255,5,0,158,0,150,0,194,0,24,1,191,0,15,0,
6,0,171,0,31,1,219,0,250,255,247,254,170,254,62,255,209,255,35,0,86,0,165,255,150,254,242,254,37,0,128,0,
91,0,28,0,185,255,19,0,155,0,11,0,204,255,167,0,156,0,201,255,251,255,104,0,35,0,8,0,224,255,25,255,
216,254,199,255,166,0,97,0,218,255,93,0,214,0,222,255,36,255,220,255,50,0,244,255,151,0,12,1,95,0,255,255,
98,0,220,0,248,0,239,255,178,254,83,255,141,0,111,0,67,0,108,0,174,255,47,255,239,255,138,0,170,0,161,0,
199,255,255,254,146,255,27,0,112,255,211,254,29,255,182,255,226,255,88,255,200,254,35,255,2,0,119,0,152,0,197,0,
182,0,59,0,208,255,184,255,173,255,199,255,67,0,143,0,88,0,68,0,122,0,189,0,3,1,156,0,100,255,234,254,
148,255,26,0,88,0,127,0,232,255,35,255,36,255,64,255,35,255,89,255,130,255,76,255,40,255,10,255,234,254,47,255,
212,255,155,0,21,1,219,0,168,0,3,1,242,0,126,0,170,0,230,0,174,0,200,0,3,1,240,0,36,1,61,1,
157,0,26,0,253,255,192,255,214,255,67,0,52,0,16,0,114,0,176,0,89,0,224,255,222,255,102,0,167,0,72,0,
53,0,124,0,86,0,45,0,71,0,252,255,173,255,199,255,113,255,238,254,80,255,191,255,76,255,9,255,166,255,73,0,
109,0,43,0,137,255,34,255,181,255,133,0,110,0,53,0,221,0,95,1,23,1,24,1,82,1,237,0,161,0,167,0,
9,0,113,255,213,255,26,0,187,255,189,255,35,0,55,0,232,255,93,255,10,255,60,255,130,255,193,255,243,255,121,255,
228,254,84,255,213,255,148,255,173,255,43,0,11,0,233,255,100,0,194,0,169,0,64,0,188,255,178,255,223,255,157,255,
204,255,200,0,6,1,101,0,122,0,32,1,27,1,133,0,239,255,145,255,191,255,38,0,242,255,140,255,215,255,32,0,
141,255,41,255,227,255,158,0,104,0,217,255,119,255,62,255,55,255,18,255,195,254,7,255,208,255,59,0,96,0,144,0,
67,0,154,255,143,255,30,0,131,0,137,0,59,0,168,255,110,255,5,0,160,0,129,0,124,0,255,0,228,0,60,0,
88,0,139,0,243,255,224,255,93,0,205,255,49,255,17,0,237,0,200,0,184,0,176,0,10,0,82,255,1,255,81,255,
55,0,131,0,247,255,244,255,30,0,52,255,99,254,205,254,81,255,113,255,208,255,17,0,204,255,142,255,194,255,106,0,
6,1,191,0,253,255,3,0,149,0,190,0,201,0,241,0,125,0,173,255,211,255,210,0,17,1,87,0,33,0,208,0,
19,1,112,0,214,255,203,255,40,0,166,0,154,0,192,255,243,254,169,254,145,254,237,254,149,255,94,255,155,254,210,254,
143,255,157,255,143,255,191,255,157,255,195,255,118,0,93,0,153,255,149,255,184,255,80,255,136,255,56,0,28,0,242,255,
42,0,118,255,140,254,73,255,110,0,41,0,174,255,46,0,172,0,114,0,246,255,148,255,171,255,136,0,97,1,65,1,
163,0,83,0,18,0,237,255,128,0,1,1,115,0,230,255,25,0,254,255,152,255,220,255,32,0,217,255,227,255,31,0,
233,255,212,255,231,255,121,255,95,255,33,0,75,0,119,255,25,255,116,255,168,255,196,255,34,0,124,0,147,0,106,0,
34,0,251,255,253,255,14,0,78,0,140,0,119,0,127,0,205,0,179,0,79,0,96,0,167,0,219,0,40,1,2,1,
112,0,165,0,29,1,82,0,73,255,90,255,100,255,214,254,230,254,127,255,106,255,191,254,112,254,214,254,124,255,150,255,
48,255,96,255,82,0,182,0,6,0,122,255,207,255,42,0,7,0,2,0,37,0,13,0,55,0,187,0,169,0,14,0,
212,255,209,255,156,255,162,255,230,255,239,255,193,255,112,255,38,255,116,255,49,0,104,0,238,255,86,255,252,254,22,255,
127,255,173,255,162,255,177,255,202,255,2,0,99,0,74,0,170,255,142,255,31,0,104,0,35,0,202,255,179,255,25,0,
199,0,237,0,91,0,237,255,55,0,226,0,79,1,17,1,72,0,196,255,222,255,249,255,217,255,250,255,21,0,156,255,
79,255,250,255,213,0,218,0,49,0,185,255,241,255,76,0,18,0,190,255,253,255,81,0,68,0,45,0,47,0,38,0,
0,0,173,255,114,255,156,255,207,255,216,255,31,0,93,0,182,255,158,254,168,254,212,255,42,0,77,255,73,255,57,0,
253,255,212,254,124,254,168,254,231,254,169,255,22,0,181,255,203,255,103,0,116,0,75,0,106,0,100,0,62,0,77,0,
149,0,215,0,121,0,168,255,174,255,125,0,188,0,113,0,108,0,165,0,233,0,32,1,15,1,233,0,226,0,197,0,
170,0,150,0,81,0,71,0,187,0,236,0,131,0,10,0,194,255,204,255,77,0,185,0,158,0,64,0,187,255,38,255,
24,255,173,255,55,0,32,0,85,255,184,254,57,255,242,255,147,255,7,255,91,255,133,255,27,255,63,255,196,255,162,255,
113,255,224,255,54,0,54,0,112,0,113,0,197,255,119,255,236,255,247,255,121,255,129,255,204,255,169,255,167,255,4,0,
48,0,71,0,98,0,18,0,184,255,189,255,121,255,253,254,87,255,29,0,16,0,170,255,16,0,201,0,193,0,24,0,
182,255,22,0,214,0,252,0,93,0,25,0,115,0,59,0,160,255,228,255,110,0,67,0,42,0,121,0,132,0,112,0,
114,0,45,0,246,255,30,0,83,0,137,0,142,0,10,0,165,255,199,255,191,255,136,255,165,255,197,255,183,255,200,255,
195,255,134,255,123,255,202,255,55,0,127,0,146,0,162,0,151,0,34,0,164,255,202,255,93,0,172,0,121,0,28,0,
247,255,213,255,145,255,184,255,70,0,96,0,36,0,77,0,150,0,141,0,138,0,141,0,37,0,163,255,174,255,20,0,
46,0,236,255,188,255,204,255,234,255,211,255,133,255,64,255,20,255,245,254,71,255,2,0,44,0,167,255,136,255,189,255,
118,255,69,255,176,255,210,255,133,255,177,255,49,0,74,0,1,0,173,255,186,255,87,0,200,0,149,0,91,0,95,0,
74,0,45,0,41,0,78,0,180,0,199,0,90,0,106,0,199,0,113,0,51,0,157,0,131,0,43,0,138,0,134,0,
185,255,153,255,22,0,68,0,109,0,113,0,236,255,159,255,198,255,187,255,146,255,143,255,134,255,143,255,154,255,118,255,
136,255,236,255,26,0,235,255,168,255,129,255,146,255,196,255,223,255,213,255,196,255,232,255,56,0,67,0,255,255,228,255,
251,255,7,0,9,0,250,255,237,255,11,0,33,0,255,255,216,255,190,255,151,255,133,255,187,255,10,0,238,255,150,255,
220,255,115,0,99,0,44,0,85,0,5,0,124,255,215,255,60,0,212,255,216,255,123,0,88,0,152,255,91,255,135,255,
172,255,220,255,0,0,251,255,243,255,243,255,215,255,150,255,105,255,144,255,233,255,42,0,84,0,90,0,10,0,161,255,
142,255,195,255,10,0,85,0,100,0,27,0,237,255,21,0,26,0,185,255,122,255,213,255,94,0,100,0,18,0,14,0,
67,0,57,0,12,0,245,255,226,255,249,255,74,0,106,0,39,0,225,255,222,255,230,255,204,255,205,255,12,0,36,0,
214,255,127,255,120,255,188,255,14,0,28,0,1,0,226,255,150,255,137,255,51,0,153,0,58,0,60,0,160,0,93,0,
14,0,68,0,35,0,219,255,67,0,172,0,129,0,96,0,100,0,45,0,240,255,19,0,135,0,194,0,103,0,239,255,
204,255,190,255,192,255,244,255,218,255,82,255,33,255,113,255,152,255,119,255,135,255,167,255,125,255,136,255,20,0,67,0,
216,255,208,255,38,0,1,0,192,255,237,255,254,255,214,255,26,0,116,0,33,0,167,255,235,255,95,0,51,0,250,255,
44,0,25,0,214,255,57,0,178,0,112,0,37,0,74,0,85,0,63,0,59,0,9,0,200,255,214,255,16,0,58,0,
69,0,22,0,216,255,203,255,198,255,157,255,136,255,190,255,21,0,49,0,0,0,232,255,20,0,39,0,251,255,231,255,
4,0,12,0,255,255,18,0,36,0,236,255,130,255,92,255,172,255,19,0,53,0,20,0,196,255,120,255,136,255,208,255,
230,255,226,255,243,255,248,255,250,255,12,0,29,0,79,0,124,0,78,0,18,0,17,0,1,0,1,0,43,0,253,255,
161,255,167,255,203,255,241,255,73,0,82,0,255,255,239,255,232,255,182,255,245,255,101,0,59,0,218,255,244,255,72,0,
74,0,1,0,236,255,22,0,15,0,254,255,29,0,5,0,235,255,87,0,151,0,49,0,246,255,28,0,23,0,11,0,
37,0,27,0,233,255,208,255,244,255,53,0,58,0,15,0,242,255,193,255,163,255,238,255,16,0,180,255,151,255,211,255,
211,255,190,255,204,255,199,255,232,255,60,0,56,0,247,255,247,255,3,0,217,255,189,255,207,255,242,255,12,0,14,0,
33,0,78,0,66,0,6,0,16,0,75,0,101,0,95,0,59,0,21,0,39,0,35,0,224,255,220,255,252,255,228,255,
254,255,43,0,188,255,91,255,193,255,22,0,242,255,238,255,252,255,242,255,18,0,41,0,28,0,54,0,66,0,34,0,
61,0,103,0,82,0,82,0,99,0,51,0,13,0,35,0,33,0,14,0,46,0,70,0,21,0,229,255,242,255,244,255,
204,255,198,255,230,255,234,255,220,255,213,255,216,255,7,0,48,0,1,0,197,255,224,255,40,0,72,0,27,0,234,255,
34,0,77,0,224,255,156,255,255,255,48,0,222,255,185,255,232,255,23,0,17,0,186,255,103,255,131,255,203,255,228,255,
230,255,234,255,233,255,245,255,25,0,51,0,28,0,250,255,30,0,104,0,104,0,40,0,13,0,33,0,23,0,207,255,
156,255,199,255,15,0,19,0,236,255,226,255,228,255,186,255,140,255,190,255,31,0,33,0,232,255,226,255,211,255,172,255,
207,255,15,0,23,0,38,0,61,0,25,0,0,0,38,0,62,0,65,0,88,0,86,0,46,0,28,0,34,0,41,0,
52,0,46,0,30,0,56,0,92,0,84,0,70,0,62,0,21,0,253,255,9,0,253,255,253,255,26,0,250,255,222,255,
39,0,73,0,26,0,49,0,102,0,82,0,72,0,62,0,252,255,250,255,42,0,246,255,174,255,203,255,229,255,195,255,
175,255,201,255,242,255,17,0,38,0,46,0,7,0,200,255,179,255,191,255,219,255,14,0,4,0,172,255,150,255,220,255,
27,0,58,0,37,0,205,255,149,255,204,255,40,0,62,0,13,0,246,255,16,0,245,255,181,255,199,255,16,0,51,0,
48,0,16,0,227,255,222,255,253,255,36,0,73,0,51,0,235,255,226,255,33,0,57,0,10,0,233,255,27,0,83,0,
37,0,231,255,5,0,14,0,200,255,189,255,242,255,249,255,234,255,246,255,253,255,2,0,14,0,0,0,240,255,8,0,
26,0,3,0,253,255,32,0,52,0,18,0,223,255,209,255,245,255,32,0,35,0,5,0,227,255,199,255,204,255,234,255,
231,255,198,255,206,255,14,0,77,0,74,0,249,255,156,255,138,255,208,255,39,0,48,0,243,255,200,255,177,255,150,255,
193,255,28,0,39,0,242,255,215,255,217,255,236,255,241,255,219,255,248,255,41,0,4,0,236,255,37,0,24,0,215,255,
239,255,6,0,227,255,233,255,247,255,229,255,12,0,62,0,6,0,183,255,197,255,247,255,245,255,241,255,51,0,96,0,
29,0,218,255,236,255,11,0,49,0,86,0,54,0,40,0,103,0,92,0,4,0,0,0,28,0,253,255,232,255,240,255,
4,0,45,0,35,0,213,255,198,255,2,0,17,0,242,255,215,255,193,255,204,255,247,255,245,255,185,255,147,255,178,255,
255,255,55,0,37,0,248,255,1,0,29,0,3,0,218,255,213,255,220,255,224,255,237,255,242,255,216,255,174,255,174,255,
228,255,251,255,204,255,176,255,187,255,203,255,252,255,22,0,210,255,171,255,228,255,0,0,253,255,27,0,21,0,244,255,
4,0,12,0,1,0,33,0,35,0,241,255,239,255,10,0,19,0,46,0,55,0,6,0,243,255,252,255,210,255,164,255,
180,255,201,255,208,255,254,255,58,0,56,0,11,0,232,255,205,255,207,255,26,0,88,0,36,0,211,255,219,255,9,0,
21,0,32,0,70,0,85,0,44,0,5,0,14,0,22,0,255,255,245,255,3,0,12,0,10,0,11,0,28,0,36,0,
244,255,190,255,208,255,252,255,12,0,26,0,45,0,47,0,40,0,22,0,250,255,221,255,203,255,235,255,37,0,34,0,
253,255,5,0,30,0,49,0,48,0,241,255,194,255,252,255,42,0,255,255,225,255,224,255,225,255,12,0,43,0,252,255,
218,255,255,255,37,0,27,0,3,0,31,0,87,0,53,0,220,255,222,255,20,0,9,0,228,255,214,255,217,255,253,255,
30,0,251,255,209,255,225,255,246,255,246,255,250,255,239,255,217,255,224,255,240,255,235,255,240,255,253,255,235,255,199,255,
196,255,237,255,34,0,40,0,254,255,237,255,0,0,7,0,22,0,39,0,8,0,247,255,29,0,25,0,0,0,59,0,
114,0,73,0,33,0,39,0,36,0,14,0,248,255,251,255,38,0,61,0,38,0,16,0,247,255,212,255,213,255,249,255,
21,0,31,0,12,0,245,255,251,255,250,255,225,255,217,255,227,255,241,255,2,0,253,255,228,255,214,255,216,255,252,255,
63,0,67,0,11,0,16,0,63,0,41,0,244,255,250,255,35,0,39,0,12,0,2,0,7,0,248,255,242,255,19,0,
34,0,255,255,229,255,236,255,232,255,212,255,201,255,205,255,212,255,226,255,235,255,213,255,191,255,207,255,225,255,231,255,
10,0,49,0,38,0,13,0,15,0,24,0,32,0,37,0,29,0,8,0,246,255,246,255,1,0,249,255,235,255,250,255,
10,0,20,0,49,0,59,0,32,0,16,0,7,0,245,255,3,0,37,0,36,0,16,0,4,0,4,0,27,0,43,0,
17,0,248,255,254,255,1,0,243,255,238,255,239,255,224,255,207,255,223,255,255,255,3,0,253,255,250,255,231,255,232,255,
18,0,29,0,254,255,244,255,255,255,5,0,11,0,254,255,224,255,219,255,238,255,2,0,15,0,11,0,253,255,255,255,
5,0,1,0,0,0,252,255,247,255,9,0,34,0,28,0,1,0,252,255,8,0,2,0,247,255,7,0,15,0,245,255,
234,255,252,255,254,255,244,255,253,255,11,0,9,0,249,255,231,255,226,255,235,255,252,255,7,0,253,255,252,255,21,0,
23,0,243,255,236,255,16,0,39,0,38,0,37,0,28,0,4,0,0,0,31,0,42,0,14,0,10,0,36,0,33,0,
13,0,10,0,2,0,1,0,16,0,254,255,223,255,235,255,8,0,23,0,16,0,237,255,221,255,254,255,14,0,253,255,
254,255,255,255,243,255,253,255,15,0,8,0,250,255,242,255,244,255,252,255,254,255,1,0,10,0,11,0,23,0,38,0,
19,0,0,0,12,0,6,0,243,255,0,0,13,0,251,255,234,255,229,255,230,255,244,255,6,0,19,0,22,0,7,0,
253,255,12,0,22,0,13,0,10,0,10,0,3,0,5,0,11,0,254,255,243,255,250,255,242,255,221,255,235,255,15,0,
18,0,0,0,0,0,11,0,19,0,21,0,1,0,241,255,7,0,37,0,41,0,31,0,19,0,3,0,246,255,249,255,
8,0,4,0,229,255,222,255,238,255,231,255,229,255,250,255,248,255,234,255,248,255,3,0,252,255,1,0,3,0,253,255,
10,0,17,0,245,255,218,255,216,255,226,255,243,255,3,0,3,0,249,255,1,0,24,0,20,0,243,255,231,255,246,255,
252,255,255,255,7,0,2,0,250,255,252,255,246,255,246,255,10,0,11,0,243,255,242,255,13,0,27,0,16,0,6,0,
253,255,233,255,235,255,15,0,20,0,239,255,229,255,2,0,13,0,2,0,2,0,15,0,23,0,15,0,252,255,244,255,
247,255,250,255,253,255,3,0,14,0,17,0,5,0,2,0,9,0,6,0,5,0,13,0,5,0,248,255,251,255,251,255,
251,255,255,255,244,255,244,255,10,0,1,0,230,255,241,255,2,0,246,255,242,255,247,255,242,255,241,255,254,255,7,0,
2,0,240,255,241,255,11,0,25,0,11,0,1,0,252,255,251,255,6,0,13,0,6,0,1,0,253,255,250,255,4,0,
11,0,2,0,4,0,18,0,18,0,5,0,250,255,247,255,252,255,6,0,3,0,250,255,1,0,12,0,8,0,0,0,
247,255,236,255,241,255,1,0,1,0,4,0,26,0,28,0,1,0,242,255,246,255,250,255,2,0,11,0,12,0,7,0,
3,0,3,0,2,0,252,255,247,255,244,255,247,255,6,0,9,0,249,255,239,255,239,255,239,255,254,255,9,0,250,255,
244,255,2,0,253,255,245,255,254,255,0,0,255,255,5,0,250,255,242,255,7,0,14,0,0,0,9,0,26,0,11,0,
241,255,236,255,247,255,255,255,252,255,247,255,248,255,249,255,245,255,241,255,241,255,248,255,253,255,250,255,251,255,6,0,
6,0,254,255,255,255,3,0,1,0,2,0,9,0,7,0,246,255,234,255,241,255,252,255,253,255,250,255,250,255,251,255,
254,255,0,0,6,0,13,0,12,0,10,0,13,0,13,0,11,0,6,0,2,0,7,0,17,0,13,0,3,0,254,255,
251,255,250,255,254,255,4,0,8,0,7,0,1,0,3,0,10,0,6,0,254,255,251,255,249,255,251,255,249,255,233,255,
226,255,244,255,255,255,245,255,243,255,253,255,4,0,3,0,2,0,3,0,2,0,250,255,244,255,249,255,254,255,248,255,
241,255,244,255,254,255,5,0,11,0,14,0,8,0,254,255,255,255,5,0,5,0,2,0,255,255,255,255,254,255,247,255,
241,255,244,255,253,255,2,0,255,255,249,255,251,255,1,0,254,255,252,255,2,0,6,0,5,0,6,0,8,0,9,0,
8,0,4,0,5,0,6,0,4,0,1,0,1,0,3,0,8,0,1,0,241,255,239,255,252,255,254,255,249,255,252,255,
0,0,4,0,8,0,6,0,0,0,250,255,248,255,1,0,9,0,8,0,3,0,250,255,241,255,246,255,3,0,5,0,
4,0,5,0,2,0,3,0,5,0,1,0,254,255,254,255,253,255,254,255,2,0,5,0,2,0,252,255,252,255,6,0,
10,0,6,0,10,0,11,0,254,255,251,255,10,0,16,0,8,0,5,0,7,0,7,0,3,0,255,255,1,0,1,0,
252,255,247,255,246,255,246,255,248,255,250,255,250,255,251,255,1,0,5,0,2,0,2,0,8,0,10,0,4,0,252,255,
250,255,254,255,0,0,255,255,255,255,1,0,2,0,1,0,0,0,255,255,9,0,22,0,17,0,4,0,2,0,2,0,
2,0,3,0,254,255,244,255,249,255,2,0,254,255,244,255,243,255,253,255,1,0,251,255,252,255,2,0,252,255,246,255,
254,255,5,0,3,0,0,0,253,255,254,255,7,0,11,0,3,0,251,255,253,255,4,0,8,0,4,0,3,0,5,0,
4,0,5,0,7,0,0,0,251,255,253,255,251,255,252,255,2,0,252,255,245,255,252,255,254,255,248,255,250,255,2,0,
1,0,247,255,239,255,245,255,4,0,7,0,255,255,254,255,2,0,2,0,0,0,1,0,2,0,1,0,1,0,1,0,
252,255,252,255,5,0,8,0,2,0,2,0,6,0,1,0,254,255,2,0,5,0,5,0,3,0,0,0,255,255,3,0,
5,0,1,0,252,255,251,255,253,255,255,255,253,255,251,255,252,255,253,255,251,255,253,255,3,0,5,0,6,0,7,0,
1,0,247,255,248,255,251,255,255,255,7,0,8,0,251,255,247,255,253,255,2,0,1,0,252,255,247,255,255,255,5,0,
252,255,254,255,10,0,7,0,1,0,12,0,14,0,2,0,255,255,4,0,255,255,250,255,254,255,3,0,2,0,253,255,
249,255,248,255,254,255,3,0,253,255,249,255,253,255,255,255,254,255,255,255,1,0,0,0,251,255,254,255,10,0,14,0,
1,0,252,255,5,0,1,0,248,255,250,255,251,255,251,255,2,0,5,0,255,255,252,255,254,255,254,255,254,255,0,0,
253,255,245,255,245,255,1,0,5,0,0,0,4,0,5,0,254,255,2,0,6,0,250,255,247,255,4,0,6,0,255,255,
255,255,255,255,3,0,7,0,0,0,255,255,6,0,2,0,254,255,4,0,1,0,251,255,3,0,8,0,3,0,0,0,
252,255,249,255,0,0,6,0,4,0,5,0,5,0,255,255,255,255,2,0,254,255,251,255,253,255,254,255,1,0,4,0,
253,255,249,255,3,0,3,0,249,255,251,255,6,0,6,0,4,0,2,0,250,255,247,255,253,255,3,0,8,0,8,0,
0,0,250,255,253,255,3,0,5,0,2,0,1,0,4,0,5,0,4,0,4,0,3,0,4,0,5,0,252,255,245,255,
255,255,1,0,247,255,249,255,1,0,250,255,249,255,3,0,4,0,0,0,0,0,254,255,254,255,0,0,255,255,0,0,
3,0,4,0,3,0,0,0,255,255,4,0,4,0,253,255,253,255,3,0,6,0,8,0,7,0,255,255,250,255,255,255,
4,0,1,0,251,255,252,255,2,0,5,0,3,0,254,255,252,255,1,0,2,0,252,255,254,255,8,0,5,0,253,255,
254,255,255,255,252,255,0,0,3,0,255,255,250,255,249,255,0,0,8,0,5,0,251,255,252,255,2,0,3,0,0,0,
255,255,253,255,250,255,251,255,3,0,11,0,5,0,249,255,246,255,253,255,2,0,1,0,252,255,250,255,254,255,3,0,
3,0,4,0,8,0,8,0,0,0,250,255,248,255,250,255,254,255,2,0,0,0,0,0,3,0,2,0,255,255,254,255,
255,255,1,0,255,255,252,255,3,0,9,0,3,0,255,255,3,0,2,0,255,255,3,0,4,0,4,0,6,0,3,0,
0,0,1,0,2,0,0,0,253,255,247,255,247,255,253,255,255,255,251,255,255,255,6,0,7,0,1,0,254,255,3,0,
2,0,252,255,254,255,0,0,254,255,255,255,1,0,252,255,251,255,2,0,7,0,4,0,0,0,254,255,0,0,0,0,
254,255,254,255,0,0,0,0,255,255,254,255,253,255,254,255,0,0,0,0,0,0,0,0,1,0,3,0,0,0,253,255,
253,255,254,255,0,0,2,0,253,255,250,255,254,255,0,0,0,0,3,0,1,0,250,255,248,255,251,255,255,255,0,0,
254,255,0,0,2,0,251,255,248,255,2,0,3,0,251,255,255,255,3,0,254,255,253,255,1,0,1,0,2,0,6,0,
2,0,254,255,255,255,255,255,252,255,255,255,4,0,0,0,253,255,0,0,255,255,252,255,253,255,1,0,1,0,255,255,
255,255,2,0,1,0,0,0,2,0,1,0,251,255,253,255,2,0,254,255,250,255,255,255,3,0,255,255,254,255,3,0,
4,0,254,255,252,255,2,0,6,0,1,0,255,255,3,0,4,0,4,0,2,0,1,0,3,0,1,0,254,255,3,0,
7,0,1,0,0,0,3,0,2,0,3,0,3,0,254,255,254,255,5,0,4,0,2,0,3,0,1,0,1,0,5,0,
1,0,253,255,0,0,1,0,0,0,2,0,3,0,4,0,2,0,254,255,0,0,5,0,2,0,252,255,255,255,4,0,
3,0,255,255,0,0,3,0,0,0,251,255,253,255,2,0,255,255,254,255,1,0,2,0,0,0,1,0,1,0,255,255,
255,255,1,0,2,0,254,255,252,255,0,0,1,0,255,255,255,255,1,0,254,255,251,255,253,255,254,255,253,255,1,0,
4,0,2,0,1,0,2,0,254,255,254,255,2,0,255,255,253,255,2,0,1,0,251,255,252,255,2,0,1,0,255,255,
1,0,0,0,253,255,250,255,252,255,2,0,3,0,1,0,1,0,255,255,252,255,255,255,3,0,0,0,253,255,254,255,
254,255,255,255,1,0,0,0,255,255,255,255,255,255,255,255,255,255,254,255,255,255,255,255,0,0,0,0,254,255,255,255,
1,0,0,0,254,255,255,255,2,0,4,0,1,0,253,255,254,255,1,0,1,0,0,0,1,0,0,0,255,255,1,0,
2,0,0,0,1,0,3,0,3,0,0,0,254,255,255,255,255,255,252,255,251,255,254,255,254,255,255,255,0,0,0,0,
2,0,3,0,2,0,2,0,2,0,0,0,1,0,1,0,255,255,1,0,4,0,1,0,255,255,255,255,
};

864
src/client/sound/data/sand2.pcm Executable file
View File

@@ -0,0 +1,864 @@
unsigned char PCM_sand2[27580] = {
1,0,0,0,2,0,0,0,68,172,0,0,214,53,0,0,237,255,9,0,46,0,246,255,210,255,32,0,7,0,0,0,
52,0,243,255,239,255,7,0,212,255,253,255,58,0,105,0,129,0,20,0,246,255,25,0,242,255,57,0,94,0,244,255,
241,255,57,0,95,0,14,0,117,255,172,255,237,255,163,255,254,255,75,0,230,255,194,255,175,255,168,255,17,0,80,0,
43,0,183,255,12,255,213,254,36,255,101,255,132,255,121,255,46,255,123,255,145,0,195,0,193,255,243,254,145,254,144,254,
150,254,5,254,234,253,117,254,153,254,140,254,157,254,159,255,77,1,80,1,174,0,194,0,19,0,30,0,155,1,207,1,
214,0,48,0,153,0,77,1,184,255,62,254,206,255,184,0,0,0,57,0,48,1,157,2,37,3,254,1,146,1,72,1,
136,0,246,0,31,0,31,254,82,254,36,254,172,253,82,1,70,5,130,4,226,1,171,255,209,252,47,251,210,253,47,1,
219,255,0,254,187,255,130,255,154,252,92,252,7,254,238,255,254,0,61,254,30,251,21,252,64,254,97,255,93,255,136,254,
13,255,202,255,152,255,235,0,233,1,100,0,117,255,210,255,251,255,252,255,206,255,70,0,21,1,35,1,168,2,200,5,
117,6,142,3,23,0,177,254,17,254,108,253,124,0,168,4,205,2,123,255,90,0,187,1,255,3,235,6,229,4,113,1,
142,0,167,253,44,250,86,250,155,251,162,251,94,251,20,253,195,0,56,3,38,3,179,0,152,253,147,252,232,253,65,2,
89,5,53,1,125,254,217,2,11,4,202,0,71,255,255,253,169,253,177,0,90,3,35,3,83,1,114,254,91,253,20,1,
202,4,163,4,85,3,61,1,123,0,58,3,234,4,29,5,211,3,32,255,69,253,253,253,165,251,194,250,112,251,68,250,
159,251,158,255,51,0,88,252,182,250,47,253,60,254,80,1,196,6,255,4,144,0,151,255,66,253,55,251,3,252,159,254,
173,1,96,1,47,255,54,253,122,253,214,2,167,2,184,250,29,251,97,1,152,1,48,0,124,0,216,253,145,250,3,254,
18,3,226,1,186,2,156,6,255,2,139,252,193,251,6,0,101,4,214,2,209,255,190,255,149,254,188,254,209,0,48,1,
98,1,210,0,69,0,104,1,137,2,100,5,193,6,114,3,51,2,2,3,17,2,240,1,218,2,175,2,14,0,173,253,
108,255,167,2,131,4,1,2,236,252,9,254,96,255,208,251,108,253,96,255,236,252,134,0,162,5,177,3,29,255,185,250,
58,249,159,252,235,254,243,251,247,249,42,253,63,254,253,252,164,254,125,254,26,0,96,6,170,5,9,3,236,6,255,6,
248,3,229,4,190,5,16,6,135,6,44,3,148,253,158,253,243,2,2,3,156,254,222,253,54,254,52,254,74,255,219,0,
110,4,37,5,58,0,235,252,247,252,109,255,240,2,167,2,163,0,159,254,76,250,222,247,7,250,119,253,127,255,82,255,
58,254,40,253,65,252,186,251,141,252,216,0,185,3,139,0,193,254,115,0,246,254,80,252,115,253,177,0,5,2,114,0,
150,254,83,254,22,1,242,4,208,2,20,253,10,253,197,0,142,2,54,2,138,255,178,252,32,254,162,1,110,1,66,254,
110,252,73,252,71,252,74,252,12,253,146,254,243,254,146,254,65,0,173,1,216,255,88,254,251,254,205,254,87,254,23,255,
115,254,4,253,232,254,25,1,175,254,70,252,80,254,226,0,201,1,91,2,106,1,83,255,125,254,77,254,84,254,228,254,
42,254,32,253,171,254,8,0,92,254,0,254,18,2,247,4,149,1,12,253,115,253,128,254,201,251,30,250,97,252,213,254,
211,255,44,0,43,0,45,1,141,3,83,4,172,0,176,251,94,252,247,0,161,0,147,253,160,255,96,2,20,0,199,253,
108,255,128,1,86,0,8,254,75,255,39,1,217,254,187,254,118,3,39,3,165,253,17,253,108,1,221,4,116,5,151,2,
250,253,170,251,94,254,9,3,122,1,63,252,176,254,247,2,13,255,77,253,131,2,68,3,16,0,212,255,55,0,63,0,
184,255,26,254,112,0,159,3,27,0,249,252,144,254,123,253,81,252,47,0,112,3,116,4,88,5,241,3,184,1,235,0,
111,0,180,1,95,3,50,2,188,1,50,2,141,255,105,254,221,0,114,0,253,254,174,0,36,0,90,253,138,254,186,0,
26,0,224,255,83,255,14,253,3,254,92,1,141,0,114,253,161,252,84,253,151,255,121,1,186,254,244,251,35,253,188,251,
44,249,192,253,232,2,63,0,173,252,12,254,235,0,95,1,186,253,175,249,7,250,79,251,177,251,79,255,240,2,200,1,
225,255,67,255,80,254,157,254,138,255,1,0,10,2,186,2,131,255,243,253,46,255,103,254,227,252,126,253,115,255,163,1,
162,0,54,252,82,251,231,253,226,253,63,253,123,253,254,251,236,252,241,255,66,253,68,250,166,254,255,1,61,0,41,0,
61,1,248,0,57,1,16,1,132,1,115,3,162,1,232,253,87,254,77,255,13,0,46,4,250,5,13,3,76,0,152,252,
252,250,171,0,187,3,52,0,94,2,212,8,228,8,210,5,111,3,228,255,35,255,79,2,233,3,129,3,151,3,52,3,
174,0,87,253,192,254,201,5,102,8,135,2,248,253,224,254,121,255,233,254,63,255,91,254,215,252,42,254,117,0,230,0,
134,1,216,2,170,2,37,2,183,2,222,2,110,2,63,2,17,2,61,2,70,3,212,4,71,4,204,254,225,250,61,0,
211,5,226,2,219,255,138,255,57,252,68,252,148,2,91,3,39,253,247,250,151,255,251,4,73,5,145,1,248,255,239,255,
253,253,253,252,238,253,165,254,21,255,60,254,94,254,213,1,80,1,160,252,206,253,145,0,176,254,46,0,65,3,96,0,
238,254,42,0,141,252,146,251,76,2,193,4,203,255,246,252,248,253,8,254,58,253,248,254,149,1,188,255,52,252,122,253,
104,0,210,0,189,1,178,2,120,0,72,254,88,255,16,1,184,1,175,2,24,3,213,0,10,255,146,1,122,4,78,3,
78,0,254,253,16,254,60,1,217,1,4,254,238,253,240,1,242,0,222,251,208,250,158,253,65,254,225,251,146,251,228,253,
235,253,93,253,222,255,46,0,46,253,213,253,89,0,236,254,14,253,235,254,214,2,162,5,219,4,59,2,50,1,42,1,
91,2,16,5,199,4,15,2,171,2,6,4,44,2,18,1,116,2,55,4,206,5,244,4,111,1,95,255,70,254,78,252,
96,252,121,253,161,252,55,253,152,255,98,255,53,255,233,2,27,6,183,4,22,1,215,254,125,254,242,253,40,253,249,252,
163,250,128,247,177,250,106,1,171,1,147,252,4,250,4,252,35,0,88,2,182,0,77,254,68,253,151,253,21,0,156,2,
244,1,159,255,189,254,170,0,14,3,17,1,201,252,210,252,98,0,68,3,39,3,248,254,64,252,36,255,226,0,3,255,
2,254,167,252,200,251,252,253,246,253,233,251,207,252,229,252,167,253,206,3,99,6,51,3,31,4,46,6,34,5,121,6,
113,6,33,1,19,254,123,254,39,255,216,0,130,255,228,250,176,250,17,254,74,0,169,1,107,0,226,253,28,255,212,0,
205,255,36,0,8,2,18,3,112,3,174,0,235,250,112,249,238,254,19,4,146,2,185,254,209,255,46,3,56,3,81,2,
135,1,204,253,52,251,227,254,93,3,215,1,135,253,234,252,26,255,100,255,147,254,115,255,229,0,122,1,8,1,90,0,
233,0,97,0,247,253,161,254,179,255,2,252,69,251,102,254,171,250,231,246,217,253,179,3,38,1,43,0,183,1,76,0,
29,255,218,0,193,2,97,2,95,0,121,255,87,254,62,251,89,251,14,254,180,252,170,252,36,2,29,3,221,254,69,254,
100,254,146,252,253,253,192,255,153,254,66,255,28,0,86,254,60,255,40,1,5,254,210,250,144,251,249,251,157,252,138,255,
16,1,249,255,49,254,246,252,151,254,176,1,1,2,44,1,99,1,30,1,154,1,105,3,192,4,152,6,114,6,5,1,
85,253,71,255,2,0,26,255,27,0,254,255,85,255,38,1,5,2,2,1,217,0,243,0,232,1,167,3,244,1,119,253,
254,250,6,251,124,252,185,254,94,0,215,0,190,255,208,254,36,0,96,255,17,251,225,250,202,254,155,255,13,255,176,255,
73,255,98,0,45,3,38,2,117,255,144,255,35,0,197,1,101,5,210,4,124,0,77,0,160,1,109,254,46,252,91,254,
35,255,114,254,169,255,185,254,169,251,193,253,231,2,128,3,157,0,236,253,167,252,179,254,109,1,214,255,80,253,110,255,
179,2,175,1,35,255,181,255,110,0,65,254,123,253,218,253,50,250,115,248,44,254,22,1,2,253,131,252,113,0,193,0,
154,254,229,253,249,253,45,255,44,1,19,1,31,255,243,254,125,1,187,2,251,255,31,253,233,253,23,0,73,1,213,1,
73,1,165,255,158,254,61,255,130,1,177,3,224,2,102,0,162,0,18,2,69,0,98,253,28,253,0,254,158,255,51,2,
235,1,251,254,39,254,92,254,154,254,167,2,185,7,239,7,249,4,40,2,17,1,218,1,151,0,32,254,192,255,8,1,
4,254,99,253,46,255,191,253,168,252,186,254,86,0,169,0,231,0,173,2,84,5,91,2,24,251,251,249,48,254,186,1,
148,6,149,9,63,5,106,0,255,0,80,2,247,0,202,253,91,250,214,248,61,249,120,250,108,252,49,253,167,251,234,250,
248,252,89,255,34,0,3,1,240,1,255,255,174,253,208,254,234,254,85,253,48,1,55,6,9,4,232,0,157,1,154,0,
211,254,228,255,244,255,110,254,38,255,129,0,80,255,109,253,253,253,60,255,227,253,109,253,15,1,163,2,208,255,109,255,
101,1,5,0,1,254,64,0,165,3,94,2,155,252,12,249,177,251,154,255,105,255,252,253,118,0,95,4,46,3,58,255,
74,0,255,3,56,4,48,4,208,5,177,4,211,2,23,4,232,3,25,0,244,254,1,2,211,2,125,0,196,0,36,2,
43,255,73,253,181,1,113,4,198,1,52,0,102,255,213,252,197,253,7,2,43,2,254,253,166,250,220,249,22,251,25,253,
3,254,222,252,206,250,18,250,65,250,88,249,169,249,52,254,103,3,119,4,122,2,37,1,4,1,170,255,90,253,139,253,
167,255,35,0,135,255,245,254,118,253,132,252,174,252,186,251,166,251,191,253,180,252,82,249,165,250,194,252,209,249,200,249,
167,255,124,0,94,252,133,253,65,0,36,254,129,254,245,3,41,6,201,4,153,4,109,3,128,1,111,3,60,6,75,5,
122,4,89,6,50,7,175,6,9,7,113,6,105,4,126,4,129,6,203,5,19,2,46,1,18,4,112,2,248,250,242,248,
179,253,15,255,224,254,14,2,228,0,79,252,76,255,63,4,96,1,147,253,236,253,135,253,109,252,53,253,162,254,108,255,
162,253,169,249,36,249,158,252,205,253,135,251,158,249,77,249,148,250,93,253,31,255,149,254,206,254,88,0,129,255,38,254,
116,1,113,5,173,3,33,0,1,1,234,3,243,2,38,254,0,252,242,254,66,1,184,0,9,1,173,1,59,0,46,255,
81,1,89,4,44,3,38,255,245,255,96,3,123,0,167,250,101,248,115,248,220,251,125,0,109,255,61,254,47,2,135,2,
34,255,169,255,29,1,176,1,50,3,157,1,247,254,48,0,65,1,231,1,7,4,97,2,118,255,51,1,74,1,128,253,
45,253,73,0,16,2,129,0,188,252,56,252,7,255,221,255,29,1,70,3,246,0,50,255,92,2,152,2,86,255,174,254,
3,255,176,255,150,1,179,1,50,2,34,4,242,0,28,251,240,250,48,253,128,253,220,254,167,0,199,255,54,254,165,254,
13,255,74,252,255,249,215,253,188,2,243,1,242,255,128,255,211,253,188,254,37,3,11,3,249,255,226,1,233,4,150,3,
48,2,224,2,186,1,234,254,204,255,226,4,105,6,176,1,66,255,90,1,121,0,15,254,134,255,158,0,69,0,6,3,
86,4,156,0,210,254,133,0,27,1,236,1,230,2,12,0,103,252,192,252,94,254,245,253,196,252,198,252,103,254,70,0,
134,0,24,255,198,253,252,254,167,2,249,3,250,255,166,251,128,252,55,0,199,1,161,0,199,254,2,254,124,255,77,1,
244,0,5,1,120,3,237,3,251,0,206,255,38,2,46,4,160,2,154,254,55,253,130,255,148,0,255,0,11,4,142,4,
232,255,150,253,167,255,179,255,101,252,146,250,19,253,49,1,119,2,189,1,178,2,145,4,210,4,199,3,223,2,155,2,
30,2,49,1,208,0,79,0,57,0,176,2,0,4,174,0,44,254,20,255,242,254,17,254,235,254,201,255,16,0,176,0,
142,1,106,1,136,253,154,248,32,250,186,255,217,1,40,2,35,3,29,2,237,255,244,254,226,254,199,255,219,0,220,0,
51,0,121,254,144,252,198,253,137,1,56,4,73,4,117,2,138,1,201,2,232,3,82,4,57,3,202,254,90,252,180,255,
163,0,37,252,155,250,12,253,59,253,225,250,231,249,188,252,177,0,183,255,193,252,90,0,39,6,17,5,244,1,238,2,
68,2,68,254,11,254,140,0,116,0,184,1,50,5,126,3,124,255,164,0,167,1,112,255,217,0,160,2,82,253,134,248,
32,251,223,253,68,253,61,254,28,0,89,0,178,1,189,2,225,255,155,254,199,1,191,1,44,255,210,1,228,4,68,2,
126,255,76,255,184,255,183,1,101,2,6,255,116,252,246,252,130,254,36,0,115,255,39,254,208,0,74,2,48,255,29,255,
145,1,154,255,68,253,120,254,130,254,53,253,15,255,238,2,33,3,72,254,220,250,189,252,209,254,133,254,212,254,194,255,
47,0,64,0,9,0,213,0,235,0,18,254,77,253,127,255,131,254,237,253,173,2,77,6,136,6,157,6,72,4,233,0,
161,0,119,0,54,0,222,2,187,4,59,4,131,4,66,4,235,2,160,2,22,1,107,253,44,252,195,254,76,1,183,0,
181,254,92,254,151,254,112,254,230,255,207,0,248,254,35,255,11,2,211,1,255,254,183,253,136,252,46,250,245,249,232,252,
66,254,67,251,109,249,62,252,75,254,83,254,223,0,144,2,94,255,64,253,56,255,244,0,250,1,102,3,123,3,58,3,
12,4,72,3,48,0,96,254,47,0,223,3,113,5,217,3,186,2,81,3,143,2,129,0,45,255,118,253,201,251,109,252,
63,253,95,252,228,252,186,255,78,2,2,4,14,5,101,5,83,5,127,3,237,255,96,254,208,255,32,1,8,1,160,0,
177,0,131,0,248,254,118,253,19,253,18,252,188,251,76,254,58,0,165,255,137,255,27,255,106,253,251,253,167,255,156,253,
118,249,180,247,233,248,16,251,83,252,30,253,139,254,151,254,103,252,73,252,81,255,171,255,248,252,93,254,54,2,98,0,
214,252,14,254,53,254,40,252,192,254,59,1,76,255,121,1,145,5,65,1,46,252,216,255,134,3,187,0,40,254,32,0,
71,3,136,3,244,0,175,255,71,1,126,1,60,254,22,252,241,253,4,0,214,255,80,255,181,254,31,254,233,254,16,255,
17,254,166,254,32,255,104,255,159,2,175,3,222,255,153,254,101,255,43,254,197,254,197,254,134,251,89,253,117,2,148,2,
80,2,212,1,243,251,109,248,109,250,65,251,229,252,241,254,224,251,79,250,155,254,114,1,218,1,145,2,35,2,190,1,
212,1,8,1,34,1,89,1,82,0,148,0,50,1,68,0,135,255,45,255,22,0,57,2,54,1,190,255,162,2,172,3,
41,1,154,1,13,3,40,3,26,4,103,2,7,255,18,0,134,1,85,0,243,0,126,1,20,0,247,255,212,254,33,252,
253,252,7,255,110,254,68,254,225,254,142,255,176,2,139,4,65,0,151,251,138,252,6,255,198,254,114,253,33,252,237,250,
188,251,23,253,36,252,125,252,185,255,98,0,65,255,67,0,242,254,80,251,194,252,91,0,75,0,42,1,31,3,222,255,
101,252,6,0,252,3,119,2,219,1,81,4,199,4,110,4,187,4,45,2,29,0,59,1,164,254,102,251,76,0,4,4,
163,255,41,255,25,4,173,3,4,0,251,254,25,255,215,0,114,3,232,2,2,0,250,252,253,250,101,252,103,255,216,0,
50,2,219,2,239,0,14,0,165,1,148,1,197,255,178,255,211,0,119,0,67,255,138,255,60,0,44,255,108,254,2,0,
80,1,163,0,201,255,235,255,134,0,67,0,221,253,236,250,52,250,231,250,237,250,239,250,64,251,245,250,218,251,68,254,
238,253,248,251,253,253,112,0,32,254,88,252,104,254,126,255,119,254,45,254,10,255,177,255,180,254,254,253,78,0,20,2,
102,1,216,2,86,5,52,4,246,1,19,2,29,4,48,6,124,5,191,3,31,5,47,7,214,7,242,8,61,8,252,4,
62,3,155,2,206,0,33,254,17,252,202,254,126,3,105,0,144,250,139,252,119,255,100,253,249,252,151,254,95,254,247,253,
122,254,172,0,106,3,160,1,153,253,121,253,166,254,101,254,26,254,243,252,102,252,63,254,157,254,166,252,208,251,74,252,
84,253,98,254,125,254,62,255,13,1,232,1,190,1,240,255,236,252,34,253,211,255,165,255,74,254,136,255,16,1,205,0,
215,0,130,2,113,3,125,2,8,3,154,4,3,2,101,254,246,255,84,2,43,1,222,0,226,2,79,3,100,1,170,255,
108,255,13,0,111,1,196,2,185,0,150,252,62,252,7,254,8,253,201,251,200,252,243,254,52,2,67,4,162,3,213,2,
20,1,119,254,90,255,195,0,114,254,164,253,18,255,51,253,33,251,14,253,220,254,135,254,136,254,44,254,155,251,245,248,
140,249,173,252,255,254,218,254,224,252,10,252,210,253,2,254,104,252,67,255,92,3,117,1,139,254,192,254,234,253,181,253,
157,0,34,2,218,1,120,2,138,2,68,2,88,3,66,4,38,3,37,0,216,254,11,2,14,4,228,0,244,254,154,0,
5,1,170,0,204,1,122,2,211,1,18,1,226,1,216,4,229,5,36,2,175,254,144,255,86,0,255,253,122,253,39,0,
65,255,8,251,86,251,111,254,78,254,108,253,83,253,176,252,65,254,122,0,108,255,163,254,224,254,50,253,12,254,171,2,
39,5,222,5,203,5,59,2,195,255,96,2,126,4,82,3,146,1,109,0,228,0,225,1,36,1,222,1,183,4,32,3,
124,254,253,254,110,1,209,254,176,252,161,255,90,0,218,252,219,251,44,253,5,254,224,255,203,255,81,252,220,251,218,253,
190,252,166,251,30,252,85,251,189,252,226,255,56,254,87,251,33,253,181,255,30,1,52,3,161,3,239,1,112,1,217,1,
207,0,219,254,92,254,235,255,119,1,194,1,93,1,241,0,111,1,246,1,9,1,151,1,229,3,24,2,26,254,9,255,
165,1,221,0,32,0,163,1,194,3,74,5,225,3,41,0,19,255,176,0,227,0,133,255,183,254,102,254,81,253,246,251,
104,252,203,253,86,253,177,252,62,254,225,254,169,252,191,251,1,255,41,3,104,3,202,255,155,253,249,255,200,2,161,1,
80,255,79,0,205,2,96,3,203,3,164,5,167,5,252,2,10,2,97,3,124,2,206,255,212,255,214,0,49,255,124,254,
52,1,51,2,152,255,16,254,130,255,87,1,150,0,179,253,184,253,0,1,211,0,171,253,241,253,174,255,226,254,100,254,
40,255,127,254,91,253,44,254,57,0,227,0,143,255,167,254,189,254,74,254,213,254,75,1,155,2,205,1,147,0,142,255,
237,254,238,253,63,253,221,255,129,2,37,0,104,254,122,1,122,2,107,255,154,253,73,253,62,253,223,253,58,253,50,252,
146,253,25,254,190,251,107,251,118,254,165,0,51,1,169,1,244,0,78,255,236,255,170,2,173,3,228,2,114,3,116,4,
253,2,146,0,84,0,30,1,53,0,191,254,127,255,171,1,210,2,87,2,31,1,138,1,66,4,178,4,94,1,64,0,
137,2,242,2,84,1,84,0,151,255,218,255,21,1,72,0,45,254,56,254,248,255,147,0,87,254,78,251,1,252,59,255,
250,255,168,255,142,0,4,255,13,251,31,250,147,252,13,254,108,253,116,253,98,255,138,0,0,0,101,0,174,0,5,255,
194,255,85,3,83,2,24,253,9,252,105,255,144,0,110,254,198,253,10,0,220,0,253,254,109,255,91,2,47,2,128,255,
25,255,197,0,9,2,35,2,25,1,126,255,248,253,199,253,15,255,146,254,230,252,189,254,97,0,106,253,147,253,49,3,
98,4,31,1,69,1,233,2,221,1,217,255,156,254,37,255,30,1,25,2,78,2,87,2,195,0,40,255,110,255,34,0,
194,0,116,0,17,254,185,252,82,253,106,252,76,251,71,252,30,253,133,253,39,254,210,253,254,253,186,254,139,253,221,253,
202,1,229,2,23,0,2,0,185,2,145,3,117,2,114,1,122,1,196,2,206,3,232,2,23,1,65,0,246,255,81,255,
82,255,189,255,253,254,182,254,163,0,117,2,175,2,29,2,129,1,225,2,78,5,7,4,217,0,139,0,4,0,106,253,
41,253,137,254,71,254,87,254,16,255,74,254,15,253,105,252,166,252,248,254,48,1,126,0,129,255,175,0,243,1,128,1,
150,255,33,253,4,252,118,253,143,255,206,255,193,255,231,1,27,3,79,0,216,253,97,254,89,254,16,254,55,0,136,1,
241,255,104,255,132,1,112,3,19,3,214,0,249,254,215,254,168,255,246,0,243,1,21,1,36,255,221,253,37,254,171,0,
140,2,69,0,254,253,169,0,113,4,57,4,237,0,0,254,247,252,131,252,204,252,103,255,161,0,114,254,108,255,141,3,
182,2,182,254,102,253,79,253,58,254,118,255,28,253,213,251,223,255,235,0,15,253,239,252,176,255,9,0,108,0,185,1,
68,1,45,0,216,255,244,254,76,253,155,252,63,254,17,1,188,2,166,2,9,1,109,255,199,0,183,3,1,4,60,2,
193,0,166,255,232,255,1,1,201,255,154,253,75,254,18,0,238,255,233,255,233,0,233,255,49,254,231,255,22,2,208,0,
49,255,69,254,134,252,156,253,190,0,114,255,231,252,173,254,97,0,116,255,139,254,78,253,215,252,41,255,37,1,60,1,
172,1,89,2,232,1,10,0,152,254,141,0,218,2,240,0,217,254,36,0,31,1,60,0,61,255,238,254,101,255,1,255,
67,254,251,255,48,1,126,255,129,255,78,1,158,1,146,2,120,3,83,1,107,255,120,255,123,255,246,0,195,3,255,3,
19,1,45,254,107,254,8,0,195,254,145,253,157,255,134,0,222,0,44,3,185,1,32,254,10,0,170,1,15,254,215,252,
3,255,65,255,160,254,121,254,6,254,126,253,134,252,225,252,109,255,120,0,54,0,108,1,76,2,75,2,49,2,81,1,
239,1,245,2,52,0,39,255,69,3,0,4,170,0,146,0,116,1,19,0,99,255,39,255,252,254,168,1,120,5,221,5,
3,3,224,0,190,0,50,0,219,255,109,1,172,0,235,252,217,252,179,255,207,255,187,254,112,254,127,254,148,0,201,2,
186,1,204,255,21,255,141,254,66,254,83,254,28,255,194,255,106,253,107,251,49,255,253,3,134,4,248,3,188,3,180,1,
169,254,132,253,24,0,212,2,254,0,186,254,207,255,203,255,76,255,188,1,252,1,111,254,70,253,119,255,210,1,249,1,
232,254,16,253,216,254,88,255,37,255,149,1,91,1,54,253,106,252,171,254,69,254,253,251,36,251,45,252,122,253,90,253,
254,252,106,254,176,0,61,2,196,2,56,2,184,0,198,254,249,253,107,255,229,0,210,0,241,0,10,1,95,255,200,253,
101,254,203,255,87,0,197,0,0,2,239,2,142,2,228,1,83,1,116,0,4,0,169,255,14,255,173,255,126,0,81,0,
52,1,150,1,109,255,41,255,3,1,17,0,218,254,42,0,44,0,24,255,210,255,9,1,47,2,109,3,219,3,189,3,
150,1,163,253,109,253,22,0,190,255,240,254,130,0,175,0,16,0,57,1,9,1,84,254,181,252,118,253,86,254,86,254,
171,255,171,1,202,255,130,252,14,254,48,1,86,1,30,1,47,1,5,0,35,255,95,255,37,1,30,4,196,4,23,3,
44,2,230,0,219,254,58,254,192,254,234,255,78,0,78,254,210,253,162,255,238,254,209,254,84,1,225,254,15,250,230,251,
71,255,147,254,56,254,8,255,60,255,144,255,220,254,46,254,244,255,236,1,1,3,94,3,188,0,169,253,167,253,203,253,
124,254,242,1,179,2,177,255,89,0,107,3,224,1,233,254,117,0,252,2,114,2,60,2,105,3,2,2,10,0,26,2,
193,4,40,4,136,2,31,1,32,0,128,0,55,0,248,253,104,252,87,253,10,0,87,1,3,255,52,253,109,254,130,254,
9,254,19,0,200,0,163,254,17,253,54,252,175,252,169,254,184,253,250,250,107,251,213,252,173,253,191,255,187,255,241,252,
169,252,172,254,194,255,67,0,127,0,86,1,61,3,42,3,161,1,120,2,226,3,134,3,91,3,46,3,92,2,206,2,
167,2,72,255,221,252,224,254,169,1,104,2,163,2,96,2,241,0,70,0,155,0,27,0,68,0,11,2,231,1,90,255,
9,254,244,253,146,253,61,254,245,255,224,0,4,1,194,0,194,255,228,254,46,255,239,255,79,0,189,0,11,1,43,0,
118,255,187,0,156,1,81,0,121,255,170,255,66,255,191,255,82,1,173,0,72,254,251,253,215,255,186,0,154,255,99,254,
87,254,108,254,59,254,76,254,241,253,53,253,174,253,140,255,100,1,204,1,222,0,14,0,38,255,114,254,182,0,69,3,
30,1,122,255,177,2,3,3,133,254,149,253,54,0,140,0,237,254,25,253,72,251,212,250,159,252,188,0,166,4,163,3,
186,255,59,255,2,1,37,1,166,0,46,0,225,254,27,254,68,255,40,1,20,1,55,255,150,255,116,1,222,255,195,253,
253,255,232,1,165,0,251,0,129,2,151,0,110,253,195,253,136,0,167,1,201,0,227,0,87,1,224,255,192,255,57,2,
105,1,153,253,188,253,155,0,63,1,204,0,207,255,142,253,4,254,8,2,131,3,33,1,2,0,73,1,222,1,106,1,
63,1,104,0,127,254,195,253,125,254,129,254,18,254,222,253,66,252,141,250,58,252,80,255,101,255,13,253,159,251,148,252,
83,254,64,254,140,253,154,254,74,254,0,251,243,250,106,255,200,0,99,254,95,254,43,255,12,253,75,252,217,254,118,255,
254,253,250,254,49,1,20,2,244,2,93,3,61,2,166,1,211,1,182,1,130,2,170,2,225,255,6,254,132,255,110,0,
234,255,50,0,11,0,61,255,93,0,191,2,154,3,197,2,181,1,36,1,253,0,45,1,239,0,56,255,72,254,142,0,
66,2,21,0,137,253,231,252,61,253,50,255,2,1,236,255,239,254,194,255,25,255,169,253,155,254,79,0,71,0,6,255,
183,254,172,0,191,1,226,254,34,252,25,253,64,254,69,253,200,252,200,253,125,254,157,254,210,255,212,1,197,1,80,255,
172,253,179,254,55,1,65,2,138,0,15,0,234,2,171,3,149,0,241,254,62,255,36,255,157,0,49,3,21,3,137,0,
74,254,164,254,249,1,229,3,248,1,250,0,160,2,128,2,117,0,20,0,11,1,251,0,235,255,198,255,40,1,215,1,
202,0,94,0,70,1,141,1,13,1,246,255,54,253,83,251,226,253,16,1,94,255,199,252,210,254,4,1,151,254,156,252,
170,254,164,255,233,253,65,254,226,255,236,254,155,254,181,0,38,0,103,254,210,0,22,2,72,254,99,253,228,0,196,1,
155,1,86,3,123,2,219,255,233,255,175,255,167,253,1,254,255,255,222,255,225,254,157,254,156,253,31,253,246,255,196,2,
36,1,90,255,64,1,39,2,239,0,208,1,192,2,20,1,230,255,68,0,158,1,180,3,169,2,193,254,66,254,4,1,
28,3,1,4,60,2,55,255,144,255,161,0,116,255,66,0,151,2,38,2,209,0,93,0,170,255,225,255,190,0,245,255,
109,254,20,254,137,254,53,254,61,253,42,254,11,0,7,255,39,253,171,253,11,254,255,253,247,255,176,1,186,1,5,2,
148,1,185,255,24,255,172,255,122,255,139,255,183,0,41,0,13,253,241,251,72,254,204,255,109,0,118,2,47,3,207,2,
80,4,252,3,43,1,233,1,0,4,67,2,241,255,126,255,87,0,129,2,199,1,131,253,34,253,90,0,216,0,47,0,
119,0,111,255,126,254,122,255,134,0,95,0,94,255,7,255,216,255,69,255,206,253,75,254,119,254,108,253,156,254,0,0,
252,254,63,255,143,0,228,255,99,0,26,2,175,255,252,251,32,253,241,255,36,0,114,255,205,254,240,253,78,254,77,255,
141,255,181,0,189,2,232,2,127,1,27,0,7,255,13,0,53,3,201,4,129,4,68,4,92,2,255,255,8,2,163,5,
92,4,198,0,34,0,112,0,36,255,162,254,199,255,28,0,152,255,230,255,9,0,246,254,59,254,199,254,242,255,106,1,
122,2,254,1,89,0,133,255,162,0,189,1,136,0,9,255,14,0,162,1,122,1,81,1,248,2,65,5,129,5,58,3,
141,1,120,1,15,0,86,254,131,255,221,0,139,255,249,253,72,253,181,252,45,253,84,254,220,254,251,254,125,254,9,254,
66,255,165,0,240,0,246,1,160,2,180,0,25,255,113,0,77,2,87,2,120,1,63,1,140,0,238,253,196,252,219,254,
218,254,67,252,4,253,23,255,161,254,254,255,239,2,197,1,100,255,30,0,67,1,198,1,73,2,36,1,169,255,147,255,
180,254,95,253,4,254,5,255,169,254,159,254,243,255,37,1,146,0,54,255,107,255,193,0,251,1,72,4,139,6,254,4,
249,0,213,255,18,2,59,3,65,1,239,254,43,255,93,1,12,3,115,2,251,255,226,253,8,253,115,252,123,252,138,253,
162,253,0,252,72,251,68,253,194,255,135,255,70,253,195,252,203,254,147,0,163,0,137,255,13,254,175,253,115,255,72,1,
7,0,145,252,139,251,78,254,132,0,168,255,223,254,98,0,204,1,104,1,12,1,254,1,2,3,209,2,197,0,145,253,
50,252,28,253,2,253,197,252,156,255,20,2,127,0,226,254,80,0,160,1,163,0,22,255,146,254,175,254,103,255,79,1,
20,2,255,255,18,255,34,1,249,1,23,1,94,1,220,1,152,1,130,1,68,1,166,0,77,255,111,253,255,253,62,0,
150,255,240,253,114,255,94,1,231,0,76,0,38,1,80,1,170,254,72,252,250,253,43,0,90,255,136,254,185,254,41,255,
35,1,161,1,120,254,21,253,133,254,246,253,105,252,231,252,88,254,102,255,75,255,160,254,17,0,29,3,15,4,94,2,
214,1,36,4,169,4,172,1,43,1,201,2,226,0,179,255,49,2,227,1,226,255,228,0,210,0,11,255,225,254,224,253,
221,252,196,254,69,255,255,252,228,251,181,252,179,255,117,2,73,0,19,254,160,0,239,0,136,253,122,253,141,255,76,0,
241,1,27,3,241,0,96,254,90,254,189,0,56,4,201,5,70,4,118,2,123,1,186,255,178,253,23,253,154,253,186,254,
96,0,15,1,84,0,216,255,160,255,52,255,193,255,175,0,203,0,45,1,12,2,74,3,149,5,84,6,244,3,128,2,
225,2,179,1,4,0,110,0,182,1,254,1,24,1,61,0,103,255,168,252,77,250,203,251,89,253,104,252,112,252,111,252,
214,250,90,252,124,0,142,1,123,0,82,0,44,1,73,3,252,3,156,0,15,254,35,0,53,2,40,1,85,0,88,2,
182,4,252,3,11,2,197,2,209,3,72,2,214,1,216,3,85,4,168,3,185,3,32,2,182,255,194,255,129,255,104,253,
183,253,166,255,14,255,73,254,162,255,108,0,47,0,141,255,222,252,44,250,84,251,237,253,157,254,84,255,106,0,208,254,
43,252,68,252,69,253,141,253,122,255,84,1,103,0,98,0,129,1,73,255,211,253,10,1,141,1,197,253,206,253,145,0,
135,0,23,1,240,3,139,4,38,3,6,2,99,255,149,252,229,253,15,1,213,0,103,254,135,253,238,253,79,254,181,254,
168,254,91,254,209,254,71,255,206,254,232,253,0,253,51,253,250,254,114,255,20,254,65,255,231,2,35,4,57,3,81,3,
142,3,241,2,90,2,234,0,182,254,93,254,210,255,177,0,46,0,151,254,233,253,109,0,143,3,22,4,186,3,76,3,
214,1,21,1,216,0,28,255,128,253,171,252,77,252,119,255,226,3,233,2,91,255,213,254,207,254,102,253,41,253,178,254,
83,0,107,0,201,255,98,0,33,0,31,254,85,254,26,0,140,255,61,254,147,254,202,0,10,3,70,0,34,251,214,252,
156,1,200,0,247,254,120,0,11,1,113,0,27,1,220,1,199,1,86,1,58,1,235,0,188,254,13,253,179,254,128,0,
134,0,216,255,122,253,164,251,26,253,147,253,2,252,113,253,131,0,165,0,53,255,56,255,168,0,145,1,44,1,156,0,
203,255,203,255,223,2,218,4,238,1,137,255,83,0,184,0,224,0,26,1,226,255,214,254,20,254,70,253,133,255,11,3,
107,3,92,2,76,1,183,255,214,255,47,1,11,1,38,0,246,254,64,253,100,252,221,252,101,254,51,255,112,253,30,253,
37,0,201,0,18,255,245,254,237,253,37,253,9,0,77,0,52,252,88,252,103,0,188,1,10,2,203,3,160,3,204,0,
120,255,97,0,79,255,16,253,161,254,210,0,57,255,207,254,194,0,250,255,85,255,172,1,95,1,109,254,186,254,233,0,
122,0,13,254,215,252,200,253,51,254,60,253,93,254,105,1,65,2,25,1,52,0,70,255,61,254,13,253,117,251,44,252,
65,0,58,2,63,255,147,253,179,0,104,2,218,255,192,254,199,0,14,2,247,1,11,1,81,255,130,255,134,1,8,2,
150,2,162,4,43,4,114,1,55,1,73,2,17,1,194,255,78,1,220,2,23,1,116,255,140,1,250,2,245,0,220,255,
152,255,31,253,37,252,233,253,202,253,14,253,127,254,95,255,237,255,158,1,235,0,191,253,241,251,122,251,21,252,24,254,
70,255,211,255,72,1,219,1,131,1,200,1,6,2,21,3,185,4,204,3,224,1,58,1,130,255,137,254,33,1,36,3,
233,2,151,2,139,0,223,253,235,253,12,254,214,253,216,0,129,3,79,1,10,254,160,253,21,255,145,0,131,1,80,2,
38,2,15,0,210,254,122,0,103,2,2,3,71,3,248,2,193,1,237,0,144,1,27,2,60,0,129,254,145,0,151,2,
175,0,36,255,152,0,73,1,40,0,205,255,191,255,21,253,14,249,33,249,41,253,67,254,183,251,151,251,110,254,33,0,
233,255,17,255,93,254,61,254,92,254,128,254,240,254,53,255,181,254,113,254,197,255,48,1,126,0,204,255,5,1,85,1,
139,0,30,2,153,4,137,4,203,2,39,1,255,0,43,3,104,4,134,1,11,254,62,255,44,3,167,3,116,1,176,1,
218,1,162,254,44,253,32,255,74,255,103,253,64,252,137,252,92,254,19,255,185,253,157,253,135,253,138,252,166,254,9,0,
42,252,105,250,117,253,76,255,190,255,78,255,69,253,194,253,44,0,162,0,92,1,204,1,252,255,92,0,9,2,189,0,
162,0,157,2,24,1,169,253,49,253,158,255,196,1,84,0,105,254,35,1,27,3,7,0,94,255,136,2,230,1,242,254,
209,255,209,0,245,252,207,249,252,252,148,0,23,255,9,253,29,253,29,253,22,254,228,255,235,255,137,255,144,255,210,254,
220,254,86,255,21,255,92,0,135,1,232,255,93,255,152,0,91,0,27,1,51,3,234,1,80,255,42,0,26,2,246,1,
154,1,152,2,160,2,20,1,173,1,162,3,30,2,224,255,83,1,240,2,10,2,69,0,232,254,68,0,21,3,105,2,
53,0,100,255,123,253,54,253,215,0,161,1,62,255,202,255,171,0,244,254,35,254,29,254,27,253,169,252,59,253,120,254,
148,255,94,254,44,252,212,251,110,252,238,253,229,0,224,1,178,255,48,254,118,254,253,254,115,0,158,2,133,2,126,0,
117,0,124,1,185,255,51,254,140,0,97,2,169,1,254,1,4,2,45,0,158,0,255,2,145,3,235,3,131,4,32,3,
213,1,162,1,37,0,251,254,251,255,199,0,220,0,61,1,71,1,73,1,241,0,54,255,219,254,29,1,119,1,246,254,
238,253,190,254,84,255,45,1,128,4,40,5,61,2,29,0,13,0,139,255,202,254,101,254,92,253,93,253,104,254,145,252,
37,250,49,252,11,255,41,255,182,255,231,0,146,0,35,0,106,0,178,0,197,0,38,0,16,0,174,1,39,3,219,3,
228,3,44,2,15,1,17,2,244,1,252,0,234,0,212,255,56,255,52,0,233,254,170,253,235,255,29,0,76,254,200,0,
148,3,229,1,52,0,8,0,106,255,186,255,125,0,229,255,102,255,194,255,4,0,44,0,241,255,206,254,153,253,193,253,
46,255,46,0,195,0,254,1,47,2,213,0,4,1,134,2,59,2,152,0,182,255,187,255,154,255,210,254,220,254,203,255,
32,255,10,254,169,254,46,254,222,252,163,254,203,0,137,0,124,1,138,2,182,255,240,253,13,1,142,2,29,0,237,255,
131,1,101,255,172,252,98,253,75,253,184,251,181,253,197,0,112,255,186,252,10,253,44,255,188,0,69,0,0,254,24,253,
73,255,150,1,75,1,50,0,60,0,33,0,19,0,190,1,181,2,150,1,255,1,132,3,163,2,184,1,161,2,178,1,
137,254,150,253,184,0,122,4,108,4,188,1,69,0,96,255,42,254,17,254,65,254,146,254,201,255,141,255,14,254,193,253,
52,253,200,252,119,253,203,251,148,250,173,254,253,0,53,254,94,254,223,0,98,0,84,0,146,1,241,0,236,0,95,2,
58,2,100,1,243,0,244,255,44,0,205,1,94,1,112,255,207,255,150,1,99,1,172,255,169,254,10,255,101,0,162,0,
15,255,58,255,161,1,120,2,5,2,6,1,91,254,34,254,212,0,5,255,19,251,96,252,110,254,28,254,106,255,202,255,
202,253,145,254,33,0,175,254,148,254,180,0,64,0,177,253,59,253,121,255,130,1,141,1,208,0,10,0,151,255,143,0,
211,0,187,254,209,253,79,255,6,1,116,2,208,1,143,255,2,0,138,0,51,254,38,255,100,2,154,0,51,255,62,3,
160,4,133,1,10,1,45,2,100,0,233,253,246,253,148,255,99,0,126,255,192,253,131,252,38,252,167,251,251,251,48,0,
157,4,202,1,13,252,166,252,226,255,75,255,164,254,105,0,166,0,90,255,229,255,59,1,193,0,230,255,214,0,229,1,
27,1,162,255,175,254,127,254,83,255,131,255,27,254,9,254,232,255,213,255,181,253,209,253,173,0,62,2,35,1,229,0,
247,2,138,3,161,1,168,0,29,0,137,254,19,255,224,0,197,255,152,255,47,3,133,3,175,255,5,255,27,0,196,254,
206,254,185,0,243,0,165,1,36,3,25,2,84,1,145,2,128,1,135,255,116,0,53,1,179,0,84,1,220,0,199,254,
217,254,150,255,1,255,189,0,128,2,128,254,178,251,243,0,183,3,87,254,128,252,167,255,248,253,24,252,146,0,90,3,
216,1,145,1,189,0,95,255,79,1,101,2,8,1,29,2,245,2,162,0,186,255,120,0,9,1,23,3,78,3,87,255,
196,253,157,0,201,1,137,255,113,253,28,254,248,0,181,2,134,1,58,255,10,254,108,254,29,255,158,255,206,0,222,0,
122,254,107,253,113,254,217,253,56,253,131,255,75,2,85,3,131,2,169,0,250,0,212,3,151,5,96,5,160,3,98,0,
58,254,235,253,186,253,134,254,145,255,139,254,51,254,54,0,94,1,75,1,4,1,230,255,13,0,38,2,145,2,126,1,
146,1,243,1,126,2,85,3,69,1,2,253,127,252,226,255,97,1,72,0,82,0,188,0,68,255,227,254,197,0,10,0,
207,252,63,253,20,1,136,2,167,0,123,255,200,1,188,4,205,3,63,1,74,1,208,0,178,253,205,252,72,255,248,0,
246,0,63,0,240,254,244,254,40,1,45,2,251,255,40,254,212,255,196,1,116,0,172,254,130,255,238,0,236,0,135,0,
183,0,231,0,80,0,133,255,93,255,132,255,104,0,207,1,38,1,132,255,138,0,230,1,157,0,17,255,176,254,130,255,
79,1,237,0,81,255,210,0,121,1,33,254,21,253,46,255,106,255,214,254,11,255,192,255,89,2,32,4,159,2,199,1,
22,2,112,1,128,2,164,4,214,3,127,1,244,255,73,255,149,255,45,255,78,254,113,255,109,0,179,255,251,255,179,0,
140,0,183,0,239,255,169,254,126,255,244,255,23,255,22,0,130,1,52,2,123,4,177,5,119,3,48,1,44,0,46,0,
119,1,72,1,88,0,117,2,130,3,123,255,60,252,81,253,163,254,136,254,104,255,12,2,144,3,215,0,124,252,127,251,
168,252,18,252,226,250,246,251,132,254,39,0,152,0,69,1,86,2,54,2,72,0,216,254,213,0,53,4,120,3,197,255,
75,255,229,0,39,0,202,255,108,1,157,0,197,254,72,1,161,4,90,3,63,0,2,254,156,251,237,250,210,252,135,253,
170,252,79,253,3,255,98,0,147,1,79,1,76,255,248,253,35,254,157,254,156,254,210,253,1,253,18,253,66,253,60,253,
245,253,13,255,68,255,207,254,131,254,224,253,39,252,220,250,184,251,114,253,152,254,85,255,60,255,231,254,102,255,247,254,
171,254,67,2,64,5,8,2,9,255,239,0,41,1,163,254,137,255,188,1,88,0,26,255,160,0,153,0,79,254,137,253,
15,254,66,254,118,255,103,1,225,1,158,0,215,254,204,254,4,1,242,0,179,253,156,253,11,0,79,254,116,251,245,252,
124,254,134,253,100,254,11,0,116,254,165,252,119,253,116,253,34,252,215,252,104,253,228,251,223,252,101,255,178,253,17,252,
96,255,84,1,48,255,87,253,198,251,226,250,40,253,39,255,181,254,0,255,195,255,24,0,185,1,2,3,97,2,183,1,
73,1,145,0,69,255,172,252,32,252,165,255,45,1,169,254,127,254,31,1,213,0,130,254,124,255,204,2,34,3,14,1,
68,0,251,254,246,252,156,254,33,1,16,0,4,0,100,1,224,254,117,252,142,253,153,252,10,251,143,254,68,2,238,0,
60,254,89,253,135,253,46,254,14,255,201,255,2,0,141,255,72,254,175,252,212,253,38,2,2,3,217,254,251,253,229,1,
45,3,49,1,97,0,49,0,247,254,88,254,138,255,218,0,16,0,64,254,125,254,81,0,145,0,229,254,17,254,2,0,
97,3,18,5,12,4,105,2,104,2,192,3,51,4,192,2,229,0,84,0,78,1,170,2,14,3,178,2,112,1,241,253,
232,250,145,252,192,255,246,255,228,255,195,0,164,254,40,251,49,252,131,0,230,2,19,3,109,2,53,0,0,254,1,254,
216,253,233,252,159,254,171,0,43,255,169,254,129,1,39,2,252,255,251,254,11,255,231,255,50,1,4,0,78,254,255,255,
105,1,66,255,172,253,158,254,37,255,13,255,250,255,55,0,147,254,222,254,155,2,34,4,92,1,147,255,231,255,175,255,
209,0,67,3,83,2,133,255,113,0,126,3,227,3,150,2,138,2,123,2,181,0,136,255,60,0,90,0,223,255,117,0,
66,0,63,255,122,0,201,1,252,255,172,254,200,255,138,255,74,254,212,255,141,2,235,2,152,1,25,0,209,254,188,254,
131,255,240,255,227,0,222,1,104,0,208,254,139,0,126,2,52,2,101,2,113,2,23,0,116,254,221,254,116,253,234,250,
233,251,254,254,211,255,227,255,122,1,125,1,10,255,114,254,183,255,72,255,123,254,122,255,203,0,131,1,247,0,152,254,
235,252,55,253,242,253,61,255,251,255,6,254,141,252,0,254,245,254,34,255,32,1,147,2,22,1,121,255,71,0,198,1,
109,1,142,0,160,1,194,2,142,2,134,3,124,4,90,2,64,0,10,1,44,2,111,2,112,2,125,1,183,0,85,2,
44,5,209,5,8,3,136,255,253,253,70,253,179,252,177,253,237,254,128,254,56,254,45,255,142,255,85,254,101,252,245,251,
81,254,222,0,201,0,130,255,50,255,120,255,188,255,77,0,216,0,72,0,246,254,8,255,180,0,131,1,105,1,105,2,
86,3,180,2,171,2,69,3,149,1,162,255,157,0,64,1,47,0,94,1,213,2,18,1,59,1,181,4,117,4,178,1,
220,2,47,4,10,1,31,254,104,254,227,254,209,254,58,255,215,254,221,253,243,254,212,0,9,0,253,254,203,0,202,1,
83,0,30,0,135,0,95,255,62,255,94,0,19,0,40,255,157,254,229,253,119,253,79,253,58,254,18,1,67,2,81,0,
132,255,12,0,60,255,251,254,218,255,101,255,105,254,84,254,117,254,218,254,207,255,41,1,89,2,47,2,66,1,159,0,
88,255,75,254,217,254,255,254,240,254,231,0,21,2,1,0,251,253,139,254,99,0,121,1,126,1,35,2,147,2,70,0,
112,254,85,0,164,1,50,0,239,255,242,0,147,0,47,0,15,1,125,1,249,0,115,0,54,255,209,252,221,251,146,253,
220,254,110,254,42,254,80,254,36,255,60,1,10,2,237,0,228,0,33,1,178,255,196,254,49,255,158,255,57,0,183,0,
171,0,40,0,227,253,196,251,42,254,33,2,220,1,234,255,181,0,150,1,215,255,254,254,62,1,104,2,234,0,183,0,
120,1,89,0,150,255,214,255,203,254,53,254,105,254,69,253,238,253,41,1,98,1,208,254,167,253,171,253,50,254,159,254,
42,254,19,255,80,0,212,254,49,255,160,3,67,5,18,3,17,2,188,1,224,0,38,1,99,1,221,255,12,254,238,253,
109,255,115,0,8,0,78,255,132,254,250,253,174,254,30,0,15,2,98,3,83,1,80,255,14,2,208,3,59,0,90,253,
126,253,143,253,15,254,241,254,190,254,0,254,48,252,25,251,191,254,82,3,141,3,246,2,162,3,141,2,9,1,84,1,
82,1,122,0,178,0,238,1,214,2,137,2,41,1,0,0,1,0,215,0,142,1,180,1,171,1,81,1,84,0,219,255,
89,0,65,0,114,255,9,255,100,254,183,253,83,255,79,2,191,2,247,0,116,0,8,1,8,1,15,1,209,0,42,0,
154,1,119,3,106,0,124,251,35,252,165,255,120,255,161,254,93,1,9,3,176,0,196,255,64,2,61,3,142,1,174,255,
27,254,255,253,20,0,158,1,181,1,184,1,51,1,174,0,19,1,201,0,215,255,40,255,250,253,59,254,180,0,176,0,
68,254,122,254,200,255,26,255,49,255,54,1,79,2,209,1,112,1,90,1,53,0,0,255,70,0,13,2,11,1,135,255,
185,255,129,255,155,254,7,255,37,0,222,255,151,254,23,255,59,1,124,1,119,0,205,0,95,0,9,255,72,0,169,1,
147,255,92,253,108,253,135,253,227,252,216,252,189,253,229,253,149,252,115,252,209,253,53,253,86,251,218,251,89,254,23,0,
157,255,100,254,254,254,168,255,131,254,152,254,155,0,193,2,11,5,115,4,86,0,120,255,214,1,112,1,142,0,194,1,
141,1,96,0,246,0,168,2,6,4,87,3,70,1,205,0,239,0,148,0,54,1,240,0,200,255,70,1,220,2,19,2,
21,2,231,1,24,0,157,0,8,3,90,3,164,1,232,254,183,252,253,252,27,254,5,255,204,255,69,254,11,252,215,252,
15,254,92,253,117,253,30,255,212,0,204,1,141,1,246,0,177,0,68,0,32,0,248,255,135,255,46,0,154,0,70,255,
181,254,35,255,129,255,199,1,76,3,144,0,18,255,1,1,117,0,12,255,89,1,255,1,215,253,118,251,233,252,44,253,
254,251,232,252,245,254,140,255,138,255,42,0,15,1,43,2,6,3,183,2,241,1,144,1,201,0,45,255,208,254,202,1,
180,4,42,2,112,253,123,253,15,0,22,0,209,255,131,1,29,2,63,0,98,254,211,253,57,254,28,0,151,2,192,2,
174,1,200,1,208,255,31,252,167,253,8,2,177,1,243,255,214,0,16,1,152,0,155,0,43,255,87,254,214,255,240,255,
85,254,131,254,22,0,21,0,219,253,192,252,63,255,78,1,218,255,146,254,217,254,8,254,6,253,216,253,221,254,129,254,
101,254,254,255,52,1,167,0,53,0,195,255,51,255,228,0,164,1,239,253,245,251,221,253,113,253,69,252,18,254,122,254,
11,253,65,254,17,1,164,2,231,2,193,2,227,2,38,2,73,1,25,3,44,4,73,1,168,255,75,1,126,2,64,3,
22,3,113,0,241,254,62,0,68,1,46,2,109,3,213,1,13,254,150,253,163,0,137,0,252,252,39,253,70,255,36,253,
159,251,151,253,188,252,244,250,20,253,146,254,146,254,41,0,40,0,165,254,96,255,229,255,101,255,3,1,52,3,24,4,
172,4,64,4,86,2,91,0,116,0,24,3,151,3,177,255,110,253,218,254,120,255,22,255,4,255,200,254,163,255,238,255,
178,253,175,253,222,0,229,0,66,254,148,254,182,0,140,0,160,254,9,254,34,255,83,255,131,254,61,255,211,0,254,0,
87,0,254,255,1,0,251,255,43,255,237,254,32,1,203,2,227,0,51,255,164,1,232,4,129,4,240,1,18,1,169,1,
54,1,156,0,244,1,75,3,131,2,115,1,65,0,43,253,178,251,148,254,89,0,250,254,19,0,80,2,186,255,109,252,
84,254,197,0,95,255,181,254,85,1,88,2,31,0,79,255,42,0,131,254,95,252,21,254,88,0,209,254,108,252,191,252,
61,254,91,255,24,1,24,2,43,0,147,254,248,255,112,0,46,255,225,255,233,0,111,0,239,0,235,0,233,254,171,254,
243,255,241,255,135,255,30,254,143,252,221,254,129,1,244,255,55,255,16,1,22,1,223,0,72,2,116,1,210,254,244,254,
3,1,83,1,193,0,179,1,128,2,154,1,227,0,47,0,179,254,24,255,164,0,119,0,239,0,94,2,144,1,189,0,
63,1,230,255,113,254,141,255,178,0,45,1,65,2,234,2,229,1,246,254,161,252,212,253,192,255,214,255,47,0,15,0,
121,254,249,253,212,253,2,253,191,253,115,255,143,1,160,4,225,4,45,2,161,1,74,2,230,1,50,2,127,1,33,255,
17,255,90,0,96,255,224,253,76,254,68,255,100,254,170,252,46,253,94,254,151,253,168,253,45,255,53,255,228,254,3,255,
39,255,210,1,91,4,206,1,176,254,77,255,199,0,114,2,173,3,83,1,175,253,233,252,179,253,172,253,224,253,177,0,
1,4,146,2,246,254,75,255,124,0,64,255,119,255,38,1,64,1,4,1,228,0,243,255,206,255,119,0,63,0,43,0,
163,1,234,2,205,1,196,255,35,255,124,254,174,253,113,255,75,1,125,255,46,253,64,253,56,254,14,255,204,254,188,253,
206,253,163,253,184,252,34,254,63,0,152,255,68,254,244,253,216,253,89,254,226,254,167,254,81,254,203,253,9,254,191,255,
8,0,244,254,70,0,111,2,199,1,44,0,169,0,96,2,199,2,198,1,31,1,93,0,70,255,13,0,72,1,116,0,
128,0,126,1,7,255,100,252,233,254,214,1,73,0,235,253,221,253,240,254,213,0,220,2,92,2,84,0,127,0,147,1,
200,0,47,0,137,0,146,255,152,254,182,254,215,253,103,253,164,255,124,1,91,0,43,254,142,253,226,254,158,255,140,254,
144,254,173,0,40,2,192,1,63,0,134,255,220,0,194,1,201,0,217,0,244,1,92,1,22,0,207,255,50,0,88,1,
55,2,83,1,245,255,11,255,219,253,157,253,14,255,39,255,224,252,99,252,33,255,233,0,65,0,202,255,220,255,158,255,
192,255,3,0,162,255,215,254,174,254,100,0,160,1,80,255,122,253,65,255,41,0,171,255,141,0,219,255,219,253,137,254,
176,254,120,252,138,252,94,254,206,254,26,255,112,255,248,254,136,254,48,254,174,254,52,0,103,0,254,255,26,1,206,1,
138,1,17,2,44,2,37,1,138,0,114,0,65,1,121,3,228,3,17,0,207,251,84,251,160,252,247,252,254,253,137,255,
119,255,16,0,184,1,143,0,6,255,181,0,178,1,154,0,188,255,196,253,235,251,208,252,158,253,38,254,215,0,38,2,
50,0,21,255,102,0,19,2,175,1,63,255,91,254,49,255,13,255,217,255,131,1,225,255,102,253,125,254,172,0,60,1,
83,1,126,2,220,3,94,2,189,255,184,0,18,2,37,0,140,255,47,1,106,1,150,1,208,1,130,255,44,253,23,253,
144,253,102,254,230,255,225,0,227,0,27,0,101,255,4,0,231,1,249,3,98,4,147,2,225,0,218,255,63,254,114,253,
214,253,138,254,193,0,89,2,33,0,180,253,67,253,103,252,33,253,134,0,228,1,238,0,21,1,14,1,38,255,96,254,
246,0,48,3,189,1,188,0,54,2,216,0,189,253,103,254,59,255,245,253,253,254,188,255,18,253,146,252,227,254,77,255,
95,255,129,0,254,255,253,254,241,255,164,0,227,254,19,253,6,254,114,255,103,254,113,253,86,254,105,254,44,254,232,255,
112,1,91,1,191,1,65,2,206,0,146,254,63,254,110,255,154,255,67,255,208,0,33,3,209,3,74,3,54,2,64,0,
49,254,235,253,51,0,88,2,34,1,159,254,28,254,71,254,230,253,6,254,59,254,77,254,242,254,241,254,239,253,216,253,
181,254,45,255,204,255,77,1,136,2,16,2,118,0,162,255,91,0,95,1,196,0,236,254,252,254,60,1,224,1,209,0,
80,1,133,2,151,2,200,2,18,3,100,2,98,1,60,0,1,0,132,2,146,4,137,2,239,255,156,255,15,255,15,255,
130,1,60,2,255,255,64,0,199,2,126,2,81,0,32,255,111,254,141,254,131,255,8,0,195,0,22,1,120,255,22,255,
125,1,111,2,11,1,39,0,4,0,32,0,161,255,207,253,121,253,91,255,211,255,87,255,112,0,44,1,131,0,53,0,
2,0,37,255,122,254,46,255,90,1,179,2,173,1,59,0,43,255,244,253,44,254,132,255,158,255,118,255,153,255,30,254,
168,253,130,1,181,4,236,2,62,1,192,2,8,3,225,1,165,2,232,2,206,1,18,3,58,4,8,2,252,0,112,2,
33,3,199,3,216,3,158,1,206,0,127,2,73,3,150,3,42,3,247,255,57,253,170,253,33,255,64,0,100,0,169,255,
173,255,123,255,246,254,76,0,214,0,28,255,243,255,179,2,158,2,109,1,234,0,11,0,164,0,135,2,128,2,54,1,
116,0,248,255,56,0,32,1,97,1,5,1,171,0,89,0,61,0,183,0,98,1,251,0,40,0,6,1,47,2,197,1,
28,2,84,3,93,2,128,0,75,0,127,0,70,0,56,0,248,255,80,255,200,254,252,254,193,255,26,0,8,0,182,255,
54,255,125,0,185,2,123,2,69,2,21,4,2,3,51,0,39,1,114,2,115,1,173,1,182,1,71,0,186,0,105,1,
46,0,191,255,75,255,32,254,223,255,88,2,204,0,94,254,203,254,0,0,248,255,165,255,65,0,139,0,68,255,142,255,
162,2,110,3,245,0,188,255,121,255,109,254,88,255,95,2,189,3,137,2,229,255,74,253,200,253,227,0,131,1,205,255,
49,0,94,0,8,253,93,251,228,253,55,255,57,255,114,1,126,2,142,0,102,0,4,2,95,1,192,255,221,255,135,0,
133,0,140,0,156,0,161,255,140,254,89,255,209,255,91,253,229,251,239,253,54,255,49,255,8,1,184,1,131,254,37,252,
189,253,214,255,198,254,185,251,183,251,214,255,12,2,37,0,42,255,234,255,10,255,35,254,253,255,120,2,90,2,92,255,
135,252,37,253,159,255,28,0,26,255,243,254,84,255,166,255,149,0,189,1,211,1,25,1,243,0,253,0,242,255,244,254,
1,255,167,254,4,254,78,254,69,254,153,253,183,253,163,253,25,253,111,254,173,0,126,0,78,254,199,252,214,252,200,253,
17,255,147,0,182,0,240,254,122,255,111,3,123,4,127,1,57,0,245,255,120,253,223,252,239,255,201,0,17,254,140,252,
1,253,81,253,13,254,38,255,255,254,122,254,118,254,209,253,128,253,246,253,106,252,66,250,156,251,248,253,34,254,144,254,
210,255,8,0,16,0,235,255,159,254,235,253,197,254,176,255,187,255,19,255,18,255,60,0,214,0,245,0,151,1,107,1,
137,1,239,3,50,5,29,3,250,0,133,0,71,1,169,2,233,2,135,2,235,2,3,2,240,255,170,255,15,0,183,255,
230,255,209,255,247,254,77,254,124,252,150,250,246,251,14,254,213,253,242,253,180,254,230,253,144,253,156,254,54,254,112,253,
26,255,93,0,108,254,191,252,183,253,53,254,77,253,9,254,233,255,185,255,74,254,26,254,30,254,192,252,235,251,102,253,
9,255,114,255,141,0,144,1,83,0,104,255,19,0,220,255,169,0,185,3,174,3,129,0,218,255,29,0,99,254,90,254,
229,0,86,2,183,1,5,0,160,254,30,255,84,0,42,0,224,254,232,253,95,254,11,255,20,254,242,253,138,0,38,2,
38,1,170,255,37,254,3,254,247,255,70,0,150,255,199,1,194,2,151,255,45,254,184,255,108,0,207,1,158,3,230,1,
159,255,202,0,244,1,65,1,44,1,2,1,200,255,201,255,202,0,21,0,84,254,215,253,109,254,194,254,144,254,160,254,
97,255,89,255,156,253,98,252,251,252,161,253,238,253,207,254,156,255,145,0,108,2,58,3,177,1,73,255,86,253,40,253,
226,254,185,255,51,255,199,255,169,0,42,0,119,255,85,255,47,0,1,2,60,2,33,1,218,1,51,2,164,255,75,254,
192,255,108,0,102,0,156,1,87,2,255,0,24,255,21,255,206,0,15,1,114,255,99,255,157,0,69,0,160,255,93,0,
223,0,220,0,63,1,154,0,199,254,213,254,157,0,77,0,148,254,28,255,5,0,177,254,97,254,15,0,95,0,234,0,
191,3,243,3,248,255,173,253,169,254,173,255,120,0,121,1,153,1,163,1,69,2,195,1,180,0,245,1,182,3,230,1,
215,254,1,255,111,0,137,0,125,1,139,2,55,0,243,253,66,0,95,2,206,255,110,253,252,254,10,1,114,1,129,1,
68,1,232,0,8,1,31,0,118,254,251,254,75,0,85,255,121,254,111,255,79,255,43,254,161,254,174,255,203,255,90,255,
166,254,225,254,50,0,20,0,99,255,238,0,8,2,221,0,106,1,144,3,234,2,204,0,136,0,19,1,31,1,54,0,
8,254,180,253,35,1,52,3,124,0,211,253,181,254,38,0,229,0,186,2,58,3,177,255,252,252,241,254,196,0,105,0,
242,1,170,3,11,2,87,1,68,3,237,2,54,1,243,1,207,2,235,2,122,4,123,4,4,1,30,255,47,0,57,0,
117,255,212,255,250,255,35,0,72,1,186,0,161,254,82,255,87,1,120,0,234,254,65,254,228,251,156,250,246,253,8,1,
191,0,215,0,242,0,190,254,159,253,249,254,138,255,233,255,211,1,149,2,128,1,110,1,72,1,246,254,227,253,24,0,
19,1,206,254,59,253,68,254,20,0,54,1,238,0,246,255,10,0,214,0,236,1,212,3,129,4,213,2,156,1,252,0,
84,255,235,254,10,0,169,255,85,255,215,0,228,0,160,255,203,0,112,2,183,1,244,1,132,4,204,4,181,1,152,255,
227,255,16,1,221,2,92,3,105,0,226,253,253,254,28,0,22,0,57,1,219,0,40,254,131,254,54,1,44,1,180,0,
228,1,175,0,149,253,233,252,235,253,32,255,10,1,163,1,93,0,49,0,161,0,149,255,211,254,188,254,193,253,47,254,
145,0,58,0,103,253,14,253,145,254,55,255,7,0,203,0,64,0,182,255,102,255,5,255,58,0,69,1,62,255,166,253,
128,255,107,1,107,1,84,0,64,254,198,253,137,0,242,1,253,255,246,254,166,255,109,255,127,255,63,1,51,2,201,0,
32,255,100,255,111,0,10,0,20,255,126,255,156,0,156,1,205,2,8,3,109,1,198,255,179,255,154,0,246,0,41,0,
183,255,29,1,193,2,147,2,109,1,251,0,83,1,163,1,8,1,78,255,172,253,203,253,185,255,97,1,196,0,26,255,
178,255,94,2,221,2,91,0,209,254,188,254,206,253,30,254,81,0,187,255,32,253,102,253,79,254,86,253,175,253,146,254,
149,253,38,254,202,0,158,1,119,1,49,1,210,254,117,253,199,255,212,0,178,254,212,253,150,254,149,254,59,255,225,0,
165,0,241,254,221,254,49,0,5,1,42,1,189,0,126,0,219,1,40,3,17,2,156,0,173,0,26,1,243,1,223,2,
165,1,195,255,226,255,49,0,203,255,113,0,134,0,80,254,175,252,48,253,126,253,73,253,182,254,215,0,78,0,179,253,
249,252,166,254,110,0,231,1,243,2,172,2,226,1,164,1,160,1,171,1,101,1,65,0,56,255,131,255,147,0,175,0,
74,255,174,254,245,255,34,0,198,254,73,255,253,0,102,1,167,1,90,1,48,255,43,254,121,255,22,0,236,255,19,0,
93,255,137,254,177,254,102,254,40,254,45,255,85,255,99,254,59,255,17,1,41,1,109,0,3,0,42,255,172,254,30,255,
254,254,38,255,28,1,193,1,226,255,12,0,210,1,11,0,151,253,42,0,44,4,78,4,145,2,213,1,246,0,25,255,
11,254,10,255,127,0,4,1,61,1,69,1,78,1,42,2,223,1,100,255,65,254,255,254,255,254,193,255,59,1,50,0,
94,255,28,1,241,0,67,255,227,255,91,255,220,252,201,253,32,0,125,255,235,254,235,254,199,252,22,252,109,254,243,254,
102,254,94,0,236,1,32,2,192,3,94,3,87,255,45,255,190,3,250,4,254,2,165,2,66,2,12,1,223,0,163,255,
183,253,9,255,114,1,153,1,95,1,23,1,245,255,117,255,128,254,127,252,51,253,225,255,56,0,158,255,244,255,43,255,
205,253,198,253,36,254,134,254,62,255,59,255,200,254,246,254,15,255,27,255,57,0,91,1,181,0,23,255,115,254,21,255,
68,0,81,1,59,1,240,255,48,255,187,255,167,0,212,1,248,2,208,2,190,1,33,1,228,0,159,0,87,0,57,0,
164,0,184,0,100,255,89,254,116,255,101,1,191,1,113,255,45,252,101,251,67,253,227,254,109,255,100,255,16,255,117,255,
238,255,80,255,182,255,74,1,142,0,237,254,57,0,183,1,44,0,97,254,69,254,36,254,216,253,24,254,202,253,229,252,
54,253,165,254,171,255,98,0,4,1,20,1,45,1,234,0,186,254,213,252,254,253,165,255,150,255,133,255,151,255,4,255,
55,255,203,0,169,2,20,3,232,0,31,255,77,0,163,0,253,254,223,255,111,1,113,255,14,254,100,255,142,254,154,252,
244,253,195,255,123,255,17,0,112,1,31,1,100,0,53,0,114,255,32,255,153,255,252,254,240,254,33,1,154,1,197,255,
96,0,153,1,156,255,197,254,202,0,130,0,20,255,162,0,243,1,142,0,70,255,207,254,121,254,206,254,243,254,229,254,
9,0,166,0,34,255,95,254,224,255,66,0,36,254,61,253,15,255,229,255,166,254,146,254,55,255,242,253,201,252,199,253,
1,255,156,255,226,255,250,254,254,253,239,254,197,0,159,1,121,1,121,1,152,2,146,3,65,2,47,0,136,0,69,2,
14,2,49,0,171,255,153,0,242,0,27,1,132,1,28,0,164,253,160,253,96,255,68,0,202,0,254,0,177,255,89,254,
187,254,199,255,12,0,214,255,28,0,174,0,126,0,216,255,238,255,189,0,127,1,49,1,175,255,72,255,162,0,183,0,
151,255,48,0,153,0,14,254,12,252,201,253,59,0,83,0,113,255,226,254,158,253,26,252,90,252,20,254,188,255,105,0,
24,255,123,253,155,254,137,255,105,253,59,253,45,0,80,0,245,254,92,0,144,0,79,254,111,254,95,255,14,254,167,253,
25,254,180,252,200,252,14,255,56,254,185,251,178,252,34,254,110,253,229,254,244,1,179,1,157,0,228,1,232,1,70,0,
250,0,183,2,27,3,157,3,65,3,107,0,52,254,142,254,176,255,172,0,161,0,176,254,242,252,60,253,52,254,177,254,
31,255,169,255,154,255,115,254,81,253,120,253,57,254,211,254,100,255,119,255,21,255,149,254,130,253,219,252,194,253,80,254,
204,253,71,254,111,255,223,255,74,0,177,0,51,1,17,3,5,4,136,1,166,255,105,1,148,2,248,0,238,255,184,255,
33,254,251,252,60,254,18,0,50,1,48,1,47,255,173,253,128,255,182,1,207,1,172,1,24,1,142,255,177,255,76,0,
49,254,96,252,156,253,6,255,15,255,180,254,88,254,178,254,45,255,157,254,223,254,91,0,45,0,9,255,180,255,3,1,
99,1,166,1,233,1,121,1,124,0,239,255,112,0,252,0,16,1,223,1,151,2,182,1,56,1,237,1,26,1,91,255,
7,0,9,2,51,2,219,0,215,255,172,255,106,0,158,1,219,1,5,1,185,0,231,0,73,0,210,255,78,0,57,0,
203,255,190,0,194,1,212,0,71,255,29,255,216,255,35,0,107,0,35,1,164,0,77,255,47,0,198,1,156,0,41,255,
111,255,44,255,133,255,99,1,207,0,173,254,90,255,178,0,181,0,185,1,138,2,153,1,107,1,198,1,188,0,224,255,
247,255,60,0,50,1,177,1,122,0,242,255,59,1,108,2,18,3,47,3,38,2,159,1,218,2,122,3,0,2,58,0,
108,255,54,255,83,255,86,255,59,255,55,0,192,1,94,1,249,255,84,0,230,0,237,255,110,0,65,3,56,4,135,2,
189,1,48,2,101,1,217,255,145,255,190,255,66,255,149,255,184,0,164,0,78,0,7,1,131,0,213,254,37,255,86,0,
19,0,213,255,217,255,5,255,59,255,238,0,176,1,133,1,52,1,233,255,1,255,232,255,48,0,246,254,72,255,114,1,
45,2,186,0,45,255,125,254,171,254,5,0,8,2,92,3,247,2,186,0,128,254,132,254,187,255,86,0,45,1,178,1,
200,255,245,253,130,255,120,1,215,0,225,255,44,0,167,0,85,1,19,2,191,1,246,0,198,0,183,0,42,1,171,2,
59,3,18,2,90,1,183,0,214,254,179,254,9,1,10,1,227,254,112,255,50,1,176,0,87,0,139,1,96,1,133,255,
178,254,23,0,51,2,12,2,104,255,106,254,159,0,182,1,85,255,113,253,13,255,210,0,161,255,95,254,127,255,160,0,
159,0,161,0,249,255,2,255,200,255,251,0,108,0,128,255,174,255,95,0,221,0,145,0,170,255,81,255,232,255,21,1,
16,2,167,1,100,0,244,255,57,0,113,0,151,0,77,0,169,255,43,255,166,254,180,254,216,255,90,0,117,255,42,255,
25,0,91,0,17,255,223,253,52,254,35,255,201,255,162,0,147,0,243,254,164,254,243,255,96,255,238,253,167,254,136,255,
66,255,17,0,36,1,162,0,134,0,117,1,177,0,126,254,39,254,167,255,75,0,64,0,252,0,59,1,169,0,30,1,
50,1,63,255,219,254,17,1,44,1,52,255,158,255,84,1,239,0,120,255,128,254,143,253,96,253,172,254,124,255,127,254,
186,253,134,254,72,255,41,255,30,255,120,255,80,0,60,1,142,0,32,255,135,255,113,0,1,0,42,0,60,1,60,1,
249,0,56,1,199,0,63,0,98,0,100,0,215,0,174,1,16,1,7,0,159,0,41,1,59,0,67,255,182,254,71,254,
148,254,30,255,243,254,31,255,88,0,249,0,51,0,13,0,143,1,147,2,217,1,212,0,23,0,92,255,146,255,47,0,
55,255,215,253,53,254,9,255,67,255,250,255,152,0,32,0,2,0,230,0,131,1,133,1,15,1,69,0,94,0,242,0,
170,255,145,253,251,253,252,255,90,0,178,255,111,0,152,1,175,0,196,254,245,254,113,0,179,255,98,253,54,253,10,255,
195,255,82,255,242,255,37,1,152,0,7,255,240,254,145,255,49,255,19,255,176,255,148,255,214,255,103,1,172,1,133,0,
205,0,154,1,47,1,60,1,126,1,42,0,123,255,159,0,92,0,245,254,163,255,117,0,23,255,248,254,35,1,81,1,
148,255,206,255,213,0,182,255,58,254,120,254,47,255,52,255,217,254,144,254,169,254,23,255,139,255,248,255,64,0,64,0,
3,0,197,255,249,255,65,0,172,255,9,255,125,255,243,255,234,255,108,0,51,1,126,1,52,1,45,0,214,255,9,1,
26,1,137,255,34,255,27,255,104,254,152,255,86,1,87,0,139,255,243,0,249,0,81,255,249,254,163,255,228,255,173,255,
69,255,110,255,190,255,36,255,169,254,192,254,149,254,90,255,186,0,236,255,154,254,140,255,228,255,67,254,17,254,38,255,
210,254,81,254,8,255,120,255,10,255,94,254,238,253,196,254,105,0,128,0,172,255,118,0,26,1,38,255,211,253,185,255,
52,1,5,0,22,255,114,255,15,255,2,254,236,253,185,254,82,255,133,255,245,255,156,0,204,0,230,0,40,1,127,0,
153,255,77,0,63,1,184,0,103,0,38,1,32,1,2,0,148,255,241,0,236,2,212,2,152,0,90,255,176,255,156,255,
147,255,105,0,191,0,88,0,4,0,89,255,227,254,194,255,115,0,144,255,193,254,25,255,37,255,53,254,128,253,248,253,
96,255,140,0,30,0,140,254,26,254,43,255,239,255,240,255,147,255,176,254,219,254,249,0,182,1,253,255,177,255,177,0,
105,255,185,253,159,254,224,255,52,0,48,1,196,1,132,0,125,255,64,0,152,1,47,2,216,1,6,1,23,0,28,255,
189,254,175,255,231,0,144,0,233,254,29,254,194,254,12,255,187,254,99,255,25,0,38,255,42,254,147,254,86,255,112,0,
152,1,233,0,118,255,181,255,86,0,18,0,57,0,126,0,17,0,28,0,115,0,245,255,210,255,198,0,31,1,52,0,
82,255,68,255,174,255,10,0,55,0,58,0,20,0,215,255,78,255,232,254,41,0,81,2,33,2,180,255,121,254,8,255,
163,255,237,255,170,255,127,254,228,253,54,255,16,1,28,1,150,255,11,255,23,0,150,0,26,0,22,0,39,0,180,255,
178,255,208,255,77,255,114,255,155,0,43,1,15,1,37,1,4,1,184,0,254,0,100,1,131,1,219,1,204,1,176,0,
117,0,50,2,39,3,199,1,130,0,66,0,93,255,127,254,15,255,118,255,219,254,31,255,86,0,104,0,91,255,231,254,
119,255,169,0,245,1,183,1,133,255,132,254,33,0,191,0,247,254,216,253,194,253,87,253,221,253,226,254,131,254,71,254,
104,254,24,253,24,253,144,255,184,255,24,254,254,254,145,255,4,254,216,254,8,1,80,0,76,255,65,0,145,0,10,0,
237,255,136,255,146,255,165,0,4,1,160,0,186,0,229,0,76,1,163,2,103,3,72,2,248,0,106,1,188,2,225,2,
43,2,48,2,54,2,38,1,45,0,226,255,190,255,57,0,190,0,230,255,49,255,65,0,39,1,69,0,203,254,40,254,
214,254,2,0,249,255,220,254,121,254,58,255,27,0,62,0,130,255,19,255,205,255,51,0,51,255,161,254,164,255,150,0,
119,0,41,0,181,255,129,254,126,253,219,253,2,255,176,255,156,255,75,255,21,255,226,254,77,255,215,0,123,1,179,255,
165,254,160,0,43,2,12,1,20,0,39,0,59,255,31,254,224,254,57,0,47,0,200,255,143,0,78,1,176,0,76,0,
45,1,139,1,246,0,217,0,215,0,121,0,179,0,14,1,136,0,221,255,151,255,133,255,174,255,154,255,75,255,104,255,
61,255,164,254,213,254,241,254,5,254,14,254,117,255,40,0,233,255,80,255,186,254,93,255,62,0,64,255,62,254,46,255,
255,255,207,255,244,255,178,255,97,254,210,253,11,255,136,0,129,0,154,255,205,255,143,0,114,0,246,0,123,2,94,2,
9,1,216,0,184,0,15,0,207,0,20,2,165,1,197,0,199,0,135,0,235,255,34,0,204,0,196,0,53,0,235,255,
222,255,219,255,59,0,162,0,56,0,161,255,200,255,188,255,5,255,29,255,20,0,249,255,241,254,30,255,72,0,153,0,
120,0,22,1,172,1,94,1,147,0,206,255,192,255,91,0,60,0,220,255,191,0,78,1,106,0,63,0,202,0,149,0,
35,1,22,2,228,0,214,255,247,0,195,0,27,255,158,255,125,0,190,255,159,0,147,2,184,1,26,0,87,0,253,255,
47,255,62,0,130,0,136,254,176,254,57,1,76,1,208,255,118,0,14,1,166,255,52,255,40,0,57,0,63,0,208,0,
85,0,184,255,13,0,128,255,168,254,253,255,167,1,39,1,4,0,122,255,226,254,225,254,218,255,59,0,149,255,77,255,
180,255,39,0,228,0,183,1,89,1,136,0,59,1,10,2,249,0,38,0,205,0,111,0,235,254,185,254,151,255,57,0,
212,0,20,1,121,0,197,255,181,255,76,0,206,0,141,0,78,0,135,0,81,0,18,0,94,0,222,255,217,254,47,255,
204,255,32,255,150,254,53,255,242,255,219,255,231,254,119,254,204,255,26,1,85,0,25,255,98,255,13,0,151,255,247,254,
148,255,75,0,164,255,68,255,128,0,10,1,234,255,198,255,68,1,5,2,87,1,147,0,132,0,222,0,23,1,50,1,
27,1,46,0,52,255,236,255,32,1,148,0,210,255,163,0,203,0,24,255,104,254,172,255,75,0,212,255,236,255,236,255,
12,255,251,254,236,255,204,255,3,255,122,255,0,0,213,254,196,253,161,254,240,255,56,0,21,0,195,255,60,255,156,255,
124,0,3,0,101,255,176,0,178,1,105,0,101,255,43,0,168,0,6,0,127,255,193,255,144,0,205,0,217,255,224,254,
182,254,72,255,182,0,142,1,183,0,175,0,19,2,228,1,192,0,170,0,214,255,177,254,167,255,81,0,70,255,130,255,
79,0,149,255,135,255,128,0,105,0,35,0,5,0,50,255,82,255,108,0,112,0,113,0,12,1,84,0,38,255,23,255,
41,255,105,255,29,0,221,255,42,255,52,255,10,255,200,254,77,255,126,255,1,255,242,254,60,255,140,255,249,255,252,255,
150,255,102,255,93,255,115,255,147,255,68,255,59,255,126,0,213,1,106,1,5,0,206,255,223,0,151,1,137,1,24,1,
19,0,106,255,113,0,152,1,1,1,244,255,181,255,236,255,206,0,201,1,97,1,178,0,114,1,249,1,230,0,27,0,
121,0,112,0,210,255,154,255,73,255,89,254,146,253,133,253,126,254,43,0,117,0,223,254,120,254,32,0,247,0,109,0,
96,0,212,0,23,1,10,1,98,0,245,255,164,0,7,1,100,0,241,255,119,255,151,254,232,254,64,0,113,0,188,255,
196,255,42,0,225,255,58,255,50,255,189,255,180,255,94,255,246,255,52,0,17,255,228,254,243,255,141,255,166,254,91,255,
165,255,111,254,18,254,55,255,135,0,9,1,69,0,79,255,98,255,168,255,215,255,151,0,236,0,119,0,83,0,67,0,
22,0,108,0,132,0,80,0,216,0,248,0,251,255,167,255,53,0,138,0,189,0,127,0,253,255,141,0,66,1,175,0,
45,0,62,0,228,255,5,0,230,0,188,0,231,255,212,255,134,255,206,254,137,255,1,1,236,0,0,0,106,255,133,254,
112,254,94,0,113,1,61,0,225,255,204,0,192,0,210,0,181,1,227,0,207,254,160,254,242,255,68,0,65,255,67,254,
111,254,164,255,187,0,244,0,103,0,205,255,169,255,111,255,17,255,108,255,190,255,7,255,192,254,165,255,7,0,155,255,
121,255,145,255,211,255,141,0,235,0,133,0,115,0,212,0,136,0,245,255,115,0,64,1,186,0,190,255,8,0,248,0,
49,1,213,0,111,0,38,0,14,0,233,255,175,255,254,255,204,0,31,1,162,0,238,255,144,255,158,255,186,255,122,255,
4,255,176,254,173,254,24,255,97,255,15,255,86,255,101,0,239,255,94,254,192,254,250,255,138,255,126,255,206,0,173,0,
110,255,120,255,209,255,155,255,19,0,200,0,106,0,122,255,16,255,143,255,75,0,77,0,61,0,28,1,251,1,208,1,
8,1,62,0,191,255,227,255,170,0,82,1,238,0,0,0,219,255,253,255,103,255,19,255,133,255,164,255,137,255,255,255,
45,0,114,255,43,255,54,0,253,0,75,0,152,255,220,255,4,0,62,0,58,1,148,1,215,0,105,0,38,0,200,255,
55,0,199,0,127,0,17,0,130,255,225,254,96,255,60,0,79,0,9,1,72,2,185,1,66,0,231,255,115,255,125,254,
14,255,123,0,77,0,117,255,251,255,236,0,233,0,117,0,247,255,101,255,108,255,89,0,24,1,121,0,225,254,232,253,
234,253,54,254,7,255,217,255,42,255,73,254,18,255,106,255,35,254,202,253,152,254,153,254,199,254,56,0,250,0,219,255,
121,254,71,254,183,254,14,255,220,255,2,1,56,1,196,0,133,0,15,0,246,255,10,1,146,1,185,0,94,0,206,0,
213,0,167,0,131,0,73,0,169,0,119,1,136,1,52,1,138,1,247,1,116,1,147,0,68,0,251,255,90,255,119,255,
63,0,57,0,211,255,81,0,178,0,10,0,151,255,12,0,154,0,203,0,137,0,249,255,238,255,105,0,110,0,43,0,
23,0,152,255,37,255,135,255,75,255,3,254,227,253,255,254,108,255,80,255,81,255,28,255,248,254,245,254,221,254,17,255,
3,255,159,254,170,255,74,1,199,0,134,255,195,255,10,0,204,255,133,0,101,1,242,0,72,0,106,0,41,0,16,255,
236,254,69,0,252,0,78,0,170,255,132,255,211,255,145,0,146,0,234,255,39,0,159,0,104,0,176,0,255,0,227,255,
199,254,17,255,243,255,203,0,24,1,66,0,95,255,191,255,186,0,54,1,59,1,239,0,243,255,11,255,181,255,240,0,
193,0,32,0,63,0,28,0,227,255,66,0,30,0,162,255,232,255,10,0,187,255,184,255,62,255,165,254,68,255,193,255,
121,255,41,0,183,0,111,255,175,254,179,255,82,0,51,0,55,0,230,255,243,255,62,1,249,1,18,1,38,0,223,255,
164,255,164,255,239,255,244,255,129,255,236,254,5,255,185,255,116,255,119,254,27,255,231,0,67,1,67,0,174,255,42,0,
26,1,62,1,109,0,216,255,204,255,1,0,103,0,25,0,53,255,41,255,134,255,205,255,231,0,109,1,82,0,75,0,
141,1,59,1,90,0,217,0,221,0,210,255,224,255,255,0,14,1,199,255,19,255,175,255,47,0,75,0,217,0,204,0,
176,255,133,255,90,0,82,0,136,255,254,254,45,255,64,0,254,0,169,0,135,0,184,0,132,0,200,0,89,1,200,0,
251,255,18,0,12,0,205,255,46,0,125,0,59,0,17,0,196,255,29,255,11,255,110,255,90,255,134,255,86,0,120,0,
244,255,49,0,231,0,27,1,197,0,33,0,244,255,156,0,226,0,167,0,222,0,115,0,47,255,140,255,51,1,99,1,
214,0,31,1,198,0,79,255,230,254,6,0,196,0,98,0,21,0,90,0,58,0,142,255,101,255,213,255,24,0,82,0,
206,0,224,0,110,0,93,0,96,0,153,255,8,255,104,255,140,255,144,255,53,0,29,0,65,255,114,255,210,255,137,255,
62,0,46,1,155,0,62,0,163,0,218,255,176,254,201,254,187,255,27,1,205,1,125,0,248,254,27,255,185,255,228,255,
172,255,13,255,43,255,99,0,193,0,227,255,124,255,159,255,143,255,198,255,54,0,224,255,14,255,217,254,23,255,56,255,
129,255,188,255,101,255,70,255,229,255,57,0,205,255,82,255,32,255,53,255,97,255,104,255,154,255,220,255,160,255,146,255,
86,0,222,0,147,0,54,0,240,255,158,255,149,255,157,255,93,255,102,255,163,255,21,255,139,254,141,255,203,0,152,0,
56,0,81,0,224,255,206,255,185,0,232,0,142,0,187,0,10,0,227,254,125,255,91,0,193,255,126,255,247,255,219,255,
231,255,80,0,207,255,49,255,185,255,70,0,218,255,89,255,115,255,139,255,83,255,170,255,230,0,171,1,18,1,42,0,
10,0,98,0,194,0,61,1,89,1,170,0,18,0,27,0,224,255,78,255,65,255,110,255,25,255,102,254,4,254,184,254,
219,255,199,255,23,255,73,255,169,255,216,255,112,0,73,0,14,255,205,254,207,255,113,0,77,0,221,255,201,255,110,0,
219,0,132,0,68,0,114,0,219,0,108,1,134,1,234,0,50,0,220,255,92,0,53,1,241,0,254,255,236,255,37,0,
220,255,201,255,203,255,166,255,93,0,41,1,9,0,104,254,218,254,227,255,150,255,208,255,14,1,110,0,139,254,202,254,
242,255,118,255,82,255,195,0,19,1,146,255,207,254,134,255,243,255,81,255,187,254,4,255,127,255,109,255,27,255,40,255,
150,255,194,255,159,255,52,0,73,1,27,1,220,255,97,255,156,255,142,255,153,255,15,0,38,0,185,255,181,255,48,0,
38,0,153,255,149,255,30,0,105,0,89,0,68,0,99,0,135,0,87,0,66,0,129,0,122,0,161,0,104,1,92,1,
103,0,89,0,197,0,87,0,187,255,108,255,82,255,0,0,241,0,239,0,137,0,161,0,156,0,245,255,164,255,69,0,
85,0,36,255,231,254,241,255,193,255,207,254,26,255,127,255,28,255,4,255,2,255,205,254,41,255,208,255,72,0,113,0,
156,255,162,254,255,254,161,255,165,255,16,0,89,0,204,255,1,0,21,1,19,1,77,0,98,0,187,0,88,0,34,0,
184,0,19,1,213,0,214,0,192,0,205,255,70,255,21,0,147,0,63,0,178,0,70,1,114,0,216,255,115,0,16,0,
200,254,23,255,73,0,142,0,108,0,6,0,79,255,136,255,32,0,216,255,31,0,37,1,167,0,93,255,174,255,162,0,
99,0,164,255,162,255,28,0,94,0,164,0,30,1,254,0,84,0,19,0,247,255,217,255,55,0,60,0,178,255,242,255,
75,0,155,255,120,255,46,0,208,255,12,255,174,255,188,0,212,0,140,0,115,0,251,255,43,255,43,255,252,255,48,0,
191,255,168,255,174,255,150,255,174,255,122,255,247,254,241,254,84,255,212,255,25,0,100,255,203,254,228,255,41,1,30,1,
253,0,1,1,68,0,153,255,180,255,247,255,80,0,185,0,156,0,40,0,177,255,216,254,250,253,67,254,180,255,191,0,
92,0,158,255,218,255,90,0,25,0,225,255,56,0,46,0,182,255,178,255,237,255,6,0,64,0,52,0,182,255,221,255,
132,0,70,0,186,255,90,0,31,1,103,0,84,255,212,255,14,1,52,1,245,0,46,1,161,0,183,255,109,0,114,1,
209,0,7,0,255,255,154,255,44,255,70,255,121,255,1,0,118,0,14,0,186,255,202,255,121,255,143,255,2,0,86,255,
166,254,85,255,195,255,54,255,184,254,24,254,109,253,251,253,73,255,171,255,83,255,156,255,32,0,142,255,213,254,71,255,
152,255,101,255,50,0,212,0,235,255,169,255,139,0,131,0,82,0,213,0,121,0,212,255,44,0,29,0,245,255,102,1,
104,2,111,1,4,1,146,1,195,0,162,255,64,0,24,1,250,0,17,1,27,1,80,0,40,0,53,1,181,1,103,1,
107,1,31,1,207,255,10,255,217,255,159,0,33,0,106,255,83,255,120,255,212,255,76,0,31,0,137,255,76,255,56,255,
92,255,242,255,21,0,133,255,104,255,216,255,238,255,157,255,80,255,23,255,250,254,37,255,101,255,64,255,252,254,59,255,
132,255,106,255,132,255,181,255,201,255,98,0,217,0,125,0,147,0,8,1,103,0,117,255,23,255,210,254,39,255,236,255,
198,255,142,255,55,0,130,0,63,0,64,0,92,0,171,0,2,1,153,0,63,0,130,0,17,0,84,255,246,255,251,0,
206,0,110,0,217,0,246,0,48,0,243,255,180,0,223,0,23,0,159,255,197,255,60,0,175,0,61,0,75,255,33,255,
78,255,104,255,37,0,161,0,223,255,117,255,80,0,253,0,189,0,43,0,194,255,207,255,96,0,254,0,37,1,150,0,
162,255,58,255,233,255,180,0,103,0,184,255,226,255,245,255,241,254,111,254,96,255,251,255,132,255,79,255,145,255,124,255,
67,255,45,255,14,255,83,255,237,255,206,255,74,255,133,255,203,255,144,255,38,0,38,1,179,0,193,255,18,0,171,0,
150,0,159,0,222,0,144,0,224,255,165,255,247,255,13,0,190,255,226,255,112,0,125,0,48,0,41,0,45,0,7,0,
28,0,93,0,42,0,176,255,246,255,201,0,235,0,169,0,217,0,214,0,108,0,59,0,213,255,77,255,151,255,240,255,
107,255,25,255,107,255,146,255,170,255,224,255,169,255,71,255,108,255,202,255,237,255,244,255,205,255,107,255,116,255,234,255,
189,255,47,255,113,255,237,255,247,255,60,0,63,0,158,255,247,255,26,1,14,1,84,0,233,255,124,255,216,255,235,0,
245,0,167,0,60,1,80,1,189,0,220,0,237,0,113,0,124,0,186,0,127,0,83,0,32,0,179,255,180,255,23,0,
100,0,141,0,55,0,162,255,237,255,215,0,37,1,220,0,124,0,246,255,127,255,103,255,118,255,150,255,226,255,220,255,
63,255,247,254,119,255,209,255,154,255,79,255,254,254,222,254,104,255,253,255,248,255,227,255,213,255,143,255,137,255,118,255,
188,254,176,254,24,0,253,0,89,0,184,255,13,0,190,0,40,1,2,1,148,0,80,0,6,0,217,255,99,0,203,0,
21,0,127,255,233,255,32,0,5,0,121,0,168,0,28,0,14,0,82,0,253,255,252,255,187,0,244,0,155,0,156,0,
183,0,164,0,197,0,215,0,116,0,40,0,79,0,96,0,61,0,97,0,118,0,232,255,114,255,165,255,165,255,70,255,
119,255,240,255,198,255,119,255,176,255,212,255,119,255,63,255,94,255,70,255,54,255,168,255,233,255,186,255,235,255,243,255,
254,254,107,254,43,255,185,255,65,255,225,254,39,255,94,255,6,255,140,254,139,254,240,254,88,255,168,255,246,255,97,0,
169,0,81,0,202,255,217,255,88,0,217,0,26,1,242,0,176,0,85,0,228,255,83,0,43,1,150,0,140,255,225,255,
108,0,103,0,181,0,217,0,114,0,105,0,129,0,86,0,98,0,75,0,8,0,117,0,245,0,128,0,251,255,74,0,
201,0,219,0,185,0,128,0,253,255,176,255,39,0,116,0,215,255,69,255,97,255,185,255,5,0,1,0,184,255,153,255,
62,255,163,254,215,254,101,255,14,255,189,254,127,255,69,0,5,0,63,255,233,254,32,255,82,255,142,255,14,0,247,255,
244,254,73,254,171,254,97,255,190,255,198,255,182,255,183,255,251,255,135,0,213,0,158,0,78,0,236,255,132,255,220,255,
185,0,216,0,96,0,60,0,55,0,237,255,199,255,239,255,11,0,40,0,104,0,26,0,26,255,209,254,168,255,53,0,
15,0,243,255,253,255,15,0,79,0,182,0,17,1,235,0,108,0,139,0,237,0,145,0,24,0,36,0,55,0,65,0,
44,0,186,255,134,255,178,255,197,255,253,255,33,0,193,255,183,255,37,0,36,0,10,0,123,0,243,0,216,0,52,0,
178,255,194,255,218,255,253,255,133,0,107,0,142,255,128,255,64,0,199,0,251,0,110,0,61,255,22,255,14,0,89,0,
235,255,13,0,156,0,175,0,97,0,32,0,175,255,42,255,60,255,160,255,201,255,250,255,241,255,67,255,218,254,63,255,
133,255,43,255,203,254,28,255,242,255,78,0,6,0,223,255,235,255,230,255,228,255,217,255,220,255,236,255,206,255,18,0,
189,0,105,0,85,255,47,255,170,255,201,255,214,255,221,255,155,255,146,255,18,0,146,0,119,0,14,0,29,0,118,0,
150,0,193,0,219,0,155,0,140,0,173,0,133,0,117,0,132,0,80,0,101,0,231,0,229,0,53,0,177,255,215,255,
41,0,1,0,253,255,138,0,84,0,68,255,91,255,143,0,209,0,237,255,68,255,81,255,159,255,193,255,161,255,116,255,
125,255,150,255,109,255,109,255,201,255,177,255,106,255,242,255,70,0,165,255,150,255,67,0,66,0,253,255,76,0,132,0,
48,0,195,255,172,255,231,255,13,0,22,0,53,0,25,0,223,255,9,0,104,0,189,0,238,0,167,0,93,0,150,0,
179,0,103,0,18,0,192,255,164,255,209,255,191,255,146,255,188,255,250,255,37,0,100,0,168,0,240,0,247,0,130,0,
27,0,44,0,73,0,242,255,98,255,89,255,163,255,141,255,196,255,113,0,49,0,141,255,243,255,83,0,47,0,135,0,
172,0,83,0,162,0,212,0,10,0,150,255,214,255,242,255,255,255,13,0,186,255,26,255,181,254,6,255,102,255,3,255,
235,254,147,255,135,255,41,255,185,255,243,255,57,255,43,255,197,255,226,255,1,0,111,0,117,0,102,0,181,0,153,0,
20,0,32,0,77,0,9,0,101,0,65,1,21,1,81,0,17,0,231,255,177,255,196,255,224,255,49,0,154,0,82,0,
228,255,23,0,58,0,49,0,103,0,75,0,248,255,53,0,98,0,203,255,60,255,53,255,6,255,153,254,196,254,116,255,
189,255,173,255,188,255,193,255,234,255,66,0,49,0,253,255,25,0,17,0,8,0,49,0,235,255,164,255,241,255,235,255,
127,255,125,255,151,255,159,255,222,255,231,255,172,255,155,255,147,255,160,255,1,0,148,0,235,0,134,0,23,0,181,0,
29,1,76,0,3,0,161,0,171,0,130,0,183,0,148,0,102,0,160,0,179,0,142,0,95,0,57,0,112,0,194,0,
202,0,174,0,68,0,178,255,130,255,69,255,231,254,69,255,20,0,136,0,155,0,45,0,137,255,110,255,155,255,174,255,
240,255,35,0,245,255,193,255,202,255,13,0,66,0,2,0,153,255,147,255,219,255,33,0,15,0,170,255,174,255,41,0,
97,0,104,0,128,0,36,0,141,255,184,255,93,0,108,0,245,255,151,255,103,255,145,255,31,0,81,0,240,255,219,255,
93,0,210,0,137,0,125,255,243,254,134,255,196,255,126,255,233,255,42,0,168,255,211,255,67,0,202,255,139,255,214,255,
188,255,250,255,170,0,110,0,161,255,108,255,162,255,209,255,3,0,102,0,174,0,11,0,255,254,13,255,244,255,121,0,
173,0,241,0,229,0,134,0,152,0,13,1,169,0,191,255,2,0,182,0,109,0,50,0,59,0,139,255,67,255,249,255,
72,0,79,0,125,0,38,0,28,0,226,0,246,0,78,0,12,0,14,0,67,0,185,0,174,0,37,0,207,255,167,255,
145,255,165,255,204,255,210,255,185,255,238,255,77,0,229,255,56,255,128,255,232,255,143,255,100,255,179,255,241,255,41,0,
36,0,220,255,252,255,68,0,69,0,160,0,1,1,112,0,204,255,254,255,20,0,207,255,9,0,54,0,167,255,81,255,
140,255,121,255,21,255,226,254,243,254,89,255,143,255,67,255,134,255,88,0,49,0,126,255,156,255,231,255,193,255,179,255,
191,255,205,255,12,0,31,0,230,255,238,255,59,0,69,0,27,0,83,0,171,0,100,0,44,0,169,0,175,0,36,0,
78,0,145,0,45,0,29,0,101,0,116,0,171,0,171,0,81,0,182,0,64,1,156,0,205,255,220,255,26,0,43,0,
123,0,10,1,39,1,96,0,113,255,30,255,57,255,178,255,81,0,70,0,216,255,231,255,87,0,159,0,76,0,159,255,
183,255,62,0,239,255,121,255,148,255,121,255,108,255,221,255,207,255,55,255,243,254,25,255,186,255,80,0,182,255,191,254,
227,254,96,255,97,255,150,255,247,255,228,255,206,255,25,0,35,0,187,255,161,255,244,255,30,0,45,0,77,0,3,0,
129,255,144,255,227,255,250,255,76,0,195,0,144,0,1,0,229,255,3,0,37,0,119,0,124,0,19,0,15,0,100,0,
121,0,155,0,196,0,145,0,114,0,69,0,189,255,1,0,227,0,122,0,124,255,191,255,70,0,18,0,0,0,31,0,
2,0,25,0,90,0,65,0,6,0,248,255,227,255,217,255,50,0,96,0,157,255,229,254,113,255,66,0,62,0,227,255,
136,255,71,255,78,255,21,255,223,254,158,255,86,0,10,0,197,255,182,255,53,255,12,255,124,255,166,255,206,255,103,0,
184,0,144,0,125,0,123,0,47,0,184,255,150,255,210,255,225,255,178,255,169,255,202,255,13,0,117,0,153,0,53,0,
172,255,140,255,229,255,52,0,73,0,141,0,203,0,151,0,122,0,160,0,107,0,57,0,159,0,216,0,96,0,218,255,
195,255,20,0,103,0,69,0,29,0,125,0,207,0,166,0,146,0,182,0,191,0,188,0,168,0,108,0,52,0,0,0,
227,255,39,0,102,0,45,0,251,255,26,0,69,0,101,0,39,0,127,255,103,255,3,0,47,0,203,255,167,255,244,255,
91,0,109,0,14,0,189,255,159,255,131,255,133,255,160,255,229,255,101,0,45,0,23,255,225,254,175,255,244,255,222,255,
224,255,55,255,122,254,170,254,7,255,60,255,206,255,55,0,32,0,43,0,69,0,21,0,255,255,16,0,238,255,220,255,
27,0,89,0,96,0,83,0,75,0,86,0,124,0,134,0,86,0,47,0,68,0,101,0,123,0,150,0,179,0,218,0,
226,0,132,0,28,0,58,0,126,0,113,0,125,0,196,0,169,0,36,0,227,255,11,0,29,0,197,255,96,255,128,255,
246,255,41,0,250,255,154,255,78,255,120,255,215,255,188,255,93,255,84,255,104,255,60,255,35,255,135,255,1,0,183,255,
4,255,30,255,181,255,203,255,208,255,248,255,146,255,47,255,156,255,4,0,203,255,127,255,135,255,243,255,120,0,119,0,
6,0,168,255,110,255,137,255,12,0,96,0,66,0,29,0,37,0,69,0,89,0,44,0,207,255,181,255,254,255,43,0,
237,255,162,255,138,255,140,255,201,255,22,0,242,255,200,255,37,0,112,0,71,0,12,0,221,255,3,0,158,0,187,0,
40,0,243,255,23,0,17,0,77,0,115,0,221,255,153,255,59,0,124,0,43,0,38,0,2,0,143,255,197,255,102,0,
119,0,65,0,32,0,232,255,236,255,29,0,222,255,128,255,144,255,187,255,198,255,228,255,250,255,200,255,105,255,84,255,
184,255,239,255,164,255,135,255,197,255,177,255,81,255,83,255,179,255,191,255,107,255,137,255,35,0,74,0,42,0,97,0,
61,0,141,255,148,255,83,0,141,0,78,0,95,0,143,0,82,0,246,255,53,0,206,0,227,0,143,0,129,0,156,0,
81,0,173,255,90,255,149,255,207,255,221,255,22,0,17,0,143,255,76,255,103,255,127,255,220,255,47,0,213,255,116,255,
153,255,214,255,8,0,32,0,2,0,14,0,13,0,124,255,31,255,106,255,152,255,195,255,65,0,31,0,92,255,77,255,
213,255,233,255,173,255,129,255,106,255,196,255,77,0,52,0,204,255,212,255,254,255,24,0,86,0,106,0,58,0,7,0,
179,255,125,255,199,255,232,255,125,255,56,255,87,255,133,255,187,255,231,255,243,255,254,255,236,255,198,255,228,255,51,0,
80,0,28,0,213,255,237,255,77,0,101,0,92,0,158,0,212,0,192,0,173,0,157,0,125,0,114,0,100,0,56,0,
46,0,59,0,6,0,203,255,234,255,17,0,250,255,237,255,223,255,188,255,221,255,20,0,231,255,179,255,185,255,200,255,
57,0,227,0,214,0,98,0,89,0,70,0,226,255,209,255,20,0,28,0,249,255,1,0,27,0,245,255,165,255,122,255,
101,255,105,255,185,255,247,255,222,255,197,255,156,255,101,255,185,255,37,0,215,255,176,255,87,0,170,0,71,0,31,0,
76,0,77,0,68,0,84,0,68,0,2,0,199,255,212,255,9,0,6,0,228,255,11,0,106,0,192,0,241,0,172,0,
21,0,6,0,127,0,177,0,168,0,167,0,92,0,8,0,25,0,34,0,27,0,113,0,159,0,90,0,82,0,98,0,
250,255,209,255,96,0,146,0,2,0,205,255,56,0,87,0,15,0,227,255,179,255,135,255,197,255,22,0,13,0,250,255,
216,255,106,255,64,255,169,255,250,255,226,255,200,255,219,255,232,255,187,255,92,255,51,255,152,255,56,0,103,0,0,0,
126,255,86,255,149,255,233,255,244,255,216,255,225,255,225,255,190,255,220,255,46,0,58,0,34,0,66,0,113,0,112,0,
92,0,122,0,202,0,235,0,160,0,37,0,225,255,249,255,20,0,233,255,205,255,232,255,201,255,140,255,184,255,34,0,
52,0,217,255,159,255,9,0,120,0,53,0,2,0,88,0,90,0,47,0,153,0,168,0,234,255,197,255,78,0,54,0,
180,255,142,255,98,255,32,255,97,255,246,255,41,0,239,255,194,255,194,255,158,255,120,255,215,255,100,0,124,0,110,0,
79,0,188,255,102,255,205,255,3,0,228,255,7,0,220,255,71,255,101,255,20,0,69,0,244,255,170,255,171,255,194,255,
133,255,123,255,41,0,139,0,33,0,244,255,29,0,248,255,219,255,8,0,39,0,59,0,61,0,1,0,229,255,19,0,
20,0,210,255,180,255,210,255,4,0,56,0,85,0,78,0,72,0,82,0,91,0,126,0,147,0,61,0,252,255,79,0,
128,0,66,0,75,0,101,0,19,0,3,0,97,0,91,0,252,255,224,255,252,255,17,0,23,0,9,0,15,0,62,0,
84,0,44,0,243,255,220,255,228,255,246,255,34,0,80,0,43,0,206,255,190,255,2,0,24,0,191,255,70,255,57,255,
185,255,50,0,26,0,204,255,224,255,51,0,80,0,39,0,223,255,166,255,153,255,159,255,154,255,168,255,225,255,39,0,
49,0,232,255,181,255,207,255,241,255,33,0,93,0,58,0,240,255,248,255,235,255,190,255,2,0,96,0,111,0,151,0,
173,0,85,0,24,0,50,0,65,0,82,0,126,0,108,0,26,0,13,0,77,0,31,0,157,255,210,255,120,0,135,0,
108,0,131,0,25,0,171,255,5,0,98,0,80,0,75,0,47,0,244,255,235,255,202,255,151,255,210,255,30,0,14,0,
13,0,40,0,244,255,173,255,219,255,56,0,10,0,121,255,99,255,190,255,200,255,170,255,245,255,72,0,21,0,198,255,
221,255,6,0,207,255,152,255,205,255,25,0,34,0,30,0,46,0,58,0,62,0,41,0,10,0,22,0,24,0,214,255,
192,255,239,255,224,255,202,255,7,0,12,0,222,255,44,0,125,0,58,0,253,255,241,255,192,255,206,255,21,0,9,0,
250,255,57,0,93,0,60,0,11,0,238,255,244,255,219,255,184,255,7,0,109,0,91,0,31,0,236,255,215,255,39,0,
99,0,34,0,2,0,23,0,229,255,174,255,155,255,108,255,90,255,152,255,248,255,76,0,64,0,224,255,188,255,227,255,
13,0,67,0,71,0,251,255,231,255,52,0,91,0,51,0,13,0,15,0,23,0,41,0,113,0,173,0,144,0,124,0,
169,0,182,0,163,0,130,0,5,0,150,255,253,255,154,0,114,0,252,255,238,255,4,0,6,0,39,0,53,0,249,255,
212,255,249,255,22,0,9,0,238,255,194,255,170,255,223,255,37,0,27,0,230,255,213,255,209,255,189,255,211,255,240,255,
169,255,74,255,92,255,171,255,204,255,194,255,196,255,224,255,215,255,160,255,188,255,32,0,41,0,4,0,32,0,34,0,
206,255,158,255,225,255,72,0,93,0,72,0,102,0,85,0,236,255,224,255,23,0,216,255,145,255,210,255,27,0,17,0,
246,255,236,255,222,255,190,255,201,255,40,0,97,0,48,0,235,255,188,255,188,255,1,0,43,0,34,0,46,0,251,255,
99,255,2,255,9,255,51,255,108,255,128,255,114,255,128,255,112,255,58,255,86,255,155,255,169,255,191,255,252,255,21,0,
251,255,196,255,143,255,137,255,183,255,243,255,11,0,209,255,136,255,140,255,174,255,199,255,4,0,41,0,248,255,215,255,
221,255,209,255,6,0,110,0,90,0,21,0,59,0,104,0,110,0,122,0,53,0,233,255,42,0,55,0,172,255,131,255,
199,255,192,255,169,255,191,255,189,255,153,255,113,255,116,255,180,255,218,255,221,255,251,255,7,0,242,255,203,255,120,255,
133,255,31,0,53,0,214,255,2,0,28,0,157,255,138,255,227,255,209,255,195,255,14,0,40,0,44,0,90,0,71,0,
9,0,28,0,63,0,47,0,56,0,70,0,16,0,224,255,251,255,53,0,71,0,237,255,127,255,176,255,2,0,180,255,
135,255,220,255,203,255,127,255,188,255,253,255,241,255,248,255,219,255,170,255,222,255,245,255,145,255,110,255,203,255,10,0,
6,0,12,0,32,0,10,0,218,255,209,255,206,255,156,255,159,255,16,0,90,0,41,0,241,255,4,0,45,0,61,0,
68,0,55,0,21,0,34,0,105,0,144,0,109,0,50,0,25,0,49,0,77,0,75,0,68,0,55,0,34,0,44,0,
77,0,95,0,95,0,57,0,18,0,51,0,105,0,105,0,81,0,56,0,18,0,225,255,177,255,185,255,234,255,210,255,
169,255,227,255,0,0,172,255,139,255,197,255,223,255,229,255,13,0,13,0,185,255,146,255,237,255,53,0,4,0,234,255,
23,0,31,0,9,0,247,255,200,255,175,255,218,255,10,0,251,255,191,255,203,255,76,0,129,0,22,0,216,255,7,0,
43,0,93,0,137,0,74,0,26,0,96,0,97,0,14,0,64,0,153,0,59,0,208,255,250,255,253,255,186,255,224,255,
38,0,43,0,61,0,34,0,186,255,171,255,232,255,239,255,222,255,187,255,154,255,222,255,27,0,228,255,228,255,69,0,
118,0,117,0,88,0,39,0,40,0,53,0,39,0,74,0,88,0,31,0,86,0,202,0,109,0,183,255,197,255,50,0,
61,0,52,0,83,0,37,0,183,255,183,255,26,0,64,0,48,0,59,0,74,0,69,0,40,0,219,255,159,255,198,255,
33,0,92,0,97,0,32,0,206,255,218,255,40,0,52,0,14,0,18,0,32,0,23,0,17,0,241,255,218,255,16,0,
35,0,225,255,231,255,34,0,6,0,230,255,249,255,222,255,193,255,219,255,222,255,220,255,8,0,17,0,225,255,228,255,
44,0,83,0,23,0,179,255,131,255,166,255,6,0,91,0,77,0,242,255,164,255,171,255,14,0,80,0,29,0,12,0,
102,0,123,0,35,0,238,255,237,255,227,255,220,255,242,255,39,0,81,0,53,0,236,255,209,255,17,0,95,0,75,0,
14,0,17,0,13,0,250,255,63,0,133,0,106,0,83,0,79,0,32,0,12,0,26,0,237,255,179,255,195,255,10,0,
32,0,204,255,125,255,156,255,194,255,191,255,228,255,6,0,244,255,251,255,23,0,18,0,4,0,238,255,232,255,43,0,
104,0,70,0,11,0,230,255,198,255,229,255,66,0,86,0,17,0,235,255,245,255,248,255,9,0,33,0,7,0,234,255,
0,0,5,0,208,255,167,255,193,255,30,0,133,0,135,0,42,0,252,255,25,0,34,0,19,0,43,0,55,0,246,255,
194,255,233,255,25,0,9,0,226,255,200,255,198,255,220,255,238,255,247,255,251,255,243,255,14,0,87,0,98,0,30,0,
6,0,33,0,39,0,32,0,35,0,29,0,20,0,18,0,25,0,34,0,28,0,8,0,244,255,224,255,202,255,178,255,
167,255,206,255,11,0,40,0,46,0,30,0,232,255,195,255,204,255,215,255,229,255,9,0,23,0,14,0,26,0,42,0,
32,0,29,0,57,0,69,0,23,0,231,255,232,255,232,255,207,255,205,255,223,255,217,255,198,255,203,255,240,255,23,0,
17,0,227,255,217,255,18,0,64,0,28,0,224,255,214,255,228,255,245,255,22,0,25,0,2,0,44,0,111,0,91,0,
39,0,42,0,49,0,23,0,12,0,41,0,70,0,54,0,18,0,247,255,216,255,220,255,42,0,94,0,57,0,16,0,
5,0,247,255,0,0,24,0,16,0,1,0,1,0,245,255,223,255,219,255,241,255,9,0,0,0,238,255,239,255,231,255,
216,255,215,255,206,255,209,255,243,255,237,255,203,255,230,255,9,0,246,255,226,255,228,255,237,255,7,0,18,0,2,0,
18,0,55,0,57,0,24,0,227,255,208,255,18,0,68,0,15,0,228,255,8,0,11,0,215,255,227,255,22,0,255,255,
207,255,235,255,15,0,239,255,213,255,228,255,233,255,235,255,252,255,8,0,25,0,30,0,245,255,231,255,17,0,2,0,
202,255,215,255,237,255,196,255,181,255,203,255,191,255,181,255,215,255,1,0,23,0,1,0,213,255,226,255,254,255,223,255,
217,255,249,255,210,255,161,255,203,255,244,255,234,255,237,255,239,255,226,255,239,255,242,255,199,255,160,255,166,255,200,255,
218,255,195,255,184,255,198,255,180,255,179,255,247,255,32,0,3,0,248,255,3,0,242,255,243,255,23,0,35,0,26,0,
50,0,61,0,10,0,239,255,42,0,85,0,50,0,16,0,14,0,1,0,239,255,248,255,14,0,12,0,245,255,251,255,
22,0,16,0,1,0,254,255,224,255,218,255,13,0,21,0,225,255,211,255,208,255,181,255,200,255,254,255,255,255,207,255,
176,255,187,255,214,255,223,255,225,255,226,255,207,255,184,255,187,255,204,255,223,255,235,255,229,255,210,255,194,255,211,255,
253,255,8,0,245,255,249,255,5,0,10,0,27,0,31,0,10,0,6,0,28,0,78,0,132,0,104,0,36,0,47,0,
77,0,48,0,20,0,240,255,182,255,207,255,36,0,45,0,18,0,35,0,32,0,247,255,238,255,255,255,247,255,236,255,
247,255,0,0,254,255,3,0,17,0,23,0,19,0,11,0,3,0,236,255,203,255,210,255,2,0,27,0,32,0,44,0,
24,0,237,255,249,255,32,0,24,0,3,0,7,0,3,0,247,255,2,0,24,0,36,0,44,0,40,0,11,0,243,255,
7,0,53,0,77,0,59,0,23,0,254,255,236,255,223,255,236,255,7,0,10,0,3,0,251,255,226,255,216,255,237,255,
246,255,253,255,7,0,241,255,222,255,251,255,20,0,15,0,7,0,3,0,10,0,16,0,249,255,242,255,23,0,48,0,
33,0,11,0,2,0,8,0,16,0,12,0,251,255,223,255,224,255,23,0,45,0,6,0,249,255,8,0,253,255,231,255,
227,255,239,255,236,255,201,255,215,255,40,0,51,0,253,255,10,0,16,0,202,255,179,255,217,255,221,255,217,255,231,255,
235,255,245,255,249,255,233,255,245,255,21,0,23,0,28,0,47,0,24,0,234,255,229,255,2,0,26,0,45,0,65,0,
77,0,73,0,32,0,236,255,248,255,52,0,54,0,10,0,255,255,251,255,252,255,39,0,65,0,41,0,34,0,38,0,
7,0,248,255,13,0,21,0,16,0,17,0,5,0,232,255,229,255,21,0,65,0,47,0,255,255,229,255,222,255,229,255,
243,255,236,255,222,255,225,255,221,255,216,255,232,255,249,255,246,255,240,255,249,255,19,0,43,0,46,0,27,0,252,255,
233,255,10,0,57,0,44,0,249,255,243,255,16,0,16,0,251,255,237,255,224,255,212,255,220,255,235,255,236,255,230,255,
233,255,250,255,12,0,20,0,25,0,24,0,19,0,26,0,19,0,242,255,244,255,13,0,255,255,2,0,43,0,35,0,
0,0,255,255,246,255,248,255,44,0,53,0,3,0,235,255,234,255,240,255,11,0,10,0,249,255,20,0,42,0,19,0,
254,255,252,255,251,255,252,255,247,255,254,255,23,0,33,0,18,0,2,0,249,255,255,255,2,0,252,255,6,0,10,0,
245,255,248,255,6,0,236,255,217,255,238,255,240,255,217,255,221,255,248,255,4,0,242,255,229,255,244,255,254,255,245,255,
252,255,5,0,248,255,247,255,13,0,26,0,29,0,32,0,28,0,4,0,238,255,250,255,10,0,250,255,239,255,0,0,
3,0,255,255,18,0,30,0,22,0,17,0,8,0,248,255,249,255,6,0,11,0,12,0,22,0,24,0,1,0,246,255,
19,0,50,0,48,0,35,0,25,0,10,0,0,0,0,0,254,255,249,255,241,255,236,255,241,255,0,0,16,0,25,0,
24,0,3,0,230,255,229,255,5,0,20,0,3,0,1,0,14,0,253,255,218,255,218,255,247,255,8,0,12,0,23,0,
19,0,0,0,9,0,28,0,10,0,252,255,9,0,1,0,247,255,5,0,251,255,226,255,248,255,29,0,28,0,7,0,
241,255,225,255,235,255,254,255,10,0,26,0,41,0,38,0,30,0,25,0,9,0,239,255,220,255,217,255,237,255,24,0,
45,0,25,0,18,0,35,0,24,0,3,0,7,0,255,255,245,255,9,0,18,0,0,0,251,255,254,255,254,255,18,0,
31,0,11,0,250,255,6,0,23,0,19,0,12,0,17,0,19,0,23,0,43,0,36,0,254,255,249,255,9,0,9,0,
17,0,11,0,232,255,233,255,252,255,229,255,228,255,14,0,24,0,14,0,8,0,235,255,228,255,7,0,9,0,245,255,
11,0,27,0,245,255,213,255,230,255,253,255,250,255,254,255,22,0,22,0,2,0,8,0,23,0,11,0,253,255,253,255,
254,255,11,0,24,0,18,0,11,0,16,0,9,0,248,255,243,255,246,255,245,255,238,255,239,255,0,0,2,0,229,255,
221,255,1,0,13,0,249,255,1,0,10,0,232,255,219,255,254,255,17,0,0,0,243,255,248,255,15,0,33,0,15,0,
240,255,233,255,240,255,242,255,243,255,249,255,2,0,6,0,12,0,20,0,8,0,239,255,241,255,251,255,248,255,253,255,
3,0,245,255,244,255,255,255,242,255,228,255,242,255,244,255,220,255,222,255,5,0,32,0,23,0,6,0,254,255,248,255,
249,255,8,0,23,0,28,0,22,0,3,0,249,255,10,0,32,0,27,0,0,0,244,255,6,0,22,0,12,0,252,255,
250,255,7,0,22,0,20,0,7,0,0,0,1,0,9,0,24,0,20,0,252,255,241,255,247,255,254,255,1,0,5,0,
8,0,7,0,3,0,5,0,6,0,251,255,253,255,11,0,7,0,246,255,241,255,246,255,4,0,16,0,8,0,242,255,
225,255,216,255,221,255,239,255,254,255,1,0,238,255,213,255,224,255,250,255,242,255,236,255,11,0,30,0,17,0,6,0,
5,0,11,0,28,0,40,0,27,0,5,0,246,255,236,255,230,255,238,255,246,255,242,255,239,255,248,255,248,255,242,255,
246,255,247,255,250,255,3,0,249,255,229,255,238,255,249,255,232,255,230,255,4,0,20,0,15,0,12,0,10,0,8,0,
12,0,8,0,254,255,248,255,250,255,4,0,13,0,12,0,11,0,12,0,3,0,250,255,1,0,10,0,6,0,2,0,
1,0,0,0,5,0,7,0,1,0,250,255,249,255,249,255,243,255,240,255,255,255,12,0,248,255,222,255,221,255,223,255,
227,255,245,255,251,255,238,255,246,255,14,0,26,0,29,0,25,0,14,0,12,0,10,0,252,255,251,255,7,0,5,0,
251,255,253,255,3,0,3,0,0,0,3,0,5,0,252,255,246,255,252,255,249,255,239,255,248,255,3,0,247,255,235,255,
239,255,238,255,233,255,245,255,17,0,33,0,22,0,3,0,255,255,3,0,0,0,2,0,9,0,5,0,250,255,253,255,
8,0,13,0,19,0,22,0,8,0,251,255,0,0,254,255,230,255,219,255,238,255,254,255,246,255,232,255,230,255,236,255,
244,255,242,255,234,255,244,255,15,0,16,0,250,255,247,255,5,0,8,0,7,0,11,0,10,0,5,0,4,0,3,0,
254,255,246,255,244,255,251,255,254,255,255,255,2,0,253,255,243,255,254,255,19,0,20,0,10,0,8,0,0,0,239,255,
229,255,235,255,249,255,254,255,249,255,254,255,10,0,7,0,247,255,245,255,252,255,252,255,247,255,241,255,231,255,224,255,
233,255,252,255,7,0,13,0,16,0,3,0,237,255,238,255,251,255,251,255,245,255,241,255,235,255,242,255,5,0,6,0,
249,255,247,255,251,255,249,255,249,255,251,255,254,255,254,255,248,255,252,255,12,0,8,0,242,255,233,255,242,255,249,255,
243,255,232,255,237,255,3,0,12,0,3,0,254,255,254,255,255,255,1,0,255,255,251,255,254,255,4,0,7,0,1,0,
240,255,230,255,248,255,9,0,3,0,252,255,254,255,251,255,254,255,13,0,20,0,10,0,254,255,0,0,14,0,20,0,
11,0,8,0,16,0,9,0,252,255,250,255,252,255,253,255,0,0,253,255,252,255,6,0,7,0,252,255,245,255,247,255,
252,255,2,0,1,0,250,255,249,255,252,255,253,255,255,255,3,0,3,0,248,255,236,255,238,255,250,255,0,0,252,255,
243,255,240,255,253,255,11,0,10,0,3,0,0,0,4,0,11,0,6,0,249,255,249,255,255,255,254,255,4,0,16,0,
12,0,4,0,3,0,254,255,248,255,253,255,3,0,7,0,11,0,10,0,5,0,253,255,246,255,250,255,5,0,4,0,
254,255,254,255,251,255,254,255,11,0,9,0,243,255,239,255,1,0,6,0,0,0,1,0,3,0,254,255,254,255,0,0,
251,255,246,255,247,255,253,255,3,0,4,0,251,255,245,255,247,255,250,255,2,0,16,0,19,0,8,0,254,255,251,255,
250,255,2,0,14,0,7,0,249,255,250,255,252,255,244,255,246,255,1,0,2,0,255,255,252,255,248,255,244,255,243,255,
249,255,255,255,251,255,244,255,246,255,247,255,244,255,251,255,3,0,253,255,247,255,251,255,253,255,251,255,2,0,8,0,
1,0,249,255,252,255,253,255,248,255,249,255,2,0,1,0,249,255,248,255,255,255,6,0,10,0,14,0,16,0,3,0,
249,255,1,0,7,0,0,0,1,0,10,0,11,0,9,0,5,0,251,255,249,255,255,255,3,0,4,0,4,0,4,0,
5,0,5,0,1,0,10,0,20,0,12,0,1,0,4,0,4,0,250,255,249,255,1,0,3,0,255,255,253,255,252,255,
252,255,252,255,249,255,243,255,247,255,2,0,6,0,3,0,2,0,3,0,6,0,11,0,12,0,6,0,250,255,241,255,
248,255,2,0,255,255,248,255,250,255,255,255,1,0,253,255,250,255,255,255,7,0,6,0,4,0,4,0,253,255,250,255,
0,0,0,0,253,255,2,0,6,0,0,0,254,255,255,255,253,255,254,255,255,255,254,255,254,255,0,0,255,255,255,255,
253,255,249,255,252,255,5,0,7,0,6,0,5,0,3,0,2,0,2,0,254,255,253,255,0,0,4,0,8,0,5,0,
0,0,6,0,11,0,4,0,254,255,2,0,0,0,252,255,252,255,249,255,248,255,250,255,249,255,250,255,254,255,0,0,
0,0,254,255,255,255,4,0,4,0,252,255,253,255,2,0,0,0,253,255,251,255,248,255,250,255,0,0,2,0,255,255,
253,255,253,255,255,255,253,255,252,255,0,0,6,0,6,0,2,0,255,255,254,255,2,0,4,0,3,0,6,0,6,0,
2,0,253,255,252,255,254,255,2,0,4,0,4,0,3,0,3,0,2,0,254,255,250,255,250,255,252,255,255,255,3,0,
5,0,4,0,4,0,8,0,8,0,4,0,0,0,255,255,254,255,253,255,254,255,1,0,2,0,253,255,254,255,4,0,
3,0,255,255,4,0,7,0,0,0,0,0,7,0,5,0,1,0,2,0,3,0,4,0,2,0,250,255,248,255,255,255,
1,0,255,255,2,0,5,0,3,0,1,0,0,0,1,0,2,0,254,255,254,255,3,0,2,0,254,255,2,0,7,0,
5,0,4,0,8,0,9,0,3,0,255,255,255,255,1,0,255,255,253,255,255,255,0,0,253,255,249,255,249,255,251,255,
250,255,249,255,250,255,252,255,253,255,253,255,251,255,0,0,8,0,6,0,0,0,0,0,255,255,251,255,254,255,0,0,
251,255,253,255,2,0,2,0,3,0,4,0,1,0,0,0,3,0,1,0,1,0,5,0,4,0,255,255,254,255,1,0,
2,0,1,0,255,255,254,255,0,0,1,0,0,0,254,255,0,0,3,0,254,255,250,255,255,255,3,0,255,255,255,255,
1,0,254,255,253,255,0,0,255,255,253,255,255,255,1,0,255,255,254,255,255,255,2,0,255,255,250,255,252,255,255,255,
253,255,253,255,255,255,255,255,0,0,1,0,255,255,254,255,3,0,3,0,1,0,5,0,5,0,255,255,253,255,254,255,
254,255,253,255,255,255,0,0,255,255,255,255,255,255,251,255,251,255,0,0,2,0,2,0,5,0,7,0,3,0,0,0,
1,0,1,0,2,0,3,0,0,0,254,255,0,0,255,255,252,255,252,255,2,0,4,0,1,0,1,0,4,0,2,0,
255,255,3,0,4,0,255,255,254,255,255,255,0,0,2,0,3,0,0,0,3,0,7,0,4,0,3,0,3,0,1,0,
3,0,6,0,0,0,251,255,253,255,0,0,1,0,4,0,4,0,0,0,255,255,255,255,0,0,0,0,0,0,0,0,
255,255,255,255,1,0,1,0,1,0,3,0,4,0,1,0,3,0,5,0,255,255,251,255,253,255,252,255,251,255,255,255,
1,0,255,255,255,255,0,0,0,0,255,255,255,255,254,255,254,255,254,255,252,255,250,255,250,255,253,255,254,255,254,255,
0,0,2,0,2,0,1,0,255,255,253,255,0,0,2,0,0,0,255,255,2,0,2,0,0,0,254,255,252,255,252,255,
254,255,1,0,0,0,252,255,251,255,253,255,251,255,249,255,254,255,254,255,252,255,1,0,6,0,3,0,3,0,4,0,
255,255,253,255,3,0,5,0,5,0,8,0,5,0,254,255,253,255,0,0,1,0,1,0,0,0,255,255,255,255,252,255,
252,255,255,255,1,0,2,0,2,0,2,0,2,0,1,0,255,255,0,0,1,0,0,0,1,0,4,0,1,0,254,255,
253,255,254,255,255,255,2,0,4,0,4,0,1,0,255,255,1,0,4,0,1,0,0,0,3,0,3,0,1,0,1,0,
0,0,255,255,254,255,253,255,252,255,254,255,0,0,0,0,255,255,253,255,254,255,255,255,255,255,254,255,254,255,1,0,
3,0,2,0,2,0,4,0,2,0,2,0,4,0,3,0,254,255,253,255,254,255,253,255,1,0,3,0,254,255,253,255,
3,0,4,0,255,255,255,255,2,0,2,0,1,0,0,0,0,0,255,255,254,255,0,0,1,0,255,255,253,255,253,255,
253,255,0,0,1,0,253,255,254,255,2,0,2,0,0,0,0,0,1,0,2,0,2,0,253,255,251,255,255,255,2,0,
0,0,255,255,0,0,2,0,3,0,4,0,4,0,4,0,4,0,2,0,254,255,252,255,254,255,0,0,252,255,249,255,
252,255,1,0,1,0,253,255,249,255,251,255,0,0,2,0,2,0,1,0,0,0,1,0,1,0,255,255,255,255,1,0,
1,0,0,0,254,255,253,255,255,255,2,0,1,0,2,0,4,0,1,0,252,255,252,255,255,255,1,0,1,0,254,255,
251,255,251,255,255,255,2,0,255,255,254,255,1,0,1,0,0,0,3,0,6,0,3,0,2,0,2,0,254,255,255,255,
3,0,2,0,0,0,1,0,254,255,252,255,254,255,255,255,1,0,1,0,253,255,252,255,254,255,0,0,4,0,6,0,
1,0,254,255,0,0,1,0,2,0,3,0,1,0,0,0,1,0,0,0,255,255,1,0,1,0,255,255,2,0,4,0,
0,0,252,255,255,255,4,0,3,0,2,0,4,0,3,0,0,0,255,255,255,255,0,0,1,0,255,255,252,255,254,255,
0,0,255,255,255,255,254,255,254,255,2,0,3,0,2,0,3,0,5,0,255,255,252,255,0,0,1,0,254,255,254,255,
254,255,253,255,254,255,255,255,254,255,254,255,1,0,3,0,1,0,254,255,254,255,0,0,0,0,255,255,255,255,255,255,
255,255,1,0,2,0,2,0,1,0,1,0,3,0,2,0,255,255,255,255,1,0,254,255,253,255,254,255,254,255,255,255,
1,0,0,0,254,255,255,255,0,0,0,0,255,255,255,255,1,0,0,0,255,255,2,0,2,0,255,255,0,0,2,0,
255,255,255,255,1,0,2,0,2,0,2,0,0,0,255,255,1,0,2,0,1,0,0,0,254,255,254,255,1,0,1,0,
255,255,255,255,255,255,253,255,254,255,1,0,2,0,0,0,254,255,0,0,2,0,1,0,253,255,253,255,1,0,3,0,
0,0,252,255,254,255,0,0,0,0,0,0,1,0,1,0,1,0,1,0,255,255,1,0,1,0,1,0,2,0,3,0,
0,0,253,255,0,0,1,0,0,0,255,255,253,255,255,255,2,0,2,0,1,0,2,0,2,0,0,0,0,0,1,0,
0,0,255,255,255,255,0,0,0,0,0,0,0,0,0,0,254,255,255,255,0,0,255,255,253,255,253,255,0,0,3,0,
4,0,1,0,0,0,2,0,1,0,253,255,254,255,2,0,2,0,255,255,254,255,0,0,1,0,255,255,0,0,2,0,
1,0,255,255,254,255,254,255,255,255,1,0,255,255,254,255,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,
1,0,1,0,0,0,1,0,2,0,0,0,0,0,1,0,0,0,255,255,255,255,0,0,1,0,0,0,253,255,254,255,
2,0,2,0,1,0,2,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,1,0,2,0,0,0,254,255,0,0,
2,0,0,0,254,255,254,255,0,0,1,0,255,255,254,255,0,0,1,0,0,0,254,255,254,255,0,0,0,0,255,255,
0,0,1,0,0,0,255,255,1,0,1,0,2,0,1,0,255,255,0,0,1,0,1,0,1,0,1,0,255,255,255,255,
0,0,255,255,255,255,1,0,1,0,0,0,1,0,1,0,255,255,255,255,0,0,0,0,255,255,0,0,1,0,0,0,
255,255,0,0,0,0,254,255,254,255,1,0,1,0,0,0,1,0,2,0,0,0,0,0,1,0,1,0,0,0,255,255,
255,255,255,255,255,255,0,0,0,0,255,255,255,255,1,0,2,0,0,0,255,255,255,255,0,0,0,0,255,255,0,0,
0,0,255,255,0,0,255,255,253,255,255,255,3,0,2,0,0,0,1,0,1,0,255,255,254,255,254,255,
};

864
src/client/sound/data/sand3.pcm Executable file
View File

@@ -0,0 +1,864 @@
unsigned char PCM_sand3[27580] = {
1,0,0,0,2,0,0,0,68,172,0,0,214,53,0,0,24,0,23,0,35,0,252,255,225,255,231,255,219,255,213,255,
217,255,240,255,1,0,240,255,25,0,65,0,30,0,31,0,253,255,187,255,235,255,248,255,187,255,180,255,166,255,189,255,
247,255,219,255,216,255,223,255,187,255,219,255,1,0,50,0,35,0,123,255,188,255,85,0,176,255,231,255,254,0,189,0,
88,0,52,0,214,255,67,0,104,0,29,0,86,0,99,255,116,254,200,255,239,0,5,1,32,1,94,0,166,255,100,0,
70,1,22,1,169,0,243,0,182,0,156,255,0,0,21,1,208,0,144,0,91,0,199,255,32,0,79,0,106,255,133,254,
25,254,176,254,119,255,81,255,85,255,93,255,243,254,248,254,122,255,154,0,234,0,239,255,232,0,250,1,153,0,178,0,
105,1,185,0,13,1,240,255,115,254,139,0,178,0,14,255,143,0,162,0,17,0,183,1,229,255,129,253,229,254,251,254,
104,255,103,2,68,3,162,2,128,1,3,255,226,254,235,0,174,1,222,1,106,2,83,3,66,3,255,0,224,255,87,1,
57,2,154,1,81,0,170,254,222,252,15,252,11,254,51,0,186,255,224,255,177,0,19,0,59,1,244,2,107,0,209,252,
64,253,164,0,126,3,127,4,63,3,137,255,1,254,111,1,116,3,36,2,158,1,115,1,110,2,166,4,93,3,71,0,
27,255,119,254,170,254,234,254,161,255,142,3,219,3,93,255,86,1,116,4,122,0,239,255,179,2,107,0,249,254,238,255,
168,254,243,252,149,252,111,254,151,254,108,250,56,251,186,255,202,253,90,252,189,0,55,1,148,251,18,250,118,0,206,4,
133,2,194,255,117,253,8,252,58,253,140,253,26,253,212,252,36,253,253,0,155,2,201,254,209,253,159,0,25,2,145,0,
253,253,30,255,108,1,120,0,105,0,1,3,35,4,128,2,41,2,233,3,32,2,85,255,117,0,170,0,56,0,202,2,
98,4,51,2,15,255,232,255,85,2,194,255,70,253,100,254,77,254,38,254,97,254,135,254,210,0,40,1,207,253,87,251,
121,251,203,252,143,253,197,255,14,2,47,0,46,0,45,3,25,3,123,2,248,255,244,251,62,254,7,1,198,254,80,253,
198,252,186,251,173,251,220,253,107,1,116,1,38,0,126,2,254,4,94,5,120,3,90,0,125,255,134,255,139,255,210,255,
240,254,45,254,39,252,174,250,17,254,17,0,30,0,247,1,204,255,61,253,187,255,215,0,189,0,73,2,16,3,207,3,
87,5,237,5,102,4,40,3,203,2,162,255,191,254,192,2,75,2,93,254,140,252,95,252,211,0,126,6,93,6,155,1,
5,251,34,248,78,251,57,255,185,1,49,1,222,254,35,0,243,1,14,1,208,0,89,1,127,0,166,255,177,2,63,5,
65,0,52,251,42,251,198,251,78,255,139,2,216,255,33,254,107,255,27,0,78,2,254,4,140,4,151,1,28,0,33,2,
212,2,190,254,34,250,174,249,133,251,126,251,234,251,217,253,41,253,221,252,212,254,132,254,100,254,33,255,44,252,124,249,
124,251,175,255,129,2,198,0,34,253,200,253,204,0,106,1,26,1,218,0,75,255,99,255,175,1,63,1,10,0,185,0,
247,253,173,250,15,254,145,0,33,252,119,249,120,252,107,255,133,1,163,4,1,6,12,4,16,1,69,255,206,255,148,1,
181,2,89,3,47,2,13,254,151,251,48,253,161,253,81,251,114,250,71,251,186,251,83,253,198,1,3,6,238,4,39,255,
131,251,235,252,45,255,148,254,140,252,118,253,205,0,168,255,206,250,102,250,29,252,40,251,47,253,67,1,109,255,207,252,
223,255,166,2,86,2,82,2,150,2,168,2,221,1,109,255,193,254,195,0,49,2,60,3,45,3,77,0,158,254,90,255,
82,255,141,0,84,3,24,3,250,0,24,0,39,0,215,0,155,255,164,252,85,254,150,2,55,2,38,1,119,2,173,1,
59,1,213,3,239,3,99,1,20,0,2,254,156,251,172,252,37,255,218,255,193,255,48,0,144,1,209,2,7,2,143,0,
40,1,174,2,226,2,72,3,72,5,215,4,162,255,116,252,205,255,84,3,235,2,45,2,183,1,9,0,162,255,128,1,
65,3,231,3,98,3,78,2,167,2,200,3,193,2,204,255,112,253,175,252,205,253,142,0,171,2,130,1,168,253,37,251,
115,252,23,254,108,252,186,250,152,251,185,250,47,248,88,250,119,255,27,0,65,252,160,248,221,248,106,253,31,0,114,253,
212,251,132,253,55,253,134,251,142,251,240,251,194,252,243,254,32,2,160,6,255,7,154,1,41,251,144,252,216,255,174,254,
6,252,162,251,182,253,234,0,247,3,153,5,242,3,50,0,107,254,76,254,113,253,15,254,224,1,97,5,29,4,105,254,
219,250,57,253,118,0,115,1,218,1,102,255,184,250,165,251,150,1,230,2,124,254,59,252,158,254,89,0,238,255,169,1,
93,3,49,0,212,253,6,0,15,0,129,254,191,0,16,2,126,0,78,1,220,1,45,255,134,254,197,255,160,254,31,254,
46,1,216,3,75,2,130,254,209,253,53,0,253,255,177,253,89,254,7,0,19,0,1,1,53,1,128,253,187,250,46,252,
109,252,240,250,209,253,40,2,237,0,163,254,196,0,82,2,114,1,12,2,130,1,114,254,250,254,3,2,197,0,11,254,
43,255,199,1,218,2,144,2,196,1,57,2,220,2,246,255,151,252,58,255,45,4,75,3,186,254,73,253,53,255,39,2,
232,4,207,4,250,1,50,1,105,3,37,4,234,1,185,255,141,255,232,0,19,3,92,4,156,2,165,0,109,2,194,3,
133,1,201,1,238,4,168,4,178,2,164,0,37,252,190,251,48,1,173,0,113,251,247,252,182,0,59,0,131,0,168,0,
232,252,132,250,236,251,20,253,107,253,108,254,166,255,251,255,193,254,200,252,210,250,221,249,41,252,170,255,65,0,135,255,
121,254,255,251,195,252,72,1,14,2,145,0,234,2,151,4,60,2,177,1,117,4,154,4,211,255,71,252,9,0,39,6,
120,5,220,254,49,250,86,252,132,2,89,4,81,1,123,1,198,3,242,3,112,7,255,11,30,7,147,254,20,253,156,253,
142,251,72,251,50,253,54,255,30,1,236,0,44,255,31,255,242,255,183,0,183,2,100,3,106,0,81,253,85,253,147,255,
185,1,82,2,223,2,21,4,90,2,106,254,46,254,204,255,163,254,143,254,109,0,185,254,160,252,8,0,77,4,35,4,
147,0,211,251,165,249,229,251,189,254,126,0,31,2,3,2,14,1,144,1,13,1,158,254,170,253,213,254,76,0,1,1,
9,1,161,1,120,2,248,2,18,4,208,2,218,253,255,252,33,2,73,4,81,2,14,2,21,3,179,2,177,0,164,254,
4,255,207,255,19,255,91,0,67,1,73,253,19,252,254,0,61,1,245,250,105,248,216,252,61,2,20,2,213,253,96,253,
198,255,170,254,75,253,167,254,225,254,248,254,180,0,249,0,192,255,79,253,11,249,244,247,137,251,0,255,255,1,51,2,
213,251,53,248,67,253,12,255,74,250,34,250,158,253,17,253,139,252,224,255,145,1,183,254,219,250,152,249,192,251,184,254,
144,255,127,255,89,0,92,0,23,255,98,255,29,1,120,1,104,1,1,3,109,3,47,0,107,253,96,255,81,3,177,4,
177,2,241,254,220,252,213,254,85,1,190,0,247,255,133,1,52,4,97,7,168,8,79,5,168,0,122,254,172,254,84,1,
184,3,242,1,100,255,110,255,88,255,149,255,218,1,138,2,106,0,147,254,46,254,236,254,129,255,232,254,9,255,213,255,
1,255,149,253,120,252,132,251,39,252,123,252,155,250,154,249,38,249,186,248,102,253,82,3,155,1,154,253,105,254,168,0,
232,2,119,4,226,1,84,255,31,1,233,2,151,3,4,5,43,4,178,0,27,254,101,254,168,3,83,10,160,8,233,255,
60,252,149,255,198,1,162,0,160,255,180,253,168,249,242,249,236,0,224,3,73,253,255,246,27,248,183,252,251,255,51,255,
155,250,230,247,181,250,135,255,85,3,52,6,219,5,130,0,164,251,133,253,221,2,221,4,201,3,121,2,121,0,196,254,
244,255,92,2,222,2,114,2,79,2,106,0,123,253,90,254,46,2,135,2,178,255,117,255,13,2,237,3,141,3,255,0,
73,254,158,253,74,254,214,255,37,2,11,2,206,254,189,253,88,1,151,4,158,3,148,1,126,1,234,1,171,3,76,7,
94,6,113,0,49,255,136,1,17,255,150,252,213,254,174,254,6,252,2,254,221,1,53,2,113,1,236,1,230,1,5,1,
108,2,117,6,182,6,47,1,30,254,200,0,219,2,165,1,79,255,158,253,81,254,136,255,159,253,139,251,213,252,249,253,
65,253,125,254,53,1,121,0,44,253,181,252,117,254,94,254,22,254,161,255,101,255,7,252,104,249,13,250,28,253,49,0,
96,2,140,4,241,3,147,254,58,251,131,253,48,255,229,255,241,3,81,5,240,254,38,250,54,254,67,3,216,1,112,255,
137,1,107,3,41,2,105,1,241,0,203,255,106,1,176,3,223,1,105,255,3,255,95,254,221,254,204,0,56,1,20,3,
212,7,134,8,145,4,75,3,30,4,28,2,201,255,245,255,109,255,165,253,7,254,0,0,13,1,81,1,169,0,68,0,
93,2,76,2,82,252,143,248,140,251,148,254,91,0,20,3,84,2,77,255,231,0,194,3,0,2,9,255,64,254,216,254,
60,0,122,0,254,254,34,255,164,0,35,0,208,255,193,1,188,0,28,251,100,248,100,251,49,254,46,254,62,253,145,251,
89,250,201,251,73,254,65,255,98,254,106,252,91,251,132,252,58,254,253,254,155,254,44,253,32,252,89,252,216,252,13,253,
32,253,3,254,186,255,7,255,25,253,184,255,192,2,174,255,112,253,160,255,85,254,63,251,127,253,62,0,94,255,85,255,
84,0,218,255,2,0,61,2,175,4,236,4,183,1,101,253,32,252,200,254,25,2,159,2,126,1,253,1,184,2,146,1,
145,1,134,4,7,7,51,6,244,2,63,0,22,0,114,2,42,6,116,7,254,3,134,1,218,2,250,0,115,252,144,253,
234,0,80,255,237,251,50,250,170,250,57,255,235,3,129,3,16,1,192,254,179,251,197,251,127,254,101,253,45,251,163,253,
22,0,187,254,235,252,9,251,154,249,241,251,30,254,249,251,183,251,90,255,190,0,170,1,124,5,14,6,207,1,18,255,
107,254,224,253,25,255,118,1,156,2,126,2,226,1,85,1,250,255,27,254,14,0,85,5,151,7,163,6,167,4,151,0,
150,254,33,1,101,1,233,254,130,255,114,0,20,255,146,254,167,253,135,251,94,251,8,251,109,249,180,251,229,255,143,255,
17,254,131,0,190,2,196,0,17,254,22,254,110,255,30,0,223,255,210,255,251,1,224,3,222,0,51,254,122,2,219,5,
110,2,176,0,239,2,119,2,30,1,53,2,52,2,73,1,221,1,214,1,94,0,152,254,216,252,19,253,99,255,28,0,
78,254,61,252,240,251,18,254,140,255,36,254,97,253,193,253,146,251,231,249,62,252,173,253,11,253,143,255,183,3,1,5,
96,4,87,2,157,255,150,0,49,4,220,4,25,3,3,1,134,254,189,254,254,1,123,3,149,3,88,4,153,3,212,2,
158,3,10,2,122,255,219,255,22,255,95,252,122,253,21,1,183,2,176,2,32,1,112,255,221,0,126,3,220,3,4,2,
5,255,174,253,187,255,14,2,194,2,79,1,23,252,232,247,123,250,227,254,36,1,235,3,100,3,193,252,67,250,51,0,
105,3,187,0,29,1,207,2,231,253,131,249,22,253,184,254,95,250,209,251,90,3,26,5,239,0,59,254,255,254,92,1,
231,0,10,253,189,251,210,252,124,252,223,253,137,255,120,252,173,251,119,0,111,0,71,252,201,253,227,0,25,0,206,255,
64,255,83,252,173,252,133,255,33,255,176,255,232,2,63,1,90,253,116,255,28,2,13,0,236,255,22,3,55,4,201,3,
34,2,116,254,70,254,164,2,85,4,5,3,9,2,89,254,130,249,238,250,103,0,250,1,92,0,163,0,80,2,147,1,
198,253,166,250,44,252,201,0,36,2,39,255,150,254,192,1,2,2,209,255,107,0,43,0,243,251,189,249,166,250,49,250,
221,250,16,255,188,1,235,0,145,255,42,254,251,252,92,253,161,254,183,0,85,3,178,2,88,255,119,255,78,1,199,254,
195,252,165,0,135,3,170,1,234,0,104,1,92,255,226,253,227,255,208,2,91,4,150,3,164,1,177,1,10,3,202,2,
147,1,184,255,231,252,224,252,77,1,29,5,177,4,202,1,190,254,227,252,100,253,187,255,64,1,157,0,80,0,80,2,
107,3,10,0,155,251,223,252,168,2,233,4,191,2,50,2,146,2,105,0,120,255,127,1,1,2,201,0,76,0,194,255,
97,255,90,255,45,254,234,253,21,0,40,1,93,0,194,0,106,2,22,3,224,0,105,252,82,250,185,252,57,0,20,2,
223,0,0,253,28,252,130,0,147,3,35,2,91,0,154,255,0,255,76,0,46,3,34,4,193,2,114,1,110,0,200,255,
102,1,54,3,199,0,12,253,107,253,131,255,55,0,161,0,69,255,108,251,98,249,130,250,222,252,177,255,221,255,100,252,
62,251,147,253,48,254,193,253,56,254,248,252,28,252,208,254,230,255,78,253,86,253,99,0,185,0,46,254,203,251,226,250,
190,252,0,0,164,0,35,255,30,255,53,0,196,255,19,254,212,253,207,0,109,5,90,7,30,4,51,255,161,254,218,1,
178,2,154,1,226,2,73,2,130,253,164,253,130,2,90,0,56,251,45,255,93,5,146,4,12,3,123,2,44,254,220,252,
232,1,242,1,90,252,105,253,150,2,15,1,55,252,196,250,232,250,220,251,164,253,224,252,67,251,142,253,117,1,85,3,
19,4,37,3,141,255,255,252,193,254,67,2,214,3,140,4,26,6,152,5,123,2,1,2,0,4,86,3,104,1,10,1,
179,0,53,1,129,2,44,1,100,255,105,255,236,253,60,254,245,3,147,5,166,255,158,253,164,1,157,3,230,3,0,5,
31,3,26,255,57,255,16,2,83,0,93,251,25,251,124,254,93,255,118,255,8,0,226,252,99,249,13,251,244,252,125,252,
239,253,34,255,146,253,43,254,7,1,112,1,77,0,58,255,144,253,226,252,79,253,187,252,169,251,5,251,57,251,148,253,
34,0,212,255,104,254,145,253,65,253,8,0,228,4,75,5,84,1,47,255,177,255,232,0,168,2,199,2,189,0,153,0,
240,1,195,0,192,255,149,1,131,1,57,255,28,0,124,1,26,255,162,254,127,2,40,4,247,2,180,2,186,1,161,0,
160,2,4,3,179,253,205,248,235,248,55,251,135,253,97,255,174,255,155,254,148,253,232,253,224,254,15,254,247,252,175,254,
232,255,56,254,142,254,152,1,197,1,92,255,194,254,7,0,174,0,229,255,205,255,250,1,41,3,70,2,57,3,120,3,
4,255,205,253,106,4,241,7,94,3,242,255,239,1,53,4,179,3,123,1,146,255,91,255,23,0,228,255,127,254,159,254,
140,2,65,6,151,4,165,1,60,3,161,5,104,4,242,1,123,255,218,252,255,253,54,3,28,5,156,0,159,251,96,251,
88,255,203,3,202,4,52,2,37,0,245,0,217,2,120,3,201,1,198,254,59,253,201,253,45,254,154,253,253,252,136,252,
164,252,255,253,219,255,234,0,189,0,166,255,37,254,224,252,79,253,55,255,229,254,175,251,52,250,142,251,50,253,75,255,
138,0,170,254,72,253,23,254,235,252,7,251,186,251,12,252,43,252,139,254,14,255,79,254,4,2,30,4,199,254,163,251,
241,254,179,255,177,253,93,0,210,4,32,4,123,0,143,255,79,0,206,254,133,253,242,255,42,1,1,254,197,252,23,255,
181,255,111,0,56,4,29,5,122,1,174,0,74,3,53,3,92,1,153,1,167,1,44,0,169,0,226,2,176,3,242,3,
106,3,5,0,112,254,22,2,238,3,204,0,207,254,15,255,1,255,35,0,81,1,194,255,167,253,193,252,121,253,247,0,
206,2,118,255,220,253,127,1,13,4,245,3,232,3,62,2,251,254,169,253,143,255,239,2,41,3,45,255,219,254,243,3,
57,5,35,3,38,5,50,6,155,1,55,255,118,0,156,254,90,252,144,254,88,1,79,2,124,2,211,255,243,251,67,252,
37,255,52,1,129,3,156,2,73,252,71,250,135,255,12,0,115,251,100,252,82,255,76,254,190,255,172,2,125,255,2,252,
45,254,139,0,245,1,73,3,195,255,74,251,193,253,107,1,184,0,209,0,181,1,186,255,42,255,151,1,176,1,231,255,
37,0,236,0,77,0,126,255,94,255,47,0,63,1,175,0,50,255,69,255,34,0,225,255,85,255,237,254,122,253,42,252,
33,253,235,254,43,255,35,255,229,0,222,2,18,2,148,255,100,255,65,1,9,1,192,254,190,253,24,254,247,254,223,0,
153,1,88,255,90,253,193,253,190,254,217,255,23,1,57,1,239,0,111,0,162,253,162,250,96,252,30,1,195,2,130,0,
96,254,164,254,247,255,247,255,62,254,89,253,185,255,47,3,17,3,116,0,24,1,72,4,181,3,243,255,0,255,21,0,
202,254,218,253,217,0,205,2,56,0,199,254,82,0,148,255,82,254,84,1,133,3,27,1,26,0,20,2,253,1,128,0,
13,1,51,2,218,1,208,0,97,0,250,255,98,254,171,253,228,255,140,1,114,0,122,255,183,254,119,253,134,254,139,0,
81,0,69,0,178,0,20,255,123,254,35,0,37,0,171,255,81,0,146,254,21,252,57,253,235,254,89,254,30,254,229,254,
114,255,212,255,213,255,47,255,217,253,207,252,126,254,69,1,136,0,28,254,145,254,168,0,192,1,31,1,30,255,104,255,
216,2,103,3,57,0,2,255,118,255,204,254,126,255,8,2,246,2,16,2,5,2,63,4,153,6,190,4,241,255,141,254,
179,0,58,1,63,255,252,252,243,251,118,252,83,252,20,251,226,251,48,253,49,251,180,249,133,251,223,251,20,251,216,253,
125,0,2,255,198,253,77,254,116,253,249,252,139,254,16,255,121,254,219,254,2,255,138,255,3,2,117,2,236,254,129,252,
230,252,66,253,232,253,10,255,5,255,22,255,161,255,40,255,145,255,32,1,42,1,54,2,181,4,30,2,18,253,150,254,
171,2,242,1,252,255,6,0,117,0,55,1,178,0,53,254,70,254,40,1,125,2,33,3,41,4,223,2,249,0,245,1,
155,3,79,3,179,1,57,255,41,253,211,253,22,0,207,0,89,0,200,0,134,1,1,2,135,3,177,4,8,3,14,1,
50,1,26,1,137,0,197,1,33,3,191,2,90,2,192,2,67,3,34,3,245,0,82,254,218,254,88,0,136,254,179,252,
98,255,28,3,117,3,62,2,46,1,26,255,21,254,225,0,241,3,199,2,19,255,61,253,235,254,73,1,253,0,5,0,
227,255,203,252,49,249,57,252,178,0,0,254,78,249,89,249,114,251,243,252,21,254,149,254,49,255,139,0,86,2,161,3,
82,2,152,0,236,2,169,4,54,0,101,251,41,251,10,253,59,0,119,2,81,0,163,254,53,0,224,254,158,251,161,252,
128,254,237,253,208,254,161,0,143,0,40,1,209,2,236,2,162,2,207,1,9,254,100,251,1,255,3,4,120,3,43,0,
22,0,109,1,200,255,50,254,63,1,85,5,111,5,212,2,8,0,146,254,23,0,90,2,150,2,189,2,141,2,109,255,
201,252,132,253,80,254,240,254,140,1,119,3,236,2,224,1,239,0,47,0,171,255,144,254,35,254,244,254,79,254,126,252,
136,252,248,253,171,254,237,253,186,252,204,252,164,252,92,250,167,249,65,252,206,253,22,254,22,0,67,1,54,255,200,252,
28,252,135,252,243,252,229,252,121,253,136,255,24,1,87,0,3,255,2,255,189,254,199,253,90,255,245,1,116,0,230,253,
101,255,208,1,144,2,177,1,209,253,184,252,253,2,209,5,217,0,95,255,145,1,200,0,4,2,168,4,65,1,79,254,
63,1,51,2,242,0,218,1,166,255,46,252,143,0,17,6,92,3,89,0,175,1,67,0,106,254,41,2,135,4,134,1,
174,255,229,254,191,252,62,254,3,2,70,1,200,254,121,254,138,254,157,255,255,0,41,255,189,252,15,253,172,254,83,1,
209,2,11,0,117,254,191,1,97,3,159,1,117,1,192,1,243,255,106,255,133,1,150,1,144,253,153,251,33,0,79,4,
215,1,76,254,237,254,76,0,27,0,126,0,193,1,198,1,95,0,85,0,197,1,180,0,241,253,84,254,29,0,9,0,
14,1,66,3,106,2,63,0,59,0,147,0,21,1,146,3,172,4,53,2,12,1,132,2,204,1,147,255,227,255,183,0,
250,255,187,255,151,255,108,254,145,253,199,252,96,252,13,254,219,254,212,252,85,252,239,253,254,253,86,254,13,1,114,2,
203,0,76,255,135,255,164,255,217,254,196,254,72,255,255,254,109,255,23,1,162,0,182,253,22,252,88,253,194,255,161,0,
192,255,98,255,226,254,122,253,203,253,147,254,73,254,92,1,85,5,91,3,194,0,152,1,222,255,103,254,50,2,108,3,
161,255,77,254,6,255,103,254,135,254,235,255,181,1,214,2,130,0,227,252,176,252,209,253,149,253,59,254,15,0,97,0,
238,254,48,254,61,255,237,255,244,255,203,1,239,2,149,255,71,252,117,253,26,255,192,254,126,255,90,0,253,253,117,252,
214,255,6,2,142,255,48,255,62,1,34,0,113,255,191,0,128,254,195,252,117,255,134,254,221,250,207,252,177,255,161,255,
206,1,11,4,17,3,213,2,225,2,60,2,38,4,188,4,225,0,188,255,38,2,96,1,126,255,90,0,40,0,170,254,
3,0,211,1,44,1,236,1,97,4,174,3,200,1,65,2,168,1,100,0,78,2,86,2,180,253,229,251,169,253,151,253,
224,253,187,255,218,254,254,252,113,254,149,0,126,255,167,252,12,252,93,253,199,252,14,252,250,254,137,0,156,252,109,250,
236,254,38,4,124,4,16,1,116,253,101,252,29,254,53,255,184,252,184,249,131,250,23,253,133,254,102,255,30,255,145,254,
176,0,2,2,252,255,77,0,240,2,96,2,166,0,178,255,233,253,95,254,137,0,161,255,179,255,152,3,123,4,158,1,
129,0,139,0,51,0,229,0,187,1,87,1,44,0,62,255,230,255,35,1,176,0,18,0,10,1,247,0,130,254,31,253,
68,254,152,254,188,253,145,255,16,3,166,3,168,1,75,255,185,253,101,254,220,254,115,253,212,254,162,1,0,0,1,255,
232,1,173,0,107,252,244,253,55,2,176,2,201,0,242,254,16,254,83,254,246,254,251,0,0,4,95,4,182,1,74,255,
69,255,172,0,59,0,40,255,62,1,233,1,72,253,71,250,96,251,160,251,28,252,29,254,173,254,93,255,33,1,228,0,
238,0,254,3,170,5,201,3,163,2,49,4,6,5,13,3,245,1,163,3,153,3,5,1,28,0,87,0,175,255,84,255,
161,254,246,252,67,252,148,252,185,253,21,0,230,0,46,255,26,254,35,254,174,253,74,253,163,253,16,254,84,253,252,251,
213,253,191,2,167,3,137,254,200,250,196,252,137,0,200,2,152,4,32,5,235,2,243,1,136,3,83,2,126,255,25,0,
131,0,58,255,65,1,107,3,43,1,182,255,4,1,9,1,9,0,147,255,19,0,114,2,28,4,112,2,90,255,35,253,
254,253,133,1,226,1,146,254,74,253,169,253,243,253,225,255,90,0,253,253,189,254,23,2,206,1,220,254,196,252,192,251,
197,252,45,255,31,255,197,252,186,252,205,255,65,2,73,2,16,0,2,252,194,250,138,255,131,3,109,2,153,2,68,4,
185,1,198,255,155,3,0,6,133,2,248,255,88,2,161,4,147,3,69,3,42,5,47,4,23,0,119,254,159,0,67,4,
4,6,162,2,24,254,139,253,142,253,87,253,9,1,67,4,39,2,40,255,120,253,231,251,75,253,160,1,216,3,254,1,
78,254,163,251,14,251,29,252,208,254,171,0,146,254,202,252,188,255,144,2,91,1,23,255,116,253,65,252,64,253,211,0,
113,3,16,2,95,255,12,255,212,254,40,253,212,252,62,253,139,253,96,255,210,254,245,250,239,251,30,0,20,255,76,253,
209,254,192,253,78,252,201,255,49,2,148,0,168,0,55,2,127,1,1,0,250,254,216,253,174,254,102,1,247,0,58,253,
55,253,34,2,222,4,122,2,204,254,228,252,168,252,115,252,46,252,215,253,166,0,154,1,220,255,50,252,84,250,130,253,
113,0,18,0,0,3,131,6,7,1,151,249,181,250,91,254,24,254,59,253,169,253,190,253,204,252,155,252,19,255,6,1,
111,0,205,1,87,4,191,2,191,255,143,254,211,253,177,255,20,3,49,2,64,0,113,1,198,0,236,254,234,1,130,5,
110,4,212,2,203,2,94,2,107,3,45,5,185,2,239,254,211,255,18,2,23,2,171,2,109,2,70,255,43,254,91,255,
180,253,58,251,163,250,42,251,116,255,131,4,16,2,42,253,175,254,28,2,31,3,242,3,105,3,117,1,37,1,140,1,
59,2,30,4,174,3,171,0,214,0,108,3,178,2,188,0,214,2,21,6,76,5,29,3,251,2,26,2,239,255,177,0,
127,4,47,7,85,5,175,255,196,252,188,254,210,254,158,252,92,253,189,253,70,252,205,254,87,2,112,1,235,0,49,2,
9,1,87,0,201,1,8,0,246,251,169,251,184,254,208,0,201,255,208,251,171,248,53,251,6,1,202,2,48,1,94,2,
78,4,218,2,2,2,5,3,179,1,227,0,64,3,19,2,139,252,12,251,141,253,139,253,127,252,199,253,100,253,49,250,
143,250,58,254,230,253,0,251,249,250,215,251,120,253,103,2,218,4,116,1,136,255,95,1,30,2,138,1,48,1,199,0,
193,0,33,0,110,254,122,254,176,0,26,2,252,0,1,254,86,252,56,254,120,1,211,3,117,4,135,2,102,0,81,0,
23,0,67,255,229,254,123,253,206,252,230,254,12,255,175,252,169,253,14,0,44,255,201,254,230,0,71,1,124,0,79,1,
130,0,55,253,40,253,34,0,44,0,151,254,215,254,69,254,82,254,116,2,160,3,114,254,171,252,144,255,250,254,101,254,
215,2,144,4,230,0,23,0,237,1,27,0,137,254,189,1,28,3,182,255,62,254,29,255,136,254,198,255,73,2,237,255,
165,252,14,254,132,255,222,255,142,2,196,3,161,1,248,0,13,1,147,254,133,252,150,253,51,255,170,254,61,253,54,253,
4,253,114,252,5,0,78,5,144,4,242,0,105,0,80,255,23,253,154,254,127,1,119,2,249,3,26,5,52,3,118,1,
200,2,160,5,14,8,220,7,173,3,2,255,29,254,208,255,203,0,189,0,44,1,179,2,116,3,103,1,185,255,242,1,
82,3,252,255,223,252,185,251,55,250,192,251,122,255,249,253,240,250,253,253,69,2,126,3,75,4,167,2,145,254,100,254,
154,0,143,255,107,254,168,255,192,254,198,251,250,251,162,254,199,254,87,253,177,254,32,1,44,0,160,253,52,253,147,253,
120,253,255,254,46,1,8,0,94,253,48,254,119,255,71,252,240,249,36,253,90,0,34,1,146,2,127,2,42,0,247,255,
235,0,50,1,221,2,104,2,187,253,131,252,8,0,135,1,11,2,230,3,211,3,66,3,93,4,118,3,158,1,162,2,
172,2,23,0,88,0,248,2,170,2,46,0,203,254,44,255,211,0,11,1,57,254,54,252,147,252,215,251,4,251,255,252,
168,254,52,254,211,253,16,252,192,248,8,249,174,252,216,253,86,251,24,248,41,247,155,249,6,252,240,252,226,255,254,2,
29,1,229,253,216,254,197,1,30,3,35,2,124,0,195,1,134,4,86,3,79,0,109,0,58,1,173,0,173,1,107,3,
215,2,161,1,54,2,219,3,76,5,101,5,2,3,75,255,80,253,102,254,230,0,113,2,235,1,42,0,248,255,34,2,
117,2,11,255,82,253,238,255,26,2,19,2,79,2,174,1,209,255,193,0,15,4,178,4,160,2,226,0,240,254,233,251,
118,250,224,252,250,255,201,254,148,251,104,252,77,255,154,255,208,255,15,1,223,255,163,254,83,0,107,0,29,254,253,253,
178,254,52,254,112,255,141,1,251,1,179,2,55,3,14,1,93,255,231,255,39,255,92,254,145,1,206,4,140,2,126,254,
73,254,13,0,75,0,162,255,120,254,217,252,47,253,73,255,71,0,169,0,103,0,156,253,73,252,224,255,102,2,160,0,
161,255,169,0,84,1,27,2,4,2,243,255,99,255,147,1,253,2,199,2,101,2,8,1,78,254,115,252,76,253,48,0,
169,2,67,2,252,254,247,251,231,251,170,253,245,254,192,255,105,0,122,0,55,0,23,0,20,0,162,0,164,1,176,1,
166,0,40,0,41,0,28,255,177,254,122,1,251,3,113,2,252,0,124,2,106,2,197,254,169,250,34,249,102,252,86,1,
206,1,158,0,2,2,39,1,89,254,247,255,159,1,229,253,167,250,225,250,104,251,59,253,147,0,242,1,31,1,9,0,
39,0,218,1,64,1,236,252,41,252,18,2,194,6,163,5,181,2,124,0,177,254,198,254,167,0,119,1,233,0,92,0,
57,255,82,254,18,255,144,254,226,251,94,252,179,0,177,2,133,1,141,1,244,1,141,255,137,253,192,255,30,2,190,0,
68,255,97,255,213,254,119,255,233,0,227,254,169,253,112,1,148,2,36,255,78,255,250,1,145,1,179,0,244,0,116,0,
143,0,26,1,78,0,81,0,204,1,132,1,233,255,240,0,109,3,223,1,108,254,183,0,162,4,169,1,194,254,105,2,
253,2,242,253,211,252,239,253,164,251,192,251,223,255,29,1,21,0,106,0,80,255,37,253,128,254,0,1,149,0,198,0,
32,3,182,2,121,0,119,1,163,2,228,0,23,1,17,4,246,4,157,3,38,1,12,254,36,255,25,4,171,4,185,1,
116,2,7,3,235,254,174,253,228,2,103,5,254,255,194,249,128,250,217,255,252,1,218,0,70,2,39,4,52,1,100,253,
64,253,42,254,75,255,31,1,99,0,236,253,23,254,241,254,194,253,163,253,172,255,167,0,154,255,14,254,207,252,196,251,
12,251,62,251,75,252,135,253,217,254,211,255,159,255,69,254,122,252,208,251,37,253,161,254,170,255,146,1,62,2,80,0,
28,0,43,3,33,5,189,3,127,0,247,253,142,254,168,1,53,4,10,4,126,1,20,0,175,1,136,2,122,0,77,254,
119,253,4,254,147,255,115,255,87,253,42,252,199,252,92,255,209,2,5,3,170,0,151,0,55,2,8,3,12,3,205,1,
238,255,4,254,246,250,216,249,5,253,117,255,217,255,127,1,77,1,162,253,83,252,182,254,234,0,146,1,157,0,141,255,
72,0,73,0,103,254,129,254,187,0,152,1,89,1,226,0,116,255,215,254,55,0,182,0,239,255,198,0,226,1,112,0,
156,254,73,254,243,253,233,253,42,255,227,0,103,2,179,1,34,254,168,252,103,254,115,254,5,254,59,0,70,1,243,255,
42,255,146,254,153,255,165,3,210,4,149,0,31,253,205,253,167,0,160,2,68,1,181,254,173,253,251,251,204,250,126,254,
212,2,220,1,185,255,218,0,203,1,3,0,33,254,57,254,54,0,57,3,166,4,213,2,121,0,151,255,91,254,247,252,
206,253,61,0,199,2,157,4,206,3,36,1,222,255,100,255,155,254,28,0,195,3,248,4,125,2,83,0,194,0,132,1,
131,1,153,1,245,254,134,249,36,249,252,253,155,254,180,252,201,255,93,2,239,255,206,255,228,2,197,2,78,1,73,2,
45,3,253,2,140,2,164,0,121,254,221,253,170,253,117,254,196,0,207,1,241,1,152,2,12,1,197,254,119,255,31,255,
160,252,149,253,117,255,25,254,99,254,132,0,233,255,147,255,207,0,46,0,117,0,251,2,150,2,250,255,23,255,53,254,
230,252,196,253,84,255,71,255,61,0,22,4,32,6,135,3,193,1,51,2,135,255,51,253,18,1,167,4,22,3,4,1,
120,255,128,253,219,252,9,252,13,251,29,253,239,255,145,0,94,0,148,255,53,255,173,0,92,1,109,0,240,254,217,251,
188,250,214,254,82,1,160,254,253,252,111,254,245,255,233,0,234,0,230,255,124,255,206,0,130,3,166,4,247,1,13,255,
1,0,170,3,243,5,58,3,29,254,156,253,135,0,42,1,171,0,127,0,192,255,177,0,14,2,62,0,232,254,63,0,
199,255,187,253,223,253,15,255,190,254,189,253,140,255,9,4,24,4,167,254,45,253,37,1,95,2,128,0,92,0,55,1,
250,0,236,255,97,255,46,1,131,3,60,2,181,255,99,1,239,4,155,4,56,1,138,254,93,253,255,253,248,255,43,0,
51,254,59,253,161,253,67,254,205,255,163,1,100,2,108,1,112,253,58,249,26,251,13,1,67,3,56,2,3,3,139,4,
225,3,81,2,43,1,81,255,97,253,252,253,245,0,30,3,224,1,205,253,238,251,80,255,73,2,222,0,183,255,159,255,
129,253,64,253,156,255,226,253,29,251,93,255,72,5,122,4,54,0,41,254,99,254,1,0,118,2,7,3,216,255,113,252,
213,252,221,254,151,255,59,0,188,0,75,0,19,1,7,2,63,255,185,251,183,252,178,255,21,0,247,253,59,251,152,250,
192,253,18,1,144,1,142,1,67,0,251,251,129,251,121,0,4,0,208,249,140,249,101,254,156,0,143,1,65,2,192,0,
254,255,240,0,203,0,92,0,227,255,11,254,18,253,243,253,238,254,227,0,81,3,122,2,63,255,222,254,208,1,224,2,
177,0,151,255,64,255,60,252,32,251,33,0,182,4,232,3,106,1,78,0,234,255,54,255,220,254,254,255,163,255,13,252,
237,250,223,253,22,255,70,254,164,254,222,255,226,1,227,2,62,0,7,254,185,255,17,2,196,2,164,1,211,255,203,0,
223,2,13,2,43,1,42,1,31,255,210,254,161,2,124,4,17,2,88,255,100,255,199,2,219,5,174,4,175,1,146,0,
117,1,195,2,249,1,143,255,110,255,197,1,37,4,42,5,9,3,204,255,182,255,10,0,234,253,107,253,108,255,119,0,
174,0,236,0,78,0,0,255,6,254,167,254,234,255,131,255,33,0,243,2,21,2,218,254,46,0,127,1,148,254,127,254,
108,0,56,253,139,250,232,253,202,0,216,0,28,1,195,255,87,253,95,253,38,254,74,255,208,2,145,4,248,1,60,255,
85,253,98,252,120,255,199,2,24,1,216,254,12,255,153,254,241,253,251,253,214,253,215,255,194,2,240,1,1,0,104,255,
182,252,237,250,234,254,214,2,203,1,213,255,156,254,204,252,222,252,177,255,161,1,53,1,252,255,6,255,69,255,125,0,
140,0,225,255,148,0,52,1,239,0,57,2,191,3,48,2,230,254,97,252,212,252,120,1,113,4,12,1,117,253,132,253,
174,253,161,254,250,0,242,0,247,255,61,0,184,254,244,252,192,254,3,1,61,1,96,1,116,1,4,1,30,1,142,1,
235,1,156,2,3,3,253,1,185,0,96,2,66,5,84,3,203,254,127,255,115,3,151,4,103,4,9,4,160,1,157,255,
28,0,151,0,118,0,93,1,104,2,254,1,113,0,102,254,88,252,234,251,123,253,197,253,199,251,169,251,77,254,177,255,
69,255,76,255,30,255,106,253,99,252,145,254,151,0,74,254,37,252,181,253,228,253,190,253,109,2,163,4,122,255,34,252,
151,253,249,254,51,0,204,255,129,253,77,255,209,2,197,1,6,1,233,2,47,2,62,1,168,3,196,4,104,2,217,255,
61,255,85,0,222,0,172,0,79,2,207,3,209,1,235,254,206,253,46,253,123,252,84,253,64,0,75,1,116,253,1,251,
150,254,229,0,136,254,47,254,144,0,63,1,15,1,27,1,233,0,79,2,26,4,82,2,136,255,204,0,14,3,97,1,
40,255,107,255,202,253,213,250,90,252,117,254,5,252,67,251,94,254,142,254,86,252,73,252,176,253,189,0,20,4,24,2,
50,253,37,252,178,252,3,253,214,0,66,4,44,1,41,253,133,254,115,1,115,1,51,255,108,253,233,253,95,254,8,253,
35,254,2,2,130,2,17,1,110,2,28,2,4,254,254,252,37,0,225,1,38,1,230,0,122,2,87,3,212,0,126,254,
60,255,157,254,41,252,11,253,180,255,134,0,174,1,252,2,125,1,102,255,199,255,101,1,225,2,118,3,247,0,176,252,
70,252,139,255,210,0,134,0,97,0,174,253,247,252,110,3,71,7,129,2,113,254,58,254,225,253,72,254,40,254,10,253,
252,254,28,0,120,253,80,254,226,0,70,254,195,252,48,0,24,2,213,1,151,1,50,0,35,255,12,255,243,254,177,0,
168,2,164,1,245,0,85,2,93,2,236,1,208,3,29,5,216,1,109,252,239,250,161,253,27,255,103,254,46,255,154,1,
103,2,39,0,119,253,193,253,125,0,57,3,253,3,238,0,51,253,131,253,68,254,241,252,42,255,192,3,71,3,250,255,
101,0,155,3,91,4,233,0,149,253,60,253,94,253,134,254,223,0,199,254,61,251,76,254,170,1,24,255,225,253,91,255,
240,253,11,253,21,0,53,2,183,0,73,254,2,254,18,0,203,0,103,254,153,252,13,254,129,0,114,1,211,1,162,2,
210,1,109,255,195,254,138,255,255,255,48,1,162,1,120,255,53,254,184,255,111,1,86,2,28,2,138,0,85,255,40,255,
61,0,179,2,74,3,248,0,194,255,241,255,241,254,38,254,81,255,251,1,68,4,28,3,59,0,226,0,109,3,156,3,
65,3,239,3,244,3,135,3,254,2,112,1,242,255,200,255,19,0,222,255,71,255,194,254,214,253,58,252,94,252,14,255,
100,0,48,0,144,1,119,0,234,250,131,250,193,0,14,2,235,254,171,0,162,2,114,254,56,251,100,253,23,0,194,0,
27,0,32,255,174,255,191,1,80,3,231,2,128,1,191,2,45,5,226,2,112,255,234,0,122,2,96,2,158,4,175,3,
119,253,38,252,227,255,64,0,2,255,234,254,4,253,187,250,186,250,168,251,183,252,104,253,48,253,72,253,66,254,122,255,
172,255,6,254,151,253,253,255,148,0,222,254,29,0,25,3,128,2,163,254,242,251,168,253,194,1,59,3,73,2,183,1,
80,0,20,254,20,254,118,0,216,2,242,2,2,0,249,252,74,253,203,0,55,4,171,3,178,0,210,0,46,2,136,0,
235,255,103,1,207,255,132,253,219,253,154,252,249,250,106,253,117,255,32,255,138,1,241,3,151,0,159,252,220,253,147,0,
45,1,77,1,208,0,4,254,117,251,117,252,118,255,215,1,196,3,24,5,13,4,136,0,142,253,8,254,41,1,236,3,
61,4,184,1,68,255,107,0,119,2,167,1,226,0,57,1,105,255,38,254,94,0,2,1,145,254,148,253,168,253,122,253,
194,255,10,3,243,2,196,0,122,255,133,254,30,254,103,0,255,3,186,4,24,2,46,255,76,254,13,0,117,2,239,2,
25,3,82,3,143,255,34,251,62,253,217,0,166,255,249,254,76,0,59,254,213,251,189,253,98,255,211,253,193,252,130,253,
111,253,141,251,70,250,129,251,198,253,181,255,72,1,27,1,102,255,248,254,46,255,28,254,81,254,114,1,99,3,107,0,
24,251,16,249,19,251,217,252,216,253,34,0,156,0,180,253,225,252,149,255,189,1,95,3,248,4,39,4,1,2,237,255,
247,253,67,0,79,5,247,3,125,255,4,1,237,2,228,0,120,1,84,2,22,255,233,253,134,253,78,249,36,251,212,4,
160,6,81,255,196,252,179,0,29,4,142,4,89,2,179,0,49,2,43,2,153,254,87,254,185,1,13,1,23,255,180,2,
133,5,24,3,248,2,4,4,230,255,234,253,90,1,79,0,64,252,243,253,184,0,116,255,172,254,130,255,28,255,239,253,
135,253,13,254,94,254,93,254,89,255,94,255,121,253,248,253,125,255,119,252,88,249,139,251,236,253,19,253,1,253,83,255,
227,1,13,3,151,2,46,2,71,3,251,3,248,1,154,255,67,0,215,1,184,1,39,1,52,255,124,252,196,254,178,2,
42,0,81,253,198,255,53,0,243,254,90,1,155,1,247,254,226,0,118,3,173,1,118,1,203,3,93,3,109,1,135,1,
217,2,185,2,174,0,194,0,63,4,217,4,15,1,20,255,107,255,30,255,110,0,102,3,144,3,19,1,132,255,11,0,
3,2,247,2,238,0,227,254,164,255,205,0,165,0,241,255,83,254,141,253,152,0,153,3,55,1,160,253,246,254,189,1,
5,1,97,0,181,2,162,2,17,254,235,251,15,255,145,1,62,0,129,254,158,254,82,255,147,0,153,2,159,1,24,253,
150,252,157,1,167,3,236,0,108,254,1,253,149,253,58,0,40,0,249,253,186,253,124,253,228,253,239,0,86,1,26,255,
91,255,30,254,83,250,200,250,22,253,78,253,219,255,48,2,34,255,74,253,206,255,239,255,250,254,129,2,3,5,176,1,
231,255,126,3,128,5,14,4,81,4,46,6,139,6,49,5,24,3,106,2,33,3,213,2,184,3,120,5,56,2,107,254,
142,0,35,1,252,253,233,254,220,0,238,255,50,1,198,1,97,253,145,251,99,255,142,2,192,2,191,0,37,254,30,255,
15,3,57,3,94,254,150,251,151,253,186,254,38,254,85,255,94,254,94,250,139,251,186,0,135,1,184,254,28,252,22,252,
94,0,100,2,85,254,208,252,143,255,35,0,148,0,187,2,12,3,237,2,186,3,178,3,36,4,173,3,187,255,195,253,
255,0,18,3,127,0,124,252,21,250,17,251,32,254,79,254,130,251,91,251,124,253,234,252,199,251,117,253,185,254,71,255,
203,1,148,2,34,255,127,251,152,250,58,253,239,0,222,255,37,252,178,252,115,255,48,0,147,255,161,253,215,251,208,252,
83,254,239,253,166,252,162,252,153,255,63,2,249,0,26,0,148,1,248,0,193,255,82,1,207,2,136,2,52,2,125,2,
72,2,90,0,228,255,132,2,165,1,109,253,77,253,3,253,226,248,240,249,30,0,235,1,99,255,180,252,62,252,120,255,
228,1,15,1,31,1,27,1,123,255,223,0,56,4,83,4,191,2,95,2,197,1,190,254,178,250,147,250,37,254,165,255,
246,254,224,254,175,254,175,255,64,2,35,2,229,255,43,0,124,2,241,3,232,3,173,2,74,0,184,253,27,254,82,1,
156,1,119,254,201,253,200,255,161,0,244,255,47,255,239,255,98,1,15,1,113,1,1,4,233,3,71,1,100,0,55,0,
98,0,116,1,177,255,108,252,201,252,111,253,159,250,203,248,161,250,113,253,200,254,134,253,57,251,216,251,237,255,22,3,
68,2,225,255,118,255,141,0,151,1,245,2,3,4,61,3,175,1,44,1,59,1,250,0,15,1,159,1,135,1,176,0,
189,255,121,254,113,253,250,253,20,0,86,2,110,2,170,255,171,253,90,255,169,1,29,0,78,251,163,248,109,250,125,252,
134,253,159,255,73,255,204,251,97,251,2,253,88,253,196,255,84,2,11,2,199,3,103,5,95,2,35,1,102,2,114,1,
215,3,108,8,182,4,19,254,145,255,126,4,206,4,21,2,93,1,182,2,68,2,198,0,4,1,72,1,119,1,135,1,
137,254,169,252,23,255,77,254,169,250,8,252,222,254,157,254,165,253,32,251,45,248,211,248,4,250,157,248,6,247,44,247,
19,250,35,254,181,255,207,255,133,0,227,0,253,0,95,1,121,2,246,3,15,3,117,1,144,2,66,2,35,0,93,1,
16,2,126,255,81,255,93,0,113,255,142,255,205,255,17,255,21,0,135,0,142,255,113,1,50,4,237,3,176,2,135,2,
231,2,107,2,151,1,7,3,77,4,216,2,225,2,122,3,195,255,243,251,133,252,103,0,216,5,20,7,198,2,144,0,
25,0,49,254,209,255,67,2,229,255,18,255,57,1,119,0,187,255,80,1,2,2,54,3,180,4,186,2,67,255,145,253,
153,253,188,255,224,2,149,3,76,1,191,255,232,0,141,1,60,0,185,254,113,252,62,252,90,1,115,3,232,254,140,253,
51,255,11,254,213,255,47,4,13,3,84,0,183,0,95,0,88,255,49,255,221,253,84,252,124,253,208,0,243,1,152,254,
241,251,173,252,112,252,22,252,85,254,90,0,109,1,75,0,83,251,177,249,67,253,215,253,201,252,198,253,104,252,201,250,
122,252,147,253,168,254,28,1,126,1,235,0,122,0,21,255,127,255,183,255,88,253,208,254,34,2,77,255,53,252,63,254,
88,0,193,1,34,3,102,2,78,2,210,3,128,3,181,1,232,255,205,254,182,255,240,0,192,1,0,4,132,5,137,4,
108,3,203,2,178,2,102,3,56,3,224,2,40,3,42,1,136,253,207,251,95,252,9,255,248,1,34,2,182,1,76,2,
230,0,11,255,137,255,98,255,90,254,44,0,58,3,177,3,94,2,98,1,177,0,83,0,34,1,123,2,127,3,100,4,
237,2,98,254,53,253,53,1,136,2,63,0,222,255,231,254,229,251,61,253,200,1,95,2,199,0,110,0,98,254,146,251,
240,252,138,0,158,1,39,1,15,1,170,255,129,252,99,250,237,250,167,252,132,254,94,1,110,4,184,4,175,1,17,255,
94,0,11,3,52,2,171,0,202,2,184,2,95,254,77,255,234,4,162,5,73,4,103,4,208,0,96,253,12,0,1,2,
10,0,56,0,69,2,239,0,113,252,23,251,239,255,21,3,243,255,2,255,228,1,8,1,239,254,69,0,89,1,20,1,
151,0,58,254,133,251,72,251,18,253,207,254,111,254,118,253,148,253,74,252,233,251,33,0,61,3,23,3,167,3,185,1,
220,253,101,254,125,254,97,251,233,252,86,0,37,255,206,254,6,0,11,253,46,250,157,252,194,255,129,255,180,253,213,252,
42,253,83,254,191,255,194,255,194,254,51,255,46,0,195,0,243,1,45,1,188,254,213,255,141,1,59,255,12,254,174,255,
146,255,199,255,8,2,188,1,42,255,216,254,79,0,13,1,205,1,245,2,225,1,37,255,94,255,112,1,54,1,195,0,
73,1,122,0,120,0,126,2,83,3,194,2,124,1,75,255,243,253,91,253,205,253,26,1,152,2,251,255,204,255,8,1,
3,255,219,254,187,0,152,254,75,253,175,0,224,0,99,252,130,251,131,255,172,1,5,0,231,254,147,254,105,252,27,252,
216,255,41,2,59,1,77,255,206,252,241,252,98,0,169,0,143,253,170,253,220,0,151,2,0,2,239,0,255,255,137,254,
210,254,225,1,249,1,7,254,119,252,245,253,147,0,193,3,4,2,155,251,43,249,251,250,180,253,99,1,48,1,85,253,
96,253,123,254,146,253,112,0,10,3,41,255,201,252,250,255,249,1,163,0,246,254,161,255,57,2,5,2,239,254,208,253,
51,254,3,254,134,254,121,0,11,3,210,2,185,254,129,253,180,0,200,1,166,1,82,2,213,255,141,253,172,255,141,0,
78,255,84,0,240,1,233,2,74,3,62,1,42,0,226,1,149,1,215,0,243,2,173,2,126,255,26,255,14,0,232,254,
79,253,253,252,96,254,194,0,129,2,118,3,21,3,255,0,127,255,216,254,217,253,36,254,102,255,59,0,69,2,48,3,
194,255,140,253,62,0,116,2,190,1,217,0,172,0,128,0,87,255,1,254,241,254,163,0,20,1,66,2,51,3,189,1,
141,0,118,255,178,252,251,252,191,0,209,0,23,254,218,254,186,1,236,2,132,2,74,1,72,0,185,255,19,254,127,252,
151,253,255,254,175,253,159,252,246,253,58,254,15,253,233,253,87,255,217,255,235,1,209,2,149,255,76,254,0,1,38,2,
174,2,206,4,109,4,189,1,197,0,4,1,212,0,29,255,54,252,91,252,165,255,254,0,189,0,64,1,207,0,36,255,
34,254,24,255,176,1,47,2,170,0,11,2,36,3,120,255,158,253,54,0,61,1,83,1,17,2,215,255,144,253,133,255,
219,0,121,255,179,0,122,4,101,5,111,3,155,2,152,2,74,1,30,1,255,2,87,2,206,254,69,253,133,254,160,0,
88,2,123,1,110,254,85,252,188,251,198,252,246,255,140,1,164,254,142,251,135,252,2,255,53,255,43,254,31,254,9,254,
142,253,208,254,159,0,60,255,164,251,35,250,194,251,112,254,41,1,35,3,118,1,231,252,129,252,91,1,35,4,175,3,
13,4,90,3,29,0,210,254,12,1,56,3,3,3,2,2,100,2,0,2,28,255,213,254,177,2,159,3,110,0,58,255,
185,0,137,1,157,0,206,254,21,254,147,254,21,254,169,253,121,255,91,1,213,0,135,254,18,252,70,251,243,252,36,255,
140,254,7,251,176,249,138,253,163,1,222,1,197,0,188,0,183,1,86,2,219,255,237,251,35,251,53,252,167,252,86,254,
159,1,120,4,96,4,25,0,107,253,204,0,20,3,166,0,157,255,232,255,207,254,195,255,230,1,104,1,163,0,212,0,
39,0,174,255,122,0,88,2,196,3,34,1,19,253,33,254,40,1,242,0,126,0,137,0,102,254,32,253,111,255,223,1,
118,1,173,255,106,255,141,0,111,0,38,255,114,254,236,253,96,253,108,253,179,253,202,253,75,253,63,253,211,255,89,2,
182,0,250,253,194,253,178,253,160,252,43,253,183,255,67,0,229,252,199,251,198,0,157,4,99,3,222,1,99,0,239,254,
206,1,137,5,88,4,167,1,17,1,118,2,4,5,229,4,88,2,6,2,145,1,109,255,202,255,222,255,136,253,135,254,
58,0,171,253,125,253,47,0,5,254,65,251,148,253,50,254,153,250,177,249,127,252,92,254,125,254,255,254,131,0,80,1,
27,255,27,251,158,249,205,251,83,255,201,2,41,4,38,2,92,1,52,4,208,4,133,1,98,255,26,255,208,255,4,3,
102,6,192,6,253,4,152,2,30,1,27,1,49,0,193,254,152,255,106,1,216,1,30,1,54,0,129,0,15,2,131,3,
55,4,227,2,125,0,145,0,190,0,39,254,73,253,96,254,201,253,214,254,37,1,64,255,46,253,62,255,40,1,205,1,
14,2,18,0,104,254,145,255,150,0,73,0,122,255,179,254,236,255,220,1,202,0,28,254,86,253,80,254,148,254,140,253,
218,253,120,255,194,255,21,1,76,4,210,4,232,3,97,3,190,255,194,253,205,1,194,2,67,255,171,255,148,0,18,254,
143,253,154,254,78,254,242,254,227,255,119,255,247,253,182,251,7,253,6,2,85,2,123,254,98,252,184,249,80,248,96,252,
19,255,123,254,113,0,135,0,137,252,226,252,240,255,53,255,233,255,239,3,66,3,237,253,253,251,39,254,185,254,119,253,
199,254,189,0,129,254,240,251,57,254,151,1,220,2,112,4,100,5,103,3,85,2,33,5,200,6,205,3,74,1,174,2,
97,3,119,0,5,253,169,251,183,252,198,254,84,255,92,255,188,0,20,1,91,0,144,1,97,2,224,0,111,0,223,0,
0,0,124,255,176,254,2,253,171,254,214,1,235,255,60,252,235,252,229,255,120,2,56,3,48,255,102,249,14,248,58,250,
13,253,191,255,135,255,36,254,246,1,137,7,190,6,148,2,243,0,202,0,154,1,141,3,104,3,251,1,29,3,212,3,
115,0,78,253,213,253,121,254,221,253,157,255,247,2,111,3,182,2,82,4,155,4,4,1,54,254,70,254,23,255,156,0,
227,1,245,0,42,255,149,253,111,252,185,253,224,255,25,255,142,253,171,254,210,0,174,1,143,0,64,254,15,253,60,253,
146,253,83,254,220,254,169,254,107,255,92,0,23,255,40,253,101,253,127,255,80,0,118,253,38,250,200,250,153,253,191,255,
1,1,26,0,253,253,205,253,108,254,166,254,32,0,180,1,252,1,150,1,144,255,91,253,37,254,169,255,32,0,187,1,
114,2,210,255,63,253,187,252,100,253,53,255,110,0,67,0,125,1,81,3,136,2,225,1,107,4,235,5,168,3,191,2,
46,5,99,5,47,3,85,4,92,6,173,3,176,0,206,1,103,2,98,0,222,255,0,1,225,255,197,252,218,251,31,254,
18,0,249,255,38,0,59,2,71,4,48,3,7,0,82,0,110,4,170,5,165,2,79,0,100,255,118,254,52,255,153,1,
236,2,62,2,144,0,212,255,233,0,158,0,48,253,233,251,77,255,86,0,230,252,54,253,121,1,130,1,19,0,248,2,
241,3,26,0,142,254,239,255,141,0,89,1,19,1,206,254,206,255,184,4,104,6,246,1,215,252,182,252,189,254,152,253,
83,253,86,1,247,2,236,0,60,0,110,254,62,251,210,252,40,0,154,255,108,255,17,2,123,3,176,2,139,1,12,1,
86,1,25,1,45,255,85,252,88,251,12,254,43,0,213,253,191,251,251,252,40,254,132,254,246,253,232,251,242,251,74,253,
250,251,80,252,193,254,21,252,143,248,56,251,184,253,249,251,167,249,220,247,201,249,18,1,26,5,54,2,7,0,208,0,
139,0,242,255,142,1,179,3,164,3,197,1,153,255,158,253,54,254,92,2,94,4,33,1,117,253,2,252,39,252,28,254,
24,0,52,2,152,6,143,8,67,4,65,255,92,253,128,254,244,2,166,5,150,3,217,2,24,3,80,255,213,253,112,2,
253,3,176,0,175,0,104,3,106,2,69,255,144,255,54,2,91,2,1,1,82,1,159,0,253,253,166,254,49,2,98,2,
255,254,48,252,231,251,13,254,31,0,66,0,140,0,40,1,5,0,157,255,2,2,145,3,254,1,209,254,255,251,114,252,
226,255,162,0,212,253,69,253,124,255,196,255,87,254,210,254,63,0,229,254,230,251,101,251,252,251,116,250,146,250,43,255,
83,2,206,0,88,255,174,255,84,255,14,255,67,0,43,1,91,1,66,2,208,1,100,254,78,253,206,0,143,1,172,254,
124,255,43,1,61,254,186,252,39,254,177,252,130,252,216,0,185,1,226,254,99,255,46,1,220,0,140,0,14,0,250,254,
96,255,194,0,181,1,122,2,21,3,43,3,155,1,143,254,175,253,227,255,65,1,145,0,71,0,64,1,144,1,176,255,
245,253,134,254,216,254,54,254,214,254,129,255,122,0,131,3,36,4,21,1,198,0,104,2,154,0,13,254,50,254,49,255,
241,254,96,253,25,253,122,254,125,253,178,252,8,1,67,4,14,2,162,0,219,0,103,255,13,255,33,0,244,254,221,252,
144,253,19,1,130,3,159,1,42,254,48,253,61,255,126,3,218,4,1,0,89,253,84,0,85,0,98,254,127,255,173,253,
238,250,226,255,177,4,49,2,254,0,233,2,240,1,14,1,62,2,181,0,76,254,182,255,86,1,223,0,14,3,19,6,
220,3,91,2,122,6,197,5,119,254,159,253,120,2,27,3,164,1,253,0,83,255,21,255,101,0,190,0,37,1,250,255,
63,253,251,253,165,255,28,255,92,1,88,3,99,255,133,252,160,253,113,253,135,253,99,253,88,249,164,247,17,251,246,252,
47,254,245,0,55,0,217,253,12,0,135,3,136,3,147,1,191,255,22,255,119,0,152,2,137,2,237,255,5,255,229,1,
165,3,111,1,34,255,235,254,68,255,124,255,235,255,96,1,109,3,249,3,199,3,200,4,27,5,98,3,3,1,206,254,
242,254,213,2,136,5,128,3,24,1,121,1,206,1,33,0,68,254,4,254,176,254,12,255,54,255,54,255,99,255,210,0,
184,1,204,255,210,253,211,253,160,253,113,253,15,254,187,253,26,254,73,0,68,0,24,255,122,0,153,0,115,254,130,254,
0,254,44,251,29,252,84,255,52,255,43,255,86,1,248,2,228,4,244,5,8,4,45,3,20,4,179,3,130,4,222,5,
44,3,247,255,148,0,248,1,119,1,112,255,3,255,178,2,200,4,142,1,245,254,225,253,244,251,215,252,222,253,212,250,
122,251,27,1,76,2,18,0,94,255,73,254,194,253,200,254,223,254,161,255,17,1,252,255,110,255,167,1,207,2,65,2,
154,1,192,0,75,0,63,255,40,253,61,253,42,255,46,255,157,253,210,252,173,253,124,255,182,0,138,1,172,1,37,0,
179,255,221,255,123,252,126,250,114,254,247,0,235,254,97,252,176,249,210,249,183,254,8,1,65,255,147,254,170,253,227,252,
224,254,149,255,41,255,29,1,2,1,108,254,60,254,109,253,60,251,154,252,40,254,123,252,146,252,151,255,244,1,104,2,
18,1,23,0,134,0,209,255,167,255,137,2,93,3,88,0,30,255,195,255,234,254,223,254,150,0,157,0,15,0,247,2,
129,6,174,4,113,255,5,254,146,1,56,4,35,2,181,254,170,254,70,0,38,0,212,0,213,3,228,4,234,2,108,1,
72,1,104,1,130,1,73,1,193,0,56,0,92,0,142,1,200,1,119,0,101,0,148,0,124,254,89,253,222,254,139,255,
66,255,127,255,226,254,44,254,5,255,217,255,185,255,25,255,245,253,185,253,198,254,104,254,160,252,145,252,76,254,213,255,
15,1,130,1,68,0,71,255,118,255,247,253,38,252,71,254,97,0,20,254,130,253,46,1,216,1,251,254,180,254,26,1,
123,3,117,4,9,2,239,253,132,252,154,253,38,255,227,0,155,1,236,0,227,0,99,1,93,0,7,255,228,255,254,0,
127,255,20,254,181,255,112,1,145,0,3,255,117,254,35,255,83,1,228,3,103,5,150,5,99,4,164,2,110,1,203,0,
79,1,95,2,106,1,211,255,250,0,132,2,88,1,17,255,58,253,145,253,229,1,38,5,143,2,102,0,212,2,109,3,
42,1,136,1,166,1,227,253,28,252,119,254,73,255,52,254,4,255,142,0,251,255,181,254,229,255,196,1,114,255,55,251,
192,250,168,251,136,251,220,253,127,0,135,255,171,254,190,254,48,253,154,253,57,0,220,255,138,254,79,255,93,255,104,255,
81,1,255,1,218,0,18,0,245,254,206,253,238,254,95,1,49,1,188,253,112,252,142,0,138,4,252,3,80,2,155,2,
51,4,119,5,25,5,213,4,253,5,95,5,105,2,160,0,142,0,209,0,199,255,188,252,0,252,72,255,88,1,155,1,
213,1,84,255,53,253,19,0,157,2,251,1,243,0,50,254,99,252,55,255,177,255,158,252,56,254,102,0,215,252,3,251,
174,253,115,254,14,254,100,255,117,255,85,253,136,252,208,254,253,0,203,255,167,254,60,0,155,255,118,252,160,252,33,254,
10,253,213,252,122,254,189,254,28,254,146,253,21,253,37,254,188,255,143,255,148,254,160,253,175,253,4,1,118,4,240,2,
200,255,132,0,19,3,189,2,192,255,49,254,22,255,249,254,228,253,99,255,255,1,202,2,201,2,170,1,90,255,205,255,
229,2,31,4,129,3,31,3,142,2,35,1,111,254,171,251,30,252,203,255,71,3,186,3,250,0,7,0,132,3,4,4,
68,255,137,254,10,2,3,2,39,1,196,2,249,1,68,0,125,2,4,4,207,1,72,1,177,2,229,0,241,253,146,254,
198,255,86,254,6,254,124,255,6,254,66,251,126,251,231,251,253,250,122,252,239,254,229,254,98,255,249,1,45,2,76,255,
36,254,233,255,86,1,120,1,157,1,233,0,198,254,215,253,148,255,7,2,240,2,230,1,192,0,167,0,205,255,155,254,
147,255,46,0,198,254,7,0,32,3,26,2,166,255,32,0,240,255,169,254,43,0,168,1,67,0,72,255,188,254,124,253,
177,255,110,3,196,0,225,251,38,254,88,3,129,4,235,3,114,2,7,255,67,254,131,1,154,3,242,2,172,0,107,253,
17,253,118,0,29,1,215,253,65,253,57,255,118,253,219,249,81,251,245,255,68,1,174,255,147,254,85,254,87,255,185,0,
185,255,165,253,233,252,16,252,117,251,186,252,62,253,138,252,22,254,147,0,171,0,210,255,21,255,10,253,150,251,96,253,
89,255,45,254,53,253,224,254,141,255,59,255,249,0,53,1,106,254,183,254,134,1,91,1,21,1,4,3,225,2,218,0,
11,0,234,255,132,0,238,1,67,2,10,2,2,2,201,0,115,255,144,255,179,255,220,255,75,1,249,1,115,255,231,251,
234,251,79,255,240,0,204,255,169,255,106,0,30,0,147,0,26,2,147,2,39,3,168,4,8,4,23,1,39,0,87,2,
136,3,249,0,57,253,211,251,219,252,17,255,121,1,234,1,93,0,49,0,26,1,219,255,151,254,44,0,154,1,75,1,
103,1,127,1,240,0,251,0,29,1,105,1,142,2,82,2,50,1,213,1,139,1,196,255,17,1,69,3,214,1,96,255,
36,254,143,254,167,1,40,3,150,0,101,255,244,255,200,254,239,254,135,0,51,255,110,253,84,254,134,255,189,255,184,254,
74,253,221,254,4,2,238,1,100,255,31,253,37,252,222,253,194,0,83,1,191,255,75,254,136,254,178,255,191,254,163,252,
35,253,138,254,145,254,250,255,153,2,0,2,186,254,115,254,237,1,150,2,38,255,105,255,181,3,23,4,164,1,45,1,
22,0,75,254,176,254,127,254,103,253,45,255,146,1,109,1,164,0,79,0,156,0,224,1,89,2,207,1,78,1,244,255,
96,255,18,1,11,1,144,255,216,1,6,4,236,0,95,255,244,2,143,3,2,0,204,255,208,1,15,0,8,253,177,253,
27,0,157,0,72,0,20,1,23,1,89,255,51,255,148,0,1,0,154,255,44,1,19,0,186,252,229,251,140,251,34,251,
110,254,223,0,236,253,230,251,120,253,76,254,203,254,200,255,156,255,210,0,103,3,32,2,169,254,86,254,73,255,95,255,
107,0,238,0,186,255,145,0,222,2,51,2,38,1,77,2,83,1,162,255,225,2,243,5,36,3,235,255,92,255,155,254,
229,254,18,1,121,2,198,2,168,1,199,254,163,253,118,255,36,1,125,1,255,0,127,0,10,1,105,1,249,0,123,0,
134,254,17,253,151,0,220,4,29,4,152,1,197,255,237,253,2,255,22,2,123,1,7,255,195,255,43,1,177,255,235,253,
117,254,31,255,32,254,134,253,26,254,247,253,238,253,205,255,157,1,83,1,54,0,39,0,20,1,208,0,70,254,26,252,
198,252,47,255,162,0,6,0,210,255,199,1,113,2,155,0,86,0,60,1,157,0,24,1,213,2,99,2,250,1,239,3,
70,5,79,5,162,4,8,2,108,0,250,1,188,1,199,254,184,254,232,0,190,0,53,255,185,254,178,255,240,1,107,2,
108,255,169,253,135,255,0,1,117,0,121,255,167,254,10,255,36,0,29,0,63,0,46,0,75,253,154,251,153,254,104,0,
121,254,79,254,59,1,133,3,25,3,10,1,157,0,119,1,20,0,217,254,232,0,214,1,4,255,21,252,168,251,251,253,
181,0,182,0,48,0,50,1,91,0,2,254,79,254,50,0,145,0,122,255,193,254,61,0,87,2,204,1,218,255,220,254,
175,254,227,255,130,1,242,0,198,255,141,0,35,2,213,2,128,1,173,254,80,253,132,253,98,253,41,254,252,255,60,0,
67,255,3,255,175,255,149,0,63,0,226,254,18,255,94,0,114,0,53,0,175,0,232,0,198,0,104,0,110,255,71,254,
145,253,17,254,145,255,54,255,118,252,178,251,53,254,205,255,54,255,140,255,73,1,184,1,135,0,41,0,251,0,102,0,
28,254,185,253,59,0,152,1,122,0,13,0,152,0,48,0,174,255,169,255,230,255,151,1,247,2,251,0,156,254,232,254,
39,255,45,254,11,254,12,255,43,0,19,0,202,254,46,255,234,0,24,0,5,254,70,254,12,255,130,254,248,254,251,0,
150,1,45,0,41,0,3,2,160,1,211,255,111,1,34,4,97,3,119,1,178,0,109,0,67,1,98,1,147,254,88,253,
155,0,87,3,40,3,250,2,197,2,192,1,46,2,56,3,165,1,118,255,41,255,123,254,79,254,31,1,225,1,126,254,
89,254,229,1,2,2,140,255,235,254,210,255,113,1,195,1,115,255,185,254,255,255,159,254,185,253,78,1,34,3,94,255,
174,251,245,251,81,254,37,0,90,0,127,255,217,254,79,255,155,0,24,1,172,0,222,0,6,1,102,0,29,0,133,255,
29,254,32,254,93,255,155,255,234,255,106,1,66,2,96,1,170,255,157,254,95,255,249,0,217,1,179,2,119,3,125,1,
250,253,21,255,151,4,234,5,9,1,115,253,145,253,197,253,171,254,185,0,11,0,188,253,198,254,96,1,151,1,30,1,
52,1,207,255,250,253,117,254,212,255,28,255,88,252,2,250,160,250,197,253,23,0,74,0,211,255,86,255,97,255,123,0,
54,1,107,1,138,2,72,3,123,2,253,1,244,1,120,0,231,253,210,252,201,254,252,0,202,255,255,253,128,254,34,254,
112,253,120,255,253,255,188,253,96,254,61,0,173,255,196,0,149,2,196,255,141,252,172,253,63,255,132,255,65,0,202,255,
12,254,14,255,219,2,137,4,187,2,51,1,47,1,107,0,222,255,48,2,150,5,182,6,29,5,90,2,226,0,87,1,
72,1,85,0,30,1,252,2,175,2,227,0,242,0,81,2,95,1,119,254,69,253,193,253,144,253,88,253,218,253,206,253,
174,253,35,254,29,253,153,250,69,250,248,252,136,255,39,0,39,255,64,253,32,252,199,252,11,254,139,255,75,1,15,1,
17,255,58,255,211,0,187,255,130,253,181,253,1,255,175,255,31,0,179,255,187,254,8,255,211,255,24,0,178,1,143,3,
230,1,15,255,92,255,28,0,102,255,172,0,88,2,164,0,47,255,104,255,11,253,21,251,74,254,228,0,179,254,126,253,
138,255,137,0,14,0,1,0,157,254,35,252,101,253,133,1,36,1,172,252,244,251,86,255,177,1,155,2,109,2,54,0,
204,254,66,0,164,1,5,1,112,255,178,253,2,253,102,254,71,0,178,0,130,0,118,1,12,3,116,3,214,1,248,254,
219,253,128,0,237,2,89,1,136,255,56,0,13,0,24,255,124,0,237,1,161,0,49,255,136,255,137,255,187,253,209,251,
167,251,184,252,85,254,51,0,19,0,90,253,176,251,142,252,147,253,212,253,174,253,172,253,242,254,242,255,160,254,232,253,
240,255,74,1,64,0,81,255,144,255,121,0,171,1,181,1,43,0,54,255,156,255,32,0,236,0,6,2,53,2,63,2,
235,2,14,2,190,255,18,255,4,0,208,0,79,1,43,1,184,0,129,0,34,255,219,253,93,255,80,0,57,254,163,253,
47,255,186,254,226,253,229,254,151,254,186,252,95,252,173,252,54,253,107,0,57,3,99,0,75,252,24,253,222,254,248,253,
228,253,204,254,133,254,110,255,30,1,54,0,145,254,55,254,23,254,215,254,197,255,162,255,254,0,212,2,96,1,221,255,
244,0,30,1,121,0,33,1,10,1,79,0,148,1,183,3,19,4,148,2,159,1,96,2,249,1,215,255,165,255,57,0,
210,254,47,255,114,2,132,3,231,1,233,0,188,0,190,0,85,0,205,254,14,254,21,255,48,255,85,254,96,255,127,0,
35,254,165,251,255,253,211,1,171,1,168,255,142,255,227,255,223,254,207,253,245,253,238,254,128,255,91,255,96,255,3,255,
66,253,55,252,5,254,112,0,242,0,13,1,16,2,208,1,228,255,101,255,148,0,19,1,27,1,237,0,158,255,222,254,
225,255,223,0,123,1,59,2,86,2,32,2,81,2,96,2,166,1,205,255,169,254,53,0,148,1,245,0,28,1,116,1,
223,0,213,1,0,2,66,255,193,254,45,0,101,255,220,255,17,1,41,254,141,252,69,255,58,255,176,253,178,255,50,0,
215,253,187,254,174,1,242,1,127,0,140,255,205,255,21,1,166,1,4,1,234,0,239,1,244,2,10,3,191,2,92,3,
43,4,68,3,76,1,129,0,210,0,193,0,225,0,74,2,65,3,71,2,246,0,162,0,63,1,42,2,60,1,201,254,
169,254,191,255,79,254,115,253,195,255,172,0,36,255,164,255,180,1,196,1,252,0,162,1,71,2,226,1,245,1,86,2,
248,1,127,2,35,4,73,4,172,3,70,4,83,4,15,3,134,2,243,2,41,3,147,2,210,1,63,2,9,2,76,255,
235,253,74,255,232,254,203,253,199,255,188,1,41,1,127,0,48,0,220,255,144,0,95,1,253,0,225,255,221,254,136,254,
20,254,36,253,28,254,162,0,3,1,160,255,152,254,136,253,251,253,249,0,155,2,100,1,114,0,12,0,234,254,168,254,
193,255,39,0,122,255,221,254,238,254,58,0,154,1,112,0,82,254,246,254,88,0,51,255,152,253,61,253,59,253,243,253,
200,254,128,254,130,254,38,255,160,255,146,0,107,0,207,254,1,0,161,2,87,1,63,255,57,0,188,0,153,255,99,255,
236,255,97,0,148,0,171,0,34,2,207,3,12,3,180,1,222,1,19,2,8,2,151,2,93,3,167,3,176,2,118,1,
179,1,160,1,51,0,126,255,158,254,85,253,37,255,175,1,209,255,252,252,142,253,9,255,90,255,80,255,110,255,18,0,
115,0,193,255,78,255,110,255,2,255,88,254,232,253,57,254,204,255,61,0,159,254,178,254,67,0,41,255,208,253,23,0,
40,2,98,1,95,1,179,2,204,2,17,2,194,0,150,254,159,254,144,1,202,2,66,1,164,0,67,1,163,0,245,254,
55,254,132,254,9,254,221,252,4,253,166,253,54,253,208,253,230,255,65,0,30,255,40,255,190,255,131,255,42,255,110,255,
203,255,140,255,155,255,91,0,130,255,66,254,153,0,46,3,25,1,40,254,213,253,147,254,168,0,231,2,240,1,0,0,
59,0,2,1,105,1,143,1,2,1,24,1,199,1,104,1,0,1,200,0,182,255,201,255,55,1,22,1,206,255,5,255,
164,254,117,255,203,0,158,0,25,0,86,0,217,255,182,254,46,254,119,254,72,255,153,255,78,255,121,255,47,255,54,254,
192,254,210,255,80,255,32,255,186,255,177,254,97,253,91,254,187,255,165,255,116,255,47,255,104,253,6,252,91,253,197,254,
93,254,194,254,123,255,39,254,62,254,50,1,118,1,186,254,28,254,13,255,186,255,198,1,37,3,201,0,99,254,174,255,
175,1,44,1,235,255,61,0,34,1,91,1,194,1,215,1,232,255,130,254,231,0,104,3,240,1,105,0,213,1,181,1,
218,254,170,254,180,1,252,2,104,1,143,255,149,254,211,253,155,252,13,252,90,253,155,254,142,254,189,254,166,254,99,253,
44,253,56,254,116,254,86,254,29,254,73,253,204,253,173,255,218,255,116,254,206,253,202,253,78,253,166,252,145,253,105,0,
198,1,237,255,71,254,146,254,204,254,2,255,169,0,251,1,129,0,148,254,246,255,10,2,252,0,233,255,198,0,137,0,
181,0,16,3,212,2,103,0,96,1,90,3,105,2,32,1,197,0,158,0,46,1,237,0,140,255,167,255,65,0,3,255,
85,253,196,252,191,253,96,0,227,2,243,3,48,3,202,255,129,252,50,253,60,255,44,255,29,255,240,255,191,255,122,255,
251,255,117,255,135,254,91,255,49,0,153,254,129,252,193,252,22,255,106,1,142,1,64,255,27,253,235,252,19,254,167,255,
209,255,176,253,163,252,121,254,74,0,60,1,232,1,229,0,170,255,139,0,32,1,172,0,72,1,151,0,27,253,189,251,
90,254,44,0,159,254,176,252,117,253,137,255,179,255,110,254,83,254,127,255,181,0,41,1,96,0,106,255,224,255,72,1,
16,2,124,1,200,255,23,254,227,253,46,255,246,255,102,255,221,255,33,2,60,3,141,2,252,1,216,0,73,255,28,0,
50,2,254,1,36,0,53,255,219,255,95,1,248,1,205,0,110,255,29,255,29,0,105,2,201,3,63,2,125,0,9,1,
58,1,11,0,44,1,188,3,117,2,240,254,102,254,96,255,14,255,251,254,60,255,99,254,159,253,178,253,175,253,184,253,
146,254,151,255,131,254,238,251,159,252,200,255,159,255,211,254,113,1,14,2,17,0,57,1,21,2,196,255,84,0,13,3,
123,2,22,1,79,1,204,1,196,2,161,2,78,0,40,255,137,255,157,255,159,0,153,1,27,1,107,1,115,1,251,254,
202,253,85,255,11,0,50,0,249,0,1,0,236,253,57,254,15,0,61,0,80,255,103,255,92,255,28,254,78,254,78,0,
190,0,97,0,193,1,103,2,244,0,33,0,26,0,48,0,122,1,168,1,143,254,153,252,112,254,204,255,222,254,127,254,
255,254,49,255,222,255,132,0,123,255,50,254,231,254,79,0,30,0,46,255,58,255,41,255,19,254,24,254,142,255,16,0,
210,255,108,255,215,253,160,253,45,0,153,0,154,254,90,255,158,1,123,2,205,2,240,0,215,253,5,255,185,1,65,0,
147,254,233,255,196,0,83,0,8,0,225,255,89,0,57,1,31,2,5,3,215,1,47,255,57,255,41,1,180,1,82,1,
97,0,140,255,155,0,69,1,50,0,184,0,239,1,138,0,221,254,249,254,75,255,63,255,178,254,86,254,251,255,83,1,
134,255,251,253,58,255,244,255,252,254,27,255,76,0,137,0,219,0,82,2,172,2,203,1,110,2,73,3,186,1,216,255,
128,255,31,0,7,2,109,3,235,1,69,0,47,0,15,255,47,254,238,255,188,0,176,254,139,253,195,254,18,0,28,0,
245,254,186,253,188,253,76,254,63,254,107,254,42,255,219,254,147,253,170,253,121,255,84,1,97,2,85,2,123,1,206,0,
51,0,7,0,212,1,234,3,149,3,163,2,170,2,218,1,180,0,238,0,28,1,208,0,184,1,155,2,148,1,176,0,
93,1,169,0,25,254,130,254,44,2,250,2,100,0,149,255,86,0,160,255,211,254,13,255,135,254,184,253,213,254,209,0,
138,0,133,254,53,254,81,255,57,255,31,255,56,0,58,0,73,255,173,255,123,0,79,0,105,255,243,253,204,253,104,0,
254,1,140,255,70,253,251,254,203,0,232,254,4,253,102,254,201,255,198,255,169,0,202,0,13,255,52,255,181,0,8,0,
121,255,179,0,5,1,227,0,99,1,61,0,61,254,136,254,39,0,152,0,174,255,240,254,142,255,190,255,23,254,209,253,
24,0,224,0,167,255,224,255,75,1,243,1,15,2,134,1,143,0,204,0,159,1,47,1,101,0,89,0,51,0,46,0,
192,0,164,0,54,0,48,1,109,2,72,2,179,1,215,0,223,254,106,253,64,254,241,255,126,0,67,0,130,0,250,0,
160,0,32,0,169,0,48,1,199,0,135,0,58,0,241,254,237,254,122,1,174,2,156,0,81,255,69,0,29,0,244,254,
157,255,168,0,3,0,126,255,144,255,38,254,139,252,193,253,150,0,5,2,243,1,180,1,151,1,140,1,41,1,10,0,
186,255,84,1,41,2,164,0,130,255,173,255,196,255,1,1,250,2,197,1,57,254,28,253,194,254,154,0,173,1,238,1,
218,1,169,1,206,0,4,0,4,0,154,255,196,254,195,254,9,255,27,255,166,255,245,255,68,255,35,255,137,0,186,1,
124,1,189,0,215,255,226,254,129,255,191,0,139,255,118,254,112,0,231,0,211,254,149,255,241,0,186,254,54,254,243,0,
242,0,87,255,65,0,15,1,66,0,218,255,132,255,230,254,171,254,138,254,232,254,105,255,224,254,242,254,30,0,164,255,
101,254,10,255,191,255,42,255,100,255,153,0,11,1,155,0,34,0,249,255,185,255,90,255,181,255,58,0,204,255,192,255,
151,0,46,0,24,255,156,255,51,0,64,255,223,254,251,255,234,0,47,1,248,0,244,255,232,254,187,254,19,255,147,255,
21,0,121,0,233,0,202,0,234,255,202,255,240,255,150,254,200,253,29,255,245,255,251,255,210,0,2,1,214,0,85,2,
145,2,151,255,113,253,198,253,54,254,106,254,17,255,143,255,110,255,83,255,57,0,213,0,86,255,15,254,16,255,66,0,
24,1,249,1,0,1,138,255,74,0,232,0,188,255,212,254,230,254,188,255,118,0,128,255,136,254,28,255,19,255,60,254,
224,253,187,253,252,254,252,0,140,0,91,255,110,255,138,254,5,254,185,255,127,0,110,0,139,1,77,1,187,255,209,255,
70,0,194,255,97,255,66,255,246,255,30,1,124,0,70,255,214,255,179,0,244,0,170,1,89,2,246,1,196,0,83,0,
100,1,192,1,120,0,239,255,13,0,68,255,42,255,91,0,183,0,198,255,247,254,71,255,210,255,42,255,214,254,66,0,
17,1,168,0,49,1,26,2,54,2,8,2,43,1,225,255,183,255,136,0,224,0,43,0,14,0,41,2,160,3,253,1,
79,0,206,255,195,254,222,254,118,0,219,0,165,0,33,0,23,254,30,253,234,253,100,253,208,252,21,254,205,254,177,254,
12,255,113,254,231,252,227,252,246,254,221,0,102,0,18,255,111,255,243,255,93,255,217,255,34,1,246,0,56,0,164,0,
219,1,198,2,15,3,164,2,178,0,147,254,191,255,62,2,149,1,10,0,10,0,66,255,201,254,77,0,207,0,236,255,
133,255,250,254,68,255,1,1,39,1,109,255,4,254,48,253,220,253,149,255,46,255,183,253,87,254,87,255,3,255,36,255,
212,255,108,255,184,254,97,255,68,0,218,255,73,255,15,255,104,254,247,254,230,0,17,1,53,0,157,0,94,0,145,255,
133,0,63,1,148,0,218,0,168,1,129,1,53,1,80,1,215,1,246,1,178,0,30,0,20,1,178,0,221,255,54,1,
187,1,82,255,136,253,50,254,77,255,105,255,20,255,186,255,229,0,53,0,22,254,131,253,130,254,179,254,64,254,253,254,
13,0,178,255,254,254,12,255,40,255,207,255,67,1,155,1,186,0,65,0,28,0,40,0,193,0,48,1,115,1,214,1,
98,1,118,0,156,0,49,1,195,0,126,255,114,254,41,254,112,254,29,255,216,255,181,255,19,255,227,254,113,254,57,254,
158,255,171,0,19,0,73,0,26,1,82,0,169,255,100,0,16,0,155,254,157,254,162,255,225,255,58,0,245,0,55,0,
31,255,111,0,150,2,124,3,21,4,108,3,176,0,152,255,86,1,150,2,186,2,202,2,56,2,17,1,144,255,36,254,
143,254,118,0,89,1,63,0,175,253,49,252,241,253,197,255,68,255,211,255,114,1,85,0,153,254,140,255,171,0,125,0,
49,1,56,2,60,1,140,255,139,255,44,0,241,255,192,255,221,255,176,255,194,255,12,0,76,0,232,0,168,0,149,255,
71,0,41,1,205,255,197,255,186,1,91,1,77,0,110,1,33,1,206,254,168,254,50,0,130,0,12,0,170,255,21,255,
184,254,54,255,81,0,30,1,226,0,235,255,176,255,35,1,74,2,11,1,171,255,133,0,104,1,249,0,229,0,11,1,
90,0,181,255,191,255,220,255,239,255,109,0,241,0,112,0,192,255,136,0,94,1,231,0,170,0,65,0,197,254,223,254,
147,0,98,0,60,255,115,255,145,255,58,255,169,255,244,255,172,255,194,255,180,255,240,254,95,254,117,254,160,254,233,254,
16,0,101,1,39,1,200,255,76,255,3,0,11,1,108,1,119,0,46,255,0,255,190,255,184,0,22,1,55,0,112,255,
164,255,130,255,255,254,80,255,16,0,133,0,109,0,119,255,151,254,214,254,142,255,82,0,17,1,6,1,244,0,57,2,
240,2,241,0,172,254,52,255,249,0,44,1,73,0,1,0,146,0,25,1,115,0,252,254,96,254,134,254,130,254,203,254,
242,254,112,254,230,254,234,255,71,255,157,254,86,255,43,255,181,254,25,0,136,0,215,254,65,255,135,1,51,1,4,0,
121,1,52,2,32,0,163,255,52,1,135,0,235,254,213,255,244,0,5,0,38,255,235,255,139,1,56,2,155,0,102,254,
13,254,205,254,74,255,205,255,99,0,162,0,81,0,158,255,64,255,62,255,55,255,140,255,171,255,226,254,94,254,250,253,
140,252,46,252,17,254,190,254,38,253,225,252,185,254,184,255,32,255,176,254,38,255,166,0,186,2,193,2,74,0,186,255,
246,1,89,2,159,0,76,0,188,0,82,0,225,255,168,255,230,255,186,0,152,0,248,255,163,0,251,0,231,255,171,255,
137,0,189,0,132,0,169,0,247,0,42,1,238,0,55,0,234,255,115,0,121,0,6,255,235,253,113,254,120,254,166,253,
127,254,191,255,207,254,57,254,252,255,85,1,248,0,140,0,117,0,59,0,72,0,206,0,225,0,248,255,145,255,122,0,
233,0,196,0,152,1,193,1,14,0,89,255,20,0,154,255,228,254,20,0,72,1,194,0,50,0,218,0,186,1,239,1,
124,1,186,0,220,0,44,2,33,2,7,0,133,255,62,1,79,1,149,255,4,255,80,255,89,255,170,255,21,0,71,0,
58,0,90,255,173,254,76,255,77,255,36,254,48,254,48,255,73,255,49,255,154,255,219,255,22,0,84,0,36,0,251,255,
8,0,168,255,239,254,155,254,63,255,164,0,104,1,134,0,244,254,97,254,244,254,114,255,177,255,202,0,51,2,67,2,
19,1,169,255,240,254,180,255,7,1,170,1,50,2,67,2,252,0,5,0,54,0,53,0,9,0,213,255,78,255,215,255,
44,1,80,1,243,0,138,0,37,255,146,254,189,255,82,0,71,0,168,0,129,0,18,0,135,255,161,253,102,252,173,254,
157,1,12,1,90,254,123,253,164,254,132,255,252,255,83,0,126,255,166,254,36,255,162,255,82,0,59,1,232,255,117,254,
60,0,135,1,148,0,27,1,10,2,252,0,109,0,245,0,206,0,54,0,115,255,29,255,16,0,186,0,104,0,56,0,
175,255,28,255,194,255,51,0,99,255,255,254,185,255,52,0,136,255,242,254,63,255,194,254,75,254,89,0,208,1,128,0,
146,0,251,1,114,1,10,1,64,1,176,255,199,254,50,0,100,1,87,1,178,255,173,253,209,254,50,1,194,0,224,255,
62,0,191,255,58,255,201,255,218,255,59,255,215,254,255,254,194,255,144,0,32,1,41,1,75,0,168,255,37,255,144,253,
65,253,255,254,71,255,150,254,117,255,72,0,22,0,102,255,89,254,56,255,199,1,236,1,31,0,60,255,39,255,243,255,
158,0,87,255,93,254,12,255,126,255,249,255,36,0,202,254,226,254,62,1,247,1,183,0,189,255,133,255,101,0,92,1,
248,0,81,0,18,0,1,0,145,0,205,0,112,0,35,1,224,1,8,1,66,0,183,0,79,1,204,0,76,255,222,254,
245,255,121,0,38,0,182,255,159,255,56,1,139,2,241,0,219,255,194,0,55,0,19,0,4,2,112,1,245,254,79,255,
209,0,247,0,135,0,178,255,172,255,197,0,50,0,141,254,169,254,21,255,150,254,1,255,37,0,95,0,20,0,241,255,
104,255,200,254,123,255,136,0,177,255,171,254,230,255,80,1,93,1,120,1,76,1,26,0,79,255,169,255,103,0,106,0,
76,255,143,254,208,254,229,254,102,255,107,0,44,0,210,255,113,0,164,255,135,254,38,0,131,1,252,255,14,255,89,0,
11,1,14,0,9,255,41,255,229,255,26,0,247,255,144,0,146,1,166,1,176,0,35,0,209,0,141,1,62,1,152,0,
125,0,160,0,119,0,20,0,222,255,1,0,79,0,152,0,194,0,185,0,81,0,109,255,167,254,192,254,95,255,211,255,
17,0,98,0,34,1,152,1,55,0,85,254,28,255,111,1,190,1,123,0,66,0,195,0,55,0,13,255,61,255,204,0,
184,1,125,1,59,1,217,0,215,255,67,255,174,255,199,255,255,254,183,254,93,255,187,255,148,255,106,255,21,255,1,255,
137,255,202,255,210,255,10,0,124,255,197,254,106,255,17,0,195,255,216,255,231,255,54,255,226,254,208,254,196,254,248,255,
52,1,132,0,141,255,233,255,196,0,119,1,81,1,54,0,65,0,202,1,13,2,41,1,154,1,241,1,23,0,171,254,
136,255,50,0,169,255,64,255,6,255,82,255,52,0,137,255,188,253,193,253,183,254,199,254,28,255,103,255,150,254,92,254,
244,254,156,254,54,254,215,254,52,255,249,254,245,254,7,255,16,255,93,255,10,0,217,0,219,0,183,255,7,255,222,255,
195,0,99,0,186,255,250,255,165,0,204,0,106,0,45,0,150,0,65,1,110,1,252,0,24,0,91,255,215,255,222,0,
148,0,102,255,162,254,108,254,81,255,212,0,200,0,176,255,118,255,96,255,67,255,19,0,91,0,128,255,85,255,138,255,
90,255,54,0,132,1,26,1,1,0,236,255,227,255,39,255,152,254,137,254,187,254,102,255,106,0,249,0,225,0,161,0,
107,0,86,0,125,0,164,0,237,0,140,1,110,1,217,255,110,254,238,254,98,0,157,0,138,255,241,254,67,255,122,255,
209,255,238,0,157,1,26,1,6,1,38,2,123,2,243,0,126,255,120,255,218,255,8,0,255,255,244,254,162,253,2,254,
68,255,158,255,3,0,11,1,39,1,106,0,64,0,36,0,117,255,77,255,181,255,114,255,40,255,214,255,93,0,106,0,
52,1,0,2,157,1,35,1,53,1,5,1,232,0,134,1,62,2,57,2,119,1,229,0,216,0,65,0,66,255,81,255,
239,255,126,255,50,254,176,253,233,254,112,0,132,0,107,0,8,1,96,0,6,255,145,255,123,0,114,255,35,254,104,254,
133,255,238,255,40,255,89,254,56,254,30,254,29,254,117,254,165,254,247,254,106,255,57,255,77,255,106,0,27,1,186,0,
0,0,68,255,43,255,7,0,219,0,220,0,72,0,249,255,71,0,111,0,139,0,53,1,30,1,47,0,140,0,89,1,
144,0,194,255,39,0,112,0,111,0,140,0,90,0,27,0,68,0,199,0,110,1,72,1,56,0,243,255,184,0,234,0,
174,0,4,1,26,1,83,0,223,255,19,0,232,255,162,255,37,0,230,0,69,1,53,1,103,0,190,255,85,0,193,0,
237,255,80,255,115,255,151,255,219,255,31,0,23,0,21,0,186,255,44,255,173,255,141,0,146,0,199,0,36,1,45,0,
62,255,238,255,78,0,146,255,189,255,143,0,78,0,160,255,47,255,147,254,141,254,41,255,66,255,152,255,111,0,15,0,
87,255,230,255,84,0,155,0,238,1,65,2,240,0,183,0,50,1,38,0,175,254,154,254,178,255,237,0,58,1,131,0,
150,255,32,255,181,255,167,0,139,0,25,0,115,0,178,0,80,0,145,255,155,254,155,254,219,255,111,0,232,255,184,255,
242,255,146,255,127,254,241,253,203,254,173,255,15,255,249,253,222,253,185,254,193,255,14,0,231,255,34,0,243,255,29,255,
87,255,169,0,79,1,226,0,12,0,139,255,250,255,214,0,11,1,123,0,43,0,208,0,27,1,170,255,4,254,12,254,
45,255,35,0,27,0,23,255,70,254,229,253,168,253,155,254,244,255,46,255,147,253,235,253,13,255,27,255,220,254,11,255,
70,255,135,255,184,255,75,255,194,254,121,255,237,0,122,1,108,1,117,1,48,1,86,1,229,1,178,0,176,254,93,255,
112,1,95,1,82,0,231,0,254,1,186,1,253,0,232,0,212,0,128,0,75,0,171,255,227,254,2,255,53,255,239,254,
72,255,136,255,114,254,134,253,243,253,155,254,164,254,101,254,186,254,195,255,133,0,214,0,251,0,86,0,122,255,131,255,
172,255,180,255,33,0,7,0,136,255,244,255,174,0,203,0,108,0,185,255,226,255,24,1,20,1,15,0,92,0,235,0,
34,0,117,255,198,255,22,0,0,0,4,0,80,0,43,0,91,255,62,255,72,0,33,1,36,1,175,0,102,0,248,0,
97,1,85,0,65,255,150,255,86,0,204,0,106,1,229,1,145,1,164,0,60,0,201,0,214,0,151,255,232,254,206,255,
38,0,177,254,202,253,11,255,93,0,87,0,92,0,78,0,45,255,208,254,245,255,251,255,200,254,161,254,244,254,224,254,
143,255,96,0,187,255,11,255,248,255,31,1,236,0,54,0,77,0,223,0,209,0,39,0,3,0,199,0,143,1,99,1,
85,0,163,255,53,0,233,0,141,0,15,0,14,0,232,255,89,0,177,1,222,1,161,0,248,255,215,255,165,255,32,0,
159,0,27,0,132,255,101,255,97,255,180,255,43,0,64,0,74,0,85,0,235,255,55,255,207,254,245,254,77,255,117,255,
129,255,42,255,136,254,179,254,83,255,80,255,119,255,216,255,76,255,43,255,90,0,209,0,97,0,87,0,238,255,74,255,
162,255,186,255,200,254,138,254,84,255,219,255,6,0,253,255,80,255,154,254,248,254,204,255,187,255,44,255,17,255,43,255,
101,255,198,255,68,255,43,254,122,254,23,0,11,1,212,0,68,0,42,0,3,1,81,2,239,2,155,2,58,2,85,2,
53,2,172,1,187,1,52,2,27,2,218,1,157,1,209,0,41,0,12,0,208,255,67,0,138,1,94,1,247,255,253,255,
173,0,2,0,145,255,146,0,43,1,189,0,89,0,186,255,246,254,100,255,102,0,127,0,77,0,65,0,164,255,27,255,
85,255,49,255,95,254,43,254,210,254,80,255,91,255,95,255,38,255,127,254,133,254,185,255,141,0,42,0,134,255,46,255,
45,255,138,255,234,255,49,0,12,0,53,255,26,255,21,0,253,255,37,255,151,255,31,0,197,255,29,0,206,0,115,0,
222,255,217,255,41,0,160,0,206,0,152,0,78,0,214,255,196,255,188,0,155,1,65,1,32,0,31,255,4,255,205,255,
144,0,198,0,116,0,2,0,25,0,44,0,177,255,208,255,105,0,248,255,143,255,112,0,203,0,206,255,101,255,243,255,
8,0,147,255,96,255,63,255,65,255,254,255,133,0,220,255,132,255,42,0,241,255,224,254,235,254,251,255,8,1,169,1,
76,1,116,0,37,0,186,255,8,255,100,255,138,0,23,1,235,0,110,0,255,255,55,0,6,1,176,1,164,1,218,0,
58,0,136,0,220,0,80,0,243,255,120,0,112,0,49,255,75,254,129,254,189,254,153,254,219,254,194,255,151,0,150,0,
242,255,131,255,141,255,253,255,191,0,14,1,141,0,45,0,57,0,237,255,73,255,10,255,133,255,35,0,34,0,13,0,
107,0,105,0,43,0,138,0,130,0,172,255,174,255,142,0,194,0,32,0,183,255,80,0,35,1,199,0,67,0,23,1,
212,1,72,1,79,0,78,255,171,254,5,255,149,255,208,255,214,255,81,255,31,255,9,0,52,0,231,254,76,254,10,255,
218,255,18,0,142,255,228,254,25,255,185,255,180,255,120,255,195,255,39,0,66,0,98,0,31,0,28,255,214,254,1,0,
209,0,207,0,17,1,3,1,128,0,138,0,78,0,158,255,91,0,165,1,16,1,158,255,74,255,1,0,17,1,138,1,
235,0,53,0,253,255,175,255,144,255,35,0,139,0,52,0,42,0,230,0,18,1,72,0,247,255,82,0,64,0,23,0,
95,0,38,0,79,255,23,255,136,255,125,255,227,254,169,254,0,255,73,255,100,255,143,255,183,255,216,255,17,0,57,0,
24,0,208,255,224,255,102,0,152,0,48,0,37,0,190,0,42,1,236,0,55,0,220,255,71,0,163,0,180,0,237,0,
130,0,103,255,32,255,167,255,29,0,91,0,149,255,54,254,32,254,146,254,45,254,83,254,75,255,149,255,108,255,60,255,
132,254,195,253,166,253,18,254,190,254,57,255,156,255,65,0,121,0,0,0,179,255,185,255,197,255,219,255,21,0,201,0,
68,1,36,0,196,254,91,255,150,0,161,0,160,0,140,1,12,2,14,1,179,255,114,255,235,255,129,0,124,1,231,1,
190,0,189,255,136,0,208,1,193,1,162,0,112,0,191,1,46,2,169,0,123,255,151,255,193,255,252,255,160,0,214,0,
45,0,84,255,111,255,146,0,215,0,121,255,83,254,80,254,161,254,69,255,46,0,114,0,87,0,247,0,163,1,199,0,
50,255,52,255,77,0,25,0,11,255,45,255,3,0,103,0,197,0,209,0,225,255,49,255,151,255,248,255,65,0,58,1,
215,1,72,1,173,0,70,0,128,255,32,255,110,255,64,255,152,254,186,254,199,255,123,0,251,255,232,254,50,254,44,254,
50,255,113,0,72,0,188,255,76,0,111,0,227,255,64,0,75,0,140,255,71,0,101,1,204,0,72,0,112,0,221,255,
171,255,60,0,252,255,204,255,147,0,166,0,8,0,101,0,28,1,219,0,109,0,206,0,8,1,61,0,156,255,252,255,
109,0,149,0,162,0,247,255,201,254,91,254,221,254,120,255,176,255,246,255,159,0,156,0,134,255,233,254,13,255,240,254,
9,255,174,255,49,0,183,0,8,1,139,0,48,0,70,0,209,255,117,255,23,0,170,0,89,0,128,255,201,254,224,254,
139,255,228,255,191,255,98,255,40,255,152,255,135,0,17,1,199,0,36,0,15,0,87,0,5,0,161,255,8,0,121,0,
154,0,141,0,114,255,27,254,121,254,41,255,162,254,234,254,57,0,239,255,213,254,22,255,126,255,90,255,0,0,140,0,
216,255,177,255,174,0,208,0,222,255,71,255,78,255,178,255,103,0,13,1,31,1,148,0,63,0,160,0,201,0,104,0,
59,0,252,255,190,255,140,0,115,1,20,1,105,0,10,0,137,255,114,255,167,255,129,255,200,255,113,0,72,0,246,255,
138,0,23,1,161,0,166,255,38,255,95,255,184,255,179,255,85,255,85,255,131,0,183,1,73,1,89,0,45,0,249,255,
203,255,9,0,236,255,208,255,4,0,102,255,205,254,147,255,77,0,17,0,176,255,75,255,74,255,22,0,166,0,121,0,
23,0,196,255,173,255,93,255,131,254,133,254,201,255,162,0,126,0,14,0,202,255,252,255,73,0,127,0,185,0,11,0,
254,254,209,255,101,1,33,1,10,0,133,255,40,255,48,255,142,255,162,255,196,255,233,255,237,255,151,0,53,1,160,0,
243,255,21,0,124,0,4,1,110,1,68,1,208,0,73,0,231,255,31,0,99,0,0,0,104,255,65,255,180,255,32,0,
204,255,182,255,165,0,207,0,147,255,248,254,111,255,195,255,244,255,9,0,161,255,151,255,56,0,237,255,168,254,160,254,
221,255,56,0,211,255,232,255,167,255,224,254,18,255,230,255,14,0,5,0,39,0,251,255,238,255,49,0,74,0,146,0,
61,1,150,1,80,1,134,0,135,255,67,255,215,255,57,0,66,0,98,0,59,0,167,255,33,255,222,254,25,255,218,255,
84,0,61,0,89,0,141,0,25,0,159,255,23,0,197,0,148,0,233,255,176,255,233,255,37,0,73,0,23,0,115,255,
53,255,153,255,99,255,170,254,12,255,1,0,220,255,116,255,254,255,108,0,27,0,40,0,196,0,237,0,182,0,234,0,
27,1,163,0,59,0,76,0,38,0,214,255,222,255,2,0,31,0,9,0,111,255,84,255,77,0,171,0,234,255,153,255,
148,255,34,255,79,255,13,0,243,255,182,255,119,0,173,0,49,255,3,254,194,254,236,255,229,255,100,255,119,255,252,255,
100,0,119,0,138,0,184,0,92,0,215,255,119,0,85,1,166,0,110,255,120,255,65,0,171,0,157,0,70,0,208,255,
130,255,185,255,113,0,224,0,172,0,129,0,102,0,241,255,200,255,71,0,100,0,202,255,126,255,168,255,115,255,28,255,
142,255,49,0,237,255,143,255,48,0,221,0,127,0,246,255,38,0,39,0,82,255,240,254,198,255,133,0,134,0,111,0,
0,0,56,255,60,255,226,255,85,0,247,0,110,1,20,1,243,0,46,1,199,0,161,0,36,1,180,0,195,255,242,255,
76,0,208,255,96,255,86,255,135,255,237,255,189,255,233,254,198,254,95,255,189,255,8,0,100,0,74,0,240,255,240,255,
56,0,92,0,239,255,85,255,167,255,106,0,30,0,77,255,85,255,232,255,121,0,239,0,187,0,27,0,4,0,76,0,
117,0,153,0,136,0,87,0,125,0,116,0,219,255,158,255,28,0,86,0,190,255,244,254,205,254,125,255,104,0,148,0,
199,255,35,255,97,255,149,255,146,255,96,0,55,1,219,0,88,0,47,0,117,255,242,254,155,255,65,0,55,0,41,0,
53,0,26,0,208,255,101,255,62,255,130,255,217,255,6,0,227,255,134,255,88,255,99,255,135,255,196,255,252,255,83,0,
185,0,144,0,51,0,54,0,8,0,229,255,95,0,67,0,71,255,27,255,194,255,225,255,113,255,28,255,65,255,159,255,
171,255,221,255,88,0,0,0,82,255,188,255,104,0,36,0,142,255,126,255,245,255,23,0,111,255,60,255,204,255,159,255,
242,254,26,255,178,255,0,0,236,255,138,255,162,255,118,0,11,1,22,1,245,0,202,0,199,0,210,0,222,0,7,1,
190,0,48,0,90,0,119,0,250,255,3,0,48,0,252,255,123,0,217,0,30,0,4,0,155,0,140,0,191,0,7,1,
48,0,184,255,46,0,20,0,252,255,106,0,65,0,6,0,69,0,220,255,10,255,239,254,50,255,62,255,28,255,50,255,
200,255,4,0,138,255,140,255,220,255,91,255,26,255,31,0,5,1,200,0,17,0,124,255,58,255,126,255,43,0,166,0,
113,0,239,255,230,255,92,0,129,0,226,255,97,255,5,0,242,0,172,0,182,255,89,255,134,255,208,255,51,0,114,0,
63,0,188,255,69,255,12,255,14,255,77,255,147,255,145,255,181,255,82,0,122,0,198,255,65,255,67,255,110,255,5,0,
207,0,231,0,118,0,25,0,201,255,129,255,130,255,204,255,255,255,168,255,34,255,76,255,241,255,83,0,97,0,6,0,
120,255,205,255,222,0,44,1,197,0,177,0,201,0,176,0,113,0,244,255,194,255,81,0,173,0,41,0,154,255,211,255,
164,0,26,1,191,0,92,0,44,0,204,255,4,0,228,0,242,0,120,0,134,0,119,0,94,0,153,0,232,255,239,254,
151,255,108,0,35,0,108,0,39,1,186,0,230,255,146,255,133,255,0,0,111,0,231,255,134,255,67,0,227,0,123,0,
237,255,3,0,39,0,194,255,106,255,106,255,70,255,98,255,8,0,236,255,199,254,90,254,76,255,85,0,113,0,224,255,
102,255,56,255,33,255,131,255,79,0,104,0,216,255,2,0,191,0,198,0,80,0,36,0,222,255,138,255,239,255,119,0,
28,0,123,255,95,255,137,255,230,255,72,0,13,0,126,255,144,255,70,0,203,0,141,0,236,255,188,255,219,255,194,255,
169,255,174,255,164,255,197,255,201,255,108,255,112,255,205,255,187,255,218,255,124,0,90,0,154,255,162,255,39,0,95,0,
130,0,105,0,233,255,208,255,68,0,118,0,133,0,217,0,206,0,86,0,99,0,211,0,209,0,152,0,146,0,120,0,
15,0,154,255,180,255,108,0,180,0,38,0,188,255,155,255,67,255,88,255,39,0,138,0,9,0,150,255,186,255,226,255,
189,255,229,255,110,0,136,0,4,0,96,255,1,255,69,255,200,255,159,255,26,255,253,254,69,255,196,255,6,0,196,255,
162,255,149,255,79,255,210,255,226,0,236,0,67,0,166,255,37,255,159,255,114,0,23,0,200,255,32,0,163,255,41,255,
153,255,145,255,148,255,90,0,45,0,119,255,226,255,42,0,181,255,212,255,47,0,76,0,225,0,91,1,216,0,28,0,
253,255,32,0,22,0,82,0,229,0,175,0,215,255,230,255,106,0,53,0,56,0,237,0,17,1,120,0,12,0,246,255,
218,255,145,255,100,255,140,255,170,255,134,255,122,255,168,255,216,255,192,255,122,255,120,255,157,255,186,255,11,0,17,0,
127,255,83,255,158,255,182,255,2,0,45,0,128,255,15,255,78,255,121,255,205,255,218,255,26,255,61,255,108,0,130,0,
217,255,209,255,243,255,59,0,183,0,155,0,69,0,19,0,152,255,152,255,60,0,43,0,189,255,208,255,166,255,126,255,
38,0,147,0,33,0,199,255,232,255,53,0,117,0,117,0,87,0,79,0,77,0,119,0,134,0,241,255,133,255,254,255,
43,0,126,255,90,255,246,255,6,0,187,255,10,0,107,0,96,0,131,0,199,0,148,0,91,0,134,0,122,0,29,0,
37,0,131,0,136,0,43,0,204,255,178,255,0,0,60,0,197,255,76,255,172,255,247,255,144,255,207,255,229,0,225,0,
161,255,50,255,237,255,74,0,212,255,90,255,81,255,166,255,248,255,179,255,64,255,179,255,112,0,29,0,138,255,204,255,
4,0,227,255,52,0,103,0,0,0,3,0,111,0,117,0,138,0,187,0,27,0,129,255,30,0,145,0,241,255,250,255,
2,1,39,1,131,0,100,0,70,0,233,255,30,0,76,0,212,255,199,255,41,0,215,255,116,255,255,255,104,0,211,255,
105,255,209,255,231,255,144,255,15,0,205,0,151,0,113,0,188,0,72,0,248,255,208,0,0,1,22,0,251,255,146,0,
124,0,234,255,153,255,213,255,78,0,66,0,246,255,36,0,66,0,234,255,182,255,203,255,244,255,35,0,35,0,246,255,
228,255,249,255,42,0,46,0,204,255,149,255,189,255,131,255,249,254,27,255,190,255,215,255,138,255,187,255,12,0,152,255,
238,254,6,255,124,255,169,255,171,255,202,255,44,0,153,0,130,0,3,0,212,255,29,0,116,0,161,0,162,0,64,0,
161,255,205,255,190,0,195,0,226,255,212,255,76,0,88,0,159,0,231,0,105,0,22,0,86,0,80,0,68,0,153,0,
169,0,64,0,216,255,225,255,68,0,60,0,197,255,185,255,230,255,199,255,173,255,172,255,194,255,9,0,230,255,81,255,
101,255,39,0,151,0,101,0,213,255,69,255,28,255,124,255,34,0,70,0,162,255,56,255,144,255,2,0,54,0,34,0,
240,255,68,0,155,0,216,255,252,254,100,255,54,0,88,0,1,0,183,255,173,255,200,255,223,255,245,255,239,255,194,255,
171,255,209,255,25,0,24,0,219,255,53,0,189,0,65,0,191,255,58,0,132,0,99,0,115,0,3,0,138,255,18,0,
107,0,17,0,27,0,25,0,188,255,11,0,161,0,144,0,62,0,6,0,222,255,203,255,191,255,250,255,42,0,157,255,
50,255,188,255,63,0,42,0,209,255,88,255,123,255,91,0,170,0,85,0,81,0,59,0,224,255,5,0,81,0,251,255,
162,255,238,255,59,0,25,0,30,0,75,0,250,255,154,255,183,255,186,255,188,255,66,0,108,0,239,255,212,255,8,0,
1,0,54,0,135,0,81,0,233,255,224,255,41,0,95,0,66,0,35,0,61,0,74,0,93,0,149,0,117,0,252,255,
170,255,163,255,228,255,33,0,236,255,135,255,95,255,103,255,155,255,189,255,142,255,161,255,26,0,51,0,247,255,252,255,
254,255,197,255,175,255,215,255,10,0,57,0,86,0,69,0,15,0,211,255,171,255,190,255,4,0,12,0,182,255,138,255,
171,255,220,255,33,0,8,0,98,255,90,255,22,0,35,0,178,255,243,255,83,0,15,0,196,255,218,255,33,0,78,0,
33,0,5,0,62,0,30,0,184,255,216,255,11,0,211,255,230,255,71,0,34,0,200,255,249,255,87,0,88,0,77,0,
124,0,136,0,64,0,17,0,54,0,51,0,216,255,182,255,236,255,228,255,180,255,233,255,39,0,251,255,228,255,13,0,
251,255,211,255,225,255,193,255,122,255,144,255,198,255,164,255,127,255,177,255,232,255,225,255,193,255,154,255,127,255,154,255,
203,255,220,255,11,0,75,0,19,0,176,255,222,255,25,0,213,255,205,255,38,0,17,0,237,255,62,0,41,0,180,255,
13,0,146,0,16,0,131,255,211,255,55,0,98,0,139,0,79,0,254,255,44,0,48,0,203,255,226,255,98,0,84,0,
205,255,163,255,14,0,96,0,22,0,189,255,221,255,12,0,25,0,63,0,76,0,48,0,42,0,20,0,238,255,16,0,
57,0,24,0,6,0,47,0,70,0,41,0,254,255,15,0,98,0,109,0,249,255,173,255,221,255,0,0,217,255,222,255,
42,0,95,0,99,0,77,0,35,0,22,0,49,0,45,0,12,0,16,0,35,0,40,0,34,0,28,0,53,0,65,0,
239,255,176,255,226,255,226,255,152,255,186,255,23,0,28,0,3,0,242,255,187,255,165,255,209,255,211,255,162,255,173,255,
228,255,208,255,140,255,152,255,198,255,158,255,109,255,140,255,186,255,222,255,19,0,29,0,0,0,30,0,81,0,52,0,
3,0,36,0,92,0,74,0,17,0,21,0,76,0,70,0,225,255,164,255,231,255,45,0,23,0,12,0,31,0,228,255,
160,255,205,255,22,0,56,0,95,0,99,0,55,0,45,0,46,0,7,0,235,255,250,255,20,0,37,0,40,0,32,0,
19,0,5,0,251,255,210,255,173,255,3,0,111,0,23,0,146,255,177,255,201,255,152,255,209,255,34,0,6,0,243,255,
251,255,232,255,6,0,4,0,125,255,94,255,5,0,77,0,237,255,195,255,225,255,224,255,233,255,15,0,240,255,148,255,
129,255,219,255,60,0,84,0,48,0,17,0,31,0,27,0,213,255,175,255,235,255,41,0,59,0,74,0,61,0,12,0,
241,255,3,0,61,0,122,0,106,0,37,0,9,0,4,0,237,255,250,255,28,0,249,255,160,255,107,255,107,255,154,255,
236,255,5,0,214,255,3,0,131,0,87,0,176,255,203,255,122,0,161,0,94,0,64,0,36,0,6,0,32,0,59,0,
28,0,243,255,247,255,9,0,244,255,212,255,213,255,213,255,213,255,8,0,47,0,254,255,220,255,12,0,46,0,34,0,
36,0,21,0,237,255,254,255,34,0,254,255,235,255,20,0,246,255,183,255,240,255,58,0,31,0,8,0,6,0,218,255,
215,255,20,0,34,0,250,255,210,255,190,255,233,255,39,0,20,0,228,255,249,255,39,0,43,0,16,0,236,255,212,255,
235,255,27,0,32,0,7,0,3,0,244,255,232,255,37,0,74,0,16,0,24,0,101,0,66,0,11,0,60,0,60,0,
236,255,228,255,17,0,22,0,253,255,215,255,195,255,219,255,235,255,212,255,197,255,241,255,56,0,30,0,171,255,146,255,
232,255,30,0,30,0,14,0,250,255,0,0,252,255,201,255,175,255,215,255,22,0,53,0,249,255,175,255,226,255,37,0,
11,0,15,0,50,0,8,0,237,255,5,0,244,255,13,0,109,0,93,0,246,255,6,0,82,0,49,0,221,255,201,255,
215,255,229,255,9,0,17,0,231,255,239,255,44,0,31,0,208,255,188,255,227,255,2,0,33,0,68,0,49,0,254,255,
16,0,54,0,249,255,186,255,241,255,37,0,20,0,22,0,12,0,208,255,205,255,11,0,51,0,71,0,74,0,54,0,
42,0,31,0,8,0,251,255,229,255,228,255,32,0,51,0,232,255,198,255,243,255,246,255,187,255,167,255,211,255,245,255,
243,255,244,255,242,255,238,255,17,0,32,0,230,255,212,255,17,0,38,0,6,0,247,255,240,255,227,255,229,255,0,0,
43,0,39,0,242,255,242,255,37,0,45,0,27,0,40,0,70,0,89,0,70,0,30,0,22,0,25,0,20,0,44,0,
59,0,2,0,193,255,200,255,254,255,25,0,249,255,221,255,239,255,242,255,220,255,218,255,217,255,215,255,242,255,251,255,
234,255,246,255,4,0,232,255,217,255,248,255,16,0,250,255,205,255,169,255,147,255,151,255,198,255,253,255,8,0,230,255,
173,255,159,255,218,255,246,255,196,255,185,255,238,255,16,0,33,0,49,0,36,0,15,0,9,0,8,0,19,0,19,0,
241,255,229,255,255,255,239,255,185,255,200,255,34,0,69,0,16,0,3,0,51,0,39,0,243,255,255,255,19,0,243,255,
239,255,23,0,22,0,10,0,43,0,51,0,21,0,40,0,70,0,27,0,240,255,250,255,11,0,63,0,125,0,68,0,
234,255,6,0,48,0,36,0,46,0,36,0,249,255,254,255,250,255,206,255,218,255,241,255,225,255,5,0,57,0,29,0,
0,0,253,255,199,255,163,255,233,255,51,0,22,0,223,255,247,255,22,0,230,255,200,255,242,255,251,255,230,255,2,0,
28,0,9,0,219,255,169,255,197,255,43,0,53,0,233,255,244,255,53,0,58,0,37,0,23,0,8,0,26,0,58,0,
38,0,236,255,196,255,192,255,222,255,254,255,255,255,244,255,5,0,17,0,245,255,225,255,249,255,10,0,253,255,248,255,
247,255,238,255,245,255,13,0,25,0,10,0,238,255,235,255,6,0,16,0,5,0,6,0,14,0,21,0,43,0,54,0,
20,0,229,255,223,255,254,255,26,0,38,0,42,0,43,0,39,0,13,0,239,255,5,0,44,0,16,0,229,255,236,255,
238,255,241,255,32,0,44,0,252,255,235,255,240,255,228,255,225,255,223,255,226,255,0,0,247,255,200,255,218,255,5,0,
248,255,239,255,15,0,31,0,8,0,225,255,202,255,223,255,4,0,24,0,13,0,223,255,203,255,252,255,24,0,224,255,
178,255,222,255,32,0,26,0,231,255,226,255,252,255,251,255,2,0,29,0,13,0,245,255,12,0,13,0,220,255,215,255,
13,0,20,0,223,255,206,255,237,255,241,255,236,255,21,0,51,0,14,0,214,255,200,255,236,255,18,0,14,0,10,0,
26,0,3,0,231,255,18,0,50,0,9,0,242,255,14,0,32,0,31,0,29,0,30,0,34,0,18,0,253,255,17,0,
42,0,18,0,249,255,19,0,52,0,31,0,245,255,254,255,43,0,49,0,27,0,8,0,228,255,214,255,8,0,34,0,
246,255,246,255,37,0,15,0,221,255,252,255,34,0,8,0,253,255,10,0,230,255,202,255,231,255,236,255,193,255,190,255,
246,255,43,0,45,0,13,0,247,255,250,255,6,0,20,0,11,0,241,255,253,255,21,0,242,255,191,255,198,255,237,255,
0,0,254,255,252,255,254,255,247,255,252,255,22,0,8,0,217,255,225,255,5,0,2,0,2,0,9,0,246,255,240,255,
6,0,12,0,15,0,34,0,45,0,30,0,244,255,220,255,11,0,70,0,66,0,31,0,6,0,253,255,3,0,1,0,
2,0,24,0,10,0,225,255,242,255,18,0,249,255,232,255,247,255,253,255,16,0,34,0,246,255,201,255,230,255,14,0,
12,0,3,0,6,0,6,0,255,255,1,0,2,0,227,255,196,255,228,255,24,0,21,0,0,0,253,255,247,255,250,255,
16,0,13,0,248,255,7,0,37,0,36,0,13,0,248,255,242,255,253,255,3,0,2,0,5,0,248,255,228,255,241,255,
0,0,240,255,228,255,231,255,234,255,251,255,15,0,23,0,38,0,43,0,20,0,7,0,254,255,232,255,236,255,252,255,
240,255,254,255,36,0,12,0,217,255,224,255,246,255,237,255,235,255,252,255,12,0,33,0,52,0,44,0,253,255,208,255,
210,255,249,255,13,0,244,255,216,255,227,255,250,255,250,255,252,255,0,0,221,255,195,255,238,255,20,0,244,255,215,255,
236,255,3,0,3,0,248,255,239,255,242,255,253,255,3,0,1,0,1,0,15,0,26,0,8,0,232,255,228,255,248,255,
13,0,30,0,32,0,12,0,244,255,246,255,10,0,3,0,221,255,216,255,6,0,29,0,3,0,239,255,254,255,22,0,
31,0,22,0,5,0,243,255,234,255,247,255,9,0,13,0,17,0,26,0,12,0,241,255,243,255,11,0,23,0,24,0,
22,0,11,0,255,255,2,0,15,0,14,0,2,0,248,255,253,255,22,0,44,0,19,0,227,255,225,255,253,255,254,255,
251,255,14,0,13,0,251,255,3,0,10,0,253,255,3,0,10,0,239,255,232,255,21,0,46,0,15,0,249,255,14,0,
24,0,255,255,1,0,40,0,36,0,244,255,234,255,3,0,8,0,1,0,250,255,244,255,7,0,27,0,8,0,249,255,
5,0,6,0,0,0,6,0,255,255,238,255,246,255,17,0,32,0,20,0,251,255,245,255,254,255,7,0,23,0,35,0,
17,0,252,255,255,255,9,0,12,0,6,0,253,255,2,0,7,0,250,255,239,255,242,255,240,255,235,255,227,255,217,255,
224,255,239,255,242,255,3,0,22,0,5,0,245,255,0,0,251,255,243,255,15,0,33,0,11,0,252,255,253,255,243,255,
227,255,219,255,229,255,247,255,243,255,226,255,227,255,240,255,248,255,247,255,242,255,253,255,14,0,3,0,246,255,10,0,
19,0,5,0,13,0,18,0,249,255,239,255,249,255,252,255,2,0,5,0,247,255,245,255,253,255,244,255,244,255,6,0,
7,0,2,0,12,0,17,0,10,0,14,0,25,0,25,0,9,0,250,255,8,0,31,0,19,0,241,255,238,255,2,0,
2,0,254,255,27,0,48,0,13,0,226,255,238,255,10,0,2,0,243,255,243,255,245,255,248,255,255,255,253,255,0,0,
14,0,5,0,233,255,232,255,0,0,11,0,3,0,248,255,240,255,243,255,255,255,0,0,248,255,250,255,6,0,11,0,
7,0,255,255,244,255,235,255,240,255,250,255,254,255,0,0,5,0,1,0,247,255,250,255,4,0,5,0,3,0,4,0,
2,0,250,255,245,255,1,0,22,0,15,0,237,255,235,255,8,0,8,0,244,255,253,255,14,0,3,0,243,255,244,255,
248,255,247,255,244,255,247,255,0,0,4,0,0,0,253,255,253,255,251,255,0,0,3,0,251,255,4,0,26,0,6,0,
225,255,243,255,20,0,2,0,233,255,241,255,253,255,3,0,8,0,254,255,241,255,249,255,5,0,9,0,0,0,238,255,
232,255,251,255,18,0,28,0,26,0,18,0,1,0,241,255,243,255,253,255,246,255,241,255,4,0,13,0,254,255,251,255,
3,0,251,255,245,255,255,255,8,0,19,0,25,0,15,0,8,0,16,0,16,0,6,0,1,0,0,0,253,255,254,255,
9,0,18,0,10,0,247,255,243,255,254,255,4,0,7,0,5,0,254,255,253,255,2,0,1,0,1,0,8,0,8,0,
0,0,2,0,10,0,8,0,253,255,246,255,251,255,7,0,11,0,4,0,249,255,245,255,249,255,4,0,8,0,253,255,
247,255,252,255,254,255,254,255,252,255,246,255,246,255,249,255,247,255,253,255,8,0,1,0,246,255,255,255,8,0,1,0,
253,255,1,0,4,0,1,0,1,0,13,0,22,0,12,0,5,0,12,0,13,0,6,0,8,0,14,0,11,0,5,0,
1,0,4,0,9,0,9,0,7,0,11,0,9,0,254,255,255,255,8,0,0,0,251,255,11,0,16,0,254,255,247,255,
254,255,250,255,246,255,1,0,2,0,247,255,246,255,248,255,245,255,245,255,247,255,249,255,255,255,4,0,5,0,5,0,
249,255,240,255,250,255,3,0,252,255,251,255,5,0,5,0,253,255,251,255,251,255,0,0,13,0,16,0,3,0,251,255,
0,0,2,0,1,0,4,0,4,0,2,0,7,0,12,0,10,0,12,0,17,0,14,0,3,0,255,255,1,0,0,0,
254,255,255,255,253,255,249,255,254,255,6,0,1,0,248,255,248,255,250,255,254,255,2,0,255,255,252,255,2,0,2,0,
251,255,251,255,0,0,254,255,251,255,253,255,1,0,3,0,252,255,241,255,240,255,250,255,5,0,6,0,254,255,251,255,
253,255,246,255,241,255,251,255,3,0,255,255,248,255,246,255,246,255,245,255,243,255,247,255,254,255,255,255,249,255,247,255,
248,255,248,255,250,255,0,0,1,0,254,255,253,255,0,0,2,0,1,0,1,0,2,0,253,255,248,255,254,255,7,0,
8,0,2,0,251,255,251,255,1,0,255,255,245,255,246,255,2,0,6,0,2,0,0,0,254,255,252,255,253,255,249,255,
249,255,1,0,3,0,254,255,0,0,5,0,4,0,1,0,0,0,0,0,0,0,255,255,253,255,253,255,254,255,254,255,
254,255,252,255,250,255,253,255,5,0,10,0,5,0,0,0,255,255,253,255,248,255,250,255,254,255,249,255,247,255,255,255,
1,0,251,255,255,255,8,0,5,0,255,255,255,255,255,255,252,255,250,255,253,255,2,0,6,0,6,0,4,0,3,0,
4,0,4,0,2,0,2,0,4,0,6,0,6,0,2,0,254,255,0,0,6,0,10,0,11,0,7,0,4,0,6,0,
8,0,7,0,5,0,0,0,254,255,7,0,10,0,2,0,252,255,3,0,10,0,10,0,3,0,251,255,253,255,2,0,
3,0,4,0,4,0,255,255,252,255,0,0,1,0,0,0,0,0,255,255,0,0,2,0,4,0,5,0,5,0,254,255,
251,255,0,0,2,0,1,0,1,0,2,0,2,0,255,255,250,255,250,255,2,0,5,0,1,0,1,0,3,0,3,0,
0,0,250,255,250,255,3,0,8,0,5,0,4,0,0,0,249,255,253,255,6,0,1,0,248,255,250,255,2,0,3,0,
255,255,250,255,250,255,254,255,1,0,254,255,249,255,252,255,2,0,5,0,6,0,6,0,0,0,255,255,5,0,6,0,
3,0,3,0,2,0,255,255,1,0,255,255,249,255,252,255,3,0,2,0,2,0,5,0,0,0,251,255,254,255,254,255,
248,255,251,255,2,0,2,0,1,0,6,0,4,0,253,255,250,255,253,255,0,0,2,0,255,255,252,255,254,255,3,0,
2,0,0,0,1,0,255,255,252,255,253,255,255,255,0,0,4,0,4,0,253,255,249,255,252,255,0,0,255,255,253,255,
252,255,254,255,4,0,4,0,255,255,0,0,7,0,6,0,2,0,6,0,8,0,1,0,255,255,3,0,1,0,1,0,
5,0,0,0,251,255,3,0,5,0,251,255,248,255,253,255,2,0,5,0,3,0,254,255,0,0,255,255,252,255,2,0,
10,0,5,0,0,0,1,0,254,255,252,255,252,255,250,255,249,255,255,255,2,0,0,0,255,255,1,0,1,0,0,0,
0,0,0,0,0,0,2,0,5,0,4,0,254,255,254,255,2,0,4,0,2,0,1,0,255,255,0,0,1,0,0,0,
255,255,254,255,250,255,250,255,254,255,3,0,4,0,1,0,254,255,255,255,255,255,251,255,252,255,2,0,0,0,253,255,
255,255,0,0,253,255,253,255,0,0,1,0,0,0,253,255,252,255,251,255,251,255,253,255,3,0,4,0,0,0,255,255,
3,0,3,0,255,255,253,255,0,0,255,255,251,255,253,255,0,0,254,255,253,255,255,255,255,255,255,255,1,0,1,0,
255,255,254,255,254,255,255,255,0,0,255,255,255,255,255,255,0,0,5,0,7,0,3,0,251,255,251,255,0,0,2,0,
0,0,254,255,253,255,253,255,0,0,2,0,255,255,253,255,0,0,0,0,0,0,4,0,5,0,1,0,255,255,0,0,
253,255,254,255,255,255,254,255,0,0,2,0,255,255,252,255,255,255,254,255,255,255,2,0,0,0,253,255,254,255,0,0,
1,0,2,0,0,0,254,255,2,0,4,0,3,0,1,0,1,0,4,0,4,0,255,255,254,255,3,0,1,0,251,255,
251,255,253,255,0,0,4,0,2,0,249,255,248,255,255,255,3,0,255,255,253,255,1,0,4,0,2,0,2,0,1,0,
252,255,254,255,6,0,5,0,253,255,254,255,4,0,1,0,252,255,252,255,255,255,255,255,254,255,0,0,3,0,3,0,
2,0,2,0,1,0,3,0,5,0,2,0,0,0,5,0,8,0,2,0,0,0,3,0,2,0,253,255,253,255,254,255,
254,255,254,255,253,255,252,255,253,255,254,255,255,255,1,0,2,0,0,0,254,255,0,0,2,0,255,255,255,255,3,0,
4,0,3,0,4,0,1,0,253,255,254,255,0,0,0,0,0,0,0,0,255,255,255,255,254,255,253,255,253,255,254,255,
0,0,2,0,0,0,252,255,254,255,2,0,1,0,253,255,251,255,253,255,2,0,4,0,1,0,254,255,0,0,2,0,
1,0,254,255,0,0,1,0,253,255,253,255,2,0,1,0,254,255,2,0,4,0,2,0,4,0,4,0,2,0,3,0,
3,0,255,255,255,255,1,0,2,0,1,0,2,0,2,0,3,0,4,0,2,0,1,0,3,0,3,0,254,255,252,255,
1,0,5,0,2,0,255,255,0,0,255,255,255,255,1,0,0,0,252,255,254,255,1,0,254,255,252,255,255,255,2,0,
3,0,3,0,4,0,4,0,1,0,255,255,2,0,3,0,1,0,0,0,0,0,254,255,0,0,4,0,1,0,252,255,
255,255,3,0,0,0,254,255,0,0,2,0,1,0,0,0,3,0,4,0,3,0,3,0,1,0,255,255,255,255,255,255,
255,255,1,0,4,0,2,0,0,0,3,0,5,0,3,0,0,0,255,255,0,0,0,0,0,0,0,0,255,255,0,0,
3,0,1,0,253,255,254,255,255,255,1,0,3,0,2,0,253,255,254,255,1,0,1,0,2,0,2,0,255,255,253,255,
0,0,1,0,0,0,0,0,0,0,255,255,255,255,254,255,255,255,0,0,0,0,0,0,0,0,254,255,253,255,0,0,
0,0,254,255,255,255,1,0,255,255,253,255,255,255,2,0,0,0,254,255,254,255,255,255,0,0,3,0,1,0,252,255,
253,255,0,0,255,255,253,255,254,255,255,255,255,255,0,0,0,0,255,255,254,255,253,255,1,0,3,0,255,255,252,255,
253,255,255,255,0,0,1,0,255,255,254,255,255,255,0,0,255,255,254,255,253,255,255,255,0,0,255,255,255,255,254,255,
251,255,252,255,2,0,2,0,255,255,254,255,255,255,255,255,0,0,0,0,0,0,255,255,254,255,0,0,0,0,253,255,
253,255,1,0,1,0,0,0,0,0,254,255,253,255,0,0,2,0,254,255,253,255,255,255,2,0,0,0,254,255,255,255,
0,0,255,255,255,255,0,0,0,0,0,0,0,0,254,255,255,255,0,0,0,0,255,255,0,0,255,255,0,0,0,0,
254,255,255,255,3,0,3,0,0,0,255,255,254,255,255,255,2,0,2,0,0,0,0,0,254,255,254,255,0,0,1,0,
0,0,255,255,0,0,1,0,1,0,0,0,255,255,0,0,2,0,3,0,2,0,1,0,2,0,2,0,0,0,254,255,
255,255,255,255,0,0,2,0,2,0,1,0,2,0,2,0,1,0,0,0,0,0,254,255,255,255,1,0,2,0,0,0,
255,255,2,0,3,0,0,0,254,255,0,0,0,0,0,0,1,0,0,0,254,255,0,0,1,0,2,0,3,0,3,0,
1,0,255,255,254,255,255,255,0,0,255,255,254,255,1,0,1,0,255,255,255,255,0,0,0,0,1,0,3,0,2,0,
254,255,253,255,255,255,0,0,0,0,1,0,3,0,3,0,0,0,255,255,0,0,2,0,2,0,0,0,
};

864
src/client/sound/data/sand4.pcm Executable file
View File

@@ -0,0 +1,864 @@
unsigned char PCM_sand4[27580] = {
1,0,0,0,2,0,0,0,68,172,0,0,214,53,0,0,21,0,11,0,243,255,242,255,252,255,3,0,10,0,1,0,
237,255,249,255,26,0,32,0,17,0,14,0,14,0,8,0,253,255,237,255,230,255,235,255,241,255,249,255,5,0,18,0,
8,0,245,255,9,0,26,0,27,0,43,0,32,0,17,0,32,0,3,0,7,0,59,0,5,0,224,255,57,0,101,0,
71,0,33,0,17,0,29,0,239,255,238,255,82,0,53,0,234,255,44,0,100,0,138,0,160,0,48,0,218,255,240,255,
16,0,74,0,121,0,136,0,142,0,53,0,179,255,162,255,5,0,76,0,32,0,35,0,90,0,21,0,13,0,126,0,
70,0,148,255,76,255,183,255,90,0,108,0,102,0,28,0,255,254,237,254,221,255,211,255,4,0,144,0,188,255,212,254,
4,255,212,255,180,0,109,0,206,255,22,0,30,0,25,0,59,0,155,255,192,255,212,0,226,0,166,0,229,0,18,1,
31,1,103,0,24,255,50,254,207,253,130,254,232,255,29,0,88,255,14,255,83,255,127,255,118,255,174,255,223,255,204,255,
6,0,231,255,5,255,130,254,168,254,117,255,123,0,133,0,58,0,29,0,153,255,142,255,3,0,60,0,143,0,106,0,
34,0,93,0,205,255,160,255,230,0,27,1,227,0,227,1,238,1,175,0,154,255,254,254,100,255,23,0,49,0,97,0,
224,0,155,1,134,1,206,255,213,254,51,255,148,254,243,253,195,254,186,255,101,0,189,0,29,0,25,255,19,255,45,0,
171,0,209,255,45,255,164,255,179,0,50,1,81,0,82,255,14,255,189,254,17,255,164,0,231,1,192,1,4,1,244,0,
211,0,244,255,64,0,57,1,193,0,145,0,28,1,155,0,127,0,23,1,108,0,118,255,130,255,203,255,208,255,250,255,
201,0,118,1,206,1,251,2,10,3,136,0,81,255,170,0,128,1,98,1,233,0,227,255,149,255,6,0,157,255,31,255,
232,255,175,0,33,0,68,255,101,255,49,0,226,0,154,1,114,2,173,2,245,1,220,0,224,255,228,255,244,0,191,0,
40,255,18,255,9,0,58,0,169,0,124,0,160,254,247,254,193,1,3,1,167,253,243,253,251,255,87,255,240,254,89,0,
93,0,52,0,239,1,219,1,92,255,64,255,80,1,202,1,18,1,116,0,78,255,59,254,150,254,2,0,237,0,122,0,
216,255,233,255,113,255,168,254,27,255,150,255,79,255,44,0,70,1,34,0,150,254,187,254,250,254,5,255,83,0,116,1,
179,0,7,0,150,0,66,0,17,255,66,255,21,0,15,0,39,0,255,255,168,254,58,254,109,255,221,255,134,255,253,255,
82,0,62,255,191,253,221,253,162,255,67,0,5,255,178,254,79,255,74,255,130,0,218,2,115,2,242,255,78,255,122,0,
96,1,144,1,36,1,61,0,105,255,174,255,31,1,81,1,93,255,140,254,30,0,55,1,244,0,162,0,52,0,156,255,
84,255,39,255,145,255,54,1,125,2,180,1,65,0,120,0,184,1,220,1,47,1,11,1,155,0,75,255,201,254,125,255,
157,255,246,254,242,254,82,255,216,254,12,254,55,254,49,255,33,0,142,0,122,0,150,0,216,0,11,0,3,255,156,255,
38,0,197,254,226,253,249,254,219,255,26,0,37,1,8,2,106,1,64,0,101,255,138,254,94,254,189,255,23,1,173,0,
151,255,21,255,156,254,113,254,79,255,13,0,207,255,173,255,72,0,185,0,75,0,140,255,64,255,111,255,179,0,78,3,
135,4,164,2,202,0,9,1,106,1,92,1,215,1,14,2,93,1,159,0,130,0,129,0,122,255,100,254,41,255,242,255,
239,254,149,254,238,254,140,253,33,253,208,255,147,1,17,1,55,1,98,1,217,255,78,254,238,253,236,253,68,254,46,255,
225,255,222,255,239,255,212,0,226,1,21,2,102,1,103,0,162,255,239,254,247,253,222,253,52,255,236,255,72,255,16,255,
100,255,164,255,141,0,82,1,147,0,216,255,54,0,15,0,42,255,201,254,61,254,31,253,146,253,206,255,129,0,247,254,
72,254,31,255,174,255,19,0,91,0,128,255,3,255,66,0,188,0,93,255,252,254,62,0,170,0,205,255,237,254,101,254,
193,254,78,0,52,1,74,0,120,255,252,255,175,0,11,1,88,1,75,1,207,0,196,255,81,254,16,254,84,255,250,255,
100,255,235,254,36,255,181,255,129,255,57,254,41,254,228,255,112,0,137,255,179,255,114,0,16,0,37,255,184,254,5,255,
158,255,140,255,247,254,45,255,85,0,43,1,14,1,230,0,8,1,76,0,92,255,231,255,83,0,128,255,235,255,101,1,
79,1,221,0,61,1,163,0,204,255,139,0,2,1,157,255,25,254,60,254,191,255,230,0,175,0,16,0,187,255,99,255,
116,255,37,0,158,0,124,0,241,255,125,255,161,255,131,255,63,254,116,253,27,255,238,1,224,2,100,1,178,255,182,254,
189,253,201,253,69,255,152,255,123,254,203,254,224,255,61,255,151,254,197,255,175,0,80,0,96,0,182,0,31,0,210,255,
116,0,89,0,179,255,237,255,219,255,55,255,10,0,3,1,172,255,158,254,237,255,163,0,231,255,21,0,36,0,182,254,
159,254,45,0,98,255,245,252,34,253,126,254,234,253,149,253,36,255,18,0,58,255,152,253,132,252,212,253,98,0,223,0,
35,0,52,0,150,255,147,254,150,255,46,1,37,1,206,0,11,1,162,0,102,255,159,254,250,254,167,255,198,255,151,255,
89,255,11,255,14,255,81,255,194,255,121,0,54,0,152,254,198,253,35,254,8,254,168,253,171,253,208,253,116,254,42,255,
40,255,50,255,55,255,126,254,93,254,17,255,200,254,230,253,203,253,214,253,118,253,214,252,11,252,223,251,189,252,253,253,
45,255,90,255,170,253,119,252,61,254,79,0,101,255,239,253,229,254,249,255,67,255,210,254,188,254,96,253,236,252,217,254,
247,255,7,255,35,254,187,253,184,253,121,254,240,254,27,255,248,255,240,255,140,254,194,254,126,0,148,0,122,255,105,255,
238,255,69,0,111,0,176,255,152,254,225,254,180,255,96,255,237,254,133,255,69,0,78,0,137,255,179,254,246,254,151,255,
124,255,196,255,86,0,89,255,205,253,100,253,109,253,25,254,174,255,69,0,192,255,135,255,247,254,87,254,55,255,40,0,
164,255,82,255,168,255,196,254,30,253,102,253,115,255,48,0,81,255,77,255,239,255,29,0,252,0,78,1,195,254,238,252,
66,255,180,1,218,0,179,255,129,0,111,1,36,1,85,0,164,255,65,255,117,255,165,255,5,255,143,254,221,254,132,254,
237,253,197,254,140,255,223,254,122,254,254,254,88,255,91,255,10,255,239,254,124,255,34,255,55,254,97,255,241,0,237,255,
248,254,66,0,242,0,240,255,105,255,178,255,169,255,108,255,185,255,145,0,239,0,19,0,78,255,57,0,98,1,110,0,
250,254,231,255,113,1,252,0,131,0,47,1,67,0,40,254,68,254,135,255,76,255,19,255,214,255,139,255,98,254,29,254,
55,254,133,254,172,255,232,255,170,254,97,254,134,254,132,253,190,253,44,255,114,254,150,253,68,255,216,255,69,254,82,254,
59,255,114,254,186,253,56,254,153,254,196,254,233,254,182,254,166,254,21,255,236,255,215,0,139,0,242,254,106,254,182,255,
215,0,29,1,27,1,241,255,1,254,88,254,120,0,104,0,254,254,115,255,229,255,213,254,252,254,5,0,115,255,203,254,
120,255,231,255,202,255,249,255,66,0,52,0,231,255,140,0,114,2,245,2,88,1,146,0,237,0,207,0,77,1,71,2,
193,1,235,0,129,1,21,2,55,1,80,255,38,254,179,255,167,2,214,3,107,3,161,2,96,0,146,253,210,253,206,0,
86,2,139,1,19,1,79,1,182,0,230,255,35,0,157,0,113,0,235,255,35,255,165,254,198,255,222,1,121,2,127,1,
251,0,13,1,209,0,4,1,135,1,200,0,184,255,24,0,124,0,156,255,212,254,20,255,55,0,137,1,75,1,217,255,
247,255,80,1,108,1,37,1,6,2,187,2,85,2,141,1,114,0,115,255,223,255,213,0,124,0,20,0,34,1,183,1,
157,0,206,255,78,0,100,1,126,2,128,2,59,1,119,0,145,0,121,0,35,0,45,255,175,253,137,253,163,254,26,255,
52,255,110,255,42,255,89,255,197,0,26,2,49,2,52,1,146,0,117,1,32,2,80,1,34,1,181,1,241,0,12,0,
145,0,230,0,155,0,193,0,184,0,227,255,52,255,121,255,86,0,219,0,3,1,31,1,118,0,211,255,24,1,108,2,
151,1,1,1,171,1,250,0,4,0,98,1,109,2,13,1,133,0,1,2,42,2,157,0,30,0,145,0,157,0,16,1,
220,1,223,1,215,1,236,1,237,0,26,0,191,0,234,0,251,255,255,255,11,1,132,1,127,1,27,2,4,3,124,2,
171,0,96,0,238,1,144,2,13,2,60,2,145,2,216,1,166,0,246,255,53,0,246,0,62,1,11,1,26,1,139,1,
88,2,31,3,110,2,33,0,173,254,66,255,220,255,116,255,114,255,43,0,237,0,135,1,239,0,81,255,102,255,198,0,
115,0,168,255,153,0,145,1,69,1,119,0,203,255,114,0,28,2,98,2,157,1,196,1,57,2,6,2,142,1,27,1,
224,0,216,0,70,1,89,2,255,1,181,255,236,254,164,255,248,254,28,255,189,1,177,2,253,0,98,0,253,0,74,0,
181,254,44,254,175,254,255,254,131,255,22,1,60,2,216,1,242,0,18,0,231,255,71,1,55,2,62,1,70,0,39,0,
65,0,13,1,14,2,53,2,215,1,222,0,113,255,32,255,239,255,114,0,182,0,85,1,227,1,186,1,7,1,55,0,
215,254,155,253,229,254,131,1,135,1,203,255,208,255,21,1,88,1,85,0,109,255,71,0,33,2,165,2,4,2,165,1,
140,1,225,1,134,2,61,2,25,1,136,0,202,0,255,0,200,0,189,0,26,1,26,1,176,0,160,0,184,0,66,0,
76,255,181,254,22,255,84,255,239,254,158,255,189,0,226,255,206,254,124,255,242,255,222,255,144,0,215,0,131,0,158,0,
192,255,131,253,70,252,24,253,248,254,28,0,173,255,117,255,68,0,8,0,197,254,191,254,178,255,245,255,200,255,35,0,
127,0,221,255,234,254,127,254,36,254,124,254,9,0,110,0,49,255,50,255,117,0,190,0,234,255,167,254,23,254,81,255,
151,0,79,0,177,255,131,255,206,255,203,0,107,1,72,1,43,1,125,0,137,255,168,255,144,255,245,254,248,255,12,1,
202,255,175,254,19,255,209,254,147,254,191,255,53,0,112,255,167,255,38,0,55,255,131,254,5,255,4,255,199,254,189,255,
87,0,82,255,86,254,211,253,216,252,180,252,132,254,18,0,9,0,148,0,53,2,29,2,92,0,243,255,49,0,52,255,
2,255,229,255,250,254,231,253,178,255,113,1,241,0,214,0,47,1,18,0,106,255,109,0,207,0,132,0,9,1,238,0,
169,255,33,255,167,254,68,253,222,253,238,0,254,1,21,0,127,254,240,253,198,253,235,254,117,0,96,0,208,255,130,0,
27,1,35,0,239,254,2,255,191,255,45,0,174,0,172,1,51,2,53,1,128,255,196,254,175,254,204,253,215,252,77,253,
67,254,122,254,130,254,203,254,42,255,193,255,34,0,232,255,28,0,26,1,144,1,64,1,247,0,51,0,231,254,197,254,
127,255,25,255,123,254,72,255,85,0,3,1,32,2,103,2,169,0,233,254,121,255,172,1,9,2,4,255,201,252,100,254,
3,0,70,255,8,255,133,255,245,254,36,255,12,1,24,2,144,1,50,1,218,0,151,255,223,254,231,255,173,0,237,255,
96,255,178,255,70,0,11,1,97,0,232,253,52,253,169,254,253,254,4,255,139,0,178,1,206,1,119,1,53,0,56,255,
26,255,48,254,137,253,158,254,74,255,100,255,209,0,108,1,168,255,224,254,231,255,82,255,120,253,0,254,115,0,126,1,
156,0,55,255,70,254,91,254,236,254,100,255,91,0,235,0,189,255,116,254,107,254,237,254,234,255,32,0,74,254,161,253,
155,255,11,0,6,254,197,252,218,252,23,254,159,0,241,1,238,0,29,0,132,0,247,0,32,1,1,1,70,0,95,255,
135,255,249,0,1,2,92,1,63,0,68,0,77,1,6,2,116,1,45,0,82,255,44,255,179,255,29,0,104,255,52,255,
213,0,79,1,244,254,79,253,94,254,144,255,155,255,245,255,95,0,134,255,57,255,33,1,74,2,251,0,1,0,230,255,
42,255,97,255,185,0,141,0,182,255,72,0,242,0,148,0,163,255,157,254,216,254,133,0,152,1,87,1,107,0,72,255,
17,255,200,255,238,255,77,0,195,1,209,1,252,255,194,255,107,1,200,1,199,0,84,0,46,0,32,0,211,0,238,0,
139,255,246,254,234,255,240,255,225,254,33,255,102,0,77,0,230,254,105,254,64,255,160,255,81,255,203,255,163,0,164,0,
196,0,114,1,43,1,97,0,254,0,238,1,112,1,231,0,40,1,160,0,161,255,125,255,8,255,19,254,125,254,175,255,
135,0,147,1,38,1,115,254,219,253,124,0,117,1,89,0,167,0,41,1,6,0,186,255,193,0,78,0,236,254,60,255,
125,0,238,0,224,0,99,0,29,255,47,254,119,254,112,255,89,0,115,0,22,0,150,0,17,1,36,0,118,255,46,0,
209,0,238,0,48,1,141,1,223,1,160,1,145,0,206,255,165,255,104,255,126,255,23,0,130,0,123,0,234,255,143,255,
151,0,199,1,93,1,146,0,14,1,39,2,91,2,170,1,147,1,235,1,230,0,154,255,53,0,74,1,132,1,15,2,
91,2,92,1,12,1,135,2,90,3,38,2,62,1,48,2,16,3,188,2,111,2,114,2,208,2,229,3,0,4,197,2,
197,2,62,3,195,1,98,0,33,1,92,2,13,3,80,3,172,2,56,1,46,0,226,0,50,2,172,1,253,0,86,2,
111,2,17,0,105,255,154,0,112,0,166,255,232,255,217,0,28,2,69,3,233,3,165,3,12,2,156,0,155,0,120,0,
19,0,241,0,160,1,227,0,184,0,216,1,112,2,131,1,210,255,123,254,30,254,50,255,37,1,154,1,9,0,252,254,
76,255,218,255,147,0,17,1,205,0,126,0,36,0,108,255,219,254,99,254,105,254,170,255,173,0,147,0,165,0,177,0,
179,255,28,254,67,253,237,254,217,1,254,1,75,0,69,0,252,255,247,253,86,253,124,254,119,255,68,0,35,0,118,254,
100,253,233,253,132,254,117,254,30,254,30,254,235,254,253,255,25,0,240,254,19,254,216,254,214,255,99,255,86,254,179,253,
138,253,227,253,41,254,42,254,160,254,12,255,230,254,5,255,8,255,2,254,219,252,181,252,189,253,76,255,248,255,171,255,
66,255,57,254,201,252,147,252,6,253,174,252,179,252,81,254,218,255,52,255,165,253,195,253,131,254,201,253,37,253,172,253,
163,253,97,253,3,254,72,254,107,254,143,255,174,255,235,253,12,253,4,254,41,255,172,255,51,255,201,253,244,252,58,253,
70,253,59,253,50,254,15,255,191,254,103,254,17,254,209,252,70,252,115,253,24,254,178,253,235,253,232,253,228,252,50,253,
6,255,84,255,213,253,243,252,215,252,133,252,190,252,213,253,135,254,161,254,242,254,212,254,115,253,122,252,28,254,182,0,
69,0,76,253,104,252,25,254,15,255,50,255,165,255,18,255,220,253,238,253,26,254,89,253,204,253,174,255,135,0,250,255,
100,255,241,254,50,254,0,253,24,252,94,253,117,0,250,1,77,1,230,0,176,0,222,255,159,255,255,254,219,252,29,252,
107,253,132,253,34,253,193,254,162,0,54,1,125,1,114,1,112,0,152,254,10,253,118,253,6,255,115,255,82,255,41,255,
208,253,167,252,13,253,45,253,15,253,69,254,112,255,198,255,150,0,161,0,159,254,130,253,4,255,29,0,97,255,255,254,
58,255,18,255,149,255,169,0,244,0,127,1,109,2,48,2,43,2,229,2,185,1,247,255,178,0,216,1,212,1,119,2,
230,2,103,1,238,255,87,0,36,1,87,0,206,254,177,254,146,255,23,0,148,0,174,0,211,255,50,255,232,254,166,254,
105,255,224,255,183,254,138,254,233,255,110,0,185,0,92,1,237,0,7,1,183,2,142,2,230,255,195,254,253,255,180,0,
94,0,69,0,235,255,62,255,209,255,186,0,99,0,208,0,87,2,194,1,170,255,6,255,125,255,53,0,165,0,120,255,
81,254,137,255,11,1,131,0,70,255,97,255,193,0,227,0,226,254,6,254,110,255,254,255,74,255,45,255,229,254,231,253,
200,253,189,254,120,255,55,0,194,1,8,2,124,255,11,254,23,0,50,1,72,0,109,1,33,3,249,1,167,0,237,0,
143,0,238,255,137,0,246,0,25,0,85,255,191,255,36,0,235,255,214,0,100,2,209,1,146,0,24,1,54,1,27,0,
33,0,176,0,107,0,122,0,133,0,112,255,186,254,65,255,158,255,149,255,49,0,40,1,108,1,186,0,103,255,200,254,
138,0,228,2,75,2,69,0,79,0,236,0,106,0,160,0,214,1,0,3,42,4,68,4,236,2,187,1,126,0,95,255,
52,0,1,1,157,255,119,255,171,1,6,2,20,0,181,254,166,253,81,252,112,252,97,254,83,0,48,1,94,1,46,1,
129,0,56,0,46,1,10,2,189,1,165,1,238,1,43,1,82,0,227,0,135,1,63,1,255,0,221,0,152,0,205,0,
70,1,153,1,233,1,125,1,192,0,161,1,154,2,1,1,126,255,185,0,10,2,254,1,84,2,137,2,190,1,85,1,
22,1,47,0,82,0,133,1,129,1,44,1,9,2,4,2,228,0,45,1,93,1,89,255,166,254,3,1,29,2,149,0,
215,255,71,0,253,255,200,255,134,0,163,0,158,255,6,255,15,255,176,254,89,254,247,254,61,0,147,1,15,2,61,1,
54,1,195,2,204,2,80,1,164,1,68,2,186,0,252,255,230,0,22,0,144,254,126,255,20,1,27,1,238,0,31,1,
118,0,150,255,76,0,51,2,99,3,76,3,136,2,120,1,131,0,226,255,137,255,32,0,232,1,7,3,13,2,90,0,
183,255,164,255,237,254,129,254,228,255,173,1,160,1,225,0,94,1,195,1,130,0,58,255,154,255,141,0,205,0,162,0,
31,0,77,255,78,255,153,0,88,2,125,3,184,2,54,0,72,254,131,253,23,253,239,253,140,255,188,255,66,255,138,255,
0,0,194,0,21,1,147,255,177,254,201,255,62,255,37,253,197,253,14,0,7,0,211,254,123,255,162,0,86,255,117,253,
129,254,90,0,254,255,166,255,36,0,235,254,142,253,182,254,238,255,95,255,40,255,181,255,129,255,72,255,243,255,40,0,
12,0,47,1,133,1,109,255,194,254,226,0,223,1,132,1,175,1,166,0,176,254,92,254,39,255,85,0,84,1,9,0,
24,254,180,254,204,255,123,255,67,255,238,254,58,254,217,254,59,0,33,0,101,254,33,253,13,254,36,255,218,253,121,252,
36,253,195,253,120,253,145,253,49,254,16,255,158,255,153,255,227,255,175,255,178,254,176,255,132,1,254,255,210,253,61,255,
45,1,227,0,178,0,74,1,20,1,110,0,35,0,137,255,234,254,197,255,112,1,151,1,36,0,227,254,218,254,189,255,
7,0,115,255,76,0,24,2,132,1,197,255,223,255,215,255,178,253,224,251,147,252,55,255,179,1,247,1,43,0,76,254,
191,253,130,254,177,255,220,0,247,1,249,1,59,1,219,1,168,2,204,0,248,253,43,253,29,254,10,0,156,2,223,3,
115,2,70,0,164,255,115,255,67,254,95,254,217,0,67,2,196,1,21,2,121,2,36,1,25,0,154,0,20,1,214,0,
232,255,108,254,251,253,120,255,125,1,22,3,3,4,5,3,75,0,111,254,40,254,16,254,147,254,83,0,152,1,130,1,
237,0,2,0,3,255,187,254,109,255,64,1,189,2,137,1,189,255,252,0,8,3,134,2,27,1,201,0,16,1,165,1,
64,2,50,2,166,1,253,0,93,0,12,0,214,255,120,255,112,255,249,255,91,0,1,0,74,255,57,255,31,0,130,0,
110,255,25,255,204,0,111,1,29,0,139,0,39,2,12,1,105,255,31,0,239,255,57,254,31,255,234,1,225,2,155,2,
168,2,31,2,236,0,227,255,150,254,143,253,175,254,134,0,93,0,106,0,70,2,207,1,210,254,111,254,193,255,63,255,
5,255,36,0,118,0,137,0,187,0,169,255,220,254,24,0,214,1,111,2,113,1,133,255,78,254,214,253,54,253,249,252,
103,253,3,254,3,255,56,0,170,0,217,255,43,254,43,253,12,254,184,255,130,0,19,0,230,254,215,253,124,253,193,253,
102,254,243,254,120,255,202,0,28,2,181,1,81,0,180,255,3,0,187,0,94,1,36,1,229,255,199,254,11,255,192,255,
252,254,194,253,17,254,193,254,127,254,70,254,54,254,213,253,65,254,172,255,124,0,149,0,244,0,235,0,250,255,227,255,
250,0,31,1,122,0,152,0,171,0,171,0,146,1,118,1,228,255,216,255,135,0,64,255,72,254,245,255,32,2,189,2,
246,1,114,0,65,255,91,255,18,0,184,255,14,255,72,0,185,1,243,0,133,0,131,1,190,0,88,255,104,0,44,1,
16,255,46,253,120,254,49,1,230,1,205,0,43,0,0,255,101,253,112,254,194,255,73,254,174,254,233,1,22,2,96,0,
96,1,137,2,44,1,121,255,221,254,179,254,239,254,70,0,185,1,42,1,44,0,158,0,156,255,214,253,240,255,178,2,
200,1,21,1,224,1,27,1,82,0,39,0,74,254,54,253,92,255,144,1,203,1,119,1,104,1,51,1,47,0,94,255,
166,0,81,2,115,1,217,255,239,255,177,255,220,253,149,253,5,0,129,1,197,0,189,0,55,1,199,255,31,254,41,254,
249,253,36,253,186,253,92,255,45,0,194,255,87,254,0,253,14,254,218,1,238,4,28,4,45,1,30,0,177,0,234,255,
138,254,45,255,142,0,185,0,251,0,82,1,187,255,255,253,43,255,116,1,250,1,110,1,118,1,43,2,190,2,234,2,
17,3,218,2,88,2,208,2,151,3,138,3,233,3,210,3,185,1,62,1,150,3,204,3,156,1,200,0,167,0,110,0,
34,1,200,0,84,254,18,253,232,254,174,1,148,2,115,1,108,0,96,0,117,0,44,0,240,255,21,1,248,2,62,2,
246,255,101,0,239,1,19,2,205,2,104,3,101,2,29,2,228,1,196,255,195,254,242,255,173,0,221,0,222,0,179,0,
139,1,3,2,45,1,177,1,182,2,190,1,51,1,195,1,20,1,219,0,79,2,182,2,97,2,1,3,194,2,51,1,
38,0,71,255,237,254,66,1,88,4,253,3,15,1,1,255,97,254,149,254,45,255,58,255,132,255,30,1,17,2,24,1,
226,255,21,255,194,254,198,255,139,0,80,255,134,254,14,0,140,1,63,1,105,0,65,0,49,0,40,255,9,254,206,254,
49,0,83,255,33,254,234,255,198,1,33,0,22,254,123,254,21,255,22,255,203,255,241,255,72,254,106,252,115,252,68,254,
126,254,154,251,80,250,43,253,215,255,145,0,78,1,23,1,139,255,36,255,230,255,76,0,191,0,135,1,137,1,7,0,
48,254,189,253,14,254,108,254,157,255,29,0,186,254,48,254,152,254,66,253,240,251,192,252,141,253,114,253,226,253,18,255,
231,255,56,255,27,254,187,254,187,255,107,255,112,255,49,0,171,0,13,1,53,0,252,253,217,252,60,252,21,251,78,252,
153,255,193,0,37,0,17,0,112,255,250,253,72,253,114,253,26,254,57,255,72,255,65,253,132,251,248,251,173,252,186,252,
223,253,237,254,222,253,54,253,74,254,70,254,89,253,227,253,41,254,175,252,78,252,221,253,37,254,209,252,180,252,167,253,
38,254,36,255,236,255,251,253,123,251,25,252,79,254,105,255,102,255,204,254,98,254,121,254,33,254,228,253,142,254,122,254,
136,253,213,253,223,254,11,255,78,255,51,0,37,0,237,254,101,254,35,255,222,255,24,0,119,0,13,1,91,1,235,0,
154,255,102,254,182,254,21,0,17,0,137,253,165,251,124,253,53,0,209,0,182,1,202,2,142,0,229,253,243,254,253,255,
141,254,176,254,122,0,73,255,84,252,181,252,72,255,138,255,129,254,121,254,133,253,73,252,205,253,52,255,248,253,41,254,
99,0,113,0,192,254,13,254,147,254,252,255,121,0,210,254,58,254,179,255,168,255,221,254,120,0,227,1,233,0,97,0,
68,0,51,254,156,252,32,253,235,252,208,252,8,255,41,0,110,255,193,0,28,2,124,0,118,255,196,255,225,254,84,255,
129,1,196,0,59,254,43,254,249,254,50,254,88,253,190,253,189,254,149,255,226,255,67,255,71,254,71,254,140,254,246,253,
227,254,152,1,162,1,253,255,195,1,194,3,192,0,48,253,49,254,121,0,173,0,197,0,56,1,122,255,249,252,81,253,
224,254,45,255,237,255,5,1,151,0,102,0,13,1,53,0,158,254,12,254,61,254,120,255,99,0,61,255,45,255,108,1,
148,1,236,255,198,255,192,254,133,252,154,253,35,0,42,0,26,1,137,3,41,2,50,255,10,0,126,1,50,1,133,2,
178,3,154,1,236,255,181,255,167,253,45,252,52,254,45,0,45,0,187,0,61,2,22,3,217,2,29,2,158,1,22,1,
117,0,114,1,92,3,127,2,190,255,88,255,3,0,30,255,200,255,217,2,108,3,168,1,202,1,101,2,37,1,228,255,
249,254,53,254,138,255,206,1,153,2,183,2,247,1,192,255,173,254,231,255,177,1,254,2,81,3,57,3,121,3,149,2,
10,1,207,1,167,3,123,3,228,1,2,1,4,2,63,3,237,1,189,0,37,2,102,1,0,254,31,254,249,0,10,2,
43,2,11,2,108,1,53,2,35,3,135,1,67,255,84,254,1,254,75,254,58,255,135,255,27,255,5,0,210,2,227,3,
85,1,57,255,115,255,44,255,250,254,27,0,57,255,252,252,104,254,98,1,180,0,232,254,250,255,104,1,195,0,47,0,
123,0,96,0,38,1,76,3,155,3,247,1,146,1,65,1,19,255,4,254,92,255,95,0,156,0,121,0,169,254,18,253,
123,254,248,255,25,255,37,255,192,0,117,0,66,255,198,255,224,255,165,254,16,255,14,1,203,1,251,0,195,255,240,254,
167,255,139,1,22,2,163,0,247,255,50,1,194,1,73,1,60,2,65,3,200,1,48,0,87,0,40,0,191,255,30,1,
179,2,3,2,34,0,80,255,88,255,11,255,43,255,214,0,29,3,32,4,70,2,157,254,157,253,251,255,85,1,124,1,
192,2,72,3,181,2,223,2,90,2,253,0,131,0,174,255,64,255,89,1,171,2,160,1,190,1,221,2,17,3,250,2,
231,1,133,0,238,0,59,0,23,253,192,252,219,255,121,1,43,1,213,0,26,0,113,255,151,255,148,255,126,255,44,0,
89,0,142,255,161,0,17,4,114,5,66,3,151,1,19,2,106,2,86,2,176,2,115,2,154,1,217,1,204,2,70,2,
234,0,94,1,100,2,238,0,94,255,249,0,184,2,51,2,70,2,37,3,14,2,119,0,177,0,5,1,31,0,57,255,
102,255,32,1,78,3,182,3,60,3,137,3,98,2,129,255,217,254,44,0,53,0,153,255,6,255,194,253,20,254,171,0,
42,2,26,2,60,2,220,1,193,0,9,0,164,255,170,255,128,0,24,1,109,0,69,255,10,255,164,255,78,0,171,1,
205,2,31,1,228,254,192,255,129,1,51,2,212,2,62,2,65,1,86,2,90,2,182,255,197,254,148,255,170,255,106,0,
3,1,174,255,72,255,189,0,26,1,18,0,95,255,134,255,170,255,232,254,138,254,60,255,71,255,101,255,56,0,194,254,
17,252,124,252,162,254,185,255,32,0,167,255,108,255,219,0,229,0,116,254,158,253,24,255,86,0,193,0,252,255,93,254,
212,253,27,254,33,254,208,254,161,255,66,255,121,255,85,1,32,2,104,0,73,254,71,253,8,253,227,253,92,0,140,2,
43,2,187,0,205,0,209,0,21,255,116,254,192,255,146,255,236,254,141,0,231,0,175,254,89,254,186,254,64,253,71,254,
91,1,161,0,29,255,150,0,86,0,139,254,178,255,50,0,23,254,221,254,81,1,56,0,239,254,191,0,138,1,228,255,
52,255,56,0,82,1,114,1,122,0,230,255,25,0,129,255,65,255,17,1,217,1,76,255,209,252,33,253,171,254,120,255,
138,255,22,0,248,0,75,0,49,254,176,252,40,252,242,252,113,255,201,0,94,255,171,254,17,0,151,0,33,0,194,0,
253,0,145,255,136,255,187,1,36,2,80,0,122,0,105,2,254,1,144,255,103,254,96,254,101,253,59,252,70,253,130,255,
239,255,115,255,28,0,89,0,171,255,160,255,179,254,166,252,100,253,122,0,89,1,14,0,225,254,115,253,38,252,166,252,
136,254,60,0,12,1,76,0,245,253,113,252,220,253,55,0,145,0,122,255,18,255,2,0,232,0,245,255,204,254,42,0,
216,1,65,1,128,0,75,0,94,255,135,255,188,1,72,3,74,2,202,255,253,254,53,1,56,2,212,255,44,254,201,254,
158,255,226,0,206,1,245,0,112,0,157,0,76,255,231,253,105,254,173,255,194,0,245,0,195,255,250,254,122,255,85,255,
23,254,177,253,29,255,169,0,225,255,189,253,163,253,214,255,176,1,121,1,21,255,173,252,166,253,123,1,172,3,132,2,
206,0,93,0,152,255,81,253,112,251,1,252,59,254,167,255,39,255,71,254,196,254,136,255,194,254,94,253,113,253,14,255,
147,0,191,0,191,255,143,254,167,253,252,252,60,253,251,254,50,0,204,254,150,253,81,255,131,0,54,255,38,255,81,0,
170,255,17,255,139,255,239,254,139,255,156,2,32,3,51,1,39,2,100,4,142,3,3,1,78,255,186,254,212,254,174,254,
187,254,19,0,81,1,171,1,63,2,208,1,114,255,52,254,32,255,101,255,136,254,0,254,192,253,68,254,34,0,95,1,
205,0,110,0,218,0,254,255,3,254,145,253,9,255,98,0,215,0,16,1,47,1,185,0,48,255,36,253,144,252,17,254,
3,0,173,1,246,2,117,2,124,0,169,255,152,0,252,1,3,3,12,3,122,2,230,1,238,255,231,252,30,252,64,253,
84,253,103,253,220,254,150,255,161,255,18,1,239,1,201,255,106,253,48,253,242,252,115,252,48,254,253,255,129,254,72,253,
107,255,240,0,73,0,244,0,220,1,18,0,210,254,167,0,25,2,177,1,202,1,208,1,113,0,39,0,157,1,97,1,
66,255,162,254,178,255,51,0,195,255,245,254,192,253,24,252,34,251,207,252,36,0,127,1,34,1,33,2,18,3,44,1,
210,254,31,255,102,0,44,0,103,255,87,255,240,254,37,254,77,254,162,254,149,254,73,255,136,255,176,254,85,255,67,0,
245,254,198,254,112,0,114,255,105,253,46,254,35,255,172,254,253,254,247,255,105,0,240,255,205,254,235,254,18,0,86,0,
40,1,240,1,253,254,163,251,233,252,94,255,235,255,101,0,11,0,44,254,238,253,180,255,144,0,115,0,3,1,7,1,
168,254,129,252,11,254,126,0,218,255,58,254,140,254,56,0,35,2,139,2,76,0,8,254,12,254,89,255,202,0,232,1,
10,3,140,4,243,3,134,0,176,254,148,255,58,0,37,1,74,2,243,0,104,255,204,0,211,1,43,0,88,254,143,253,
140,253,249,254,138,1,112,3,183,2,189,255,19,254,71,255,212,0,97,1,82,1,148,0,68,0,221,0,129,0,164,255,
64,0,33,1,118,1,133,2,83,3,157,2,154,1,187,0,65,0,250,0,244,0,36,255,116,254,174,254,181,253,196,254,
194,2,183,3,194,0,211,254,83,254,65,254,51,0,218,2,134,3,148,2,235,0,196,255,90,0,217,0,72,0,138,0,
244,0,100,0,78,0,160,255,40,253,30,252,88,253,111,254,228,255,122,1,45,1,159,0,166,0,203,254,174,252,215,253,
31,0,192,255,153,253,62,253,141,255,45,1,106,0,250,255,195,0,213,0,82,0,242,255,33,255,44,254,243,253,236,254,
95,0,4,0,155,254,91,255,93,0,121,254,123,252,228,252,44,254,77,255,160,255,148,255,96,1,247,2,49,1,233,255,
187,1,16,2,207,255,242,254,172,255,22,0,154,0,112,1,251,1,28,2,137,1,101,0,251,255,18,1,160,2,32,3,
110,2,131,1,68,1,47,2,1,3,57,1,211,253,235,252,200,254,255,255,216,255,32,0,42,1,251,1,200,1,113,0,
23,255,233,254,61,255,31,255,63,255,239,255,75,0,186,0,239,1,60,2,164,0,74,255,167,255,139,0,197,0,156,0,
226,0,64,1,196,0,171,0,37,2,150,2,72,0,69,254,201,254,32,0,70,0,84,255,228,254,103,255,91,255,239,254,
150,255,77,0,97,0,13,1,165,1,54,1,179,0,161,255,173,253,252,252,231,253,26,255,139,0,5,1,173,255,252,254,
130,255,207,254,187,253,160,254,227,255,56,255,48,254,66,255,241,0,138,0,230,255,71,1,154,1,90,255,117,254,204,255,
73,0,255,255,50,0,201,255,199,254,173,254,129,255,64,0,39,0,186,255,8,1,179,3,230,3,33,1,51,255,161,254,
78,253,178,252,160,253,232,252,244,250,223,251,200,254,10,0,74,255,205,253,199,253,59,0,65,1,253,254,181,253,78,254,
128,254,234,255,101,2,247,2,31,3,186,3,16,2,68,0,164,1,22,3,10,2,45,0,230,254,104,255,116,1,20,2,
21,1,219,0,244,0,135,0,7,1,147,2,241,2,161,0,96,253,166,252,118,254,136,255,57,255,123,255,123,0,245,0,
152,0,119,0,250,0,76,0,115,254,3,255,247,1,210,2,73,1,193,0,243,0,196,255,60,254,82,254,158,255,157,0,
204,0,104,0,189,255,73,255,31,255,247,254,142,255,67,1,70,2,137,1,128,0,35,0,57,0,178,0,32,1,53,1,
139,1,183,1,124,0,234,254,48,255,60,0,54,255,3,253,43,253,203,255,197,1,189,1,179,0,177,255,63,255,131,255,
72,0,18,1,133,1,66,2,46,3,63,2,181,255,236,254,2,0,150,255,108,253,205,252,127,255,54,3,56,4,174,2,
184,1,128,1,180,0,172,0,54,2,147,3,183,3,254,2,68,2,74,2,156,2,177,2,229,2,244,2,148,2,42,2,
87,1,254,255,30,255,74,255,181,0,77,2,215,1,80,0,0,0,98,255,51,254,44,255,179,0,67,0,149,0,185,2,
131,3,112,2,87,1,225,0,251,0,167,0,121,255,253,254,117,255,172,255,24,0,218,0,35,0,223,253,243,252,204,254,
98,0,56,255,221,253,221,253,239,252,254,251,30,253,209,253,213,253,209,255,56,1,64,0,155,0,116,1,131,255,106,254,
70,0,190,0,161,255,41,0,108,0,43,255,237,255,221,1,99,0,80,254,215,0,166,3,94,1,72,254,81,254,111,254,
206,253,249,254,2,1,189,1,153,1,203,1,69,2,127,1,127,255,241,254,104,255,54,254,121,253,8,255,130,255,123,254,
192,254,41,255,188,254,162,254,97,253,211,251,165,253,8,255,125,251,98,249,151,252,116,254,181,253,101,255,59,1,39,0,
44,0,209,1,57,1,179,255,174,255,6,0,188,0,195,1,61,1,25,0,83,0,220,0,188,0,60,0,129,255,170,255,
71,1,172,2,147,2,193,1,197,1,27,2,65,0,214,253,232,254,198,0,215,255,114,255,35,0,147,254,143,253,34,255,
89,255,122,254,231,254,137,254,76,254,211,0,170,2,199,1,134,1,84,2,193,1,187,255,21,254,145,254,117,0,83,1,
31,1,20,0,168,253,194,252,220,254,242,255,59,255,39,255,30,254,152,252,141,254,37,1,180,255,13,254,164,255,156,0,
22,255,87,254,228,254,231,253,116,252,177,254,35,3,8,4,130,1,9,0,6,0,51,0,31,1,239,1,165,1,169,1,
50,2,200,1,161,0,246,255,53,0,124,0,90,255,204,253,39,254,171,255,179,0,183,1,149,2,170,2,97,2,97,1,
50,0,22,1,225,2,193,2,16,2,252,1,21,1,146,0,89,1,175,0,157,255,111,1,255,2,81,1,67,0,131,1,
229,1,232,0,33,0,91,0,254,1,196,2,199,0,168,255,141,1,160,2,89,1,75,0,39,0,0,0,113,255,200,254,
252,254,212,255,166,0,2,2,239,2,94,2,60,2,141,2,123,1,126,0,242,255,60,254,236,253,37,0,192,0,113,255,
195,255,174,1,79,3,170,3,220,2,12,2,212,0,64,255,140,255,103,0,13,0,87,1,212,2,178,0,151,255,175,1,
195,0,66,254,13,0,31,2,193,0,20,0,160,0,204,254,211,251,217,251,129,255,222,2,123,2,130,0,113,0,252,0,
18,0,69,255,192,255,160,255,107,254,208,254,235,0,243,0,153,254,165,253,118,254,182,254,209,254,131,255,62,255,16,254,
114,254,192,0,119,2,45,2,173,0,1,255,255,253,248,253,88,254,72,255,214,0,17,1,218,255,190,255,102,0,50,0,
125,0,11,1,180,255,96,254,93,255,71,0,41,255,128,253,207,252,43,253,116,253,194,252,107,252,73,253,142,253,250,252,
100,253,212,253,133,252,188,251,189,253,81,0,221,0,222,255,8,255,70,255,128,255,17,254,191,252,49,254,59,0,236,255,
249,254,56,255,83,255,105,254,103,253,35,253,217,253,86,255,240,0,126,1,43,0,77,254,253,253,208,254,243,254,71,254,
33,254,79,255,218,0,168,0,84,254,26,252,207,251,168,252,73,253,86,254,84,0,41,1,98,255,161,252,105,250,111,249,
183,250,229,252,87,253,0,253,224,253,237,254,228,254,123,253,157,250,214,248,142,250,189,252,234,252,244,253,209,255,141,254,
251,251,45,252,198,252,219,251,124,252,104,254,69,254,77,253,233,253,60,254,218,252,114,252,117,254,203,255,43,255,9,0,
145,2,150,2,178,0,83,0,20,0,125,254,11,254,99,255,243,255,157,254,28,253,8,253,61,253,7,253,100,254,110,0,
171,255,43,253,234,251,234,251,205,252,57,254,146,255,47,1,74,1,113,254,127,252,82,253,170,253,73,253,173,253,4,254,
228,254,98,0,60,0,25,255,91,254,237,252,95,252,189,254,183,0,97,255,96,253,182,253,16,255,220,254,37,254,21,255,
245,255,13,255,125,254,110,255,80,0,47,0,41,255,150,254,213,255,193,0,203,254,216,252,255,254,0,3,220,3,93,2,
48,2,251,1,23,0,152,255,132,0,190,255,175,255,82,2,39,3,68,1,8,1,254,1,206,0,237,254,116,255,42,1,
222,0,105,255,88,0,4,3,84,3,101,0,85,253,54,253,127,255,163,0,1,0,48,0,137,0,68,255,123,254,20,255,
138,254,11,253,233,252,36,254,31,0,119,2,144,3,70,3,106,3,118,3,218,1,21,0,117,255,210,254,110,254,63,255,
102,0,184,1,60,3,31,3,124,1,28,0,5,255,56,255,101,1,226,1,22,0,177,0,162,2,28,1,143,254,35,255,
181,0,193,0,21,0,43,255,97,254,144,254,210,254,200,254,43,0,149,1,220,255,4,254,30,0,171,2,53,2,45,1,
226,0,100,0,58,0,137,0,101,1,253,2,28,3,73,1,129,0,6,1,246,1,14,4,43,5,166,3,97,2,167,1,
248,255,29,0,58,2,40,2,43,1,115,2,85,3,57,2,212,1,10,2,77,1,107,1,151,2,43,2,2,1,46,1,
30,1,215,0,114,2,64,3,112,0,0,254,86,255,238,1,250,2,222,1,100,255,89,254,45,0,47,2,236,1,127,0,
116,255,27,255,71,0,148,2,141,2,151,255,78,254,249,255,50,1,208,1,60,3,203,3,61,3,142,3,121,4,212,4,
197,4,242,3,210,1,163,255,123,255,63,1,101,2,233,1,123,1,46,2,251,2,40,2,42,0,21,0,191,1,138,1,
100,0,27,1,176,1,4,1,197,0,143,0,217,0,142,2,221,2,100,1,40,1,229,0,118,255,220,255,134,1,54,1,
226,255,127,255,152,255,132,255,94,255,183,255,121,0,116,0,147,255,35,255,119,255,105,255,122,254,152,254,174,0,197,1,
242,0,241,0,235,0,63,255,245,254,178,0,45,1,142,0,172,0,251,0,122,0,249,254,74,254,27,0,42,1,127,255,
132,255,241,1,59,2,240,0,217,0,207,0,0,1,218,2,39,4,109,3,163,2,72,2,146,1,49,1,11,1,141,0,
35,1,21,3,247,3,251,2,144,1,203,0,46,1,207,1,15,1,48,0,169,0,44,0,22,254,70,254,105,1,217,2,
214,0,5,255,2,255,147,254,82,254,247,255,78,0,36,254,229,253,96,255,41,255,158,255,211,1,9,2,254,0,92,1,
251,0,170,254,181,252,142,252,244,253,14,255,205,254,100,255,23,1,202,0,44,255,174,255,57,1,89,0,246,253,143,253,
191,254,237,254,254,254,222,255,192,255,111,255,243,255,213,254,200,253,180,0,132,3,6,2,47,0,176,0,196,1,148,2,
8,2,209,255,229,254,205,255,114,255,180,253,217,252,235,252,248,252,111,253,204,254,248,255,115,255,225,253,123,253,62,254,
28,254,136,253,176,254,118,0,167,0,5,0,45,255,252,253,66,254,119,255,127,254,211,252,29,253,120,253,46,253,207,253,
64,254,43,254,50,255,46,0,198,255,26,255,95,254,211,253,217,254,94,0,93,0,193,255,179,255,180,255,253,255,187,0,
147,0,170,255,252,255,234,0,108,0,39,255,20,254,135,253,112,255,226,2,54,3,181,0,160,255,223,255,107,255,225,254,
216,254,178,254,31,254,253,253,151,255,207,1,165,2,234,2,38,3,218,1,128,255,210,253,116,253,215,254,1,1,65,2,
239,2,27,3,219,1,255,255,217,254,195,254,64,255,5,255,192,254,2,0,199,0,213,255,200,255,148,0,237,255,132,254,
227,253,107,254,20,255,173,253,9,252,215,253,13,0,16,255,124,254,124,0,160,1,51,0,13,254,197,253,253,255,127,1,
58,0,230,254,224,254,118,254,93,254,223,255,43,1,58,1,116,1,133,1,71,0,128,255,177,0,252,1,71,2,172,2,
204,2,201,1,232,0,206,0,66,0,138,255,42,0,69,1,39,1,231,0,165,1,218,1,68,1,36,1,93,0,165,254,
141,254,40,0,101,1,201,1,237,0,126,255,144,255,1,0,62,255,46,255,15,0,106,0,72,1,212,2,159,3,136,3,
221,1,214,254,138,253,109,254,110,255,38,1,178,3,112,4,236,2,168,1,157,1,187,0,45,254,69,253,138,255,52,1,
128,0,144,255,130,254,248,252,213,252,249,253,231,253,150,252,157,252,223,254,226,0,147,0,39,255,170,254,207,255,119,1,
161,1,50,1,59,2,129,2,178,0,129,0,217,1,145,0,20,254,60,254,23,0,107,1,16,2,209,1,6,0,87,253,
2,252,6,253,204,254,84,0,157,1,154,1,121,0,20,0,175,0,144,1,78,2,21,2,35,1,192,0,153,0,220,255,
234,254,34,254,230,253,204,254,18,0,220,255,235,253,113,252,56,253,58,255,186,0,111,1,98,1,176,0,90,0,177,0,
93,0,187,254,123,253,33,254,122,255,196,255,100,255,157,255,172,0,112,1,233,0,123,0,95,1,175,1,236,0,12,1,
33,1,34,0,63,0,73,1,8,1,108,0,154,0,102,0,26,255,126,253,13,253,196,253,92,254,236,255,7,2,148,0,
180,253,27,255,41,1,32,255,44,253,195,253,197,253,149,252,173,251,120,251,196,251,5,252,23,253,136,255,200,0,255,255,
5,255,220,253,87,253,23,255,100,0,149,255,212,255,2,1,78,0,175,255,15,1,101,1,216,255,166,255,172,0,58,0,
185,255,34,1,215,1,96,0,114,255,249,255,81,0,19,0,156,255,118,255,62,0,0,1,172,0,204,255,154,254,17,253,
180,252,195,254,143,1,51,2,218,0,27,0,34,0,174,255,13,0,55,2,3,4,15,4,130,3,252,2,172,1,37,0,
158,0,45,2,94,1,97,255,119,255,19,0,214,255,144,0,122,1,16,1,102,0,33,255,52,253,152,253,245,255,40,0,
33,254,211,253,7,0,17,1,79,255,147,253,7,253,220,252,158,254,21,1,208,255,123,253,241,254,253,255,16,253,154,251,
66,254,36,0,25,255,68,254,53,255,91,0,174,0,114,0,60,0,153,0,252,0,151,0,60,0,80,0,124,0,160,1,
92,2,105,0,5,255,81,0,114,0,208,255,63,1,87,1,40,255,129,254,18,254,244,252,170,254,96,1,88,1,123,0,
253,255,81,255,146,255,92,255,150,253,210,253,87,0,198,0,253,254,251,253,70,254,234,254,203,254,246,253,158,254,54,0,
72,255,196,253,229,255,255,1,14,0,11,255,102,1,197,1,41,0,10,1,2,2,129,0,85,0,26,2,81,2,198,1,
240,1,210,0,143,255,54,1,227,2,163,1,25,1,19,2,12,0,245,252,15,254,140,0,232,0,107,1,208,1,227,255,
40,254,192,254,169,255,96,255,200,254,68,255,65,0,47,0,97,0,91,1,26,0,15,254,33,255,249,255,186,253,241,252,
38,255,217,0,99,1,73,1,111,0,149,0,1,2,51,2,144,1,227,2,188,4,35,3,30,0,180,0,111,2,124,0,
23,254,242,254,42,0,37,0,61,0,253,255,247,255,30,1,232,0,218,254,108,254,7,255,175,253,205,252,216,254,22,0,
139,254,218,253,167,254,137,254,23,255,86,1,55,2,220,1,96,2,217,1,247,255,191,255,53,0,14,255,112,254,187,255,
155,0,224,255,46,255,68,0,81,2,171,2,28,1,37,0,52,0,224,255,140,255,24,0,173,0,178,0,167,0,138,0,
25,0,150,255,21,255,202,254,89,255,148,0,16,1,144,255,104,253,52,254,141,1,54,2,33,0,26,0,12,1,25,0,
214,255,106,0,8,255,142,254,69,1,192,2,2,1,71,255,68,255,97,0,95,1,209,0,62,255,199,254,245,255,255,0,
108,0,59,255,187,254,142,254,175,254,12,255,194,254,15,255,179,0,229,0,237,255,251,0,50,2,239,0,161,255,237,255,
121,0,207,0,52,1,195,1,26,2,116,1,204,0,236,0,201,0,118,1,38,3,226,1,214,254,162,255,96,1,201,254,
4,252,227,252,12,254,84,254,165,255,214,0,176,0,159,0,253,0,149,0,145,255,81,255,246,255,86,0,156,0,163,1,
40,2,62,1,131,0,66,0,162,255,22,0,88,1,85,0,201,254,125,0,9,2,110,255,4,253,146,254,232,255,242,253,
251,251,110,252,4,254,249,255,183,1,219,1,45,1,22,1,194,0,70,0,49,0,1,255,253,253,234,255,1,1,10,254,
153,252,171,255,150,1,12,0,70,255,94,0,54,0,218,254,124,255,67,1,144,0,122,254,211,253,14,254,33,255,153,0,
84,255,188,252,149,253,86,0,33,1,81,0,16,255,79,254,5,255,236,255,235,255,159,255,89,255,180,255,143,0,110,0,
243,255,159,0,173,1,245,1,87,1,49,1,63,2,23,1,125,253,182,253,120,0,232,254,239,252,172,255,153,1,20,0,
34,255,210,254,254,253,73,254,95,255,132,255,234,254,244,254,220,255,215,255,44,255,125,0,197,1,181,255,156,253,173,254,
148,0,135,1,110,1,200,255,19,254,103,254,12,0,248,0,104,0,151,255,65,0,245,1,197,2,30,2,96,1,174,1,
172,1,234,255,85,254,151,254,255,254,129,254,201,254,230,0,204,2,145,1,158,254,52,254,249,255,166,0,134,0,42,1,
237,1,227,1,135,1,61,2,43,3,126,1,224,254,7,255,236,255,99,255,142,255,53,0,48,0,197,0,159,0,168,254,
49,254,26,255,23,254,120,253,93,0,35,3,133,1,3,254,177,253,167,255,20,255,195,252,192,252,84,254,137,255,175,0,
222,0,155,255,143,254,225,253,189,253,176,255,213,1,36,1,154,255,213,255,34,0,7,255,253,253,39,254,27,255,232,255,
221,255,185,255,182,0,188,1,219,0,184,254,135,253,90,254,29,0,153,0,246,255,110,0,51,1,20,0,178,254,0,255,
141,255,73,255,65,255,73,0,149,1,121,1,108,0,132,0,238,0,41,0,66,0,47,2,25,3,170,1,252,255,23,0,
71,1,102,1,223,0,47,1,134,0,52,254,239,253,124,0,235,1,202,0,113,255,217,255,48,1,166,0,247,253,163,252,
79,254,243,0,123,2,242,1,215,255,133,254,244,254,35,255,45,254,187,253,5,254,205,253,255,253,29,255,173,254,241,252,
65,253,177,254,222,254,213,255,152,1,48,0,62,253,106,254,9,2,20,2,188,255,19,0,89,1,27,0,195,255,26,2,
131,2,249,0,85,1,191,1,150,0,113,0,112,0,69,255,210,255,169,1,140,1,131,0,223,255,212,254,150,254,240,255,
218,0,120,0,247,255,30,0,136,0,8,0,204,254,135,254,57,255,197,255,151,0,212,1,231,1,26,0,28,254,45,254,
252,255,191,0,236,255,64,0,249,1,249,1,26,0,44,255,81,255,42,255,70,255,181,255,214,255,167,0,166,1,218,0,
201,255,31,0,229,255,34,255,131,255,128,255,205,254,66,255,198,255,81,0,141,2,212,2,247,254,255,252,36,255,76,0,
130,255,27,255,180,254,158,254,11,255,224,253,138,252,37,254,215,255,200,254,51,254,154,255,31,0,123,255,158,255,120,0,
61,1,127,1,252,0,59,0,120,255,198,254,249,254,104,255,10,255,164,255,87,1,251,0,0,255,205,254,155,0,11,2,
151,0,50,253,111,253,90,1,216,1,47,255,61,255,39,0,217,254,149,254,95,0,254,0,132,255,47,254,74,255,242,0,
113,255,135,253,69,255,92,1,24,1,230,0,95,1,239,1,134,2,118,1,209,255,115,0,127,1,142,1,162,2,103,3,
237,1,171,0,95,1,198,2,107,3,164,2,140,1,31,1,146,0,172,0,251,1,78,1,19,254,226,252,248,254,55,0,
183,254,102,253,52,254,176,254,146,253,77,253,41,254,82,254,112,254,172,254,191,253,46,253,115,254,187,255,244,255,254,255,
35,0,72,0,188,0,99,1,30,1,255,255,92,0,0,2,19,2,85,1,0,1,154,255,101,255,72,2,40,3,2,1,
41,1,197,2,122,2,238,1,200,1,107,1,193,1,121,1,40,0,133,0,82,1,101,255,245,252,125,253,207,255,77,0,
146,254,254,253,49,255,189,255,16,0,132,0,84,255,19,254,68,254,36,254,185,254,189,0,214,0,74,255,172,254,78,254,
250,254,154,0,18,255,65,252,237,253,94,1,174,1,149,0,97,0,177,0,27,1,63,1,222,0,209,255,68,254,177,253,
227,254,251,0,147,2,162,1,44,255,128,255,112,1,180,0,106,255,152,255,212,254,3,255,57,2,104,3,238,0,171,255,
50,0,84,0,194,0,209,0,135,255,76,255,150,0,238,0,135,0,46,0,57,255,94,255,196,1,21,3,26,2,91,1,
170,0,173,255,170,0,23,2,20,1,99,0,194,1,31,2,92,1,117,1,91,1,190,0,241,0,88,1,14,1,208,255,
162,253,227,252,231,254,114,0,223,255,144,255,45,0,59,0,48,255,139,253,3,253,79,254,29,255,189,254,49,255,246,255,
15,0,53,1,122,2,203,0,2,254,148,253,123,254,241,254,138,255,138,0,75,1,69,1,113,0,227,255,79,0,143,0,
16,0,86,0,3,2,25,3,92,2,239,1,243,2,125,2,45,0,134,0,138,3,149,3,252,255,152,253,68,254,238,255,
217,0,225,0,134,0,180,255,125,254,85,254,205,255,190,0,114,255,40,254,56,0,174,3,84,3,26,0,154,255,2,2,
68,3,59,2,72,0,191,254,251,253,109,253,193,253,37,255,27,255,176,253,229,253,63,255,217,255,215,255,254,254,96,254,
170,255,140,0,1,0,247,0,131,2,47,2,200,1,132,1,24,0,229,255,136,1,44,2,188,1,66,1,148,0,165,0,
16,1,195,255,202,253,110,253,92,254,141,255,225,255,54,254,184,252,122,254,49,1,57,1,225,0,162,2,194,2,213,255,
178,254,232,255,117,255,138,254,93,255,74,255,126,254,30,0,59,1,105,254,94,252,102,254,157,255,20,254,28,254,87,255,
118,254,17,254,158,255,95,255,104,254,254,255,165,0,110,254,78,253,230,253,94,254,35,255,135,255,64,255,188,255,177,255,
149,254,53,255,198,0,132,0,185,255,149,255,156,255,118,0,24,1,35,0,44,0,52,2,195,2,17,1,2,0,56,0,
22,0,94,255,48,255,179,255,147,255,139,254,135,254,48,0,124,1,170,1,250,1,233,1,147,0,176,255,250,255,22,0,
160,0,18,2,123,2,216,1,136,1,123,1,102,2,70,3,211,0,241,253,129,255,165,1,129,0,111,255,92,255,197,254,
206,255,222,1,19,1,192,254,22,254,171,253,87,252,157,252,88,255,100,1,53,1,254,0,246,0,81,255,16,254,59,255,
246,255,37,255,165,255,41,1,21,1,36,0,233,255,185,255,72,255,114,255,236,255,11,0,48,0,33,0,172,255,249,255,
54,0,5,255,35,255,235,0,25,0,159,254,185,0,44,2,125,0,52,0,38,1,198,0,198,0,112,0,104,254,32,254,
13,0,76,0,219,254,211,254,229,0,206,1,160,254,16,251,134,251,103,253,216,254,78,1,188,2,92,2,167,2,250,1,
72,255,248,253,194,253,245,252,174,253,113,255,139,255,0,255,33,255,75,255,42,255,128,254,244,253,153,254,49,255,195,254,
187,254,166,255,248,255,149,254,95,253,38,255,101,1,212,255,141,253,244,254,76,1,181,1,174,1,1,2,252,1,52,1,
203,255,41,255,210,255,111,0,252,0,152,1,212,0,123,255,199,255,180,0,181,0,239,0,108,1,67,0,92,254,46,254,
148,254,41,254,236,254,127,0,63,0,193,255,10,0,129,254,99,253,11,0,48,2,7,1,37,0,97,0,110,0,220,0,
167,0,147,255,218,255,178,0,224,0,248,1,195,2,50,1,189,255,236,255,100,255,165,253,242,252,24,254,254,254,253,253,
8,253,184,253,55,254,81,254,188,255,228,0,33,0,61,255,64,255,148,255,51,0,78,0,238,254,85,253,193,253,109,0,
39,2,167,0,44,255,19,0,27,0,232,254,134,255,221,255,50,254,73,254,247,255,158,255,185,254,139,254,106,253,150,253,
150,0,28,2,228,0,55,0,226,255,72,254,46,253,98,254,163,0,89,1,143,0,26,1,102,2,29,1,26,255,217,255,
49,1,17,1,31,1,82,1,150,0,147,255,147,254,229,253,75,254,223,254,32,255,238,255,69,0,166,254,82,252,118,251,
187,252,151,254,8,255,48,255,180,0,102,1,98,0,80,0,161,0,138,255,182,255,132,1,235,0,46,255,58,0,199,1,
181,1,39,2,53,2,125,0,252,255,168,0,29,0,201,0,225,2,2,2,239,255,118,0,222,0,72,0,67,1,18,1,
230,253,190,252,76,255,103,1,130,1,97,1,194,1,182,1,82,0,176,254,192,254,245,255,122,0,128,0,110,1,208,2,
180,2,129,1,113,1,211,1,230,0,10,0,38,0,218,255,159,255,139,0,40,1,73,0,47,255,82,255,30,0,1,0,
220,255,97,1,106,2,176,0,143,254,65,254,193,254,222,254,135,254,199,254,74,0,40,1,23,0,220,254,122,254,133,254,
60,255,85,0,1,1,247,0,6,0,56,255,212,255,188,0,3,1,107,1,171,1,149,1,39,2,132,2,244,0,104,254,
167,253,245,255,206,2,193,2,110,0,169,254,144,254,29,0,193,1,142,1,225,0,17,1,162,0,24,0,236,0,92,1,
7,1,228,1,127,2,238,0,183,255,164,0,76,1,48,0,85,255,54,0,85,1,29,1,212,255,180,254,24,255,112,0,
34,0,142,254,199,254,78,0,163,0,98,0,247,0,231,1,53,2,114,1,108,0,255,255,200,255,34,0,121,1,241,1,
232,0,47,0,235,255,134,255,116,255,43,255,165,254,30,255,174,255,118,255,34,0,97,1,200,0,65,255,126,255,15,1,
157,1,216,0,61,0,194,255,125,254,205,253,25,255,184,0,75,1,176,1,223,1,237,0,117,255,197,254,61,255,40,0,
93,0,233,255,45,0,54,1,195,1,23,2,202,2,77,2,84,0,164,255,219,0,194,1,72,2,240,2,2,2,174,255,
165,254,86,255,105,0,98,1,177,1,18,1,172,0,240,0,68,0,20,254,183,252,185,253,99,255,101,0,235,0,229,255,
224,253,18,254,245,255,67,0,205,255,66,0,250,255,93,254,73,253,61,253,82,253,140,253,157,254,230,255,251,255,30,255,
249,253,158,252,3,253,199,255,62,1,225,0,239,1,219,2,30,1,133,255,222,255,110,0,112,0,219,255,25,255,209,254,
4,254,39,253,42,254,44,255,180,254,129,255,34,1,80,0,124,254,98,254,58,255,217,255,64,0,147,0,179,0,254,255,
7,255,82,255,224,255,183,254,18,253,181,253,46,0,45,1,114,0,244,0,116,1,168,255,131,255,19,2,151,1,52,255,
67,0,82,1,113,255,11,255,79,0,20,0,242,255,165,0,194,0,118,1,7,2,24,0,124,254,182,255,83,0,231,254,
116,254,235,254,147,254,73,255,49,1,60,0,96,253,13,254,154,0,93,0,253,255,186,1,165,1,30,255,155,253,228,253,
126,255,219,0,213,255,140,255,134,2,51,3,219,255,206,254,100,0,148,0,242,0,231,1,82,0,68,254,10,255,136,0,
57,1,241,1,150,1,222,255,211,254,163,254,77,254,50,254,175,254,254,255,237,1,196,1,171,254,74,253,40,255,171,255,
222,254,57,0,208,0,194,254,208,254,175,0,75,0,76,0,233,1,28,1,210,255,21,1,207,0,127,254,131,254,148,255,
199,255,42,1,178,2,88,2,140,1,139,0,35,255,89,255,195,0,232,0,251,255,89,255,112,255,239,255,249,255,223,255,
136,0,59,1,60,1,164,0,162,255,74,255,135,255,192,254,89,254,9,0,66,1,200,0,114,0,196,255,103,254,192,254,
173,0,116,1,138,0,133,255,136,255,173,255,223,254,254,254,21,1,11,2,173,0,170,255,205,255,253,255,48,0,69,0,
21,0,47,0,143,0,178,0,130,0,68,0,2,0,39,255,107,254,136,255,193,0,190,255,88,255,66,1,4,2,82,1,
233,1,105,2,98,1,185,0,197,0,237,0,176,1,172,1,216,255,159,254,237,254,216,254,187,254,229,255,171,0,0,0,
250,255,243,0,138,0,244,254,90,254,109,254,152,254,246,255,161,1,103,1,9,0,154,255,138,0,234,1,36,2,7,1,
63,0,46,0,65,0,235,0,70,1,92,0,32,0,227,0,72,0,54,255,153,255,7,0,241,255,45,0,171,255,186,254,
229,254,158,254,181,253,45,255,132,1,15,1,20,0,241,0,20,1,60,0,160,0,176,0,148,255,28,0,123,1,146,0,
109,255,50,0,27,0,193,254,67,255,222,0,183,0,103,255,199,254,63,255,213,255,1,255,206,253,151,254,29,0,163,0,
64,1,61,1,134,255,32,255,154,0,70,0,251,254,199,255,164,0,164,255,202,254,27,255,166,255,163,255,170,254,226,253,
130,254,26,255,129,254,216,253,207,253,106,254,187,255,174,0,159,0,108,0,233,255,174,254,90,254,93,255,99,255,48,254,
173,254,29,1,249,1,27,0,196,254,248,255,73,1,140,0,180,255,194,0,220,1,155,1,207,1,105,2,139,1,56,1,
74,3,50,4,67,2,44,1,209,1,90,1,159,255,153,254,208,254,126,255,254,255,167,0,103,1,201,0,38,255,117,254,
90,254,43,254,221,254,197,255,6,0,229,0,171,1,122,0,49,255,141,255,199,255,96,255,226,255,175,0,49,0,47,255,
94,255,140,0,56,1,251,0,147,0,88,0,49,0,236,255,103,255,30,255,48,255,229,254,173,254,139,255,154,0,158,0,
0,0,192,255,51,0,133,0,235,255,127,255,56,0,217,0,146,0,224,255,213,254,239,253,19,254,23,255,106,0,8,1,
222,255,128,254,46,255,164,0,128,0,231,254,171,253,77,254,27,0,250,0,151,0,196,255,238,254,80,255,221,0,8,1,
122,255,105,254,172,254,223,255,183,0,208,255,204,254,38,255,221,254,54,254,170,255,235,0,122,255,176,254,67,0,154,0,
247,254,13,255,23,1,95,1,74,0,93,1,186,2,240,0,96,255,76,1,39,3,195,2,96,2,52,2,245,0,108,255,
210,254,57,255,89,255,95,254,6,254,230,254,253,254,249,254,127,0,48,1,204,255,14,255,165,255,253,255,89,0,23,1,
251,0,226,255,188,255,232,0,170,0,160,254,117,254,81,0,129,0,159,255,100,0,69,1,123,0,175,255,45,0,167,0,
123,255,245,253,124,254,52,255,208,253,106,253,161,255,189,0,156,255,113,254,0,254,170,254,117,255,69,254,2,253,108,254,
197,0,26,2,45,2,181,0,68,255,244,254,72,254,254,253,44,255,96,255,239,254,164,0,253,1,111,0,105,255,175,0,
90,1,134,0,40,0,179,0,0,1,23,1,183,1,226,1,217,0,106,0,48,1,50,1,37,0,196,255,212,0,51,2,
182,1,139,255,91,254,47,254,223,253,209,254,80,0,206,255,11,255,207,255,18,0,90,255,169,254,31,254,205,254,228,255,
236,254,231,253,219,254,228,254,175,253,26,254,69,255,99,255,72,255,112,255,107,255,166,254,15,253,118,252,154,253,133,254,
216,254,206,255,13,1,181,1,103,1,174,0,237,0,112,1,210,0,140,0,193,0,150,255,184,254,172,255,246,255,50,255,
72,255,128,255,210,254,222,253,121,253,142,254,71,0,149,0,41,0,28,0,130,255,221,254,237,254,172,254,218,254,66,0,
158,0,223,255,187,0,56,2,99,1,74,255,1,255,151,0,172,1,175,1,11,2,170,2,135,2,247,1,145,1,158,1,
164,1,22,0,73,254,49,255,138,0,145,255,26,255,232,255,80,255,175,254,76,255,10,255,164,254,127,255,159,255,214,254,
137,254,23,254,244,253,239,254,157,255,197,255,1,0,152,255,76,255,236,255,251,255,152,255,244,255,12,0,166,255,151,255,
74,255,4,255,70,255,182,254,243,253,41,255,170,0,241,255,149,254,229,254,66,0,246,0,172,0,47,0,4,0,132,0,
198,1,185,2,101,2,36,1,244,255,107,0,108,2,145,2,98,0,194,255,163,0,73,0,46,0,31,1,164,0,134,255,
69,0,187,1,253,1,248,0,149,255,29,255,101,255,127,255,218,255,30,0,99,255,5,255,160,255,211,255,14,0,4,1,
79,1,197,0,153,0,233,0,126,1,166,1,168,0,209,255,12,0,4,0,159,255,33,0,6,1,60,1,26,1,102,1,
233,1,117,1,49,0,23,0,24,1,4,1,20,0,13,0,190,0,238,0,39,0,236,254,131,254,66,255,223,255,111,255,
162,254,187,254,99,255,10,255,144,254,245,255,150,1,160,1,229,1,179,2,53,2,147,1,212,1,68,1,70,0,136,0,
78,1,56,2,120,3,108,3,9,2,110,1,60,1,92,0,73,0,11,1,93,0,43,255,41,0,178,1,234,0,169,255,
50,0,164,0,197,255,102,255,218,255,210,255,193,255,113,0,238,0,71,0,58,255,38,255,154,255,229,254,235,253,245,254,
155,0,89,0,132,255,207,255,16,0,192,255,207,255,52,0,107,0,71,0,183,255,67,255,245,254,32,254,207,253,35,255,
87,0,82,0,83,0,248,255,198,254,230,254,117,0,206,0,31,0,3,0,204,255,74,255,129,255,237,255,224,255,27,0,
244,0,141,1,223,0,242,254,91,253,80,253,76,254,149,255,139,0,55,0,75,255,202,255,67,1,148,1,202,0,33,0,
159,255,109,255,91,0,1,2,248,2,60,2,224,255,241,253,114,254,253,255,104,0,93,0,152,0,85,0,199,255,103,255,
197,254,61,254,48,254,234,253,232,253,31,255,49,0,217,255,128,255,59,0,250,0,5,1,1,1,59,1,61,1,226,0,
202,0,111,1,176,1,72,0,211,254,80,255,20,0,172,255,0,0,42,1,202,0,162,255,241,255,215,0,195,0,44,0,
230,255,220,255,115,255,173,254,182,254,185,255,36,0,192,255,71,0,81,1,58,0,198,253,248,253,95,0,163,0,13,255,
31,255,88,0,101,0,201,255,1,0,252,0,59,1,231,255,156,254,175,254,202,254,88,254,49,255,180,1,16,3,97,1,
240,254,125,254,63,255,241,255,162,0,125,0,249,255,223,0,206,1,78,1,183,0,168,255,84,254,127,255,8,1,83,255,
213,253,217,254,253,254,126,254,194,255,251,0,224,0,83,0,74,255,0,255,195,0,245,1,195,0,243,255,1,1,69,1,
204,255,119,255,33,1,6,2,88,1,202,0,67,0,125,255,11,0,87,1,223,0,160,255,1,0,181,0,52,0,84,0,
52,1,24,0,216,253,238,253,157,255,211,255,199,254,115,254,14,255,84,255,190,254,130,254,100,255,22,0,168,255,33,255,
108,255,219,255,109,255,172,254,233,254,196,255,52,0,129,0,119,0,68,255,32,254,201,254,94,0,21,1,7,1,2,1,
132,0,190,255,126,0,182,1,160,0,122,255,201,0,23,1,111,255,235,255,165,1,30,1,73,0,204,0,130,0,189,255,
109,0,98,1,250,0,234,255,28,255,238,254,213,255,178,0,170,255,75,254,228,254,107,255,133,254,243,254,125,0,241,255,
91,254,124,254,221,255,211,0,88,0,240,254,159,254,166,255,137,0,226,0,155,0,8,0,97,0,23,1,191,0,69,0,
152,0,135,0,148,255,36,255,166,255,173,255,154,255,35,1,99,2,51,1,15,0,205,255,111,254,253,253,214,255,222,0,
32,1,234,1,222,0,83,255,184,0,198,1,202,255,133,254,155,255,5,1,15,2,252,1,69,0,225,254,63,255,137,0,
176,1,216,1,242,0,80,0,84,0,234,255,73,255,138,255,116,0,92,1,197,1,207,0,88,255,136,255,120,0,22,0,
108,255,158,255,228,255,81,0,206,0,24,0,214,254,225,254,18,0,20,1,46,1,106,0,37,255,59,254,53,255,67,1,
183,0,21,254,252,253,232,255,72,0,23,0,103,0,136,255,142,254,77,255,250,255,119,255,39,255,84,255,155,255,45,0,
107,0,251,255,231,255,46,0,193,255,65,255,186,255,50,0,199,255,124,255,55,0,54,1,250,0,125,255,142,254,205,254,
237,254,193,254,213,254,208,254,8,255,212,255,60,0,142,0,115,1,79,1,218,255,130,255,121,0,140,0,107,255,149,254,
203,254,147,255,92,0,169,0,219,255,226,254,137,255,195,0,138,0,230,255,34,0,97,0,16,0,134,255,58,255,70,255,
199,254,5,254,154,254,162,255,182,255,53,0,62,1,217,0,102,255,161,254,8,255,47,0,183,0,3,0,143,255,250,255,
91,0,153,0,198,0,124,0,188,255,206,254,104,254,8,255,200,255,28,0,103,0,68,0,223,255,8,0,188,255,147,254,
139,254,214,255,119,0,22,0,186,255,253,255,134,0,226,255,76,254,149,254,249,0,62,2,83,1,23,0,206,255,155,0,
165,1,99,1,38,0,205,255,131,0,238,0,132,0,123,255,134,254,176,254,181,255,79,0,122,0,179,0,148,0,60,0,
52,0,243,255,141,255,241,255,76,0,219,255,226,255,45,0,114,255,52,255,69,0,97,0,154,255,5,0,249,0,65,1,
6,1,26,0,108,255,34,0,167,0,74,0,201,0,117,1,152,0,174,255,33,0,179,0,113,0,232,255,165,255,161,255,
234,255,132,0,132,0,150,255,112,255,84,0,48,0,88,255,181,255,118,0,121,0,158,0,250,0,160,0,245,255,4,0,
135,0,90,0,184,255,235,255,123,0,46,0,159,255,111,255,160,255,37,1,15,3,107,2,57,0,201,255,8,0,227,254,
55,254,22,255,143,255,125,255,72,0,254,0,94,0,146,255,153,255,191,255,217,255,92,0,152,0,220,255,93,255,22,0,
166,0,31,0,218,255,86,0,93,0,3,0,71,0,147,0,243,255,63,255,175,255,171,0,214,0,65,0,120,255,125,254,
78,254,108,255,194,255,203,254,36,255,211,0,23,1,236,255,130,255,59,0,147,0,217,255,115,255,59,0,192,0,124,0,
157,0,238,0,76,0,255,254,164,254,223,255,56,0,48,254,92,253,90,255,52,0,49,255,121,255,160,0,14,1,99,1,
129,1,36,1,224,0,98,0,198,255,192,255,129,255,193,254,214,254,230,255,179,0,154,0,242,255,47,255,141,254,174,254,
194,255,157,0,226,0,28,1,207,0,108,0,180,0,2,0,161,254,56,255,46,0,74,255,248,254,196,255,92,255,239,254,
8,0,182,0,70,0,8,0,203,255,66,255,96,255,209,255,118,255,102,255,165,0,26,1,163,255,97,254,65,254,98,254,
145,254,122,254,174,254,116,0,219,1,222,0,121,255,143,254,114,253,255,253,3,0,62,0,80,255,123,255,185,255,174,255,
127,0,27,1,69,0,72,255,117,255,86,0,223,0,186,0,137,0,11,1,189,1,65,1,190,255,230,254,83,255,23,0,
115,0,93,0,66,0,64,0,190,255,242,254,212,254,97,255,23,0,146,0,126,0,88,0,54,0,151,255,184,255,52,1,
224,1,28,1,73,0,117,255,216,254,14,255,104,255,244,255,215,0,154,0,152,255,163,255,241,255,51,255,168,254,214,255,
167,1,178,1,106,0,34,0,45,0,139,255,204,255,68,0,90,255,49,255,142,0,214,0,232,255,111,255,131,255,176,255,
148,255,151,255,151,0,89,1,149,0,173,255,178,255,232,255,128,255,157,254,195,254,111,0,150,1,73,1,83,0,18,255,
191,254,244,255,151,0,229,255,89,255,36,255,32,255,215,255,186,0,231,0,138,0,127,0,9,1,199,0,80,255,181,254,
146,255,91,0,164,0,201,0,32,1,212,1,185,1,110,0,207,255,66,0,64,0,148,255,91,255,29,0,190,0,59,0,
40,0,69,1,58,1,219,255,105,255,209,255,105,0,73,1,66,1,41,0,184,255,32,0,96,0,31,0,167,255,175,255,
242,255,174,255,196,255,96,0,1,0,19,255,176,254,54,254,9,254,216,254,37,255,253,254,52,0,123,1,228,0,254,255,
173,255,211,254,81,254,205,254,147,254,70,254,156,255,136,0,255,255,69,0,10,1,186,0,84,0,46,0,40,0,21,1,
111,1,237,255,7,255,187,255,73,0,53,0,165,255,39,255,192,255,82,0,200,255,27,255,112,254,76,254,229,255,33,1,
55,0,99,255,164,255,255,255,211,0,120,1,166,0,173,255,182,255,245,255,251,255,198,255,83,255,67,255,196,255,222,255,
4,255,86,254,247,254,245,255,57,0,118,0,213,0,111,0,145,255,1,255,228,254,49,255,86,255,17,255,113,255,193,0,
129,1,169,0,98,255,60,255,87,255,180,254,47,255,186,0,61,0,251,254,52,0,119,1,38,0,209,254,63,255,21,0,
78,0,19,0,75,0,8,1,244,0,66,0,37,0,20,0,8,0,220,0,92,1,153,0,64,0,246,0,28,1,21,0,
39,255,100,255,93,0,240,0,116,0,98,255,68,255,124,0,13,1,95,0,113,0,64,1,30,1,247,0,245,1,93,2,
21,1,186,255,179,255,75,0,252,255,0,255,33,255,248,255,103,255,102,254,48,255,127,0,196,0,15,1,67,1,88,0,
166,255,1,0,238,255,44,255,184,254,157,254,198,254,8,255,207,254,128,254,201,254,74,255,142,255,162,255,235,255,131,0,
138,0,252,255,13,0,37,0,59,255,153,254,252,254,169,255,156,0,35,1,120,0,19,0,127,0,108,0,51,0,33,0,
77,255,215,254,129,255,175,255,212,255,51,1,177,1,87,0,152,255,31,0,146,0,216,0,242,0,124,0,20,0,35,0,
63,0,92,0,138,0,157,0,115,0,235,255,182,255,120,0,131,0,3,255,216,254,214,0,126,1,247,255,249,254,88,255,
82,0,38,1,182,0,244,255,186,0,104,1,96,0,219,255,182,0,229,0,168,0,111,1,6,2,21,1,215,255,228,255,
181,0,152,0,159,255,116,255,240,255,214,255,130,255,55,255,169,254,244,254,26,0,21,0,29,255,202,254,230,254,156,255,
17,1,65,1,27,0,10,0,177,0,112,0,254,255,255,255,26,0,34,0,160,255,21,255,139,255,17,0,252,255,98,0,
212,0,94,0,15,0,23,0,108,255,3,255,211,255,29,0,8,255,236,254,126,0,224,0,149,255,159,255,224,0,223,0,
98,0,71,0,63,255,122,254,152,255,81,0,133,255,168,255,217,0,218,0,38,0,111,0,228,0,97,0,1,0,110,0,
123,0,229,255,136,255,85,255,81,255,247,255,116,0,211,255,228,254,219,254,150,255,209,255,252,254,92,254,230,254,219,255,
125,0,94,0,81,255,183,254,147,255,58,0,121,255,181,254,202,254,232,254,9,255,168,255,231,255,96,255,57,255,89,255,
41,255,240,255,4,1,157,255,188,253,56,255,156,1,63,1,208,255,148,255,25,0,188,0,46,1,21,1,135,0,242,255,
228,255,89,0,166,0,133,0,230,255,45,255,136,255,112,0,36,0,101,255,191,255,113,0,158,0,107,0,197,255,76,255,
194,255,48,0,203,255,105,255,85,255,32,255,86,255,227,255,147,255,45,255,182,255,94,255,69,254,86,255,222,0,186,255,
144,254,76,255,161,255,218,255,7,1,52,1,117,0,72,0,160,255,181,254,75,255,62,0,236,255,41,255,239,254,115,255,
125,0,1,1,88,0,114,255,97,255,143,255,76,255,163,255,202,0,33,1,187,0,163,0,58,0,173,255,218,255,154,255,
177,254,220,254,8,0,214,0,215,0,72,0,2,0,66,0,59,0,55,0,120,0,26,0,170,255,33,0,181,0,218,0,
107,0,13,255,43,254,45,255,149,0,223,0,155,0,138,0,183,0,206,0,122,0,250,255,208,255,253,255,252,255,198,255,
245,255,50,0,229,255,6,0,204,0,204,0,46,0,215,255,134,255,164,255,30,0,164,255,60,255,53,0,200,0,95,0,
105,0,140,0,101,0,138,0,55,0,129,255,207,255,38,0,99,255,102,255,208,0,19,1,143,255,202,254,188,255,181,0,
195,0,150,0,155,0,126,0,1,0,155,255,4,0,206,0,205,0,253,255,112,255,217,255,144,0,102,0,248,255,108,0,
127,0,129,255,108,255,62,0,24,0,197,255,110,0,7,1,247,0,189,0,171,0,208,0,111,0,57,255,196,254,227,255,
33,1,59,1,114,0,155,255,73,255,163,255,44,0,183,255,99,254,102,254,46,0,93,1,33,1,164,0,109,0,114,0,
63,0,143,255,68,255,150,255,209,255,93,0,31,1,248,0,85,0,55,0,125,0,158,0,12,0,102,255,253,255,195,0,
144,0,183,0,20,1,72,0,146,255,238,255,26,0,191,255,119,255,127,255,217,255,186,255,52,255,192,255,209,0,209,0,
82,0,29,0,19,0,125,0,233,0,168,0,98,0,130,0,165,0,189,0,180,0,182,0,36,1,39,1,58,0,208,255,
138,0,246,0,78,0,160,255,229,255,79,0,176,255,248,254,130,255,35,0,190,255,183,255,145,0,164,0,181,255,56,255,
83,255,87,255,165,255,126,0,201,0,249,255,138,255,158,0,185,1,31,1,159,255,16,255,199,255,139,0,36,0,70,255,
146,255,73,0,196,255,54,255,29,0,45,1,38,1,126,0,228,255,211,255,240,255,132,255,72,255,161,255,135,255,157,255,
8,1,246,1,42,1,158,0,11,1,214,0,11,0,4,0,113,0,149,0,1,1,147,1,62,1,195,0,45,1,74,1,
182,0,231,0,90,1,142,0,88,255,32,255,191,255,4,0,67,255,203,254,177,255,128,0,150,0,243,0,231,0,77,0,
199,0,111,1,145,0,175,255,236,255,13,0,146,255,34,255,146,255,250,0,170,1,213,0,34,0,15,0,158,255,67,255,
191,255,105,0,96,0,178,255,134,255,65,0,115,0,247,255,99,0,67,1,243,0,185,255,206,254,15,255,47,0,65,0,
250,254,170,254,176,255,44,0,13,0,150,0,130,1,111,1,68,0,221,255,181,0,157,0,106,255,102,255,58,0,73,0,
50,0,85,0,34,0,43,0,93,0,4,0,52,0,65,1,40,1,159,255,234,254,224,255,224,0,140,0,109,255,190,254,
234,254,215,255,217,0,227,0,102,0,142,0,201,0,84,0,204,255,114,255,103,255,49,0,229,0,80,0,86,255,232,254,
163,254,171,254,135,255,164,0,222,0,21,0,75,255,253,254,201,254,236,254,193,255,115,0,108,0,22,0,174,255,109,255,
164,255,9,0,61,0,3,0,70,255,229,254,140,255,59,0,253,255,67,255,6,255,170,255,33,0,145,255,69,255,210,255,
215,255,181,255,111,0,136,0,175,255,176,255,29,0,209,255,181,255,208,255,84,255,63,255,247,255,54,0,10,0,80,0,
112,0,215,255,119,255,255,255,64,0,82,255,221,254,47,0,90,1,203,0,4,0,14,0,5,0,242,255,121,0,204,0,
71,0,249,255,134,0,202,0,55,0,208,255,236,255,251,255,16,0,31,0,194,255,145,255,1,0,100,0,118,0,51,0,
89,255,183,254,10,255,138,255,224,255,134,0,33,1,52,1,200,0,47,0,54,0,175,0,94,0,224,255,97,0,117,0,
34,255,66,254,229,254,248,255,147,0,161,0,75,0,226,255,185,255,28,0,224,0,75,1,251,0,37,0,71,255,44,255,
5,0,217,0,197,0,23,0,192,255,246,255,236,255,124,255,103,255,96,255,241,254,47,255,89,0,232,0,123,0,237,255,
175,255,253,255,127,0,103,0,29,0,40,0,235,255,189,255,107,0,166,0,104,255,113,254,7,255,216,255,226,255,17,0,
185,0,185,0,22,0,72,0,4,1,174,0,204,255,175,255,185,255,161,255,72,0,213,0,47,0,4,0,80,1,228,1,
253,0,135,0,192,0,164,0,215,0,122,1,37,1,16,0,174,255,252,255,89,0,129,0,71,0,49,0,128,0,52,0,
71,255,209,254,199,254,7,255,192,255,180,255,171,254,235,254,117,0,201,0,49,0,108,0,137,0,130,255,192,254,57,255,
231,255,33,0,99,0,178,0,109,0,212,255,190,255,247,255,196,255,116,255,211,255,147,0,165,0,19,0,253,255,62,0,
202,255,60,255,134,255,226,255,255,255,112,0,121,0,211,255,231,255,142,0,150,0,183,0,56,1,165,0,144,255,233,255,
243,0,249,0,135,0,171,0,22,1,95,1,131,1,70,1,179,0,113,0,202,0,36,1,228,0,58,0,184,255,142,255,
184,255,16,0,3,0,151,255,179,255,6,0,125,255,42,255,239,255,224,255,173,254,151,254,64,255,16,255,27,255,164,255,
94,255,55,255,225,255,188,255,240,254,209,254,200,254,171,254,250,254,213,254,142,254,124,255,68,0,162,255,97,255,38,0,
109,0,58,0,84,0,63,0,191,255,109,255,127,255,208,255,57,0,130,0,161,0,113,0,169,255,243,254,87,255,9,0,
175,255,88,255,81,0,24,1,114,0,237,255,109,0,202,0,175,0,162,0,93,0,213,255,216,255,126,0,183,0,51,0,
14,0,131,0,101,0,11,0,171,0,7,1,252,255,93,255,248,255,80,0,65,0,45,0,107,255,184,254,66,255,21,0,
119,0,209,0,133,0,109,255,3,255,81,255,63,255,99,255,11,0,251,255,171,255,142,0,55,1,52,0,108,255,208,255,
126,255,178,254,21,255,135,255,1,255,232,254,114,255,232,255,200,0,82,1,63,0,76,255,209,255,189,255,164,254,246,254,
92,0,48,0,15,255,119,255,188,0,209,0,86,0,111,0,92,0,216,255,166,255,162,255,208,255,137,0,188,0,241,255,
160,255,17,0,78,0,118,0,119,0,235,255,186,255,75,0,141,0,72,0,13,0,254,255,54,0,93,0,14,0,7,0,
86,0,197,255,236,254,121,255,142,0,92,0,139,255,175,255,118,0,165,0,95,0,107,0,69,0,129,255,121,255,165,0,
17,1,4,0,125,255,92,0,2,1,136,0,246,255,4,0,55,0,35,0,235,255,197,255,204,255,233,255,220,255,181,255,
217,255,63,0,55,0,144,255,85,255,8,0,99,0,229,255,213,255,68,0,0,0,76,255,22,255,142,255,138,0,230,0,
227,255,115,255,109,0,111,0,123,255,242,255,189,0,235,255,15,255,102,255,250,255,93,0,64,0,125,255,114,255,82,0,
126,0,30,0,57,0,38,0,180,255,172,255,169,255,90,255,116,255,235,255,47,0,53,0,202,255,59,255,122,255,14,0,
202,255,47,255,25,255,63,255,110,255,155,255,127,255,109,255,175,255,171,255,91,255,115,255,188,255,199,255,253,255,67,0,
2,0,193,255,14,0,58,0,10,0,45,0,115,0,81,0,81,0,164,0,128,0,59,0,204,0,78,1,152,0,221,255,
130,0,109,1,36,1,92,0,81,0,139,0,46,0,193,255,242,255,95,0,153,0,142,0,17,0,151,255,221,255,84,0,
13,0,132,255,137,255,229,255,32,0,36,0,19,0,252,255,186,255,124,255,186,255,6,0,208,255,215,255,116,0,156,0,
61,0,70,0,68,0,180,255,122,255,152,255,63,255,66,255,72,0,225,0,116,0,39,0,249,255,90,255,35,255,172,255,
246,255,217,255,217,255,224,255,21,0,167,0,185,0,244,255,122,255,188,255,234,255,160,255,53,255,8,255,82,255,246,255,
129,0,160,0,80,0,243,255,17,0,127,0,113,0,190,255,61,255,140,255,62,0,168,0,214,0,233,0,139,0,216,255,
123,255,146,255,211,255,12,0,241,255,160,255,158,255,209,255,242,255,17,0,226,255,159,255,70,0,61,1,14,1,101,0,
111,0,127,0,251,255,149,255,204,255,74,0,68,0,88,255,119,254,198,254,233,255,162,0,142,0,53,0,231,255,112,255,
10,255,10,255,18,255,255,254,60,255,127,255,104,255,101,255,151,255,185,255,220,255,209,255,129,255,142,255,30,0,135,0,
130,0,93,0,128,0,218,0,223,0,188,0,14,1,103,1,83,1,59,1,241,0,28,0,145,255,215,255,54,0,82,0,
126,0,160,0,69,0,165,255,132,255,246,255,93,0,119,0,63,0,200,255,119,255,67,255,39,255,192,255,137,0,102,0,
62,0,197,0,169,0,220,255,139,255,133,255,166,255,32,0,24,0,171,255,245,255,87,0,19,0,6,0,115,0,181,0,
153,0,29,0,166,255,207,255,67,0,129,0,152,0,116,0,39,0,18,0,63,0,129,0,141,0,83,0,123,0,225,0,
70,0,63,255,117,255,63,0,54,0,230,255,20,0,68,0,2,0,155,255,149,255,252,255,39,0,167,255,53,255,187,255,
147,0,114,0,240,255,83,0,198,0,127,0,166,0,24,1,82,0,48,255,54,255,136,255,87,255,100,255,239,255,103,0,
114,0,45,0,5,0,255,255,225,255,238,255,0,0,203,255,250,255,91,0,215,255,133,255,158,0,96,1,158,0,231,255,
11,0,71,0,26,0,158,255,136,255,33,0,97,0,219,255,128,255,193,255,45,0,30,0,149,255,204,255,199,0,173,0,
217,255,7,0,73,0,222,255,17,0,73,0,98,255,216,254,90,255,165,255,196,255,4,0,208,255,176,255,59,0,104,0,
211,255,126,255,158,255,164,255,218,255,153,0,247,0,103,0,251,255,23,0,209,255,113,255,221,255,107,0,82,0,232,255,
188,255,32,0,119,0,205,255,19,255,151,255,89,0,86,0,54,0,34,0,194,255,125,255,139,255,170,255,209,255,217,255,
130,255,60,255,187,255,84,0,188,255,210,254,64,255,236,255,128,255,81,255,167,255,18,255,102,254,236,254,152,255,241,255,
150,0,219,0,80,0,5,0,81,0,101,0,15,0,227,255,1,0,46,0,141,0,164,0,174,255,0,255,219,255,86,0,
168,255,255,255,249,0,124,0,182,255,15,0,112,0,124,0,150,0,73,0,223,255,17,0,110,0,56,0,138,255,66,255,
198,255,220,255,8,255,235,254,221,255,84,0,252,255,119,255,39,255,121,255,239,255,177,255,128,255,228,255,242,255,179,255,
202,255,174,255,76,255,108,255,189,255,135,255,42,255,34,255,118,255,5,0,52,0,140,255,239,254,91,255,26,0,1,0,
126,255,142,255,217,255,188,255,147,255,169,255,158,255,139,255,252,255,212,0,61,1,163,0,147,255,70,255,207,255,6,0,
165,255,135,255,245,255,93,0,72,0,218,255,174,255,232,255,244,255,209,255,22,0,115,0,29,0,64,255,207,254,75,255,
21,0,68,0,18,0,51,0,104,0,84,0,53,0,8,0,164,255,111,255,201,255,71,0,55,0,199,255,190,255,255,255,
252,255,225,255,207,255,186,255,5,0,87,0,235,255,87,255,60,255,76,255,162,255,49,0,83,0,46,0,230,255,129,255,
3,0,251,0,113,0,87,255,146,255,237,255,149,255,202,255,79,0,57,0,31,0,95,0,154,0,118,0,156,255,203,254,
50,255,0,0,209,255,52,255,60,255,199,255,38,0,34,0,246,255,159,255,35,255,51,255,225,255,15,0,139,255,98,255,
215,255,35,0,219,255,124,255,169,255,16,0,245,255,162,255,180,255,248,255,38,0,65,0,26,0,207,255,225,255,61,0,
104,0,121,0,151,0,91,0,214,255,200,255,19,0,249,255,224,255,68,0,62,0,122,255,62,255,229,255,81,0,36,0,
238,255,224,255,222,255,176,255,43,255,226,254,117,255,91,0,196,0,157,0,29,0,196,255,203,255,102,255,202,254,116,255,
180,0,181,0,68,0,110,0,74,0,211,255,186,255,165,255,229,255,195,0,215,0,38,0,100,0,6,1,196,0,130,0,
224,0,239,0,135,0,137,0,255,0,0,1,117,0,97,0,218,0,238,0,147,0,83,0,60,0,46,0,217,255,67,255,
36,255,95,255,115,255,240,255,115,0,177,255,177,254,236,254,95,255,75,255,97,255,162,255,207,255,10,0,3,0,211,255,
242,255,231,255,120,255,108,255,195,255,221,255,234,255,41,0,58,0,31,0,68,0,118,0,64,0,245,255,33,0,171,0,
57,1,93,1,184,0,224,255,189,255,253,255,35,0,142,0,215,0,48,0,146,255,3,0,111,0,30,0,249,255,50,0,
91,0,216,0,78,1,211,0,122,0,34,1,47,1,78,0,80,0,214,0,118,0,16,0,62,0,26,0,251,255,140,0,
202,0,59,0,246,255,75,0,63,0,157,255,92,255,188,255,234,255,221,255,67,0,182,0,145,0,54,0,235,255,119,255,
43,255,135,255,73,0,163,0,63,0,193,255,179,255,171,255,139,255,197,255,36,0,73,0,82,0,20,0,175,255,221,255,
27,0,96,255,176,254,65,255,251,255,26,0,120,0,211,0,99,0,3,0,32,0,8,0,55,0,222,0,167,0,225,255,
21,0,167,0,152,0,109,0,101,0,124,0,234,0,8,1,139,0,73,0,67,0,255,255,241,255,58,0,113,0,144,0,
143,0,123,0,135,0,120,0,90,0,138,0,134,0,13,0,212,255,230,255,207,255,233,255,94,0,189,0,224,0,201,0,
108,0,4,0,185,255,144,255,156,255,186,255,186,255,195,255,250,255,57,0,67,0,24,0,222,255,177,255,183,255,244,255,
27,0,33,0,74,0,82,0,241,255,179,255,231,255,222,255,46,255,159,254,43,255,109,0,243,0,92,0,206,255,20,0,
151,0,130,0,16,0,25,0,103,0,48,0,252,255,111,0,152,0,15,0,220,255,35,0,69,0,127,0,208,0,118,0,
175,255,131,255,227,255,17,0,61,0,201,0,11,1,174,0,121,0,130,0,20,0,151,255,206,255,57,0,49,0,248,255,
13,0,121,0,190,0,126,0,41,0,21,0,212,255,145,255,247,255,101,0,239,255,77,255,63,255,53,255,53,255,187,255,
228,255,51,255,230,254,75,255,132,255,195,255,53,0,47,0,248,255,43,0,66,0,2,0,233,255,231,255,217,255,11,0,
99,0,94,0,7,0,245,255,22,0,223,255,214,255,125,0,174,0,244,255,140,255,169,255,194,255,32,0,70,0,124,255,
204,254,7,255,166,255,60,0,66,0,147,255,86,255,207,255,15,0,61,0,165,0,186,0,182,0,1,1,243,0,52,0,
120,255,123,255,247,255,231,255,131,255,251,255,165,0,72,0,227,255,82,0,144,0,49,0,214,255,193,255,253,255,59,0,
227,255,85,255,45,255,32,255,44,255,176,255,17,0,177,255,46,255,65,255,196,255,50,0,41,0,208,255,207,255,58,0,
104,0,38,0,204,255,129,255,125,255,252,255,138,0,129,0,19,0,217,255,252,255,49,0,22,0,166,255,104,255,179,255,
20,0,252,255,157,255,107,255,107,255,157,255,236,255,228,255,148,255,138,255,153,255,109,255,108,255,156,255,142,255,126,255,
214,255,79,0,50,0,99,255,0,255,148,255,233,255,144,255,118,255,104,255,27,255,64,255,66,255,138,254,105,254,8,255,
42,255,66,255,202,255,221,255,177,255,249,255,37,0,0,0,254,255,3,0,224,255,190,255,212,255,50,0,91,0,238,255,
117,255,111,255,197,255,39,0,13,0,169,255,217,255,36,0,170,255,68,255,187,255,47,0,245,255,139,255,141,255,235,255,
240,255,136,255,154,255,36,0,20,0,132,255,125,255,215,255,195,255,113,255,89,255,82,255,106,255,238,255,89,0,45,0,
230,255,194,255,134,255,144,255,228,255,178,255,69,255,177,255,112,0,59,0,140,255,166,255,71,0,95,0,19,0,14,0,
16,0,229,255,34,0,193,0,226,0,104,0,27,0,68,0,118,0,114,0,98,0,84,0,76,0,104,0,97,0,236,255,
145,255,193,255,251,255,243,255,248,255,253,255,212,255,190,255,207,255,220,255,245,255,31,0,18,0,209,255,198,255,25,0,
134,0,181,0,110,0,4,0,19,0,80,0,26,0,245,255,47,0,7,0,196,255,90,0,8,1,217,0,130,0,144,0,
130,0,37,0,210,255,230,255,88,0,150,0,96,0,42,0,38,0,11,0,222,255,222,255,251,255,234,255,185,255,149,255,
89,255,71,255,184,255,215,255,106,255,245,255,14,1,118,0,8,255,48,255,79,0,196,0,176,0,129,0,62,0,0,0,
205,255,236,255,80,0,50,0,183,255,198,255,29,0,36,0,39,0,71,0,88,0,83,0,20,0,211,255,2,0,44,0,
227,255,210,255,25,0,5,0,211,255,32,0,147,0,189,0,133,0,203,255,24,255,66,255,231,255,36,0,0,0,245,255,
24,0,18,0,201,255,239,255,155,0,148,0,202,255,152,255,218,255,191,255,210,255,29,0,248,255,224,255,40,0,49,0,
42,0,105,0,108,0,46,0,30,0,31,0,25,0,10,0,232,255,33,0,187,0,226,0,109,0,244,255,171,255,155,255,
201,255,237,255,243,255,240,255,191,255,183,255,53,0,111,0,238,255,167,255,229,255,242,255,6,0,101,0,81,0,225,255,
219,255,230,255,193,255,249,255,39,0,182,255,109,255,200,255,33,0,22,0,232,255,241,255,59,0,106,0,99,0,63,0,
224,255,153,255,212,255,15,0,3,0,15,0,255,255,191,255,215,255,11,0,219,255,172,255,217,255,4,0,167,255,24,255,
115,255,118,0,156,0,42,0,78,0,109,0,52,0,90,0,65,0,121,255,83,255,2,0,81,0,66,0,97,0,100,0,
18,0,201,255,211,255,250,255,249,255,232,255,231,255,248,255,73,0,125,0,8,0,110,255,76,255,107,255,182,255,20,0,
36,0,59,0,157,0,173,0,104,0,55,0,229,255,141,255,121,255,59,255,249,254,111,255,60,0,175,0,228,0,220,0,
133,0,55,0,243,255,147,255,114,255,150,255,178,255,242,255,81,0,99,0,92,0,117,0,59,0,233,255,33,0,88,0,
34,0,72,0,192,0,150,0,15,0,5,0,66,0,100,0,137,0,133,0,35,0,241,255,93,0,144,0,245,255,163,255,
38,0,100,0,58,0,142,0,231,0,141,0,235,255,102,255,91,255,14,0,138,0,60,0,22,0,69,0,41,0,13,0,
27,0,222,255,143,255,153,255,178,255,136,255,77,255,111,255,228,255,22,0,248,255,251,255,23,0,44,0,64,0,55,0,
45,0,50,0,244,255,171,255,192,255,222,255,215,255,244,255,65,0,199,0,18,1,97,0,139,255,167,255,224,255,190,255,
38,0,197,0,198,0,163,0,158,0,121,0,103,0,44,0,166,255,167,255,243,255,138,255,82,255,47,0,198,0,108,0,
41,0,5,0,163,255,212,255,127,0,94,0,203,255,13,0,189,0,194,0,74,0,21,0,44,0,22,0,210,255,199,255,
231,255,213,255,192,255,241,255,36,0,27,0,254,255,217,255,137,255,63,255,111,255,237,255,28,0,23,0,55,0,30,0,
207,255,228,255,30,0,13,0,36,0,65,0,197,255,97,255,179,255,201,255,82,255,62,255,116,255,81,255,129,255,100,0,
206,0,60,0,158,255,141,255,206,255,2,0,235,255,201,255,251,255,47,0,53,0,86,0,104,0,43,0,201,255,101,255,
115,255,35,0,62,0,84,255,247,254,143,255,251,255,28,0,51,0,252,255,217,255,28,0,74,0,68,0,51,0,2,0,
248,255,70,0,119,0,47,0,169,255,126,255,246,255,113,0,97,0,39,0,16,0,23,0,62,0,37,0,163,255,109,255,
185,255,232,255,206,255,161,255,126,255,174,255,20,0,22,0,229,255,17,0,35,0,201,255,177,255,230,255,193,255,154,255,
201,255,191,255,174,255,228,255,158,255,83,255,55,0,11,1,106,0,168,255,193,255,6,0,29,0,225,255,143,255,8,0,
195,0,159,0,107,0,183,0,133,0,11,0,62,0,117,0,4,0,174,255,230,255,14,0,227,255,218,255,251,255,234,255,
230,255,44,0,79,0,47,0,251,255,167,255,149,255,3,0,57,0,25,0,69,0,123,0,82,0,43,0,28,0,1,0,
254,255,8,0,13,0,30,0,10,0,192,255,135,255,123,255,143,255,180,255,216,255,231,255,172,255,92,255,153,255,42,0,
99,0,110,0,77,0,171,255,58,255,153,255,7,0,11,0,30,0,69,0,28,0,211,255,251,255,98,0,27,0,73,255,
52,255,1,0,151,0,149,0,123,0,147,0,181,0,164,0,139,0,169,0,170,0,89,0,16,0,9,0,46,0,67,0,
248,255,165,255,235,255,125,0,149,0,65,0,39,0,102,0,121,0,49,0,249,255,206,255,124,255,106,255,176,255,202,255,
193,255,199,255,185,255,208,255,17,0,254,255,194,255,233,255,54,0,38,0,196,255,141,255,202,255,32,0,70,0,90,0,
24,0,142,255,131,255,225,255,240,255,217,255,207,255,183,255,227,255,21,0,178,255,102,255,226,255,117,0,136,0,71,0,
208,255,107,255,131,255,235,255,34,0,39,0,83,0,124,0,55,0,212,255,225,255,34,0,64,0,61,0,240,255,132,255,
136,255,244,255,51,0,248,255,134,255,124,255,198,255,184,255,195,255,107,0,157,0,0,0,222,255,65,0,49,0,250,255,
8,0,26,0,60,0,32,0,123,255,81,255,244,255,11,0,150,255,194,255,18,0,177,255,99,255,185,255,34,0,48,0,
9,0,9,0,66,0,77,0,26,0,9,0,27,0,61,0,93,0,20,0,144,255,123,255,147,255,181,255,110,0,249,0,
112,0,19,0,145,0,142,0,222,255,188,255,28,0,65,0,38,0,239,255,209,255,33,0,136,0,107,0,18,0,34,0,
90,0,30,0,177,255,164,255,198,255,222,255,7,0,17,0,12,0,111,0,217,0,176,0,84,0,6,0,138,255,102,255,
0,0,126,0,90,0,66,0,144,0,192,0,137,0,48,0,236,255,204,255,220,255,7,0,47,0,91,0,88,0,203,255,
45,255,101,255,9,0,220,255,39,255,73,255,61,0,208,0,167,0,74,0,21,0,17,0,16,0,229,255,191,255,198,255,
212,255,193,255,168,255,227,255,118,0,155,0,54,0,83,0,199,0,102,0,190,255,229,255,52,0,3,0,209,255,213,255,
221,255,235,255,239,255,215,255,202,255,225,255,249,255,230,255,224,255,24,0,250,255,114,255,133,255,32,0,65,0,27,0,
21,0,204,255,152,255,246,255,82,0,70,0,20,0,227,255,221,255,245,255,221,255,177,255,172,255,195,255,241,255,9,0,
252,255,36,0,56,0,202,255,154,255,245,255,240,255,171,255,234,255,44,0,1,0,10,0,73,0,44,0,239,255,209,255,
141,255,132,255,18,0,81,0,244,255,5,0,104,0,45,0,206,255,198,255,189,255,1,0,86,0,205,255,103,255,54,0,
163,0,231,255,141,255,232,255,7,0,243,255,3,0,36,0,44,0,249,255,230,255,54,0,71,0,243,255,223,255,246,255,
213,255,192,255,222,255,15,0,69,0,59,0,219,255,175,255,13,0,102,0,44,0,200,255,231,255,63,0,63,0,52,0,
100,0,87,0,5,0,18,0,101,0,76,0,242,255,241,255,254,255,205,255,0,0,140,0,137,0,9,0,166,255,121,255,
177,255,1,0,180,255,137,255,41,0,94,0,227,255,241,255,51,0,232,255,218,255,52,0,38,0,240,255,19,0,46,0,
26,0,49,0,67,0,225,255,147,255,9,0,139,0,78,0,22,0,67,0,1,0,137,255,184,255,19,0,4,0,244,255,
28,0,56,0,26,0,234,255,250,255,33,0,6,0,226,255,234,255,248,255,20,0,23,0,206,255,204,255,65,0,65,0,
160,255,85,255,171,255,255,255,254,255,225,255,213,255,204,255,208,255,231,255,253,255,55,0,132,0,116,0,34,0,1,0,
239,255,209,255,205,255,186,255,202,255,64,0,104,0,255,255,206,255,213,255,161,255,150,255,211,255,227,255,193,255,165,255,
177,255,238,255,15,0,8,0,39,0,40,0,252,255,65,0,166,0,106,0,17,0,14,0,237,255,217,255,46,0,73,0,
241,255,215,255,14,0,28,0,247,255,201,255,216,255,102,0,209,0,88,0,172,255,209,255,66,0,19,0,175,255,219,255,
30,0,216,255,179,255,49,0,86,0,166,255,39,255,60,255,65,255,76,255,180,255,9,0,1,0,248,255,27,0,45,0,
236,255,131,255,119,255,188,255,226,255,249,255,18,0,232,255,177,255,219,255,58,0,83,0,14,0,220,255,5,0,39,0,
47,0,111,0,105,0,219,255,198,255,58,0,38,0,196,255,188,255,177,255,175,255,5,0,38,0,245,255,245,255,16,0,
54,0,124,0,90,0,219,255,188,255,214,255,210,255,254,255,29,0,226,255,208,255,226,255,171,255,137,255,157,255,151,255,
207,255,58,0,48,0,251,255,12,0,233,255,159,255,182,255,238,255,5,0,32,0,65,0,122,0,160,0,76,0,234,255,
255,255,7,0,216,255,229,255,241,255,215,255,240,255,238,255,160,255,182,255,58,0,88,0,249,255,216,255,46,0,100,0,
68,0,84,0,125,0,40,0,215,255,20,0,14,0,134,255,127,255,23,0,114,0,106,0,79,0,56,0,57,0,87,0,
69,0,222,255,143,255,188,255,35,0,97,0,85,0,251,255,187,255,11,0,123,0,91,0,240,255,183,255,188,255,245,255,
45,0,32,0,233,255,208,255,243,255,68,0,121,0,87,0,5,0,214,255,249,255,53,0,65,0,54,0,9,0,160,255,
129,255,207,255,221,255,209,255,12,0,236,255,136,255,196,255,30,0,222,255,180,255,228,255,223,255,206,255,252,255,34,0,
42,0,33,0,218,255,144,255,204,255,85,0,108,0,7,0,189,255,180,255,179,255,180,255,191,255,215,255,243,255,244,255,
12,0,86,0,99,0,47,0,53,0,62,0,22,0,15,0,254,255,189,255,208,255,9,0,223,255,177,255,218,255,8,0,
22,0,37,0,80,0,101,0,18,0,223,255,73,0,117,0,1,0,217,255,3,0,243,255,20,0,115,0,87,0,221,255,
188,255,14,0,86,0,76,0,73,0,101,0,29,0,164,255,180,255,19,0,60,0,64,0,29,0,224,255,234,255,57,0,
119,0,121,0,69,0,15,0,244,255,239,255,29,0,65,0,250,255,187,255,238,255,25,0,11,0,5,0,243,255,212,255,
207,255,224,255,23,0,53,0,211,255,126,255,223,255,95,0,78,0,1,0,253,255,47,0,32,0,191,255,145,255,207,255,
34,0,78,0,64,0,4,0,231,255,7,0,33,0,15,0,213,255,173,255,194,255,204,255,183,255,223,255,31,0,20,0,
252,255,22,0,58,0,82,0,63,0,238,255,184,255,223,255,22,0,6,0,179,255,125,255,180,255,21,0,49,0,16,0,
239,255,236,255,3,0,26,0,27,0,24,0,9,0,223,255,222,255,35,0,67,0,252,255,171,255,153,255,187,255,10,0,
68,0,29,0,224,255,241,255,33,0,57,0,37,0,217,255,181,255,25,0,133,0,112,0,32,0,247,255,248,255,19,0,
56,0,59,0,1,0,203,255,229,255,25,0,49,0,74,0,45,0,205,255,212,255,52,0,51,0,15,0,20,0,210,255,
149,255,211,255,255,255,255,255,53,0,42,0,206,255,232,255,78,0,61,0,211,255,145,255,162,255,231,255,44,0,105,0,
139,0,104,0,60,0,54,0,27,0,246,255,244,255,220,255,189,255,228,255,33,0,56,0,20,0,151,255,46,255,108,255,
237,255,6,0,221,255,206,255,234,255,5,0,236,255,201,255,223,255,248,255,5,0,61,0,89,0,28,0,238,255,230,255,
178,255,149,255,226,255,63,0,76,0,29,0,252,255,23,0,51,0,7,0,204,255,219,255,18,0,41,0,43,0,63,0,
81,0,56,0,9,0,218,255,159,255,153,255,248,255,41,0,224,255,195,255,3,0,23,0,15,0,55,0,52,0,228,255,
201,255,22,0,78,0,33,0,235,255,5,0,29,0,254,255,1,0,28,0,254,255,237,255,28,0,34,0,229,255,186,255,
179,255,188,255,208,255,218,255,222,255,247,255,21,0,28,0,20,0,20,0,37,0,30,0,223,255,174,255,214,255,30,0,
36,0,9,0,7,0,228,255,160,255,176,255,241,255,226,255,203,255,17,0,69,0,22,0,223,255,213,255,227,255,5,0,
39,0,31,0,247,255,247,255,35,0,30,0,3,0,51,0,67,0,237,255,226,255,31,0,241,255,191,255,18,0,95,0,
82,0,42,0,6,0,12,0,29,0,233,255,198,255,246,255,3,0,231,255,244,255,241,255,212,255,219,255,215,255,195,255,
228,255,11,0,246,255,225,255,247,255,2,0,215,255,178,255,196,255,208,255,208,255,30,0,109,0,61,0,247,255,8,0,
32,0,23,0,25,0,22,0,22,0,45,0,62,0,63,0,62,0,36,0,239,255,201,255,206,255,252,255,43,0,57,0,
54,0,39,0,243,255,193,255,209,255,248,255,228,255,193,255,223,255,3,0,235,255,218,255,222,255,190,255,184,255,237,255,
251,255,233,255,254,255,245,255,200,255,216,255,238,255,201,255,202,255,254,255,4,0,238,255,255,255,31,0,31,0,0,0,
230,255,230,255,231,255,234,255,18,0,56,0,41,0,23,0,28,0,9,0,231,255,234,255,17,0,64,0,74,0,29,0,
9,0,43,0,42,0,9,0,21,0,23,0,237,255,222,255,229,255,220,255,226,255,235,255,234,255,253,255,239,255,172,255,
176,255,250,255,4,0,232,255,231,255,197,255,154,255,192,255,2,0,4,0,226,255,213,255,219,255,224,255,243,255,14,0,
251,255,224,255,19,0,70,0,14,0,192,255,202,255,7,0,41,0,14,0,227,255,254,255,58,0,42,0,254,255,24,0,
61,0,29,0,252,255,29,0,42,0,246,255,243,255,49,0,54,0,29,0,64,0,64,0,251,255,250,255,37,0,6,0,
229,255,14,0,27,0,229,255,206,255,243,255,255,255,231,255,246,255,34,0,38,0,21,0,11,0,240,255,236,255,21,0,
36,0,19,0,8,0,226,255,203,255,246,255,17,0,251,255,250,255,249,255,231,255,251,255,12,0,242,255,239,255,10,0,
15,0,12,0,7,0,240,255,220,255,216,255,230,255,252,255,243,255,224,255,241,255,248,255,239,255,23,0,62,0,40,0,
34,0,57,0,35,0,241,255,224,255,234,255,252,255,254,255,247,255,12,0,30,0,11,0,17,0,68,0,88,0,58,0,
23,0,6,0,17,0,36,0,28,0,10,0,10,0,21,0,35,0,39,0,17,0,254,255,4,0,7,0,247,255,237,255,
240,255,219,255,177,255,190,255,248,255,254,255,231,255,3,0,16,0,220,255,205,255,250,255,11,0,254,255,250,255,249,255,
14,0,50,0,31,0,223,255,194,255,212,255,235,255,238,255,223,255,223,255,247,255,249,255,222,255,225,255,9,0,26,0,
16,0,33,0,61,0,47,0,21,0,28,0,40,0,52,0,74,0,72,0,41,0,29,0,23,0,8,0,16,0,26,0,
10,0,6,0,23,0,23,0,9,0,5,0,16,0,37,0,38,0,3,0,237,255,251,255,0,0,232,255,219,255,236,255,
251,255,244,255,241,255,248,255,236,255,224,255,244,255,13,0,31,0,37,0,4,0,232,255,8,0,18,0,227,255,228,255,
17,0,11,0,243,255,254,255,2,0,240,255,224,255,215,255,244,255,30,0,2,0,204,255,213,255,232,255,204,255,202,255,
5,0,44,0,21,0,241,255,232,255,255,255,45,0,72,0,33,0,225,255,222,255,18,0,46,0,38,0,20,0,248,255,
226,255,235,255,9,0,30,0,33,0,20,0,255,255,249,255,18,0,45,0,36,0,9,0,254,255,246,255,238,255,248,255,
7,0,10,0,20,0,21,0,246,255,229,255,3,0,28,0,5,0,232,255,244,255,20,0,31,0,25,0,17,0,7,0,
18,0,55,0,57,0,4,0,236,255,11,0,27,0,253,255,226,255,253,255,52,0,55,0,1,0,224,255,228,255,231,255,
246,255,25,0,33,0,12,0,6,0,26,0,40,0,23,0,249,255,254,255,35,0,54,0,45,0,38,0,33,0,17,0,
253,255,251,255,9,0,15,0,8,0,7,0,3,0,254,255,14,0,15,0,228,255,200,255,220,255,252,255,21,0,23,0,
233,255,198,255,231,255,20,0,20,0,253,255,241,255,241,255,229,255,192,255,191,255,247,255,255,255,189,255,184,255,246,255,
255,255,227,255,244,255,10,0,250,255,241,255,248,255,253,255,6,0,254,255,223,255,234,255,33,0,38,0,246,255,219,255,
221,255,234,255,12,0,33,0,16,0,5,0,5,0,235,255,222,255,5,0,37,0,18,0,254,255,15,0,31,0,23,0,
19,0,21,0,3,0,236,255,239,255,247,255,233,255,231,255,252,255,3,0,241,255,225,255,224,255,240,255,2,0,248,255,
228,255,239,255,9,0,10,0,0,0,1,0,246,255,229,255,2,0,44,0,24,0,241,255,246,255,238,255,198,255,211,255,
0,0,242,255,218,255,254,255,27,0,1,0,233,255,239,255,246,255,247,255,253,255,6,0,5,0,250,255,244,255,244,255,
243,255,252,255,0,0,245,255,0,0,27,0,10,0,230,255,231,255,234,255,222,255,240,255,6,0,246,255,243,255,13,0,
15,0,1,0,0,0,249,255,240,255,248,255,250,255,250,255,8,0,13,0,9,0,21,0,27,0,13,0,8,0,9,0,
2,0,14,0,38,0,41,0,27,0,250,255,213,255,230,255,17,0,255,255,211,255,225,255,254,255,239,255,218,255,218,255,
225,255,245,255,15,0,15,0,241,255,216,255,231,255,12,0,20,0,8,0,8,0,5,0,252,255,17,0,38,0,20,0,
9,0,29,0,24,0,249,255,255,255,39,0,51,0,12,0,227,255,235,255,14,0,14,0,248,255,6,0,38,0,20,0,
234,255,238,255,16,0,14,0,236,255,230,255,255,255,8,0,253,255,243,255,232,255,224,255,237,255,0,0,255,255,253,255,
4,0,4,0,3,0,19,0,36,0,24,0,250,255,241,255,255,255,251,255,222,255,223,255,6,0,28,0,13,0,235,255,
206,255,224,255,19,0,27,0,1,0,0,0,5,0,243,255,239,255,6,0,26,0,27,0,13,0,11,0,42,0,45,0,
245,255,221,255,5,0,20,0,245,255,234,255,248,255,6,0,14,0,5,0,242,255,237,255,235,255,232,255,242,255,6,0,
20,0,21,0,255,255,233,255,246,255,7,0,254,255,253,255,12,0,1,0,239,255,253,255,10,0,247,255,236,255,5,0,
31,0,25,0,5,0,254,255,252,255,245,255,239,255,246,255,4,0,254,255,229,255,232,255,15,0,31,0,2,0,235,255,
238,255,234,255,233,255,253,255,0,0,230,255,230,255,245,255,218,255,187,255,215,255,253,255,252,255,252,255,5,0,250,255,
240,255,249,255,253,255,2,0,20,0,23,0,2,0,239,255,242,255,2,0,6,0,248,255,247,255,3,0,251,255,234,255,
240,255,246,255,238,255,241,255,1,0,14,0,21,0,23,0,12,0,255,255,0,0,13,0,14,0,7,0,16,0,27,0,
10,0,250,255,13,0,33,0,19,0,252,255,247,255,5,0,23,0,23,0,2,0,246,255,3,0,11,0,254,255,252,255,
11,0,9,0,249,255,251,255,5,0,7,0,10,0,4,0,250,255,13,0,33,0,18,0,251,255,242,255,228,255,224,255,
252,255,22,0,15,0,249,255,247,255,5,0,4,0,246,255,248,255,250,255,244,255,3,0,24,0,8,0,245,255,252,255,
0,0,7,0,22,0,7,0,237,255,246,255,0,0,249,255,0,0,255,255,227,255,229,255,8,0,13,0,254,255,3,0,
11,0,12,0,9,0,249,255,234,255,244,255,4,0,10,0,20,0,24,0,4,0,249,255,10,0,27,0,30,0,31,0,
31,0,24,0,12,0,251,255,243,255,0,0,14,0,10,0,9,0,17,0,12,0,3,0,251,255,232,255,226,255,253,255,
20,0,15,0,11,0,12,0,2,0,0,0,11,0,3,0,235,255,234,255,253,255,1,0,251,255,1,0,252,255,231,255,
230,255,0,0,18,0,15,0,251,255,236,255,249,255,2,0,244,255,248,255,6,0,238,255,225,255,9,0,30,0,9,0,
2,0,8,0,7,0,9,0,2,0,241,255,235,255,232,255,233,255,2,0,24,0,16,0,1,0,245,255,241,255,252,255,
254,255,242,255,255,255,24,0,18,0,252,255,245,255,252,255,11,0,17,0,5,0,255,255,1,0,251,255,5,0,38,0,
41,0,6,0,248,255,6,0,14,0,8,0,246,255,226,255,234,255,8,0,21,0,16,0,3,0,239,255,243,255,19,0,
21,0,249,255,245,255,254,255,252,255,253,255,250,255,241,255,251,255,6,0,253,255,252,255,254,255,243,255,247,255,9,0,
7,0,2,0,10,0,12,0,15,0,18,0,3,0,247,255,252,255,248,255,245,255,7,0,14,0,4,0,6,0,15,0,
12,0,8,0,250,255,234,255,246,255,8,0,0,0,2,0,19,0,4,0,235,255,250,255,21,0,14,0,244,255,238,255,
250,255,0,0,254,255,6,0,17,0,10,0,254,255,255,255,7,0,7,0,250,255,238,255,247,255,2,0,254,255,1,0,
9,0,250,255,235,255,243,255,254,255,2,0,7,0,8,0,7,0,3,0,243,255,238,255,7,0,24,0,15,0,6,0,
8,0,4,0,251,255,244,255,241,255,250,255,15,0,21,0,6,0,248,255,242,255,238,255,245,255,6,0,9,0,255,255,
252,255,2,0,4,0,253,255,243,255,245,255,255,255,255,255,1,0,9,0,5,0,0,0,11,0,15,0,7,0,3,0,
0,0,0,0,12,0,18,0,9,0,2,0,0,0,250,255,249,255,252,255,254,255,252,255,252,255,2,0,5,0,253,255,
252,255,5,0,3,0,254,255,7,0,14,0,11,0,11,0,10,0,6,0,6,0,2,0,250,255,3,0,19,0,17,0,
9,0,7,0,3,0,254,255,1,0,7,0,3,0,250,255,243,255,245,255,2,0,14,0,6,0,253,255,7,0,16,0,
4,0,245,255,245,255,253,255,4,0,255,255,247,255,252,255,2,0,255,255,254,255,2,0,253,255,245,255,245,255,247,255,
250,255,4,0,1,0,245,255,249,255,4,0,2,0,254,255,1,0,254,255,251,255,5,0,6,0,253,255,3,0,12,0,
5,0,252,255,252,255,2,0,5,0,250,255,238,255,244,255,251,255,243,255,245,255,6,0,8,0,252,255,251,255,4,0,
4,0,255,255,254,255,255,255,255,255,4,0,8,0,1,0,251,255,1,0,2,0,252,255,251,255,251,255,249,255,252,255,
253,255,248,255,251,255,0,0,246,255,237,255,247,255,4,0,255,255,247,255,251,255,2,0,6,0,6,0,3,0,2,0,
5,0,2,0,249,255,248,255,250,255,246,255,249,255,4,0,10,0,5,0,252,255,252,255,1,0,254,255,251,255,7,0,
16,0,8,0,255,255,1,0,5,0,6,0,254,255,250,255,4,0,10,0,5,0,8,0,19,0,16,0,2,0,247,255,
248,255,1,0,6,0,2,0,254,255,253,255,0,0,5,0,2,0,252,255,252,255,0,0,255,255,0,0,2,0,255,255,
253,255,4,0,7,0,254,255,246,255,252,255,1,0,253,255,254,255,255,255,250,255,251,255,3,0,255,255,249,255,253,255,
1,0,252,255,250,255,252,255,254,255,254,255,255,255,0,0,255,255,1,0,3,0,0,0,255,255,4,0,3,0,253,255,
254,255,1,0,0,0,1,0,4,0,2,0,252,255,251,255,254,255,0,0,254,255,1,0,5,0,2,0,255,255,0,0,
0,0,0,0,2,0,253,255,247,255,252,255,4,0,4,0,251,255,247,255,254,255,5,0,4,0,1,0,1,0,2,0,
5,0,10,0,10,0,8,0,4,0,253,255,253,255,1,0,0,0,254,255,2,0,5,0,5,0,5,0,5,0,0,0,
250,255,250,255,1,0,0,0,251,255,253,255,0,0,0,0,8,0,10,0,252,255,243,255,251,255,1,0,0,0,2,0,
4,0,4,0,3,0,255,255,248,255,248,255,255,255,1,0,251,255,251,255,255,255,0,0,0,0,254,255,251,255,254,255,
1,0,255,255,255,255,255,255,254,255,4,0,8,0,2,0,252,255,253,255,253,255,254,255,255,255,253,255,251,255,250,255,
250,255,254,255,3,0,3,0,2,0,0,0,0,0,2,0,255,255,251,255,1,0,5,0,1,0,1,0,6,0,7,0,
5,0,1,0,253,255,2,0,7,0,4,0,255,255,0,0,5,0,4,0,255,255,0,0,6,0,6,0,0,0,251,255,
248,255,252,255,0,0,252,255,249,255,253,255,254,255,250,255,254,255,1,0,253,255,251,255,254,255,253,255,251,255,255,255,
1,0,250,255,250,255,4,0,5,0,0,0,2,0,4,0,3,0,5,0,5,0,2,0,0,0,253,255,250,255,255,255,
2,0,255,255,2,0,5,0,2,0,0,0,1,0,255,255,1,0,5,0,2,0,254,255,255,255,1,0,254,255,252,255,
255,255,1,0,0,0,3,0,4,0,254,255,250,255,252,255,251,255,253,255,4,0,2,0,253,255,255,255,254,255,251,255,
254,255,1,0,255,255,253,255,253,255,254,255,0,0,2,0,2,0,2,0,3,0,4,0,3,0,1,0,0,0,0,0,
1,0,1,0,255,255,2,0,7,0,5,0,1,0,3,0,6,0,6,0,4,0,0,0,254,255,0,0,0,0,1,0,
3,0,0,0,255,255,3,0,2,0,255,255,253,255,251,255,253,255,6,0,5,0,253,255,253,255,2,0,2,0,252,255,
251,255,0,0,1,0,252,255,253,255,0,0,254,255,254,255,255,255,252,255,253,255,0,0,252,255,251,255,254,255,254,255,
253,255,254,255,255,255,255,255,254,255,254,255,255,255,0,0,255,255,1,0,4,0,2,0,1,0,1,0,255,255,252,255,
251,255,254,255,0,0,1,0,3,0,3,0,0,0,255,255,0,0,0,0,1,0,2,0,2,0,1,0,0,0,255,255,
2,0,3,0,255,255,255,255,5,0,5,0,2,0,0,0,254,255,255,255,0,0,2,0,6,0,6,0,0,0,0,0,
2,0,255,255,254,255,2,0,3,0,1,0,255,255,255,255,2,0,3,0,0,0,0,0,0,0,254,255,255,255,254,255,
253,255,255,255,253,255,251,255,0,0,2,0,255,255,253,255,255,255,0,0,0,0,254,255,252,255,1,0,5,0,255,255,
253,255,1,0,4,0,2,0,2,0,3,0,1,0,254,255,255,255,255,255,253,255,0,0,4,0,2,0,2,0,5,0,
2,0,253,255,252,255,255,255,2,0,1,0,254,255,254,255,254,255,255,255,1,0,1,0,254,255,254,255,254,255,0,0,
4,0,2,0,254,255,3,0,6,0,2,0,0,0,254,255,252,255,253,255,253,255,253,255,253,255,255,255,0,0,0,0,
254,255,254,255,3,0,3,0,255,255,0,0,0,0,255,255,254,255,253,255,255,255,4,0,3,0,255,255,254,255,254,255,
0,0,4,0,2,0,254,255,255,255,1,0,1,0,2,0,2,0,255,255,252,255,254,255,3,0,4,0,1,0,1,0,
2,0,3,0,4,0,1,0,253,255,253,255,1,0,4,0,1,0,253,255,254,255,1,0,254,255,252,255,2,0,4,0,
255,255,255,255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,255,255,253,255,0,0,2,0,252,255,254,255,
5,0,1,0,252,255,0,0,1,0,254,255,1,0,2,0,255,255,255,255,1,0,2,0,1,0,0,0,1,0,0,0,
255,255,0,0,255,255,249,255,251,255,0,0,2,0,2,0,3,0,1,0,255,255,0,0,0,0,0,0,1,0,1,0,
0,0,0,0,1,0,2,0,2,0,3,0,3,0,1,0,254,255,254,255,255,255,1,0,2,0,2,0,1,0,2,0,
2,0,3,0,0,0,253,255,254,255,255,255,250,255,250,255,1,0,3,0,1,0,0,0,255,255,252,255,251,255,252,255,
0,0,3,0,0,0,1,0,3,0,0,0,253,255,254,255,0,0,2,0,1,0,254,255,254,255,0,0,1,0,3,0,
3,0,0,0,0,0,254,255,252,255,1,0,4,0,1,0,254,255,255,255,0,0,2,0,0,0,253,255,253,255,254,255,
253,255,255,255,255,255,253,255,0,0,2,0,0,0,254,255,1,0,3,0,255,255,253,255,255,255,1,0,1,0,3,0,
3,0,0,0,255,255,1,0,2,0,2,0,0,0,254,255,2,0,4,0,1,0,0,0,1,0,2,0,5,0,4,0,
255,255,254,255,1,0,3,0,2,0,1,0,1,0,3,0,0,0,253,255,254,255,0,0,2,0,3,0,255,255,252,255,
254,255,255,255,255,255,2,0,255,255,252,255,255,255,1,0,255,255,255,255,255,255,253,255,1,0,5,0,1,0,253,255,
253,255,1,0,3,0,0,0,255,255,1,0,1,0,255,255,254,255,253,255,254,255,255,255,254,255,254,255,0,0,0,0,
255,255,0,0,3,0,2,0,253,255,253,255,0,0,0,0,254,255,2,0,5,0,2,0,0,0,255,255,0,0,1,0,
0,0,0,0,1,0,255,255,254,255,0,0,1,0,0,0,1,0,2,0,3,0,3,0,254,255,252,255,1,0,3,0,
0,0,253,255,253,255,0,0,1,0,255,255,255,255,2,0,0,0,255,255,0,0,255,255,255,255,255,255,254,255,0,0,
2,0,1,0,255,255,255,255,255,255,0,0,3,0,2,0,255,255,0,0,1,0,255,255,254,255,255,255,1,0,1,0,
0,0,3,0,3,0,0,0,254,255,255,255,0,0,1,0,1,0,1,0,0,0,255,255,0,0,3,0,3,0,1,0,
0,0,0,0,255,255,254,255,254,255,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,255,255,1,0,2,0,
255,255,254,255,0,0,0,0,255,255,255,255,254,255,0,0,1,0,0,0,0,0,1,0,0,0,254,255,254,255,255,255,
1,0,0,0,253,255,0,0,3,0,2,0,0,0,0,0,0,0,1,0,0,0,254,255,0,0,2,0,1,0,0,0,
0,0,0,0,255,255,0,0,2,0,3,0,1,0,254,255,255,255,0,0,255,255,255,255,1,0,2,0,1,0,255,255,
0,0,0,0,254,255,253,255,255,255,255,255,255,255,255,255,0,0,1,0,0,0,254,255,255,255,3,0,2,0,255,255,
254,255,1,0,3,0,0,0,253,255,254,255,255,255,255,255,1,0,0,0,254,255,0,0,1,0,255,255,0,0,255,255,
254,255,255,255,1,0,0,0,255,255,254,255,255,255,1,0,1,0,0,0,1,0,2,0,2,0,1,0,255,255,255,255,
1,0,2,0,1,0,1,0,0,0,1,0,2,0,1,0,255,255,0,0,1,0,1,0,1,0,1,0,0,0,1,0,
1,0,0,0,0,0,255,255,254,255,255,255,1,0,1,0,0,0,0,0,0,0,0,0,255,255,0,0,255,255,255,255,
255,255,254,255,254,255,0,0,1,0,0,0,255,255,255,255,0,0,3,0,1,0,254,255,255,255,0,0,0,0,1,0,
1,0,1,0,0,0,255,255,255,255,0,0,0,0,0,0,1,0,0,0,0,0,255,255,255,255,0,0,1,0,0,0,
255,255,255,255,255,255,255,255,0,0,0,0,0,0,0,0,254,255,255,255,1,0,0,0,255,255,255,255,0,0,0,0,
1,0,1,0,1,0,1,0,0,0,0,0,255,255,255,255,0,0,1,0,1,0,1,0,1,0,1,0,1,0,0,0,
0,0,0,0,0,0,0,0,0,0,255,255,0,0,1,0,1,0,0,0,255,255,254,255,255,255,0,0,0,0,0,0,
1,0,1,0,0,0,0,0,0,0,255,255,255,255,0,0,1,0,0,0,255,255,0,0,0,0,255,255,0,0,2,0,
0,0,255,255,0,0,0,0,0,0,0,0,255,255,255,255,255,255,0,0,0,0,1,0,2,0,2,0,0,0,255,255,
255,255,255,255,255,255,0,0,1,0,0,0,255,255,0,0,1,0,0,0,254,255,255,255,1,0,2,0,
};

7354
src/client/sound/data/sheep1.pcm Executable file

File diff suppressed because it is too large Load Diff

6435
src/client/sound/data/sheep2.pcm Executable file

File diff suppressed because it is too large Load Diff

7354
src/client/sound/data/sheep3.pcm Executable file

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

1943
src/client/sound/data/spider1.pcm Executable file

File diff suppressed because it is too large Load Diff

1458
src/client/sound/data/spider2.pcm Executable file

File diff suppressed because it is too large Load Diff

1458
src/client/sound/data/spider3.pcm Executable file

File diff suppressed because it is too large Load Diff

973
src/client/sound/data/spider4.pcm Executable file
View File

@@ -0,0 +1,973 @@
unsigned char PCM_spider4[31050] = {
1,0,0,0,2,0,0,0,68,172,0,0,157,60,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,0,0,0,0,0,0,0,0,0,
255,255,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,1,0,1,0,
0,0,0,0,0,0,255,255,255,255,0,0,0,0,255,255,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,
1,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,255,255,255,255,1,0,0,0,255,255,0,0,0,0,0,0,
0,0,0,0,255,255,0,0,1,0,0,0,255,255,0,0,0,0,255,255,0,0,1,0,0,0,0,0,1,0,0,0,
255,255,255,255,1,0,1,0,0,0,0,0,0,0,255,255,0,0,0,0,0,0,0,0,255,255,254,255,0,0,1,0,
0,0,0,0,1,0,1,0,255,255,255,255,1,0,1,0,255,255,0,0,1,0,0,0,255,255,255,255,0,0,1,0,
0,0,255,255,0,0,1,0,0,0,255,255,0,0,0,0,255,255,255,255,255,255,0,0,0,0,1,0,1,0,0,0,
255,255,0,0,2,0,3,0,2,0,2,0,1,0,0,0,255,255,255,255,0,0,2,0,4,0,4,0,2,0,1,0,
1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,253,255,253,255,1,0,3,0,3,0,3,0,4,0,
4,0,2,0,3,0,4,0,3,0,255,255,253,255,253,255,251,255,249,255,250,255,252,255,253,255,253,255,0,0,4,0,
5,0,1,0,255,255,0,0,4,0,6,0,5,0,2,0,254,255,249,255,248,255,250,255,0,0,2,0,255,255,251,255,
252,255,1,0,4,0,4,0,4,0,7,0,9,0,8,0,6,0,6,0,3,0,252,255,248,255,251,255,252,255,247,255,
247,255,252,255,252,255,247,255,249,255,4,0,9,0,3,0,253,255,254,255,2,0,1,0,254,255,253,255,254,255,0,0,
255,255,249,255,243,255,241,255,246,255,0,0,11,0,13,0,4,0,247,255,240,255,236,255,236,255,242,255,253,255,6,0,
8,0,2,0,253,255,0,0,7,0,3,0,251,255,1,0,11,0,4,0,252,255,0,0,2,0,253,255,255,255,6,0,
3,0,0,0,11,0,18,0,6,0,247,255,244,255,236,255,222,255,229,255,6,0,32,0,21,0,248,255,254,255,37,0,
41,0,0,0,225,255,215,255,226,255,23,0,64,0,23,0,238,255,10,0,13,0,229,255,249,255,30,0,236,255,204,255,
28,0,89,0,35,0,215,255,204,255,240,255,253,255,207,255,189,255,14,0,70,0,16,0,232,255,15,0,45,0,79,0,
148,0,139,0,9,0,165,255,159,255,175,255,201,255,23,0,104,0,94,0,39,0,87,0,217,0,227,0,103,0,40,0,
41,0,234,255,166,255,152,255,138,255,238,255,0,1,106,1,100,0,129,255,3,0,225,0,216,0,48,0,198,255,219,255,
250,255,207,255,168,255,218,255,91,0,250,0,45,1,114,0,140,255,154,255,49,0,151,0,47,1,191,1,58,1,8,0,
94,255,55,255,86,255,255,255,143,0,71,0,238,255,38,0,72,0,86,0,7,1,157,1,248,0,24,0,74,0,141,0,
220,255,165,255,210,0,119,1,101,0,111,255,167,255,126,255,121,254,187,254,42,1,174,3,190,3,139,1,7,0,160,0,
18,1,66,0,70,0,232,0,161,255,124,253,29,253,12,254,124,255,129,1,189,2,228,2,45,3,28,2,58,255,219,254,
204,1,209,2,230,0,121,255,87,254,196,252,85,253,12,0,240,1,131,2,27,2,42,0,195,254,66,0,87,2,31,2,
199,0,237,255,217,254,72,253,203,252,85,254,110,0,34,1,228,0,242,0,135,0,145,255,89,0,89,2,229,1,120,255,
153,254,188,254,143,254,70,0,200,2,38,1,112,253,33,254,29,1,5,0,242,252,180,253,246,0,236,1,182,0,229,0,
16,3,223,3,139,1,234,254,170,254,105,255,250,254,157,253,216,252,215,253,53,0,81,2,219,3,250,4,203,3,252,255,
137,253,148,254,226,255,206,254,76,253,242,253,142,255,128,255,100,255,178,2,77,6,7,4,34,254,3,252,68,254,37,0,
245,255,119,255,200,255,124,255,109,253,181,252,233,255,210,2,214,1,205,0,90,2,13,3,167,0,253,252,217,251,21,0,
251,4,75,2,169,251,129,251,148,255,73,255,108,253,135,0,102,5,251,5,184,2,86,255,115,253,42,253,139,254,9,0,
60,255,99,253,168,253,128,254,48,253,226,252,3,1,203,5,151,5,43,1,54,254,211,254,226,254,49,253,172,254,102,2,
84,1,200,252,168,250,192,249,133,250,96,1,215,7,181,4,166,254,31,255,197,2,236,4,156,5,81,3,19,255,28,253,
146,252,227,251,194,253,163,0,232,255,8,254,77,255,144,1,234,1,74,1,16,1,30,1,171,0,23,0,128,0,247,255,
136,252,144,250,198,253,76,1,60,0,182,252,162,250,194,252,12,3,81,7,143,4,108,255,81,254,126,0,23,2,49,1,
186,254,139,253,231,253,67,253,125,252,70,254,197,0,115,1,199,2,251,6,21,10,250,6,200,255,54,251,225,250,218,251,
84,253,192,253,110,250,200,247,97,251,195,0,151,3,191,6,99,8,209,4,153,1,200,1,163,0,241,255,103,2,83,1,
116,252,203,251,4,253,29,252,77,255,26,5,225,3,27,255,151,254,115,255,255,0,70,6,211,8,144,3,215,253,93,252,
205,250,241,247,251,247,12,253,132,3,153,4,163,255,89,252,196,254,212,2,75,5,106,5,158,2,197,255,200,255,174,255,
244,252,245,250,143,252,76,255,71,255,46,254,8,2,11,8,159,5,217,253,140,253,18,1,166,254,129,253,162,2,42,3,
60,253,74,250,96,250,12,252,39,2,59,5,10,0,226,253,86,1,116,255,208,252,99,3,244,8,218,3,233,252,235,251,
68,255,249,2,208,0,194,249,255,249,96,3,84,8,140,3,22,254,5,0,149,6,195,6,67,254,167,250,59,0,114,1,
144,252,29,253,74,0,114,253,178,249,12,251,177,0,91,9,109,13,67,5,87,250,44,249,7,254,19,1,23,1,29,255,
193,254,220,1,231,2,95,255,151,252,28,254,101,3,234,7,143,4,90,252,198,249,94,252,72,255,230,3,122,5,221,254,
180,249,53,251,255,251,126,254,213,5,11,6,235,254,90,255,255,3,114,1,112,253,121,252,71,250,240,250,129,0,41,2,
76,254,144,250,60,250,58,3,120,18,178,20,28,6,193,250,97,251,63,255,89,0,196,252,135,248,125,253,185,6,103,5,
95,254,170,254,11,2,184,2,150,4,26,5,180,255,226,250,194,251,172,255,100,5,21,9,213,3,109,250,120,249,65,0,
64,3,225,255,232,252,216,252,42,253,235,253,66,0,21,2,165,1,194,0,251,0,206,0,109,254,204,251,64,253,235,1,
38,3,74,255,73,252,137,253,228,0,64,3,111,2,33,0,129,0,175,1,176,255,35,254,153,255,133,255,27,254,108,255,
141,0,129,255,80,0,120,1,21,255,102,253,77,255,180,0,231,0,163,1,184,0,46,254,229,253,72,0,133,2,32,2,
121,254,165,251,6,254,24,2,3,2,120,255,159,255,141,2,220,3,164,1,185,255,222,0,48,1,242,253,129,251,92,253,
171,0,62,1,187,254,148,253,73,1,96,5,72,4,0,1,138,255,137,254,124,254,136,0,25,0,18,252,30,252,133,2,
93,6,46,2,162,252,191,253,220,2,44,4,70,1,100,254,48,252,251,251,106,0,212,4,82,3,186,255,220,254,245,254,
171,255,176,1,225,0,182,252,113,252,27,2,189,5,143,2,192,254,173,0,184,3,118,1,32,254,137,254,127,254,42,253,
161,255,20,3,22,2,65,0,102,0,46,0,75,1,238,3,91,2,231,253,65,253,194,254,95,255,204,0,177,1,42,1,
78,2,169,2,136,255,68,255,196,2,105,2,71,0,106,1,53,0,64,252,79,253,196,0,61,1,214,1,7,1,219,252,
72,254,71,5,32,5,70,255,200,253,233,254,221,255,66,1,6,255,15,252,155,255,135,2,119,255,196,255,195,2,7,0,
183,254,149,3,33,4,162,255,147,254,45,255,239,254,153,255,0,254,198,251,188,255,89,4,16,2,35,255,126,0,171,2,
193,4,9,5,216,255,191,249,51,249,180,252,247,0,246,2,186,255,179,252,87,1,186,7,67,6,154,0,58,255,121,1,
249,1,61,255,41,251,4,249,114,252,190,3,50,6,118,0,160,251,218,254,42,4,162,3,111,255,115,254,148,0,140,255,
203,251,199,252,115,1,42,2,196,0,133,2,16,4,96,2,240,255,177,254,107,0,86,2,83,252,44,244,72,249,132,5,
99,7,179,1,23,255,161,255,156,2,92,5,168,0,204,249,1,252,45,1,152,254,162,249,152,251,213,2,123,7,129,5,
2,1,14,255,15,254,253,251,18,251,249,252,126,0,233,0,205,251,102,250,171,2,42,8,114,4,219,1,24,0,173,250,
99,253,155,7,228,5,125,251,154,249,36,252,138,252,192,254,205,254,185,252,51,2,70,7,98,0,191,250,79,255,225,1,
253,255,174,0,191,255,122,251,75,251,105,254,232,254,163,253,127,253,252,255,176,4,75,6,212,1,219,252,253,252,199,0,
124,2,7,255,68,251,85,252,241,253,28,252,143,251,193,254,81,2,141,5,184,7,20,5,23,255,158,251,124,251,99,252,
87,254,249,255,220,253,227,249,77,250,83,255,215,3,100,6,122,6,115,1,27,251,91,250,242,252,6,255,88,2,212,3,
251,255,16,253,16,253,10,251,138,251,95,1,5,2,111,253,57,0,104,7,162,6,197,255,200,251,135,253,216,0,52,254,
239,247,35,249,88,254,95,251,112,246,7,252,89,6,87,9,201,4,128,0,248,0,134,1,173,253,10,251,240,252,202,253,
153,253,247,255,98,1,208,0,20,1,94,255,106,252,241,253,240,0,68,1,184,0,87,252,74,245,134,246,26,254,127,1,
82,3,73,4,35,255,166,253,150,4,31,3,152,248,90,248,133,0,243,1,136,253,3,250,231,250,65,1,11,4,91,255,
155,0,224,8,208,7,103,255,252,253,147,255,195,251,228,248,246,251,49,254,47,250,251,245,255,250,20,6,234,10,8,8,
14,5,109,2,119,253,94,249,33,250,193,255,89,4,77,0,172,248,200,249,123,0,70,2,32,2,117,4,122,3,149,253,
231,248,168,248,242,252,172,2,241,2,125,254,192,254,57,4,196,4,26,254,63,249,24,251,157,255,73,3,228,4,77,1,
150,249,249,245,253,249,79,0,78,3,60,0,81,250,234,251,76,6,191,11,107,6,229,255,183,253,187,252,131,251,7,252,
43,0,83,4,242,0,62,250,77,253,235,6,82,8,187,1,95,254,221,0,222,2,68,0,5,255,2,5,236,7,222,255,
152,251,236,1,88,2,31,251,25,252,55,2,22,1,49,253,151,255,208,7,244,12,26,5,26,249,144,251,224,3,81,255,
76,248,190,251,112,255,153,255,251,2,155,4,158,1,169,1,171,3,24,2,36,255,78,253,23,255,32,5,45,5,59,252,
2,250,152,2,181,6,122,2,128,254,63,252,222,251,87,1,107,8,72,6,40,251,13,246,182,255,130,11,36,12,13,7,
30,2,24,250,218,244,189,251,224,7,133,12,86,6,186,251,254,248,138,254,119,253,24,249,86,3,51,15,154,4,145,243,
123,246,195,5,66,16,129,17,17,8,124,251,122,249,109,254,151,254,199,252,0,254,10,255,179,0,1,4,46,2,167,252,
112,255,83,8,226,7,14,254,168,248,15,250,148,251,8,254,130,3,176,6,76,3,47,252,3,249,189,255,248,8,1,7,
43,255,34,2,56,11,67,8,36,251,104,246,145,255,141,7,245,1,119,248,160,249,113,1,177,6,251,8,248,5,50,255,
11,0,86,4,157,253,45,246,30,252,39,2,3,255,101,253,203,255,172,2,2,7,238,5,36,255,62,1,114,7,252,1,
203,252,166,1,68,254,3,243,75,247,113,4,251,2,91,250,68,253,162,5,242,4,255,254,53,1,213,9,18,9,185,252,
128,245,233,250,252,0,209,254,180,252,129,3,206,8,154,255,21,245,65,251,142,6,38,7,111,4,107,3,222,254,141,252,
30,0,38,0,148,253,228,255,252,0,192,252,64,250,239,251,68,0,212,4,71,4,229,3,224,10,66,10,121,249,122,240,
72,252,133,9,100,11,228,5,246,253,113,252,59,3,21,5,73,1,190,3,131,6,14,1,214,253,103,0,26,0,237,0,
17,6,195,3,50,251,154,251,62,2,122,3,95,2,20,2,23,0,237,3,64,14,74,11,180,249,253,245,30,6,199,14,
3,5,155,248,152,246,189,0,242,12,167,10,66,254,157,253,64,8,25,11,50,3,25,251,224,250,182,4,219,12,232,5,
174,250,225,251,161,2,236,2,136,0,189,2,97,8,235,8,86,0,26,250,181,253,243,0,179,3,93,14,34,16,142,252,
142,240,179,254,255,12,102,9,204,255,236,248,156,245,144,246,220,247,216,252,7,13,53,25,187,13,247,248,13,244,4,253,
214,6,90,13,3,10,2,249,10,235,40,240,105,254,121,10,95,23,221,25,131,4,114,241,134,250,253,6,218,1,105,255,
160,4,183,254,12,243,134,240,92,248,108,13,17,33,220,19,193,244,53,240,53,0,156,6,11,7,96,7,78,0,38,250,
90,249,17,244,34,245,27,8,70,20,218,7,136,248,254,247,154,253,20,1,137,4,249,8,1,8,220,251,6,240,108,246,
254,6,107,10,69,0,89,248,91,247,95,250,84,255,18,2,237,1,116,2,102,1,234,252,126,252,252,2,95,8,245,8,
121,5,90,251,148,240,51,241,120,249,193,0,109,10,101,15,222,2,31,249,32,7,241,15,69,252,179,236,181,247,11,3,
253,252,24,242,240,238,132,248,241,6,151,7,230,254,43,1,174,6,159,255,223,247,218,248,155,249,244,251,254,3,5,4,
93,248,39,243,43,251,87,3,238,2,144,253,90,249,123,248,233,249,245,251,23,252,245,248,74,246,62,247,100,248,76,247,
97,248,210,255,21,10,86,13,55,4,173,246,59,242,233,251,222,10,6,13,140,252,18,238,23,243,208,0,98,10,183,15,
173,11,102,253,247,242,6,243,69,252,146,13,229,18,71,253,139,234,108,242,185,253,180,0,26,8,19,9,116,252,181,247,
4,249,214,240,218,242,89,6,233,9,136,249,153,242,158,244,134,242,19,246,134,1,248,5,49,254,71,240,114,234,246,250,
164,16,161,11,173,248,159,251,190,9,227,1,141,239,19,242,26,1,97,2,102,250,167,250,213,254,69,253,199,252,46,3,
8,7,148,255,169,241,14,232,98,233,18,246,236,6,77,13,111,2,22,247,69,255,126,17,236,18,244,252,104,227,28,220,
52,231,203,243,188,253,31,11,204,13,166,252,74,246,129,10,10,22,3,8,57,250,24,243,23,232,138,229,3,241,36,251,
180,4,198,17,51,17,138,1,87,249,137,251,160,251,211,250,81,250,159,245,75,244,110,251,35,0,145,1,254,8,75,10,
142,248,161,235,229,248,103,8,167,3,224,251,37,255,13,3,15,3,15,1,47,252,147,253,12,5,184,252,7,234,154,238,
32,4,51,9,221,2,87,6,199,12,116,9,251,253,82,243,119,244,78,252,62,249,178,242,48,250,31,3,140,2,202,8,
169,20,87,15,131,252,198,243,122,250,207,2,216,254,125,243,32,244,175,254,148,0,49,1,231,12,172,16,155,3,106,253,
32,3,97,2,97,253,180,254,46,255,33,252,171,254,157,4,114,6,225,8,5,16,233,18,173,9,157,251,182,247,213,0,
30,6,230,250,129,241,114,0,143,18,30,5,80,236,243,243,38,15,37,20,79,5,69,251,69,247,162,246,51,255,146,9,
29,8,164,253,98,247,127,250,163,254,42,253,30,0,166,13,114,20,244,9,161,255,123,3,27,12,180,11,112,1,198,249,
235,252,156,255,145,249,117,247,139,254,103,3,41,5,160,7,137,3,122,251,124,252,221,2,33,4,105,3,145,3,166,1,
147,1,41,5,210,2,94,249,218,247,138,2,248,8,174,3,1,255,201,0,106,4,2,11,241,15,5,7,140,248,156,246,
106,252,50,254,84,252,54,249,130,253,132,14,39,21,245,3,252,247,62,254,21,255,190,250,4,1,77,3,1,249,166,246,
123,255,153,4,221,7,133,12,209,8,10,253,144,246,226,251,160,5,94,7,231,0,46,254,2,0,26,254,189,254,25,10,
39,18,112,7,68,246,41,246,72,5,242,10,207,0,15,253,56,7,159,9,89,254,106,252,84,9,45,12,97,251,2,238,
114,244,246,1,10,7,49,5,203,2,208,2,128,7,80,13,45,12,241,3,157,251,21,247,251,245,33,247,172,251,189,4,
168,10,91,5,15,254,7,0,247,3,100,4,66,9,140,13,71,3,33,245,233,246,135,0,117,0,164,251,143,252,188,254,
85,253,172,251,139,251,53,255,13,10,224,19,166,16,99,5,68,0,208,4,17,10,144,2,7,239,135,231,170,246,188,2,
57,253,93,250,64,1,205,2,29,3,168,12,167,16,117,6,216,1,201,9,202,9,144,252,215,245,220,251,53,0,88,253,
204,250,139,252,172,2,148,10,88,11,143,2,226,250,201,249,85,250,55,251,121,254,43,3,136,7,186,7,237,0,238,250,
103,255,209,7,136,4,54,246,219,240,56,252,151,5,255,2,96,2,186,5,19,1,127,251,30,0,139,6,208,7,118,4,
36,250,17,240,163,238,225,238,176,241,217,253,4,4,83,253,242,253,197,4,141,0,239,252,245,2,173,0,26,247,39,249,
198,0,179,255,123,250,17,247,9,244,144,243,2,250,161,4,106,9,212,5,24,3,197,0,36,248,220,245,30,2,197,6,
171,249,181,240,115,244,0,247,190,245,158,249,45,4,147,13,156,13,236,6,118,1,46,253,184,251,228,1,47,4,130,246,
57,233,235,240,207,3,229,7,169,247,63,237,183,252,202,14,207,7,252,248,174,250,132,3,206,6,73,6,46,0,147,246,
127,245,9,252,201,251,163,243,136,242,244,253,232,7,174,6,82,3,53,5,170,8,93,11,237,8,177,252,11,241,101,240,
151,246,209,1,72,12,154,5,226,247,46,254,121,12,16,9,39,0,58,2,187,6,139,8,2,9,228,1,34,244,51,237,
242,246,198,9,210,12,14,248,57,234,73,248,117,11,255,13,90,7,249,2,203,3,58,6,83,3,213,254,124,0,251,0,
36,249,179,240,144,240,81,252,112,12,231,11,234,251,106,251,194,11,51,12,100,252,188,248,133,2,253,8,231,6,244,249,
246,232,3,235,52,0,245,8,190,254,232,252,172,7,73,8,5,253,43,249,167,2,137,12,120,7,146,246,188,242,59,3,
15,11,203,252,199,242,67,251,144,3,228,254,123,245,32,244,120,255,105,12,183,12,147,5,75,4,170,7,197,6,166,253,
117,241,111,241,236,2,173,16,220,7,43,246,134,242,234,250,192,254,71,253,28,2,20,10,202,8,158,2,158,1,151,1,
179,255,207,0,122,1,14,255,190,0,146,4,166,2,59,255,152,252,153,246,8,246,215,0,212,6,21,0,1,251,226,253,
76,3,35,11,33,16,250,7,213,250,73,249,237,255,78,0,56,248,207,241,69,247,241,5,135,14,248,10,114,4,71,254,
218,246,245,246,38,2,58,12,163,15,23,16,77,9,76,247,102,224,42,207,177,210,201,238,170,6,111,1,161,242,113,244,
100,1,191,12,83,18,90,14,37,7,97,8,95,10,153,253,89,232,208,224,118,240,226,5,144,9,1,0,12,254,179,1,
170,253,44,250,249,3,112,18,204,21,154,12,233,3,7,4,118,0,165,239,243,228,204,238,73,250,173,250,228,253,147,8,
195,15,12,16,22,9,102,252,5,248,76,1,234,7,187,4,134,2,132,4,202,5,65,4,106,253,63,245,201,245,253,250,
14,252,236,255,10,8,38,7,27,0,82,1,52,7,106,9,227,9,152,6,163,255,83,255,184,2,147,251,5,240,135,241,
53,253,218,2,1,255,176,253,210,6,168,16,205,14,66,5,124,255,225,2,213,12,188,14,138,252,177,230,17,229,220,240,
21,248,135,253,141,6,163,8,228,253,43,244,148,250,192,10,205,17,206,12,25,8,10,6,38,0,221,247,109,242,61,243,
21,252,114,3,58,254,118,248,91,0,102,7,125,2,220,2,240,12,46,15,184,12,185,15,131,8,174,245,252,242,11,253,
216,247,92,238,235,246,221,1,255,0,249,255,179,2,193,6,242,14,191,17,234,8,175,2,186,1,58,253,188,255,123,13,
131,16,127,1,149,241,253,235,239,243,17,5,89,12,22,2,167,250,232,4,39,17,107,10,62,249,189,246,53,0,152,255,
76,250,202,255,63,3,199,251,66,249,114,254,196,1,135,7,200,13,202,7,86,252,82,251,39,3,120,9,33,7,69,254,
97,252,183,2,108,0,91,246,234,247,219,4,250,12,95,12,241,6,118,254,250,249,235,1,113,17,32,25,252,16,205,0,
134,246,178,248,48,1,53,4,141,254,233,248,196,251,158,5,168,10,157,1,147,247,43,1,148,19,215,18,37,0,223,242,
214,246,87,4,244,6,41,249,233,243,159,255,158,3,198,0,97,10,1,14,126,254,247,250,239,8,121,8,99,255,8,9,
243,21,163,12,63,252,127,252,70,4,74,0,165,247,130,249,168,253,8,252,201,255,223,6,134,3,160,254,237,2,160,6,
6,6,77,4,145,254,212,253,159,7,150,6,55,245,168,237,60,247,170,3,234,12,177,11,179,254,132,250,10,4,45,5,
175,253,175,1,212,12,198,12,31,1,182,243,99,237,133,246,235,8,109,14,84,2,135,250,212,0,164,7,80,9,115,9,
6,5,198,0,57,5,144,6,81,252,126,246,83,251,252,255,83,4,4,8,128,2,215,250,10,253,199,2,21,4,147,1,
205,251,7,248,133,251,68,0,246,0,137,0,59,2,161,7,194,11,80,6,132,253,180,252,22,0,0,1,251,254,239,250,
124,252,123,4,2,4,180,255,1,11,24,22,253,8,185,246,28,246,57,253,183,0,10,1,119,254,124,251,62,249,13,248,
191,253,236,5,195,5,254,5,189,12,247,8,255,250,209,249,25,3,86,3,4,254,33,255,49,2,175,255,89,251,72,252,
110,1,119,3,32,0,79,252,242,252,175,2,20,8,118,7,227,3,99,1,163,253,226,249,103,251,64,2,96,9,127,6,
23,245,118,232,29,242,196,1,248,4,134,2,238,0,46,255,92,255,216,251,9,243,3,246,43,5,179,7,177,250,167,242,
124,245,125,253,53,7,82,9,165,253,239,241,139,245,87,254,134,250,201,243,215,250,62,1,12,249,243,244,172,252,109,255,
222,255,119,5,76,1,136,246,166,249,197,255,93,250,28,249,110,255,146,254,165,252,110,1,3,1,134,249,60,244,6,240,
204,239,69,252,213,9,236,5,183,248,40,246,175,252,155,255,150,255,228,255,107,251,29,247,235,253,74,5,184,253,178,241,
167,241,222,250,85,2,161,1,113,253,124,1,132,8,180,2,209,248,159,251,68,0,219,249,15,244,243,248,223,1,206,7,
98,8,161,1,39,245,61,235,186,237,100,251,189,7,246,12,116,13,143,6,254,247,100,236,40,236,27,246,33,3,120,9,
121,7,224,3,230,252,53,238,128,228,199,239,173,9,69,26,34,18,149,250,107,231,46,223,47,225,96,239,93,0,40,6,
12,5,45,4,138,254,187,248,248,253,171,6,201,7,184,5,85,1,178,244,29,232,52,235,220,254,247,21,83,32,48,21,
120,255,245,244,121,249,237,255,21,7,56,18,222,16,203,250,57,233,199,235,3,244,40,255,242,18,128,27,239,12,90,255,
243,255,234,255,121,251,95,251,11,255,179,3,83,7,157,3,182,249,51,242,168,238,175,238,155,246,28,4,128,12,20,11,
230,6,0,8,53,11,221,8,51,5,51,8,97,10,181,0,92,242,42,237,251,240,33,247,198,255,218,8,172,7,40,252,
153,247,4,0,200,6,83,6,79,7,118,8,248,4,5,4,48,6,230,255,116,243,67,238,164,240,28,246,170,0,21,9,
50,3,231,247,76,250,210,7,122,14,146,8,140,0,230,0,69,7,74,8,215,0,204,248,6,244,108,242,57,247,46,255,
178,2,89,6,62,12,169,5,153,243,229,239,47,254,255,5,99,1,42,254,32,254,153,253,29,0,125,3,202,2,12,4,
161,10,3,13,73,8,28,6,183,7,245,2,68,247,138,241,203,248,223,3,159,5,14,254,192,250,193,3,137,13,252,7,
113,247,63,239,135,245,222,254,144,3,90,5,124,4,254,0,93,255,65,1,222,3,53,5,204,1,108,249,32,247,191,0,
45,10,76,10,53,5,181,253,72,248,79,254,185,10,43,15,80,13,226,11,220,4,164,247,191,242,225,252,241,7,23,3,
187,243,177,239,169,250,175,3,149,6,102,10,169,10,15,5,228,0,137,251,229,243,32,247,243,0,231,252,151,243,82,251,
59,9,32,9,151,2,185,0,146,254,144,252,89,2,69,10,27,8,181,253,192,246,247,246,23,248,230,246,227,247,187,251,
156,253,185,1,115,13,111,18,54,5,253,249,35,1,26,8,36,2,194,254,22,3,121,2,10,253,68,252,51,1,145,7,
184,7,136,252,230,240,38,243,192,254,64,5,175,2,240,254,9,1,43,6,245,8,237,8,107,4,56,253,16,255,136,10,
250,15,114,12,134,7,44,255,76,247,244,250,184,0,245,249,78,241,134,247,180,9,216,22,240,17,65,4,254,1,96,7,
142,4,21,0,18,3,169,3,217,255,98,3,166,12,202,14,130,6,7,251,143,243,229,241,209,246,248,2,184,12,155,9,
192,2,98,3,10,4,45,0,255,255,209,2,81,1,88,253,15,252,43,0,10,9,215,13,88,8,250,0,185,0,215,4,
54,7,83,5,209,0,211,254,111,1,87,3,237,254,104,247,219,245,114,252,203,4,130,9,154,6,124,252,208,247,166,254,
180,2,134,0,118,6,122,14,241,6,116,248,242,242,191,243,22,246,170,249,119,252,245,0,145,7,29,9,7,6,214,4,
27,5,30,5,122,3,168,254,22,254,127,3,131,255,11,242,17,240,33,252,29,8,49,15,85,12,48,253,201,243,218,250,
66,1,102,254,10,255,137,4,195,5,202,6,235,9,83,2,153,239,113,229,205,235,75,249,189,7,54,17,173,13,78,2,
206,250,104,251,146,4,18,11,20,254,68,237,4,246,15,9,0,7,133,248,11,242,81,244,43,253,196,5,125,2,242,250,
92,253,33,5,69,9,211,8,135,5,217,2,47,255,132,248,138,249,40,4,184,7,0,3,250,1,7,3,93,5,28,9,
133,0,84,241,67,245,174,3,201,4,44,2,7,6,117,6,16,5,156,5,179,0,142,253,221,4,128,6,193,249,224,240,
110,247,187,2,223,5,87,2,131,1,46,1,171,250,145,247,145,254,81,2,183,253,93,250,230,248,181,248,86,255,47,8,
169,12,117,13,234,3,141,240,254,234,157,250,81,5,66,255,25,251,193,2,212,9,155,6,10,255,42,253,88,2,183,8,
76,11,104,9,219,5,25,2,237,250,65,242,166,243,168,255,226,2,22,246,93,240,130,0,8,16,171,9,68,252,200,251,
152,3,29,8,168,4,173,250,167,244,190,245,133,241,102,234,69,240,46,253,249,4,86,10,44,7,128,249,90,249,20,9,
40,11,188,255,96,253,133,1,255,2,5,2,135,251,92,247,136,254,48,2,155,255,255,8,146,15,127,251,177,230,24,237,
152,251,246,253,150,250,140,250,237,1,57,12,103,10,196,251,80,242,197,244,255,250,159,1,108,7,73,5,255,250,100,245,
226,249,116,253,139,251,88,252,104,255,209,254,121,253,16,251,195,245,204,247,5,1,50,0,187,247,189,248,240,255,236,3,
143,6,132,4,235,250,234,243,218,245,188,254,159,11,249,16,182,6,100,251,28,252,132,254,108,249,117,246,246,253,76,6,
178,2,17,249,87,247,252,250,34,252,193,0,198,11,27,17,25,9,206,251,236,247,100,2,22,12,247,6,35,253,213,249,
194,245,61,237,61,231,188,231,128,243,135,10,102,27,17,25,169,12,170,2,57,0,80,7,160,18,111,25,163,23,40,11,
39,249,69,240,60,244,113,246,157,236,106,225,207,233,46,8,86,32,255,25,193,2,189,249,175,9,170,31,41,31,66,6,
148,241,127,239,216,243,149,250,77,4,50,2,197,241,25,233,119,242,97,1,10,7,97,254,43,247,191,7,243,32,172,28,
248,254,171,237,251,242,100,254,92,6,190,5,63,251,68,245,141,252,32,2,227,251,27,245,232,246,249,254,51,8,34,10,
50,2,165,251,48,252,182,254,249,3,83,9,42,4,209,251,76,254,3,1,140,250,66,248,3,253,153,253,70,253,8,1,
225,1,31,0,243,0,101,0,103,252,96,248,158,245,71,247,35,253,173,254,32,252,43,255,23,7,92,12,61,13,248,9,
181,3,180,254,131,253,197,254,242,252,8,244,9,237,77,243,241,255,157,4,148,255,220,250,235,1,68,16,237,16,126,1,
23,247,3,248,103,253,13,8,210,14,13,5,205,247,94,244,118,243,98,246,254,0,221,3,162,250,17,245,245,245,101,247,
245,249,94,251,181,254,71,11,156,20,180,14,122,6,205,1,141,248,72,243,249,249,152,254,165,249,68,243,181,239,113,241,
244,249,18,3,110,9,114,12,180,6,193,252,156,251,120,0,135,1,170,1,5,4,76,4,53,1,235,251,70,246,30,245,
209,248,117,253,201,3,116,11,67,14,157,9,215,255,160,244,50,239,27,243,166,250,119,2,96,10,180,10,238,255,124,246,
202,246,74,249,217,248,116,249,46,252,117,255,204,2,67,3,248,1,187,5,166,10,130,6,48,255,228,254,213,254,246,248,
10,246,202,249,84,253,219,254,153,0,76,0,44,252,245,248,184,253,134,8,71,13,218,7,233,1,36,0,24,254,75,251,
215,250,116,254,221,4,189,6,129,2,207,2,21,6,198,253,189,240,60,243,101,2,189,11,226,6,230,250,62,247,117,253,
223,252,153,246,219,253,228,13,15,19,112,12,197,0,131,245,87,243,4,246,179,244,34,249,77,5,113,6,8,253,171,251,
50,1,167,1,224,251,48,245,77,247,141,5,143,16,162,12,182,1,17,249,174,246,174,251,127,0,161,0,254,1,44,3,
239,254,217,251,127,254,163,1,146,2,174,0,60,255,98,7,120,17,153,8,147,243,37,238,141,252,26,13,162,19,248,14,
247,5,171,255,60,250,23,246,27,252,180,8,54,9,57,251,210,243,226,251,233,0,171,248,132,244,107,254,133,7,96,7,
239,4,191,1,242,253,10,255,131,1,67,254,163,250,4,252,175,253,157,253,248,254,93,1,199,1,252,255,66,0,236,4,
213,6,37,1,224,252,29,255,182,254,152,249,255,249,66,1,177,6,137,8,19,10,254,7,115,255,170,249,119,255,243,8,
10,10,202,2,202,248,97,242,27,246,184,254,3,1,124,0,140,3,170,3,100,255,241,253,122,253,143,252,56,1,89,6,
204,2,215,253,171,255,171,3,188,5,102,4,171,253,141,248,236,253,233,7,253,10,185,4,16,249,161,240,209,246,191,8,
38,17,146,6,206,251,102,255,64,5,179,2,247,253,92,248,135,240,51,242,38,0,1,8,30,2,6,252,247,254,211,7,
129,15,91,14,11,3,233,246,224,245,64,1,154,9,22,2,111,248,154,253,28,4,14,251,28,240,42,245,199,3,227,13,
52,16,103,14,226,11,204,8,188,2,178,248,190,239,158,240,180,250,80,3,202,7,168,10,143,4,140,245,50,239,26,247,
45,0,115,2,80,254,48,251,208,3,55,13,51,3,44,243,9,244,195,251,18,252,250,249,155,248,211,249,62,1,218,5,
89,3,255,3,255,3,95,250,170,243,22,247,79,248,50,246,214,249,66,1,210,5,37,3,138,251,112,252,187,6,244,6,
113,250,32,244,253,249,248,2,119,5,199,250,200,236,42,240,198,1,155,9,25,0,74,244,245,244,199,0,138,10,209,10,
213,2,36,244,167,232,180,237,210,249,129,249,43,240,193,235,146,241,154,3,81,22,80,18,114,252,133,245,79,6,143,21,
172,14,152,248,62,237,53,250,123,10,227,4,74,243,22,237,249,242,147,250,153,1,72,6,227,5,235,4,38,7,173,7,
180,2,178,250,252,242,3,241,81,250,89,8,84,12,3,3,195,246,36,241,87,245,78,1,162,12,132,13,95,4,163,252,
10,252,112,250,212,243,102,242,106,250,216,0,91,255,48,253,243,255,44,1,11,249,189,241,211,253,110,20,54,25,31,10,
223,250,136,244,26,250,135,6,181,4,238,244,65,242,188,251,176,253,73,0,12,9,214,6,229,253,145,254,121,255,233,249,
76,249,194,253,184,2,182,9,241,9,6,1,165,255,2,7,63,8,82,3,185,251,239,240,100,240,12,1,224,14,181,11,
157,0,45,246,139,238,111,238,195,246,51,0,103,4,225,5,137,9,123,11,2,6,43,253,75,246,230,243,255,250,43,6,
204,6,56,3,216,12,206,24,222,15,157,247,142,233,63,240,213,252,125,253,139,248,86,253,150,4,89,2,131,254,139,254,
37,253,251,253,137,3,89,6,83,10,120,21,136,24,171,9,236,249,35,245,134,241,210,233,111,232,213,244,9,6,88,13,
155,11,10,14,72,21,124,21,37,12,211,255,136,246,76,249,96,9,157,17,197,1,176,235,204,231,22,244,227,1,249,7,
41,3,172,252,18,3,119,18,22,26,218,19,60,4,64,245,95,244,2,1,85,10,194,6,97,250,4,240,179,244,6,4,
25,7,67,250,98,241,85,245,159,1,39,14,11,11,222,247,197,239,239,252,165,8,73,6,6,0,77,255,112,6,56,16,
174,16,179,4,180,246,30,241,216,244,84,248,114,244,56,242,95,250,125,4,14,9,163,11,159,11,242,4,210,251,239,247,
107,251,120,1,112,4,100,5,121,5,132,0,10,249,9,246,188,245,141,248,241,3,212,13,111,8,240,253,154,254,12,5,
34,2,39,245,132,238,43,248,176,3,27,3,218,255,136,2,122,5,215,6,63,5,176,251,78,243,6,248,176,2,95,10,
177,14,69,11,215,0,117,250,19,251,140,254,138,3,167,4,174,253,14,246,226,245,56,253,172,5,148,5,152,254,184,254,
244,6,122,11,114,11,128,11,12,8,187,255,191,249,255,251,154,2,208,2,83,250,1,243,253,241,57,245,237,251,253,0,
125,0,132,1,142,5,93,6,0,7,216,5,237,249,205,239,105,246,96,255,235,255,254,0,142,0,152,250,191,247,76,246,
63,244,83,254,92,13,146,10,41,252,113,244,114,244,29,252,182,7,128,8,210,255,120,251,45,251,117,253,253,3,27,3,
47,247,218,241,248,248,99,1,178,6,230,6,42,0,103,253,178,6,93,16,223,13,92,2,151,248,166,248,156,1,248,8,
160,6,166,254,111,249,10,248,145,247,193,248,119,251,0,253,86,255,123,2,149,254,70,245,19,243,191,248,11,0,187,9,
107,15,23,7,155,249,193,242,193,239,98,243,150,2,56,13,109,6,0,254,35,0,181,255,225,244,200,237,50,245,181,2,
160,10,214,11,121,9,172,4,85,255,35,252,56,253,136,3,95,10,200,9,226,0,16,247,119,245,235,252,181,255,206,247,
164,247,186,4,199,6,157,249,218,243,11,248,235,254,56,14,97,27,117,20,97,5,238,251,21,244,141,246,115,7,76,13,
161,254,9,242,46,242,122,249,98,3,93,7,107,4,231,4,4,6,242,255,202,249,255,248,33,253,106,7,176,10,253,249,
81,233,223,238,178,255,9,11,73,13,36,5,56,248,103,241,157,243,112,253,20,8,73,7,125,255,145,255,30,2,230,252,
239,247,136,248,58,251,191,3,133,15,235,15,166,3,228,246,75,240,184,243,189,1,145,13,84,10,66,253,196,244,48,246,
238,251,68,0,185,1,20,254,111,246,98,245,173,0,141,13,150,16,84,11,80,4,96,254,112,249,233,246,116,248,78,248,
121,241,43,238,253,245,6,254,6,2,81,9,221,10,27,253,70,242,158,250,150,12,157,26,70,26,103,6,20,241,43,238,
208,243,30,246,181,251,209,1,249,253,115,247,49,249,7,2,155,13,25,19,165,10,249,254,42,253,203,254,187,252,16,252,
35,254,58,255,101,255,134,254,134,252,59,251,184,247,222,239,53,237,96,248,144,8,76,13,106,3,191,247,190,245,253,251,
183,4,65,12,95,13,157,6,6,255,50,250,100,244,89,238,22,237,169,240,11,246,35,252,165,1,251,1,72,251,1,249,
126,7,84,25,52,23,166,7,153,0,31,2,11,3,40,5,208,6,151,1,221,250,7,251,110,254,119,254,168,252,108,252,
117,250,127,244,202,244,243,1,247,11,213,5,239,253,183,0,12,4,117,1,52,0,180,2,65,4,47,1,243,249,11,246,
124,249,205,249,32,241,130,237,86,249,166,7,183,6,176,248,228,238,49,241,4,248,193,255,67,12,39,23,66,20,250,5,
155,248,29,241,52,237,17,236,149,239,247,247,82,2,152,10,167,10,96,254,234,238,218,234,92,241,83,248,248,253,188,3,
250,7,92,10,106,9,128,3,71,252,78,247,94,247,174,255,53,7,22,1,167,245,69,243,13,247,33,251,193,252,115,247,
52,244,226,254,227,12,61,21,68,30,168,30,255,11,118,250,120,248,129,248,169,245,14,246,188,245,150,244,85,248,52,253,
79,0,133,2,170,254,131,248,122,254,4,15,58,26,173,23,186,10,209,255,219,255,185,1,112,251,160,243,181,241,104,245,
86,254,169,7,146,8,176,255,7,245,155,244,179,255,93,5,96,0,40,3,2,14,246,12,175,4,125,4,14,3,61,249,
11,244,43,248,140,253,145,255,45,253,29,251,202,255,64,4,150,0,1,253,253,254,100,253,59,245,192,241,61,250,12,7,
138,12,233,8,243,0,89,249,167,247,162,250,119,250,167,252,70,9,149,15,215,1,88,242,76,240,162,244,218,250,111,0,
91,255,60,253,125,255,5,255,162,252,56,254,147,254,117,252,238,252,229,254,80,4,121,10,72,2,176,243,251,246,10,1,
210,252,5,247,29,249,192,249,99,252,94,2,112,0,2,252,247,252,42,251,128,250,117,1,19,2,201,252,21,1,85,3,
89,248,226,243,40,252,35,0,21,255,239,254,126,250,199,245,49,249,63,253,147,251,173,251,102,255,227,253,151,248,67,253,
205,9,130,10,8,1,88,2,4,9,69,2,185,248,111,251,190,0,45,0,140,251,189,244,80,246,92,4,3,12,172,4,
235,250,49,244,244,246,41,13,54,34,6,25,16,254,195,238,31,241,131,251,159,0,85,251,25,249,91,1,162,8,64,9,
156,3,160,245,41,237,165,249,180,11,55,15,94,8,254,254,17,247,233,249,214,5,152,10,35,2,30,247,165,246,41,2,
115,10,89,3,185,246,127,242,144,245,245,250,197,2,204,11,107,16,19,11,216,254,247,246,180,247,18,251,229,252,153,252,
133,250,221,248,219,246,91,244,105,248,199,1,156,3,243,254,132,255,80,2,160,255,134,251,241,250,118,254,56,5,168,9,
182,7,90,0,197,243,192,233,21,239,169,252,110,1,196,255,67,0,135,0,219,255,86,255,7,253,79,254,248,6,86,13,
10,12,219,7,71,2,203,253,37,254,134,254,42,253,249,255,101,4,194,4,185,2,223,253,97,248,81,251,224,2,45,3,
193,254,239,251,44,252,226,3,163,12,46,9,164,3,154,8,53,10,185,3,177,3,34,4,238,251,84,253,137,11,212,11,
165,250,179,238,6,240,185,251,164,14,164,24,84,13,50,251,107,244,98,247,32,252,205,255,51,1,250,1,237,4,97,7,
105,6,153,4,28,2,217,251,219,246,186,251,139,6,36,11,93,5,3,251,5,245,112,248,160,255,116,1,3,0,203,1,
201,2,231,253,215,249,39,253,195,2,253,4,117,6,85,8,189,5,54,0,54,1,78,8,201,9,21,3,13,253,194,251,
93,253,54,1,109,4,63,2,22,252,76,249,195,254,246,7,207,9,135,2,253,254,199,5,34,11,210,4,186,249,0,245,
223,247,84,254,171,5,43,8,116,255,117,242,8,240,44,248,141,0,84,8,139,14,188,9,118,253,65,250,129,1,58,8,
137,11,43,11,34,4,129,250,27,246,101,249,95,2,1,9,127,4,58,251,129,250,96,255,155,254,182,248,157,244,179,247,
70,6,94,23,163,21,154,0,56,242,248,246,38,3,170,13,37,17,212,5,143,245,243,243,187,251,111,252,230,248,186,247,
231,248,55,2,16,14,168,7,90,245,212,243,178,1,23,9,181,8,206,6,126,255,203,245,215,243,108,249,245,254,244,0,
110,1,208,2,72,3,201,1,38,2,136,3,202,255,30,248,78,244,46,249,165,3,112,7,233,254,250,247,71,251,26,254,
169,254,115,5,164,10,69,6,28,4,143,8,110,6,30,250,114,238,42,236,225,243,177,254,94,5,8,8,208,8,225,7,
105,5,101,0,92,252,172,1,116,12,213,14,57,5,181,245,56,236,254,245,211,7,202,8,138,0,227,2,99,5,50,1,
247,4,225,10,187,4,4,255,65,1,46,0,128,253,43,253,221,247,192,244,216,253,160,5,231,1,75,251,206,246,58,246,
215,252,150,3,77,3,86,0,32,255,202,1,78,7,243,5,88,254,74,0,101,10,152,11,100,2,184,247,157,242,175,250,
185,8,74,9,10,254,139,245,66,238,243,232,27,244,54,10,15,16,219,0,122,247,40,5,48,24,145,22,217,0,180,235,
47,230,214,240,219,255,112,6,223,4,118,255,193,244,62,236,178,242,122,2,95,12,204,11,218,3,93,253,222,0,210,6,
57,4,155,253,92,249,234,247,81,249,107,247,121,242,41,250,37,10,223,9,224,253,164,250,200,251,138,251,48,0,191,3,
194,1,71,1,2,253,87,243,63,245,127,0,176,2,103,255,241,253,155,250,211,252,57,5,255,1,242,247,36,251,79,2,
241,253,94,248,28,252,115,3,78,5,20,254,6,247,50,252,90,6,10,7,129,254,54,246,79,248,211,3,41,6,19,252,
130,250,21,255,36,247,161,241,201,255,104,12,243,8,48,4,83,3,30,0,166,252,107,249,49,246,43,249,205,255,16,1,
98,255,175,255,87,255,48,255,0,4,218,10,49,10,89,0,231,249,246,253,184,255,78,248,92,245,39,252,234,2,37,7,
152,8,175,3,70,255,152,0,237,255,125,254,148,2,86,2,255,249,86,248,175,254,109,0,3,255,108,0,65,0,97,253,
27,253,252,255,114,3,90,7,228,11,205,12,137,4,109,249,35,248,27,251,173,244,174,237,246,245,8,7,63,17,56,15,
78,5,173,255,135,5,40,13,156,13,179,9,73,1,104,244,179,237,248,241,91,249,198,255,196,4,13,4,220,254,211,252,
152,255,76,3,25,6,106,7,31,6,206,2,199,255,36,253,107,249,4,248,66,253,112,4,51,8,142,10,26,8,8,252,
18,244,88,254,0,14,102,16,226,7,92,1,148,3,63,8,180,2,14,248,172,251,9,11,91,17,67,10,59,255,208,246,
173,245,165,249,79,252,39,1,190,7,243,3,127,251,245,255,232,7,47,2,73,249,217,249,11,253,231,253,212,253,253,250,
19,249,105,254,241,4,106,3,123,253,245,253,4,7,80,13,94,8,255,1,184,3,246,3,12,252,233,246,118,249,149,251,
223,251,119,254,61,1,223,2,167,5,126,6,99,3,158,4,228,12,101,14,64,3,140,251,106,255,80,1,53,253,197,253,
157,255,41,251,202,251,234,6,208,12,38,7,209,254,250,247,79,248,125,5,137,17,202,13,96,4,163,1,224,3,20,9,
214,9,14,250,21,230,85,231,38,249,58,6,22,12,234,11,68,254,37,236,12,234,122,247,230,5,37,15,26,16,176,8,
216,3,109,5,143,2,64,251,112,249,16,249,240,245,103,249,12,1,37,255,37,248,20,248,140,252,107,0,223,1,23,0,
76,3,107,12,254,8,45,249,8,246,11,0,119,3,168,0,51,253,48,246,233,243,33,251,213,255,12,2,225,8,37,10,
40,3,240,0,231,1,75,0,33,2,214,2,183,252,194,252,4,3,194,255,219,251,193,5,147,14,142,9,239,0,17,252,
251,250,222,254,194,2,113,1,222,253,249,249,83,246,78,246,75,249,220,251,32,253,198,253,124,2,231,11,83,13,235,2,
227,251,117,252,251,251,12,253,151,0,23,253,4,246,80,245,240,246,151,247,21,251,183,255,211,4,11,11,43,11,202,6,
215,9,199,14,5,8,72,251,165,243,7,242,220,245,254,251,27,254,255,252,44,253,64,0,31,6,14,10,62,8,209,4,
196,0,232,251,195,254,143,5,134,255,47,245,248,250,78,6,129,6,201,4,42,8,27,8,117,2,93,252,87,250,91,255,
9,5,56,3,123,255,45,0,223,255,152,250,104,246,18,253,124,13,210,19,178,5,32,247,164,246,104,251,56,3,114,12,
144,7,226,250,117,253,239,4,124,254,181,248,23,252,140,248,53,242,31,252,133,12,225,10,229,248,251,239,68,252,64,11,
49,11,143,5,199,4,222,2,107,255,44,255,129,253,58,249,168,247,115,248,141,251,201,0,92,3,17,8,22,18,186,15,
181,253,103,245,100,251,21,255,232,2,144,8,100,2,222,246,0,247,69,251,76,249,53,248,10,253,40,4,85,7,84,2,
9,253,184,255,54,3,5,4,31,6,219,1,78,247,56,248,40,2,142,2,189,252,244,250,207,251,126,2,206,12,35,10,
126,251,184,245,117,254,208,7,136,4,140,249,157,252,238,13,41,16,113,0,168,250,161,0,254,1,100,0,38,254,214,250,
179,0,53,10,179,6,76,1,66,6,179,6,92,0,78,0,14,0,180,251,168,254,181,2,206,254,167,255,216,5,146,2,
113,252,119,254,37,0,200,254,226,0,251,1,64,255,24,255,163,0,190,255,214,254,9,255,0,0,28,2,85,0,167,249,
36,249,41,2,117,7,29,2,25,252,172,253,119,1,76,1,108,0,142,0,213,253,215,251,60,255,1,0,172,251,213,252,
111,0,89,252,163,251,176,6,131,12,191,5,100,1,115,3,194,2,42,254,47,250,41,251,81,1,151,2,12,253,198,0,
32,13,34,11,59,252,50,249,62,2,237,4,52,1,172,255,78,253,155,249,140,252,115,4,69,7,216,4,218,2,172,0,
68,255,8,3,126,5,118,254,28,248,239,252,115,2,140,255,16,253,97,0,95,2,115,255,224,251,23,252,143,255,97,0,
38,253,138,252,118,255,45,1,71,4,249,8,141,6,162,255,40,0,36,4,178,0,69,250,100,249,202,252,224,0,228,3,
251,4,229,5,27,7,50,6,40,3,102,255,60,252,74,253,33,2,52,3,138,254,142,251,28,254,101,1,114,0,82,254,
30,1,27,4,82,255,112,252,197,5,118,12,174,4,100,253,22,255,118,0,204,2,123,8,253,4,154,250,201,251,90,4,
6,4,50,255,59,254,126,253,159,253,246,1,33,5,11,3,125,254,208,251,74,255,190,5,70,6,158,3,118,4,157,2,
90,253,28,0,97,6,174,2,119,252,117,254,201,0,25,255,72,1,164,6,130,6,219,255,17,249,193,247,103,250,198,251,
235,254,135,8,62,15,151,9,188,255,37,252,135,252,215,251,185,251,75,0,238,6,143,6,133,255,207,252,25,255,45,254,
230,250,115,248,83,247,178,253,144,8,63,8,138,0,35,2,219,6,9,4,32,2,106,3,92,1,57,1,148,3,226,254,
5,249,238,251,153,0,22,1,155,254,140,247,153,242,168,248,139,1,200,5,164,8,28,5,200,250,124,250,62,5,189,8,
251,2,158,254,72,255,5,6,218,12,14,9,185,0,113,254,86,252,9,249,227,252,52,2,150,1,170,1,158,1,41,251,
174,248,2,2,248,8,30,3,143,251,150,254,129,6,57,6,11,0,227,255,22,2,83,253,25,250,48,0,185,5,236,4,
58,2,151,253,233,248,28,251,10,1,194,0,23,249,180,242,203,246,201,1,94,6,243,4,213,6,215,6,10,2,29,4,
240,8,133,1,242,247,248,250,173,0,97,0,135,255,160,253,93,248,208,245,7,250,228,2,242,8,167,3,251,250,173,254,
39,7,238,4,182,0,190,5,86,9,119,2,251,250,246,252,119,3,118,4,37,1,19,1,89,2,81,0,59,254,9,252,
20,247,214,246,203,254,241,4,163,5,244,5,152,6,234,7,221,8,63,5,44,3,8,7,25,3,33,246,36,244,123,253,
45,3,128,6,5,7,148,252,97,242,255,245,173,254,121,3,143,4,64,1,248,255,253,4,72,6,175,3,214,6,17,8,
67,1,217,253,85,253,129,247,153,245,132,252,157,1,205,2,239,2,95,0,250,255,219,2,58,0,140,251,104,254,196,4,
235,9,142,12,8,8,62,3,128,6,179,4,225,248,172,245,243,252,196,255,164,255,165,1,39,2,213,3,241,5,225,0,
187,250,138,249,194,244,191,239,130,247,179,4,200,8,68,3,3,250,55,246,74,253,252,4,5,6,7,7,254,7,82,5,
213,3,44,1,250,248,4,246,166,251,182,253,228,252,57,1,98,5,13,4,39,255,18,250,142,253,20,9,54,11,162,2,
150,255,139,0,205,254,171,2,104,9,33,7,91,2,143,1,36,254,130,252,2,3,89,6,41,1,80,252,100,249,41,248,
10,254,131,5,193,3,37,252,55,248,250,250,218,1,168,5,124,2,231,254,2,0,173,1,21,1,145,0,108,1,164,2,
142,2,157,0,189,254,12,255,131,1,224,2,68,255,133,250,213,251,105,254,221,250,226,248,3,255,44,4,54,3,55,2,
132,3,143,5,143,6,216,1,58,249,122,245,252,245,52,246,36,250,113,0,30,255,139,247,232,243,53,245,166,246,160,247,
35,250,230,254,237,3,118,7,226,9,244,7,80,254,61,245,178,246,29,254,231,1,6,0,137,251,134,250,164,255,163,2,
116,253,14,247,26,246,147,249,75,255,64,4,102,6,15,7,249,3,102,251,129,245,13,247,70,249,175,250,92,255,166,2,
124,0,101,255,196,2,165,3,15,252,138,240,193,236,112,244,136,254,159,4,98,6,69,0,21,246,193,245,249,253,18,0,
78,252,154,251,222,253,137,2,8,9,1,10,92,5,248,3,9,6,41,6,132,2,245,249,166,242,37,246,186,252,49,251,
35,250,187,254,102,254,99,251,13,0,106,5,38,5,2,6,11,6,129,0,48,254,63,1,42,1,66,2,125,9,201,10,
232,2,138,255,175,0,57,250,42,239,25,235,213,239,148,249,37,3,143,5,174,1,117,0,222,3,247,5,23,5,250,2,
89,255,184,253,243,3,234,12,132,12,177,2,229,249,96,246,151,246,142,251,124,3,186,6,97,2,163,252,3,252,69,0,
219,3,210,3,154,3,135,3,44,254,100,248,101,254,253,9,116,10,6,3,215,255,19,255,191,255,21,6,84,8,162,254,
123,246,218,246,69,246,183,246,37,253,29,254,115,247,59,247,215,253,136,3,234,9,86,13,137,8,18,4,212,1,39,249,
73,242,114,248,1,1,69,3,26,4,121,1,154,250,252,250,33,4,152,9,238,5,114,252,216,243,43,245,65,0,212,9,
220,10,151,5,111,0,101,255,35,253,6,246,133,244,231,253,252,5,134,5,146,1,18,253,101,251,22,1,166,7,236,5,
1,255,54,250,69,250,176,254,193,2,87,2,50,0,208,255,51,1,110,3,110,4,115,4,86,5,170,0,236,242,155,236,
111,249,92,8,163,8,108,0,193,247,141,240,248,241,119,253,60,6,198,5,23,5,25,9,133,9,105,1,244,249,67,252,
44,2,255,255,143,245,181,236,175,237,182,247,255,1,210,7,242,11,214,9,58,251,195,239,16,250,59,12,218,15,253,9,
166,5,171,255,198,250,106,254,159,1,143,250,209,243,149,249,254,5,61,13,49,12,98,6,13,0,200,252,188,254,60,3,
179,3,147,254,40,250,237,250,192,254,2,3,252,5,213,2,120,248,190,242,206,251,218,7,249,5,119,252,30,251,132,1,
187,7,48,10,237,4,76,248,72,237,112,236,156,249,248,12,69,16,244,253,71,239,53,243,88,254,48,7,230,7,75,253,
183,248,138,4,169,9,207,254,219,250,81,0,79,253,20,247,37,251,52,3,34,4,5,253,38,247,1,253,211,7,83,9,
77,5,137,3,125,255,85,250,28,251,223,254,152,1,185,2,140,255,243,252,233,1,251,6,18,6,104,4,27,0,58,247,
88,246,148,1,153,10,110,9,139,3,115,255,117,255,196,0,201,0,237,255,109,250,9,242,24,246,88,7,3,17,96,13,
59,5,21,247,90,233,29,237,76,249,59,249,173,244,185,248,21,255,176,5,180,15,132,19,32,11,35,253,45,238,200,230,
14,242,203,5,194,15,76,17,237,13,132,0,120,241,187,239,77,250,165,8,127,16,139,6,205,244,131,243,138,255,69,3,
30,255,202,255,109,4,166,6,79,3,249,249,253,242,61,247,111,0,121,4,242,5,157,8,77,6,242,253,94,251,250,1,
78,4,229,252,141,246,185,246,105,251,67,5,58,13,125,8,220,252,74,244,33,238,49,240,194,0,168,16,129,18,188,14,
170,10,3,4,5,2,2,7,69,9,220,7,203,4,26,249,214,235,167,241,96,6,83,16,146,8,163,253,190,250,125,255,
65,2,217,251,235,246,192,254,250,6,255,4,159,5,51,11,58,6,152,252,28,255,51,6,118,7,102,7,83,5,89,2,
254,5,16,5,144,247,230,244,117,3,117,7,10,255,21,1,67,10,253,12,39,12,68,9,123,4,57,4,194,4,179,255,
227,253,66,3,171,2,122,247,117,241,248,251,160,6,129,251,116,234,147,244,127,15,158,21,39,4,198,245,25,249,30,7,
236,12,210,2,140,250,68,255,46,2,231,252,31,251,232,253,61,255,162,3,73,14,74,22,93,16,192,254,14,245,109,252,
0,1,97,247,167,242,163,251,194,2,123,2,241,1,206,3,156,10,39,17,214,7,154,246,100,249,103,11,19,14,200,254,
247,240,195,235,92,239,21,251,39,4,81,2,9,253,110,255,215,11,14,24,154,20,54,3,207,246,166,247,34,0,36,10,
43,12,90,2,138,249,172,248,36,248,204,247,203,250,121,253,170,2,79,9,187,3,10,249,89,255,111,12,187,9,226,255,
46,254,138,2,215,9,70,14,254,5,225,248,74,247,69,254,136,1,151,255,206,252,26,251,253,251,23,2,111,11,200,14,
182,7,68,253,17,247,237,250,72,11,213,24,19,18,167,2,184,253,183,254,192,254,210,2,25,8,216,5,73,253,5,247,
28,251,235,6,242,11,245,5,92,255,202,252,81,255,230,8,55,14,42,6,232,254,252,1,53,4,37,2,107,2,83,1,
167,252,89,253,24,4,161,6,122,2,248,253,58,252,249,251,190,251,45,251,51,254,216,9,190,21,37,16,95,251,250,238,
15,245,100,2,225,12,184,17,69,16,193,8,14,250,58,234,7,233,226,245,59,253,173,253,31,8,141,26,105,33,71,20,
99,252,251,235,191,239,247,0,199,14,151,17,246,11,138,1,117,244,25,234,35,236,207,249,241,3,194,7,142,19,234,34,
209,29,197,3,122,239,145,239,240,250,69,5,157,9,213,7,191,3,162,1,230,255,61,250,17,242,127,238,83,247,81,13,
118,32,111,27,153,0,210,232,254,228,123,241,216,255,169,5,168,7,152,13,159,16,228,8,27,252,253,241,189,238,228,242,
44,247,85,252,121,13,250,30,182,23,226,254,251,238,10,240,121,253,68,13,238,17,2,14,20,10,35,255,217,238,236,234,
56,242,146,248,178,1,42,12,186,10,148,1,204,253,149,252,196,249,21,250,141,251,248,248,15,249,88,2,179,9,80,1,
38,241,151,237,132,251,230,12,228,17,155,6,84,248,239,247,106,1,140,1,146,245,180,239,7,250,122,7,56,10,140,8,
76,9,186,2,255,246,210,251,78,13,14,13,154,249,17,239,86,246,82,0,97,1,49,250,147,244,91,248,120,254,153,253,
243,252,155,4,113,9,247,1,196,252,201,5,132,12,102,2,24,245,224,243,156,252,116,8,0,15,90,10,87,1,244,248,
68,239,152,239,171,1,179,16,151,12,92,1,238,250,13,251,246,0,141,3,96,254,249,251,102,254,83,254,42,255,116,2,
251,0,131,252,198,248,215,242,30,240,175,247,211,3,21,14,84,18,81,11,129,0,192,252,243,249,65,246,96,255,51,17,
222,20,80,7,99,249,97,242,226,238,110,241,125,255,14,17,88,21,166,11,219,2,234,254,57,249,164,245,51,252,78,9,
195,20,132,24,212,14,181,251,84,238,109,236,238,238,253,244,181,0,74,9,115,7,16,255,14,245,234,240,62,250,204,5,
47,5,55,3,25,9,154,7,255,249,110,241,201,244,11,252,19,255,228,251,148,252,54,6,231,8,40,0,68,252,127,250,
191,242,55,249,109,18,154,27,125,7,188,242,188,244,180,8,152,22,190,10,138,242,26,234,17,243,153,254,71,5,127,1,
221,245,231,244,169,4,135,16,160,9,156,252,171,251,181,3,36,4,244,248,194,237,51,236,146,243,127,252,211,1,122,5,
133,6,84,0,88,250,226,254,232,7,13,14,144,17,89,11,25,250,104,238,236,237,37,239,91,243,84,252,250,1,61,7,
112,16,203,15,164,1,66,249,183,254,5,8,28,14,162,12,69,3,202,252,224,252,177,248,117,240,177,239,163,244,177,249,
76,4,89,16,225,14,164,3,161,253,113,252,126,251,69,253,175,255,177,255,103,253,104,245,178,238,42,247,124,1,137,250,
134,244,60,0,3,10,214,6,244,2,142,255,139,250,237,250,190,253,223,253,138,255,213,254,157,248,92,249,235,1,247,3,
53,1,140,1,145,254,241,247,56,249,142,0,81,0,132,247,39,243,131,250,58,6,107,12,206,11,185,7,111,4,204,5,
190,8,193,5,224,251,78,242,100,242,111,252,147,1,26,249,211,240,137,243,218,248,182,251,244,2,214,17,7,32,8,29,
199,5,178,243,97,248,201,1,72,1,218,255,239,253,245,245,25,243,125,250,254,253,189,249,67,250,169,4,52,17,117,21,
42,13,37,0,154,250,188,254,230,4,250,5,15,1,44,250,52,246,27,248,209,254,159,3,123,0,199,250,13,255,143,13,
6,23,202,19,64,13,202,8,242,1,31,252,218,252,30,253,179,248,159,246,79,248,120,250,88,254,172,0,81,252,241,246,
27,249,64,4,4,18,255,20,125,9,126,254,18,252,59,251,47,251,28,253,205,251,24,251,233,0,0,5,55,2,103,254,
82,251,153,249,120,251,29,253,227,255,254,10,42,22,61,19,39,6,4,252,163,252,56,7,70,14,206,6,12,251,60,249,
250,254,235,2,8,1,98,251,145,247,242,248,192,254,94,5,150,6,108,2,224,1,69,6,31,7,172,2,169,252,40,247,
29,247,254,253,79,3,26,3,64,3,230,5,179,6,236,2,139,252,235,247,49,247,106,251,134,5,204,12,182,5,91,250,
7,253,211,5,99,5,108,6,164,18,172,21,117,2,184,241,109,248,27,5,122,3,225,251,207,249,79,249,148,248,170,253,
198,10,117,25,144,27,92,11,60,251,51,251,97,255,39,253,86,254,127,4,37,2,169,245,82,237,11,242,122,250,47,250,
176,250,72,10,160,25,230,20,195,7,49,1,251,252,86,252,130,5,122,14,106,11,146,0,197,247,24,246,79,250,213,253,
33,252,32,248,56,250,0,8,16,24,129,24,176,8,211,251,132,254,57,7,102,4,249,247,121,247,117,7,225,17,233,10,
217,252,29,243,30,246,28,6,252,15,38,6,45,248,163,247,1,0,250,5,220,5,161,2,37,2,128,5,1,7,198,2,
35,252,143,250,201,0,204,7,35,9,6,7,169,3,217,253,204,247,170,245,183,249,96,3,164,10,80,5,35,247,51,240,
7,247,82,255,221,254,110,0,114,13,79,22,1,15,74,5,4,1,240,250,92,249,68,3,59,9,96,2,48,251,158,248,
158,245,25,245,64,249,147,253,58,2,219,8,182,12,137,10,172,6,204,7,216,14,9,18,40,6,171,241,110,233,52,244,
27,2,140,5,7,1,136,250,68,246,57,250,44,6,213,16,171,18,244,11,59,6,114,11,178,17,134,8,127,250,12,249,
217,250,11,246,182,244,12,250,1,254,55,255,16,0,110,4,174,13,9,15,44,3,140,252,38,0,132,252,139,242,77,241,
219,247,243,0,20,11,159,13,86,6,39,1,197,3,224,7,93,6,192,253,0,246,126,247,207,253,244,1,38,5,177,7,
242,5,170,254,215,245,91,246,64,6,33,23,189,22,33,8,199,250,211,246,132,249,164,250,2,247,53,244,238,245,241,250,
119,2,4,8,142,5,239,255,110,0,97,4,85,3,54,254,27,252,92,254,47,0,77,254,0,250,38,247,2,248,180,249,
173,250,231,0,36,13,57,19,36,12,49,255,241,245,48,246,92,254,45,4,141,3,70,1,27,253,51,248,209,247,149,245,
5,238,134,239,17,252,24,4,131,5,206,2,224,247,114,240,72,249,209,5,113,11,54,14,34,10,207,253,69,246,133,248,
47,254,145,1,61,253,235,244,209,243,135,248,165,252,163,255,254,251,73,245,8,254,212,16,122,20,36,9,4,253,210,244,
100,249,37,9,162,10,40,248,153,235,176,240,68,252,10,4,62,3,122,254,128,1,113,11,37,16,110,11,225,2,79,254,
82,255,74,254,114,251,174,0,2,7,113,0,250,248,185,255,159,7,174,5,202,4,246,7,57,7,242,5,54,7,19,4,
61,254,124,251,176,248,231,251,88,14,163,27,73,12,190,242,140,237,235,252,189,15,103,22,74,11,91,252,244,246,51,245,
235,244,29,252,148,2,247,255,23,253,17,0,165,3,154,0,83,245,60,243,180,9,243,28,247,13,138,246,19,250,132,11,
60,15,135,0,40,240,50,248,182,20,75,28,103,4,126,240,238,238,21,243,80,252,251,5,106,1,65,248,235,253,216,9,
66,10,15,1,179,249,87,250,147,1,175,6,45,1,164,245,28,245,118,4,131,12,242,251,144,233,122,239,192,255,24,3,
13,253,225,248,215,249,128,2,82,12,37,8,47,249,239,244,164,1,1,14,159,11,11,0,195,248,29,250,100,1,189,9,
131,8,15,252,34,248,13,3,19,5,109,250,52,252,218,7,62,6,95,253,65,251,150,250,190,252,169,6,202,11,224,6,
211,1,112,252,31,246,136,247,138,253,233,255,89,0,173,253,178,248,126,249,157,249,186,243,8,250,150,11,235,11,115,255,
22,2,73,14,129,17,74,14,25,9,72,2,218,253,98,249,185,243,127,244,102,248,32,248,41,253,196,9,137,12,49,3,
81,254,165,1,213,5,49,9,113,11,169,14,10,25,195,34,212,24,20,255,104,238,90,237,150,238,92,239,16,245,94,251,
253,252,44,253,191,255,157,4,157,7,107,4,7,2,13,12,156,28,30,34,123,23,212,5,235,246,89,238,56,236,208,241,
186,251,31,0,87,0,8,7,191,13,102,6,133,248,181,244,166,253,186,12,89,23,97,20,11,8,62,253,195,248,223,250,
242,253,97,249,69,240,74,238,53,248,231,7,6,15,216,7,121,2,12,8,178,9,90,3,153,1,139,2,163,255,5,254,
17,253,200,249,156,250,247,253,247,251,138,248,49,248,103,249,210,252,146,254,1,253,162,2,164,12,251,9,33,0,141,255,
115,3,84,3,151,1,175,253,185,248,36,251,25,6,24,15,57,10,84,249,237,239,45,246,147,252,133,254,59,4,71,5,
192,253,246,254,117,8,136,7,3,255,31,252,202,254,115,5,13,12,12,8,131,253,185,250,91,253,89,251,156,247,130,249,
6,0,16,5,6,5,221,0,217,251,55,251,37,2,163,9,244,9,90,8,36,8,178,0,122,243,231,238,103,245,36,253,
113,1,103,3,197,3,86,1,208,251,178,249,254,255,158,6,203,5,61,2,30,1,79,2,112,4,148,2,150,251,179,247,
36,248,240,245,143,244,152,249,52,254,46,254,32,254,29,253,112,249,59,250,109,2,245,9,229,11,150,12,82,14,108,10,
186,253,131,245,97,254,138,11,36,8,173,249,198,244,87,250,144,252,56,251,164,255,248,6,158,8,139,7,243,9,122,12,
198,9,69,2,55,250,211,247,22,252,29,255,250,253,141,254,136,255,252,250,41,246,225,248,218,255,142,4,203,6,125,10,
214,14,242,9,54,251,246,247,248,8,103,19,146,5,63,245,224,246,108,0,178,2,23,254,209,250,94,253,35,2,140,3,
162,2,135,2,181,1,67,255,251,255,50,8,17,18,169,17,65,7,129,255,234,253,19,254,109,3,208,11,199,7,170,248,
231,245,82,5,185,16,24,10,26,254,180,252,232,3,209,11,5,19,158,18,222,3,11,247,168,253,17,10,26,10,254,1,
22,250,94,248,129,0,65,3,93,245,121,237,233,249,84,4,96,2,32,4,105,10,65,8,215,255,54,252,4,0,20,4,
31,2,105,0,1,5,88,6,120,255,140,251,146,253,173,252,219,248,235,249,84,2,245,10,70,9,237,0,53,2,214,13,
196,18,84,8,175,247,181,242,134,254,225,5,104,251,23,244,108,253,42,7,16,9,127,8,110,5,192,4,241,8,162,5,
2,254,78,2,157,7,42,0,39,252,213,2,91,4,199,254,23,251,8,251,111,2,122,14,94,15,154,4,239,252,223,249,
12,248,123,254,97,12,63,18,137,8,31,252,59,253,16,7,188,6,31,251,85,245,236,250,156,2,130,7,26,11,49,12,
116,6,243,250,59,245,151,252,91,5,111,3,85,254,55,0,196,4,83,5,250,2,156,0,82,255,140,255,188,0,20,1,
49,255,251,252,13,254,73,1,202,1,232,254,178,252,49,254,96,2,135,3,96,253,108,248,117,1,151,15,195,11,44,250,
99,246,153,0,20,1,153,249,204,250,91,254,96,252,48,253,119,254,28,250,42,252,207,5,196,4,243,250,133,249,125,254,
162,255,180,252,210,249,95,252,93,2,82,1,193,252,109,255,98,1,193,251,130,249,42,253,219,255,121,3,24,6,31,2,
218,253,118,252,3,249,36,248,97,252,189,252,2,249,150,248,134,253,198,6,56,9,47,252,59,245,190,3,227,12,147,2,
249,252,18,2,195,1,229,252,201,248,104,245,120,250,131,5,52,8,7,5,64,4,116,2,198,1,138,5,71,5,251,0,
111,2,109,6,134,4,122,254,195,250,77,253,2,1,16,255,46,255,14,5,217,2,186,251,155,1,186,10,129,7,215,2,
171,1,33,253,126,253,242,2,191,255,140,254,200,10,95,13,83,253,7,246,77,0,7,9,219,8,123,5,126,2,150,1,
187,0,40,255,132,1,207,4,219,1,31,254,33,255,83,254,175,251,61,0,108,9,76,12,249,6,94,255,90,251,56,253,
184,0,177,0,54,255,188,255,154,0,27,1,132,2,50,2,85,255,44,255,24,2,16,3,68,3,186,3,236,254,245,248,
84,253,157,5,107,3,38,253,42,255,40,3,134,1,234,0,117,3,150,1,62,254,15,2,43,5,73,254,183,250,156,4,
76,11,23,4,188,252,76,253,76,1,224,6,30,7,15,253,196,246,106,251,48,254,176,254,126,4,148,6,164,2,113,3,
93,4,90,0,80,1,228,3,134,255,231,254,176,3,170,1,129,0,127,7,40,7,46,254,160,252,200,255,32,254,208,251,
225,251,114,254,89,5,217,9,4,6,26,1,39,1,164,4,242,8,61,8,27,0,210,248,217,248,96,254,159,4,191,5,
126,2,180,1,202,1,239,255,18,2,170,6,226,7,249,10,150,12,10,1,114,245,224,250,253,2,61,1,2,2,24,9,
147,10,190,2,200,248,90,247,88,0,107,4,14,253,185,250,183,2,144,6,211,3,135,3,21,6,156,7,118,5,52,255,
72,252,45,1,192,4,18,1,180,252,72,251,180,248,192,244,33,246,204,255,223,8,140,7,134,255,153,250,208,252,190,4,
247,9,93,4,95,252,203,252,12,253,100,246,79,245,168,254,39,5,219,2,111,255,242,255,20,3,239,6,134,9,2,7,
50,254,58,246,159,246,214,252,193,2,128,4,32,255,207,248,239,251,107,2,110,2,143,3,165,8,124,6,33,1,2,4,
193,5,189,254,111,252,180,3,153,6,200,255,220,249,49,253,150,4,104,5,141,1,143,4,178,12,254,11,150,255,21,244,
187,245,220,1,47,8,84,1,150,249,237,249,66,252,83,254,73,5,211,13,203,14,72,7,59,254,80,249,17,249,116,251,
235,253,158,253,174,250,89,248,95,248,46,253,70,7,248,10,181,0,163,249,244,1,61,8,182,2,229,0,205,5,211,3,
210,252,232,251,139,0,59,5,107,5,169,254,123,249,140,254,141,4,251,1,61,255,81,0,192,251,199,245,59,251,14,2,
165,253,238,252,148,6,79,5,229,248,134,249,30,3,221,2,25,0,10,3,110,3,13,2,170,1,56,252,182,248,111,254,
208,255,5,251,176,255,57,7,96,3,137,254,133,1,240,3,228,3,104,5,138,6,157,4,190,252,198,241,241,242,33,2,
67,8,43,252,15,243,141,251,24,8,52,8,69,2,17,4,141,8,40,7,211,5,7,3,130,247,17,242,178,251,105,255,
244,249,171,0,211,12,27,11,242,4,220,4,35,4,142,1,139,254,140,250,150,252,94,3,77,3,41,254,156,249,222,245,
59,252,66,10,139,8,230,249,171,247,162,254,23,0,228,255,105,255,152,255,100,8,3,12,161,251,188,240,119,254,36,12,
64,10,15,5,178,254,180,246,66,249,118,3,100,4,38,254,48,254,65,2,21,1,230,253,12,0,173,3,218,3,236,5,
54,10,108,7,121,255,205,251,198,250,209,250,167,254,167,253,129,245,30,249,170,10,61,17,114,7,235,255,203,254,53,252,
220,249,121,251,134,255,188,3,80,4,19,1,220,0,67,3,222,0,78,254,140,3,77,8,101,4,238,254,94,252,224,250,
176,255,206,9,26,10,8,255,137,249,145,254,103,3,17,3,229,0,110,255,99,254,252,254,170,5,169,13,185,8,210,251,
150,250,98,255,84,251,86,251,83,7,32,11,10,2,138,253,107,255,35,255,17,254,102,0,142,6,98,8,21,253,30,243,
140,250,166,2,219,254,125,254,186,2,177,1,163,3,230,6,51,0,156,253,81,6,135,7,81,3,171,4,47,253,102,240,
45,248,151,9,14,10,217,1,154,255,84,255,142,254,129,0,180,6,121,11,161,1,2,240,46,241,100,0,61,0,124,245,
135,250,52,12,58,16,100,252,173,232,19,242,136,10,239,14,80,2,114,251,250,251,25,0,167,4,205,0,112,252,141,3,
153,8,191,3,203,0,183,252,17,245,13,250,253,5,162,4,171,255,76,2,154,0,60,252,153,0,194,5,90,6,166,7,
116,2,201,244,132,242,85,2,121,15,131,12,201,4,200,5,206,8,226,255,126,243,129,248,67,9,18,13,128,2,211,251,
6,252,108,251,43,254,37,7,129,11,139,8,31,7,159,4,188,253,208,254,129,7,209,5,152,253,104,255,165,2,136,252,
152,250,172,3,38,10,32,8,133,4,0,3,211,3,138,5,12,1,126,244,21,239,169,251,100,7,216,255,215,247,254,1,
137,11,61,6,197,0,0,1,39,255,128,252,55,251,91,252,35,3,47,7,22,6,105,14,214,20,167,2,28,241,90,249,
121,255,39,249,168,2,202,19,133,16,86,5,194,3,12,4,97,3,223,3,139,2,20,5,242,11,78,8,29,252,246,250,
8,3,61,2,209,252,52,5,43,18,218,9,181,246,205,248,128,8,141,10,221,5,215,7,229,5,54,254,225,253,193,4,
81,9,127,5,180,251,133,250,114,3,151,2,220,249,65,254,119,8,48,8,65,5,190,4,178,2,26,4,28,5,152,254,
64,0,42,14,141,14,148,255,144,250,200,255,7,2,45,5,2,8,134,2,132,0,202,10,243,13,35,0,68,247,237,255,
168,9,3,7,109,253,32,248,108,254,223,9,25,10,255,0,182,255,18,4,96,2,116,0,0,3,25,4,177,6,147,10,
159,4,96,251,186,252,52,0,83,1,3,11,68,18,204,4,39,243,163,243,77,254,108,5,129,6,245,255,73,248,97,253,
124,9,235,7,252,252,109,1,227,16,212,12,200,244,254,231,45,242,207,3,88,12,33,3,167,241,165,239,43,253,215,4,
202,8,44,21,99,24,4,3,24,238,246,243,69,6,124,10,170,3,231,2,174,2,245,245,190,234,85,245,150,12,44,25,
64,17,74,252,234,237,153,241,138,251,64,1,215,7,111,12,56,6,68,252,88,247,12,245,20,248,107,4,90,14,51,9,
33,252,248,247,186,255,45,6,90,5,179,6,139,9,211,0,205,243,85,247,54,6,243,9,251,255,222,246,137,248,146,4,
45,14,69,7,31,250,153,252,241,6,123,3,77,252,242,2,147,8,253,1,18,0,155,3,215,251,220,242,29,249,246,2,
48,6,195,6,72,0,36,246,76,251,126,9,142,5,151,243,251,239,98,253,106,4,93,251,227,241,15,245,214,252,198,254,
116,254,111,1,6,6,133,7,239,1,91,249,87,248,142,254,182,2,79,3,34,1,170,249,61,243,6,248,48,4,66,10,
120,4,30,252,218,253,80,5,45,4,227,252,115,252,219,0,90,253,79,239,35,229,84,239,169,5,83,14,145,6,22,0,
230,251,112,243,240,241,135,0,106,16,146,11,104,241,231,221,54,232,3,0,230,9,75,9,187,9,248,2,148,242,70,235,
73,248,48,11,217,14,166,1,96,243,197,236,105,235,156,240,171,252,114,5,235,2,38,249,85,243,227,250,78,10,20,16,
141,8,240,255,218,249,97,243,186,242,201,250,226,1,17,4,49,5,40,255,232,239,28,238,182,4,159,19,215,4,145,244,
98,250,84,5,188,4,37,252,32,244,136,246,187,255,44,254,208,247,103,254,66,5,47,2,27,7,248,14,102,1,54,235,
186,229,117,237,241,250,175,9,150,11,199,2,39,1,64,5,187,5,199,5,198,0,183,237,197,219,111,224,97,244,218,2,
223,9,158,15,109,13,56,2,36,254,208,3,36,5,3,3,221,0,152,242,71,222,170,221,158,241,154,7,69,21,61,19,
123,5,60,255,70,1,12,254,251,251,111,1,7,0,185,243,72,236,125,243,138,3,198,13,177,11,51,7,220,2,138,248,
166,245,34,4,233,12,119,2,8,248,20,249,99,0,139,9,125,11,131,4,96,2,190,0,181,240,30,230,164,247,145,12,
21,11,230,4,149,9,65,11,236,4,246,1,237,1,220,254,78,250,36,242,191,233,7,242,240,6,23,15,28,13,34,18,
164,16,34,255,88,246,89,255,20,5,157,0,161,250,154,246,220,248,154,1,1,7,177,6,199,5,82,4,206,3,171,6,
178,8,224,6,83,1,254,248,64,246,253,252,174,1,171,0,130,4,63,12,39,14,151,11,149,9,53,7,16,4,82,2,
141,1,81,254,82,251,183,0,149,6,14,253,3,242,67,252,242,13,147,17,206,10,212,253,243,240,253,245,156,4,69,4,
123,254,195,1,141,0,135,250,54,255,107,7,239,8,248,9,158,9,121,4,24,2,236,3,201,4,199,3,97,255,38,252,
249,2,6,10,133,3,33,251,201,254,135,5,151,4,232,0,112,3,135,9,96,7,214,253,41,252,188,3,149,7,214,5,
44,5,94,7,73,9,224,2,247,245,193,246,228,6,215,11,213,2,25,2,142,6,152,3,225,5,154,15,7,9,167,244,
43,242,134,3,181,11,110,2,83,249,237,251,208,6,165,13,148,6,85,252,159,254,193,2,208,252,214,252,156,7,41,7,
135,251,48,250,245,1,214,5,120,6,120,6,175,4,241,255,200,248,53,251,203,11,125,16,65,254,195,245,172,3,139,10,
242,1,199,254,122,4,142,6,250,2,253,1,221,8,240,13,26,4,247,246,181,252,90,13,96,14,20,0,131,251,157,4,
194,2,1,243,252,243,212,10,17,22,51,9,143,250,176,250,46,5,88,10,89,4,59,4,197,12,27,5,10,243,231,245,
192,3,68,6,55,9,209,12,152,2,210,250,244,254,122,253,205,0,71,21,71,25,86,3,94,252,1,8,174,6,28,0,
138,6,194,8,47,254,25,249,142,251,97,251,48,1,142,16,248,21,166,14,43,14,198,13,110,250,30,235,181,250,46,13,
101,4,27,246,85,249,131,2,116,7,128,9,164,5,233,1,65,9,124,13,100,253,160,238,35,250,122,10,141,5,77,252,
139,0,70,5,175,4,7,6,18,3,209,251,44,253,149,255,117,249,225,251,196,9,212,11,180,1,120,253,216,254,129,255,
188,254,237,249,23,248,214,1,203,9,92,4,189,254,138,1,8,4,137,4,44,7,30,5,191,249,190,240,108,243,7,251,
188,2,109,11,186,10,101,254,183,252,223,6,122,1,212,242,168,245,131,253,115,250,94,250,106,251,219,244,18,250,110,10,
183,9,17,1,196,6,106,8,177,249,76,241,52,248,50,255,76,252,194,242,145,240,214,252,137,8,240,8,225,5,92,2,
17,254,242,254,56,2,114,3,120,6,178,3,176,245,4,242,237,255,53,3,73,246,254,244,50,1,240,2,40,250,178,249,
203,3,150,11,104,7,50,248,64,237,42,245,83,2,157,253,126,242,156,248,187,4,181,4,211,2,116,6,161,6,168,4,
92,3,156,252,136,247,207,252,27,0,25,253,111,1,125,9,230,7,48,3,54,2,192,254,75,253,50,4,156,3,234,244,
90,242,165,3,173,7,217,246,47,244,219,5,61,15,55,12,233,6,219,251,89,244,68,251,60,0,232,255,224,8,150,7,
249,238,231,233,69,7,73,20,70,2,125,251,0,8,83,8,244,248,209,242,10,253,70,5,18,255,87,245,94,246,37,255,
96,3,51,0,28,2,115,14,153,15,11,252,249,243,231,3,29,9,86,252,113,252,126,7,70,5,234,250,3,248,195,253,
197,5,131,5,241,254,129,0,103,2,115,248,201,247,63,9,217,13,176,253,204,244,53,251,233,2,187,4,33,0,35,252,
228,255,64,1,215,250,235,252,56,8,104,7,193,253,127,2,104,15,202,11,48,252,7,248,92,0,42,5,34,2,202,253,
111,252,58,254,9,0,118,0,50,2,224,2,241,255,173,1,63,9,65,9,171,1,227,254,251,254,79,251,174,247,201,247,
138,253,136,6,103,5,101,250,242,249,87,4,130,7,151,6,13,12,50,16,25,11,253,251,22,228,198,211,200,221,218,246,
77,4,176,0,133,250,206,251,15,1,154,5,214,11,61,18,219,15,193,1,75,239,155,229,53,237,37,251,109,1,106,6,
238,10,251,0,126,244,163,251,213,7,228,7,244,7,24,11,17,7,188,254,135,244,68,235,131,240,32,254,158,1,154,4,
41,15,151,15,171,6,51,5,213,5,20,3,134,3,176,1,1,253,170,1,218,7,28,3,49,254,88,253,204,249,202,253,
59,11,166,11,91,254,176,251,207,3,207,4,111,1,180,5,179,11,31,7,172,250,17,243,16,246,6,254,127,2,124,2,
60,4,169,7,156,3,209,249,239,249,175,5,135,10,88,255,57,241,37,238,222,243,157,249,27,255,176,5,201,5,179,253,
166,250,95,2,213,10,56,14,46,14,227,9,184,2,96,253,154,250,171,250,75,255,4,5,239,6,140,6,118,6,133,4,
114,0,125,0,142,6,30,10,222,6,173,1,154,250,228,241,126,241,188,249,145,254,145,255,82,0,155,252,2,252,51,7,
246,14,79,10,247,6,78,6,4,1,104,254,114,253,183,244,5,241,254,253,117,11,19,13,84,9,239,4,73,2,73,4,
104,6,75,4,208,0,240,254,118,254,152,253,119,254,28,6,8,12,186,4,239,253,180,3,135,4,86,252,105,255,191,8,
179,7,227,6,169,10,144,4,68,252,12,0,33,4,71,2,54,5,78,7,43,255,188,250,93,4,87,15,217,16,169,10,
25,0,64,249,246,255,159,10,243,5,137,250,186,0,39,16,38,13,106,253,189,251,64,7,224,9,89,255,227,249,237,4,
103,17,210,12,69,1,249,0,94,5,157,4,136,5,1,7,35,0,28,250,223,254,181,4,231,6,49,11,203,10,150,2,
60,3,40,12,76,6,11,248,184,252,146,10,50,7,178,250,146,246,46,250,152,7,219,24,246,19,19,253,84,249,208,5,
223,0,6,244,200,251,201,9,56,7,193,1,61,7,21,10,23,3,247,255,78,6,11,13,81,14,23,6,232,244,107,238,
239,254,28,15,25,12,142,3,116,254,164,251,105,4,48,16,4,8,79,250,225,254,122,4,100,253,248,250,199,1,128,9,
173,15,46,7,218,241,200,242,221,9,197,11,67,250,128,250,163,5,90,4,104,2,237,8,225,9,41,4,32,1,223,253,
90,250,77,252,100,252,254,247,212,253,100,8,32,2,199,251,165,14,213,27,204,5,30,241,120,249,47,0,242,246,164,245,
238,254,146,2,120,255,221,250,51,252,135,9,15,17,46,2,126,244,176,253,48,7,18,254,28,246,193,252,30,1,247,249,
148,244,210,247,138,252,229,255,77,3,127,4,245,2,121,0,17,254,193,254,90,0,191,251,3,248,40,255,1,4,113,251,
238,244,203,249,153,254,129,255,130,2,226,5,231,2,245,248,155,243,162,252,227,5,76,255,180,244,157,243,203,248,249,1,
149,6,173,253,66,250,255,4,196,1,59,242,96,246,27,2,41,255,182,255,216,3,16,247,161,239,240,255,219,5,16,245,
235,239,80,253,101,2,155,250,188,248,77,2,120,8,157,1,58,247,127,242,224,242,149,249,132,2,76,3,26,255,22,252,
206,246,57,246,11,255,50,0,40,250,68,1,253,8,235,253,1,245,42,251,71,251,70,243,115,245,41,255,179,3,116,1,
134,252,34,251,63,252,40,247,241,243,18,2,65,18,181,9,155,242,97,236,100,249,217,1,172,255,50,2,92,8,32,2,
66,245,198,243,80,251,13,3,118,12,128,17,254,6,9,244,114,234,196,241,20,5,50,22,53,21,211,1,10,238,67,233,
160,242,108,2,52,18,219,23,152,12,205,251,108,246,34,253,105,5,218,5,153,251,247,240,65,241,221,247,122,1,187,19,
202,32,192,17,126,244,221,236,126,253,84,8,249,254,31,244,79,247,95,251,228,247,57,255,74,21,184,31,38,18,195,252,
160,241,218,245,35,253,111,250,111,250,228,6,218,8,60,249,124,244,118,254,67,0,102,253,151,3,157,8,212,3,71,253,
194,250,38,254,47,7,23,12,105,5,168,250,101,246,72,251,250,5,11,12,45,1,151,237,219,237,83,6,131,21,145,12,
164,3,31,4,97,255,94,248,214,248,126,250,217,252,59,2,66,255,6,248,89,254,82,5,142,250,50,243,50,255,64,5,
241,247,125,239,50,248,216,0,87,1,142,2,82,2,149,250,161,245,247,246,61,244,7,247,196,8,59,13,86,248,106,239,
44,0,118,13,23,13,74,6,247,250,65,249,65,3,175,255,159,243,27,251,140,6,20,254,190,244,174,248,87,254,237,4,
245,11,72,8,153,0,188,1,223,1,253,247,92,241,234,249,92,7,108,9,13,4,103,4,122,6,15,5,15,7,36,6,
181,251,115,250,252,3,165,0,113,249,155,1,193,6,12,2,180,4,174,2,124,244,163,245,54,0,170,245,79,234,106,249,
183,11,60,12,237,4,23,1,189,7,223,16,252,6,216,244,50,246,93,253,44,246,116,244,40,4,193,15,232,11,170,2,
40,253,5,254,3,1,120,0,106,255,89,3,248,10,237,12,29,255,159,236,170,238,159,0,95,8,181,5,107,4,27,0,
57,250,3,253,130,7,111,22,116,31,125,13,70,239,175,238,233,0,142,253,154,243,234,1,212,19,82,17,104,7,217,0,
129,251,128,252,156,3,110,7,4,8,117,7,49,0,41,246,13,246,155,254,241,4,128,7,112,7,44,0,192,247,236,255,
23,21,200,26,177,9,60,251,0,252,33,255,111,0,11,6,146,9,230,3,7,253,171,252,174,0,112,4,133,2,212,250,
15,248,124,254,52,3,158,0,167,254,84,3,26,10,216,7,41,250,55,242,69,250,115,0,213,251,93,255,193,12,104,14,
147,6,114,7,228,11,37,7,46,253,20,247,142,251,170,10,42,19,159,6,97,244,33,243,239,254,249,5,55,7,121,13,
41,19,115,7,31,242,24,239,232,1,126,17,0,14,179,255,24,247,57,249,117,252,1,254,155,7,129,19,240,14,19,254,
230,245,42,251,9,2,100,255,237,246,194,250,113,11,6,15,69,255,77,245,244,252,193,9,11,14,129,4,156,247,26,248,
141,0,226,1,65,1,248,6,75,12,123,10,177,1,177,248,38,250,184,0,177,253,160,248,225,255,96,10,230,10,31,4,
158,254,42,0,202,3,202,254,24,247,37,249,5,0,99,3,234,1,126,252,207,254,166,10,14,7,174,247,92,1,196,21,
248,9,218,243,213,251,12,15,77,15,222,0,187,243,95,245,89,0,127,252,104,241,145,253,43,18,11,13,250,251,123,252,
79,7,35,7,135,252,165,246,5,247,40,243,146,242,69,0,53,8,230,252,87,246,133,254,27,5,131,9,163,11,187,0,
230,246,29,252,37,254,119,250,171,0,70,1,31,243,242,242,254,2,55,5,95,253,78,1,171,8,176,4,120,252,219,252,
171,4,247,4,40,249,104,243,27,252,236,2,62,0,175,252,139,250,214,248,6,250,54,253,100,1,255,3,188,254,4,249,
251,255,74,7,227,253,24,243,203,250,235,8,15,8,117,251,209,248,154,6,94,14,247,1,197,246,170,251,100,254,248,249,
120,1,212,12,188,4,106,249,200,3,207,15,139,5,4,247,199,246,157,248,212,246,161,255,28,17,56,21,172,6,212,251,
204,6,119,25,78,23,163,0,112,242,34,245,220,240,246,224,137,229,94,7,118,28,248,13,8,0,218,8,200,8,73,244,
119,238,221,254,23,6,163,252,205,243,246,241,136,246,26,254,220,1,231,6,234,14,46,8,142,246,170,248,91,9,150,7,
108,249,32,249,167,254,243,249,199,246,163,255,134,7,247,3,247,252,101,251,221,254,25,4,239,3,162,249,249,243,62,0,
161,10,28,2,89,251,158,1,217,0,80,248,242,248,31,251,199,246,35,249,201,0,75,1,160,3,90,13,162,14,108,5,
140,0,56,0,172,252,60,248,209,244,47,241,157,243,238,255,94,11,42,12,204,6,237,0,154,252,213,0,72,10,158,4,
10,242,199,240,117,2,60,9,158,0,226,250,219,249,96,248,27,250,92,0,71,9,177,16,145,12,165,253,15,244,51,247,
30,0,93,5,114,255,32,244,189,244,125,1,124,8,185,3,191,252,129,252,54,4,13,11,42,8,239,255,18,251,48,251,
27,254,149,0,93,2,150,5,181,4,21,253,82,250,70,254,184,254,165,0,60,6,82,0,186,246,68,254,64,6,90,252,
48,246,24,254,68,0,148,252,151,1,5,8,71,4,161,253,53,0,90,9,64,8,252,248,186,240,46,250,212,5,76,9,
116,5,14,251,59,246,95,0,123,8,3,3,234,254,133,1,207,255,10,252,83,254,75,2,136,3,251,4,223,5,128,1,
211,251,195,255,53,10,235,10,154,2,28,255,33,253,33,247,137,248,234,0,68,2,50,1,250,3,191,255,18,249,3,0,
100,8,183,1,82,250,144,253,130,254,164,249,49,249,55,250,29,248,48,253,84,8,148,7,168,254,214,0,145,6,69,1,
3,254,142,4,180,6,6,4,216,2,85,251,227,244,97,254,111,5,148,251,201,247,121,255,255,251,29,243,134,247,237,252,
32,247,233,243,101,250,7,255,208,252,176,251,129,254,141,253,74,248,175,249,158,1,103,3,114,253,163,248,171,249,103,255,
26,3,177,2,204,6,18,10,127,254,214,244,221,254,15,4,147,247,171,245,152,2,223,5,116,1,183,0,125,253,112,250,
147,255,49,5,180,4,0,254,110,242,213,241,21,3,132,10,205,252,42,249,79,8,6,11,43,251,182,244,19,0,65,10,
236,7,194,255,161,250,229,249,224,250,47,253,55,2,98,5,78,254,221,243,208,249,102,11,184,11,96,252,29,253,181,11,
186,9,214,251,107,250,220,253,19,249,110,249,7,2,78,2,39,255,63,6,123,9,201,254,177,248,76,253,130,255,167,1,
166,6,158,2,153,250,231,252,227,255,102,252,27,255,174,5,36,3,95,252,135,247,117,244,7,251,87,9,183,14,160,8,
97,0,25,251,35,253,100,0,144,249,136,244,144,252,87,0,18,253,90,6,218,15,71,2,35,243,2,252,246,8,83,3,
53,250,255,0,78,11,45,5,190,249,183,254,244,9,219,5,233,249,185,249,6,4,145,5,88,245,193,236,213,4,44,28,
46,10,38,242,211,253,82,10,51,251,176,244,253,3,183,5,250,244,118,239,125,252,195,10,133,11,166,0,35,252,148,3,
188,3,228,248,224,250,217,10,148,10,208,245,14,238,116,0,67,17,58,13,140,3,46,2,7,0,121,246,110,240,161,246,
46,1,81,2,175,249,169,247,80,5,29,18,218,12,178,255,18,252,32,255,137,254,111,250,118,247,245,248,145,255,53,5,
64,5,210,3,241,1,42,253,41,253,108,6,224,11,177,6,141,1,121,255,62,250,15,247,77,252,211,1,10,1,10,0,
78,2,201,1,48,252,118,249,228,255,185,8,3,8,193,254,7,251,64,1,92,4,72,0,31,3,241,11,16,7,95,247,
184,242,232,248,207,251,107,249,125,245,63,247,8,3,105,8,51,255,196,254,252,10,40,10,187,255,67,253,241,246,138,235,
64,241,153,1,12,7,250,7,20,14,27,16,176,6,48,250,147,252,55,12,110,9,83,240,37,233,162,249,235,254,4,251,
27,7,155,23,49,20,132,0,176,243,241,252,25,12,217,6,85,247,166,246,207,255,245,2,13,253,88,244,37,249,151,11,
88,15,180,1,245,252,108,253,240,248,82,2,31,18,150,7,143,241,27,242,244,252,64,251,191,244,22,247,101,3,32,16,
196,14,98,0,79,247,210,250,2,1,180,3,109,5,84,4,93,252,213,247,68,2,108,11,54,1,168,246,47,254,33,5,
100,0,226,0,115,7,138,5,85,1,58,4,212,3,206,252,110,253,106,7,134,12,7,9,41,3,28,253,232,251,233,2,
161,4,37,250,194,245,131,254,108,3,241,0,118,2,17,9,228,15,226,16,38,8,118,0,168,255,110,250,88,245,194,251,
34,255,230,250,166,0,234,7,234,3,203,7,142,19,65,13,46,252,160,246,90,250,72,2,198,8,235,1,152,247,31,250,
20,255,177,252,153,251,104,255,77,4,111,5,207,255,134,253,8,5,119,8,202,0,9,246,53,238,93,242,29,2,253,8,
36,6,88,10,213,11,235,1,50,254,123,1,182,0,4,3,233,3,158,247,178,239,139,248,65,1,26,2,29,0,191,252,
93,254,235,4,17,6,106,2,62,253,128,247,52,251,8,3,141,253,83,246,55,249,22,246,16,240,175,247,37,1,59,6,
123,14,112,12,65,1,208,4,36,10,134,253,3,246,249,252,59,252,9,245,81,246,61,253,23,1,102,252,196,250,227,14,
133,30,120,7,46,240,132,1,164,19,226,3,80,241,25,242,89,247,152,250,31,255,10,255,46,249,41,251,242,10,235,19,
102,5,37,244,5,247,124,1,135,1,43,249,107,242,71,246,159,254,139,250,51,243,129,250,69,0,88,250,74,255,96,11,
14,3,142,242,246,243,100,252,72,252,178,250,77,252,181,252,186,251,164,250,233,249,235,253,200,7,241,12,210,5,86,252,
165,249,176,248,30,248,103,250,0,250,179,250,33,4,169,6,162,251,186,252,87,13,54,17,40,5,188,250,89,246,45,248,
189,253,187,255,45,1,92,3,220,0,211,2,115,10,214,3,4,246,29,249,255,0,186,253,26,253,27,1,191,252,110,247,
179,253,201,8,237,7,241,247,78,242,85,7,129,23,163,11,173,254,183,254,92,249,60,241,18,245,75,253,211,254,39,251,
106,252,29,11,23,24,50,16,29,3,98,3,120,5,106,0,119,248,66,240,238,241,198,254,57,1,112,248,1,253,153,11,
17,11,220,251,228,244,92,254,182,4,91,251,87,246,219,253,113,251,148,242,147,248,177,254,250,247,242,244,73,245,5,246,
24,7,133,22,160,6,68,242,158,246,10,1,182,5,31,10,83,7,34,254,155,246,9,239,166,240,236,1,53,13,118,8,
119,2,63,253,61,248,245,253,188,7,118,6,187,253,94,245,198,239,72,240,240,246,126,4,130,22,17,27,236,10,15,250,
139,243,7,241,163,244,155,254,1,2,95,250,151,241,188,242,173,255,1,11,113,11,231,12,15,18,230,7,110,241,227,236,
75,254,86,7,109,252,194,245,56,255,158,2,221,247,157,247,49,6,51,9,235,253,111,250,82,254,134,249,108,242,144,249,
73,5,107,0,203,244,17,249,158,1,108,252,29,250,198,3,112,2,66,243,194,238,220,249,176,5,146,8,77,2,151,252,
8,254,232,253,95,248,4,247,205,252,166,2,255,1,196,253,71,2,84,11,194,6,139,255,149,6,177,5,211,243,201,238,
181,247,152,250,198,1,198,13,9,10,134,2,79,7,236,7,28,2,245,1,65,253,251,243,123,247,33,254,38,248,33,242,
139,247,48,3,69,13,109,11,169,254,118,252,50,10,25,14,39,253,138,242,91,0,161,11,170,253,252,241,12,255,53,9,
18,254,3,247,18,5,226,21,64,16,149,247,69,239,227,255,82,2,175,244,244,254,196,13,162,249,251,233,24,3,237,23,
97,8,255,242,107,242,53,1,228,10,217,2,147,250,216,0,173,2,53,249,180,247,79,254,198,2,208,7,168,7,232,252,
146,248,197,3,119,13,2,7,132,247,202,241,20,250,23,1,208,2,40,6,168,3,79,252,184,0,73,8,115,4,17,3,
19,4,113,248,243,243,76,3,144,7,1,252,219,252,18,2,186,250,83,251,171,9,146,10,57,253,244,250,210,4,172,9,
148,6,233,0,88,250,66,249,157,1,224,4,123,249,250,243,57,3,224,16,74,9,103,253,93,1,2,11,147,7,4,255,
254,4,100,14,17,3,84,242,37,249,168,9,41,9,146,255,60,254,178,3,81,8,155,7,14,3,121,3,164,8,71,4,
233,244,10,241,236,3,231,19,157,10,115,252,79,254,238,0,149,252,247,254,39,3,49,1,241,3,186,5,140,251,38,250,
184,10,96,19,207,10,76,253,75,242,224,243,250,254,55,255,134,252,2,8,87,12,98,255,130,252,208,4,169,2,255,251,
217,248,106,243,10,246,228,4,219,7,23,250,190,247,195,7,205,15,119,4,96,249,141,251,80,1,142,3,232,1,112,249,
133,245,84,3,236,14,198,6,94,255,26,0,230,245,212,235,6,250,222,13,167,9,81,248,131,248,77,11,0,18,66,3,
21,251,106,255,17,250,206,243,57,253,84,2,243,251,124,254,79,4,142,0,193,0,216,6,181,5,70,2,202,2,46,3,
125,3,167,0,49,251,84,254,216,2,184,252,114,253,173,8,222,2,70,242,245,246,112,8,104,12,58,6,196,3,209,5,
18,3,152,245,194,235,31,245,200,3,46,6,57,2,201,253,171,248,224,252,223,11,246,16,243,1,245,243,214,250,156,6,
236,254,143,242,234,251,179,11,207,8,236,255,85,2,226,6,231,4,43,1,189,255,21,0,50,253,41,246,183,246,107,0,
50,2,98,253,132,4,11,14,63,5,29,249,32,254,166,5,110,2,249,1,235,6,90,2,215,244,109,234,125,235,121,253,
196,14,5,4,215,244,231,7,42,26,249,254,27,226,207,243,126,15,144,10,105,246,160,239,118,248,162,3,109,5,127,2,
63,3,28,1,166,250,204,250,38,254,188,250,92,248,250,255,169,8,118,5,126,249,54,247,86,3,140,7,198,249,116,240,
89,249,153,5,143,6,77,255,217,251,109,254,230,251,106,246,13,252,164,2,28,252,156,250,45,7,78,11,132,3,187,0,
200,0,156,254,89,0,194,1,211,254,121,255,81,0,247,249,56,249,113,6,13,16,205,8,239,251,122,246,232,247,85,254,
111,7,95,7,46,252,203,248,150,1,63,6,79,7,106,9,54,255,189,239,252,242,206,254,247,0,230,1,181,1,38,253,
61,4,146,13,69,1,251,246,27,2,96,2,135,243,15,247,27,3,232,255,115,255,52,9,156,7,210,252,208,249,126,251,
42,252,138,255,35,5,75,8,168,6,95,3,189,4,207,7,146,3,63,250,167,244,230,245,88,253,107,5,39,6,43,2,
13,2,62,5,107,5,63,1,83,253,252,251,188,248,90,246,67,0,106,12,135,4,80,246,222,252,38,10,21,9,222,6,
153,9,128,2,44,249,251,254,250,8,182,6,127,251,74,242,46,246,208,5,197,10,86,254,118,248,209,255,160,2,83,0,
174,255,149,250,5,247,71,254,0,1,36,250,215,253,53,9,18,10,29,8,180,7,23,252,226,241,34,251,246,4,241,0,
201,254,200,0,252,252,74,253,250,6,94,9,249,255,158,251,224,2,26,6,242,249,159,240,208,253,69,12,66,2,208,245,
249,254,247,8,40,4,98,2,39,8,63,4,91,244,10,231,14,235,5,4,133,26,214,15,53,240,47,231,89,253,232,16,
51,14,203,2,205,251,212,246,175,242,230,244,196,254,236,7,91,6,203,253,142,252,252,1,124,1,67,255,143,3,21,3,
179,250,132,250,155,0,141,254,173,251,217,0,255,3,199,1,196,1,155,3,191,4,213,5,170,5,75,5,150,4,32,1,
2,2,77,10,233,10,145,255,60,248,69,250,65,255,154,3,15,2,77,252,155,250,211,246,103,240,8,251,238,14,178,12,
82,254,145,255,139,3,109,250,224,243,203,246,214,247,170,247,16,254,133,7,253,9,230,4,63,5,188,11,209,4,191,244,
165,246,177,0,191,248,255,241,227,0,47,11,222,3,23,3,250,8,58,1,14,248,112,1,99,14,21,12,164,3,6,2,
122,5,129,8,157,6,86,255,42,253,152,5,244,10,190,4,181,253,85,252,20,254,203,3,159,6,252,252,148,244,3,253,
191,6,85,0,86,245,77,246,230,1,48,12,24,11,62,1,140,249,182,245,117,244,148,253,245,13,187,16,198,1,15,247,
54,252,138,3,200,255,226,245,42,243,224,251,103,5,92,6,173,6,3,12,208,7,70,249,142,250,189,9,229,5,160,245,
164,249,218,5,201,0,176,249,18,255,211,4,250,6,197,5,14,250,5,240,163,248,135,6,35,9,182,5,229,0,24,252,
229,253,74,2,60,1,246,0,102,2,158,250,203,241,123,250,172,9,178,8,131,255,155,255,180,0,121,250,253,250,190,4,
30,5,207,252,89,254,20,7,251,8,75,7,129,6,199,255,83,247,220,250,46,4,81,2,96,251,187,254,245,3,102,255,
103,252,175,1,9,5,91,7,85,11,170,3,119,244,202,244,24,255,222,254,232,250,130,253,173,253,136,250,235,254,189,7,
254,7,228,255,46,252,14,254,3,250,78,246,167,0,43,7,233,248,162,238,223,247,228,255,79,1,132,6,243,7,150,2,
207,255,165,253,154,251,234,254,83,2,85,6,92,12,67,3,31,241,157,245,217,3,21,253,237,245,186,255,23,0,72,244,
199,245,246,0,30,5,241,0,127,246,229,240,47,252,43,7,43,254,165,240,95,242,229,253,213,7,11,12,32,8,123,253,
134,245,111,250,165,6,189,7,58,254,48,254,74,6,237,2,79,247,96,242,162,240,209,239,136,250,223,11,139,16,22,6,
195,250,52,248,7,251,182,248,246,240,178,239,109,245,211,250,205,4,206,12,89,254,179,235,193,246,93,8,249,255,207,244,
36,245,235,234,106,227,152,248,88,14,219,9,177,0,89,1,53,3,111,5,104,3,175,246,253,239,101,251,176,5,116,0,
125,249,145,253,34,5,153,7,33,9,204,8,58,253,7,241,4,248,148,4,43,254,212,240,242,242,197,254,37,7,233,11,
101,12,182,3,118,248,135,249,219,0,70,250,200,241,250,253,30,7,74,250,9,252,159,19,85,17,27,246,173,239,242,253,
115,7,85,7,201,253,88,246,4,0,134,9,135,5,166,4,144,1,64,241,71,242,43,12,20,19,62,0,134,248,147,0,
246,4,144,3,241,2,194,6,98,9,138,254,200,241,14,251,106,12,110,10,170,1,152,6,198,12,73,7,113,0,27,0,
150,0,151,254,5,255,133,4,62,8,53,6,4,8,95,15,108,12,233,0,197,0,100,3,4,245,159,233,117,247,95,10,
16,16,180,15,116,10,89,3,119,6,122,10,228,1,174,248,145,247,20,252,87,7,134,8,132,243,225,234,240,0,193,15,
123,9,160,5,201,0,157,245,125,248,108,5,223,6,176,2,163,1,156,254,202,253,162,2,161,5,77,4,180,255,116,251,
236,255,238,6,14,4,28,255,5,0,92,1,173,5,132,10,58,0,208,240,234,245,80,7,140,15,114,16,125,12,19,0,
199,249,239,3,159,8,189,250,186,243,144,0,42,9,111,6,184,9,139,11,12,0,135,250,48,0,150,252,75,245,244,248,
134,253,33,3,220,15,174,14,173,252,179,248,18,2,146,0,109,251,87,254,107,255,83,254,131,2,102,5,143,0,107,249,
47,250,139,5,160,11,117,2,170,253,38,5,210,2,122,249,35,0,168,7,139,253,42,251,232,7,193,3,138,246,119,1,
60,12,50,250,59,240,59,1,132,6,119,253,176,3,244,9,178,1,16,1,228,1,167,244,30,245,184,6,182,4,77,249,
123,1,193,6,236,250,100,248,150,1,134,3,221,0,17,0,199,255,44,2,228,2,75,253,244,250,74,0,78,4,138,3,
248,1,26,1,181,254,128,250,123,251,207,2,244,4,151,2,19,6,104,7,242,1,165,3,70,7,40,0,18,255,180,7,
53,0,187,240,4,246,150,0,200,250,83,247,151,0,143,5,38,5,253,6,105,1,239,244,53,243,234,250,109,255,102,3,
92,5,229,254,11,255,105,10,21,7,47,249,72,255,160,9,73,255,57,249,253,2,4,5,187,4,42,12,218,6,80,250,
230,252,177,254,145,247,101,251,231,0,217,251,199,0,210,11,16,6,72,254,40,0,84,251,38,248,160,3,117,7,2,254,
120,254,125,5,124,4,136,2,247,255,98,249,218,253,144,9,247,3,134,249,129,2,231,8,39,252,9,249,146,5,190,7,
160,5,153,10,117,2,144,242,248,246,160,1,148,0,73,4,189,7,76,253,110,254,26,13,163,5,203,245,109,254,200,6,
178,251,19,247,44,252,180,252,30,4,136,15,19,7,187,246,7,250,112,5,232,3,5,255,194,2,249,4,138,255,133,252,
237,252,139,249,111,249,99,1,111,5,209,4,169,7,177,4,99,250,95,251,116,4,192,2,95,253,221,0,229,4,149,3,
29,1,147,254,209,253,190,255,255,255,202,255,190,2,97,3,223,253,115,249,166,252,116,3,219,5,218,3,26,3,130,3,
104,2,215,255,106,251,221,250,170,3,99,7,188,252,96,248,155,2,99,7,182,2,36,254,170,249,241,252,20,8,7,4,
142,247,50,1,131,15,108,5,59,249,104,252,42,253,183,252,242,4,176,6,203,255,122,0,227,2,60,255,15,1,91,5,
24,1,101,0,222,6,215,1,35,248,129,255,0,9,164,1,121,251,171,0,59,1,130,254,241,2,33,5,7,1,31,255,
47,254,30,255,198,5,81,7,238,2,83,6,181,8,34,0,244,253,7,5,184,4,87,0,72,254,100,252,84,3,136,11,
205,0,19,248,186,5,80,9,168,248,199,247,10,3,107,254,116,251,12,10,130,15,182,2,122,252,97,2,179,3,87,254,
177,251,239,250,96,251,77,4,177,12,128,3,20,248,98,255,87,6,12,254,104,251,36,2,215,255,64,250,250,252,207,0,
110,3,33,5,135,255,103,250,228,254,34,2,57,0,142,1,83,1,142,252,71,253,0,1,107,255,145,254,124,255,35,251,
83,249,137,0,128,3,37,255,69,2,62,8,37,0,248,245,220,252,236,5,198,255,4,248,251,249,109,253,255,255,215,2,
194,0,134,254,158,2,144,3,172,254,196,255,89,4,8,1,228,251,57,254,96,0,168,250,10,246,225,251,88,4,252,4,
168,1,142,0,230,1,121,6,36,9,27,3,59,253,16,253,36,248,167,244,224,0,115,11,48,3,228,250,137,1,7,10,
155,6,153,250,100,247,16,2,12,4,0,249,5,250,229,0,235,248,196,245,7,0,186,253,68,247,80,1,228,4,219,249,
209,249,212,254,22,250,229,251,183,2,45,251,183,242,20,249,81,255,27,254,171,255,4,3,40,0,79,249,103,247,247,252,
86,1,15,0,245,255,200,0,74,252,178,247,214,248,66,252,52,0,64,2,41,255,43,254,72,2,235,0,116,251,175,253,
231,2,139,2,72,0,83,251,207,242,226,243,110,255,78,2,207,252,42,0,66,6,235,1,58,254,71,2,154,1,33,252,
203,251,184,252,87,252,150,255,33,2,88,1,237,1,202,0,7,255,86,3,28,4,104,254,126,1,248,3,246,247,56,247,
102,8,192,7,29,248,6,249,92,254,253,247,245,248,1,4,208,6,154,1,63,252,71,250,43,0,7,7,13,5,247,255,
223,253,68,253,229,253,171,253,129,253,217,0,245,255,188,250,114,0,62,9,97,2,172,250,98,0,117,1,5,248,86,245,
43,252,119,1,137,254,39,246,186,245,254,255,217,4,188,2,78,5,87,5,236,251,164,247,201,253,247,0,170,253,223,252,
214,0,66,2,147,254,129,254,195,3,159,1,177,247,97,245,155,252,142,3,36,6,188,1,212,249,238,249,0,255,103,254,
149,254,107,2,53,254,6,248,159,253,61,2,69,252,112,252,62,4,23,3,132,255,230,2,23,255,226,246,173,254,246,9,
80,5,236,255,240,0,2,252,196,251,249,5,86,4,236,251,132,2,10,7,55,254,131,255,151,7,66,0,224,244,17,244,
251,248,180,1,246,4,151,251,88,250,102,6,200,6,99,254,106,255,91,255,176,249,165,251,248,255,58,255,87,0,190,0,
223,253,172,0,5,7,73,9,54,8,222,1,64,250,251,251,167,255,35,253,159,254,70,2,186,254,233,254,73,5,213,2,
223,252,208,253,163,251,181,248,61,3,194,13,224,5,242,248,251,247,175,253,134,1,125,3,149,3,215,0,16,253,169,250,
91,250,33,252,216,0,133,9,28,17,91,11,244,247,19,237,242,247,131,6,223,6,151,254,144,248,169,250,57,3,25,4,
169,250,1,250,141,3,210,4,114,0,151,1,133,0,254,250,89,251,198,255,245,1,216,2,34,255,85,247,29,249,58,8,
75,20,214,16,143,4,76,253,248,254,175,1,128,253,252,245,242,247,9,4,248,7,123,0,251,0,72,8,177,5,37,1,
249,1,2,253,70,249,99,254,166,252,0,253,87,15,234,18,177,252,212,249,204,8,5,2,69,247,50,255,21,0,172,247,
86,251,245,255,98,254,141,3,46,6,7,255,127,255,229,4,250,253,105,246,34,254,48,7,193,0,186,246,81,254,109,13,
6,8,202,246,152,248,97,6,79,6,89,252,196,246,72,247,125,253,211,1,160,252,184,252,119,10,167,13,185,254,105,250,
224,4,167,3,164,250,67,255,224,5,36,1,35,255,74,0,30,251,17,0,172,16,32,15,86,255,113,252,53,253,40,249,
218,1,224,12,39,4,161,249,148,253,100,0,194,251,68,248,146,249,26,3,36,14,144,9,10,249,50,241,230,249,139,10,
22,17,96,5,101,250,14,254,208,1,183,253,54,251,237,251,77,255,111,7,133,10,146,1,59,247,21,245,213,250,55,4,
144,8,31,4,116,255,0,1,76,2,13,251,252,242,115,251,199,14,74,18,163,1,164,241,151,240,126,0,157,19,24,18,
214,1,238,254,91,6,35,5,46,255,11,252,211,253,145,7,78,10,225,250,34,241,129,248,199,251,50,251,29,5,36,13,
210,9,247,4,77,255,6,251,254,1,163,8,11,1,63,250,132,254,75,0,85,253,202,0,112,6,6,5,7,3,243,5,
23,4,168,250,110,248,235,0,208,2,116,250,118,249,62,1,140,255,98,246,188,250,44,9,30,11,183,3,28,4,91,4,
6,252,53,251,214,3,133,4,113,1,0,3,196,254,197,251,71,8,99,14,146,255,193,246,29,252,47,251,26,250,25,6,
225,12,2,3,3,251,166,255,72,6,189,6,253,4,216,5,79,5,226,253,163,244,155,243,24,253,223,8,42,11,37,5,
42,5,125,10,186,4,50,247,22,245,47,255,99,8,55,10,35,4,90,252,7,252,8,255,45,254,115,2,15,14,33,13,
63,253,209,249,138,7,239,9,244,252,100,251,113,8,19,14,44,7,100,254,244,249,156,253,170,5,35,5,102,253,7,255,
73,10,65,13,89,2,179,248,33,253,243,8,26,14,227,9,44,2,114,254,199,5,10,16,130,9,193,247,50,246,178,5,
217,13,54,7,95,253,163,250,14,3,190,13,162,11,48,2,134,2,214,6,74,0,99,248,88,253,137,6,217,8,145,6,
90,1,186,251,128,252,91,255,167,0,49,12,92,26,48,15,78,246,231,244,249,3,19,7,152,2,239,1,242,254,45,249,
86,247,24,250,217,0,13,10,123,18,196,22,64,14,153,249,192,238,184,248,20,8,61,15,220,8,46,246,246,235,248,245,
93,255,90,2,187,18,130,34,93,17,207,242,217,241,174,7,139,14,230,255,56,244,190,248,196,0,74,252,121,240,231,242,
235,8,17,25,43,15,251,250,131,243,187,247,79,253,241,0,4,4,50,9,73,11,190,1,142,245,238,243,18,248,116,255,
125,13,221,18,223,3,26,242,94,237,224,243,10,2,209,13,208,12,79,5,57,252,204,240,151,241,10,4,69,14,177,1,
135,241,112,240,245,252,129,8,221,4,13,249,119,250,68,8,98,11,117,255,100,251,52,7,173,10,47,252,15,246,1,1,
229,3,185,249,22,245,23,249,23,3,156,17,38,17,136,251,151,240,134,254,56,9,208,1,246,248,81,248,39,250,237,251,
100,252,77,247,161,242,188,250,35,8,53,9,12,6,115,13,93,16,252,1,115,245,25,248,164,255,141,4,112,4,56,253,
164,246,232,246,144,249,156,253,157,3,8,6,135,3,86,255,1,252,139,253,137,0,19,254,51,254,124,4,66,0,33,241,
117,236,182,244,222,254,14,10,198,16,29,11,219,0,5,249,81,244,184,252,197,15,37,18,60,252,85,233,254,235,41,253,
206,15,31,24,190,16,126,2,23,247,25,240,144,243,115,5,13,21,227,16,186,0,230,243,5,238,166,239,107,247,136,254,
218,1,135,1,6,254,231,253,185,1,21,255,144,251,92,4,133,10,203,254,34,243,40,243,117,243,243,245,143,0,70,6,
1,2,44,252,192,245,219,246,202,9,214,23,241,8,126,244,57,247,184,2,14,0,52,245,19,243,89,251,186,1,242,0,
245,1,48,5,162,255,108,248,143,255,68,10,174,6,158,252,76,247,200,243,34,243,164,248,106,0,171,9,110,15,119,5,
86,248,51,2,173,20,200,14,151,249,89,240,16,242,110,245,103,253,148,9,169,18,137,17,245,3,253,247,237,254,168,13,
114,13,240,2,159,253,86,250,165,245,164,247,121,253,232,253,9,0,118,9,242,12,86,5,158,254,67,252,43,251,85,254,
223,0,203,250,113,245,112,249,28,254,86,255,76,2,22,5,206,3,147,255,5,251,64,251,180,255,148,255,165,252,197,254,
242,0,14,0,187,1,122,2,97,0,33,2,250,255,12,243,140,238,79,252,94,9,115,10,67,5,42,0,248,1,4,7,
152,1,168,248,135,253,143,6,22,3,223,250,114,249,130,251,138,252,92,254,26,4,32,13,184,17,150,10,99,253,203,248,
82,0,24,5,142,253,11,247,108,252,125,1,26,253,207,250,82,3,67,14,82,16,24,7,180,249,148,243,239,248,119,255,
208,251,194,246,201,255,105,12,237,9,115,2,29,5,232,10,85,15,47,18,226,7,116,246,95,245,124,254,164,253,171,249,
162,252,238,0,91,2,141,253,91,246,22,255,204,21,153,30,232,16,23,252,142,239,234,244,44,1,89,255,145,249,110,1,
104,6,190,252,14,246,227,248,93,254,245,8,189,19,169,17,161,6,52,0,214,2,234,8,81,7,117,252,197,246,18,253,
98,3,209,255,142,247,8,246,22,254,137,5,156,4,3,1,240,1,134,4,87,0,124,245,65,242,151,252,89,5,38,6,
73,8,7,7,205,251,228,244,212,249,168,1,85,9,128,11,190,0,96,246,185,249,118,3,158,14,195,21,214,10,31,248,
154,245,104,252,210,254,163,2,68,3,206,250,187,252,41,13,255,16,204,4,206,255,192,2,244,255,19,252,155,254,194,0,
0,255,244,254,191,255,252,252,138,252,46,4,184,10,233,5,100,253,168,255,29,10,10,13,72,6,35,1,124,253,187,246,
34,246,184,253,201,1,123,6,20,17,209,14,86,254,215,250,165,2,110,255,96,251,18,6,125,15,2,8,143,247,242,239,
13,252,236,12,103,10,245,253,247,253,93,3,73,3,217,3,121,3,26,0,98,4,93,11,200,5,168,254,182,5,5,13,
62,5,157,249,191,248,218,255,220,6,45,11,161,9,32,0,46,248,245,250,180,255,194,255,255,6,144,20,103,17,122,253,
105,245,205,255,143,7,248,5,242,4,205,3,50,253,240,247,230,249,252,250,108,245,198,243,57,0,115,16,240,18,68,11,
31,12,46,22,64,22,207,5,101,244,120,239,132,244,123,250,191,252,241,252,96,253,91,252,81,250,10,0,6,17,164,27,
173,14,18,252,166,0,121,14,242,4,201,240,52,242,143,254,112,253,187,249,205,0,213,4,91,0,4,2,136,8,250,3,
146,249,69,251,58,5,145,8,61,6,192,1,238,248,80,247,251,4,18,12,236,255,83,248,183,0,243,5,189,1,180,254,
82,253,15,251,152,252,165,3,119,10,63,8,109,253,86,248,116,253,72,1,242,3,67,10,41,8,228,251,248,247,230,252,
52,253,186,253,191,3,94,4,22,254,86,252,74,1,212,6,130,7,75,255,5,243,85,238,187,242,47,249,3,0,245,4,
206,0,200,247,229,246,219,252,121,1,18,7,177,11,236,7,168,4,208,8,136,4,86,244,69,238,167,248,7,3,211,2,
67,249,147,239,58,240,14,249,255,1,181,5,153,254,61,247,202,1,254,12,94,0,23,241,3,244,30,250,112,1,191,14,
230,9,8,243,241,241,156,5,172,6,218,245,181,240,189,249,42,2,197,5,227,4,104,254,26,250,93,3,244,16,112,13,
25,253,177,245,99,249,245,254,175,2,149,254,121,246,32,251,4,8,187,8,102,0,251,253,107,0,138,1,197,1,9,4,
242,7,248,4,145,248,101,242,194,251,182,8,222,12,9,7,14,0,20,3,50,8,34,1,36,250,220,255,93,5,88,8,
52,16,166,9,147,236,223,221,57,242,172,12,44,18,155,5,7,246,218,243,33,4,4,20,45,15,196,254,251,249,8,0,
194,255,65,251,39,255,0,6,86,6,230,3,249,254,46,243,250,234,147,246,222,16,80,31,171,18,35,255,205,255,144,12,
3,11,225,248,80,236,19,248,207,18,249,25,202,0,39,231,3,232,81,248,103,5,66,10,0,8,223,2,245,254,28,253,
154,252,136,249,155,245,56,252,166,9,255,9,157,253,104,248,233,0,151,10,149,4,28,241,125,237,71,3,44,16,20,3,
55,246,106,249,254,2,86,10,66,9,194,1,81,2,129,10,228,10,29,2,128,247,246,239,242,243,42,1,12,7,75,2,
77,254,33,1,77,8,228,8,186,252,174,245,157,0,98,9,121,3,220,255,58,4,24,5,179,2,171,255,107,248,206,244,
143,252,90,4,37,3,241,254,66,250,191,244,152,245,68,253,138,2,228,5,242,10,241,7,108,250,172,245,24,3,249,17,
118,20,86,14,161,5,110,253,116,249,44,249,85,248,89,247,140,251,173,6,182,15,31,10,136,250,58,246,254,2,27,13,
231,9,47,9,155,22,230,35,221,30,106,10,33,247,19,237,129,231,10,230,134,241,253,4,241,9,177,252,137,245,162,255,
45,10,212,9,53,9,141,19,25,32,190,27,120,7,218,248,140,245,66,242,158,242,54,252,79,1,244,254,165,3,118,10,
205,5,130,254,201,252,187,250,146,254,211,14,239,23,122,12,1,0,135,1,45,4,8,254,185,245,182,238,50,235,196,244,
169,6,227,11,147,4,222,3,123,8,37,6,148,3,142,7,238,7,81,1,2,254,99,1,38,4,155,0,106,249,83,246,
72,250,128,0,26,2,245,250,10,242,31,247,118,9,157,19,221,11,10,255,156,250,42,0,167,6,208,3,123,252,133,254,
209,8,239,12,103,4,118,247,167,242,243,247,142,253,229,253,78,253,144,0,102,7,237,9,65,0,197,244,54,249,97,9,
191,19,130,16,55,0,109,238,107,239,110,0,17,6,159,250,232,245,109,0,11,6,236,250,100,239,33,244,44,2,166,11,
41,13,241,7,112,1,252,0,154,1,183,252,110,250,220,252,48,250,136,248,219,2,106,10,16,0,73,243,1,247,154,3,
205,8,16,7,125,6,221,4,198,255,208,253,170,252,37,244,186,238,240,246,136,254,194,252,10,254,185,2,144,254,194,246,
231,248,13,3,248,9,91,9,180,6,55,7,145,7,81,4,62,1,210,1,180,4,191,4,34,253,83,245,1,250,158,4,
169,5,240,255,94,254,189,2,42,11,123,17,165,12,160,1,160,254,143,3,236,4,122,255,124,249,174,247,90,250,170,255,
71,2,7,255,70,254,213,5,232,11,113,13,189,17,23,15,16,255,105,248,101,1,164,1,64,250,12,253,165,253,119,241,
153,234,82,241,12,252,219,4,185,7,42,7,234,8,26,3,239,244,83,245,196,2,154,4,218,0,220,6,85,9,112,1,
225,252,185,253,29,255,63,2,36,1,66,249,20,249,246,5,174,14,42,8,210,255,217,5,56,18,110,17,95,5,59,255,
197,3,4,12,166,13,218,255,150,238,72,241,86,2,88,10,6,10,205,12,24,14,35,9,25,3,91,254,226,249,245,246,
156,249,219,4,114,15,216,10,95,253,199,248,21,252,112,254,220,1,135,6,100,8,165,8,130,5,80,253,63,249,24,251,
221,249,44,253,168,14,21,26,20,13,112,249,85,245,23,254,97,5,132,0,143,243,73,241,222,254,135,10,100,10,250,6,
84,7,117,10,115,11,105,6,221,0,248,1,15,6,47,9,80,11,140,5,13,247,190,240,154,251,47,10,254,14,203,10,
233,4,246,0,70,253,24,254,212,10,87,22,138,12,88,250,241,248,14,1,122,1,18,255,236,254,56,253,133,0,238,11,
153,15,218,4,91,250,29,249,213,254,151,9,121,14,216,0,150,240,120,247,71,10,159,12,143,2,85,0,19,4,105,3,
182,0,152,254,143,250,15,250,88,3,24,10,221,254,111,241,34,253,127,17,250,7,116,239,78,246,79,20,157,28,36,12,
43,255,123,253,59,254,39,252,245,247,161,249,98,3,142,7,205,1,77,0,39,4,195,0,25,252,188,3,57,12,248,2,
72,242,144,242,183,2,200,11,9,6,46,255,253,254,72,255,214,251,56,248,130,250,87,3,248,7,123,1,221,252,50,3,
76,6,135,255,47,253,200,0,109,254,160,251,102,1,153,4,252,253,131,250,156,1,76,9,204,7,208,253,112,243,207,241,
31,250,151,2,77,1,67,250,91,250,187,1,135,3,10,254,214,251,13,0,190,6,35,10,70,0,45,236,236,228,178,243,
92,6,3,13,69,6,32,249,179,244,53,254,139,4,67,254,61,249,229,253,97,4,75,7,147,6,139,255,31,243,48,237,
169,246,165,1,245,251,20,242,160,247,154,255,185,252,65,254,97,5,205,254,81,244,95,253,240,13,103,13,181,253,202,239,
198,238,7,248,58,254,179,253,241,254,4,1,89,253,245,247,72,246,234,248,79,0,230,5,203,1,18,253,202,3,145,12,
45,6,109,242,223,229,64,239,5,3,206,10,72,5,156,255,126,251,194,246,148,247,46,254,13,3,243,4,166,2,15,248,
202,239,32,249,32,10,73,14,107,6,10,251,28,236,229,227,29,240,205,1,223,2,106,254,216,6,230,16,233,10,85,249,
253,235,150,236,97,247,133,1,248,9,18,18,8,13,219,247,47,233,167,235,81,241,67,247,102,4,200,14,118,11,148,1,
125,248,191,237,136,226,240,224,174,240,237,8,35,23,32,23,88,16,60,3,1,245,194,243,200,250,243,251,45,255,101,9,
234,6,163,244,156,234,49,239,136,245,97,254,76,15,188,29,28,27,200,7,73,244,253,241,56,0,119,13,203,11,46,255,
80,247,69,248,51,244,107,233,33,235,229,252,99,13,252,21,84,23,45,14,82,4,36,4,28,2,172,250,92,253,127,4,
170,255,214,252,138,8,242,11,220,250,184,237,60,243,109,252,102,255,210,2,198,6,117,4,9,2,106,8,68,14,98,11,
5,11,65,16,113,13,141,5,43,6,56,6,94,249,211,235,98,234,187,240,87,251,210,9,93,16,167,1,241,233,113,234,
254,8,157,30,220,18,44,255,58,251,20,255,42,3,138,3,27,246,91,230,28,237,198,1,228,9,207,3,44,251,66,247,
243,253,65,8,78,7,211,255,204,255,118,5,155,9,104,8,202,253,4,241,186,239,105,246,38,252,12,5,93,13,46,5,
12,241,227,232,37,244,226,3,26,9,54,3,17,0,252,9,14,20,185,11,230,249,151,245,103,254,227,3,46,4,0,6,
188,5,73,255,149,248,245,246,102,249,230,252,191,253,51,253,123,3,198,14,180,13,62,250,187,232,128,236,1,253,120,5,
89,3,159,2,242,4,69,3,213,255,67,0,19,0,40,250,214,244,243,249,141,7,202,14,228,7,100,255,68,1,70,7,
189,9,8,9,101,4,42,0,23,4,38,8,149,2,185,252,32,251,178,245,2,244,8,0,195,10,34,8,247,2,89,2,
155,2,163,2,166,0,227,251,2,247,2,239,182,231,121,242,82,11,126,22,178,14,9,5,138,255,160,255,143,8,191,15,
114,11,175,4,69,1,61,250,177,239,253,232,43,233,118,242,86,4,113,19,43,20,73,10,227,2,209,2,88,5,25,8,
198,10,127,9,77,5,178,4,138,5,143,2,178,254,250,249,206,242,146,243,173,255,30,7,139,4,177,3,124,6,0,8,
84,9,119,8,137,4,174,4,35,9,190,12,212,15,79,12,185,252,8,241,187,244,67,249,115,247,129,249,152,254,251,1,
217,9,34,18,249,12,158,255,166,251,107,2,240,6,113,3,91,0,24,5,69,11,100,10,149,2,225,244,43,231,249,232,
253,250,143,8,184,9,138,9,214,9,158,3,199,249,142,245,240,251,190,9,245,19,48,19,45,11,248,1,38,252,152,253,
169,1,241,0,23,1,52,9,11,15,216,6,43,249,208,246,226,255,118,4,49,254,188,250,230,1,143,6,8,3,63,5,
198,12,113,6,243,245,36,244,56,2,24,12,134,10,9,1,76,245,247,244,30,0,209,255,237,244,0,252,105,13,191,8,
121,251,29,3,229,12,208,2,89,251,187,4,171,7,154,249,72,239,97,247,77,8,108,17,184,14,121,7,207,254,1,245,
22,241,69,245,81,249,77,251,233,255,110,6,248,11,78,10,244,249,179,232,0,239,133,5,63,16,140,9,38,253,111,244,
151,247,235,1,65,0,61,242,215,237,204,250,192,11,173,19,107,12,149,248,65,232,23,236,56,255,218,9,11,2,72,251,
61,4,128,14,145,13,30,8,81,255,11,242,252,238,60,251,62,4,67,2,212,1,14,7,8,8,189,254,241,242,102,243,
206,0,114,11,146,13,209,13,13,11,130,4,10,2,95,1,103,251,148,249,64,3,153,9,18,1,148,246,201,249,198,4,
111,8,31,6,26,7,141,6,75,1,67,2,150,5,168,251,87,239,153,242,250,251,36,3,228,12,193,12,144,250,95,240,
32,252,144,4,184,252,4,249,138,4,116,14,40,7,237,247,87,243,2,249,139,253,0,2,208,7,213,4,168,250,131,249,
139,2,204,6,222,255,231,245,17,245,229,254,150,5,48,1,118,252,201,254,58,1,144,0,77,0,172,0,224,2,246,6,
48,3,22,246,179,243,244,3,210,13,206,1,251,245,84,252,71,5,235,1,142,252,181,0,28,9,157,11,138,6,246,0,
53,0,140,0,219,255,181,3,84,9,83,3,55,242,162,233,96,244,170,3,62,4,206,250,163,250,8,5,132,10,109,5,
86,251,28,243,199,245,246,1,185,5,14,252,95,245,205,247,27,253,48,5,68,9,103,254,135,243,128,251,55,5,235,253,
228,246,30,254,14,4,43,1,35,1,75,4,88,2,14,0,101,2,203,0,49,249,72,249,124,4,153,10,49,5,68,0,
234,252,225,242,61,239,206,255,134,14,69,5,218,245,7,245,34,251,197,254,107,2,230,6,254,9,133,7,255,253,70,249,
22,1,83,7,173,2,232,252,220,248,215,239,237,228,181,225,68,236,5,1,252,15,223,15,142,8,67,0,166,251,190,4,
118,19,156,17,235,255,62,239,178,232,9,241,199,253,11,246,242,223,28,223,194,249,126,19,13,24,216,10,161,254,23,2,
22,14,196,18,113,9,118,245,239,232,242,244,144,9,56,10,31,247,187,227,69,224,224,240,59,3,111,5,219,3,56,12,
196,19,209,16,13,5,59,246,82,242,204,252,115,4,138,3,209,1,95,253,131,250,80,2,251,5,202,250,131,245,245,255,
41,9,81,9,69,4,152,253,99,255,190,11,100,17,60,7,43,250,61,248,240,0,19,7,206,1,23,251,1,254,135,2,
214,254,243,249,174,253,183,4,243,1,201,246,124,244,190,255,103,7,246,1,194,251,233,255,211,7,50,8,58,3,170,1,
213,255,118,248,40,246,238,251,94,249,17,240,152,245,23,5,207,5,70,250,253,248,78,4,4,10,109,1,223,246,130,246,
117,251,130,255,115,5,197,8,6,0,79,242,110,240,187,253,176,11,12,8,92,244,102,232,8,239,53,249,73,254,26,3,
203,3,49,254,72,255,118,9,118,11,246,254,142,242,29,243,13,253,12,1,227,246,245,235,136,239,63,250,189,0,25,6,
68,7,168,251,42,241,228,248,138,6,208,10,68,11,192,10,221,4,191,253,235,247,63,242,120,244,162,255,227,6,130,8,
236,10,118,7,169,250,248,242,128,249,11,4,119,6,215,3,131,7,235,14,183,10,25,251,48,242,58,248,171,3,58,8,
228,3,46,0,157,2,225,4,252,3,253,1,165,253,23,253,123,6,92,11,143,2,227,252,3,1,12,2,228,254,62,252,
199,247,9,248,14,2,5,8,28,2,125,251,29,251,158,252,245,252,172,255,8,7,119,8,125,252,82,246,251,3,210,13,
129,3,209,250,194,255,26,1,159,250,59,252,139,7,198,12,162,6,79,1,58,4,246,7,82,6,133,1,6,253,252,252,
241,255,226,251,84,244,58,249,168,4,244,4,120,0,248,2,218,4,224,1,147,1,185,2,139,0,161,255,223,0,215,253,
116,250,39,0,61,7,144,2,85,251,20,255,74,3,186,253,61,250,174,255,247,5,150,10,56,13,230,8,128,0,111,251,
62,251,177,254,3,2,182,3,68,8,249,9,116,0,70,249,194,254,189,3,14,5,207,7,56,1,20,246,56,251,59,3,
110,249,186,241,182,251,201,4,31,3,213,255,34,0,222,4,190,8,111,4,112,255,230,1,86,3,102,255,40,254,255,255,
173,253,54,249,35,252,9,5,71,6,49,0,97,1,112,5,36,0,180,253,94,6,240,9,72,5,115,3,85,0,4,250,
98,250,4,255,38,0,100,255,51,253,198,250,13,252,232,253,17,0,145,5,189,5,130,254,153,253,163,2,34,3,9,2,
165,1,133,255,129,0,204,3,208,4,212,7,146,7,173,251,49,244,235,252,181,6,57,9,247,6,26,252,238,241,125,248,
193,5,93,8,79,3,169,255,126,0,60,3,246,0,190,250,38,248,191,248,76,250,54,252,60,249,3,245,94,251,237,6,
129,9,15,4,93,254,19,253,229,2,134,10,112,10,103,0,115,243,115,240,59,249,164,252,91,246,111,247,159,0,183,4,
8,5,40,4,241,0,92,3,72,7,211,254,60,246,55,252,43,2,190,0,211,2,110,3,228,251,94,249,143,255,154,0,
201,250,85,250,68,2,246,6,39,0,242,246,75,246,17,250,136,252,107,255,247,1,24,3,69,4,113,2,127,253,223,252,
59,0,102,255,240,250,2,252,239,4,124,9,167,255,197,243,194,244,138,252,33,4,31,11,7,7,184,248,95,246,130,1,
102,6,141,1,227,248,70,243,138,253,38,12,3,3,238,239,145,243,95,4,214,11,67,11,135,4,171,249,252,248,197,3,
95,9,109,2,250,246,99,245,42,5,67,22,207,16,115,249,223,237,251,251,48,13,247,6,206,245,66,247,50,6,49,9,
129,253,82,240,127,235,87,244,28,4,174,12,48,11,134,4,44,253,32,252,45,1,172,1,73,250,6,243,186,244,92,0,
18,7,237,252,189,243,133,253,184,9,60,8,85,4,24,4,232,255,174,251,31,254,39,0,41,253,64,251,85,252,245,252,
84,254,186,0,185,253,133,246,50,249,54,8,29,17,35,10,163,0,124,0,18,5,213,5,87,0,78,248,31,245,69,250,
194,1,198,3,6,1,24,255,224,254,79,254,56,254,253,255,240,3,17,9,24,9,198,0,8,251,72,0,187,6,224,4,
74,254,195,247,227,244,108,250,50,5,154,10,27,5,2,251,156,248,124,253,199,251,114,245,183,250,52,7,45,10,89,4,
49,253,169,247,13,249,30,255,186,0,2,0,201,1,175,3,149,6,172,7,15,255,57,245,102,246,193,250,4,251,166,251,
116,251,21,251,252,1,126,9,103,5,192,252,81,252,200,1,24,5,244,7,96,14,112,13,51,251,10,234,136,234,109,235,
104,228,82,234,21,253,5,6,29,4,136,3,237,6,117,11,76,8,245,252,136,252,151,8,218,8,10,250,165,237,91,233,
165,237,248,247,126,252,17,252,78,1,71,7,126,8,149,9,5,7,171,255,43,255,206,5,76,8,185,3,104,250,23,243,
40,247,85,255,109,253,250,247,177,251,216,3,87,6,180,3,134,2,181,2,107,254,198,250,180,0,245,5,41,1,226,255,
194,6,246,5,173,252,32,248,25,249,251,250,5,253,159,252,139,250,34,252,214,1,85,6,45,4,62,254,179,254,187,3,
81,2,99,254,208,255,80,1,52,2,225,5,254,3,12,252,210,251,192,3,219,9,214,10,18,4,247,249,215,250,144,3,
169,2,163,250,38,250,120,255,185,0,73,255,58,2,94,6,231,2,71,253,69,1,168,8,43,8,104,4,33,3,20,2,
94,0,0,252,84,245,92,245,99,252,67,255,14,253,122,252,164,254,88,1,216,255,120,251,241,255,196,9,8,9,23,5,
180,9,76,9,50,254,61,247,227,246,79,247,12,249,199,248,3,248,148,254,53,5,177,4,93,5,246,5,20,1,143,1,
20,8,32,7,226,2,1,3,116,255,185,248,64,248,86,252,163,1,5,7,117,6,54,2,226,3,21,8,216,4,229,251,
5,248,200,254,142,7,122,7,155,2,35,0,226,254,220,0,254,5,108,4,9,253,194,250,44,252,135,252,128,253,41,254,
101,1,26,9,169,7,138,251,19,250,78,4,7,8,131,5,84,2,73,253,148,254,156,4,157,254,76,244,190,247,162,253,
208,252,27,3,87,12,100,5,36,246,158,243,66,254,188,8,79,9,202,0,122,250,202,253,19,4,246,4,227,1,130,255,
43,253,7,249,255,246,198,250,150,255,12,0,15,255,9,1,34,5,245,7,224,6,58,3,51,2,210,4,106,5,166,0,
166,250,17,249,143,251,7,253,70,252,1,253,96,255,201,0,75,2,70,3,74,255,151,249,21,251,167,1,156,3,211,0,
43,255,101,254,186,252,133,252,134,254,107,0,18,0,13,252,185,247,176,249,101,255,101,1,247,1,4,3,241,253,208,246,
120,250,195,4,70,8,31,4,103,253,242,248,230,252,83,4,142,2,177,250,122,249,205,253,139,254,72,252,172,254,131,5,
81,6,238,254,1,252,246,255,57,254,126,248,118,252,178,6,0,10,121,5,81,254,199,246,152,242,175,246,129,1,250,7,
79,2,168,250,35,253,233,2,192,2,238,255,115,252,143,249,149,254,248,7,0,9,162,3,41,0,136,252,2,249,166,250,
141,253,138,252,218,250,13,250,74,248,192,248,143,254,198,4,199,4,180,255,108,252,164,255,243,7,30,13,150,6,182,249,
42,245,201,248,7,249,83,247,16,250,137,251,248,248,73,250,197,0,38,6,96,8,170,7,79,4,234,0,4,255,103,254,
163,254,196,253,245,251,19,252,90,252,189,249,152,247,74,248,8,248,226,246,117,251,161,5,0,9,0,255,218,245,27,252,
111,8,90,10,83,2,210,249,124,246,203,248,152,250,168,246,0,242,235,242,196,247,81,251,38,250,178,247,127,251,115,4,
149,11,236,13,215,7,102,251,82,248,85,2,205,7,75,2,160,251,200,247,211,247,219,251,179,252,75,250,200,251,152,253,
233,252,207,255,148,2,7,255,215,251,110,252,75,254,55,4,162,9,238,4,97,252,69,250,126,252,181,254,242,253,187,249,
3,249,17,252,44,251,212,250,201,255,238,254,172,246,6,246,93,0,23,11,231,13,123,7,77,255,18,252,88,249,160,245,
109,247,251,253,44,4,69,7,219,2,155,250,253,248,195,250,4,250,7,254,216,5,103,6,241,2,2,3,56,2,128,253,
64,248,255,245,94,249,145,254,24,0,222,0,3,1,147,253,50,254,249,2,241,254,250,248,85,0,31,10,35,11,71,10,
1,5,47,249,179,246,228,253,143,253,9,249,209,250,70,252,131,251,14,255,189,1,187,254,89,253,202,0,144,4,145,6,
70,6,90,4,223,3,33,4,187,0,127,249,130,243,42,244,201,252,148,7,177,10,63,3,30,251,149,251,22,255,217,253,
33,253,246,1,208,6,218,7,24,5,59,254,251,249,45,253,193,253,16,248,154,248,76,255,234,255,216,253,245,0,54,3,
175,1,144,1,198,0,47,253,68,253,11,2,30,4,234,0,189,252,244,251,203,253,220,252,103,250,7,255,178,7,90,7,
114,255,38,252,2,254,227,254,235,253,80,250,251,245,232,248,130,0,15,0,53,250,138,251,147,0,151,0,117,0,64,3,
251,1,222,252,129,251,18,254,81,255,229,252,9,249,47,249,230,253,162,0,156,0,139,2,49,3,94,255,39,254,119,1,
187,1,87,255,164,255,248,255,10,255,114,1,200,4,226,2,69,254,172,251,154,250,196,250,250,251,139,251,8,251,81,255,
224,4,47,3,62,252,51,250,167,255,35,6,181,7,204,2,212,251,63,251,253,0,172,2,220,253,13,251,45,252,183,252,
120,253,21,255,132,254,23,254,70,1,56,4,6,4,2,3,166,1,17,0,86,0,235,0,188,254,88,251,94,250,100,253,
189,1,150,1,136,253,60,253,76,1,6,3,76,1,109,255,87,254,228,253,203,253,173,254,143,1,13,2,168,252,14,249,
226,252,103,1,94,2,158,1,23,254,200,250,237,253,145,2,67,1,131,253,60,251,253,249,187,250,136,251,22,250,150,250,
111,253,51,253,114,251,130,251,166,250,204,249,57,252,149,254,211,254,146,255,33,0,138,255,118,255,46,255,229,254,15,1,
14,3,89,0,118,250,117,247,106,252,236,4,174,4,246,252,63,253,113,5,31,6,31,254,142,249,160,252,79,2,193,4,
150,2,55,0,36,0,17,0,218,255,49,0,148,255,236,254,221,254,4,253,59,251,124,252,198,253,60,254,65,0,215,0,
159,254,84,254,143,255,178,254,192,253,96,254,194,255,78,2,196,2,80,254,52,251,131,253,22,0,133,0,181,255,48,252,
98,249,150,252,60,1,64,1,103,255,22,255,119,255,5,0,244,0,94,2,142,3,14,2,195,254,177,254,95,1,47,1,
195,253,102,251,6,252,116,254,24,0,217,255,229,255,76,1,142,2,146,3,253,3,55,2,62,0,166,0,15,1,237,255,
77,255,194,254,204,253,99,255,66,2,240,0,21,253,93,253,195,1,230,4,4,4,42,0,12,253,154,254,37,3,108,4,
68,1,215,254,56,255,115,255,155,254,73,254,154,254,186,255,244,1,148,2,59,0,122,254,176,254,72,254,2,254,85,255,
78,255,186,253,183,254,44,1,65,1,172,0,32,1,23,0,250,253,47,254,94,0,179,1,16,1,176,255,64,0,164,2,
19,3,129,1,105,1,74,1,202,254,40,254,5,1,83,1,217,253,157,252,197,254,134,0,252,0,135,0,139,255,210,0,
16,4,212,3,142,255,24,253,194,253,201,253,173,252,202,252,114,254,199,255,254,254,49,253,116,253,75,255,2,0,115,0,
110,1,213,0,211,255,203,0,150,0,232,253,141,253,131,255,253,254,112,253,181,254,243,0,172,1,8,1,19,255,56,253,
121,253,250,253,212,252,207,252,211,255,142,2,143,1,227,253,246,250,186,250,175,252,252,254,240,255,167,255,155,255,11,0,
251,255,56,255,247,253,228,252,104,253,122,254,210,253,242,252,107,253,57,253,235,252,122,254,190,254,194,252,146,253,7,1,
133,2,178,2,81,2,122,255,92,253,247,254,10,0,187,254,155,254,155,255,173,255,156,255,96,255,52,254,135,253,74,254,
201,255,24,1,95,1,101,1,63,2,
};

File diff suppressed because it is too large Load Diff

1495
src/client/sound/data/splash.pcm Executable file

File diff suppressed because it is too large Load Diff

1381
src/client/sound/data/stone1.pcm Executable file

File diff suppressed because it is too large Load Diff

1381
src/client/sound/data/stone2.pcm Executable file

File diff suppressed because it is too large Load Diff

1381
src/client/sound/data/stone3.pcm Executable file

File diff suppressed because it is too large Load Diff

1381
src/client/sound/data/stone4.pcm Executable file

File diff suppressed because it is too large Load Diff

1381
src/client/sound/data/wood1.pcm Executable file

File diff suppressed because it is too large Load Diff

1381
src/client/sound/data/wood2.pcm Executable file

File diff suppressed because it is too large Load Diff

1381
src/client/sound/data/wood3.pcm Executable file

File diff suppressed because it is too large Load Diff

1381
src/client/sound/data/wood4.pcm Executable file

File diff suppressed because it is too large Load Diff

11029
src/client/sound/data/zombie1.pcm Executable file

File diff suppressed because it is too large Load Diff

10110
src/client/sound/data/zombie2.pcm Executable file

File diff suppressed because it is too large Load Diff

15623
src/client/sound/data/zombie3.pcm Executable file

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

3479
src/client/sound/data/zpig1.pcm Executable file

File diff suppressed because it is too large Load Diff

4638
src/client/sound/data/zpig2.pcm Executable file

File diff suppressed because it is too large Load Diff

1452
src/client/sound/data/zpig3.pcm Executable file

File diff suppressed because it is too large Load Diff

Some files were not shown because too many files have changed in this diff Show More