Functions4U: More changes in X functions. Improved doc

git-svn-id: svn://ultimatepp.org/upp/trunk@5948 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
koldo 2013-04-02 21:27:21 +00:00
parent 218c5e8195
commit 2b0c6e3f99
6 changed files with 514 additions and 432 deletions

View file

@ -202,7 +202,7 @@ String Replace(String str, char find, char replace) {
}
// Rename file or folder
bool FileMoveX(const char *oldpath, const char *newpath, int flags) {
bool FileMoveX(const char *oldpath, const char *newpath, EXT_FILE_FLAGS flags) {
bool usr, grp, oth;
if (flags & DELETE_READ_ONLY) {
if (IsReadOnly(oldpath, usr, grp, oth))
@ -214,7 +214,7 @@ bool FileMoveX(const char *oldpath, const char *newpath, int flags) {
return ret;
}
bool FileDeleteX(const char *path, int flags) {
bool FileDeleteX(const char *path, EXT_FILE_FLAGS flags) {
if (flags & USE_TRASH_BIN)
return FileToTrashBin(path);
else {
@ -224,7 +224,7 @@ bool FileDeleteX(const char *path, int flags) {
}
}
bool FolderDeleteX(const char *path, int flags) {
bool FolderDeleteX(const char *path, EXT_FILE_FLAGS flags) {
if (flags & USE_TRASH_BIN)
return FileToTrashBin(path);
else {
@ -234,7 +234,7 @@ bool FolderDeleteX(const char *path, int flags) {
}
}
bool DirectoryExistsX(const char *path, int flags) {
bool DirectoryExistsX(const char *path, EXT_FILE_FLAGS flags) {
if (!(flags & BROWSE_LINKS))
return DirectoryExists(path);
if (DirectoryExists(path))
@ -283,14 +283,14 @@ String GetRelativePath(String &from, String &path) {
}
return "";
}
/*
bool ReadOnly(const char *path, bool readOnly) {
return SetReadOnly(path, readOnly);
}
bool ReadOnly(const char *path, bool usr, bool grp, bool oth) {
return SetReadOnly(path, usr, grp, oth);
}
}*/
bool SetReadOnly(const char *path, bool readOnly) {
return SetReadOnly(path, readOnly, readOnly, readOnly);
@ -995,7 +995,7 @@ String RemovePunctuation(String str) {
return ret;
}
String FitFileName(String fileName, int len) {
String FitFileName(const String fileName, int len) {
if (fileName.GetCount() <= len)
return fileName;
@ -1284,16 +1284,16 @@ bool IsRootFolder(const char *folderName) {
if (folderName[0] == '\0')
return false;
#if defined(PLATFORM_WIN32) || defined (PLATFORM_WIN64)
if (strlen(folderName) == 3)
if (strlen(folderName) == 3 && folderName[1] == ':' && folderName[2] == DIR_SEP)
#else
if (strlen(folderName) == 1)
if (strlen(folderName) == 1 && folderName[0] == DIR_SEP)
#endif
return false;
return true;
return true;
return false;
}
String GetUpperFolder(const String &folderName) {
if (!IsRootFolder(folderName))
if (IsRootFolder(folderName))
return folderName;
int len = folderName.GetCount();
if (folderName[len-1] == DIR_SEP)
@ -1307,21 +1307,21 @@ String GetUpperFolder(const String &folderName) {
pos++;
return folderName.Left(pos);
}
/*
bool CreateFolderDeep(const char *dir)
{
if (RealizePath(dir))
return DirectoryCreate(dir);
else
return false;
}
}*/
bool DeleteDeepWildcardsX(const char *pathwc, bool filefolder, int flags)
bool DeleteDeepWildcardsX(const char *pathwc, bool filefolder, EXT_FILE_FLAGS flags)
{
return DeleteDeepWildcardsX(GetFileFolder(pathwc), GetFileName(pathwc), filefolder, flags);
}
bool DeleteDeepWildcardsX(const char *path, const char *namewc, bool filefolder, int flags)
bool DeleteDeepWildcardsX(const char *path, const char *namewc, bool filefolder, EXT_FILE_FLAGS flags)
{
FindFile ff(AppendFileName(path, "*.*"));
while(ff) {
@ -1348,17 +1348,17 @@ bool DeleteDeepWildcardsX(const char *path, const char *namewc, bool filefolder,
return true;
}
bool DeleteFolderDeepWildcardsX(const char *path, int flags)
bool DeleteFolderDeepWildcardsX(const char *path, EXT_FILE_FLAGS flags)
{
return DeleteDeepWildcardsX(path, false, flags);
}
bool DeleteFileDeepWildcardsX(const char *path, int flags)
bool DeleteFileDeepWildcardsX(const char *path, EXT_FILE_FLAGS flags)
{
return DeleteDeepWildcardsX(path, true, flags);
}
bool DeleteFolderDeepX_Folder(const char *dir, int flags)
bool DeleteFolderDeepX_Folder(const char *dir, EXT_FILE_FLAGS flags)
{
FindFile ff(AppendFileName(dir, "*.*"));
while(ff) {
@ -1374,14 +1374,14 @@ bool DeleteFolderDeepX_Folder(const char *dir, int flags)
return FolderDeleteX(dir, flags);
}
bool DeleteFolderDeepX(const char *path, int flags)
bool DeleteFolderDeepX(const char *path, EXT_FILE_FLAGS flags)
{
if (flags & USE_TRASH_BIN)
return FileToTrashBin(path);
return DeleteFolderDeepX_Folder(path, flags);
}
bool RenameDeepWildcardsX(const char *path, const char *namewc, const char *newname, bool forfile, bool forfolder, int flags)
bool RenameDeepWildcardsX(const char *path, const char *namewc, const char *newname, bool forfile, bool forfolder, EXT_FILE_FLAGS flags)
{
FindFile ff(AppendFileName(path, "*.*"));
while(ff) {
@ -2077,7 +2077,7 @@ String WinLastError() {
}
#endif
bool FileDiffArray::Apply(String toFolder, String fromFolder, int flags)
bool FileDiffArray::Apply(String toFolder, String fromFolder, EXT_FILE_FLAGS flags)
{
for (int i = 0; i < diffList.GetCount(); ++i) {
bool ok = true;

View file

@ -15,10 +15,11 @@
NAMESPACE_UPP
enum EXT_FILE_FLAGS {USE_TRASH_BIN = 1,
enum EXT_FILE_FLAGS {NO_FLAG = 0,
USE_TRASH_BIN = 1,
BROWSE_LINKS = 2,
DELETE_READ_ONLY = 4,
ASK_BEFORE_DELETE = 8
DELETE_READ_ONLY = 4//,
//ASK_BEFORE_DELETE = 8
};
bool LaunchFile(const char *file);
@ -42,14 +43,17 @@ String Tokenize(const String &str, const String &token, int &pos);
String Tokenize(const String &str, const String &token);
/////////
bool DirectoryExistsX(const char *path, int flags = 0);
bool DirectoryExistsX(const char *path, EXT_FILE_FLAGS flags = NO_FLAG);
bool DirectoryCopyX(const char *dir, const char *newPlace);
bool DeleteDeepWildcardsX(const char *path, bool filefolder, int flags = 0);
bool DeleteDeepWildcardsX(const char *pathwc, const char *namewc, bool filefolder, int flags = 0);
bool DeleteFolderDeepWildcardsX(const char *path, int flags = 0);
bool DeleteFileDeepWildcardsX(const char *path, int flags = 0);
bool DeleteFolderDeepX(const char *path, int flags = 0);
bool RenameDeepWildcardsX(const char *path, const char *namewc, const char *newname, bool forfile, bool forfolder, int flags = 0);
bool DeleteDeepWildcardsX(const char *path, bool filefolder, EXT_FILE_FLAGS flags = NO_FLAG);
bool DeleteDeepWildcardsX(const char *pathwc, const char *namewc, bool filefolder, EXT_FILE_FLAGS flags = NO_FLAG);
bool DeleteFolderDeepWildcardsX(const char *path, EXT_FILE_FLAGS flags = NO_FLAG);
bool DeleteFileDeepWildcardsX(const char *path, EXT_FILE_FLAGS flags = NO_FLAG);
bool DeleteFolderDeepX(const char *path, EXT_FILE_FLAGS flags = NO_FLAG);
bool RenameDeepWildcardsX(const char *path, const char *namewc, const char *newname, bool forfile, bool forfolder, EXT_FILE_FLAGS flags = NO_FLAG);
bool FileMoveX(const char *oldpath, const char *newpath, EXT_FILE_FLAGS flags = NO_FLAG);
bool FileDeleteX(const char *path, EXT_FILE_FLAGS flags = NO_FLAG);
bool IsRootFolder(const char *folderName);
String GetUpperFolder(const String &folderName);
@ -59,32 +63,10 @@ bool IsFile(const char *fileName);
bool IsFolder(const char *fileName);
String GetRelativePath(String &from, String &path);
//bool GetSymLinkPath(const char *linkPath, String &filePath);
bool IsSymLink(const char *path);
bool CreateFolderDeep(const char *dir);
/////////
bool FileMoveX(const char *oldpath, const char *newpath, int flags = 0);
bool FileDeleteX(const char *path, int flags = 0);
/////////
bool SetReadOnly(const char *path, bool readOnly);
bool ReadOnly(const char *path, bool readOnly)
#if defined(__MINGW32__)
__attribute__ ((deprecated));
#else
;
#endif
bool SetReadOnly(const char *path, bool usr, bool grp, bool oth);
bool ReadOnly(const char *path, bool usr, bool grp, bool oth)
#if defined(__MINGW32__)
__attribute__ ((deprecated));
#else
;
#endif
bool IsReadOnly(const char *path, bool &usr, bool &grp, bool &oth);
String LoadFile_Safe(String fileName);
@ -104,15 +86,7 @@ bool FileToTrashBin(const char *path);
Upp::int64 TrashBinGetCount();
bool TrashBinClear();
//String GetDesktopFolder();
//String GetProgramsFolder();
//String GetAppDataFolder();
//String GetMusicFolder();
//String GetPicturesFolder();
//String GetVideoFolder();
String GetPersonalFolder();
//String GetTemplatesFolder();
//String GetDownloadFolder();
String GetRootFolder();
String GetTempFolder();
String GetOsFolder();
@ -204,7 +178,7 @@ public:
FileDiff& operator[](long i) {return diffList[i];}
bool Compare(FileDataArray &master, FileDataArray &secondary, const String folderFrom,
Upp::Array<String> &excepFolders, Upp::Array<String> &excepFiles, int sensSecs = 0);
bool Apply(String toFolder, String fromFolder, int flags = 0);
bool Apply(String toFolder, String fromFolder, EXT_FILE_FLAGS flags = NO_FLAG);
long GetCount() {return diffList.GetCount();};
bool SaveFile(const char *fileName);
bool LoadFile(const char *fileName);

View file

@ -63,10 +63,15 @@ nst]_[@(0.0.255) char]_`*[*@3 folderName])&]
[s4;%- &]
[s5;:IsRootFolder`(const char`*`):%- [@(0.0.255) bool]_[* IsRootFolder]([@(0.0.255) const]_
[@(0.0.255) char]_`*[*@3 folderName])&]
[s0;l288; Returns true if there is a folder over [%-*@3 folderName].
[s0;l288; Returns false if there is a folder over [%-*@3 folderName].
It does not check if [%-*@3 folderName] exists.&]
[s3; &]
[s4;%- &]
[s5;:GetUpperFolder`(const String`&`):%- [_^String^ String]_[* GetUpperFolder]([@(0.0.255) c
onst]_[_^String^ String]_`&[*@3 folderName])&]
[s2; Returns the folder over [%-*@3 folderName].&]
[s3; &]
[s4;%- &]
[s5;:GetRelativePath`(String`&`,String`&`):%- [_^String^ String]_[* GetRelativePath]([_^String^ S
tring]_`&[*@3 from], [_^String^ String]_`&[*@3 path])&]
[s2; Returns the relative path to go from [%-*@3 from] to [%-*@3 path].&]
@ -148,16 +153,27 @@ depending on the value of[%-*@3 readOnly].&]
[s5;:SetReadOnly`(const char`*`,bool`,bool`,bool`):%- [@(0.0.255) bool]_[* SetReadOnly]([@(0.0.255) c
onst]_[@(0.0.255) char]_`*[*@3 path], [@(0.0.255) bool]_[*@3 user], [@(0.0.255) bool]_[*@3 gr
oup], [@(0.0.255) bool]_[*@3 others])&]
[s2; Sets [%-*@3 path] [%-*@3 ](file or folder) as read only or write
permitted for[%-*@3 user], [%-*@3 group ]and [%-*@3 others].&]
[s2; Sets [%-*@3 path] (file or folder) as read only or write permitted
for[%-*@3 user], [%-*@3 group ]and [%-*@3 others].&]
[s0;l288; -|Returns true in case of success.&]
[s3; &]
[s4;%- &]
[s5;:IsReadOnly`(const char`*`,bool`&`,bool`&`,bool`&`):%- [@(0.0.255) bool]_[* IsReadOnl
y]([@(0.0.255) const]_[@(0.0.255) char]_`*[*@3 path], [@(0.0.255) bool]_`&[*@3 user],
[@(0.0.255) bool]_`&[*@3 group], [@(0.0.255) bool]_`&[*@3 others])&]
[s2; Returns true in [%-*@3 user], [%-*@3 group] or [%-*@3 others] if [%-*@3 path
](file or folder) is read only for some of those user groups.&]
[s0; -|Returns true in case of success.&]
[s3;%- &]
[s4;%- &]
[s5;:IsFile`(const char`*`):%- [@(0.0.255) bool]_[* IsFile]([@(0.0.255) const]_[@(0.0.255) ch
ar]_`*[*@3 fileName])&]
[s2; Returns true if [%-*@3 fileName] is a file.&]
[s3; &]
[s4; &]
[s5;:DeleteFolderDeepWildcards`(const char`*`):%- [@(0.0.255) bool]_[* DeleteFolderDeepWi
ldcards]([@(0.0.255) const]_[@(0.0.255) char]_`*[*@3 dir])&]
[s2;%- [%% Delete all files under ][*@3 dir ][%% folder that comply the
condition in wildcards included in ][*@3 dir.]&]
[s0;l288; Returns true in case of success.&]
[s5;:IsFolder`(const char`*`):%- [@(0.0.255) bool]_[* IsFolder]([@(0.0.255) const]_[@(0.0.255) c
har]_`*[*@3 fileName])&]
[s2; Returns true id [%-*@3 fileName] is a folder.&]
[s3; &]
[s4; &]
[s5;:SearchFile`(String`,String`,String`,Array`<String`>`&`):%- [_^Array^ Array]<[_^String^ S
@ -208,8 +224,78 @@ in the Trash Bin.&]
Trash Bin.ç&]
[s3; &]
[s0; &]
[ {{10000@1 [s0; [* String functions]]}}&]
[s0;%- &]
[ {{10000@1 [s0; [* File/Folder Handling `"X`" functions]]}}&]
[s0; &]
[s0;%- [%% File and folder handling functions with eXtras defined in
]EXT`_FILE`_FLAGS&]
[s4;%- &]
[s5;:USE`_TRASH`_BIN:%- [@(0.0.255) enum]_EXT`_FILE`_FLAGS_[* USE`_TRASH`_BIN]_`=_[@3 1]&]
[s2; If true, removed fildes and fodlers will be moved to the Trash
(recycle) Bin.&]
[s3;%- &]
[s4;%- &]
[s5;:BROWSE`_LINKS:%- [@(0.0.255) enum]_EXT`_FILE`_FLAGS_[* BROWSE`_LINKS]_`=_[@3 2]&]
[s2; If true, folder functions will follow symbolic links.&]
[s3;%- &]
[s4;%- &]
[s5;:DELETE`_READ`_ONLY:%- [@(0.0.255) enum]_EXT`_FILE`_FLAGS_[* DELETE`_READ`_ONLY]_`=_[@3 4
]&]
[s2; If true, file/folder deletion functions will not consider read
only flag.&]
[s0; &]
[s4;%- &]
[s5;:DeleteFolderDeepWildcardsX`(const char`*`,EXT`_FILE`_FLAGS`):%- [@(0.0.255) bool]_
[* DeleteFolderDeepWildcardsX]([@(0.0.255) const]_[@(0.0.255) char]_`*[*@3 path],
EXT`_FILE`_FLAGS_[*@3 flags]_`=_[@3 0])&]
[s2;%- [%% Delete all folders under ][*@3 path ][%% using ][*@3 flags][%%
that comply the condition in wildcards included in ][*@3 path.]&]
[s2; Returns true in case of success.&]
[s3; &]
[s4;%- &]
[s5;:DeleteFileDeepWildcardsX`(const char`*`,EXT`_FILE`_FLAGS`):%- [@(0.0.255) bool]_[* D
eleteFileDeepWildcardsX]([@(0.0.255) const]_[@(0.0.255) char]_`*[*@3 path],
EXT`_FILE`_FLAGS_[*@3 flags]_`=_[@3 0])&]
[s2;%- [%% Delete all files under ][*@3 path ][%% using ][*@3 flags][%% that
comply the condition in wildcards included in ][*@3 path.]&]
[s2; Returns true in case of success.&]
[s3; &]
[s4;%- &]
[s5;:DeleteFolderDeepX`(const char`*`,EXT`_FILE`_FLAGS`):%- [@(0.0.255) bool]_[* DeleteFo
lderDeepX]([@(0.0.255) const]_[@(0.0.255) char]_`*[*@3 path], EXT`_FILE`_FLAGS_[*@3 flags
]_`=_[@3 0])&]
[s2; Delete [%-*@3 path] folder and all files and folders under it
using [%-*@3 flags].&]
[s2; Returns true in case of success.&]
[s3;%- &]
[s4;%- &]
[s5;:RenameDeepWildcardsX`(const char`*`,const char`*`,const char`*`,bool`,bool`,EXT`_FILE`_FLAGS`):%- [@(0.0.255) b
ool]_[* RenameDeepWildcardsX]([@(0.0.255) const]_[@(0.0.255) char]_`*[*@3 path],
[@(0.0.255) const]_[@(0.0.255) char]_`*[*@3 namewc], [@(0.0.255) const]_[@(0.0.255) char]_`*
[*@3 newname], [@(0.0.255) bool]_[*@3 forfile], [@(0.0.255) bool]_[*@3 forfolder],
EXT`_FILE`_FLAGS_[*@3 flags]_`=_NO`_FLAG)&]
[s2; Rename to [%-*@3 newname] the files (if [%-*@3 forfile] is set to
true) and/or folders (if [%-*@3 forfolder] is set to true) under
[%-*@3 path] that comply the condition in wildcards included in
[%-*@3 namewc] using [%-*@3 flags] .&]
[s2; Returns true in case of success.&]
[s3; &]
[s4;%- &]
[s5;:FileMoveX`(const char`*`,const char`*`,EXT`_FILE`_FLAGS`):%- [@(0.0.255) bool]_[* Fi
leMoveX]([@(0.0.255) const]_[@(0.0.255) char]_`*[*@3 oldpath], [@(0.0.255) const]_[@(0.0.255) c
har]_`*[*@3 newpath], EXT`_FILE`_FLAGS_[*@3 flags]_`=_NO`_FLAG)&]
[s2; Moves or renames [%-*@3 oldpath] file to [%-*@3 newpath] using [%-*@3 flags].&]
[s2; Returns true in case of success.&]
[s3; &]
[s4; &]
[s5;:FileDeleteX`(const char`*`,EXT`_FILE`_FLAGS`):%- [@(0.0.255) bool]_[* FileDeleteX]([@(0.0.255) c
onst]_[@(0.0.255) char]_`*[*@3 path], EXT`_FILE`_FLAGS_[*@3 flags]_`=_NO`_FLAG)&]
[s2; Deletes [%-*@3 path] file using [%-*@3 flags].&]
[s2; Returns true in case of success.&]
[s3; &]
[s0; &]
[ {{10000@1 [s0; [* String functions]]}}&]
[s4;%- &]
[s5;:Trim`(const String`&`):%- [_^String^ String]_[* Trim]([@(0.0.255) const]_[_^String^ Stri
ng][@(0.0.255) `&]_[*@3 s])&]
[s2; Like TrimBoth(), it removes left and right spaces in [%-*@3 s].
@ -223,8 +309,17 @@ Spaces are chars like, `' `', `'`\t`', `'`\n`', ...&]
[%-*@3 token] is a String that contains token identifier chars.&]
[s0;l288; Returns the String from original [%-*@3 pos] to the char
after found token or until the end of the String if no token
in [%-*@3 token] is found. [%-*@3 pos] is updated to the next char
after returned String.&]
is found. [%-*@3 pos] is updated to the next char after returned
String.&]
[s3; &]
[s4;%- &]
[s5;:Tokenize`(const String`&`,const String`&`):%- [_^String^ String]_[* Tokenize]([@(0.0.255) c
onst]_[_^String^ String]_`&[*@3 str], [@(0.0.255) const]_[_^String^ String]_`&[*@3 tokenEnd
])&]
[s2; Finds a token in [%-*@3 str]. [%-*@3 tokenEnd] is a String that
contains token identifier chars.&]
[s2; Returns the String to the char after found token or until the
end of the String if no token is found.&]
[s3; &]
[s4;%- &]
[s5;:ReadCSV`(const String`,char`,bool`):%- [_^Vector^ Vector]<[_^Vector^ Vector]_<[_^Value^ V
@ -322,6 +417,12 @@ characters.&]
[s0;l288; For example `"Århus Ørsted Ñandú crème brûlée`"
is converted in `"Aarhus Oersted Nandu creme brulee`"&]
[s3;%- &]
[s4;%- &]
[s5;:FitFileName`(String`,int`):%- [_^String^ String]_[* FitFileName]([@(0.0.255) const]_[_^String^ S
tring]_[*@3 fileName], [@(0.0.255) int]_[*@3 len])&]
[s2; Fits String [%-*@3 fileName] length until [%-*@3 len] removing just
intermediate folder names replacing them with `"...`".&]
[s3; &]
[s4; &]
[s5;:IsPunctuation`(wchar`):%- [@(0.0.255) bool]_[* IsPunctuation]([_^wchar^ wchar]_[*@3 c])&]
[s2; Returns true if [%-*@3 c ]is a punctuation character.&]

View file

@ -1,356 +1,359 @@
TITLE("Functions4U. Reference")
COMPRESSED
120,156,236,188,249,87,99,87,118,48,250,175,104,117,190,244,179,147,74,185,70,15,229,228,91,221,233,78,39,189,190,78,58,171,237,124,239,7,167,220,133,171,84,54,233,42,168,0,213,110,39,47,89,26,209,60,33,33,9,129,144,132,38,196,40,64,128,16,2,141,72,72,12,18,179,16,160,9,208,192,160,1,129,16,26,223,189,87,12,162,10,202,46,119,167,243,189,181,158,87,45,75,58,247,236,125,246,124,246,222,231,92,62,187,3,251,31,255,227,214,141,91,127,114,235,91,254,123,240,83,248,211,138,151,207,234,30,126,86,121,239,222,135,31,87,220,185,255,241,111,254,215,47,63,250,24,132,191,13,192,223,253,224,246,221,15,239,223,189,125,239,206,251,192,255,110,223,189,125,231,254,157,187,247,110,127,120,231,163,123,31,222,189,251,225,173,7,143,159,85,212,214,62,252,236,217,157,15,63,132,128,238,0,64,119,62,184,127,231,246,7,247,62,188,247,225,237,187,31,124,120,7,128,189,115,235,214,157,91,31,220,185,127,251,222,221,15,239,220,127,240,4,94,251,248,225,
103,183,128,233,119,129,233,31,189,127,247,163,91,183,111,221,250,224,246,237,91,119,239,124,112,235,238,253,123,183,111,223,189,3,160,184,243,193,157,219,183,238,63,128,87,61,121,248,217,223,189,255,49,8,112,15,100,234,254,251,0,233,239,3,216,238,221,187,5,96,7,193,238,221,189,125,247,214,157,187,247,111,127,116,255,253,7,95,192,191,172,172,186,138,165,251,223,202,210,7,183,30,84,214,193,159,159,114,84,113,239,227,63,251,209,253,143,111,3,160,239,223,120,255,79,62,0,150,189,119,31,88,236,35,144,163,187,0,216,157,59,239,223,255,232,246,253,123,0,73,247,110,221,121,80,3,255,215,151,149,53,240,231,240,170,186,83,12,149,183,111,223,185,253,241,23,183,63,248,24,32,225,63,255,243,63,111,222,190,119,171,36,169,15,0,90,110,223,2,232,190,115,27,24,3,248,248,224,246,253,143,110,125,116,255,195,219,31,222,186,251,193,189,59,247,63,0,88,127,81,81,83,241,252,148,147,47,238,221,249,248,148,143,15,111,124,248,39,239,223,126,31,144,232,173,15,
1,250,239,127,4,32,184,5,48,1,124,2,130,188,15,252,187,251,225,131,186,83,96,16,14,4,250,232,198,71,127,2,8,233,238,253,91,31,124,116,235,131,123,31,220,191,7,112,114,231,246,251,183,1,65,222,2,249,7,212,240,160,170,186,230,121,197,179,135,159,253,251,175,255,227,79,255,230,31,254,226,159,62,129,125,6,251,247,127,191,13,218,202,143,222,1,212,114,243,222,157,155,183,222,133,125,86,123,235,99,216,103,127,246,163,15,62,190,7,251,217,203,170,199,117,149,213,85,181,247,254,233,38,236,87,240,167,240,26,120,213,99,248,195,135,255,241,31,63,124,8,206,251,179,31,221,5,102,149,190,195,126,81,89,91,7,171,126,10,123,122,6,4,171,172,130,189,168,120,252,155,138,47,225,55,79,231,0,31,231,107,222,62,91,10,246,171,151,85,85,149,85,95,194,158,86,62,131,215,194,42,170,158,192,30,87,63,127,14,124,214,158,45,117,239,227,63,253,11,104,157,251,31,63,248,69,5,176,192,87,63,3,230,62,122,231,49,176,76,29,236,241,87,21,53,143,
254,236,209,187,15,128,73,159,253,232,157,91,55,111,221,4,36,247,46,236,139,234,234,103,15,127,13,44,112,1,242,240,157,242,9,16,56,48,163,124,8,192,245,240,215,143,254,12,144,192,93,136,160,135,239,130,235,222,249,24,246,203,23,112,128,167,186,175,224,208,48,236,179,63,253,139,179,41,176,135,95,87,214,125,5,61,170,120,2,127,252,178,162,14,254,4,246,162,166,250,75,64,73,176,39,240,167,149,85,192,111,64,24,224,132,95,126,2,251,226,27,112,16,244,205,50,177,0,31,144,85,193,62,123,15,246,55,191,171,120,254,226,25,252,193,195,87,198,47,216,120,231,209,15,30,63,120,244,207,143,254,249,239,191,129,213,190,168,129,87,60,169,253,10,14,175,187,89,247,187,186,71,63,120,247,38,236,231,117,176,175,43,159,61,131,85,3,52,159,45,118,78,209,59,207,42,127,3,135,125,9,127,82,9,232,171,6,86,85,93,7,127,81,241,228,93,24,196,196,147,234,199,47,65,35,135,61,250,193,85,184,111,66,52,221,61,35,249,26,133,130,36,194,254,14,80,
224,51,64,173,23,58,60,211,32,248,248,39,21,117,175,168,239,198,119,84,230,41,244,247,208,228,13,216,219,128,84,188,0,132,247,228,103,229,38,240,99,104,8,48,209,58,72,151,192,119,208,224,203,44,225,33,52,14,96,174,3,68,88,11,121,67,153,173,148,97,188,121,25,10,82,214,23,112,216,243,234,39,149,79,43,1,107,1,157,224,53,40,208,206,128,121,64,20,170,0,172,9,180,133,138,42,64,141,55,203,205,228,87,240,186,151,53,160,157,214,188,132,131,54,247,184,162,22,14,210,81,251,242,241,99,120,109,237,205,50,245,149,59,21,136,254,147,186,154,18,131,191,135,98,206,113,252,151,171,167,182,174,230,109,245,82,7,255,93,221,217,40,8,254,214,130,43,151,216,143,207,213,242,61,197,117,129,224,237,101,85,85,241,252,15,47,175,87,195,26,180,200,245,130,187,243,189,141,237,130,243,127,0,150,56,19,31,96,58,64,180,120,244,195,87,4,120,149,56,127,253,121,105,242,231,167,64,175,200,19,196,122,181,76,95,3,44,159,244,232,135,32,30,128,197,23,
21,117,95,221,126,75,241,130,48,119,190,7,204,221,115,165,252,2,140,202,151,153,120,7,48,151,151,117,176,127,169,174,132,246,199,186,175,106,224,112,8,170,246,38,236,26,217,254,45,188,238,159,0,28,53,63,171,126,246,4,94,115,229,14,121,165,244,46,195,189,165,69,66,48,144,212,223,125,213,50,0,235,1,237,8,180,10,104,235,132,166,194,170,127,11,252,239,204,212,46,160,175,51,152,159,215,254,170,186,186,238,13,44,93,229,95,229,64,191,31,63,87,135,8,136,161,26,224,11,224,71,223,198,23,184,33,63,169,6,146,27,96,179,5,214,130,63,254,13,8,255,250,68,24,252,119,64,22,117,173,227,0,74,250,21,252,89,69,93,229,111,225,255,8,88,193,163,119,46,124,230,252,219,155,117,92,14,14,8,229,245,105,143,126,88,18,65,77,245,115,208,154,175,157,0,90,225,149,218,174,57,93,1,154,1,171,171,134,125,89,13,97,59,231,22,196,12,142,159,254,134,16,93,138,196,63,3,146,18,120,41,5,186,1,136,233,65,217,179,202,219,247,111,125,252,75,
48,201,40,71,246,232,175,128,108,229,61,64,241,191,169,125,175,14,254,248,171,170,234,103,213,95,126,243,30,144,68,190,120,89,7,175,169,125,244,131,55,160,128,200,124,88,142,226,139,202,18,252,243,10,32,9,125,118,25,250,85,25,2,30,250,117,245,203,103,79,0,182,65,17,0,72,110,222,124,15,248,247,26,142,75,28,254,188,204,118,170,170,97,207,43,234,30,127,5,108,255,117,95,195,129,116,237,139,106,128,32,200,201,97,64,130,86,115,42,218,127,120,249,236,217,155,54,239,95,193,43,158,149,71,211,111,247,248,114,168,183,243,143,55,232,190,226,217,185,187,95,210,239,59,79,128,226,233,113,93,117,205,55,96,202,9,238,46,167,249,38,4,86,249,229,87,117,176,103,240,58,64,89,208,30,82,11,78,122,244,131,71,63,40,243,146,18,158,115,39,130,28,229,13,126,242,15,192,150,117,101,192,248,206,251,201,37,36,223,39,128,188,229,110,0,148,219,103,139,157,201,246,39,0,72,37,48,0,6,255,75,193,2,246,176,2,140,58,64,25,8,166,234,103,193,231,
92,86,101,168,110,148,27,81,89,4,126,89,245,228,213,80,5,123,88,247,21,144,17,128,241,236,89,109,245,25,242,43,177,158,37,0,101,174,250,224,178,192,128,10,229,189,175,170,1,123,252,193,13,216,233,215,247,94,214,194,107,222,59,43,48,0,159,120,247,156,176,242,25,167,190,114,174,214,75,85,3,224,210,0,89,111,151,113,85,86,213,93,20,14,37,4,111,111,239,223,47,31,184,80,36,180,108,237,105,137,91,102,210,183,31,150,231,250,37,168,210,230,14,128,253,252,92,117,15,74,35,231,193,235,209,95,220,185,216,129,0,204,96,113,247,197,51,248,243,90,168,228,3,237,5,208,12,88,187,65,117,53,24,126,207,10,215,218,155,175,161,186,13,162,58,45,190,1,84,64,9,2,85,250,117,175,206,124,101,30,252,95,95,86,188,33,38,85,61,41,57,211,207,171,174,79,146,79,119,173,27,128,138,222,191,119,238,140,208,175,207,97,208,199,169,230,46,35,251,131,21,23,87,57,62,0,1,230,187,165,221,239,85,82,64,29,85,215,222,2,112,255,21,176,224,93,
216,173,115,21,127,2,175,168,1,162,56,144,5,95,170,59,158,2,122,168,173,43,247,96,8,121,73,39,95,124,83,7,7,241,85,130,253,146,115,27,0,241,95,97,2,176,63,136,9,148,19,119,141,37,92,162,179,178,20,110,159,86,3,1,227,85,230,94,133,255,113,85,73,80,176,223,86,60,131,10,130,39,149,143,129,157,18,202,92,225,37,102,191,134,168,125,117,5,8,251,27,130,249,79,207,54,143,95,192,171,190,4,243,158,43,99,248,169,174,128,52,246,209,131,7,23,198,243,58,252,219,153,207,249,206,117,109,130,91,91,249,111,80,249,3,114,88,123,150,233,214,190,124,14,126,173,0,10,118,168,176,2,39,213,94,14,187,151,49,191,129,255,239,201,246,247,225,22,164,21,16,215,155,121,189,92,92,159,77,47,79,113,206,109,2,72,117,42,235,78,115,228,74,40,161,187,48,232,202,186,90,8,223,183,2,66,59,202,107,59,217,247,21,251,107,52,223,61,147,118,185,216,207,109,230,39,213,47,190,249,158,37,254,37,28,111,109,117,111,185,227,84,193,191,254,199,
103,21,143,225,101,155,206,139,111,206,182,246,11,139,3,28,174,234,241,179,151,80,84,56,147,82,169,233,90,154,90,91,150,155,159,163,252,67,180,152,62,1,51,231,138,39,191,172,122,246,154,56,65,129,189,65,140,101,144,223,35,81,189,113,37,82,224,105,205,25,206,139,16,94,87,123,185,44,120,7,178,33,48,99,133,100,243,46,12,72,187,64,48,88,53,0,7,142,127,93,83,9,134,112,120,205,243,202,58,176,235,251,4,14,214,239,80,240,45,245,123,75,161,176,250,233,41,218,139,69,47,23,4,85,64,249,95,245,242,119,16,8,132,173,182,22,106,161,131,113,189,22,94,7,109,35,96,114,116,3,246,101,77,245,203,23,144,190,170,193,208,127,182,157,195,254,226,255,249,47,210,75,249,255,255,232,58,2,121,190,254,41,36,139,235,31,151,4,116,173,122,31,158,253,248,30,122,6,244,113,6,124,70,98,233,103,73,61,15,203,114,186,83,42,206,122,253,111,169,167,243,112,4,7,234,35,120,41,183,254,41,28,254,226,255,174,124,246,228,113,69,205,147,218,239,220,
15,185,22,195,219,7,166,83,137,130,43,253,233,159,158,34,46,11,38,165,104,251,240,108,58,240,13,152,117,26,136,160,18,3,172,204,1,185,158,246,202,159,148,210,31,64,18,95,159,145,116,26,163,74,199,38,231,136,110,62,252,222,97,232,194,216,193,44,173,148,144,158,37,159,175,126,254,184,166,166,226,155,71,127,121,250,243,127,150,245,84,160,39,159,195,160,143,135,127,249,122,246,248,63,75,158,112,182,196,149,13,150,242,232,126,205,83,80,38,63,59,77,90,191,53,67,253,118,154,78,59,54,240,154,154,234,26,240,144,238,181,125,189,162,170,4,14,74,175,4,85,11,157,97,84,156,181,29,79,143,188,192,202,190,182,84,182,63,125,9,104,27,138,145,103,141,189,50,205,95,177,231,148,171,29,66,112,161,247,119,160,223,231,170,127,247,12,238,92,10,80,176,59,69,0,17,5,104,27,44,139,95,107,77,67,66,57,139,135,167,99,23,92,159,65,151,146,7,104,252,13,49,241,91,205,228,255,80,155,0,11,19,176,115,242,255,45,29,151,2,230,219,233,248,85,181,
221,250,248,193,47,170,43,74,39,50,191,254,164,226,233,133,234,222,208,228,185,12,113,189,114,158,158,29,43,156,111,38,96,151,11,216,37,206,16,188,83,150,92,150,38,66,173,123,32,101,253,186,186,230,55,208,89,248,63,2,133,222,239,160,157,252,52,231,122,89,87,253,28,168,143,30,3,145,243,27,216,151,240,42,120,13,116,114,252,197,55,167,39,197,87,29,15,255,211,163,63,127,244,231,23,171,190,91,118,220,254,162,166,18,192,13,100,111,207,170,75,69,223,185,82,129,170,160,26,200,163,75,28,1,41,4,188,116,238,243,12,170,15,202,181,11,66,63,169,124,14,175,2,179,15,104,180,4,83,82,13,116,250,120,6,12,78,191,9,251,244,43,32,67,63,173,17,129,84,167,18,218,25,193,67,238,11,118,126,91,89,83,247,178,226,108,111,40,21,128,231,235,157,146,80,74,235,203,121,7,145,222,130,189,243,244,162,193,116,149,249,189,7,212,188,143,65,217,66,217,211,165,102,253,101,205,2,130,250,151,151,192,46,89,78,253,105,225,112,197,218,47,171,234,42,159,
93,204,131,159,23,167,231,117,66,121,83,234,211,234,79,107,42,106,191,250,235,202,170,111,219,139,127,91,93,249,228,188,21,117,1,246,123,116,95,75,123,111,237,165,179,187,82,167,20,224,166,246,52,21,5,140,16,208,43,200,14,180,34,12,88,242,186,192,119,70,18,80,61,254,4,40,202,235,30,189,115,125,87,230,213,185,15,223,185,242,244,231,229,243,47,74,205,73,240,246,77,45,236,157,139,130,227,172,254,173,132,3,17,225,89,245,99,200,92,78,239,73,188,74,233,21,21,218,217,250,63,121,6,68,215,115,66,175,18,247,165,153,167,100,222,2,201,124,94,253,91,144,150,103,37,101,127,79,2,77,242,239,114,39,226,212,145,206,221,245,245,107,17,159,214,84,62,127,237,48,244,13,177,11,156,255,251,28,115,214,94,62,122,4,209,253,117,53,120,164,113,90,105,151,132,243,12,254,180,14,18,70,169,75,95,251,2,168,7,107,203,58,65,64,102,11,251,164,52,8,22,43,160,169,2,64,0,194,27,176,71,255,23,240,15,252,120,244,207,117,103,95,170,192,47,55,
111,94,107,127,213,191,129,87,1,37,251,117,135,194,23,191,1,59,252,22,241,156,162,250,142,34,58,75,147,192,243,237,239,218,44,60,5,169,3,87,122,5,8,106,58,159,157,149,85,95,136,26,108,101,158,58,6,184,171,65,160,229,210,4,86,135,65,151,220,170,206,219,118,23,125,193,139,107,35,165,37,75,237,145,242,16,125,145,227,148,16,63,129,3,161,236,105,37,120,174,2,42,230,234,58,254,34,204,67,235,1,246,14,172,15,68,236,178,133,207,2,8,136,5,86,241,180,14,10,193,96,75,176,180,14,88,157,158,199,204,211,235,4,101,104,43,159,130,199,92,175,242,122,193,67,169,255,119,105,61,96,244,229,139,39,144,195,157,46,13,201,171,108,253,243,184,93,90,228,58,139,2,171,210,159,124,242,191,95,49,168,27,80,136,46,47,106,127,253,249,255,134,124,253,115,88,233,19,202,229,94,25,250,53,52,6,86,244,192,16,248,1,100,119,80,126,119,186,200,119,53,181,51,67,59,75,232,94,11,245,165,9,112,240,154,31,184,238,27,90,24,160,147,254,10,254,
2,14,74,170,44,177,7,74,215,10,216,205,199,181,191,61,75,0,206,84,113,97,103,165,220,250,82,67,246,98,69,160,154,170,2,47,36,157,222,94,59,75,170,127,126,222,248,187,188,50,120,116,4,232,182,230,236,103,77,245,215,181,231,151,154,158,64,123,212,147,171,11,178,95,193,127,11,84,199,112,208,45,190,155,207,95,123,188,83,134,233,247,139,138,223,209,251,175,132,174,171,134,214,191,34,22,92,28,171,191,126,118,0,194,92,10,169,229,206,115,238,45,16,230,178,224,80,214,141,7,221,246,97,37,168,0,72,6,128,63,2,217,209,153,210,62,169,124,94,249,172,2,202,12,65,20,167,151,74,106,161,146,228,210,217,192,107,142,123,237,225,14,120,149,180,238,23,213,128,86,222,121,86,253,230,12,251,98,238,101,173,128,112,167,82,169,184,178,211,12,78,56,203,30,206,174,194,193,30,2,234,0,88,44,237,195,101,73,237,245,133,28,88,98,212,126,90,125,106,68,239,60,169,126,249,5,144,20,94,246,252,43,200,126,5,240,50,237,37,36,231,110,10,205,124,67,
15,171,170,178,174,246,84,235,23,19,158,86,60,171,45,239,213,66,108,65,117,90,197,115,48,155,42,107,178,159,173,0,43,99,24,204,179,1,185,130,130,0,170,144,191,251,187,7,127,255,247,15,62,249,228,162,201,116,225,169,208,242,128,117,156,118,74,64,209,150,134,222,249,170,250,101,77,237,13,216,115,96,191,184,113,182,200,187,231,110,11,132,130,186,51,115,0,171,174,50,220,80,95,190,250,5,116,114,5,213,12,37,154,0,97,149,144,148,50,172,171,212,113,121,222,43,21,218,149,18,126,21,247,245,53,90,249,13,183,11,121,190,30,248,96,15,175,148,93,73,186,231,187,202,133,22,78,37,243,70,254,47,91,203,181,252,255,221,223,127,114,97,138,96,52,131,66,218,141,239,106,148,101,224,151,13,242,34,194,128,58,189,54,252,0,154,126,229,217,247,176,100,240,178,204,27,44,249,188,225,112,38,248,178,46,195,169,14,206,104,44,253,122,14,182,248,202,250,165,167,84,92,163,165,87,239,209,252,55,24,57,160,133,119,222,45,175,205,175,178,112,96,210,69,235,168,
148,171,158,125,156,106,251,135,111,40,88,202,176,188,161,97,244,18,216,171,223,144,118,94,103,10,167,143,175,55,134,179,76,248,212,28,206,52,251,115,40,189,188,218,173,32,90,222,224,88,96,221,253,54,218,127,248,38,69,148,185,193,43,158,118,166,133,191,6,43,251,11,79,123,89,186,95,240,173,254,117,9,12,18,252,203,211,170,247,101,249,13,0,168,111,112,3,246,176,236,249,107,225,254,59,5,246,82,3,226,33,20,120,106,191,170,174,57,203,117,110,190,106,217,80,62,12,90,246,13,208,82,191,41,153,47,120,49,28,216,214,161,219,252,128,20,111,223,185,123,243,30,236,127,125,113,125,232,253,180,250,211,202,107,111,136,129,143,62,135,61,122,240,0,252,114,102,132,37,136,183,235,79,212,190,114,60,0,21,151,15,191,51,134,235,150,5,2,247,203,199,165,68,172,68,106,233,192,27,154,120,101,42,246,106,22,246,29,232,190,1,101,70,165,45,0,52,238,82,253,255,236,27,64,61,224,58,215,38,25,32,197,63,5,18,223,107,68,11,62,130,68,11,126,185,16,
45,244,235,143,47,218,215,151,189,70,180,208,196,63,130,104,193,117,222,156,105,254,20,10,76,63,126,2,182,240,46,82,184,211,207,111,205,61,203,161,223,144,199,189,202,212,165,135,53,224,155,22,175,237,113,151,179,211,39,15,203,82,114,8,160,60,93,189,212,129,173,173,46,149,235,149,117,176,175,42,106,203,46,65,94,116,203,158,0,69,120,221,229,130,29,106,182,158,53,144,128,72,89,3,246,103,0,188,64,232,248,250,20,18,234,204,124,89,83,241,226,43,88,197,239,42,107,47,206,137,97,64,17,6,93,187,43,45,124,250,58,219,57,52,72,1,16,138,43,159,191,124,126,74,201,191,190,172,0,42,250,186,111,46,104,41,21,10,21,167,130,185,190,222,6,11,195,31,63,126,12,221,241,251,14,45,248,75,0,223,45,187,59,147,127,121,78,119,241,10,22,132,9,144,56,104,130,21,143,193,11,192,176,218,151,95,212,2,204,188,4,135,207,39,62,175,6,92,21,8,162,53,213,191,171,124,94,81,218,180,30,87,86,150,193,93,113,105,247,162,59,114,122,95,21,106,
84,188,128,215,128,199,143,55,74,213,25,184,61,126,13,148,96,167,7,87,240,211,77,173,12,226,89,245,215,103,16,165,75,43,23,228,61,173,172,169,61,191,12,123,150,166,156,175,240,42,202,179,9,231,8,47,145,252,227,170,11,105,156,95,175,133,234,250,215,4,82,93,5,157,127,215,86,63,135,95,39,128,178,203,158,176,71,63,48,97,107,190,122,89,11,51,113,1,114,1,36,38,6,64,153,73,3,123,92,99,106,7,80,124,81,99,26,125,102,82,192,193,43,188,181,176,242,162,13,0,253,113,5,4,250,75,120,9,244,31,0,200,151,0,32,28,130,123,249,12,14,47,93,185,190,162,221,254,243,218,127,4,205,255,101,5,232,1,143,222,249,26,10,180,111,122,5,160,108,58,100,90,16,196,231,176,175,203,218,44,143,95,175,62,79,239,247,159,29,82,65,121,101,5,236,197,5,174,11,17,93,223,158,254,21,252,5,120,119,230,91,15,16,175,116,9,8,244,205,206,112,253,65,224,211,211,22,196,53,143,107,78,177,191,242,110,3,52,88,251,106,47,18,50,148,75,
23,144,161,46,4,100,51,231,173,160,18,190,179,123,142,224,153,13,212,82,175,124,126,113,215,181,4,118,58,163,148,185,92,123,250,250,154,228,74,205,186,50,101,255,94,82,187,186,219,246,244,245,190,77,217,211,75,50,187,115,189,184,160,254,228,183,75,10,154,246,6,57,149,218,156,175,75,233,250,211,133,23,240,199,149,224,33,91,233,14,215,235,135,11,127,11,175,251,20,254,252,197,217,149,248,111,185,248,126,49,245,226,80,231,111,225,117,165,157,234,236,125,210,58,96,210,233,161,220,233,113,28,120,242,116,217,33,174,37,248,239,43,160,19,230,107,15,67,62,169,252,18,112,240,79,95,119,110,112,213,103,80,30,245,151,151,116,5,189,173,14,42,235,30,236,83,240,208,253,138,14,33,136,19,176,142,210,148,87,90,79,167,25,213,229,171,142,95,86,129,187,95,233,254,73,69,233,117,220,242,235,178,127,94,126,93,182,226,225,77,48,212,149,110,243,254,22,254,202,220,91,151,102,66,135,155,175,98,251,139,219,175,205,169,130,127,9,189,105,114,237,139,116,64,84,173,
248,18,14,202,233,198,239,33,170,115,129,192,78,17,190,38,164,27,176,75,3,95,92,217,176,171,40,1,151,213,55,21,151,46,183,127,113,237,21,215,203,124,252,145,89,121,101,224,138,237,224,26,222,110,92,48,86,206,230,227,239,206,230,127,55,167,175,12,60,249,62,172,223,184,224,187,92,10,79,174,149,194,139,234,175,239,252,94,158,125,193,57,136,234,58,135,134,253,170,162,178,246,34,174,86,64,221,211,59,55,203,187,225,181,255,90,115,218,200,185,154,204,187,127,56,50,239,190,21,153,119,223,64,212,189,63,28,81,247,222,138,168,123,215,17,245,215,165,23,215,206,138,223,79,47,78,110,94,249,250,135,136,229,231,185,221,233,170,87,23,208,37,200,43,107,215,223,86,60,187,166,122,125,3,208,235,189,178,239,2,84,241,187,111,75,45,65,98,192,64,127,246,238,223,69,83,236,146,51,129,152,174,13,42,85,95,130,197,237,147,187,239,223,250,3,238,3,23,72,95,181,17,32,73,120,37,108,128,76,156,191,89,254,228,73,237,37,230,46,46,147,131,144,176,186,138,
223,64,61,225,10,232,18,16,84,136,214,130,185,68,153,12,110,65,156,3,43,27,53,215,241,252,211,202,218,186,138,170,199,240,111,55,185,63,176,245,93,214,122,233,138,127,137,148,183,182,195,223,93,247,70,217,27,96,190,249,30,48,191,187,238,173,244,55,173,115,231,202,157,224,201,41,175,176,119,62,251,252,171,186,186,23,143,30,60,122,239,209,123,128,231,223,252,186,242,55,149,47,224,79,42,43,30,221,172,174,249,242,209,123,224,239,71,239,253,205,203,199,207,42,159,192,43,170,30,253,250,12,244,115,24,252,108,16,188,33,119,170,242,179,203,115,37,153,148,190,3,188,190,11,89,194,249,195,59,101,15,1,2,191,171,113,252,99,53,216,119,255,245,163,191,252,20,186,203,123,227,202,209,255,14,227,248,245,231,167,68,124,126,70,205,195,191,60,67,252,232,135,37,77,188,184,78,227,223,9,248,143,172,198,179,251,27,175,188,211,120,231,218,216,245,189,252,248,255,247,238,50,152,127,251,227,69,132,183,167,237,255,140,40,114,246,21,16,213,187,55,222,20,81,206,191,
255,219,27,162,11,180,51,254,183,237,59,87,159,144,67,52,253,31,107,162,127,192,13,168,2,100,244,191,102,215,184,164,215,63,250,150,241,214,122,253,227,239,29,87,40,224,173,227,253,47,159,60,41,93,123,184,190,101,11,76,185,238,106,67,121,158,121,125,62,13,53,107,171,159,92,251,58,241,223,252,22,44,85,222,76,4,56,231,15,64,5,28,64,115,109,143,19,188,242,248,6,90,206,111,181,157,205,123,27,122,202,233,168,1,17,92,220,162,132,78,18,32,202,206,207,154,106,192,23,113,225,207,158,130,28,148,94,185,125,19,225,159,86,255,170,226,201,249,33,220,155,46,238,64,51,223,112,224,6,25,211,117,180,151,44,13,188,211,246,4,254,101,13,28,94,126,136,0,176,82,83,1,108,19,85,215,188,228,245,105,245,79,225,95,126,71,18,129,153,223,141,196,87,111,205,190,70,231,41,73,151,233,60,37,190,140,206,43,122,161,127,11,158,215,129,175,129,92,213,16,45,255,147,10,117,63,175,250,89,77,249,159,204,2,111,74,191,26,166,46,15,126,239,40,245,235,
207,127,5,127,12,197,136,210,231,69,136,128,78,86,207,105,185,246,174,37,68,198,231,167,228,148,65,159,255,133,161,235,255,134,217,183,67,87,127,241,47,0,85,215,252,17,154,199,117,37,173,0,74,169,128,168,7,53,241,20,52,237,210,59,69,231,183,38,207,255,192,217,233,72,9,43,236,33,248,247,245,202,223,140,170,168,125,1,142,215,128,103,63,151,95,202,249,43,216,143,126,84,249,188,226,75,248,131,187,119,222,255,240,135,119,110,221,253,0,129,38,161,44,72,196,217,127,105,92,203,222,24,238,56,176,154,109,232,201,23,215,214,35,180,72,36,218,113,104,63,25,137,81,132,91,99,199,108,46,242,96,114,18,161,79,7,99,88,173,109,33,41,111,138,114,130,2,147,65,166,26,205,142,71,20,29,161,57,107,102,165,7,19,71,25,37,173,124,70,214,186,46,93,159,100,202,102,120,42,118,100,94,98,3,190,173,242,84,208,183,45,112,16,248,214,96,131,30,71,166,74,143,121,93,165,199,178,254,210,99,219,233,227,121,105,233,241,127,57,30,143,45,139,94,45,158,
24,138,42,93,254,36,91,40,186,78,122,160,231,177,212,104,191,192,160,167,201,98,185,228,172,39,160,135,224,10,250,148,158,54,178,79,192,71,230,41,18,91,214,187,169,19,4,13,90,22,39,19,177,206,200,135,11,134,228,216,216,218,138,216,59,118,232,116,88,60,197,240,170,39,179,221,9,45,187,143,27,78,37,17,233,136,165,247,248,36,41,31,78,143,34,194,105,54,198,49,190,66,43,142,196,231,183,117,217,227,121,59,68,230,210,81,107,38,88,92,28,45,172,109,172,105,143,118,28,130,238,93,121,62,53,53,92,156,138,88,5,90,110,100,126,31,64,151,218,204,246,49,77,185,16,34,32,200,76,54,233,8,44,1,58,32,93,181,210,65,4,228,136,110,200,59,32,44,44,20,68,5,50,62,36,56,152,131,216,204,43,92,18,33,72,137,103,198,61,144,234,165,224,249,156,214,173,213,21,225,204,8,248,88,149,162,29,34,141,99,150,93,233,160,46,133,30,205,165,71,60,130,204,210,130,60,109,69,46,36,14,13,158,204,166,244,187,202,123,9,28,164,204,68,27,6,
27,160,1,135,131,183,78,235,152,225,73,128,103,158,126,27,62,5,129,165,26,38,109,22,200,80,196,42,206,116,191,145,167,2,165,62,182,213,192,56,149,151,84,206,36,67,252,176,34,189,77,91,24,85,132,9,140,103,109,18,113,73,159,238,41,186,172,73,4,226,183,65,88,35,243,124,8,171,205,114,80,50,63,206,36,132,53,50,191,11,97,157,151,236,64,88,153,100,2,132,53,210,187,13,97,157,151,148,176,74,108,4,8,171,172,73,2,97,5,144,66,88,37,54,43,132,117,146,217,2,97,157,238,63,128,176,74,198,220,16,86,27,83,3,97,165,203,218,32,172,77,91,77,16,86,91,118,21,192,234,89,119,135,66,218,174,161,147,69,43,42,184,162,11,15,118,157,104,50,203,185,177,206,194,248,32,83,143,80,40,213,140,45,31,101,205,184,48,202,192,22,243,92,27,163,101,149,98,167,242,80,154,19,199,194,26,171,51,113,32,241,27,85,171,186,168,222,128,37,164,66,166,45,219,38,171,179,62,226,222,208,38,137,59,77,77,99,251,252,133,240,242,126,123,62,170,
74,218,214,72,163,59,2,55,126,122,47,137,245,247,113,246,251,182,135,209,233,134,177,113,181,224,112,179,155,177,188,151,88,146,163,211,110,127,110,91,232,30,210,113,248,30,2,173,126,21,45,156,35,237,28,72,58,85,163,205,171,42,107,106,133,22,48,226,18,88,92,62,60,29,77,231,6,162,106,165,63,230,57,138,116,114,124,180,195,240,210,184,55,22,225,30,135,217,218,19,205,68,111,110,89,217,66,93,9,17,105,219,139,24,101,12,191,211,184,52,198,214,248,142,194,139,163,61,29,253,248,157,53,90,170,217,137,65,55,183,27,6,218,49,67,188,126,204,170,105,57,196,52,235,120,42,113,253,144,210,152,243,46,229,101,122,170,0,223,42,181,158,80,14,29,94,194,178,123,77,223,213,57,220,35,212,112,242,29,66,83,191,86,46,153,136,177,162,4,159,61,45,200,249,214,235,117,27,43,3,214,32,46,196,87,98,113,232,105,17,99,55,188,55,160,209,246,241,155,214,169,211,199,251,250,230,22,254,26,169,104,40,18,183,209,46,183,118,46,103,98,40,91,37,161,225,
13,197,134,195,29,180,206,236,101,251,83,197,212,166,94,48,70,222,162,161,130,161,14,170,201,72,141,251,155,6,14,82,13,51,35,179,155,33,121,34,25,11,112,140,2,45,94,214,99,34,69,166,38,83,29,169,148,149,98,23,53,112,134,109,184,169,181,197,70,98,143,68,219,19,221,148,12,23,168,59,182,172,156,135,49,175,45,241,48,208,127,33,149,119,192,102,209,138,58,7,29,89,44,155,78,157,216,234,152,203,226,245,116,132,195,167,33,239,99,172,3,221,162,8,202,156,73,32,14,82,195,154,61,42,175,215,176,59,171,89,147,109,144,103,22,38,241,245,70,116,231,130,40,97,167,32,194,34,222,248,82,211,156,176,41,186,184,182,174,240,207,173,53,143,5,208,203,228,85,83,255,194,26,35,94,208,227,253,206,134,41,52,94,104,138,100,230,80,170,3,68,122,147,59,48,129,32,10,155,68,124,229,122,189,166,171,133,102,89,166,110,182,7,48,216,245,224,114,253,108,151,170,107,175,158,70,244,244,109,226,12,11,61,248,30,146,138,46,164,35,137,233,21,93,31,10,
149,48,8,69,217,133,198,195,22,134,111,99,167,125,64,196,192,76,183,203,125,135,120,234,170,81,18,215,40,231,252,91,132,86,229,86,155,42,77,22,135,19,226,70,57,187,87,230,144,161,181,185,54,217,50,154,220,163,182,96,24,162,201,34,51,221,112,224,95,141,173,235,44,222,3,1,185,136,84,197,253,8,65,62,189,188,195,197,43,199,154,249,131,93,12,134,111,97,4,223,75,20,24,215,248,46,221,108,110,79,221,16,4,162,46,123,116,112,211,22,59,25,208,155,49,72,148,85,29,66,96,38,14,228,18,78,251,28,241,96,128,133,39,181,174,98,244,38,132,147,62,187,232,153,32,80,9,73,39,149,210,230,15,12,29,157,132,154,199,53,51,94,47,50,60,191,210,174,199,132,187,249,58,211,124,97,68,198,12,207,196,194,246,131,185,169,144,17,171,114,169,50,75,228,9,241,188,129,28,29,162,171,130,20,71,204,140,92,164,239,90,9,241,6,31,93,149,89,206,107,176,180,149,244,73,48,66,22,227,101,164,30,75,228,120,83,21,89,64,34,69,253,1,69,80,136,
119,246,166,71,217,179,249,252,110,129,49,69,199,161,241,216,49,98,139,176,151,165,180,54,49,226,98,173,222,191,143,215,210,7,38,9,187,139,11,137,0,133,97,196,224,219,217,8,138,11,215,39,52,102,18,235,141,91,147,93,163,78,175,168,32,220,235,27,25,11,47,146,103,211,139,196,221,88,156,114,148,217,118,176,138,93,216,9,251,30,151,128,43,120,246,185,206,193,14,61,114,86,34,84,178,105,116,174,19,75,196,27,243,50,74,200,217,39,86,239,8,245,108,131,8,189,228,244,47,118,47,201,10,205,33,204,4,113,27,115,112,76,17,21,218,167,11,22,11,93,199,53,37,26,136,197,173,49,139,205,220,209,89,28,38,118,203,241,186,225,80,99,209,34,79,175,103,21,7,24,223,58,114,156,21,217,192,107,249,76,82,90,100,94,161,134,252,124,235,240,137,169,41,171,106,145,116,247,44,202,118,70,199,242,60,118,2,133,215,37,185,211,40,214,172,167,45,212,19,30,105,150,76,182,9,11,126,172,20,147,201,9,37,225,121,129,198,67,166,163,34,83,206,96,15,209,
137,64,154,162,26,100,171,73,37,233,141,98,82,156,158,104,255,74,251,94,152,210,97,226,250,198,142,88,199,147,110,221,134,68,44,247,216,245,166,29,204,110,125,36,197,118,235,201,251,113,33,223,210,229,79,204,208,241,154,56,194,60,135,74,105,45,105,118,186,19,209,154,152,32,145,185,99,251,243,243,34,101,210,190,158,22,143,162,132,198,225,88,223,8,177,107,129,142,198,143,16,155,179,109,24,84,127,160,69,87,63,137,152,162,143,90,92,45,182,153,149,157,41,89,183,42,98,119,227,57,70,225,192,0,178,211,229,156,168,103,110,112,16,129,200,161,112,136,182,42,155,76,47,6,195,147,45,123,27,73,196,113,71,81,150,116,118,205,113,35,35,51,209,185,163,110,1,50,206,28,115,108,137,232,92,162,163,29,33,20,226,105,209,248,124,88,106,84,97,22,85,74,62,98,112,104,179,217,40,110,62,81,77,135,3,120,141,120,149,137,23,24,243,236,2,118,209,150,167,53,238,45,73,135,2,109,116,150,131,104,66,139,10,71,30,26,198,106,236,226,90,81,128,119,209,77,
97,246,10,94,24,95,71,248,81,51,56,181,178,3,215,143,99,141,6,182,132,12,12,94,143,33,98,153,152,53,90,56,167,107,195,232,27,149,136,68,156,98,37,210,219,236,67,138,89,139,200,36,213,163,141,126,71,38,186,23,108,61,106,214,172,164,44,225,110,157,105,123,222,99,2,118,12,179,139,136,20,45,207,111,168,217,190,84,210,222,208,134,167,55,210,233,6,33,26,215,164,163,48,204,91,41,46,137,13,26,168,120,155,27,115,171,68,6,71,191,10,21,93,29,15,25,186,156,204,122,6,18,203,240,35,86,3,152,70,177,50,215,142,208,235,149,8,63,26,235,52,216,246,54,221,217,152,151,131,156,26,149,251,102,250,231,215,48,100,151,211,232,166,51,108,248,54,189,162,27,41,246,37,124,131,104,147,137,186,135,233,99,251,133,92,145,160,183,171,195,72,200,249,12,97,39,183,77,177,195,105,106,197,98,215,130,113,58,41,57,193,102,78,226,165,253,100,34,141,28,81,117,17,56,150,33,140,129,225,108,143,236,49,209,74,105,152,84,108,89,48,22,164,20,169,203,
100,239,91,160,236,168,148,9,23,33,223,142,194,141,168,124,92,106,36,34,101,13,44,74,91,24,35,120,143,169,43,190,139,199,99,5,177,173,220,50,198,211,179,186,17,38,228,60,44,79,46,221,204,235,238,145,248,16,171,113,9,94,232,219,98,96,234,245,92,150,144,36,164,199,27,58,145,122,37,101,92,199,202,164,152,106,221,210,33,95,220,161,88,154,216,39,70,6,44,199,93,42,37,98,148,133,156,244,19,9,241,16,103,116,76,135,219,64,46,182,246,68,91,103,27,183,231,93,195,198,88,158,223,144,72,217,101,77,137,204,178,197,32,197,81,7,155,123,137,50,206,52,119,75,136,69,77,176,35,98,213,14,129,238,64,136,195,12,90,84,185,21,32,177,199,68,200,12,83,214,165,183,13,207,108,157,184,67,218,238,129,214,153,224,170,195,129,70,69,199,164,107,113,163,123,60,36,152,240,234,168,75,59,113,78,144,201,221,37,118,57,163,110,244,238,34,125,128,155,228,219,246,135,131,195,125,249,176,237,100,223,164,111,234,35,18,16,56,122,128,209,33,246,121,16,132,
248,145,131,185,230,51,245,141,160,247,87,179,179,170,176,90,56,98,193,162,101,168,163,162,201,227,224,176,168,109,29,147,150,65,170,32,151,221,226,71,98,214,161,214,73,210,9,190,91,84,88,26,32,207,115,251,181,104,124,232,104,164,29,53,222,38,83,170,121,139,171,68,154,184,205,142,200,55,145,136,3,59,51,62,191,96,151,216,137,35,216,142,54,241,118,165,203,181,117,32,38,137,244,8,231,156,190,113,76,39,197,48,244,186,35,44,11,191,221,51,45,14,169,131,56,182,25,113,48,156,96,207,35,242,211,227,39,233,236,192,196,8,176,101,155,78,144,209,196,154,119,205,184,177,238,93,183,143,35,122,98,173,61,177,70,221,250,70,113,164,64,239,214,180,25,26,57,199,94,221,1,153,142,72,123,67,71,13,140,222,189,238,173,37,230,26,171,109,48,234,117,15,31,29,247,108,22,154,166,86,218,242,220,148,80,109,116,178,90,44,22,140,143,143,24,193,182,6,73,254,62,86,20,107,109,220,91,35,229,124,116,100,86,24,159,139,23,216,244,245,122,174,233,104,195,172,
199,111,54,244,142,103,39,86,134,235,201,92,242,18,215,16,145,225,93,246,105,171,109,215,182,99,53,160,15,17,61,45,184,190,209,104,4,191,77,69,135,16,86,222,244,30,83,60,68,96,48,20,29,203,146,25,6,21,99,110,243,161,145,234,144,41,200,48,173,176,2,12,60,9,69,60,17,178,244,18,148,42,154,215,82,122,195,200,161,198,253,137,49,171,190,153,200,242,206,42,247,172,242,227,184,151,176,189,29,12,36,134,6,105,205,39,92,134,152,102,111,56,236,69,4,230,244,70,81,27,81,183,215,141,151,165,152,109,147,168,230,1,161,134,169,163,169,93,42,82,219,129,175,177,105,106,58,62,62,45,218,58,214,174,22,152,98,255,62,182,39,29,64,4,176,211,248,9,101,209,132,155,8,140,170,68,250,41,31,114,22,137,36,233,151,216,222,117,100,182,152,161,204,103,210,25,147,38,159,174,175,215,136,139,54,111,140,163,67,140,19,252,20,86,38,127,146,57,222,94,219,104,92,137,1,66,29,203,109,228,169,168,169,97,175,110,112,35,119,146,57,138,47,185,183,49,
24,115,209,205,100,144,211,51,187,60,100,72,74,237,25,59,162,30,247,59,145,66,223,209,70,200,184,204,239,70,7,201,252,12,221,188,163,81,42,123,184,76,228,106,164,83,38,150,165,219,197,72,142,63,227,25,95,154,142,163,5,56,92,58,130,180,76,11,121,178,168,151,125,0,216,49,202,231,140,123,241,38,242,84,179,199,51,88,20,42,148,244,0,97,54,138,11,245,13,80,245,40,140,58,211,173,231,244,134,177,252,117,134,63,201,116,114,177,43,136,160,105,237,120,187,111,115,139,11,228,207,243,205,102,226,22,190,125,153,79,136,99,142,124,173,134,16,149,62,229,94,90,232,239,104,150,198,210,196,232,72,91,162,39,156,116,201,83,1,98,91,151,213,198,153,96,57,7,109,67,199,235,148,25,166,175,223,189,46,246,161,80,248,198,118,42,113,91,37,178,180,143,97,69,166,101,60,155,81,111,10,202,21,93,68,151,159,21,222,206,53,143,232,235,205,62,39,34,161,111,222,52,177,25,184,68,71,80,34,159,198,14,98,169,44,3,213,52,146,158,26,235,83,145,188,129,
126,186,150,188,28,234,105,91,197,24,3,200,128,44,127,148,77,37,241,199,133,172,131,148,141,23,87,246,134,109,166,129,97,67,49,99,26,23,228,179,107,195,49,154,119,188,120,226,45,172,173,196,116,249,172,119,127,24,248,224,132,241,195,13,222,250,78,1,41,21,205,237,143,230,178,251,194,81,175,56,74,64,225,248,72,43,58,164,145,89,232,64,14,199,227,218,99,124,32,118,164,220,178,166,177,196,142,133,202,211,170,228,173,104,103,119,96,131,237,225,206,245,202,188,10,93,90,181,199,238,67,243,196,230,101,236,28,70,25,112,77,144,219,35,171,148,195,110,81,154,50,73,20,52,4,112,203,11,185,22,30,87,16,62,209,208,155,15,73,220,76,120,199,157,58,234,206,182,139,58,154,196,221,131,116,187,1,17,218,4,36,239,203,196,183,179,227,125,227,122,108,172,126,106,93,56,177,110,83,135,36,83,86,195,252,64,252,32,69,150,245,7,178,220,195,128,75,50,237,145,219,6,197,230,134,165,142,25,125,18,101,154,13,157,164,21,219,146,32,202,50,140,69,83,102,183,
54,10,198,105,134,17,73,193,91,144,195,164,54,252,18,153,3,236,31,194,2,134,192,104,11,227,39,69,130,102,237,108,161,5,197,53,78,212,143,209,135,218,86,169,100,142,89,168,232,32,176,3,40,31,149,213,21,70,246,177,211,56,12,39,223,23,214,18,66,155,150,22,228,137,67,172,112,78,143,206,246,182,45,174,106,208,113,170,116,83,55,189,180,177,122,196,111,224,201,132,61,216,241,248,60,25,223,146,62,218,156,198,187,230,115,210,144,131,51,78,18,142,115,194,107,30,90,7,111,163,152,167,210,234,145,12,188,22,203,20,37,167,243,180,4,105,57,150,183,0,226,172,7,34,49,74,179,172,237,108,57,34,165,248,156,93,87,60,194,241,197,229,218,216,174,159,239,200,153,84,162,237,131,230,192,46,199,197,114,5,243,147,19,139,134,96,6,163,108,65,183,145,68,20,58,86,201,55,164,49,249,54,90,139,182,72,66,161,101,19,241,14,158,59,56,214,61,32,57,180,208,16,200,97,43,81,223,229,27,228,197,7,38,103,215,60,161,190,190,217,21,107,47,102,120,109,
142,200,89,212,206,180,170,227,13,254,89,210,36,178,135,58,101,103,102,11,22,51,47,170,220,78,17,45,8,7,230,128,99,239,89,49,97,219,233,108,34,87,177,71,140,52,32,69,51,76,202,254,196,140,149,72,154,58,108,98,226,167,58,132,116,18,138,146,238,75,199,183,169,39,118,227,68,43,131,200,151,181,206,236,216,90,218,242,39,66,89,132,130,32,13,12,113,87,133,254,20,45,172,111,140,96,5,8,99,87,74,65,145,169,241,194,227,65,210,84,76,212,217,128,182,164,173,7,100,189,152,128,205,226,103,123,99,3,43,199,171,125,1,236,74,147,18,143,64,79,170,173,243,190,32,193,162,76,52,246,137,38,19,99,194,68,225,88,130,67,153,253,179,132,35,57,138,25,143,13,211,188,189,81,93,135,103,61,143,196,225,66,100,164,86,154,206,181,172,140,141,245,98,36,249,152,202,100,195,175,40,177,116,143,150,157,104,117,227,200,206,129,0,126,156,217,90,196,98,52,211,134,64,129,54,198,152,238,96,247,245,121,246,250,53,150,129,93,229,16,110,184,119,84,201,49,
77,140,180,164,7,14,155,252,115,83,115,234,226,24,94,132,49,167,24,221,3,59,171,110,19,223,33,109,237,161,83,201,61,248,205,254,222,236,4,237,8,143,92,70,208,130,225,94,231,250,129,72,237,243,181,44,47,107,181,187,158,13,93,34,176,108,15,159,40,8,59,40,12,199,79,33,35,25,88,28,43,62,208,179,227,49,229,253,131,38,1,25,81,156,20,31,210,71,154,147,97,21,125,150,141,214,205,56,117,11,39,141,58,138,250,120,194,180,201,110,95,235,96,17,14,142,194,179,51,201,120,253,142,66,232,235,139,230,172,115,83,203,97,238,33,105,80,38,50,181,14,97,70,3,75,125,107,214,149,125,81,40,20,210,13,203,139,228,224,160,219,213,59,32,52,137,245,206,161,37,255,58,119,58,212,20,70,180,52,247,25,163,83,45,88,108,63,149,44,62,104,13,58,205,13,77,12,217,134,130,206,152,214,108,36,10,139,88,3,9,223,213,19,29,176,114,212,177,246,108,82,128,95,80,38,142,132,253,115,140,97,47,86,113,48,111,103,211,2,214,216,137,55,49,220,74,
28,137,19,20,146,9,50,175,159,213,143,224,118,35,72,113,45,99,189,73,74,74,80,230,165,186,130,99,55,70,87,13,15,216,248,248,226,208,224,108,182,177,233,68,143,192,167,176,62,15,166,171,152,183,52,174,55,238,160,201,92,35,30,133,91,112,43,219,176,180,205,85,227,1,66,122,236,80,250,216,228,221,172,171,5,157,72,34,189,42,154,4,47,54,216,5,40,34,94,102,207,244,165,247,135,187,78,10,71,164,180,114,255,48,93,236,78,174,47,163,91,73,152,52,102,94,196,199,219,90,184,227,91,12,115,116,159,60,51,211,188,96,24,233,12,242,177,194,131,142,86,151,100,140,218,58,162,160,34,2,61,106,241,161,154,52,219,26,26,105,11,233,169,66,21,86,191,165,196,99,247,172,234,60,123,148,210,25,218,110,20,119,217,187,92,155,186,100,86,79,82,239,196,156,161,70,154,86,140,64,57,153,246,14,30,151,106,28,28,75,34,245,12,77,82,19,33,239,46,248,182,142,45,75,106,51,209,78,238,88,75,51,142,205,148,137,65,41,106,85,63,135,24,205,168,178,
235,157,19,203,200,54,66,54,169,193,247,42,220,233,96,31,47,188,56,160,88,240,113,215,118,118,89,220,230,230,254,147,133,236,120,174,71,71,139,231,181,155,66,138,177,89,23,95,104,97,116,108,205,49,234,149,137,182,100,131,148,136,109,64,13,141,41,15,18,25,94,170,183,75,164,48,123,22,103,199,103,27,195,81,146,76,42,85,49,54,76,195,106,117,150,11,16,22,87,210,7,55,204,7,152,250,233,70,237,113,61,162,77,152,227,142,140,103,32,193,171,214,108,248,98,199,96,119,154,160,218,241,198,209,124,77,15,219,32,21,111,198,214,247,8,135,221,1,100,31,114,133,226,84,98,7,166,23,23,67,98,164,85,58,57,154,148,135,15,186,103,89,145,67,53,97,143,174,144,231,27,213,238,102,238,58,222,192,86,205,13,16,37,120,186,69,225,75,16,216,36,20,203,28,167,20,108,49,250,193,161,126,128,35,94,142,35,48,203,26,85,182,183,209,239,176,116,243,149,44,101,99,171,132,192,32,174,145,90,182,252,27,36,137,111,58,101,118,44,153,70,199,183,162,210,220,
46,193,219,98,105,239,153,5,228,79,28,195,120,83,187,42,74,120,192,35,114,55,76,225,240,164,248,4,165,55,120,28,240,141,8,20,57,103,144,21,14,13,246,58,253,233,1,58,138,234,30,160,218,155,2,67,70,145,9,179,36,19,32,151,186,100,24,142,122,122,139,190,206,157,112,251,167,100,46,103,250,36,141,117,108,15,98,250,154,59,29,168,70,12,221,35,156,117,143,144,182,218,69,34,131,201,184,209,188,234,78,72,142,199,154,2,116,213,24,37,68,111,31,71,236,111,204,145,133,19,190,253,45,97,91,209,195,235,110,212,197,82,40,89,38,186,16,144,119,34,38,22,6,236,12,179,217,134,67,175,89,215,60,201,225,73,4,142,49,186,30,152,37,0,70,138,111,65,69,58,163,197,157,6,170,79,172,197,129,77,14,91,118,51,198,36,167,67,171,217,54,143,96,49,209,226,58,66,163,52,28,6,115,108,151,27,176,35,152,232,216,192,102,175,109,143,176,176,163,62,22,226,39,145,72,108,84,161,30,155,141,239,16,220,82,221,68,72,63,99,236,111,18,12,27,235,
245,39,104,148,89,216,49,199,148,45,206,49,55,55,87,131,238,181,206,68,88,41,205,20,124,153,241,166,220,214,129,168,161,89,36,42,240,114,81,247,129,169,193,117,232,95,80,219,199,40,62,139,45,234,104,9,98,7,244,120,87,38,163,103,30,134,59,77,205,71,19,142,104,219,225,242,48,11,57,142,114,233,183,144,125,3,19,227,58,210,248,156,29,213,219,236,78,210,101,172,184,69,41,84,119,75,150,167,88,201,176,19,21,24,136,32,168,100,124,95,95,190,190,81,45,12,203,29,152,142,134,9,210,52,118,150,167,51,36,163,214,16,129,196,244,109,33,145,90,228,81,227,190,90,177,211,136,141,233,123,35,77,141,214,136,190,128,60,14,120,123,218,226,92,62,51,44,92,160,4,37,210,184,171,77,179,151,73,15,100,199,145,245,38,33,70,77,239,54,46,99,49,217,86,244,130,196,136,202,30,69,18,41,5,74,34,44,138,157,59,72,60,105,13,33,177,141,16,143,215,218,183,230,188,179,78,52,165,107,148,222,31,99,59,233,141,190,9,28,85,16,141,111,70,166,214,
177,120,106,171,121,112,66,97,227,91,147,25,13,88,156,164,82,178,134,166,132,163,127,227,0,49,54,40,89,236,107,39,26,131,132,6,106,255,172,178,176,133,179,144,99,19,122,180,14,137,51,80,24,133,129,130,134,64,31,200,246,143,74,229,145,93,155,189,177,105,203,111,80,200,227,35,62,75,189,97,193,45,54,5,221,113,157,98,113,140,135,193,234,49,194,77,97,211,74,132,59,62,137,99,200,76,248,217,67,247,192,84,18,89,207,151,105,116,3,209,121,31,111,215,69,160,111,133,13,233,244,96,63,106,183,11,133,193,251,136,27,108,245,116,167,7,40,17,57,195,190,56,69,173,114,97,53,190,38,230,184,86,131,228,98,133,29,41,226,4,147,36,158,196,115,251,140,123,171,35,118,193,188,139,72,14,35,36,29,64,189,187,31,6,118,187,118,228,46,103,103,34,48,57,129,100,32,55,125,44,25,42,108,216,34,233,27,80,20,43,138,178,187,109,181,49,77,97,190,10,25,244,205,75,92,157,93,10,36,217,135,211,219,52,61,29,162,153,41,131,121,107,88,106,246,177,
143,22,54,151,85,174,70,89,39,53,160,71,69,9,11,153,118,3,59,27,38,204,29,75,102,84,104,105,44,153,103,17,173,237,140,224,230,225,202,162,197,182,201,27,141,180,107,212,68,197,124,47,185,133,192,77,12,138,120,166,205,99,82,135,207,154,110,60,16,25,243,219,83,27,109,156,0,45,212,227,58,177,177,28,234,228,104,219,200,102,188,137,3,22,219,243,5,78,23,144,131,56,148,249,3,14,226,8,195,40,160,44,6,231,188,64,59,162,62,65,219,248,237,233,185,184,90,170,199,175,135,121,118,126,40,61,160,93,157,108,60,154,151,40,250,3,219,136,225,40,109,38,54,33,226,33,156,8,191,79,188,72,154,235,54,187,149,64,193,17,141,239,20,135,125,246,88,99,161,1,225,60,100,212,203,101,104,156,237,104,7,129,154,78,136,70,208,235,147,171,70,109,36,175,93,235,94,30,209,187,54,164,185,6,226,44,222,211,98,35,45,54,6,24,241,78,111,191,3,191,200,207,36,14,211,188,21,78,200,7,208,137,161,30,106,189,202,229,148,154,74,139,225,59,144,50,
235,226,162,30,217,33,212,243,55,251,90,122,141,68,37,23,59,231,222,65,153,68,241,68,179,174,163,61,182,179,164,178,176,230,69,78,34,15,159,150,33,176,235,146,45,179,208,179,180,172,65,226,178,227,171,125,106,129,127,195,190,173,93,74,79,70,6,137,228,153,101,113,91,46,201,35,140,250,78,88,36,73,215,241,174,90,236,48,143,165,119,89,212,156,60,49,29,92,21,53,96,81,187,6,117,204,71,19,225,86,182,151,101,147,201,77,44,65,140,38,33,209,237,96,93,46,228,106,70,241,193,125,164,109,177,32,28,181,102,118,5,64,84,246,146,108,150,129,28,173,185,119,83,176,41,199,232,16,140,245,70,151,211,18,26,55,79,224,227,81,159,50,21,220,144,41,121,196,65,5,194,213,214,215,35,110,103,182,210,245,1,97,66,71,141,22,89,36,34,83,38,52,139,93,152,165,16,10,215,196,156,218,236,227,174,27,85,78,134,106,75,19,23,169,182,3,221,228,133,245,102,75,26,153,13,218,229,251,235,139,210,29,25,186,23,185,49,215,167,99,36,9,66,179,103,109,
175,177,81,107,85,163,154,144,251,187,161,233,134,57,141,109,62,215,208,63,50,71,235,69,208,101,190,177,94,34,243,36,155,152,27,169,87,162,102,48,93,174,133,189,78,247,94,47,194,128,226,71,185,44,215,34,17,117,194,162,163,67,88,51,195,128,33,169,240,88,59,191,59,63,118,210,61,110,197,13,110,98,18,118,6,51,129,60,238,61,116,183,179,22,156,8,249,178,49,165,93,69,214,75,217,164,97,59,150,202,209,70,58,178,189,24,20,59,187,217,72,212,181,250,138,72,122,27,79,177,130,218,196,53,52,48,98,156,104,222,171,238,212,181,15,88,15,34,189,91,142,169,32,90,122,156,206,187,122,86,19,178,97,245,152,113,237,180,143,204,111,218,50,23,27,187,252,67,161,237,38,75,15,75,214,140,57,36,33,41,61,214,195,30,92,112,127,189,47,46,183,170,67,5,75,203,114,219,144,195,226,92,51,80,242,73,229,81,43,218,72,218,31,238,94,31,155,111,26,24,192,246,180,6,140,40,60,75,232,225,186,34,250,104,26,189,88,176,112,145,170,53,134,109,159,129,
26,245,29,228,155,59,25,233,14,225,244,162,194,17,180,204,201,28,116,78,139,118,194,43,107,73,90,195,205,91,187,228,172,49,62,219,34,67,26,186,69,253,139,164,44,203,145,226,123,137,59,245,161,64,142,29,165,59,9,1,252,40,91,210,191,6,196,153,206,209,237,250,112,36,32,33,72,16,156,209,116,70,226,235,155,84,34,104,74,20,198,143,48,55,5,113,132,9,35,166,93,17,109,181,167,36,250,93,234,54,139,176,197,106,240,35,162,65,3,141,186,113,210,141,152,148,70,58,169,216,76,145,88,111,214,52,160,221,169,184,204,199,31,114,46,79,247,143,23,134,102,194,74,137,34,44,172,95,30,217,196,107,55,210,179,75,245,133,109,171,185,191,61,97,59,232,146,245,140,200,122,157,244,201,17,171,92,160,243,161,150,246,215,78,244,1,113,159,163,211,187,162,206,28,236,121,154,14,119,124,54,71,162,107,111,84,59,198,230,164,25,184,85,89,200,104,166,224,211,134,93,43,111,196,169,216,157,101,173,251,54,205,11,157,146,101,48,196,142,166,178,253,64,234,96,96,
45,128,237,94,134,204,238,36,25,51,82,12,38,193,176,215,51,215,24,219,126,52,38,45,210,14,237,21,77,188,65,138,123,123,155,52,231,43,168,154,6,113,250,40,113,157,141,65,5,52,74,99,10,211,60,233,95,244,146,6,19,206,161,214,93,57,119,145,135,87,32,252,136,165,62,76,151,15,59,213,78,180,175,237,181,141,176,22,58,36,7,29,45,218,217,230,97,174,165,37,157,153,237,104,24,161,206,57,230,114,170,232,156,53,127,178,232,22,226,121,227,27,249,145,65,117,126,210,179,33,239,217,137,250,135,16,13,234,81,63,201,72,24,229,247,174,45,76,72,22,130,205,233,62,81,100,118,109,61,66,236,162,206,147,201,131,114,247,202,188,153,202,139,141,24,80,228,236,216,188,133,224,161,13,208,208,7,146,19,99,125,106,67,160,163,120,134,133,189,81,101,33,172,72,123,212,105,235,158,208,60,129,181,117,146,188,59,236,72,150,193,26,61,216,92,212,143,80,164,93,218,100,118,156,218,32,152,69,48,221,115,227,132,29,149,64,46,211,171,187,101,155,17,23,137,161,
247,42,67,142,6,129,117,95,30,223,201,179,248,5,102,76,218,186,20,140,16,231,144,136,60,107,3,69,15,162,187,153,199,13,178,22,66,107,223,44,218,236,83,42,14,157,74,244,186,80,130,141,108,207,186,79,250,54,20,73,40,109,216,104,154,5,108,154,21,65,38,156,120,166,123,62,188,58,229,196,224,59,58,105,174,190,122,197,241,206,28,202,49,188,213,201,242,165,78,182,122,213,230,118,127,82,214,199,215,134,241,142,254,132,127,80,27,87,251,204,250,185,110,190,187,143,199,181,44,31,176,24,50,163,120,27,153,80,114,113,14,252,120,84,105,76,91,108,18,71,75,18,49,89,96,39,69,71,19,147,163,59,225,126,68,84,187,161,181,181,122,101,61,202,161,33,190,120,72,180,104,22,132,59,157,249,21,210,184,168,37,123,98,221,222,221,117,165,233,195,251,104,236,49,26,143,147,161,0,127,109,118,121,21,163,155,75,105,170,97,82,137,90,199,83,57,164,64,34,190,49,203,153,241,101,150,101,163,189,227,70,75,218,98,32,166,98,130,176,127,102,7,221,78,155,150,
250,68,8,89,239,54,113,229,208,28,110,102,16,73,24,244,254,94,103,91,206,167,198,123,6,118,99,140,76,14,197,82,185,229,141,6,93,3,163,197,25,16,180,160,145,153,206,37,143,148,159,94,217,180,11,2,157,227,241,57,187,189,168,8,135,20,2,220,74,127,204,177,179,161,206,218,219,10,91,9,235,124,223,156,144,153,195,161,185,73,167,190,103,239,176,225,112,104,139,24,57,182,236,23,99,51,51,219,230,227,181,113,114,177,126,44,104,194,165,89,116,71,159,104,100,101,157,134,64,172,161,185,224,25,154,140,220,202,111,109,234,139,77,169,213,253,115,104,43,57,60,57,64,217,239,13,236,158,172,205,77,11,79,34,114,114,125,220,142,202,209,48,13,170,133,67,249,208,40,135,239,166,4,166,163,62,122,159,72,197,22,109,83,147,3,67,123,44,21,14,129,224,224,19,39,68,113,46,72,17,36,9,211,129,241,53,82,195,232,97,119,164,89,122,204,175,63,209,139,78,68,81,139,149,179,53,191,205,159,55,180,116,250,164,3,218,97,60,161,67,203,196,114,17,64,221,
225,244,37,16,204,214,244,140,116,148,40,65,140,16,124,28,171,168,177,201,216,139,141,38,208,137,245,217,228,73,151,136,189,191,38,111,74,240,23,18,210,94,79,98,106,88,222,36,61,17,50,157,198,109,67,67,113,137,29,51,108,237,39,59,247,57,94,179,121,117,222,140,143,119,217,247,184,14,70,239,254,152,183,40,99,196,83,217,67,12,105,91,42,21,52,250,120,156,189,142,94,125,155,2,225,227,239,246,19,150,130,184,40,215,61,78,77,58,60,110,169,137,187,155,96,35,6,205,26,51,109,23,187,221,62,126,208,226,77,70,204,35,86,9,214,58,192,64,164,61,88,3,202,222,231,55,18,61,59,212,225,40,5,233,233,17,28,241,12,94,78,68,23,139,237,247,91,139,219,77,9,158,32,214,198,208,142,45,243,59,79,104,219,139,139,82,252,168,225,132,178,22,159,237,235,146,199,253,36,199,40,79,185,46,246,155,22,236,129,221,205,72,235,112,158,59,217,218,141,73,122,210,19,248,101,71,122,111,218,111,141,107,177,122,106,220,40,139,143,26,173,9,44,143,70,76,
12,27,197,179,198,164,157,221,42,139,19,125,187,179,109,185,17,129,19,105,89,181,166,147,40,92,0,191,60,66,113,29,245,70,119,151,178,46,140,136,31,101,80,143,91,189,125,39,205,243,216,217,153,195,20,98,178,237,56,105,210,139,48,206,122,125,112,123,65,226,119,8,227,134,208,62,107,68,60,78,237,14,4,140,114,165,63,25,116,172,236,187,165,163,10,241,64,151,105,96,154,222,157,115,187,68,116,164,184,161,65,206,235,156,179,8,80,248,182,46,44,169,165,203,149,11,183,48,182,124,121,79,146,47,219,107,197,236,171,162,244,164,245,120,131,193,15,17,195,107,140,117,45,117,175,165,21,55,204,103,240,87,214,166,235,71,199,227,166,85,209,146,17,233,157,159,207,216,27,134,213,109,236,208,116,107,166,65,169,105,216,233,217,158,236,106,208,33,240,24,37,2,211,223,54,75,118,165,52,196,16,109,151,97,110,158,211,138,23,59,216,244,126,251,18,98,42,132,153,160,83,139,173,145,36,161,51,51,188,228,67,170,186,219,58,145,97,95,50,180,213,35,144,121,7,198,
6,5,19,83,89,206,150,121,183,128,223,218,216,69,26,177,130,142,245,44,127,73,140,151,247,18,41,92,147,182,239,40,218,79,115,44,155,124,250,198,244,244,104,183,242,56,226,50,185,145,186,100,139,185,151,19,37,240,113,13,59,108,51,158,179,67,95,80,155,148,35,29,148,77,115,159,172,191,94,47,82,168,27,233,13,199,77,206,33,117,0,217,134,10,163,105,88,63,90,175,197,99,72,1,201,170,29,75,17,109,250,12,252,131,5,166,96,58,174,31,115,108,170,147,14,147,127,106,219,153,229,13,34,116,99,36,167,153,209,18,13,232,197,106,60,149,101,118,82,237,45,88,106,27,106,13,63,82,47,63,156,12,38,12,139,61,249,208,34,65,86,160,39,246,117,70,244,10,69,219,20,111,238,153,97,98,156,152,189,17,99,179,117,220,59,131,94,152,201,51,147,197,104,34,147,242,239,200,114,249,163,93,189,54,228,30,215,28,196,248,150,148,118,142,48,230,216,161,81,201,241,56,182,201,215,183,77,140,174,82,77,50,180,215,50,59,231,220,33,163,122,135,48,99,29,114,
214,188,211,237,183,153,221,58,131,64,151,8,178,38,182,186,151,27,209,188,126,247,42,187,17,51,193,16,219,71,139,7,233,13,108,81,24,138,237,90,143,59,69,104,140,57,230,25,246,184,105,196,236,202,230,9,40,76,64,150,46,35,118,233,136,235,18,153,61,219,158,62,90,32,168,19,177,209,246,22,123,83,119,135,89,159,97,135,227,237,147,11,10,218,164,85,130,30,236,164,29,239,33,44,122,231,40,95,3,84,166,58,158,63,229,139,118,105,245,104,106,200,38,86,176,145,141,212,134,105,28,137,163,23,162,86,57,40,20,147,55,181,67,80,119,113,93,196,20,205,100,87,205,52,171,184,148,197,254,30,4,149,234,213,109,103,103,7,100,195,190,97,87,255,97,138,180,168,101,97,68,115,93,141,254,110,38,138,78,149,54,246,49,219,109,206,145,148,130,202,107,21,163,17,24,28,139,177,99,177,217,236,138,45,205,210,194,130,238,128,157,107,11,73,133,200,48,130,216,27,65,200,125,91,169,141,13,61,78,184,90,208,228,252,163,30,215,80,115,151,122,180,83,54,101,36,
70,244,193,196,81,48,146,159,24,10,12,236,141,30,111,248,35,163,242,224,177,108,127,92,174,210,196,240,190,190,35,124,67,159,32,179,146,114,116,77,167,122,151,24,158,17,252,204,193,24,111,33,180,238,206,212,15,106,27,39,26,123,240,164,230,29,20,175,67,60,48,52,13,84,248,2,203,18,1,213,63,78,101,31,144,135,4,219,195,174,80,200,52,186,37,30,59,246,8,58,116,131,138,131,41,189,55,231,217,239,206,135,61,123,173,125,1,26,149,180,162,200,209,179,131,3,209,213,158,230,246,113,138,83,208,212,102,112,198,168,52,58,81,102,225,38,204,83,188,109,34,1,8,159,212,169,153,254,209,163,147,36,6,112,174,158,245,197,208,146,56,133,207,45,32,68,68,37,114,110,15,65,35,183,218,247,209,35,246,108,58,62,146,217,36,19,118,59,247,89,27,232,99,191,31,151,86,165,143,232,147,65,13,99,212,239,147,52,232,13,3,141,136,57,249,18,81,177,97,70,162,168,222,70,77,46,164,217,202,45,200,27,114,217,89,241,17,126,202,174,146,246,172,79,244,25,
57,122,78,80,74,52,166,227,41,9,54,134,177,160,247,89,203,88,222,177,0,200,92,26,101,91,169,214,5,63,169,211,67,234,50,166,69,8,74,26,57,197,143,137,120,234,212,170,94,217,61,22,155,217,143,105,218,154,113,227,204,153,193,145,189,161,238,238,38,206,8,103,133,29,12,201,100,8,185,197,106,173,175,175,167,214,227,234,229,33,206,114,102,134,189,145,77,180,154,132,155,199,88,218,88,159,184,167,120,224,20,104,14,67,205,169,49,219,174,40,118,36,202,134,83,251,73,219,14,201,235,210,109,164,38,38,120,113,67,81,204,233,232,162,182,78,231,208,67,99,68,124,23,70,193,202,16,55,182,151,245,18,58,51,46,22,214,211,79,44,105,1,6,131,213,45,182,34,53,189,211,39,206,232,241,126,108,127,207,74,218,43,106,251,134,37,133,137,98,62,59,67,19,245,121,157,194,222,150,99,73,204,143,197,217,16,232,140,12,197,181,107,9,1,13,210,10,164,103,171,99,9,188,144,78,247,245,83,253,237,27,173,76,228,112,235,102,112,68,223,173,95,104,59,32,139,
136,8,63,97,115,136,208,37,246,45,207,14,212,155,54,34,51,115,162,9,130,67,28,92,77,139,114,40,245,102,43,47,206,1,34,152,149,190,218,217,234,137,39,139,137,169,77,242,224,161,120,47,42,80,249,77,43,99,70,124,175,25,47,19,162,105,50,58,195,204,95,159,160,171,18,141,72,191,67,52,214,235,34,47,43,226,11,3,226,61,44,194,37,17,225,102,3,211,91,132,88,96,166,253,200,203,80,185,230,134,13,35,11,236,237,70,212,242,73,192,188,160,247,183,55,226,188,60,213,238,48,53,214,98,30,162,162,143,131,99,204,165,93,79,192,192,59,9,70,11,68,189,83,57,164,29,90,28,117,102,54,195,67,170,93,55,111,240,104,191,27,61,182,177,48,186,41,222,157,34,53,47,143,238,246,236,23,125,174,35,219,22,181,165,213,66,213,118,184,148,46,239,8,111,99,196,195,229,53,113,91,188,67,171,253,123,171,212,220,104,178,117,139,186,157,29,54,207,88,186,15,247,219,226,66,190,203,111,106,116,12,38,246,53,54,73,227,44,102,121,169,197,216,57,219,181,
222,149,56,216,111,55,13,138,40,211,10,245,166,89,90,79,115,182,247,177,130,76,98,27,161,222,26,214,155,82,134,196,226,110,193,43,201,107,197,64,112,206,239,21,251,165,228,244,12,45,225,228,225,11,29,18,163,108,199,133,103,152,252,44,76,88,159,211,236,109,142,139,21,27,217,201,220,248,80,12,221,168,40,182,34,141,141,54,133,117,85,50,69,79,136,26,212,12,138,78,188,216,211,212,184,222,107,102,172,143,243,150,163,193,137,189,226,200,58,115,151,171,57,88,83,174,116,56,66,138,176,55,74,154,76,208,233,72,130,122,255,80,79,116,168,205,14,179,158,139,226,197,83,199,61,135,42,236,82,32,176,51,39,216,226,245,158,36,84,29,24,190,57,173,79,226,132,46,137,205,71,140,104,36,161,69,197,134,157,130,58,222,234,231,59,91,55,226,243,228,14,225,65,83,91,172,117,157,57,122,130,29,62,112,7,86,246,88,19,237,220,19,10,16,3,211,118,210,2,202,212,189,186,139,240,51,149,17,105,143,77,158,210,42,108,251,33,215,129,111,112,123,95,195,30,78,
5,217,209,101,185,76,110,197,101,112,184,12,25,189,193,207,35,51,65,211,212,204,238,134,126,34,63,145,48,109,19,154,69,35,41,229,192,81,10,169,206,230,11,7,187,155,35,219,190,216,177,203,175,117,107,19,173,106,211,232,172,201,217,31,201,230,2,110,113,251,46,183,133,199,95,45,244,119,199,70,134,214,19,135,221,199,40,82,216,30,77,47,35,177,65,35,143,73,36,45,47,118,23,102,167,98,93,226,116,96,142,140,61,108,220,207,53,122,24,72,76,91,199,74,111,204,223,205,104,183,238,34,13,135,194,140,202,101,106,95,201,141,27,39,179,39,217,93,93,102,215,213,138,10,208,236,248,209,149,28,29,55,108,116,19,40,97,85,71,120,111,202,134,69,237,160,48,97,174,97,104,66,148,115,105,241,134,110,190,88,184,231,233,66,45,160,23,40,178,94,241,86,4,137,53,207,78,179,214,109,94,143,113,187,125,16,177,72,137,103,135,163,116,188,61,212,132,80,196,173,110,220,224,81,219,22,129,179,52,114,162,106,183,80,163,212,118,65,131,37,25,207,209,241,61,39,
133,230,122,11,123,125,163,117,195,139,18,79,30,216,253,188,62,3,162,39,173,30,47,30,136,49,78,134,22,179,192,223,182,216,15,245,9,118,78,22,96,4,199,143,78,178,97,49,159,57,90,63,55,67,224,155,219,146,120,130,57,20,16,147,17,43,38,28,150,65,239,58,42,142,103,79,58,153,182,61,11,157,59,59,127,188,59,187,232,22,249,120,189,71,76,22,193,38,178,52,176,81,12,50,190,11,133,50,238,173,206,160,249,123,51,242,196,174,232,120,63,139,8,39,242,217,157,84,34,189,119,136,113,58,197,157,246,225,161,197,72,179,125,205,181,59,62,200,42,204,31,113,18,14,32,80,12,59,15,242,115,222,195,198,24,238,136,55,21,194,185,103,6,180,166,212,84,131,105,60,219,112,184,165,86,39,246,249,241,12,24,196,52,163,203,205,83,68,242,254,190,184,135,185,48,213,156,34,13,176,2,35,132,213,248,34,239,72,23,68,24,27,76,200,189,70,43,42,175,75,231,28,88,177,43,231,223,43,224,133,67,43,237,171,19,3,242,84,123,199,106,67,46,53,224,167,
159,48,208,86,100,167,185,75,19,216,197,134,144,210,145,78,105,27,201,193,182,79,225,67,17,33,178,152,24,29,28,78,137,105,93,51,168,128,206,191,57,58,192,224,168,144,110,202,180,188,205,236,66,245,249,26,80,184,22,127,48,18,213,205,104,124,180,238,22,63,174,176,180,19,179,35,38,253,125,218,44,202,156,219,211,136,155,70,231,134,121,200,169,53,92,163,78,125,156,235,17,218,8,82,125,186,101,132,120,16,197,183,242,177,147,97,67,223,28,107,141,172,193,76,52,83,166,90,227,178,28,213,110,66,11,188,190,35,180,119,131,77,214,73,176,204,196,137,208,56,134,108,51,28,225,131,24,76,99,207,176,202,122,180,222,180,42,103,235,145,219,195,235,141,157,45,110,251,166,144,176,176,235,137,241,70,213,132,86,141,0,215,135,119,201,241,52,148,9,151,147,45,57,130,133,225,142,165,73,219,60,193,68,92,151,162,51,110,195,98,71,100,134,129,66,205,155,201,147,171,172,195,5,252,178,159,98,172,167,50,117,236,227,89,229,209,36,77,127,232,82,238,59,186,187,146,
84,242,12,249,240,56,101,79,13,29,15,45,30,45,110,114,134,150,57,131,141,186,193,78,69,102,106,98,84,23,70,242,237,133,122,4,32,216,141,237,81,67,176,33,214,212,106,89,234,219,92,22,4,194,169,76,203,201,190,234,100,127,70,53,170,212,200,93,222,222,88,180,189,155,146,153,240,186,85,253,227,226,65,213,137,111,132,224,38,206,6,130,235,121,137,167,126,160,21,77,159,51,25,85,20,58,151,225,139,55,69,153,93,114,174,47,209,56,152,156,196,169,197,254,8,189,197,159,146,42,211,115,90,186,85,50,36,216,91,31,104,115,171,20,92,134,226,52,223,204,103,246,28,128,31,77,226,59,1,63,146,239,205,9,198,39,167,71,215,73,29,27,115,145,96,2,221,161,55,105,219,248,100,84,220,48,109,181,6,82,185,38,215,126,11,90,152,179,145,180,194,97,86,28,57,170,64,77,173,133,34,228,185,233,35,12,201,60,72,160,11,134,169,43,124,1,38,185,46,90,238,106,154,215,144,119,70,235,5,19,35,142,6,59,158,177,41,146,52,214,111,247,70,147,75,155,
52,237,108,23,66,203,8,168,182,143,71,99,51,222,88,251,97,188,32,231,56,145,56,170,111,145,119,178,215,59,147,237,234,201,241,21,157,70,179,84,158,16,71,168,94,117,216,67,23,164,2,62,244,82,107,119,148,58,207,94,80,109,227,185,172,246,118,130,152,178,66,71,242,151,73,82,101,91,243,96,15,202,40,69,161,162,164,213,53,158,219,66,101,143,246,69,240,205,52,32,219,204,246,96,147,209,195,226,124,38,188,181,167,215,231,124,14,142,193,53,39,81,239,118,197,186,79,214,23,105,5,81,79,58,182,36,216,46,172,23,58,81,109,123,94,78,113,45,126,210,155,49,117,28,155,186,165,11,150,21,205,132,97,104,97,107,37,239,62,44,230,210,122,115,126,82,136,152,112,186,23,211,243,27,238,188,223,161,161,177,235,253,125,54,148,153,54,77,70,232,91,133,50,170,1,183,213,81,79,119,183,89,132,84,6,179,235,4,49,145,236,162,240,216,84,249,38,9,151,246,206,246,247,71,118,24,235,100,33,107,99,65,177,210,223,199,155,117,109,39,16,230,33,247,148,63,
88,200,23,88,76,227,58,91,63,22,60,158,112,175,57,214,214,178,115,161,61,183,23,205,232,61,17,161,20,166,21,169,37,218,16,92,98,237,198,23,81,99,236,198,216,2,133,223,129,229,137,217,180,184,5,141,161,97,216,43,13,180,25,193,166,127,120,63,177,136,108,86,136,59,8,194,142,118,121,47,6,43,6,42,246,46,146,72,35,243,248,218,253,232,6,139,211,28,25,14,166,73,237,238,25,30,210,192,239,31,58,72,152,89,2,233,154,149,50,120,64,118,238,166,25,142,38,36,55,157,106,206,239,32,195,113,105,182,33,217,203,183,153,76,64,54,213,98,104,71,115,122,208,232,166,93,158,37,142,221,37,35,132,129,118,150,9,97,51,121,24,227,46,44,138,53,31,92,244,39,12,74,2,17,79,113,44,24,34,38,188,116,78,130,194,251,80,250,189,228,132,137,191,189,174,37,236,183,100,86,10,123,61,19,51,232,200,118,145,50,23,57,65,250,231,86,123,122,54,229,61,75,43,243,243,43,203,107,243,174,68,177,111,104,107,197,78,43,170,9,135,237,249,109,239,84,
182,144,42,78,121,243,10,65,223,86,111,253,14,205,116,210,45,101,214,119,52,69,139,154,9,100,176,201,19,68,248,77,166,149,169,253,169,244,204,132,105,85,238,110,163,232,150,11,153,24,127,102,235,200,36,102,78,53,227,204,108,14,150,230,74,32,236,43,82,132,113,14,129,199,162,14,208,243,97,87,174,151,76,80,119,96,187,172,46,223,82,160,113,214,174,87,160,215,204,88,77,247,86,247,214,188,131,136,20,17,51,54,127,182,171,108,191,25,110,203,207,129,117,240,97,219,176,208,51,135,239,29,95,181,15,203,131,203,196,86,2,37,206,107,220,212,132,187,179,45,222,120,32,161,92,67,96,56,138,132,107,175,37,101,154,148,163,2,66,123,19,42,151,70,81,235,199,173,179,172,8,130,17,182,251,109,168,157,101,188,132,112,124,200,16,42,113,219,131,26,163,37,178,106,167,57,140,115,118,202,4,115,170,205,84,111,101,168,230,216,243,38,124,175,119,17,217,194,239,95,57,70,212,183,4,108,204,109,226,58,42,199,50,170,37,245,91,14,111,244,132,201,145,235,113,46,
194,196,156,122,88,160,70,235,53,237,225,244,250,174,103,212,105,38,209,204,228,244,64,91,142,50,196,138,27,68,44,209,236,192,142,34,35,38,57,125,71,230,105,92,115,97,105,35,212,182,93,4,44,73,51,52,160,84,247,107,60,104,17,162,135,210,207,46,238,83,26,103,150,166,4,187,118,239,74,33,19,221,141,244,22,231,14,166,116,58,78,225,64,62,239,157,41,46,30,37,116,107,246,158,226,126,87,94,189,190,60,171,233,233,229,14,45,59,152,71,203,179,188,78,156,155,48,69,57,154,152,217,22,164,121,246,66,119,49,183,50,231,118,20,135,84,131,52,225,244,116,239,190,160,121,195,77,232,115,216,20,50,179,63,76,30,68,27,151,146,29,75,145,144,234,176,197,37,50,182,242,211,199,84,126,90,181,84,63,211,234,145,251,186,210,70,204,32,202,185,180,51,168,235,157,47,120,138,64,29,87,152,44,56,143,160,188,107,117,136,28,217,201,14,30,201,135,61,12,169,184,159,103,89,24,67,81,169,105,141,24,17,164,187,56,189,57,203,154,136,146,179,181,164,122,135,
218,236,129,141,105,109,102,193,212,216,16,54,202,5,109,190,153,153,113,158,197,39,11,171,219,116,19,50,89,211,116,128,233,32,77,53,172,59,56,132,86,148,223,44,242,97,40,132,192,116,123,104,80,17,27,247,201,199,59,235,181,71,241,193,169,67,60,67,176,209,137,87,211,197,172,189,56,81,202,110,13,139,231,41,122,180,140,99,20,141,140,21,217,236,164,139,151,152,13,81,48,211,61,114,17,135,62,39,236,176,19,232,102,68,155,221,230,114,109,99,132,241,245,196,124,243,14,217,77,69,55,227,154,61,71,27,161,134,237,24,47,58,163,25,84,106,251,227,227,35,74,181,107,99,73,164,136,197,162,177,158,253,166,238,206,88,87,110,113,97,35,183,123,130,211,229,10,217,53,129,94,170,43,140,236,230,242,197,229,66,65,42,238,62,200,175,228,231,226,209,108,4,35,58,208,116,14,101,198,123,163,178,206,160,64,34,238,31,86,44,174,100,54,22,61,71,138,238,131,245,133,169,9,107,235,108,222,155,158,14,204,83,153,145,132,207,190,99,108,53,19,9,73,2,191,149,
34,37,174,53,22,187,55,56,195,163,172,131,160,205,184,42,177,7,164,10,134,217,64,86,118,118,218,123,119,168,45,206,85,119,118,182,247,36,207,136,165,146,169,229,194,97,108,208,37,224,128,1,104,155,56,193,11,138,228,67,5,116,127,199,70,118,73,102,222,15,168,86,13,199,216,46,202,142,111,224,136,136,206,6,247,14,27,220,54,170,106,99,128,47,18,78,247,246,45,119,172,183,123,142,136,145,225,144,222,153,230,13,120,152,219,162,117,154,165,25,55,97,222,204,50,121,13,41,69,62,211,192,51,90,55,155,100,171,130,101,105,164,48,189,126,178,207,89,220,182,108,108,237,213,183,97,245,221,6,219,222,58,195,198,47,98,29,212,240,34,26,221,183,230,77,138,101,225,17,245,122,132,214,186,159,233,223,109,110,37,167,227,62,84,104,200,73,30,105,139,75,131,242,19,254,100,32,212,193,50,34,73,203,242,118,243,9,66,78,161,13,217,172,51,219,42,247,34,49,26,57,49,90,108,193,77,103,125,223,6,250,208,213,23,237,246,119,173,6,217,203,22,185,87,134,171,
199,101,50,163,249,81,242,190,102,57,51,84,180,116,4,221,243,153,131,12,173,113,66,199,26,47,234,166,172,186,156,34,28,163,20,231,50,81,93,167,206,145,239,22,237,229,173,51,69,121,212,18,96,80,251,139,182,89,123,83,148,135,21,20,50,35,173,110,130,9,185,228,92,59,113,108,218,114,43,166,166,62,209,186,115,207,57,226,92,25,30,81,54,13,237,37,77,36,239,113,183,95,32,157,247,175,174,206,224,235,69,233,41,247,28,62,220,40,153,53,56,109,120,247,24,142,209,59,204,234,64,25,229,153,174,213,116,178,7,99,68,238,207,74,55,208,70,104,63,200,66,251,129,160,159,174,107,19,123,146,38,109,156,188,61,103,0,156,135,228,80,39,235,113,233,57,178,124,126,142,224,102,6,214,124,81,179,30,215,56,106,77,206,53,97,117,227,40,46,119,171,201,198,55,39,11,218,134,6,234,44,191,243,255,101,234,172,154,156,229,186,110,253,215,137,187,187,187,187,187,107,199,221,61,221,113,119,207,190,159,247,59,217,85,64,165,40,78,200,154,140,49,174,9,11,104,
144,121,69,21,63,213,200,225,32,88,140,28,148,4,92,172,176,55,240,18,239,199,12,143,154,145,10,233,44,234,212,27,0,248,231,126,140,162,31,146,222,51,43,42,140,171,141,166,15,199,15,166,51,136,34,98,115,61,149,151,101,140,34,201,200,219,122,133,152,36,16,12,57,129,16,89,184,207,2,215,23,14,8,224,8,193,16,106,245,10,184,12,247,56,8,162,164,36,70,125,111,47,103,240,194,119,157,19,42,55,82,227,5,8,50,236,86,226,194,242,153,212,236,140,156,84,208,202,251,95,45,200,70,201,157,164,230,240,50,35,196,190,23,102,13,14,220,196,150,243,100,104,231,102,53,7,129,110,183,79,13,140,186,98,74,143,43,110,138,68,28,254,120,186,71,15,44,47,222,165,232,191,46,185,205,239,85,185,21,78,253,234,29,43,26,14,178,45,146,24,120,185,28,171,72,127,129,238,59,26,117,26,107,129,121,114,102,233,196,249,175,28,87,19,155,64,180,223,125,25,94,112,18,229,161,46,226,93,41,82,183,75,20,205,33,70,203,251,53,58,108,146,235,227,185,191,
60,140,233,2,243,36,165,7,75,136,57,229,171,240,167,164,234,5,176,242,66,106,138,135,70,148,163,28,4,27,177,193,235,130,153,171,158,225,118,202,45,252,22,41,0,68,243,14,130,251,5,129,80,164,29,211,15,225,157,98,133,68,254,196,238,11,255,175,141,154,8,127,107,82,225,103,160,135,43,241,115,239,80,197,161,125,108,217,180,101,241,157,161,54,63,41,75,157,90,218,84,149,154,115,47,2,57,230,252,48,98,136,139,22,104,115,214,202,219,83,72,183,55,244,172,67,25,111,129,178,14,36,101,132,204,68,153,137,242,104,250,82,28,42,78,163,226,131,105,223,233,29,209,131,206,139,23,94,157,72,21,197,195,74,140,52,1,157,56,88,36,240,196,186,108,220,159,58,64,167,234,124,36,27,57,195,39,167,5,35,35,156,226,167,130,77,224,1,26,34,79,12,24,208,242,247,67,88,199,18,175,48,163,168,219,222,149,202,200,225,40,94,133,230,21,131,178,73,176,237,15,77,144,182,0,241,150,92,35,202,55,186,102,116,134,250,237,43,253,153,23,161,17,150,155,17,
251,190,153,3,231,199,230,51,26,29,128,211,233,247,118,27,236,174,66,133,163,221,239,54,91,147,213,172,98,171,56,208,54,170,163,78,141,64,189,197,238,75,63,42,27,236,178,237,183,117,217,111,249,85,65,191,74,123,207,138,58,189,217,78,199,90,67,180,236,169,150,227,104,252,19,183,122,226,214,132,206,150,110,213,18,95,204,3,122,247,220,111,103,133,190,227,76,99,16,46,165,8,169,137,127,174,28,248,79,217,109,65,128,65,201,207,211,223,210,44,194,99,224,88,103,245,125,76,35,250,7,177,38,167,117,81,139,99,211,87,51,36,146,102,97,216,39,8,27,1,161,196,174,221,199,133,192,253,73,227,177,3,113,198,59,70,243,221,255,127,124,100,95,211,19,98,26,217,118,129,104,227,169,9,107,195,30,193,82,191,58,226,200,10,36,38,73,18,8,212,112,205,104,97,78,37,64,252,57,95,9,9,227,180,226,153,17,28,119,81,156,107,112,106,158,139,210,216,232,56,52,187,113,33,250,211,188,101,190,182,122,126,16,73,209,224,156,68,192,216,67,27,1,234,18,43,
51,70,201,32,31,236,204,40,48,18,1,8,37,44,179,155,181,179,122,201,25,84,23,60,80,99,249,144,8,183,114,89,21,135,147,73,228,167,163,112,55,144,202,23,192,216,208,253,103,10,17,208,10,51,100,221,68,11,113,198,73,236,81,129,89,201,32,243,44,99,141,37,2,134,249,105,167,178,242,255,226,53,94,205,223,174,185,82,44,219,48,59,141,114,31,206,231,192,100,178,24,189,78,167,213,109,160,12,60,133,134,175,38,224,176,24,18,5,232,120,181,53,91,175,23,161,213,40,108,45,48,28,173,218,95,163,191,149,250,219,189,223,60,233,213,55,190,175,32,50,141,202,207,239,122,186,153,148,68,120,5,122,174,95,0,81,171,125,32,182,140,228,22,242,9,48,245,187,158,70,159,100,181,46,58,44,126,207,220,102,91,154,142,204,83,140,199,88,176,134,127,44,241,221,206,213,134,225,157,91,164,235,190,87,228,218,248,40,18,145,70,43,178,82,72,253,192,100,80,221,42,10,71,69,103,128,240,0,32,119,228,52,138,220,43,140,70,212,223,31,241,219,171,194,145,255,
1,62,204,255,127,129,171,250,32,180,5,48,146,1,119,23,161,89,30,86,81,201,64,210,249,164,241,139,142,247,252,141,55,9,41,216,24,226,57,73,184,148,81,224,50,233,30,192,227,199,77,150,56,127,96,29,57,207,251,118,5,194,69,3,146,16,64,185,97,136,87,215,141,7,97,48,93,116,150,201,3,51,128,205,12,196,133,217,115,177,205,88,213,236,186,19,88,166,36,24,20,33,24,151,89,204,160,210,185,72,148,12,25,185,98,165,203,98,97,4,89,0,139,159,58,234,215,239,198,253,233,33,44,182,102,103,25,128,1,40,202,30,188,48,14,236,139,46,165,82,129,5,87,33,242,66,60,37,27,180,224,91,57,202,231,57,36,230,5,73,37,254,232,137,55,151,153,93,30,224,254,233,48,123,30,133,154,193,96,39,146,70,84,83,78,178,232,37,255,106,35,114,71,16,126,253,183,62,15,63,214,197,195,251,213,246,141,211,74,183,55,157,109,54,147,217,172,102,59,47,57,46,143,167,237,57,101,227,187,238,120,250,228,249,101,101,181,143,4,42,54,238,83,147,104,84,
126,199,20,95,247,65,252,64,139,229,132,148,152,190,16,119,223,206,125,127,217,84,250,15,109,191,227,98,215,44,82,210,130,191,88,116,203,52,14,206,82,221,90,104,218,25,193,218,145,193,109,116,227,124,243,98,95,35,18,74,79,78,16,55,236,20,91,73,41,124,215,180,14,121,115,225,62,141,0,213,196,119,234,123,95,12,76,222,59,244,19,252,68,197,107,2,53,165,158,1,95,33,16,132,110,75,205,122,154,238,199,2,230,250,174,223,132,153,209,209,205,175,225,31,56,254,55,100,204,255,66,114,223,132,10,33,19,116,169,18,41,203,18,241,70,0,17,4,138,203,75,89,41,226,49,100,145,61,148,25,49,168,128,53,69,14,85,173,208,61,195,229,149,122,217,138,57,25,135,38,42,197,224,64,154,22,20,8,73,94,152,205,253,64,64,251,247,193,237,146,144,34,114,125,92,156,34,38,193,154,141,97,126,60,23,42,195,136,168,143,207,248,113,41,227,205,172,106,107,200,14,208,68,213,126,15,9,129,29,182,211,120,248,227,75,183,89,183,170,16,7,155,39,146,214,43,
19,110,20,105,158,165,33,115,89,97,186,164,224,221,74,34,4,120,157,230,110,208,166,226,91,46,233,95,160,134,247,117,118,209,184,194,144,75,240,84,225,7,199,182,103,135,17,174,42,81,180,174,109,220,131,51,146,180,141,33,152,80,247,234,105,246,124,30,47,122,119,103,229,255,254,228,230,175,50,201,216,12,224,233,89,142,5,131,25,82,202,227,177,228,29,249,188,31,32,125,205,159,187,211,123,0,84,175,74,8,10,165,114,179,53,94,113,150,155,213,188,228,184,212,46,149,121,91,227,97,199,255,141,70,186,189,64,15,126,100,58,219,206,37,237,219,228,78,157,188,209,151,23,74,253,154,191,216,164,248,42,253,64,191,236,243,143,181,204,18,45,199,4,212,244,231,162,134,224,188,179,20,119,246,30,226,245,109,115,159,238,252,246,108,222,253,185,233,57,126,90,169,190,53,204,101,136,177,66,31,209,154,45,216,230,133,128,144,8,155,138,145,191,196,143,252,119,87,33,43,189,230,71,252,46,165,218,126,119,210,156,72,15,29,88,119,147,113,60,162,5,241,204,204,244,239,
241,162,249,47,237,93,142,180,154,123,10,179,25,110,25,92,218,191,169,126,3,208,255,102,93,114,205,136,18,227,50,182,120,138,221,182,87,177,63,72,63,29,106,49,48,92,113,15,182,112,214,211,158,228,219,211,77,210,162,220,208,250,76,163,13,234,232,153,19,140,254,176,255,110,160,125,254,213,133,41,112,196,18,218,80,168,152,222,29,52,86,226,137,216,246,161,13,130,109,84,97,143,188,151,31,213,5,150,111,123,213,227,103,79,210,62,45,24,94,22,252,111,59,69,19,126,221,157,253,89,119,243,212,36,239,238,18,84,200,183,104,194,43,143,182,106,19,242,23,14,24,50,41,32,139,158,42,65,227,251,25,82,14,66,151,215,72,250,237,159,89,59,252,66,162,212,141,150,131,144,135,241,182,193,255,4,159,31,69,255,121,154,83,67,130,190,141,50,90,182,9,59,128,103,97,75,185,109,235,152,217,228,101,235,169,201,143,198,133,98,200,174,224,116,151,233,214,238,66,77,90,131,83,19,71,60,238,108,71,210,139,27,54,253,99,132,115,210,120,190,148,176,159,152,115,236,
21,226,217,39,213,193,251,136,130,94,160,77,217,70,19,58,39,45,144,69,223,127,206,98,193,81,101,215,144,182,237,40,13,109,143,241,0,212,205,248,235,176,205,112,101,188,169,10,93,7,193,6,47,86,203,227,21,143,122,238,118,75,198,244,100,35,225,64,161,216,187,145,203,164,130,170,154,44,156,49,137,142,65,36,68,15,96,60,145,133,227,5,127,210,222,244,121,192,0,156,140,63,96,126,154,185,50,87,13,2,16,238,68,203,50,32,48,73,168,132,121,184,182,144,120,39,28,104,143,191,78,163,141,187,201,158,144,16,215,6,52,71,153,42,252,179,34,221,65,46,184,145,62,213,51,35,228,240,67,154,227,214,170,187,236,43,34,137,64,159,141,223,201,127,27,6,193,2,118,212,153,193,226,39,251,249,193,110,63,60,173,167,27,234,121,96,137,81,43,203,236,89,128,136,238,73,74,138,20,3,164,245,249,79,182,198,253,241,132,206,2,184,222,234,181,71,51,101,134,181,50,48,173,53,131,19,107,215,94,106,153,243,173,154,227,164,38,88,26,41,77,244,99,29,171,92,
142,101,159,62,175,181,184,119,205,57,94,124,235,72,93,177,108,8,16,215,9,215,121,192,59,43,183,131,230,114,71,12,181,104,165,9,64,99,120,112,91,1,150,220,175,133,125,127,33,253,91,80,195,255,96,90,178,54,122,212,103,36,33,81,50,216,73,246,126,35,5,184,108,129,244,67,145,49,203,178,240,95,7,62,242,246,158,181,183,208,32,173,12,173,47,68,33,252,99,15,154,36,121,129,205,31,11,125,29,57,55,199,42,207,3,120,92,121,179,2,162,199,140,74,9,163,66,25,216,116,111,120,12,238,38,14,240,169,97,215,74,132,244,245,190,188,71,143,222,74,211,139,216,126,118,8,250,166,100,153,128,237,207,108,27,220,193,17,154,17,255,142,239,130,225,169,0,178,98,22,51,202,47,48,70,58,2,231,194,158,165,69,68,109,12,154,119,154,27,234,28,158,131,74,148,30,219,190,101,132,161,25,17,68,2,115,92,17,222,179,126,92,52,193,4,33,243,95,24,160,116,5,24,62,85,192,224,15,77,87,29,144,225,118,244,248,136,192,59,35,148,119,99,49,119,103,
145,89,97,252,194,245,85,218,215,24,171,204,73,195,34,6,253,17,114,221,61,72,108,174,155,82,253,170,210,120,150,245,23,209,102,67,130,163,169,232,43,140,18,24,153,141,204,73,200,251,71,242,30,35,219,46,192,146,67,195,220,146,163,128,141,26,146,58,123,200,167,199,159,80,166,152,237,252,141,15,82,94,23,149,126,31,40,197,3,211,15,12,220,93,4,110,13,237,164,245,154,141,56,186,42,175,32,224,122,196,225,99,161,39,199,223,246,149,148,225,137,243,16,40,69,161,176,4,138,244,134,82,193,43,57,84,77,100,23,72,16,42,41,138,33,219,5,12,243,47,189,144,106,13,231,103,184,178,214,253,69,171,156,127,17,210,135,127,118,115,195,45,223,119,249,180,131,16,228,1,85,167,246,204,80,99,50,183,21,63,22,73,204,187,185,234,26,132,248,112,90,71,196,227,103,184,243,242,78,88,252,190,226,187,95,235,55,123,5,89,111,11,87,138,2,137,58,161,47,217,110,99,32,57,204,141,203,2,200,200,178,142,243,203,82,245,74,115,94,108,128,190,108,182,230,228,
110,107,176,89,218,227,27,63,224,221,165,28,252,251,47,131,164,230,27,246,247,60,140,255,125,90,176,47,127,209,204,29,96,155,186,186,10,130,31,27,109,202,5,187,159,250,183,215,201,60,105,119,127,140,150,230,112,231,238,132,156,60,196,39,200,13,240,80,164,59,108,176,27,15,50,33,144,70,144,40,38,132,210,48,210,127,126,225,210,40,46,108,103,105,82,22,102,148,57,72,123,33,11,65,162,94,234,234,57,7,74,44,212,194,224,58,209,254,31,5,56,200,253,9,190,112,122,156,19,208,44,90,185,192,85,123,223,39,77,39,151,213,207,98,245,35,219,123,56,66,31,76,201,12,134,168,0,101,127,180,140,55,216,241,237,18,66,233,40,87,231,126,48,19,35,228,72,152,243,245,141,137,14,42,66,156,187,135,32,184,5,21,130,6,167,131,151,5,203,52,151,40,45,118,209,5,41,227,47,33,179,50,19,84,174,160,13,184,125,166,199,177,184,133,128,81,22,24,199,133,201,161,197,108,103,177,20,244,239,240,128,68,144,233,8,239,155,104,166,32,248,8,145,0,26,57,
218,111,46,38,219,231,79,241,112,146,10,209,101,157,196,110,59,16,152,123,83,237,204,74,81,134,248,179,147,13,214,232,105,40,183,17,83,55,173,132,143,49,98,124,30,107,176,249,55,8,203,228,207,221,102,150,199,191,253,248,158,192,223,166,104,32,221,69,126,24,180,14,75,65,207,102,216,13,97,9,235,67,90,217,107,70,61,98,201,35,50,115,247,43,52,137,90,17,205,88,117,118,145,148,78,226,50,201,35,160,132,22,235,205,192,228,152,168,124,140,68,181,240,79,224,203,239,238,232,24,200,131,115,137,7,239,255,173,250,246,79,110,217,51,202,254,211,253,6,233,119,223,19,3,68,7,24,143,175,95,209,86,18,52,8,2,243,59,77,245,152,9,131,70,87,92,135,77,182,70,152,91,91,195,170,240,245,81,158,220,221,254,132,117,164,67,29,209,162,23,156,173,76,135,234,22,175,173,10,135,239,244,70,249,36,183,55,78,40,214,80,163,32,171,44,187,251,55,44,247,92,207,9,87,116,230,99,182,236,4,156,55,127,189,94,236,54,123,192,106,171,216,28,181,179,196,
90,99,185,217,30,44,66,231,235,242,32,111,56,184,98,224,67,73,208,53,120,168,158,35,172,214,186,110,222,86,131,168,188,245,199,22,183,179,245,246,5,43,71,135,66,245,124,16,51,68,138,102,83,3,223,45,70,172,150,225,135,123,96,195,182,13,39,89,85,251,221,27,109,55,175,237,249,210,49,156,229,9,123,211,180,155,57,120,55,200,149,223,96,41,248,199,48,242,225,63,207,179,221,219,36,169,248,193,236,38,122,48,116,35,1,187,66,166,13,245,171,236,118,126,107,124,42,117,110,20,41,77,33,1,25,95,1,49,156,177,145,182,0,116,10,163,13,248,134,53,170,106,77,93,53,141,6,14,245,98,181,224,250,95,231,203,254,233,181,148,1,105,191,0,117,67,225,133,227,232,25,136,112,68,168,236,110,88,185,64,189,223,45,91,23,120,247,202,230,229,253,6,39,90,20,59,77,14,42,235,247,217,230,209,133,233,0,35,129,198,16,97,76,16,198,132,188,4,96,216,178,81,222,77,101,177,106,255,93,241,65,30,169,131,209,31,104,90,146,241,37,180,34,41,164,35,
255,34,176,193,216,125,52,248,29,183,75,36,156,81,34,129,90,207,156,51,204,156,0,124,75,217,74,28,139,111,30,128,130,249,239,228,181,96,29,92,97,19,33,41,123,138,72,202,224,15,171,29,74,137,70,79,249,111,183,24,198,220,225,29,124,237,6,108,132,155,125,211,144,200,105,178,101,115,123,126,199,214,140,197,177,191,59,63,62,75,220,59,245,124,7,197,130,173,191,246,242,73,232,146,221,48,127,24,166,57,128,88,96,28,145,155,114,236,158,53,162,40,246,251,1,14,173,170,128,41,23,225,86,171,72,109,48,93,135,211,66,46,67,105,189,156,124,62,142,227,246,234,222,73,123,72,171,205,154,99,44,200,90,11,70,79,249,49,213,193,21,215,131,87,252,84,238,212,140,97,158,1,213,255,231,151,32,9,188,158,28,7,11,104,85,122,28,129,234,173,56,199,236,203,37,219,255,60,94,72,15,141,40,213,245,78,48,120,194,10,1,194,120,112,241,100,80,114,79,208,203,202,52,255,25,113,116,252,148,218,178,238,194,15,132,251,79,46,206,133,140,150,41,46,162,134,
156,165,43,127,11,207,196,123,53,246,43,101,161,63,158,159,55,88,55,239,92,229,12,235,28,92,203,138,79,233,240,132,58,238,126,186,79,235,108,196,141,143,71,18,101,133,65,175,74,23,192,123,240,31,148,0,137,34,156,133,116,189,187,169,56,46,214,117,197,90,103,56,170,244,31,155,173,182,104,47,221,248,211,57,142,119,3,80,108,148,248,152,160,121,177,15,241,241,40,249,233,135,223,98,183,218,185,174,177,50,211,162,84,48,213,138,191,118,12,192,156,119,89,197,165,187,195,235,116,103,40,91,142,85,143,187,181,122,204,216,195,225,32,240,170,233,143,112,130,86,228,144,227,41,20,153,38,160,43,160,16,54,232,42,64,165,144,211,249,134,251,214,124,205,63,232,117,228,151,109,94,77,205,43,85,85,169,204,130,31,89,132,8,160,66,77,137,48,98,173,59,132,141,187,164,27,53,60,10,168,52,213,218,87,152,109,217,91,107,226,229,37,49,254,70,134,34,4,3,17,78,168,83,217,38,176,147,139,88,88,196,24,153,98,0,243,185,220,145,73,153,55,91,14,239,92,
246,123,173,236,158,22,117,196,155,72,204,236,32,51,169,53,130,113,29,115,240,21,41,56,108,96,123,35,229,0,2,76,113,66,250,190,223,100,102,29,11,118,131,16,18,18,77,197,8,53,87,124,110,19,85,92,128,81,217,115,3,125,126,95,36,188,248,222,223,196,11,114,36,17,75,218,255,25,225,106,85,99,228,184,185,33,64,152,42,4,112,239,37,125,109,250,139,220,246,108,51,244,152,160,192,121,117,56,63,203,40,36,54,210,62,90,143,175,220,221,8,194,31,232,171,40,106,146,45,19,163,79,155,127,147,202,237,109,251,174,127,183,0,246,216,70,100,76,231,55,252,218,242,46,206,232,31,93,1,67,53,12,194,232,179,132,66,83,187,170,18,178,83,113,106,228,89,225,31,149,66,14,3,192,24,147,70,17,160,20,68,1,186,136,198,216,66,142,39,161,80,40,222,193,7,79,57,230,92,225,50,236,221,92,168,33,179,235,36,37,27,219,113,167,130,1,48,69,168,116,107,198,137,172,233,85,145,202,149,108,40,104,20,231,149,24,56,38,176,28,212,59,16,41,252,22,
66,137,15,103,53,62,210,17,229,14,169,227,122,57,39,150,230,228,221,5,137,107,89,49,9,208,164,67,162,28,74,60,139,112,2,158,251,182,232,87,154,214,115,66,173,38,174,118,205,203,177,86,187,227,178,125,76,79,154,223,152,141,229,146,169,88,223,59,234,103,78,42,22,3,32,144,159,207,207,229,62,111,76,177,80,170,54,155,173,245,10,210,0,9,39,198,130,66,17,156,61,52,158,246,211,211,58,175,103,103,29,142,118,166,197,234,54,154,160,189,208,156,62,107,155,143,151,237,6,35,200,11,251,157,150,149,206,34,80,154,232,118,147,3,124,185,89,100,71,255,108,222,85,166,126,36,245,217,95,74,219,73,173,185,248,215,218,174,189,50,181,22,9,96,161,61,126,62,142,124,56,13,229,61,169,62,97,93,95,187,168,234,195,89,72,183,100,142,19,38,245,190,159,138,42,53,136,13,168,18,32,4,141,22,66,108,12,66,137,173,193,168,161,151,164,211,7,38,24,220,77,31,69,104,36,194,36,27,229,142,34,137,232,61,56,4,142,105,169,73,116,87,110,216,148,99,
194,229,255,158,184,48,188,189,32,202,54,228,78,218,106,43,18,137,19,50,252,172,147,98,159,255,162,160,14,194,32,173,93,241,12,93,91,17,0,117,57,185,12,80,50,22,78,199,54,183,75,45,3,76,116,117,197,53,58,34,43,10,55,88,6,65,161,95,120,80,58,117,66,250,80,104,178,60,135,156,207,71,208,13,61,203,252,202,85,14,6,137,72,235,192,71,216,32,27,162,61,212,222,112,157,244,238,239,15,143,89,232,64,252,253,31,158,168,20,39,9,111,150,31,49,10,130,100,13,224,0,76,52,65,154,254,82,25,231,24,9,154,152,2,114,228,231,201,218,36,140,54,155,21,140,164,80,16,227,21,177,148,67,33,148,177,125,8,96,219,12,180,31,50,167,18,203,78,14,246,167,12,210,148,104,216,152,87,73,225,206,124,199,183,225,120,211,118,240,171,16,208,79,196,199,95,193,148,65,251,21,116,40,222,214,183,102,150,96,210,90,141,177,124,140,99,238,87,173,30,69,28,124,150,77,185,94,196,12,20,251,113,48,4,34,170,240,215,168,197,135,95,220,190,178,205,
141,246,110,149,82,92,119,156,104,24,214,20,252,238,36,123,71,198,14,131,235,103,48,37,146,230,82,29,239,132,153,90,122,32,0,171,131,231,252,128,192,171,108,227,2,65,159,224,96,132,135,139,161,145,45,73,74,146,255,90,38,30,234,183,204,28,187,218,8,164,114,64,82,12,9,49,95,139,26,209,66,16,57,19,196,125,221,233,75,199,30,114,49,64,94,96,184,75,33,100,59,216,9,112,217,30,239,106,95,27,119,17,48,10,66,252,171,189,242,77,205,148,215,188,184,157,240,150,99,222,148,152,230,125,89,3,203,209,126,124,91,236,129,223,215,229,247,52,250,13,206,126,111,187,221,77,24,253,222,132,132,188,251,196,190,92,206,75,16,198,71,174,96,227,214,147,153,199,57,65,146,8,123,111,252,73,59,68,38,159,75,45,240,187,165,226,223,200,31,97,158,144,187,15,145,231,190,27,204,183,9,34,211,210,226,171,213,59,197,26,185,208,106,213,75,97,206,153,133,61,203,186,56,153,11,162,251,123,103,101,239,84,86,230,195,201,198,240,58,155,86,188,180,15,2,91,
217,236,246,213,109,230,88,197,92,44,186,60,194,84,155,197,115,180,236,151,54,129,151,224,3,26,238,244,36,51,244,136,174,119,192,234,190,77,197,65,155,198,115,77,110,220,25,119,200,131,31,74,162,167,143,179,19,66,42,87,194,47,147,133,22,201,168,68,146,37,20,198,33,145,65,97,5,64,75,67,117,161,54,84,248,163,254,109,147,142,254,85,248,191,6,136,243,190,108,239,64,45,198,254,197,195,124,34,228,192,13,195,34,177,27,104,0,207,248,83,145,232,83,52,218,104,250,37,68,172,38,13,184,24,53,30,127,8,149,194,44,241,188,159,48,173,198,20,166,197,110,97,242,33,205,127,18,38,71,222,189,220,20,94,194,100,209,7,189,157,72,204,130,104,147,75,181,75,95,190,233,218,40,165,227,41,134,188,11,230,114,235,124,184,75,239,67,42,9,237,191,176,72,173,130,76,64,219,254,36,8,197,99,34,85,153,164,243,3,223,25,29,57,134,160,79,48,240,163,24,134,235,62,31,142,80,171,158,113,6,192,234,65,135,97,180,171,107,75,203,142,69,51,132,100,49,
164,27,190,168,101,67,24,140,213,150,75,130,255,237,104,185,217,57,40,155,202,210,92,209,233,25,252,131,247,36,77,48,98,236,30,128,136,38,153,241,155,37,144,70,181,74,184,34,67,241,47,170,247,201,124,223,11,211,59,5,140,186,206,249,41,191,48,67,95,225,188,130,48,229,51,181,31,69,243,243,213,251,49,214,244,46,36,43,70,87,122,0,84,66,62,198,233,67,169,189,152,156,182,139,12,103,129,204,16,234,60,10,104,67,45,143,228,23,35,214,91,114,80,230,153,229,201,64,114,207,0,139,131,89,11,107,228,76,34,45,47,57,179,108,210,207,244,202,215,78,1,221,218,103,69,52,66,90,128,205,41,106,225,218,89,233,41,65,145,252,16,207,235,136,44,35,37,74,152,27,157,250,187,238,196,200,236,28,227,14,31,239,131,233,218,236,239,172,115,208,98,245,236,132,99,94,135,207,101,174,132,84,230,140,197,178,158,112,24,182,251,142,143,243,245,215,180,78,48,105,12,10,249,211,24,152,206,132,83,140,177,239,44,44,1,235,254,116,134,8,91,15,55,177,93,236,
234,132,189,177,255,200,240,131,236,246,209,231,160,210,171,157,226,19,117,92,109,42,156,216,58,30,127,182,95,152,108,183,175,189,108,113,82,156,101,39,205,214,160,151,106,244,118,49,112,208,98,235,234,93,128,59,199,224,238,252,87,11,178,163,89,124,248,246,188,199,175,93,227,7,121,214,14,111,35,183,103,18,6,26,101,22,246,38,137,192,203,109,131,156,44,5,150,223,136,93,10,119,196,51,100,135,162,231,185,202,197,249,83,125,49,203,212,19,71,22,98,42,220,207,46,143,38,237,14,176,159,219,58,236,122,163,81,33,32,116,2,193,10,87,119,51,69,225,119,197,135,170,214,83,128,204,108,1,245,127,55,79,79,105,144,172,75,86,143,77,133,208,153,9,8,8,162,104,184,241,225,214,234,248,66,46,178,73,183,242,37,161,229,33,113,61,152,204,46,238,141,107,133,125,203,80,46,242,7,12,85,64,112,94,112,128,120,226,127,89,111,201,234,42,59,152,215,238,254,216,255,239,133,81,104,41,64,242,240,145,178,145,217,88,130,57,104,191,12,243,248,143,231,52,52,92,
89,62,212,204,209,83,157,183,213,63,222,250,21,37,161,68,80,184,246,11,77,89,213,82,146,50,131,84,103,215,3,33,104,8,71,227,252,33,45,208,161,115,138,95,69,242,168,200,206,197,184,46,185,69,67,35,226,117,77,226,71,72,2,188,152,168,30,240,220,192,241,149,51,234,75,223,115,120,57,134,93,180,4,244,21,213,122,62,56,99,230,120,101,230,99,215,54,139,118,222,48,160,189,77,226,200,117,6,145,64,132,28,72,200,129,102,184,139,212,242,92,181,139,46,94,224,229,34,213,163,193,59,127,48,53,230,200,203,195,241,40,185,125,166,224,213,98,119,33,189,115,239,225,93,170,131,50,90,125,192,42,133,193,21,26,18,155,131,55,246,93,112,15,189,101,87,64,158,28,12,118,14,123,49,202,235,226,168,123,240,132,117,60,147,162,51,184,186,47,165,20,144,115,135,6,157,109,30,210,143,40,120,109,106,216,28,18,107,255,118,255,233,108,104,19,80,80,148,226,162,51,242,87,10,164,205,104,135,162,127,46,23,104,105,252,199,155,244,148,1,156,204,23,138,72,90,
133,132,95,215,20,68,12,121,220,153,183,211,97,119,217,45,168,74,192,93,245,25,23,243,25,127,86,191,58,108,159,171,221,190,224,112,218,244,54,187,221,98,183,219,77,78,251,188,94,119,121,95,248,199,191,25,134,122,2,17,72,31,250,228,50,120,217,217,122,190,66,24,38,246,195,195,9,30,175,132,229,18,231,110,189,219,192,57,113,252,91,142,239,196,72,246,39,251,55,5,130,209,115,172,152,142,192,156,197,186,163,83,111,45,49,202,237,74,179,89,106,83,75,165,94,175,51,168,15,218,123,163,120,242,203,239,191,145,119,51,49,65,7,8,58,154,160,165,246,135,108,117,70,40,104,18,19,52,236,165,170,207,91,248,123,51,157,96,174,229,119,150,6,193,122,219,224,109,88,54,246,191,226,39,148,186,254,160,144,20,191,102,62,119,134,183,116,82,209,213,4,128,138,234,186,59,27,120,210,179,71,188,44,12,77,64,155,17,210,67,200,109,158,44,116,122,208,195,169,129,158,31,169,42,178,147,161,23,191,237,122,126,195,255,244,147,120,183,104,17,167,123,188,34,20,14,
250,206,67,146,200,109,185,50,187,215,112,180,83,183,245,39,157,17,114,233,9,51,153,77,66,46,44,204,228,110,108,203,16,161,252,139,29,90,18,63,58,185,238,7,192,166,128,0,235,131,183,224,82,123,220,133,7,175,160,10,7,66,164,71,183,71,167,181,133,92,207,81,253,238,25,234,206,59,99,40,211,152,12,10,141,30,4,210,30,44,174,44,194,160,23,6,22,154,102,249,130,54,28,180,96,255,145,248,180,246,197,230,250,154,42,85,56,155,226,66,196,29,152,162,4,137,32,155,102,246,103,251,48,63,253,92,146,110,85,112,6,121,138,60,206,229,176,205,252,106,56,168,19,32,215,110,247,238,69,71,175,221,240,25,57,103,30,28,31,135,33,139,252,28,127,47,63,200,249,175,215,0,36,224,187,202,191,164,109,232,3,155,178,109,234,12,137,126,18,148,40,117,17,189,39,106,151,137,154,237,35,175,221,170,32,73,115,171,27,214,216,143,87,100,187,138,90,255,156,154,146,153,198,103,32,90,104,154,109,236,52,79,52,50,159,1,125,241,67,192,4,238,211,0,76,39,
249,118,30,215,233,145,126,139,74,167,244,76,35,32,243,186,159,199,17,148,94,35,222,125,25,198,117,58,112,16,234,215,36,162,173,66,108,133,255,100,10,144,59,201,41,9,37,1,50,127,197,144,59,243,192,175,127,78,50,5,10,20,155,238,143,88,37,16,53,105,193,200,94,30,50,132,236,163,248,118,238,219,202,57,138,255,2,198,119,102,253,4,69,38,149,206,110,255,154,212,102,185,215,42,46,128,43,96,181,65,171,243,41,255,109,213,202,197,105,53,43,252,171,196,203,133,137,64,60,17,8,247,27,129,192,70,222,143,208,183,103,255,232,229,254,220,253,177,121,227,76,146,84,172,80,83,45,85,136,233,188,223,169,151,10,111,151,192,110,86,186,95,229,216,119,174,96,167,70,118,57,42,181,121,119,147,125,12,29,8,23,106,213,82,127,80,107,23,43,197,131,137,113,27,123,242,219,143,170,253,217,45,155,138,190,230,224,255,182,218,7,191,31,117,138,148,239,137,110,54,89,204,71,246,187,229,188,45,213,175,196,146,149,151,231,91,105,117,88,192,20,30,117,27,62,175,
255,16,133,130,73,21,119,58,125,63,91,90,50,75,114,237,13,32,167,6,253,239,86,67,187,191,175,125,61,159,93,112,226,198,152,56,97,43,78,187,197,134,252,60,48,60,12,65,155,103,44,188,250,45,108,238,40,119,11,241,39,248,146,122,71,222,83,188,158,234,142,178,68,16,91,48,160,50,128,100,96,222,203,140,38,90,14,164,112,35,202,167,50,168,189,129,66,111,31,15,213,213,112,126,126,248,2,80,191,116,65,172,19,138,208,190,255,111,255,211,99,14,44,177,227,94,156,98,247,76,101,55,36,188,46,10,47,136,53,134,17,60,134,86,133,3,176,255,185,222,105,118,190,11,255,219,187,177,77,238,146,51,34,74,171,192,160,203,86,142,157,46,34,40,92,178,58,14,17,118,62,111,17,78,154,36,240,130,157,62,55,124,209,58,91,144,210,165,217,55,24,80,44,0,239,114,28,158,105,132,175,40,34,172,26,150,7,107,162,77,235,238,124,227,101,69,254,101,230,212,108,10,229,218,255,59,45,14,111,91,230,241,140,69,195,138,127,174,110,228,205,117,231,54,193,159,
216,2,177,215,20,107,176,158,225,129,88,66,42,132,64,81,62,30,13,22,18,73,104,121,212,95,80,103,44,110,22,73,33,78,93,87,182,88,164,228,246,200,213,216,228,47,43,240,175,198,227,109,234,146,9,174,99,169,32,33,152,61,66,80,113,166,73,124,12,69,146,42,206,224,95,200,151,0,65,59,168,131,5,77,11,244,36,246,179,72,246,32,66,73,204,191,19,88,223,241,14,248,166,18,7,41,81,214,161,245,31,133,222,216,133,230,163,26,17,215,153,202,238,169,78,109,88,232,7,140,224,247,52,58,160,231,184,118,11,157,103,240,69,15,29,6,16,28,42,169,126,228,74,122,225,130,206,237,189,200,59,159,158,38,170,105,110,167,141,20,202,253,62,208,169,54,219,197,90,243,86,235,212,30,46,169,247,235,180,138,165,90,181,246,43,150,155,213,122,183,252,43,250,39,119,182,88,35,175,90,110,151,108,222,60,202,227,45,248,44,43,126,122,90,34,30,173,167,7,201,126,226,108,93,94,245,206,91,211,30,244,195,69,20,47,105,245,86,170,189,93,103,216,171,52,123,
141,71,179,85,104,54,107,173,18,108,20,199,74,206,2,63,95,213,170,39,107,189,102,173,81,43,140,183,250,161,252,52,14,251,247,180,126,221,162,3,94,205,251,123,211,191,202,158,84,62,176,85,99,250,117,250,11,63,83,221,26,205,182,117,94,168,120,139,120,64,89,102,86,170,217,197,146,158,79,184,117,154,35,226,249,235,225,7,12,92,130,34,117,152,50,174,253,32,99,58,131,170,178,238,108,177,38,52,37,232,28,147,114,147,213,207,228,159,231,249,184,212,181,246,207,199,218,207,63,225,164,174,131,235,31,167,33,55,177,122,121,120,11,188,26,220,223,125,232,15,243,147,230,162,144,144,190,205,36,108,60,200,147,62,124,41,114,3,66,72,112,145,10,81,129,77,186,188,72,109,110,37,230,70,27,134,94,104,183,134,203,38,105,28,19,3,59,14,32,23,126,115,212,207,14,202,64,247,24,230,130,58,213,159,164,98,17,198,148,229,159,244,55,126,100,161,100,208,34,135,236,157,58,55,32,118,138,218,44,47,200,171,110,36,246,237,3,238,117,227,246,89,162,244,201,224,
37,99,249,69,156,145,15,210,240,92,61,80,132,57,6,98,0,223,191,168,238,132,238,215,94,221,6,32,2,16,233,165,23,170,111,254,201,226,125,247,61,50,145,14,97,100,117,158,247,0,166,229,253,51,179,16,7,126,162,238,250,39,54,162,169,73,235,235,112,250,188,168,254,42,227,83,29,158,79,150,144,49,221,115,238,234,79,232,198,168,184,127,19,16,63,90,152,11,21,185,83,118,11,165,88,143,164,143,74,101,151,107,87,57,44,19,105,44,137,43,153,64,80,212,0,19,163,191,32,131,101,192,146,76,235,175,212,153,76,77,70,205,206,161,4,173,129,243,181,188,62,88,173,18,101,40,115,218,143,80,236,209,107,118,101,206,74,87,66,5,133,96,60,104,15,124,239,81,174,119,175,155,224,196,200,168,236,7,67,50,254,148,136,186,210,142,30,71,201,244,227,46,10,179,6,177,9,155,1,50,251,69,153,238,170,50,41,215,126,155,186,201,250,238,125,157,77,98,78,179,213,164,216,46,182,163,245,118,181,90,233,244,24,181,78,171,209,26,84,7,195,179,211,250,184,172,
125,179,213,235,246,146,11,247,66,163,222,47,85,42,215,94,171,52,159,205,214,63,115,46,123,197,231,204,165,60,206,130,205,91,113,45,235,58,238,236,56,113,86,156,231,217,214,93,211,34,112,58,186,91,102,21,190,34,223,191,63,71,37,254,250,92,102,137,76,45,49,216,220,18,91,188,223,11,180,101,154,245,90,203,81,27,107,103,123,213,102,163,80,171,245,183,94,29,27,5,169,180,183,242,126,235,139,78,229,167,57,191,213,165,3,62,131,82,236,167,126,98,91,118,218,207,36,46,0,162,140,194,163,125,202,143,197,60,231,110,126,55,113,92,115,248,206,86,207,101,135,133,157,145,147,114,135,105,189,94,79,113,133,187,227,153,115,97,54,4,207,149,238,208,185,125,228,200,221,110,253,132,248,220,213,237,118,217,102,120,188,105,199,122,125,39,69,110,69,36,189,191,165,229,21,20,224,22,105,212,71,45,128,250,123,30,187,162,99,55,176,66,227,153,30,211,28,170,205,16,102,42,80,118,185,213,70,97,92,111,170,193,112,254,238,50,128,220,88,203,120,96,224,26,129,188,
195,213,185,243,202,220,176,163,77,120,30,180,177,3,250,178,8,151,126,224,8,47,62,13,190,254,176,75,118,185,17,49,228,77,117,203,182,179,229,124,69,5,247,72,119,138,5,154,72,242,40,70,79,210,183,50,59,186,182,23,174,120,184,202,115,122,151,11,92,135,80,76,186,178,8,13,179,94,63,119,217,171,212,186,253,25,97,110,162,221,82,127,115,119,103,203,125,124,96,114,189,191,54,150,253,90,38,13,197,208,124,127,172,68,2,15,144,4,2,37,93,92,111,187,13,135,165,178,86,147,145,227,251,207,207,189,214,85,110,87,41,28,219,108,250,243,87,14,97,162,200,234,19,87,152,219,56,103,46,74,105,132,44,166,220,63,33,232,250,248,27,143,210,167,247,241,108,225,70,252,32,230,114,48,116,162,96,93,192,205,127,26,235,35,51,134,43,91,88,11,197,46,70,174,1,148,78,94,86,6,33,20,99,199,84,43,207,43,23,30,173,64,225,60,222,49,30,159,206,118,203,98,20,8,212,26,171,92,117,232,24,66,222,81,0,129,57,87,180,46,186,221,74,16,33,199,
206,132,115,28,59,229,149,75,76,50,129,3,204,39,35,40,246,122,97,116,165,100,117,77,68,98,34,244,239,254,229,59,3,88,249,21,105,213,98,167,151,251,46,20,46,46,169,216,249,181,202,189,102,191,91,254,116,137,64,5,97,221,150,188,178,112,239,119,92,216,142,204,118,249,232,108,219,189,237,234,13,225,208,122,55,64,64,197,102,65,114,214,152,236,181,5,39,205,244,176,83,237,69,218,61,102,167,206,186,42,28,255,113,75,252,34,143,197,244,85,104,84,6,141,41,127,109,20,234,205,186,198,176,47,218,234,214,58,189,178,166,126,195,139,200,62,65,64,231,5,169,80,76,16,253,17,0,164,63,65,255,77,123,223,108,250,155,79,160,87,43,3,166,83,202,89,183,141,181,156,229,92,217,226,206,218,45,214,33,197,95,69,197,195,96,228,123,95,175,171,239,72,54,82,127,33,183,244,215,214,141,62,233,12,136,109,184,175,70,124,31,111,207,230,187,249,172,29,219,175,241,249,89,114,22,14,67,64,80,228,239,182,96,42,87,184,17,202,165,194,15,82,82,115,144,42,
212,133,99,141,128,103,134,161,115,6,116,152,220,86,26,172,95,37,40,197,27,147,163,53,247,216,96,166,211,2,120,8,192,236,13,159,123,151,208,158,220,18,20,99,128,136,111,102,46,109,194,130,183,254,254,145,237,202,94,162,55,86,50,26,246,206,47,133,119,227,130,94,8,135,75,100,129,12,58,64,197,129,68,18,161,4,167,162,50,253,129,121,192,36,106,18,1,135,217,8,96,253,151,223,148,14,241,109,180,119,87,191,45,22,8,115,34,247,21,120,173,10,153,233,254,11,209,103,12,55,125,54,139,189,92,207,47,44,129,192,204,212,124,114,73,157,228,184,204,210,175,38,193,91,198,200,109,246,174,2,231,174,20,169,80,251,158,221,240,145,38,38,57,74,197,73,153,70,20,103,47,149,69,67,169,92,36,194,211,123,105,1,142,140,18,185,208,64,34,111,252,123,32,242,44,28,141,174,66,239,84,68,244,37,26,217,121,227,80,23,93,162,116,19,94,192,52,130,172,23,253,155,119,140,18,176,108,131,43,165,41,240,203,226,50,41,131,209,207,98,197,202,132,181,185,216,
18,34,0,53,7,168,113,128,36,236,16,189,140,12,147,166,99,113,121,25,104,7,177,183,205,162,6,98,156,103,68,232,253,215,50,78,182,136,70,24,45,251,10,43,130,214,180,6,207,230,159,207,15,161,32,81,8,67,158,68,225,225,51,106,182,145,67,69,208,177,89,208,151,85,66,122,217,7,227,81,172,154,87,188,158,105,7,240,238,200,109,187,94,151,167,132,216,52,38,64,167,3,52,170,144,38,98,168,83,41,225,230,162,212,105,23,90,157,115,189,94,84,28,14,246,14,199,243,117,31,31,191,39,39,2,141,147,194,253,225,148,116,218,161,166,136,52,185,125,238,174,233,224,107,58,22,248,245,30,159,66,109,145,117,16,160,8,240,254,89,174,77,80,36,159,151,165,185,237,45,192,31,37,152,84,1,197,223,81,168,96,1,69,137,225,96,179,87,195,200,34,224,27,66,74,34,243,173,188,171,254,20,171,63,211,212,114,36,70,135,163,205,196,243,42,19,244,104,222,39,66,230,158,189,219,177,162,116,27,249,137,38,170,171,223,186,164,48,92,103,156,175,109,243,224,38,
148,155,108,44,28,187,251,24,217,33,63,153,81,65,123,171,131,99,103,96,98,23,62,150,101,224,147,10,252,25,160,95,69,72,242,42,51,253,33,166,176,82,102,108,125,14,49,126,80,161,67,13,209,109,5,110,143,40,217,154,143,199,139,42,48,119,50,16,91,62,235,236,135,173,61,184,163,191,189,94,133,84,243,197,138,188,69,92,111,135,92,251,40,62,195,206,220,138,65,9,209,86,9,84,15,101,72,251,23,65,167,192,101,116,32,176,3,128,129,103,114,106,245,87,55,52,71,169,156,157,15,174,24,230,59,18,183,107,89,72,82,165,94,35,227,247,103,87,208,179,188,193,236,111,84,57,220,157,227,222,44,194,225,30,220,245,94,48,120,96,174,78,211,237,220,152,99,255,82,92,178,115,113,8,130,248,115,244,72,249,175,219,111,38,228,232,188,132,119,201,78,98,170,68,49,116,6,105,140,171,86,205,33,181,231,115,186,177,3,170,224,82,96,133,70,194,37,53,59,17,69,143,251,45,27,42,237,59,38,39,16,192,134,96,127,227,155,122,22,163,139,229,187,178,18,206,
91,64,212,0,137,152,236,154,250,199,8,86,158,220,73,52,211,95,163,78,199,72,0,3,240,189,13,23,173,31,94,97,201,173,107,141,246,176,203,82,5,170,99,58,169,54,255,42,244,6,176,250,190,8,137,214,252,161,178,155,18,162,186,190,158,53,184,148,83,232,250,241,42,194,180,130,143,174,10,234,248,134,190,138,78,14,253,162,205,25,93,16,22,135,162,145,220,95,16,120,70,12,40,38,94,197,233,243,88,177,65,149,144,75,121,12,33,59,249,31,65,110,27,175,229,90,223,125,5,124,236,34,226,215,166,217,99,182,25,200,142,139,205,230,168,87,65,53,218,87,173,82,169,103,58,141,94,163,84,41,63,106,131,90,165,213,107,190,170,88,80,36,107,22,56,197,214,114,37,28,227,79,60,136,239,223,178,78,255,91,255,91,254,186,58,72,55,11,192,131,159,247,123,155,192,21,210,161,70,75,180,213,71,2,59,145,222,233,154,88,42,80,100,246,44,203,158,247,127,107,93,245,129,111,41,244,185,248,102,44,41,222,234,211,153,102,35,236,246,117,103,154,64,147,2,146,
120,129,6,133,199,34,27,41,26,113,219,167,5,190,79,219,162,236,161,31,62,249,120,107,84,180,167,12,44,189,92,38,242,221,37,238,239,236,233,27,184,52,63,220,191,106,133,140,76,10,152,20,105,162,24,73,72,118,195,102,240,245,101,186,130,193,138,48,78,108,246,169,239,106,33,132,147,75,54,52,103,56,235,188,254,239,105,225,124,219,20,221,156,192,121,33,74,180,223,91,188,123,59,35,193,107,19,244,252,65,17,201,2,64,67,72,13,123,205,71,153,131,91,78,140,155,138,8,191,121,161,36,129,87,37,84,80,170,211,251,71,165,227,85,154,134,233,226,190,231,18,217,219,168,247,171,131,145,118,85,93,156,29,189,182,197,16,232,235,123,223,177,110,234,88,102,78,244,184,177,124,43,72,232,124,43,27,124,189,132,157,68,221,73,163,236,141,97,199,70,50,3,73,184,167,3,64,248,135,106,41,29,181,174,121,45,176,197,226,241,151,179,245,105,175,189,244,239,87,221,87,234,127,124,143,200,87,114,170,48,116,88,251,218,173,199,25,114,217,203,25,125,173,190,63,127,
183,211,48,124,32,91,202,0,224,166,160,231,216,103,201,68,220,133,130,195,143,208,206,78,176,125,193,52,128,23,57,113,49,74,106,14,50,60,133,114,187,237,46,163,180,53,132,225,181,228,247,244,25,149,4,48,185,139,73,165,19,152,32,165,10,197,131,34,115,63,32,245,223,157,104,19,4,142,145,142,69,136,25,60,216,119,213,133,136,46,78,165,14,30,228,183,95,114,7,111,96,60,114,188,171,221,13,82,225,168,198,198,128,53,177,206,178,125,164,1,173,50,13,100,35,52,90,15,163,234,14,147,56,189,49,2,51,205,0,10,70,214,123,71,98,17,141,175,240,37,152,118,176,55,253,57,176,212,127,71,17,183,204,158,37,145,127,21,35,15,160,196,221,55,242,180,102,242,28,31,243,110,195,3,111,244,11,173,110,183,79,236,213,170,96,83,100,15,220,239,243,216,223,253,12,172,207,235,72,55,114,28,148,203,8,56,126,237,11,116,221,67,80,78,228,63,241,246,162,63,161,70,117,237,55,10,83,229,182,234,169,95,78,149,127,188,1,190,58,170,96,182,240,210,49,90,
25,243,127,150,140,228,164,90,75,191,163,74,100,252,227,147,106,149,182,175,86,168,255,126,217,43,246,250,220,189,192,62,130,143,46,231,242,187,80,245,33,59,145,211,206,21,6,118,168,8,98,81,26,65,137,230,209,177,8,3,223,71,16,136,248,48,246,124,227,37,194,99,33,14,5,38,135,185,126,66,35,25,198,181,176,242,152,39,27,14,2,254,223,161,117,248,70,116,106,198,34,221,119,71,187,32,250,149,192,44,134,114,252,247,39,95,76,12,3,135,78,129,63,20,23,85,97,84,251,80,29,173,106,255,155,48,139,243,234,26,255,77,121,106,166,86,124,104,2,61,139,238,88,60,91,219,133,126,27,120,9,157,94,218,13,230,73,209,22,32,142,224,158,37,234,175,125,0,150,135,225,101,165,92,56,107,28,76,120,237,85,70,157,235,49,83,230,176,144,139,83,39,6,123,148,194,138,44,159,76,28,30,121,128,166,204,233,4,74,79,0,34,46,36,203,216,216,41,48,205,61,215,48,184,17,12,148,151,240,206,6,193,224,245,48,78,11,69,126,184,158,21,218,176,230,81,
114,218,45,14,159,99,42,79,235,245,153,102,147,89,182,0,94,22,120,61,243,239,105,224,100,123,243,191,43,45,123,163,46,214,23,244,250,235,177,252,51,128,190,118,171,123,179,151,217,156,213,185,26,183,164,5,254,65,202,56,157,224,134,253,202,148,150,39,3,130,120,226,108,165,110,202,193,235,237,88,21,97,246,227,103,142,198,76,160,190,132,118,247,110,115,79,140,41,18,16,108,241,87,95,177,233,35,156,44,58,90,172,170,69,167,35,209,158,74,93,253,60,237,180,243,22,215,172,246,45,158,173,248,181,78,7,185,196,163,5,123,144,245,79,152,190,75,93,36,183,77,141,36,64,108,199,201,48,40,26,87,21,68,225,63,178,147,85,216,30,128,128,129,207,86,140,135,149,151,22,12,210,138,114,102,1,74,46,21,221,245,206,116,56,74,34,207,31,95,142,34,162,145,139,178,162,193,0,234,16,176,142,81,203,102,246,24,172,151,219,217,203,45,10,168,108,82,167,246,247,136,102,69,241,178,216,31,173,44,163,85,105,85,91,213,115,198,225,178,58,221,154,239,230,233,61,
30,74,184,93,38,137,198,191,179,250,95,99,144,216,9,10,34,150,190,222,239,118,123,67,227,74,103,177,210,102,156,87,250,132,139,185,225,121,47,15,23,91,159,99,235,239,57,6,192,39,45,113,91,190,200,255,167,108,229,116,175,78,13,104,238,247,83,58,214,76,184,217,95,242,68,158,170,209,23,223,9,60,21,111,153,31,225,148,52,114,158,147,10,104,144,24,62,8,103,231,194,125,182,249,99,139,146,130,196,40,245,45,14,122,123,134,207,185,126,32,108,211,11,76,192,90,125,45,176,255,88,102,177,104,242,234,91,147,46,39,224,111,122,81,176,191,115,119,73,190,195,199,144,227,238,158,198,240,243,107,205,150,169,162,217,111,154,33,164,34,254,190,221,172,77,117,81,98,102,128,99,76,183,166,12,177,33,8,37,57,41,179,6,153,62,80,79,238,35,236,255,189,208,196,187,6,149,155,25,201,229,88,213,186,200,203,68,69,102,60,75,1,98,227,224,118,191,232,130,51,109,8,150,66,167,246,61,96,18,220,184,248,156,114,202,111,228,110,218,1,213,75,235,84,249,14,
167,124,151,252,135,116,31,207,150,63,248,6,126,171,145,250,42,11,177,222,128,157,75,236,48,210,121,28,176,108,214,19,198,49,32,136,25,79,126,183,3,76,76,230,153,62,98,36,32,147,185,32,167,90,10,59,198,245,31,33,28,57,151,14,102,201,25,55,203,150,183,209,187,84,61,182,122,149,234,118,114,120,243,223,251,245,112,253,210,231,170,155,177,80,50,255,116,171,190,126,219,209,176,182,54,74,205,70,169,130,176,152,221,146,37,173,105,229,96,120,165,147,72,10,143,98,32,178,46,67,43,43,65,19,153,178,8,9,9,216,56,88,241,82,234,252,131,148,145,17,126,105,103,131,50,223,67,85,128,170,8,103,38,91,245,129,168,160,128,90,24,109,142,66,194,80,134,40,87,27,172,230,42,226,42,59,28,37,82,176,111,78,22,25,117,13,163,240,95,73,66,225,182,249,18,39,65,131,129,144,9,22,37,138,72,234,40,84,185,165,214,138,96,12,222,77,61,54,149,87,177,53,104,62,65,204,72,194,190,59,141,32,90,123,184,137,145,64,175,127,158,49,119,240,15,12,
173,34,37,204,144,85,11,178,253,101,91,36,100,51,127,131,96,150,19,127,168,248,125,60,38,228,188,76,8,41,229,255,136,126,128,23,93,44,255,107,115,183,198,173,22,14,238,43,137,66,125,167,117,192,100,21,172,16,30,252,193,126,184,155,75,0,7,159,148,0,111,248,249,158,210,217,121,211,87,240,220,134,58,201,188,121,253,236,25,46,219,63,190,9,197,66,199,50,31,172,61,147,201,96,205,191,178,52,93,107,180,121,86,211,201,150,245,206,61,7,53,131,5,83,33,119,127,125,190,109,236,150,71,85,219,180,239,46,105,62,87,50,213,201,86,215,249,237,152,231,60,107,60,174,238,233,160,41,172,106,38,1,145,173,198,18,241,1,147,200,41,28,235,65,151,130,79,42,170,100,103,9,39,22,140,227,90,107,22,226,206,130,126,8,221,60,139,206,33,203,16,16,223,133,0,33,72,104,93,72,6,169,216,188,98,151,196,131,233,5,229,50,146,78,144,77,102,106,163,203,117,240,188,109,143,134,206,27,28,2,191,48,90,171,127,215,118,20,93,108,81,233,20,129,99,12,
191,42,169,220,121,244,247,243,236,111,189,70,16,1,5,197,206,226,33,208,58,13,135,96,242,1,203,112,91,99,62,50,62,147,63,227,233,63,190,201,243,97,252,248,96,140,174,204,4,145,18,222,185,32,163,102,186,24,242,140,178,47,120,253,55,204,148,160,59,153,51,192,199,33,79,67,68,237,8,195,211,175,202,56,218,123,239,76,193,182,159,41,237,130,141,61,160,60,103,247,136,99,50,6,207,111,94,185,242,225,114,244,32,60,136,77,97,128,44,51,157,207,4,86,76,223,168,252,160,77,161,225,240,125,60,196,82,121,226,188,25,28,130,252,148,67,212,44,120,50,125,75,25,192,184,208,240,174,128,153,147,217,111,179,68,220,46,147,207,202,77,106,228,189,209,49,48,187,130,153,65,86,133,77,161,60,77,37,186,133,117,1,65,23,201,146,85,104,199,11,210,113,150,177,145,113,249,188,110,173,237,250,128,114,63,112,66,125,106,60,105,121,169,246,4,226,239,143,175,63,152,216,45,99,226,227,138,33,12,190,12,205,45,33,144,160,188,211,127,134,123,169,9,238,20,216,
221,13,163,88,235,212,18,142,60,73,238,209,176,168,23,35,210,55,221,222,46,255,8,12,162,246,108,112,2,215,32,31,123,139,1,184,193,245,173,206,28,138,128,46,163,193,184,209,215,246,119,214,130,62,236,0,21,67,188,175,123,88,12,213,194,64,39,249,35,200,251,112,22,104,16,133,223,226,8,190,63,152,151,253,65,232,32,244,28,34,12,35,130,171,178,185,204,127,31,74,64,171,14,190,155,60,69,48,48,254,30,236,226,231,114,156,189,86,218,135,159,158,105,232,240,164,153,71,24,36,50,255,212,166,38,55,120,221,193,36,97,210,78,76,202,254,38,70,174,79,67,207,73,229,101,111,151,212,195,51,29,227,47,106,16,146,87,147,143,28,16,163,98,39,27,131,161,16,231,23,154,19,78,10,233,83,202,212,146,234,75,63,209,133,171,161,146,16,151,84,178,45,44,17,211,211,149,3,42,206,86,149,151,84,102,47,139,100,218,164,196,80,68,244,19,90,201,124,112,115,184,168,180,72,20,96,24,180,19,74,44,172,206,56,4,166,170,82,107,107,203,236,224,133,218,39,
17,132,228,203,191,139,42,155,82,229,249,183,239,221,237,187,29,234,5,254,183,57,211,248,147,133,80,112,167,155,88,1,83,53,163,116,134,147,0,38,138,14,124,96,209,145,41,196,119,239,177,237,89,242,111,244,130,65,31,112,123,162,25,184,119,184,82,255,169,35,255,162,28,209,132,188,40,177,8,114,38,100,96,93,13,103,169,129,45,139,220,122,94,42,227,128,251,221,211,24,123,148,68,161,98,84,216,103,166,24,140,103,145,140,140,102,230,38,120,46,102,70,244,247,25,199,254,62,233,51,249,47,138,157,32,240,218,77,42,63,71,146,152,128,68,127,250,92,4,157,213,254,199,165,14,240,77,226,162,57,209,185,13,94,65,132,113,237,136,167,0,137,98,84,52,178,111,65,22,14,22,231,67,185,113,182,43,139,103,220,58,107,159,86,183,229,101,115,162,44,150,32,181,236,7,7,243,40,29,125,23,133,27,203,76,222,165,67,120,168,74,107,103,92,157,139,5,134,159,110,35,36,102,77,147,208,68,49,234,9,29,153,189,78,183,231,14,111,142,131,160,204,105,126,204,249,
237,58,187,250,131,103,207,102,209,20,111,138,4,154,44,186,116,53,232,66,173,222,37,157,183,255,198,126,179,191,158,150,69,73,142,141,111,189,130,115,238,116,166,217,65,112,17,166,18,199,211,96,191,44,252,220,247,133,141,69,243,61,11,244,151,203,199,9,63,115,6,59,166,209,27,143,231,80,211,41,129,21,4,13,238,176,51,16,152,77,56,18,2,65,255,161,99,237,81,208,140,160,210,221,121,166,224,13,16,59,138,49,9,65,252,48,237,86,128,26,140,64,86,40,39,211,2,131,249,129,115,48,202,0,54,243,29,183,32,196,113,219,143,42,240,2,220,154,218,37,167,103,24,29,151,131,100,44,74,198,58,35,243,200,141,173,111,199,80,144,116,71,201,82,22,167,219,75,148,180,222,89,153,95,203,143,40,68,169,204,10,47,101,192,201,96,30,78,9,221,62,48,96,29,216,222,137,141,167,172,52,246,48,22,165,108,125,168,228,164,37,85,220,166,89,235,173,186,110,241,221,44,62,115,133,94,240,249,44,230,15,151,65,113,105,119,234,146,249,146,198,64,63,164,98,82,
71,28,172,165,72,42,170,153,39,76,109,10,154,189,14,173,68,85,125,51,155,150,162,3,177,160,128,208,10,20,136,11,0,169,9,141,35,113,27,73,227,167,238,109,25,156,236,202,144,27,158,248,107,218,1,139,151,183,199,163,33,16,120,167,176,118,250,4,230,150,136,10,13,225,197,248,214,223,78,210,8,157,170,164,175,63,245,144,168,188,253,198,236,38,240,81,194,212,74,165,114,210,190,255,202,169,35,106,251,243,239,49,243,114,52,125,167,239,122,13,124,14,190,151,211,255,29,229,158,206,61,224,140,211,74,200,164,121,234,241,57,32,230,119,49,76,42,35,91,64,16,116,249,134,199,19,11,5,68,232,1,93,29,106,94,137,156,138,191,26,120,24,80,64,94,147,188,177,196,234,144,227,64,144,49,144,140,204,189,156,181,64,128,66,66,171,1,201,223,159,45,119,110,15,27,76,230,124,146,56,176,168,7,218,246,42,19,187,234,2,79,192,205,170,36,220,60,130,75,120,197,229,249,175,145,100,29,130,96,173,196,25,44,230,30,235,112,163,20,201,40,214,101,245,190,28,
101,118,22,215,206,58,43,187,212,38,120,93,206,192,34,253,174,172,150,120,141,120,177,203,56,29,11,238,168,109,169,6,92,109,39,28,242,188,44,245,87,205,170,149,11,62,244,68,47,218,173,196,9,74,254,145,214,150,143,131,232,6,181,15,228,152,34,198,23,76,19,142,118,226,31,172,223,8,161,49,229,62,175,40,230,113,47,110,95,69,74,245,22,170,32,94,82,117,179,66,18,252,106,227,6,34,140,128,116,22,12,112,26,244,92,243,188,81,167,102,189,42,242,214,12,156,197,192,162,55,206,191,204,146,162,253,89,156,147,244,42,173,181,83,34,186,71,154,195,102,210,202,236,127,28,156,106,35,236,83,75,154,211,236,36,157,70,42,12,8,158,153,225,163,31,10,26,238,157,229,110,111,128,116,18,76,196,149,221,228,165,178,121,48,60,225,138,56,252,212,173,246,17,250,190,23,70,96,91,187,106,13,141,32,226,44,57,105,70,19,203,222,210,122,169,221,109,159,237,22,97,36,255,125,10,38,129,183,224,123,122,159,156,199,124,157,161,84,36,158,149,182,102,179,164,157,
202,231,31,64,18,21,195,244,81,45,29,36,32,177,146,149,67,71,242,47,7,15,229,34,33,192,214,130,145,101,57,154,111,6,41,176,96,112,88,92,247,152,70,217,228,138,139,116,203,39,136,17,231,56,86,60,175,109,24,231,181,30,146,172,161,200,241,168,65,244,222,144,165,19,250,80,153,233,254,152,162,134,192,213,196,253,91,143,245,53,102,93,88,16,248,214,146,5,186,206,248,53,3,34,83,196,243,23,6,11,49,33,237,193,192,206,247,110,201,125,155,252,23,147,72,36,218,122,134,160,126,237,215,93,96,208,175,177,63,225,185,50,171,105,233,201,106,218,199,25,164,73,110,129,222,44,181,213,30,139,171,66,193,25,224,13,252,105,206,111,56,93,221,88,92,49,197,129,209,24,10,89,105,66,8,250,181,166,12,50,136,134,180,51,51,222,40,29,58,81,200,84,13,222,131,39,62,189,82,38,132,239,207,84,131,129,191,60,52,152,196,199,31,138,246,141,236,209,211,111,184,3,90,29,143,62,177,231,102,136,184,194,215,67,244,95,99,204,147,151,137,234,133,39,51,21,
231,4,207,78,209,122,116,137,191,103,188,34,4,233,64,180,168,172,28,110,157,41,171,39,46,96,79,249,39,136,164,36,36,111,14,123,197,141,218,51,93,119,56,98,111,25,104,118,101,198,254,157,104,184,181,243,152,50,0,159,44,1,12,143,115,174,160,201,101,254,81,178,21,95,202,197,12,215,41,2,58,72,182,225,199,77,203,15,188,218,150,250,186,96,246,56,164,32,126,251,139,231,168,91,166,189,254,198,213,120,191,184,149,84,88,183,250,153,33,163,56,83,215,254,26,65,64,162,86,134,6,81,202,62,186,99,146,218,242,136,23,15,53,230,71,65,26,190,243,61,35,85,11,59,210,180,22,176,45,200,225,196,159,43,118,22,63,67,203,207,187,61,141,167,127,206,247,227,96,118,154,236,113,32,104,117,178,138,184,0,40,138,179,101,238,172,121,1,50,30,22,179,78,171,153,17,5,120,145,0,114,42,95,165,209,207,221,111,104,182,154,66,75,88,85,146,215,153,10,201,234,63,49,75,249,117,24,60,154,233,84,144,4,49,62,159,127,2,178,125,17,4,158,127,98,229,
88,111,224,167,25,236,244,59,0,68,68,8,21,25,181,153,81,61,145,77,157,254,133,198,67,70,112,57,168,4,9,51,113,158,48,1,225,69,133,18,163,36,214,156,1,67,228,41,37,139,2,225,97,225,57,87,191,227,91,65,18,81,247,42,16,4,123,253,80,143,51,170,113,72,153,12,86,183,140,7,11,211,153,251,234,178,249,239,239,243,16,240,165,145,121,93,142,163,255,190,224,147,161,200,185,63,124,33,25,35,173,8,93,137,34,223,253,15,248,133,196,5,62,159,121,221,113,145,39,182,231,116,0,203,242,73,248,171,206,54,254,171,36,116,12,1,125,122,27,216,176,84,150,245,46,7,13,100,39,0,135,62,202,80,69,187,242,184,94,43,122,153,131,14,192,95,75,27,47,108,41,27,18,210,174,189,247,16,78,8,3,215,187,202,56,192,78,1,78,16,146,250,125,140,22,189,144,66,249,155,71,243,142,225,168,184,225,83,233,59,86,195,165,39,122,207,78,24,173,237,163,233,253,212,25,132,131,197,179,68,148,49,28,138,133,143,145,140,41,205,149,156,78,62,4,239,
120,211,247,36,167,165,164,16,148,18,150,88,43,184,19,45,251,105,76,128,237,68,206,33,223,222,43,41,76,116,9,136,128,14,206,232,54,95,78,92,167,101,203,252,122,125,140,50,63,159,139,26,246,184,69,178,149,80,57,88,25,204,117,1,172,236,7,73,238,222,230,170,58,108,246,110,132,5,119,116,36,163,212,126,88,118,192,87,96,82,9,94,212,42,98,75,102,151,11,8,198,140,157,53,119,22,230,246,219,87,190,163,88,129,157,3,15,179,10,99,231,31,125,220,215,69,212,71,252,129,181,26,86,100,178,154,86,84,125,58,246,216,193,193,194,102,198,59,102,86,200,241,234,194,131,16,137,36,199,231,96,121,3,104,204,202,102,63,106,9,44,121,182,243,185,157,118,30,97,118,66,177,78,133,23,145,200,141,251,236,230,137,81,147,127,105,2,116,117,214,8,159,254,57,251,173,191,142,135,213,108,252,92,164,4,4,132,72,132,146,34,37,144,177,36,205,113,162,217,154,7,231,36,241,161,59,39,51,21,135,31,183,123,146,168,81,168,17,10,64,72,18,12,2,80,25,
175,194,49,201,68,229,244,140,90,130,69,165,243,192,122,254,153,79,245,223,175,113,241,81,105,20,154,167,199,128,40,136,8,162,25,132,128,164,69,181,180,221,15,22,173,146,147,41,80,54,44,130,204,224,62,76,26,20,122,83,56,149,161,78,46,24,23,6,103,23,21,143,14,0,5,229,57,235,166,101,13,7,178,162,69,77,152,217,87,67,29,39,189,58,232,250,220,37,159,182,193,235,194,231,160,62,177,66,36,13,241,6,237,203,83,41,135,178,226,1,165,123,75,154,68,146,242,11,93,124,101,149,220,54,240,229,28,185,31,248,160,176,3,127,8,106,189,247,238,254,168,42,20,172,149,33,186,93,253,135,254,255,217,32,28,64,26,41,208,65,61,179,54,222,88,36,80,82,129,113,186,19,56,95,17,49,195,126,172,65,125,31,4,153,62,64,47,52,23,145,223,189,175,74,29,7,64,197,88,106,11,204,3,177,180,125,172,38,33,248,183,153,121,63,112,180,102,136,140,192,122,125,251,48,222,253,103,249,215,112,30,29,250,109,155,44,167,1,86,112,183,164,142,197,245,155,
114,60,77,62,227,193,41,120,145,89,172,172,244,223,104,100,250,21,179,211,210,197,96,251,174,220,250,137,188,181,67,128,113,67,4,86,51,204,209,90,77,36,250,37,14,177,27,120,87,84,1,174,144,17,154,56,52,137,35,154,203,233,136,254,91,19,249,144,132,62,192,104,186,221,30,151,35,172,191,224,16,122,198,35,58,95,72,70,107,233,151,73,206,242,47,32,249,236,62,73,182,255,124,206,2,247,139,242,91,249,251,68,10,221,9,159,24,134,184,103,107,62,133,219,54,181,11,250,155,195,149,88,11,244,203,90,234,201,6,7,75,113,143,90,199,179,184,7,207,8,81,148,104,89,224,61,150,229,255,209,112,86,61,206,43,91,183,254,235,14,51,51,51,115,135,153,57,233,48,51,116,152,153,115,222,181,63,29,201,242,149,47,170,52,97,60,67,53,203,114,58,165,7,20,52,6,134,71,202,109,10,29,170,164,192,221,164,158,140,216,126,5,132,108,208,73,61,168,149,246,247,176,203,232,209,199,177,160,252,219,175,159,196,58,167,48,207,232,137,200,122,118,215,247,203,81,
88,112,40,48,167,172,131,141,140,158,222,207,51,18,208,3,196,96,34,5,103,249,170,221,68,60,9,3,1,79,181,32,168,108,21,193,143,30,21,178,160,173,109,53,99,141,138,116,188,157,239,236,11,126,168,52,207,233,70,192,215,243,125,155,46,73,34,133,36,208,82,112,81,129,140,2,120,182,138,217,202,131,202,233,236,67,150,128,148,90,56,54,5,123,43,45,231,146,46,184,45,68,40,178,64,172,46,164,74,140,9,36,132,239,192,146,168,1,4,222,65,90,165,236,122,148,123,46,42,32,159,122,70,171,193,114,184,221,78,159,174,186,76,96,169,125,108,204,113,21,81,100,176,154,58,116,26,132,230,184,243,123,16,30,83,18,175,89,84,190,35,64,121,246,127,198,98,156,6,247,149,48,108,133,45,121,29,151,143,69,105,27,11,16,4,206,247,124,238,147,212,210,132,229,211,80,29,124,115,242,26,195,197,138,229,33,103,176,222,42,28,56,105,59,220,13,20,2,25,11,28,48,180,68,154,178,86,145,0,6,168,96,72,47,62,128,50,10,244,185,193,253,168,169,37,209,
48,78,95,104,24,241,25,253,34,24,129,187,245,228,6,255,187,240,122,7,113,168,224,15,157,183,75,12,245,75,1,64,133,62,117,204,156,243,146,142,127,237,56,220,104,217,190,81,184,105,138,145,179,146,226,74,19,150,144,103,123,190,196,124,144,142,86,26,252,156,50,52,2,59,236,219,54,151,129,181,220,139,130,148,27,186,155,11,13,112,7,103,38,14,218,93,223,242,26,165,183,8,215,220,223,242,119,21,135,19,46,47,9,204,8,18,87,108,20,21,68,124,186,179,112,190,152,45,60,115,242,247,62,181,165,63,127,215,30,133,163,253,83,50,234,53,252,187,53,206,111,236,112,176,223,240,26,115,221,144,251,36,225,55,37,165,110,57,224,52,207,189,222,43,103,51,55,124,24,162,35,219,46,150,24,2,134,102,203,110,172,99,100,238,129,29,193,252,77,115,16,97,129,200,146,154,68,34,63,167,42,52,245,240,97,196,36,29,0,181,239,131,120,161,15,85,122,46,96,38,120,211,65,68,206,45,184,195,210,116,121,221,62,113,243,143,201,253,227,163,57,18,227,151,79,24,
29,219,70,243,0,36,148,2,49,197,124,238,140,128,39,80,99,112,179,175,31,28,111,36,114,168,0,10,236,192,205,179,173,24,230,148,127,98,214,144,140,150,138,228,135,133,107,239,154,235,40,3,94,255,21,56,131,241,174,211,9,245,4,241,20,145,190,38,112,160,227,201,100,111,38,164,254,187,96,36,169,220,114,120,241,84,251,193,142,60,20,35,217,170,104,75,1,10,145,195,184,22,227,14,233,134,237,187,210,124,22,74,130,27,152,121,214,137,141,233,74,254,34,150,2,130,134,153,187,39,8,113,43,109,78,43,226,241,104,10,7,3,109,69,60,53,24,101,210,253,83,253,228,9,53,77,216,142,151,60,135,189,215,237,48,156,39,212,3,49,201,113,96,187,17,229,229,103,135,45,102,64,95,159,173,244,172,154,248,96,13,86,44,228,51,51,150,253,78,27,248,211,22,201,250,196,246,164,229,95,252,236,125,51,74,221,53,104,73,112,222,109,131,41,12,190,65,15,230,37,89,237,11,97,97,84,97,206,153,2,224,96,14,165,183,99,159,116,89,189,252,251,67,51,12,66,
56,97,122,170,75,44,64,32,31,154,175,211,245,62,8,144,46,128,20,237,102,38,158,131,165,216,74,15,175,116,246,120,180,195,140,89,249,162,248,162,238,58,172,86,47,61,22,33,58,27,127,150,157,240,215,79,128,145,149,225,23,20,102,50,254,52,29,102,194,16,83,240,68,52,78,132,11,9,68,31,218,66,165,5,74,38,45,237,3,217,232,42,104,255,147,55,79,210,32,102,105,81,226,89,242,20,124,94,196,215,87,218,49,31,235,190,250,236,140,13,39,203,232,237,62,235,237,21,85,12,57,89,72,30,37,186,239,245,182,101,232,39,40,71,167,195,63,66,91,67,86,179,117,39,16,80,33,20,68,128,162,193,231,191,22,38,136,219,113,195,249,14,202,153,239,78,153,66,16,160,34,127,67,76,123,64,11,22,110,92,32,17,118,23,233,161,126,186,110,102,16,195,248,103,61,169,33,58,142,234,58,221,116,38,171,159,185,21,131,80,52,200,111,96,37,152,48,106,246,213,33,44,41,204,66,203,247,190,53,179,3,198,253,22,152,109,9,216,105,200,9,97,253,75,62,164,
140,49,80,132,244,237,165,213,81,71,245,47,154,147,250,14,43,138,41,103,84,84,232,21,211,113,29,111,0,254,238,16,241,228,4,2,132,106,107,11,66,144,43,57,27,147,37,161,97,193,166,122,81,109,243,64,28,2,158,88,110,167,78,213,64,232,76,44,77,238,4,66,41,69,92,128,48,19,133,66,60,198,130,141,93,179,16,29,172,120,159,160,151,67,170,218,90,195,244,115,142,4,241,80,174,249,251,30,100,101,172,145,132,19,14,117,112,2,214,149,168,32,250,163,120,129,40,128,200,69,122,223,17,244,76,23,113,108,175,64,107,250,157,1,200,40,221,169,37,66,90,1,168,53,214,124,189,21,223,17,206,38,245,75,107,45,102,69,29,253,121,172,199,8,195,231,30,247,255,207,201,189,191,67,182,103,143,235,100,161,186,14,147,122,146,191,158,156,82,235,72,94,102,215,247,148,245,61,113,145,44,160,64,187,226,51,25,254,52,25,79,127,98,196,220,47,193,250,28,33,39,69,192,91,42,254,29,108,147,244,125,25,88,161,147,124,238,118,121,61,134,93,74,16,138,100,
214,135,249,54,151,149,119,169,120,137,12,60,52,9,202,44,31,132,1,94,6,58,55,134,154,16,95,78,76,207,200,228,18,231,74,202,192,247,78,241,118,82,104,93,213,229,111,91,102,42,4,43,125,75,241,34,19,237,212,76,64,99,29,85,74,8,240,216,41,48,64,108,66,110,125,161,208,172,100,46,147,127,110,132,14,23,15,237,12,5,150,253,185,227,182,118,93,6,138,67,8,124,77,204,228,27,228,69,147,249,48,139,78,65,66,13,130,246,107,197,160,25,255,140,51,199,141,221,191,173,144,213,227,186,231,19,238,185,205,211,172,132,154,26,14,199,231,144,34,81,58,50,198,51,67,219,68,138,86,193,55,172,103,249,11,254,128,151,132,208,140,218,9,236,168,125,182,125,255,254,22,90,121,17,239,133,15,192,158,138,206,136,128,113,70,43,167,137,16,207,196,58,184,93,243,218,249,7,10,14,169,40,155,179,37,20,114,131,128,61,194,39,156,166,225,176,19,74,4,67,151,194,69,86,112,155,19,49,187,58,182,78,111,167,103,101,23,172,28,18,209,147,79,233,16,224,
239,123,53,65,217,94,162,42,227,210,57,13,162,186,146,120,210,20,170,12,151,145,22,227,98,70,148,151,85,138,12,121,170,174,193,73,130,199,67,204,251,75,186,158,16,239,129,191,213,91,30,220,235,170,130,199,58,228,153,225,140,131,174,163,150,22,63,144,7,137,165,196,68,153,40,9,179,78,150,67,154,147,242,8,177,138,216,102,130,84,29,110,167,203,241,248,235,215,144,190,234,190,227,105,245,26,201,132,61,113,230,187,95,121,70,212,248,148,49,227,88,4,158,2,191,81,18,162,136,26,56,158,159,239,176,77,33,251,176,116,203,50,241,36,206,42,46,124,214,15,140,134,201,24,43,62,226,252,122,127,118,122,198,85,231,164,179,40,51,183,238,150,198,108,225,105,184,63,249,37,205,73,68,56,254,210,116,22,22,24,50,100,11,64,249,167,58,199,155,99,252,116,148,147,56,88,195,108,235,233,231,213,18,100,6,95,128,81,55,33,150,98,246,159,242,29,167,44,224,128,142,189,125,133,108,201,57,242,229,210,84,224,49,5,41,75,71,212,126,198,231,132,187,83,152,57,
34,143,97,233,147,193,94,154,132,198,51,107,42,239,229,253,30,20,206,237,72,205,164,170,203,208,162,30,90,222,9,190,47,229,204,36,213,17,54,156,57,52,13,225,153,117,17,210,65,125,47,250,172,236,116,242,52,140,150,161,217,172,190,90,249,112,27,171,145,255,181,232,45,111,237,5,159,59,75,235,238,20,190,54,30,73,41,59,105,190,1,177,246,241,24,228,198,22,226,155,74,16,136,21,28,136,195,55,240,88,152,19,183,69,34,27,180,233,75,4,221,17,210,203,196,79,163,245,113,62,120,139,40,206,112,0,238,17,143,90,60,200,153,108,116,125,224,237,61,212,58,178,211,71,90,10,118,160,75,116,233,61,27,53,143,155,205,234,254,109,113,46,48,204,78,142,44,136,10,243,172,164,16,36,8,251,83,144,107,184,40,223,248,250,108,155,148,6,16,7,133,195,5,2,216,65,192,82,91,98,111,58,23,62,52,7,175,207,59,152,174,169,40,171,101,135,189,51,129,222,5,74,160,49,8,122,18,62,162,1,133,147,136,145,166,76,80,62,16,82,18,89,150,3,72,17,
36,153,230,8,207,123,60,142,216,184,103,220,74,241,106,24,253,99,72,18,0,62,80,206,46,216,129,186,179,210,112,166,225,209,201,57,44,27,83,153,49,103,89,34,1,136,175,94,232,112,53,248,58,2,106,110,89,233,91,117,226,139,95,175,182,163,253,218,251,139,231,144,216,94,215,116,22,50,21,226,38,126,132,164,251,80,253,125,243,49,255,66,20,144,70,37,184,237,125,104,250,139,205,122,201,19,177,249,133,241,31,216,206,188,21,231,251,111,252,184,255,171,21,216,252,135,85,80,96,170,129,220,19,27,185,12,28,26,167,237,97,216,1,179,25,199,28,136,176,12,249,59,216,186,251,103,56,140,86,102,190,82,118,71,78,191,179,254,202,86,55,14,206,24,59,194,176,114,42,204,181,130,15,205,254,152,109,169,212,136,210,50,130,102,241,131,222,116,191,209,241,19,57,75,142,160,155,179,241,229,49,62,34,5,16,166,96,70,72,179,193,219,12,102,78,126,45,178,49,96,60,135,217,111,58,241,81,14,51,97,73,177,64,236,121,150,90,42,193,47,80,157,49,88,148,72,
214,133,60,137,141,19,85,157,108,212,58,95,183,154,253,190,174,207,123,127,25,190,253,111,136,100,175,135,194,132,10,253,115,112,183,138,152,212,149,123,51,4,113,254,185,255,251,244,59,201,87,145,193,74,189,229,83,249,252,132,250,207,113,64,95,168,234,211,88,125,130,150,176,168,46,141,28,188,128,188,72,120,203,112,63,245,172,246,167,89,252,107,128,209,27,123,148,254,74,196,135,226,195,163,16,29,162,213,142,22,206,77,148,48,111,25,227,17,178,129,106,41,9,131,83,14,245,108,84,55,168,108,168,105,205,186,45,38,120,26,119,19,69,40,189,122,143,209,236,169,129,243,249,106,52,41,175,46,159,153,137,146,183,189,124,127,120,2,6,72,66,34,59,129,133,254,120,73,150,82,164,50,221,195,98,226,238,202,133,4,100,164,244,19,78,214,103,178,17,246,185,248,113,15,34,192,5,9,2,135,12,244,178,74,122,232,75,18,200,167,76,28,128,117,189,249,247,80,14,47,104,200,16,84,68,233,209,137,202,224,31,119,144,36,172,176,76,136,129,52,144,139,241,176,26,8,
104,63,22,114,246,123,196,251,67,40,193,164,64,208,77,20,174,38,164,212,194,214,0,252,35,144,56,107,89,131,127,161,26,20,72,209,254,93,64,160,54,241,192,138,139,242,122,24,10,196,221,226,48,190,176,86,49,172,56,140,8,203,206,104,250,171,247,104,190,69,146,109,18,221,62,15,235,158,107,26,59,98,76,85,31,2,254,217,158,166,223,99,73,179,226,253,149,24,62,69,78,147,36,189,70,156,224,6,234,255,30,254,135,45,239,49,195,220,129,107,191,35,38,217,2,115,210,125,43,169,157,239,211,229,226,131,245,79,94,119,93,10,2,212,3,156,206,175,141,112,125,223,182,207,162,59,204,120,57,211,138,252,137,110,101,162,53,36,213,43,216,195,194,11,178,61,130,234,239,121,154,7,26,191,183,150,40,167,204,96,7,150,63,166,80,194,201,227,223,102,63,38,11,147,157,132,241,158,35,27,177,212,151,44,199,150,160,186,134,26,111,197,252,141,224,243,136,135,191,31,191,183,227,199,112,31,79,169,242,147,208,137,40,204,50,58,35,1,99,240,126,148,85,107,100,185,
6,15,132,8,244,23,109,67,130,181,234,43,98,226,239,142,208,135,199,180,191,19,227,23,91,193,207,124,90,118,6,255,247,147,102,10,190,70,38,48,64,118,38,202,185,255,195,193,165,195,16,144,251,186,4,127,153,130,119,130,115,179,1,173,62,71,197,140,189,110,2,33,254,222,40,173,223,248,216,148,64,229,55,72,150,186,72,238,248,65,47,144,24,180,250,8,194,218,110,48,181,88,244,225,15,25,235,44,236,110,109,98,176,181,150,13,241,229,83,162,8,93,62,84,92,118,144,144,218,143,155,182,166,147,213,183,181,72,224,36,26,172,181,43,62,46,127,79,193,34,102,250,207,10,10,134,121,102,255,129,189,150,133,129,220,92,147,196,141,207,13,137,136,0,12,34,66,112,228,27,162,81,241,173,48,191,185,148,25,180,80,16,24,193,100,235,32,69,25,73,69,29,158,89,88,254,15,10,10,220,250,76,209,124,78,57,131,80,84,49,18,217,148,228,174,67,181,180,226,94,184,195,10,9,29,70,125,6,100,12,118,14,110,38,193,3,129,229,85,18,184,197,181,150,120,6,
8,212,37,192,168,63,52,4,16,66,202,78,172,4,59,92,32,32,251,225,240,143,37,220,59,120,92,213,47,75,223,232,252,122,200,203,55,114,12,59,3,13,113,236,68,29,189,227,157,191,186,184,69,34,21,239,92,234,50,24,133,18,102,88,19,16,166,225,146,68,190,114,213,228,247,253,95,139,185,188,191,81,69,102,187,215,71,29,237,166,127,236,114,190,4,146,39,113,11,139,40,180,228,97,175,86,127,188,104,26,203,184,161,39,187,9,25,217,202,240,50,16,247,108,150,53,121,217,203,102,186,129,188,138,226,25,158,127,252,92,143,192,53,96,70,165,35,64,68,66,181,13,241,170,26,103,26,169,255,124,1,129,240,132,62,70,116,99,122,118,18,86,164,93,61,25,165,127,184,93,174,15,152,102,73,190,59,222,97,215,215,160,6,148,197,148,212,1,98,171,178,149,134,49,128,164,96,95,210,83,179,168,145,216,88,229,164,253,175,63,215,62,239,251,234,152,176,64,1,183,251,248,101,155,220,166,95,211,95,104,252,186,14,123,223,239,21,59,181,172,14,107,18,241,202,41,
191,53,218,219,77,144,224,56,96,236,200,218,16,214,143,180,23,226,229,176,101,183,111,224,96,228,26,126,42,114,91,213,186,232,238,77,161,211,18,117,222,27,65,51,211,91,185,165,78,111,182,163,125,242,114,29,244,79,97,111,130,103,183,159,18,246,23,174,37,189,88,106,248,87,109,52,108,113,21,65,90,132,217,114,25,147,38,128,200,212,128,3,117,29,30,191,34,74,51,72,227,15,228,169,88,211,205,189,17,210,9,35,9,31,144,119,18,186,149,79,50,80,109,80,172,88,219,40,244,118,0,182,56,57,98,203,252,60,107,57,116,81,196,180,208,17,73,188,177,82,239,251,231,64,74,168,224,247,116,136,206,19,39,230,112,238,232,241,143,218,120,214,172,94,222,54,7,188,40,216,139,28,244,231,70,71,215,185,13,98,152,87,54,152,167,67,23,132,135,63,141,178,118,210,15,48,149,104,169,252,159,253,78,246,35,150,250,188,253,23,4,97,160,148,61,41,41,240,58,7,220,102,175,229,241,122,36,46,157,23,28,163,10,102,93,247,245,118,137,139,136,56,196,150,236,117,
165,186,137,166,47,117,135,189,72,36,158,27,77,156,91,215,57,43,247,11,66,126,13,115,134,209,149,98,26,43,57,105,210,156,232,63,47,19,170,192,77,30,228,188,219,110,147,220,37,105,88,193,235,109,147,136,14,138,199,38,71,167,201,57,234,7,146,164,249,147,5,82,156,159,43,91,192,102,77,119,142,119,166,232,138,146,87,231,135,151,149,25,175,144,218,28,83,54,140,169,121,84,122,73,61,22,55,247,87,191,203,245,93,228,54,235,5,72,239,73,213,69,229,116,84,218,220,160,229,150,223,98,96,20,131,115,80,255,128,131,108,15,176,68,18,237,163,18,145,255,254,158,226,191,4,194,22,230,28,98,195,29,246,195,17,182,234,65,37,252,190,94,53,127,61,175,199,205,77,209,15,206,9,116,43,187,153,144,175,190,3,81,190,233,216,137,196,127,222,168,197,4,153,10,125,93,249,242,40,187,32,161,228,195,166,237,94,93,183,144,3,38,148,238,15,87,165,22,136,180,26,37,206,56,16,96,148,144,72,14,178,217,122,214,241,1,228,135,185,215,59,40,74,255,1,140,
20,35,144,149,78,142,82,80,193,242,210,1,253,242,92,219,198,65,32,221,11,38,136,49,110,162,158,41,218,204,141,63,123,4,246,214,59,92,195,20,254,15,194,130,42,88,123,71,236,221,95,202,185,242,82,8,203,74,242,248,181,229,2,187,192,117,85,213,99,130,170,166,162,136,152,127,233,82,212,236,216,183,89,208,149,136,184,88,17,9,94,76,8,111,70,167,47,146,143,173,199,36,122,10,137,233,167,28,162,239,6,128,247,9,90,156,253,240,78,14,94,213,51,116,243,198,235,42,58,19,171,162,96,97,9,149,16,210,57,110,196,194,9,22,86,235,84,87,250,33,104,103,92,201,68,176,57,25,109,79,159,17,112,5,140,173,143,35,123,148,58,225,165,223,218,249,76,61,192,53,238,129,219,79,253,150,97,226,247,65,32,155,133,128,185,67,211,132,225,30,48,139,196,197,193,184,158,17,251,239,180,0,75,109,26,179,113,27,142,156,251,180,198,20,126,79,238,62,216,189,253,91,37,199,67,193,140,44,236,58,169,106,251,60,166,81,163,95,34,53,96,119,121,69,209,179,
191,8,191,20,149,182,180,1,79,14,73,64,248,234,18,115,46,30,123,65,192,6,35,43,146,125,32,1,45,131,242,127,212,184,205,45,140,148,124,25,66,201,148,105,202,215,148,152,238,144,28,15,105,127,65,112,97,189,191,140,116,200,157,73,67,75,161,214,140,140,199,246,76,74,72,245,165,190,81,60,174,182,193,147,220,111,250,132,142,147,93,138,201,83,195,62,58,202,98,216,138,231,28,54,63,204,198,204,20,14,136,16,159,178,5,245,213,96,87,153,18,60,40,174,80,104,27,255,119,180,16,77,235,146,64,168,180,219,52,153,66,135,242,195,163,108,225,20,171,31,141,44,151,171,193,186,191,189,155,221,11,196,46,23,132,89,147,228,135,77,215,65,186,255,19,50,165,53,43,185,97,80,250,208,200,154,143,161,253,1,4,212,51,84,219,107,153,75,46,166,96,72,10,16,106,141,18,48,33,205,194,52,2,2,31,139,148,10,68,116,120,118,133,64,216,156,120,178,204,33,224,232,31,208,169,77,33,56,29,161,141,185,46,88,91,176,3,48,144,15,7,250,181,4,42,175,
234,7,41,204,148,182,132,150,5,148,32,85,5,171,101,9,97,5,99,23,224,73,201,146,98,123,248,163,30,209,59,111,37,65,128,98,198,194,211,170,136,104,166,236,34,2,79,87,216,90,94,30,121,72,183,39,30,11,144,106,4,156,12,26,39,24,144,147,139,103,83,0,80,12,156,210,228,129,218,22,14,170,165,163,246,230,104,185,99,46,196,24,193,220,210,134,96,48,100,121,130,57,159,174,177,22,223,123,200,102,64,17,248,54,238,144,240,97,14,188,214,49,124,111,62,88,46,62,140,131,144,41,170,234,254,114,31,171,242,254,223,168,69,233,241,89,198,137,162,36,137,167,240,92,86,240,56,88,22,188,131,123,105,89,99,102,120,167,248,190,224,170,46,165,104,193,116,179,209,24,140,26,249,159,227,58,174,218,115,168,212,42,127,53,172,172,195,125,229,98,97,118,49,119,34,22,222,230,228,225,203,63,70,1,243,124,141,175,130,10,248,60,22,24,150,65,110,43,206,63,129,249,60,92,149,139,80,116,119,73,251,15,115,250,175,112,153,61,61,134,206,201,98,51,30,176,
59,3,128,244,174,254,19,218,221,70,17,98,124,171,179,198,245,225,230,100,149,31,90,225,187,136,105,192,12,112,218,169,46,205,225,71,60,23,88,183,233,229,228,100,150,255,98,254,211,186,187,138,144,130,45,154,63,43,46,205,197,33,6,150,214,195,100,35,24,81,17,17,25,202,219,254,87,153,47,172,71,154,248,85,149,89,64,173,118,88,114,141,115,242,64,21,254,178,17,169,49,49,193,127,12,241,119,248,252,45,248,121,156,235,11,65,46,235,83,6,164,192,9,4,166,83,181,236,202,20,37,0,253,194,167,50,18,225,10,183,195,208,165,114,150,207,130,130,98,78,155,110,77,208,20,231,88,235,49,243,129,88,200,35,10,177,204,43,77,206,179,105,122,163,30,26,238,73,50,13,28,31,250,164,120,161,144,154,229,208,124,95,203,21,44,136,133,236,88,91,200,46,57,68,84,25,177,251,17,215,12,68,17,81,52,22,112,17,214,84,215,210,127,163,62,168,12,74,50,199,39,89,249,41,68,52,116,109,126,155,102,92,196,60,180,91,132,200,63,181,138,220,110,43,241,119,
114,119,134,124,4,102,167,238,239,241,242,48,72,84,158,105,245,156,57,1,49,20,9,13,218,130,177,190,227,22,103,203,83,147,71,191,85,18,120,0,201,96,25,67,163,173,244,133,255,97,224,44,58,125,134,207,227,82,127,53,87,89,19,2,68,230,111,59,104,255,17,222,255,177,203,111,232,10,128,197,165,103,237,222,131,228,76,162,105,13,119,173,253,255,243,232,230,47,185,206,114,183,3,199,8,71,81,212,93,140,79,40,228,186,122,169,29,11,236,228,32,214,195,224,162,204,177,29,224,147,145,132,1,222,253,11,113,44,241,70,39,183,91,239,29,111,29,72,213,204,11,169,138,179,4,144,235,253,217,229,185,225,7,100,241,243,108,236,167,78,42,171,177,42,63,11,90,89,63,135,157,141,201,33,21,74,197,244,231,39,209,176,152,129,205,36,48,139,129,129,115,116,62,93,127,105,98,101,105,103,19,115,150,147,64,255,212,242,142,92,76,250,58,93,31,139,225,250,173,122,117,110,106,228,208,52,53,19,121,252,107,188,8,91,14,179,222,169,234,253,98,245,213,8,36,157,
210,242,144,62,84,226,26,59,67,99,89,251,132,154,135,6,159,120,152,217,46,52,63,49,54,42,24,92,122,68,98,144,83,140,146,46,212,207,156,1,227,40,122,208,105,204,242,220,250,225,221,136,8,165,23,132,8,187,12,93,175,115,64,27,27,134,84,2,4,0,94,221,243,22,0,58,134,146,36,15,35,23,4,205,141,208,43,168,23,165,52,80,78,212,41,217,87,79,176,78,129,86,135,142,174,218,33,19,93,43,0,6,215,102,125,144,16,11,16,19,40,69,62,49,78,252,224,50,90,180,81,68,79,148,139,0,106,183,69,209,50,187,46,12,64,50,45,44,119,73,212,139,74,121,167,250,102,112,105,174,244,154,206,98,96,106,100,109,132,210,130,117,126,62,70,159,193,240,164,244,179,146,81,201,189,48,227,230,33,226,236,131,205,235,106,42,100,199,60,56,145,123,240,205,37,72,232,185,144,103,66,74,164,87,231,186,125,110,247,87,87,77,159,21,169,112,78,35,156,209,146,154,245,42,147,89,83,255,113,151,215,84,250,67,248,181,238,159,24,88,43,143,225,23,93,153,
59,36,233,8,0,205,141,211,213,29,81,118,102,156,248,220,242,61,39,56,181,75,111,197,209,171,198,197,125,77,100,90,240,254,154,165,218,254,146,91,193,234,225,9,236,231,199,140,144,136,109,234,46,125,212,150,2,207,44,126,96,28,143,254,20,18,100,31,89,137,79,83,202,0,10,42,255,118,106,58,83,170,57,29,100,224,239,7,32,205,23,175,146,170,56,31,163,122,197,71,59,37,190,188,1,136,168,87,105,68,28,132,217,72,145,41,197,7,145,70,159,32,231,153,89,78,167,79,49,21,87,233,16,185,151,208,103,111,167,119,182,247,152,25,222,18,232,243,166,4,47,138,190,6,148,91,243,2,169,176,134,103,58,161,190,17,249,111,254,132,79,229,140,61,66,252,70,208,20,238,132,212,82,38,46,1,81,73,208,72,9,131,191,90,60,60,190,1,164,14,252,26,24,107,128,104,20,3,37,251,23,71,92,255,93,174,81,63,24,137,243,142,41,72,36,19,128,246,168,243,51,19,133,254,233,211,169,66,8,73,177,7,11,61,55,128,216,181,155,171,220,93,68,210,61,133,
70,12,244,93,242,65,228,216,115,83,65,10,19,102,44,204,216,188,5,4,132,72,161,229,1,75,105,106,112,97,146,36,148,88,138,44,85,85,30,165,254,164,240,18,251,156,198,111,243,144,66,107,129,98,91,152,50,80,157,163,246,79,223,108,116,78,114,40,202,202,173,41,236,103,150,31,37,16,176,142,115,220,23,210,24,235,156,244,167,1,250,182,133,99,83,51,96,214,138,42,11,100,102,43,51,65,236,184,147,200,185,30,147,109,148,122,157,235,247,173,253,202,10,251,138,155,30,23,35,77,9,94,173,114,198,175,172,29,122,17,53,240,200,215,32,53,226,68,187,197,17,103,248,145,222,83,200,192,64,165,3,174,120,29,63,236,187,19,194,203,237,125,223,74,33,174,170,228,134,159,145,23,80,63,10,24,93,58,242,210,196,37,152,98,48,0,115,183,98,113,10,153,3,19,204,70,107,6,211,3,253,66,253,80,86,174,102,131,226,67,34,38,24,122,50,95,214,244,99,98,11,186,3,137,88,59,96,181,255,107,99,42,51,112,70,58,232,146,145,90,69,98,164,8,25,179,
185,202,183,51,102,143,206,56,49,128,17,46,204,206,36,17,125,133,33,170,157,150,108,101,173,117,11,92,108,17,2,57,59,48,173,254,126,103,213,251,203,61,188,106,224,209,232,21,55,239,172,152,8,201,35,222,62,86,136,51,186,145,245,75,215,209,70,36,151,166,116,12,213,0,157,223,80,140,43,140,105,185,116,14,128,143,39,144,10,89,151,176,86,135,251,166,124,160,61,155,115,183,162,48,15,192,211,166,73,141,90,65,199,27,66,139,215,252,133,193,104,251,153,99,113,73,37,18,97,22,184,193,87,21,155,5,173,85,13,8,250,239,40,37,96,114,154,153,4,89,230,205,23,148,22,8,57,24,177,67,2,194,25,246,215,78,146,102,87,151,102,68,36,4,131,174,150,85,55,25,243,160,144,138,153,15,36,247,53,160,3,11,164,143,228,75,206,177,144,24,35,136,65,145,188,160,68,86,208,84,92,176,34,77,145,159,53,146,231,3,157,37,132,224,29,132,5,205,25,85,156,6,11,194,150,154,130,168,218,204,88,20,207,9,72,178,144,105,26,38,76,128,165,66,230,69,
105,8,147,207,13,51,96,234,233,41,2,54,151,207,228,48,177,81,10,190,196,72,247,161,64,126,4,143,233,88,22,135,214,193,160,210,140,173,100,70,142,112,26,45,183,195,253,252,174,1,155,112,250,93,194,77,93,108,112,97,58,173,15,118,67,219,236,82,185,56,43,125,254,47,235,170,207,105,213,107,133,178,199,47,157,179,138,254,116,249,143,141,12,48,144,91,250,156,40,108,111,199,135,79,171,181,56,148,181,104,45,155,200,234,22,104,11,38,93,6,196,120,108,126,214,95,173,145,58,205,254,46,34,219,241,173,180,111,13,193,29,79,68,246,115,75,4,145,240,177,213,68,67,110,171,29,183,143,14,100,18,104,72,176,24,135,50,174,111,44,160,17,93,202,38,197,160,44,154,18,241,143,100,229,134,193,194,32,210,95,40,46,205,205,102,38,139,147,63,99,19,174,39,13,133,195,225,141,225,145,211,21,88,249,159,159,110,11,229,132,221,15,111,251,254,179,63,166,83,33,244,133,218,31,236,224,52,243,15,88,189,213,74,220,215,211,231,93,90,14,190,176,27,226,131,19,
46,182,225,89,192,20,2,96,137,4,44,102,199,189,119,12,230,221,101,180,63,223,1,145,133,185,71,151,225,11,216,20,92,134,149,57,108,178,94,3,118,89,32,98,72,78,195,35,194,160,72,175,146,173,184,22,2,96,2,120,91,219,87,92,175,27,140,88,251,155,76,62,138,249,105,85,252,33,225,137,55,136,158,179,19,38,164,100,0,60,128,226,91,182,172,165,52,217,59,120,63,65,191,134,124,0,20,117,35,255,242,236,92,20,170,104,4,82,130,221,241,72,166,167,81,100,85,154,1,97,4,97,189,201,97,233,13,132,238,36,176,85,142,8,166,117,76,234,30,8,26,34,15,157,175,153,123,7,97,210,169,255,19,148,194,3,33,178,179,112,100,121,38,32,113,106,199,157,250,58,9,231,141,26,207,221,56,241,61,149,35,163,246,48,53,17,78,143,206,231,30,92,91,86,164,118,189,53,15,183,243,144,171,199,218,100,180,243,208,230,223,204,239,118,187,238,8,105,233,74,0,209,247,5,60,111,18,56,20,64,191,253,88,164,93,58,203,103,91,219,81,33,255,157,164,79,
135,52,4,1,53,52,190,26,208,222,15,173,125,190,143,222,65,135,233,13,139,76,239,152,49,115,97,126,183,252,167,29,247,129,197,137,27,90,255,232,168,107,194,123,119,176,52,133,203,3,17,65,67,1,110,234,47,195,103,81,255,51,127,188,52,82,136,29,234,103,73,56,103,158,164,46,183,12,140,245,164,23,228,209,214,57,141,241,213,213,144,136,114,249,165,113,228,147,202,43,75,90,38,245,42,207,199,1,8,81,37,147,145,173,145,140,138,134,5,53,25,22,22,185,138,240,134,149,54,142,229,114,40,10,112,206,73,236,193,173,85,107,195,36,180,46,108,208,155,2,140,91,241,82,196,241,191,191,66,154,17,38,232,124,238,150,234,33,197,131,64,143,202,94,226,232,59,184,11,80,191,93,183,127,105,190,99,9,232,61,245,34,119,246,165,39,100,89,217,122,13,250,144,157,215,197,134,133,128,164,189,220,130,193,221,183,234,6,236,114,64,14,198,8,134,119,167,187,213,146,65,2,164,41,159,124,43,113,219,152,28,157,121,69,130,124,230,232,195,205,168,67,103,74,219,220,
124,108,107,207,150,219,114,181,105,75,51,184,62,121,125,136,92,9,45,196,212,124,44,106,230,39,219,140,224,114,174,144,196,29,9,146,35,243,96,3,58,251,80,167,101,249,12,239,236,24,77,131,55,183,8,5,231,50,190,137,82,121,10,160,104,93,18,33,36,40,251,11,242,99,74,88,24,33,3,199,126,35,130,49,128,19,204,6,212,64,129,80,180,252,243,142,193,63,201,169,88,192,240,61,202,6,66,104,90,219,129,152,99,111,197,53,20,63,203,202,4,33,137,129,231,239,170,199,61,48,99,227,29,115,248,187,135,169,6,127,81,167,223,154,229,137,10,166,252,75,154,41,64,11,66,57,31,169,171,72,175,46,21,34,160,13,182,23,147,201,109,120,124,46,199,67,241,166,174,2,41,216,197,129,150,181,74,108,1,176,23,212,186,127,122,88,225,194,3,14,148,161,57,255,174,45,66,214,192,129,172,146,189,159,38,206,215,90,252,222,74,13,78,164,229,95,118,187,123,27,182,221,239,125,254,237,44,155,78,215,34,14,110,165,54,62,27,19,113,234,244,166,167,157,169,228,
208,90,240,0,48,19,10,37,108,133,61,107,47,181,38,141,249,128,171,200,139,94,183,253,21,185,184,64,52,66,181,100,154,125,121,37,140,165,180,107,100,143,233,110,191,120,123,107,188,39,176,199,154,234,225,215,105,34,31,240,215,226,100,241,142,53,222,114,43,227,108,236,131,107,69,7,17,194,107,123,62,214,109,27,138,106,25,154,214,45,235,169,9,42,89,133,12,105,171,200,72,170,176,17,136,200,119,85,199,24,97,8,174,163,66,106,144,12,255,129,40,19,241,252,175,219,96,123,188,126,166,134,37,32,192,95,168,27,178,127,185,188,126,8,30,218,30,49,9,234,44,93,196,65,246,60,224,110,148,171,129,22,51,223,78,159,58,136,221,15,56,149,21,63,63,117,86,60,17,185,205,44,42,146,86,141,27,58,211,218,8,249,1,107,132,153,158,143,70,196,173,187,0,250,139,232,1,252,226,169,117,205,119,64,38,8,132,127,227,209,106,220,186,5,13,169,40,17,228,124,196,238,218,253,60,48,229,35,82,207,118,159,234,155,206,119,33,241,0,183,19,162,193,1,11,148,
31,228,218,103,179,6,219,238,6,227,191,91,59,130,118,151,83,44,126,42,73,111,218,242,47,248,220,148,62,169,6,195,116,52,180,45,196,43,32,200,144,1,129,5,19,248,48,49,143,62,162,196,231,132,27,111,112,6,48,76,101,95,82,211,207,205,44,64,129,30,172,154,16,33,164,42,170,14,18,34,170,67,37,44,192,197,12,205,223,143,254,27,72,98,101,228,185,212,8,14,197,55,121,196,236,77,42,110,184,187,209,232,3,31,214,33,50,93,211,191,214,27,53,209,170,174,60,149,51,90,166,191,4,252,239,140,208,149,230,219,5,16,121,140,246,135,231,17,190,222,206,86,195,135,92,193,199,114,116,84,252,220,150,161,86,39,213,167,23,116,10,124,79,155,203,11,182,237,79,197,223,138,82,90,83,103,167,125,205,145,134,112,250,77,234,163,129,64,172,191,239,57,80,161,255,252,215,177,209,70,189,58,56,106,204,228,175,166,150,33,20,222,105,86,122,149,84,68,232,232,219,237,59,243,109,45,195,159,175,240,212,246,8,47,6,226,134,71,188,24,150,207,251,185,9,202,
159,215,59,57,244,83,6,92,122,219,237,245,143,203,0,48,214,81,125,122,134,198,32,104,88,184,227,132,14,43,8,252,42,81,212,167,29,122,38,216,161,79,247,190,214,95,247,57,41,187,251,172,221,156,133,76,28,212,161,81,203,244,37,168,56,202,11,47,24,138,128,43,241,132,71,135,155,174,48,153,187,18,180,246,255,46,88,107,24,232,57,110,21,88,135,218,232,210,81,180,170,87,116,233,230,217,204,234,97,6,177,144,234,240,45,189,125,126,183,203,153,232,181,218,84,117,101,114,92,211,238,152,35,83,208,161,53,21,138,233,149,240,139,217,254,45,42,149,236,199,181,201,187,52,93,187,32,253,181,42,40,199,229,81,147,13,233,140,41,126,183,110,136,251,222,141,9,50,159,248,198,30,143,98,248,33,207,181,35,79,209,134,69,24,110,109,142,222,8,32,252,211,109,8,103,12,135,10,211,128,25,206,214,186,132,196,100,160,125,162,64,62,213,176,203,179,187,34,190,36,59,133,137,2,32,193,22,54,7,214,35,75,231,80,139,20,138,255,73,38,57,64,84,126,150,150,
39,103,41,251,27,150,188,59,224,123,102,60,238,113,203,252,43,222,64,175,77,236,8,120,124,84,112,196,115,107,83,209,50,162,212,129,66,76,2,19,175,234,0,17,175,201,253,93,137,79,64,206,13,188,119,139,102,150,78,22,159,152,253,2,196,219,192,105,249,12,248,4,157,10,53,181,65,109,30,6,53,118,136,154,7,0,146,208,49,59,132,44,35,46,61,144,89,111,123,145,112,238,85,196,153,147,39,133,183,31,210,97,227,207,158,122,49,51,91,68,218,11,253,217,68,190,240,176,205,249,9,84,141,153,205,246,61,152,245,17,219,215,227,178,94,78,149,195,135,139,148,130,74,84,159,186,150,152,129,194,63,71,212,253,174,226,117,214,186,215,192,85,246,26,136,22,254,50,39,128,33,237,55,89,241,229,244,126,245,192,37,151,237,120,79,243,47,224,211,121,125,221,190,221,95,225,24,104,143,23,197,136,80,103,25,139,125,88,113,147,158,111,44,108,48,96,189,63,106,223,146,207,251,213,86,248,65,53,102,39,9,116,193,138,175,9,139,59,101,232,95,78,185,197,0,231,
23,15,28,1,239,223,197,202,75,210,218,243,30,156,76,154,247,159,223,155,253,126,189,93,223,228,75,222,129,159,214,164,94,225,149,190,61,201,50,168,188,38,130,197,251,24,24,108,26,74,235,84,7,204,181,230,6,99,74,139,72,152,34,48,180,72,137,80,126,168,196,0,50,49,103,223,85,194,52,145,208,71,91,26,236,129,194,57,167,179,10,83,56,92,173,104,150,253,220,28,7,129,80,143,166,89,215,32,111,93,59,145,239,49,73,84,43,217,206,244,165,190,32,97,121,154,149,107,127,154,146,186,76,86,89,214,246,90,185,34,155,111,240,213,211,69,25,5,136,205,183,52,197,181,204,229,126,112,29,154,35,90,151,101,241,36,27,9,29,141,52,95,94,231,55,6,77,215,46,118,96,123,121,33,32,202,204,241,99,49,26,137,102,147,207,87,247,155,135,63,70,155,251,98,244,198,77,118,179,217,107,245,106,172,222,150,202,91,22,56,252,251,220,141,17,163,20,169,215,219,23,174,249,199,191,130,23,197,13,218,71,43,191,8,186,100,193,131,1,1,172,99,12,221,138,79,
16,134,5,133,222,226,129,66,18,137,16,73,176,250,59,225,135,66,217,110,64,251,23,3,180,135,135,72,188,73,12,33,255,236,184,196,188,189,18,135,124,205,203,74,182,179,79,238,231,101,53,111,119,7,121,150,128,35,128,140,25,181,154,104,51,107,217,181,80,29,188,230,53,179,187,19,58,185,6,134,165,241,16,5,101,65,20,80,178,78,83,58,253,247,138,34,33,110,197,185,79,120,239,49,4,98,67,174,129,0,29,6,212,180,210,154,145,171,107,240,172,235,195,32,245,129,161,47,148,125,152,192,36,187,126,89,145,233,70,106,102,131,102,83,21,251,155,151,101,209,75,192,106,182,41,28,111,175,254,238,114,57,244,245,60,58,126,95,147,205,231,117,56,124,51,237,85,59,212,14,125,135,175,69,243,208,13,26,62,247,191,191,181,172,73,156,123,254,213,151,253,57,5,2,116,252,103,113,130,168,141,199,221,107,247,34,127,248,6,250,102,113,77,159,227,69,235,190,229,243,24,168,91,244,223,179,8,147,85,125,219,42,59,231,190,18,121,253,249,27,140,89,137,67,206,207,
190,132,250,101,104,96,7,220,75,104,14,36,105,111,171,62,183,234,188,15,124,161,143,159,59,87,15,119,71,32,251,122,235,253,78,198,237,119,121,253,113,33,78,21,46,57,142,120,134,151,210,13,128,228,52,77,10,74,44,180,182,212,17,46,8,15,59,227,50,216,255,151,79,122,71,13,124,51,130,65,98,89,232,205,63,238,63,119,250,32,82,90,203,202,211,19,74,61,221,171,176,39,68,25,58,87,91,122,160,148,85,81,50,191,214,182,214,22,20,54,91,118,148,137,208,130,101,103,116,65,107,19,160,34,139,138,120,103,91,110,54,89,145,98,71,182,181,174,171,168,135,149,220,109,182,11,211,2,50,44,157,121,230,85,120,2,150,14,40,143,76,26,68,20,223,94,14,255,86,62,202,46,36,217,205,185,213,122,118,249,238,14,120,174,194,121,177,249,75,195,34,70,214,85,28,84,43,94,20,217,141,53,147,209,159,127,93,31,224,19,75,185,63,109,157,159,196,146,166,188,60,3,75,138,132,224,65,241,182,144,161,154,135,231,106,37,204,43,145,180,35,234,89,32,119,198,
8,54,101,224,14,10,48,136,72,160,20,98,226,187,154,66,81,203,244,135,67,218,2,154,253,107,10,220,52,254,50,44,162,104,165,238,242,130,129,203,235,166,215,15,112,91,233,227,119,168,182,215,133,160,152,50,30,207,197,113,144,79,12,76,249,43,147,20,51,245,237,236,16,170,157,10,7,128,237,15,13,63,50,150,250,165,224,78,14,32,86,55,81,196,204,172,104,133,121,134,118,139,218,22,15,120,221,154,74,117,218,209,227,129,83,29,125,7,146,81,234,141,156,146,157,41,11,172,42,12,0,38,170,130,177,23,75,119,55,197,251,193,38,17,54,1,85,182,41,170,64,186,255,104,168,125,226,98,183,122,44,255,159,18,180,123,29,80,218,23,169,175,199,91,205,244,206,9,37,255,62,167,159,175,240,114,126,223,59,14,85,173,67,83,159,103,164,112,56,112,154,14,180,76,230,251,205,168,201,214,94,201,183,113,143,202,104,231,78,14,50,194,44,197,59,132,122,139,190,6,178,62,7,197,159,129,108,93,187,86,87,219,161,109,151,149,126,251,13,76,135,131,227,62,168,223,
223,59,62,143,143,15,221,28,255,206,186,221,212,158,190,226,18,196,120,171,246,139,12,217,85,1,8,164,223,16,130,24,139,206,23,69,120,254,99,174,151,119,191,187,52,157,90,218,10,108,133,12,59,177,145,145,169,4,98,101,255,53,132,172,54,40,1,20,113,6,2,255,136,225,204,2,200,88,152,70,127,196,243,46,28,25,65,238,230,177,244,231,242,217,205,34,167,137,173,161,204,128,195,68,82,115,55,116,87,17,128,214,78,254,9,197,23,39,235,3,86,238,214,116,72,234,117,41,245,186,26,124,130,106,97,94,202,126,27,94,230,234,224,224,238,102,161,177,85,9,31,125,4,222,44,205,253,156,64,200,94,177,206,5,228,4,88,127,109,153,91,46,57,155,95,115,82,89,84,71,10,222,230,220,32,35,59,227,216,34,52,235,231,90,250,25,169,23,193,73,103,53,136,169,124,39,228,119,117,32,54,193,227,171,8,238,66,135,222,179,123,228,53,156,58,10,105,99,228,85,51,38,58,234,64,129,233,1,139,39,90,29,80,205,14,156,66,55,37,77,135,80,13,62,214,182,
97,72,123,13,43,54,110,61,34,147,83,86,16,61,252,146,229,7,187,127,175,62,220,22,71,79,79,29,196,156,101,97,68,171,57,16,239,15,93,117,126,255,153,79,87,46,207,243,229,243,12,124,94,143,139,79,136,115,59,23,14,10,152,1,230,31,34,20,10,69,29,128,221,12,216,192,176,57,101,192,94,37,44,207,177,44,174,106,40,206,104,70,71,80,0,64,165,246,220,183,92,41,213,42,157,107,219,156,103,40,53,173,54,172,130,107,183,26,57,2,22,130,196,41,115,26,144,19,11,124,160,9,156,138,70,182,117,34,196,250,47,36,159,222,47,100,49,237,38,190,87,1,131,186,46,148,110,89,157,2,8,210,159,216,12,235,141,224,101,110,202,7,62,134,197,76,44,206,144,222,247,17,41,128,41,175,63,46,143,119,215,174,55,97,240,106,254,187,75,188,66,195,223,205,247,147,156,223,7,131,194,183,251,187,185,52,155,159,239,229,82,248,116,27,73,125,225,179,248,201,59,116,184,14,8,33,254,236,27,131,186,223,209,232,116,218,251,174,211,225,250,247,20,156,176,110,
76,134,223,133,247,40,191,106,241,179,23,254,77,84,222,247,60,223,230,192,250,141,50,231,237,157,122,54,254,228,217,126,141,4,91,203,233,1,255,243,23,249,251,219,170,193,85,80,112,46,36,156,178,240,225,112,6,71,59,73,224,51,156,52,141,226,137,89,36,41,128,2,4,193,194,19,81,187,62,25,209,47,228,200,145,164,135,13,95,246,79,221,246,232,125,62,250,70,0,160,177,117,91,198,104,236,123,80,63,228,60,132,22,8,119,40,205,143,71,95,131,199,99,237,213,164,9,157,107,29,184,106,108,166,117,100,96,247,200,217,104,39,22,151,252,185,183,170,36,171,34,243,206,34,201,248,173,234,112,148,107,129,237,35,232,123,214,57,136,84,213,44,85,235,98,250,177,98,78,10,90,255,254,101,68,16,36,40,224,45,35,238,254,53,172,88,87,111,171,209,231,181,54,29,83,21,17,157,151,211,92,234,117,164,14,171,106,250,13,245,244,158,50,78,174,129,103,196,247,155,141,126,113,181,198,180,144,48,148,241,160,84,174,184,138,57,127,205,78,241,4,47,106,221,190,165,
227,8,59,224,32,2,67,198,174,5,0,246,22,82,138,60,5,144,160,160,169,51,108,7,144,24,59,150,28,0,250,172,61,45,160,16,74,18,182,128,113,90,32,115,133,221,174,147,107,122,185,132,41,143,47,136,68,128,132,129,240,237,206,109,121,125,142,134,207,97,103,113,89,105,69,105,195,81,132,161,179,0,111,21,61,252,140,152,107,75,0,196,79,187,120,16,228,9,84,70,61,151,204,178,81,249,207,212,83,84,81,114,164,209,19,80,29,248,14,222,43,22,184,153,46,224,69,8,117,91,144,54,194,213,213,49,243,162,156,114,69,1,149,162,107,106,60,165,99,15,8,3,23,180,156,67,152,84,254,125,136,164,17,156,22,37,219,249,25,145,102,156,198,1,18,253,182,249,29,86,251,129,243,99,111,56,156,243,75,135,74,240,224,94,104,216,221,246,79,97,32,163,163,162,225,140,142,197,172,212,77,10,63,58,85,168,253,247,206,154,179,80,123,213,181,48,216,183,191,153,217,183,31,26,39,22,171,219,247,146,122,5,171,143,228,55,248,153,239,247,151,201,183,90,28,22,
35,183,136,224,112,104,126,130,123,62,205,65,180,34,118,101,72,104,234,196,17,193,130,151,167,99,41,147,12,29,48,43,248,156,221,252,116,34,233,43,209,3,200,206,47,20,73,164,189,127,181,66,194,161,18,126,213,64,123,241,167,21,56,205,196,146,151,60,129,88,151,134,167,111,51,24,121,45,50,171,235,235,85,68,239,218,57,132,126,123,184,102,225,68,64,43,89,228,192,1,143,134,177,208,89,129,194,45,166,170,240,245,152,43,4,8,135,149,127,225,32,7,89,254,109,110,109,35,219,2,29,47,28,156,220,150,120,147,239,47,0,164,190,69,27,79,117,171,169,55,251,154,98,244,134,72,250,227,133,130,139,169,177,24,205,215,101,198,210,179,249,54,10,51,166,83,90,243,119,180,30,208,156,84,240,228,1,184,16,95,101,209,7,196,200,189,117,244,4,119,201,164,132,82,82,105,215,81,171,233,14,212,67,29,20,112,55,203,18,226,215,31,43,164,226,57,26,214,237,95,61,196,67,109,176,45,63,56,223,65,14,218,124,40,184,45,104,79,8,96,68,97,78,128,107,185,
2,224,2,105,207,37,221,133,84,6,130,108,76,133,102,105,27,4,28,109,40,212,107,192,177,57,6,76,189,27,141,185,151,142,103,160,161,55,182,83,32,168,220,38,80,248,228,2,215,127,198,154,223,5,213,255,14,199,154,67,217,158,241,58,237,156,65,127,130,19,198,158,13,35,141,80,163,83,96,15,170,61,147,133,176,212,96,110,113,62,67,171,152,165,197,65,15,13,160,32,7,41,67,64,251,36,41,93,77,125,22,31,156,77,113,1,25,145,252,116,187,38,52,46,185,120,186,254,188,94,180,111,194,167,41,107,146,77,5,157,124,96,127,124,109,61,93,76,11,164,105,209,140,85,253,65,92,34,146,127,97,93,2,236,199,154,237,132,70,121,114,90,192,33,65,53,177,16,80,122,60,106,250,125,222,147,197,28,216,31,223,56,237,5,223,196,188,244,29,126,228,106,152,100,20,205,91,195,239,243,240,248,124,28,92,66,14,10,236,236,147,66,50,23,157,44,84,236,125,24,249,92,203,163,28,130,123,116,34,167,150,1,39,59,138,50,20,7,206,145,2,111,165,143,152,18,
101,36,15,67,88,99,50,113,140,125,78,183,174,60,188,170,37,26,113,64,176,242,34,124,66,26,8,126,221,142,245,79,117,60,178,106,248,108,207,255,27,36,218,190,107,191,81,94,126,67,132,129,161,134,62,56,0,136,50,237,10,30,36,89,234,53,113,128,84,187,74,95,204,161,177,215,240,41,85,43,238,164,118,53,164,65,19,27,33,206,176,249,142,165,101,146,20,13,64,31,98,18,143,197,226,223,216,44,62,139,197,106,105,154,13,183,87,221,45,71,4,91,161,0,84,129,158,134,73,80,63,168,250,68,160,44,208,169,246,245,105,156,26,1,191,115,153,130,74,147,208,54,159,54,33,172,101,240,92,236,139,31,243,75,113,255,174,254,229,193,231,29,105,44,169,204,100,31,40,92,254,161,21,192,137,156,84,212,139,57,74,146,109,241,204,198,146,150,15,170,160,106,223,50,24,105,119,86,200,4,69,95,14,77,138,27,191,248,71,125,238,175,199,225,82,240,184,76,43,137,26,132,226,232,14,102,45,13,138,180,149,204,133,146,80,24,161,181,29,19,35,122,177,198,223,181,
56,135,182,96,233,154,79,101,149,175,9,175,213,104,232,74,39,244,255,99,170,94,63,212,50,6,184,200,211,141,1,128,130,60,29,154,192,100,177,25,228,105,36,202,137,97,145,192,158,57,101,22,50,115,208,80,174,203,87,54,120,228,243,10,20,126,41,200,162,29,180,215,185,118,22,17,155,217,1,9,10,106,47,77,157,125,205,3,159,243,232,95,197,70,16,211,51,19,196,32,242,80,128,21,60,11,112,0,40,198,226,128,163,75,230,32,200,24,64,123,93,83,240,56,52,120,20,49,211,84,97,176,160,5,85,181,80,34,138,38,237,196,174,6,16,86,47,215,147,25,76,72,15,51,89,59,1,211,120,23,8,33,73,221,248,192,146,6,139,124,203,78,105,182,157,139,90,180,187,144,34,170,78,131,67,25,192,115,186,11,251,220,82,228,151,102,109,243,143,199,180,51,90,233,185,30,215,10,173,62,221,15,206,2,166,180,241,175,87,252,66,30,83,64,186,134,176,43,210,72,102,208,75,45,25,78,75,42,20,214,98,111,151,51,206,35,124,137,212,146,73,253,224,195,59,107,
222,69,67,103,38,228,159,48,42,255,51,219,187,62,235,48,196,121,62,103,143,156,33,143,1,121,22,225,112,164,225,142,3,187,100,30,80,196,125,186,129,8,72,255,218,122,44,192,97,205,104,115,116,106,192,33,64,159,185,191,2,172,20,72,89,232,122,13,235,35,183,35,166,217,115,104,164,230,201,160,164,221,225,111,105,217,216,255,101,234,198,131,208,155,116,149,98,183,103,123,139,27,94,152,54,3,55,133,59,93,167,223,98,216,9,186,207,147,219,206,27,146,46,174,93,112,240,11,137,248,13,213,1,15,125,153,199,202,83,118,238,175,97,91,179,95,114,228,61,146,5,192,57,224,178,129,56,104,222,197,22,114,34,38,14,32,140,67,142,133,31,162,88,65,213,40,84,6,150,183,139,84,183,137,220,228,178,124,201,122,67,53,201,213,232,90,186,88,68,172,234,164,62,203,15,148,211,237,214,151,110,247,182,11,121,250,13,247,144,122,15,174,226,125,183,233,69,239,179,127,239,228,223,9,205,184,151,135,235,66,226,40,101,18,145,72,224,64,29,139,54,116,84,137,38,149,
2,90,43,170,192,124,117,92,200,111,223,125,201,225,117,122,23,26,170,58,122,56,95,84,122,248,107,91,148,233,45,121,156,7,117,34,217,187,251,235,79,74,35,249,195,9,37,150,19,95,210,164,145,228,116,210,122,142,234,182,251,168,130,224,223,114,197,56,18,184,12,11,62,192,16,97,101,173,234,164,81,179,50,136,208,49,217,11,26,198,111,229,190,98,33,170,70,204,52,218,168,49,95,121,254,128,60,105,135,202,108,65,74,41,3,40,198,225,104,250,61,101,86,226,254,181,149,165,130,104,242,53,117,32,49,9,49,27,35,235,76,237,162,211,11,11,180,26,158,77,242,108,40,29,12,198,140,96,38,21,69,250,82,11,217,37,213,233,7,149,202,181,227,5,81,75,181,40,22,48,79,11,153,175,75,91,226,66,200,157,74,109,167,198,5,52,15,142,26,50,40,112,84,3,73,101,221,141,172,62,44,171,57,155,22,50,186,174,172,117,211,30,25,56,53,231,234,208,209,218,95,44,119,35,92,117,33,4,176,92,49,178,134,166,219,221,78,6,146,41,152,109,8,254,32,112,
62,140,94,175,221,198,254,153,92,157,128,6,58,154,138,23,212,24,44,130,82,18,89,127,239,216,221,106,72,86,166,53,148,231,21,75,150,181,191,142,93,73,36,60,123,54,44,188,206,133,8,233,203,121,39,215,237,243,184,173,13,109,142,206,33,24,148,192,53,213,80,194,37,241,106,8,103,193,137,4,221,231,77,174,192,72,194,2,103,183,252,105,247,190,235,54,85,120,105,188,97,196,59,26,121,155,178,250,253,251,22,216,77,222,253,131,213,187,182,81,179,89,120,113,132,240,221,140,102,207,12,103,29,107,131,220,117,118,104,194,67,1,232,6,219,58,122,81,121,109,69,144,21,93,166,230,48,228,93,50,75,32,233,116,186,21,39,76,167,176,212,63,125,173,228,128,33,73,91,218,157,77,183,47,224,249,120,123,18,115,114,62,223,229,229,75,201,201,6,214,166,84,170,95,213,217,181,254,152,237,156,31,182,142,105,99,247,139,127,157,91,91,175,248,113,155,78,39,203,23,248,156,239,231,99,73,251,237,117,58,181,90,181,70,148,12,0,36,12,86,90,16,226,30,196,211,
77,35,61,36,66,176,198,69,181,100,192,6,127,167,93,245,213,106,182,112,80,217,246,137,105,152,7,117,216,197,200,28,113,5,17,20,200,212,77,50,66,85,177,190,178,85,196,143,89,208,228,176,80,255,252,147,65,11,205,234,116,250,213,106,187,95,241,248,92,1,79,144,232,116,59,227,173,222,240,194,48,238,161,123,229,108,152,71,43,141,202,199,115,249,30,69,246,253,15,152,8,78,114,229,31,44,145,252,101,145,96,124,210,247,188,137,123,6,145,209,159,247,223,94,39,194,121,75,7,16,161,250,38,64,164,142,221,22,179,88,226,38,109,188,1,163,147,152,217,185,160,253,136,234,226,0,89,175,22,159,147,135,190,195,250,93,40,234,167,32,4,136,49,205,192,216,15,185,40,5,204,165,6,221,161,2,8,157,24,2,130,7,76,70,186,240,212,164,22,49,92,164,172,43,162,86,210,143,177,183,99,68,190,193,240,196,195,82,12,36,16,60,104,132,32,74,175,36,214,252,233,58,27,202,0,210,6,146,81,161,140,139,136,5,237,98,204,161,197,136,90,26,240,48,174,108,
172,202,63,242,172,56,13,129,192,209,108,245,124,62,223,224,160,169,135,78,194,75,236,53,47,89,36,88,125,240,169,104,199,123,237,54,139,197,190,112,93,60,75,1,88,150,209,46,39,245,246,195,70,225,51,177,124,250,145,252,3,9,26,146,3,83,10,194,166,88,230,16,204,202,109,90,8,145,149,196,84,139,213,139,110,155,251,225,129,217,43,46,157,85,208,75,245,201,112,12,170,138,131,216,160,184,42,151,225,139,238,31,4,164,129,247,240,255,223,127,76,150,230,227,137,62,195,20,26,90,212,236,201,45,176,246,33,189,205,144,90,198,107,110,136,153,19,92,73,53,112,215,12,143,117,132,27,138,20,47,192,43,164,88,154,232,202,4,209,193,157,146,127,6,235,247,57,148,199,182,161,73,238,33,73,114,235,63,157,158,0,198,166,115,19,120,220,37,151,173,255,106,181,134,13,159,15,225,79,182,32,185,62,253,62,123,118,51,146,126,219,19,246,49,169,176,245,181,180,144,12,53,3,186,178,29,105,134,41,249,238,234,64,132,125,136,150,150,128,105,98,39,144,144,132,113,
230,36,234,28,68,121,121,224,58,228,147,18,14,209,155,241,156,131,225,90,37,108,127,251,191,88,53,161,99,232,15,12,218,53,244,4,254,240,154,3,233,185,109,134,144,36,97,8,178,205,239,86,226,161,206,104,251,184,124,228,101,183,67,175,255,247,85,36,180,175,192,202,114,226,89,245,208,63,2,174,106,226,169,244,243,218,112,141,199,226,58,173,170,127,237,133,211,200,220,152,70,188,223,187,153,200,218,78,132,84,206,175,14,159,157,200,39,241,137,105,162,152,50,228,83,250,110,58,101,76,228,83,249,93,49,81,40,38,114,69,114,58,253,71,119,63,0,169,111,4,29,139,204,183,22,66,236,37,145,116,170,250,95,18,246,206,213,83,122,191,105,148,106,192,222,129,139,81,161,88,229,25,110,28,58,33,68,94,146,184,95,45,184,69,59,112,13,78,210,214,134,20,233,231,65,74,201,185,51,65,149,46,236,205,213,132,253,3,10,245,101,167,93,93,15,175,177,113,77,74,176,159,14,199,0,250,14,248,233,243,144,41,133,228,36,108,162,111,44,182,44,8,86,85,18,81,
44,175,156,37,111,112,150,150,102,57,7,37,169,63,27,136,167,195,201,159,217,86,177,27,25,28,198,157,23,122,150,46,144,173,172,169,135,229,48,236,111,78,32,93,235,36,100,144,22,170,26,246,171,128,232,147,160,200,196,80,204,236,131,124,227,27,236,58,70,91,170,123,79,234,130,218,102,1,68,202,189,54,229,255,69,112,125,192,255,29,248,110,92,190,191,60,167,156,183,4,8,186,132,124,214,106,83,127,86,53,192,219,44,107,66,33,166,56,76,13,98,145,22,211,45,62,140,129,133,60,102,39,93,12,68,216,253,76,83,24,136,214,53,43,27,30,7,40,217,65,226,181,128,192,178,195,121,180,24,148,194,1,196,67,94,67,238,32,196,175,164,166,255,147,136,37,52,165,187,85,25,73,41,45,235,84,89,124,204,231,127,179,215,100,49,138,48,248,1,24,207,36,209,173,46,241,244,202,167,156,99,71,120,62,114,128,29,226,153,55,66,111,140,106,65,80,57,185,116,128,147,67,246,99,176,148,149,249,251,129,64,238,111,128,232,4,125,72,223,96,187,190,203,143,35,223,
122,104,88,252,151,11,215,203,190,82,248,108,60,247,178,67,3,242,194,26,155,110,31,115,44,190,95,138,203,71,155,119,250,244,173,45,175,99,88,243,127,251,90,61,40,16,121,219,120,194,10,227,50,252,45,218,101,116,148,137,7,183,76,193,48,213,158,178,192,202,75,118,162,145,167,207,24,169,106,28,51,173,244,87,25,203,92,159,1,180,190,137,215,16,157,27,85,75,154,113,23,99,51,178,145,30,135,195,163,182,27,210,233,172,70,9,23,150,175,243,115,199,119,99,112,83,12,188,1,221,122,42,24,172,149,48,166,207,167,249,145,128,131,124,189,204,97,178,183,229,119,163,40,115,55,169,191,144,52,216,94,115,77,168,248,171,89,168,35,73,56,18,8,152,159,143,20,223,191,55,133,203,23,204,47,100,189,65,241,183,35,94,236,127,59,81,233,98,95,31,11,2,226,157,82,80,55,59,152,16,113,61,159,107,133,221,15,69,128,8,72,53,123,44,107,25,242,88,229,230,56,72,3,190,43,248,5,46,24,26,71,98,14,165,247,44,178,51,4,175,220,13,53,184,117,250,
93,122,20,48,5,102,142,158,239,233,244,65,174,195,149,220,114,232,122,16,215,63,244,139,137,165,197,151,139,82,44,123,70,229,86,179,63,183,223,180,215,216,141,183,203,198,96,152,171,218,124,189,176,150,162,46,109,152,232,95,116,37,14,68,36,30,34,49,0,49,18,99,63,102,57,108,102,20,99,95,46,142,30,34,13,156,98,114,9,223,198,76,120,209,164,41,72,100,207,63,148,55,108,116,105,149,86,181,127,229,148,229,135,20,162,148,117,212,171,10,36,28,19,217,76,173,27,34,142,114,138,215,230,89,188,163,182,157,56,114,63,14,36,32,252,218,105,33,35,118,241,226,141,128,38,6,60,100,146,136,126,215,142,229,182,133,128,197,170,119,128,158,207,237,212,83,211,251,29,16,191,37,190,167,158,115,52,246,7,81,171,127,178,252,40,117,172,247,76,71,105,208,109,176,127,67,184,23,143,152,231,151,86,42,186,47,199,184,191,40,186,40,48,27,191,99,33,217,173,53,108,106,76,67,142,172,219,166,139,199,15,149,230,81,71,228,34,77,173,198,185,13,190,54,175,215,
115,112,25,238,124,150,87,75,83,93,158,39,97,51,5,102,8,156,69,119,246,246,248,234,38,79,19,138,252,245,222,85,123,254,255,46,247,206,189,203,183,144,165,228,52,188,28,151,83,248,22,134,94,31,233,96,50,93,188,214,142,135,219,74,79,96,57,239,38,170,205,15,172,63,205,16,205,114,11,201,175,9,221,24,197,241,146,52,6,218,2,25,241,12,110,66,17,27,41,178,68,40,170,129,48,130,22,138,41,201,201,228,167,161,5,162,9,32,191,25,174,110,7,176,219,177,53,83,204,0,165,233,110,197,25,207,218,31,37,204,121,42,29,188,138,152,96,208,60,251,6,159,196,87,119,120,122,29,55,187,209,244,49,217,61,230,40,35,163,128,210,85,68,56,123,117,147,249,220,154,57,149,133,198,70,204,224,93,118,234,167,176,105,35,165,190,117,214,5,144,39,21,35,252,141,170,64,126,123,168,163,50,185,61,124,35,22,142,99,203,106,195,87,155,137,218,110,183,130,29,99,169,176,87,206,29,127,41,201,250,107,231,235,7,53,235,55,34,134,204,115,229,72,63,80,215,
115,132,232,7,47,86,1,138,140,104,102,33,84,97,65,190,107,75,140,15,213,208,60,197,239,42,127,122,156,247,222,66,138,110,86,191,229,85,92,239,15,249,216,25,4,132,221,109,103,71,168,143,46,147,27,99,119,254,152,56,148,87,68,151,135,69,226,221,8,158,248,2,135,216,68,34,77,239,52,175,115,0,232,204,0,165,131,82,151,249,52,251,43,123,48,105,197,0,179,251,245,221,248,225,215,249,74,241,88,238,47,243,101,215,114,250,190,62,211,215,37,115,94,61,231,221,207,27,124,179,61,79,159,221,103,248,38,27,58,212,237,209,118,13,48,94,142,65,49,40,113,179,10,75,211,176,118,193,117,193,195,37,22,231,88,90,10,32,158,41,226,93,111,5,185,223,108,61,34,38,185,163,99,209,106,199,46,145,30,180,228,72,105,235,179,221,34,115,129,242,112,207,141,97,193,60,132,156,98,217,88,166,28,95,77,153,88,53,128,72,180,128,161,178,18,43,81,193,10,93,68,33,176,9,55,101,180,243,28,24,140,59,177,168,93,55,255,179,178,34,221,208,34,102,1,73,
164,54,47,181,200,192,156,15,190,254,38,144,10,32,159,231,131,73,5,35,193,86,39,61,169,233,100,114,157,245,134,199,177,114,107,186,244,37,1,172,70,103,237,166,190,104,113,14,152,255,57,50,77,22,244,202,222,215,235,227,184,59,139,108,47,204,93,27,37,44,104,100,195,185,161,44,172,25,224,197,32,246,79,35,147,198,66,75,41,223,6,201,224,210,96,169,63,211,78,59,207,163,160,114,40,26,52,216,24,238,76,143,237,110,180,109,126,83,208,166,233,55,26,218,19,14,128,183,219,23,46,189,45,190,221,190,131,215,240,223,116,37,187,225,0,115,96,46,1,164,233,7,115,90,14,94,199,205,10,52,188,252,174,143,203,228,181,82,216,95,247,8,178,151,154,3,46,0,181,226,200,120,62,74,122,123,193,34,214,62,162,153,120,137,35,196,221,157,133,136,67,192,70,166,153,152,159,14,129,115,32,37,45,45,47,13,251,21,53,45,165,208,149,88,194,76,95,255,5,86,183,221,77,105,55,234,141,196,223,11,129,240,235,253,213,234,12,27,222,26,195,235,108,36,22,245,
13,197,61,127,220,251,19,202,238,48,26,207,70,227,27,226,176,28,61,86,187,223,76,68,77,194,114,148,131,228,244,83,152,184,214,186,4,173,174,17,114,158,142,95,73,4,142,220,253,232,147,150,236,189,60,92,216,244,226,33,216,22,5,205,190,153,214,46,226,189,244,46,47,61,179,240,134,72,48,187,252,254,126,238,3,241,249,255,145,112,14,205,210,116,221,22,253,235,101,219,182,109,219,182,93,117,202,182,113,159,247,187,141,236,102,35,99,205,185,199,136,220,177,94,14,187,101,120,28,223,247,222,160,156,190,60,79,68,232,218,86,110,1,13,209,198,165,49,50,63,85,9,105,63,184,84,172,201,63,176,36,255,219,32,10,147,37,20,190,54,238,149,47,13,138,151,199,141,54,102,148,167,97,17,120,137,144,207,131,0,15,16,99,246,36,29,126,120,54,144,113,18,55,41,156,37,125,199,217,181,60,140,254,146,55,128,121,193,13,200,12,202,172,159,74,144,27,56,15,231,57,10,84,121,107,184,1,252,154,67,239,214,112,186,169,61,39,187,215,111,51,154,125,74,139,215,
103,244,26,173,94,251,163,215,108,117,155,205,126,187,226,111,249,147,188,222,155,12,70,19,33,255,16,45,0,17,33,182,128,231,245,129,16,122,21,152,88,186,129,142,108,24,46,250,91,134,107,219,97,100,204,168,72,56,38,166,146,140,1,18,4,65,203,49,37,212,91,254,150,110,229,73,88,122,210,55,103,166,129,4,199,54,17,24,19,43,137,197,8,206,153,36,46,136,179,205,179,48,172,150,80,30,130,2,10,137,255,223,232,24,224,109,120,121,103,112,99,82,91,178,109,81,31,82,94,74,38,126,69,113,35,157,100,50,187,114,54,25,234,106,137,55,59,226,237,63,31,24,84,14,169,165,194,186,83,33,228,178,121,220,143,163,99,112,187,60,160,171,42,195,225,208,167,94,11,12,180,114,90,180,223,199,171,52,122,109,168,44,0,65,173,93,183,199,225,241,144,143,14,128,138,246,220,156,54,79,79,70,189,203,5,31,209,19,202,42,165,146,216,10,77,118,93,202,170,224,120,26,30,249,74,4,235,66,101,194,167,9,49,251,142,98,213,77,184,141,49,190,63,132,2,223,
155,49,128,96,28,218,148,18,160,223,238,241,91,231,94,237,118,227,47,255,91,173,208,255,87,191,193,168,87,240,19,70,187,66,104,55,136,127,108,58,157,233,244,104,112,250,60,220,28,14,66,28,49,251,146,41,10,242,222,240,248,213,141,217,49,248,76,3,240,122,96,4,193,185,62,195,159,131,197,199,198,193,68,134,158,147,129,242,195,197,187,133,38,200,4,98,0,139,132,156,252,207,50,33,61,73,174,28,160,2,224,185,207,20,204,92,7,84,93,254,102,203,207,96,51,152,124,89,155,219,241,180,220,174,109,205,161,217,242,41,246,87,30,173,134,213,82,175,223,44,237,154,39,222,83,113,255,124,126,133,254,33,62,13,77,54,41,23,15,137,207,201,184,59,52,143,124,124,115,112,109,222,20,106,90,78,151,120,239,7,110,122,31,204,17,119,126,194,35,96,232,199,143,215,84,193,205,14,159,216,246,78,194,79,65,107,245,218,99,86,191,141,144,154,172,109,93,86,91,21,130,164,94,66,67,96,80,200,164,84,190,31,46,253,74,212,148,132,162,52,173,235,10,36,247,192,
158,128,107,225,114,192,57,174,78,1,124,192,144,2,61,139,129,190,140,30,149,18,59,83,51,45,17,162,152,134,6,8,173,203,136,135,29,68,193,73,48,8,146,23,103,130,39,103,127,20,1,131,211,141,234,196,76,108,134,137,201,235,21,66,201,153,14,98,2,41,179,138,53,243,142,223,200,140,109,39,236,188,150,107,17,17,231,103,43,166,120,77,179,229,43,188,189,45,46,74,23,254,229,253,151,75,183,229,209,159,148,123,82,82,63,193,31,19,251,61,64,59,141,95,166,208,24,207,231,115,239,29,210,32,253,35,104,212,148,94,171,217,111,120,24,62,127,52,164,46,109,118,186,111,101,84,230,195,5,232,220,198,157,95,78,126,121,83,175,226,144,58,48,158,53,131,164,134,170,111,141,85,159,60,99,215,89,175,113,191,59,198,246,118,169,240,9,88,82,222,101,9,180,26,203,192,165,125,108,222,145,129,235,40,237,139,75,201,231,218,89,140,196,144,192,186,192,184,124,158,46,120,13,76,115,110,38,166,141,42,140,236,105,37,240,181,43,162,107,251,144,228,137,235,215,198,
161,234,105,188,232,133,139,160,248,50,146,11,241,140,113,245,0,215,77,235,112,170,230,201,103,78,7,4,81,203,217,146,209,110,231,180,90,42,18,167,70,181,148,90,212,107,55,116,222,151,207,3,232,192,217,108,95,104,177,253,250,30,95,4,170,16,159,218,10,212,230,219,94,99,71,143,155,252,72,229,112,161,60,8,177,81,160,159,67,11,230,4,227,156,114,166,84,165,154,50,194,64,73,79,43,64,163,137,49,193,97,232,9,34,100,17,13,129,77,100,87,172,139,174,25,109,67,182,125,141,121,228,233,157,243,253,77,109,190,239,157,239,139,56,87,180,214,119,229,65,190,119,137,175,223,71,254,252,79,221,208,207,175,154,199,206,99,200,56,41,44,78,140,145,34,224,48,241,108,35,96,239,175,176,16,223,159,93,29,143,142,15,95,94,93,238,247,207,21,223,95,30,212,237,127,53,167,31,99,161,176,112,113,46,34,226,35,209,191,111,193,66,192,69,161,162,195,222,194,68,67,195,207,236,157,4,18,217,169,48,120,38,0,78,240,101,194,128,92,153,241,75,10,162,46,63,
123,141,127,203,206,117,33,178,175,252,70,141,247,244,220,26,254,222,215,199,104,27,61,250,191,147,84,176,154,10,98,120,243,203,96,249,188,26,166,130,45,31,77,76,127,193,50,113,116,127,6,200,236,3,147,108,68,44,0,3,105,182,213,215,114,86,40,38,173,54,203,225,4,122,6,100,125,15,134,48,220,255,134,252,223,187,140,179,243,224,14,10,97,74,60,244,208,243,199,207,197,47,241,145,210,12,197,128,220,212,146,8,86,74,38,35,123,151,161,4,243,104,136,116,217,145,156,2,240,100,88,146,201,146,52,218,230,85,140,211,66,206,129,179,138,174,121,94,157,97,230,81,18,69,134,72,202,97,52,169,194,249,143,228,57,37,137,166,229,40,143,8,231,129,206,158,43,248,131,27,48,136,177,47,100,114,246,11,209,126,128,147,47,33,23,243,160,19,56,33,81,221,6,163,120,103,252,2,192,14,96,251,93,195,123,48,125,210,53,243,219,220,242,232,154,28,134,87,119,216,156,188,248,216,12,126,211,205,104,248,144,92,230,175,197,250,52,176,141,30,187,203,96,54,164,173,
60,22,84,185,47,130,191,200,202,118,61,216,3,206,227,251,253,60,30,3,206,231,245,122,253,190,6,182,223,201,229,239,117,195,15,230,235,165,230,247,178,53,53,62,52,226,198,220,23,95,229,242,73,230,27,78,185,49,65,134,18,100,224,65,46,202,86,143,10,221,0,69,177,88,60,32,1,205,37,6,116,97,132,106,67,122,202,223,82,201,110,120,23,224,82,144,157,124,227,92,203,91,228,3,211,225,195,40,204,81,92,56,243,5,220,12,140,123,165,150,91,7,45,185,208,113,32,173,89,133,97,65,154,64,98,153,133,68,118,19,103,64,234,53,165,245,156,148,158,26,152,128,204,74,60,181,78,197,73,212,252,227,39,159,79,241,150,239,232,15,141,69,89,38,132,183,109,15,250,1,170,130,96,92,109,98,211,48,112,203,96,241,235,157,166,63,57,213,163,237,163,179,85,242,207,174,191,157,232,3,36,54,248,104,105,43,70,93,203,207,70,187,155,74,73,94,220,90,28,9,233,240,180,176,57,37,120,252,3,237,209,84,72,74,114,143,49,176,71,118,17,188,13,81,191,40,
7,145,140,178,100,141,243,74,6,0,199,166,145,75,243,76,228,103,101,123,235,60,109,147,195,171,171,173,139,239,89,244,238,68,216,207,130,178,201,22,250,33,72,57,102,57,7,47,97,191,238,182,243,123,124,250,252,140,131,132,117,132,2,55,231,124,132,131,183,254,254,164,126,113,189,191,118,255,224,112,128,122,120,254,250,230,116,114,190,125,242,250,142,188,7,221,194,223,130,132,192,192,197,71,196,136,105,202,67,70,1,92,0,72,68,28,100,37,162,67,197,103,33,162,34,101,0,49,200,92,95,7,0,20,64,39,98,166,34,101,102,228,234,34,39,198,127,139,111,39,224,89,161,129,116,39,98,60,53,144,88,25,252,38,143,201,235,242,186,117,52,191,227,7,93,156,30,72,179,235,107,183,252,188,43,135,195,196,50,101,101,103,185,137,216,252,12,54,48,5,21,127,243,48,199,87,89,52,196,81,242,14,28,198,180,124,254,46,67,246,109,124,124,173,105,140,161,162,45,135,158,125,92,86,191,231,229,247,61,64,152,77,69,149,129,108,235,220,63,22,105,43,66,114,98,85,
53,94,50,35,210,33,21,128,15,137,233,171,6,229,216,209,90,88,21,129,175,68,134,240,32,197,16,41,36,33,118,88,97,197,24,249,79,83,164,139,88,139,103,85,156,106,85,9,192,160,152,47,114,26,106,190,57,110,154,57,1,131,100,83,195,59,206,73,144,126,122,28,230,240,184,191,194,96,8,73,12,165,23,128,239,40,59,2,230,182,65,164,14,8,206,12,8,116,242,16,160,69,107,129,123,236,205,38,196,31,224,101,239,129,36,12,177,146,193,231,54,90,188,214,182,225,9,66,188,243,253,67,239,19,128,150,203,107,124,178,24,125,16,62,0,15,104,225,218,226,179,246,8,73,172,91,28,238,48,191,238,237,223,212,23,6,159,130,64,44,68,30,144,191,135,243,81,173,90,187,95,111,0,145,62,173,74,160,236,5,152,68,32,108,162,248,191,62,127,61,43,10,50,207,235,5,35,118,41,131,232,252,187,151,117,148,46,109,155,211,161,210,37,181,58,28,6,7,249,197,118,136,169,16,195,202,232,212,5,69,12,74,109,101,21,144,47,180,150,97,63,64,155,133,122,150,
15,190,125,97,101,98,103,99,151,177,175,0,227,70,5,199,203,128,101,87,30,74,44,150,63,185,17,86,114,145,210,48,62,201,165,38,2,219,234,115,253,75,100,107,177,207,116,156,240,17,78,123,28,62,50,141,151,190,236,83,24,77,118,34,255,130,231,128,138,117,116,101,54,178,146,160,152,124,26,158,231,127,52,78,117,50,246,85,215,152,199,229,199,91,237,230,63,173,148,54,143,94,205,120,72,220,35,96,216,55,16,79,166,131,29,106,95,135,174,154,73,232,246,182,59,254,247,215,46,23,247,24,216,69,144,90,122,83,194,114,2,200,124,13,32,60,98,42,36,90,74,36,104,196,64,138,78,106,99,78,112,249,142,65,70,27,146,68,139,138,1,227,162,144,190,157,223,14,215,204,231,224,120,190,94,127,222,211,241,108,43,213,117,148,21,117,245,233,190,124,55,209,121,184,207,175,125,126,233,222,203,78,179,227,164,47,22,127,77,186,78,175,117,105,132,244,6,12,231,94,232,173,231,44,182,31,59,47,69,233,82,122,149,229,170,249,182,29,93,205,27,167,160,244,173,116,
121,200,86,23,65,238,188,226,66,94,32,240,204,164,164,209,211,0,62,3,159,124,249,119,254,214,77,247,219,252,62,4,152,160,71,123,52,199,190,166,149,40,61,66,164,74,132,73,136,26,104,64,145,84,131,16,103,67,10,0,23,32,48,131,164,113,180,104,177,84,235,158,62,51,43,127,113,113,187,134,108,233,98,152,182,41,151,148,245,176,45,93,166,173,74,230,88,5,163,1,55,67,148,21,40,223,129,155,167,175,217,127,162,199,73,185,78,228,6,78,161,40,210,138,248,13,174,178,220,207,186,102,236,174,83,247,167,186,243,6,151,219,189,175,246,90,57,187,106,235,168,190,190,194,54,93,170,121,39,221,151,220,163,132,69,121,177,82,93,140,253,131,185,234,182,26,204,237,150,251,210,108,123,154,45,71,155,218,242,65,50,182,28,236,174,138,7,30,109,107,104,84,183,42,45,39,174,100,155,169,156,28,164,220,32,166,68,10,160,176,82,162,128,37,164,70,12,142,214,27,222,104,18,66,62,5,120,84,212,50,96,201,246,39,156,18,24,180,35,130,74,75,55,164,21,141,
112,223,242,109,235,4,3,80,131,159,171,218,34,48,140,224,36,158,188,78,197,94,241,160,33,64,234,131,231,6,1,191,76,191,31,159,37,240,93,34,191,24,225,227,191,69,236,234,169,255,232,26,253,164,136,232,218,31,142,134,225,98,118,253,225,158,233,107,87,253,244,235,158,149,181,229,97,203,64,28,0,156,231,184,59,212,114,160,206,5,50,88,132,218,81,153,242,190,45,121,210,146,215,232,141,185,154,107,130,80,57,209,123,188,149,175,33,123,47,6,190,115,121,115,51,23,235,166,211,103,240,215,107,14,165,215,109,119,253,15,13,6,25,179,169,150,62,247,239,240,100,7,53,255,44,129,117,159,252,102,8,251,129,255,125,189,95,139,109,246,128,69,136,86,108,182,115,176,171,142,218,151,82,90,198,17,31,149,22,110,30,35,37,167,9,107,231,177,152,83,129,186,7,13,233,27,55,87,152,11,171,245,148,63,8,171,169,98,105,77,36,169,41,37,185,244,76,147,218,148,210,32,34,117,41,73,79,176,62,217,68,141,13,140,159,126,150,119,198,94,146,123,131,203,234,116,
180,60,126,103,215,231,232,117,155,29,174,28,3,163,13,13,155,90,75,200,14,210,248,19,82,240,176,100,253,165,199,138,207,137,125,58,84,163,209,242,11,239,255,221,33,121,111,227,247,188,244,127,127,255,112,205,117,61,177,123,223,207,251,242,61,108,38,253,42,186,219,21,231,10,0,184,252,193,52,69,5,41,4,84,86,106,128,26,48,96,4,62,127,178,80,50,16,41,166,98,106,112,243,112,132,4,65,56,57,103,203,114,175,42,35,228,188,26,229,140,163,186,185,31,147,189,221,141,167,187,195,219,174,255,189,255,182,103,240,62,146,255,221,127,27,17,108,224,222,61,120,187,29,221,111,243,251,15,90,143,0,5,18,161,77,101,2,72,211,114,173,21,27,146,6,201,18,41,81,107,73,74,36,74,176,116,14,128,22,65,202,0,103,60,37,74,164,6,8,206,41,123,77,94,94,248,215,233,187,11,186,6,112,133,46,6,109,221,16,77,19,96,151,186,41,112,0,162,1,200,144,113,118,7,245,115,246,217,5,164,223,105,155,21,27,167,119,250,182,20,16,40,139,5,136,199,
23,183,184,221,173,110,216,191,111,96,137,225,110,19,253,213,21,20,216,62,71,176,148,220,107,28,204,194,143,116,109,97,99,145,90,57,40,88,223,8,77,4,92,90,189,115,77,141,13,177,102,115,155,187,185,255,170,217,189,131,118,173,115,189,185,204,37,6,170,254,181,36,220,5,69,18,203,85,5,104,44,136,42,37,145,149,9,52,5,167,133,32,128,99,96,79,223,212,28,139,226,130,143,95,73,1,33,176,99,4,248,87,186,31,132,220,58,90,65,129,227,144,74,169,151,14,55,93,9,71,163,150,177,79,175,146,66,58,211,176,232,249,184,173,10,218,44,86,106,16,80,32,156,18,25,250,36,72,41,49,64,55,69,183,110,244,232,67,215,229,252,195,117,123,235,15,159,246,122,46,81,138,208,198,231,213,55,218,49,246,241,34,70,176,154,254,242,27,40,169,112,174,249,249,68,208,129,218,226,148,85,146,221,247,205,124,119,20,154,46,174,134,123,158,209,221,222,69,154,185,97,104,186,87,49,72,175,73,38,122,152,127,152,101,137,97,86,6,91,26,99,222,74,29,126,138,
210,214,28,213,166,41,92,178,205,5,20,2,240,28,247,2,161,59,54,48,110,47,53,185,248,187,198,90,195,97,177,233,159,100,179,127,238,217,110,236,243,189,15,216,239,46,67,107,125,129,246,223,160,202,166,62,251,114,137,207,66,208,162,30,151,47,29,55,135,179,103,112,249,76,78,110,86,78,90,224,134,98,75,49,151,64,213,44,121,8,161,146,68,36,129,33,86,156,149,172,60,218,116,14,27,171,125,35,133,81,156,219,151,208,51,165,194,63,42,175,60,210,224,209,197,45,212,220,195,35,23,82,84,92,177,215,64,142,250,195,25,185,14,53,190,188,141,181,230,179,147,236,106,112,95,159,150,211,253,243,120,255,222,203,205,111,5,103,171,209,96,47,184,251,88,47,219,180,116,212,142,118,98,72,47,218,82,78,156,242,10,203,38,95,40,222,234,242,187,29,102,235,123,159,213,140,98,108,152,212,247,135,80,128,105,167,6,190,135,43,145,186,128,176,239,126,190,15,254,187,28,159,151,155,13,187,109,252,184,162,5,135,158,136,137,35,35,152,80,99,180,176,208,130,130,38,
100,140,97,129,230,32,148,69,212,204,75,217,15,137,172,28,145,162,182,21,36,80,159,197,64,151,209,172,102,215,110,254,125,87,163,87,214,231,100,244,250,156,151,199,225,245,187,221,190,251,231,123,123,141,162,93,253,39,124,130,199,29,53,254,185,186,138,215,255,53,136,239,113,91,110,94,10,118,37,80,182,2,253,0,15,175,179,95,110,226,122,125,28,176,123,124,31,43,247,235,196,206,162,60,130,53,16,8,176,8,208,36,170,82,25,128,145,16,182,185,0,87,36,73,210,21,81,184,127,224,164,171,151,64,175,6,141,82,171,134,74,61,19,103,225,158,39,50,245,48,182,153,56,113,101,237,124,167,38,237,146,112,151,118,86,32,154,183,80,165,108,94,223,63,73,7,84,28,48,56,70,16,57,61,15,228,12,195,106,84,97,47,108,227,51,250,124,165,131,27,157,173,246,209,236,249,81,51,26,220,147,176,205,5,233,207,46,114,205,163,7,5,200,210,184,175,152,248,227,48,246,88,232,82,81,157,93,255,118,234,180,54,11,19,63,54,50,123,207,246,82,187,44,254,210,90,
167,118,97,1,193,93,10,166,77,116,234,238,84,245,184,57,186,138,36,233,137,66,20,34,105,22,160,124,207,224,42,8,152,222,86,68,188,195,148,104,112,16,17,13,45,88,99,10,41,40,33,103,49,166,24,57,29,146,201,126,50,250,248,76,34,34,227,204,7,164,151,73,56,23,142,86,4,124,117,229,77,83,249,232,219,87,174,25,14,106,55,147,14,5,43,196,52,171,82,146,26,74,250,116,128,214,127,145,118,207,46,168,188,171,69,145,63,63,45,34,134,112,122,252,190,175,233,127,118,184,40,93,89,187,238,231,174,183,92,188,45,255,203,238,200,197,233,97,255,167,248,216,159,5,230,238,69,62,119,111,142,197,173,158,225,230,58,39,185,201,77,43,110,136,51,76,19,17,171,49,108,22,159,33,204,204,222,80,150,139,4,225,16,11,74,10,243,20,107,142,45,146,180,139,2,113,231,206,8,90,199,205,171,144,34,138,122,51,251,98,15,212,166,110,183,27,30,215,203,229,245,91,253,182,251,241,252,223,251,125,88,183,254,4,136,223,16,225,191,181,134,237,127,73,209,184,
203,191,227,123,90,222,157,255,9,36,56,2,87,155,103,248,64,130,237,126,77,62,193,190,205,202,211,193,236,41,102,204,88,213,131,9,85,77,47,19,53,255,229,18,37,101,186,136,229,170,100,104,153,12,165,1,151,53,53,244,194,97,199,119,19,114,134,72,90,93,148,99,230,149,241,225,123,150,216,207,80,43,208,235,52,217,155,157,134,183,189,238,184,28,14,135,203,167,244,122,220,126,191,227,123,255,190,175,251,125,255,252,203,174,240,124,127,167,107,236,114,121,188,220,236,116,105,155,252,8,17,35,180,153,151,82,146,116,185,48,242,52,90,191,239,237,141,1,123,38,95,185,6,13,124,188,208,239,54,109,224,41,50,7,233,195,234,22,241,119,187,30,14,135,151,200,202,87,176,173,125,197,209,154,144,98,99,195,148,225,137,71,233,49,200,16,128,124,197,168,38,104,155,0,195,32,254,63,169,91,67,128,228,40,8,101,138,194,192,150,86,228,176,176,108,21,77,3,32,199,178,97,203,205,150,143,218,108,115,156,111,214,243,191,187,98,190,226,247,158,182,31,224,254,60,191,
175,199,43,224,113,248,239,230,210,55,207,127,189,18,116,253,110,218,15,29,65,120,125,15,1,88,121,124,95,58,16,134,235,129,226,180,9,252,11,24,12,190,85,54,252,91,31,4,237,253,211,103,119,172,95,103,118,26,92,98,198,130,20,104,145,192,149,222,147,200,210,127,253,160,78,108,138,203,212,177,85,174,47,226,211,13,124,96,215,230,204,140,238,168,48,140,24,156,97,218,251,25,224,103,220,229,102,128,116,0,250,44,85,131,16,47,147,178,108,163,64,188,164,128,161,57,194,54,207,56,185,7,80,123,86,185,0,56,70,24,129,67,208,128,118,3,228,243,70,16,93,63,188,120,228,231,181,61,104,15,231,144,174,253,105,222,63,197,134,250,138,117,245,14,243,203,219,198,101,63,79,144,66,181,210,171,171,22,238,40,125,165,90,11,79,231,186,157,22,120,121,137,13,174,75,83,221,149,83,221,90,246,69,18,212,154,67,97,194,28,15,252,107,81,107,206,50,53,69,136,98,152,249,50,181,73,97,202,132,2,5,199,193,4,6,146,136,134,148,230,207,141,141,226,16,13,
154,197,180,2,237,177,219,195,122,215,2,124,100,115,49,81,154,53,99,26,253,178,54,97,77,97,42,153,124,66,10,225,115,106,201,35,49,159,164,247,1,166,106,255,152,254,198,217,179,120,197,116,182,51,173,222,158,95,167,96,36,178,157,127,134,190,243,215,123,118,132,79,143,132,112,5,18,225,198,199,233,250,160,154,59,115,211,193,217,113,98,151,218,88,165,121,235,101,227,115,81,195,75,193,63,212,58,15,125,69,230,240,143,173,181,80,15,219,26,100,139,212,39,120,89,236,29,181,105,143,60,165,10,92,105,220,5,37,112,27,11,182,98,16,180,65,236,244,102,197,169,146,180,157,222,37,208,135,65,243,71,18,15,2,156,195,190,78,1,59,243,28,166,198,63,135,207,102,179,154,237,131,215,27,200,57,124,246,246,235,240,163,255,237,160,224,67,121,102,125,167,43,250,220,228,18,255,5,92,43,157,222,199,233,118,55,99,30,47,91,171,131,11,147,178,21,185,169,179,169,53,204,61,13,148,211,180,12,17,52,167,13,18,80,105,88,249,141,154,87,80,21,80,58,13,202,
91,216,147,203,209,137,128,18,81,27,84,76,70,121,198,100,151,19,215,103,49,207,55,86,226,203,244,175,160,125,78,247,239,112,219,31,137,23,78,221,255,253,29,178,7,120,126,231,255,158,183,135,178,158,255,253,94,254,190,122,255,231,140,255,125,127,163,97,181,152,92,164,204,169,20,61,40,48,206,180,19,76,174,126,228,53,18,125,246,61,254,106,223,70,250,45,221,58,252,66,45,130,239,163,91,100,236,152,119,127,223,247,56,127,31,143,247,107,166,232,243,89,10,83,79,95,59,104,30,72,205,179,29,165,145,132,198,25,209,63,50,242,29,202,51,115,174,103,132,168,2,193,241,110,14,24,198,147,146,170,24,35,31,203,243,74,33,163,159,55,25,92,247,173,161,228,98,107,206,61,206,221,65,216,31,117,215,74,205,77,122,18,238,46,87,183,206,212,63,246,154,237,102,187,226,253,87,124,14,151,215,235,114,122,157,94,191,221,233,225,59,94,223,243,3,170,193,249,142,223,247,187,35,215,0,56,160,77,191,13,120,135,189,158,48,211,111,175,189,78,63,198,197,251,252,179,
215,68,191,201,239,234,160,204,137,148,71,115,142,130,82,0,174,42,25,212,103,215,170,106,177,74,24,106,103,51,157,90,214,206,197,19,172,106,224,136,216,19,10,71,63,133,101,235,109,53,107,155,61,179,218,94,160,141,5,120,11,78,12,27,100,38,223,68,105,22,171,176,13,27,49,156,170,197,146,38,101,210,154,30,32,173,119,94,2,111,243,194,63,163,224,117,193,11,198,48,142,118,31,155,114,53,6,118,220,107,238,87,120,170,80,246,240,118,195,27,71,64,135,124,98,57,249,236,246,188,54,208,23,208,118,126,13,101,33,116,168,76,99,168,102,129,10,88,106,242,18,116,246,219,23,188,253,233,21,16,187,116,136,59,91,121,252,109,202,93,22,169,66,131,176,162,35,184,61,109,112,37,47,35,87,186,11,53,105,170,89,217,97,129,192,32,192,21,48,72,168,170,200,41,41,1,141,80,50,36,94,69,217,51,75,53,244,3,11,83,47,240,97,236,59,126,36,147,205,6,127,45,221,148,66,235,130,230,215,160,122,212,161,205,135,102,164,59,152,165,156,74,186,114,243,134,
230,37,210,78,221,4,228,41,65,47,138,124,158,73,19,202,86,141,219,155,56,228,172,62,59,167,243,117,139,184,79,249,0,242,125,96,237,42,139,207,107,55,51,125,130,198,123,39,91,158,101,4,86,136,217,187,50,172,116,208,83,146,123,170,125,0,246,151,167,249,135,233,108,211,87,181,167,44,112,100,9,112,84,241,34,74,5,132,155,113,43,38,195,13,1,12,2,20,32,174,91,196,11,88,75,83,82,22,208,209,24,168,114,223,168,165,77,13,232,15,12,218,58,5,173,47,13,226,129,32,68,125,32,180,9,151,133,183,111,87,179,217,233,182,251,189,182,223,121,116,184,191,135,215,253,138,255,110,228,240,155,223,203,247,188,30,135,143,94,176,44,120,58,149,233,227,76,164,214,249,66,189,223,151,224,6,104,100,122,255,254,184,227,231,144,60,64,223,59,253,174,242,89,145,250,219,133,203,104,236,134,203,45,142,215,78,154,236,164,235,168,59,186,105,163,181,130,233,103,143,150,140,40,144,163,40,32,8,81,168,38,79,222,182,170,222,40,213,210,16,248,98,186,40,105,252,
196,221,196,97,82,50,136,166,32,157,129,2,81,179,125,123,140,219,241,90,251,63,175,233,71,254,225,251,222,199,182,188,95,255,126,202,254,159,124,240,145,239,30,187,95,253,84,164,239,240,249,92,0,20,1,56,185,11,59,186,73,176,208,126,181,44,241,184,83,55,170,173,54,57,247,91,4,183,159,207,223,235,199,255,189,126,36,254,215,131,188,223,22,118,59,159,255,59,76,195,250,157,191,7,250,30,174,229,221,45,24,120,210,111,5,2,88,173,84,49,46,75,240,93,68,138,144,96,15,152,78,253,65,232,130,35,115,4,5,130,33,246,232,154,120,26,12,44,129,123,30,215,87,90,81,170,18,215,250,189,212,72,235,214,140,13,85,238,32,151,110,239,213,179,146,228,95,71,129,186,254,18,174,111,151,92,159,191,196,122,138,22,119,27,197,213,110,3,166,73,160,67,115,191,218,110,184,59,18,96,190,226,112,120,28,21,135,203,227,3,254,97,225,184,221,13,47,131,255,207,236,135,3,224,131,112,251,243,23,14,220,222,254,252,219,250,121,100,109,105,46,170,88,58,139,36,
51,217,157,55,104,132,198,136,64,84,50,102,214,207,33,200,62,209,149,85,200,117,138,182,99,70,0,150,164,3,10,136,75,148,165,26,142,128,124,78,123,139,94,235,186,26,222,122,203,43,46,188,219,218,21,114,1,97,219,183,121,108,226,187,121,187,151,54,179,100,229,229,254,19,107,108,174,79,246,191,242,43,172,241,75,216,80,63,190,161,191,246,110,159,75,121,138,83,242,76,31,247,154,12,10,27,42,142,253,57,184,253,99,200,43,108,115,143,158,98,167,209,93,1,243,84,76,155,38,93,145,8,23,108,239,121,9,111,243,19,179,24,187,86,13,254,102,101,195,193,157,21,43,150,223,96,19,161,158,22,108,224,19,169,191,123,14,58,52,140,222,170,118,30,125,101,156,118,154,130,98,18,132,128,82,128,224,228,194,99,79,105,108,101,72,211,77,177,147,117,101,87,252,89,81,150,81,41,136,43,28,122,136,144,198,56,37,83,61,173,186,54,85,49,112,141,21,211,8,238,8,211,0,148,126,66,100,181,139,1,117,173,24,215,173,111,20,36,2,231,22,168,153,36,177,144,
141,102,192,118,204,122,20,252,23,48,124,111,219,255,2,195,242,158,193,123,128,55,43,45,87,239,249,133,222,226,232,129,30,27,220,5,197,240,155,101,119,211,247,114,87,29,192,173,134,183,102,209,253,52,166,105,238,86,92,90,15,84,98,230,21,62,53,246,153,45,42,143,52,67,45,228,211,210,91,79,164,180,70,7,53,42,19,80,158,149,8,47,213,83,36,205,152,214,52,39,25,193,10,202,26,84,129,162,106,146,182,169,89,161,220,222,38,57,8,77,140,61,145,109,80,7,229,230,55,215,42,104,96,99,224,221,133,230,110,97,103,107,2,209,29,135,203,229,242,58,254,7,60,124,63,135,217,108,255,207,237,174,27,20,241,52,90,161,136,243,239,239,48,236,223,249,209,225,188,219,207,59,143,246,0,161,78,78,60,160,63,155,30,224,155,9,186,254,15,17,107,255,88,113,197,110,135,195,201,196,41,219,29,62,122,53,164,86,6,117,105,120,0,153,197,180,33,53,97,41,241,32,227,206,14,160,209,181,171,166,179,174,46,213,150,178,146,156,1,158,130,165,19,133,148,201,
161,155,171,76,77,153,182,82,23,187,152,167,125,6,250,222,223,126,43,239,247,87,191,119,222,193,217,217,127,191,3,52,79,141,253,126,179,77,120,245,9,147,133,201,241,114,174,234,46,167,20,147,114,60,82,242,214,242,170,171,98,103,108,174,205,219,121,191,123,160,63,113,59,255,251,208,223,57,27,160,165,231,238,243,94,253,55,68,178,223,63,239,98,199,253,177,157,205,228,248,93,94,215,95,243,14,156,236,140,45,91,216,136,172,13,74,110,104,104,34,204,118,236,47,237,64,192,240,105,63,57,98,36,145,34,127,73,130,164,32,156,72,80,194,218,65,142,68,220,230,163,8,241,36,117,122,151,148,122,247,25,107,38,50,32,217,202,136,83,135,91,186,221,93,196,126,36,190,241,213,57,211,227,22,152,24,240,80,194,33,100,93,1,230,223,98,103,243,172,240,51,240,225,109,114,240,176,113,115,112,126,119,49,114,79,64,208,193,128,3,225,228,224,222,213,129,188,243,183,116,191,205,230,247,239,92,10,166,20,176,38,131,177,133,174,86,23,209,219,103,204,112,36,195,240,7,
213,136,209,96,108,70,160,218,160,10,121,172,33,79,75,16,113,116,223,24,97,87,15,44,81,184,150,78,200,176,124,99,51,76,96,76,61,249,118,10,131,200,20,174,96,188,128,69,13,119,120,23,36,162,79,177,242,63,231,34,167,79,64,188,153,29,67,197,197,8,62,69,151,219,40,112,129,77,160,37,78,26,52,86,153,197,46,210,100,101,76,98,230,206,158,81,226,100,208,224,230,226,104,209,99,103,217,173,66,48,121,101,155,11,208,237,88,234,211,241,211,88,147,43,251,56,255,122,156,187,28,222,62,206,107,219,108,233,200,61,176,10,92,233,244,21,62,143,123,11,188,136,165,170,12,91,147,152,83,139,161,199,104,199,38,145,32,80,136,216,178,180,21,154,49,183,6,108,169,87,218,52,176,154,132,220,54,15,205,200,90,243,50,79,41,70,160,22,142,192,33,45,126,250,182,20,2,238,75,158,91,75,61,113,97,2,254,80,0,2,158,106,33,141,240,179,90,133,191,105,100,213,164,18,137,65,18,241,233,144,8,209,76,140,66,45,93,50,118,61,185,123,136,182,61,127,
253,65,243,202,123,186,70,222,255,200,108,200,112,123,124,231,51,236,225,251,20,247,139,189,119,234,236,217,236,246,193,146,79,134,100,141,241,129,113,42,17,123,58,212,30,112,118,136,253,162,68,16,183,177,65,141,217,16,64,180,124,82,160,32,72,89,4,36,8,5,44,2,0,139,254,2,214,232,94,70,8,145,83,65,199,82,77,211,54,48,203,210,137,165,101,217,214,33,207,83,67,91,57,247,177,244,124,128,7,49,206,225,82,209,239,230,93,229,127,135,226,217,213,237,55,26,225,94,215,237,240,121,125,81,135,211,251,175,217,111,254,227,241,219,189,164,241,109,123,129,232,247,221,127,182,87,239,3,239,253,158,60,252,99,242,237,234,245,242,222,247,13,138,192,236,97,62,128,181,237,127,60,132,231,253,245,189,221,223,216,203,123,55,126,255,221,100,63,159,207,199,193,191,131,117,11,165,182,166,62,0,173,212,118,122,118,205,4,134,199,62,214,205,14,246,1,130,146,147,149,43,3,71,97,93,75,85,67,13,29,229,146,84,76,20,121,107,36,69,45,137,207,154,176,210,33,
171,225,93,127,82,244,38,121,82,155,13,255,98,242,125,149,119,213,221,247,43,247,236,150,213,250,239,7,210,24,95,57,124,226,130,174,187,95,176,120,184,216,168,142,29,238,9,55,57,68,74,99,126,98,169,153,74,76,111,204,233,71,128,104,211,241,30,189,255,125,213,223,59,213,57,233,189,212,251,187,87,175,207,255,253,62,167,253,111,182,251,231,166,235,183,190,78,199,239,117,255,243,105,135,175,213,110,156,242,93,130,176,105,9,142,156,7,7,17,79,60,76,72,166,47,166,255,37,182,155,79,34,2,244,214,32,34,45,9,226,138,68,129,64,234,191,183,82,73,41,198,181,152,150,213,50,23,120,192,48,62,98,225,172,149,26,214,85,88,205,99,128,46,225,249,252,25,54,251,89,172,98,41,107,27,194,140,178,236,191,4,58,17,0,97,200,194,65,14,106,46,211,48,1,227,102,1,249,22,1,59,136,189,40,233,222,222,219,215,255,238,155,223,87,125,66,210,136,16,131,42,150,78,148,109,137,138,179,193,197,218,163,204,8,55,105,113,72,6,90,241,6,185,56,34,57,
42,178,186,96,100,177,235,122,3,146,68,86,88,238,163,137,171,55,48,202,110,4,137,84,162,31,130,208,95,200,136,84,128,11,141,5,96,1,208,144,175,217,124,139,167,116,72,218,81,18,16,175,200,6,113,169,18,64,128,24,62,76,33,150,228,45,86,113,8,192,110,113,229,151,194,214,202,137,161,199,202,154,193,192,167,204,92,106,238,37,125,249,186,169,92,237,204,195,188,29,78,45,160,52,206,54,251,114,46,103,111,181,221,195,46,218,220,173,159,237,102,79,155,159,62,188,69,77,151,79,248,32,147,69,62,25,44,180,50,125,244,167,152,37,171,61,212,182,164,65,123,117,247,254,212,0,251,89,197,22,246,83,82,77,160,114,17,178,133,69,169,150,103,27,226,141,181,138,170,230,64,33,216,97,157,154,86,48,102,217,133,147,162,45,212,108,69,83,74,225,139,94,155,173,229,175,122,85,75,226,189,136,61,115,246,116,78,122,179,164,214,234,22,57,165,23,32,53,2,145,4,228,18,165,16,113,128,189,176,198,16,135,58,234,107,79,209,142,235,253,225,91,238,224,70,111,
111,101,224,255,216,220,21,116,119,11,235,248,40,179,142,215,180,250,222,214,195,215,112,173,62,71,166,219,34,99,99,60,110,157,209,186,147,134,166,173,213,117,89,103,209,78,80,218,74,211,170,77,204,47,57,181,97,41,180,107,167,237,37,16,6,133,176,211,153,16,217,80,104,82,154,13,167,81,23,176,143,176,150,145,81,5,85,31,65,131,134,200,3,89,47,212,52,113,76,234,234,100,228,170,234,69,130,232,200,227,16,195,117,87,152,173,32,224,222,172,177,251,198,88,243,172,140,92,253,85,171,216,172,118,227,253,133,187,98,243,167,188,242,135,213,240,178,187,78,15,223,118,219,222,15,196,234,58,62,167,211,166,29,120,234,9,246,254,241,4,122,185,237,254,62,80,14,188,202,253,207,251,233,248,241,87,255,220,105,184,157,14,188,237,114,91,62,94,39,220,93,243,186,127,62,146,169,219,236,50,181,58,252,119,40,220,176,101,225,4,114,237,225,104,161,103,8,32,36,164,143,98,108,204,153,59,155,120,33,162,70,19,165,152,22,164,4,14,26,192,49,43,198,168,13,113,
148,212,65,210,95,56,96,51,87,83,237,220,231,121,214,244,54,89,126,127,218,241,61,75,218,241,108,239,39,80,217,239,73,31,165,223,242,236,87,252,179,252,17,138,146,218,167,150,76,16,34,198,202,106,234,206,236,92,70,72,183,218,15,38,139,63,171,25,254,117,219,125,189,63,141,231,48,219,253,128,254,92,23,170,206,219,245,65,208,243,251,251,236,183,203,40,187,111,102,195,201,104,183,224,7,22,155,217,101,180,187,127,90,189,78,43,122,252,49,179,195,227,116,118,59,2,15,22,168,13,31,127,154,146,22,34,48,244,204,36,72,47,198,72,148,223,37,166,253,50,130,52,180,225,233,37,133,216,142,137,214,13,48,77,193,106,34,109,99,140,143,115,55,153,60,48,25,239,191,222,240,214,84,70,220,218,49,65,41,150,29,117,234,25,55,166,212,255,211,81,0,186,76,154,60,132,249,168,97,26,226,13,79,24,186,216,219,236,176,129,22,70,103,89,145,105,234,243,217,82,149,31,179,55,111,111,183,173,176,163,172,249,119,254,117,251,223,143,161,150,47,132,161,254,129,96,
123,82,138,83,29,97,80,35,72,168,83,33,20,195,147,37,184,204,205,236,73,174,48,149,130,173,152,10,81,80,74,101,3,212,55,33,169,53,153,21,158,233,22,155,167,116,68,2,22,196,164,11,12,140,111,19,79,89,55,181,43,244,224,16,115,99,208,223,116,142,251,160,62,12,176,222,189,33,234,82,226,245,21,153,165,84,145,146,8,18,128,163,95,152,177,198,28,122,16,236,50,95,234,30,80,138,61,216,148,185,193,155,61,138,131,127,77,219,250,69,176,69,181,177,204,62,87,197,46,235,110,217,106,179,228,121,222,88,98,79,96,68,114,234,73,103,234,0,112,51,169,177,119,23,231,205,107,67,84,219,84,210,86,202,217,208,82,82,82,195,91,150,165,157,22,181,139,87,98,182,114,213,138,124,22,83,148,128,108,94,219,178,122,125,173,147,141,211,246,24,181,145,5,202,63,6,45,14,207,166,244,35,9,80,224,194,122,218,239,220,109,206,233,11,214,12,212,146,66,247,182,70,194,12,209,221,122,134,19,93,39,74,165,70,160,190,179,184,196,129,200,2,83,44,150,138,
49,255,7,144,112,241,19,245,27,115,65,7,180,110,219,121,243,210,179,58,155,190,163,105,248,64,127,199,253,105,120,191,50,99,215,207,219,242,47,222,58,142,123,160,141,243,196,86,171,49,62,191,211,241,164,125,252,78,171,108,11,9,74,91,111,72,147,77,245,37,167,53,45,153,84,228,192,138,82,87,157,16,110,1,61,71,196,210,107,19,163,57,254,199,239,16,77,209,30,232,21,0,120,154,182,101,155,186,91,17,9,34,124,88,55,228,46,116,46,120,55,136,196,2,201,17,210,177,154,247,18,8,33,50,70,160,1,200,252,116,176,239,53,187,155,126,167,221,105,182,123,234,126,195,223,244,250,60,104,135,195,237,253,120,254,225,219,244,56,252,84,213,137,124,31,69,242,3,87,149,184,246,14,113,60,31,244,195,113,200,37,128,16,49,193,192,252,47,112,184,253,150,135,211,241,119,92,64,119,23,14,114,128,193,111,102,122,250,26,102,224,1,191,176,88,101,122,130,83,25,216,96,44,171,72,120,215,240,0,213,179,84,129,66,146,255,135,233,149,186,148,161,167,161,165,13,
10,195,75,21,31,158,52,216,12,237,104,73,67,58,152,189,170,106,251,78,174,141,89,127,171,111,245,122,71,224,248,184,239,219,252,199,3,241,120,159,243,244,211,63,74,188,190,28,78,208,173,194,207,86,168,61,206,72,53,45,141,103,65,34,166,251,157,73,127,111,162,227,246,185,253,64,180,187,11,214,187,63,174,23,70,158,174,239,241,58,126,25,135,211,219,242,57,27,235,154,163,221,108,179,53,142,93,94,174,22,239,182,1,160,63,183,52,153,217,179,189,86,183,213,107,117,195,191,103,118,90,204,169,99,166,43,99,31,96,181,4,74,45,37,97,118,86,164,180,124,161,105,165,90,2,108,69,196,141,50,73,158,24,253,96,196,232,73,234,100,53,164,35,188,3,196,191,83,66,77,21,139,203,233,206,179,153,208,200,149,15,70,53,232,133,41,120,38,37,60,185,56,151,90,34,179,136,76,117,194,57,137,153,56,75,185,171,133,1,224,29,84,32,90,200,84,35,196,194,124,183,209,201,56,46,97,247,113,74,115,11,95,17,127,223,242,255,31,56,1,68,42,91,28,162,145,
253,88,140,43,172,33,211,169,64,6,111,241,166,247,64,82,159,128,9,121,144,242,224,205,199,236,146,237,120,60,8,164,19,190,140,208,53,76,49,128,24,15,49,23,0,1,136,29,192,233,194,45,89,144,97,220,169,69,43,153,16,101,208,123,27,247,6,45,6,42,62,177,162,145,12,137,57,154,93,250,72,22,147,115,140,111,9,115,96,125,198,133,196,51,32,251,38,183,80,194,158,134,124,84,115,179,156,131,131,126,147,184,169,34,44,204,216,55,144,233,35,156,78,198,100,217,133,156,169,19,175,30,133,168,254,159,225,216,21,204,92,175,118,46,253,211,62,6,127,18,47,119,230,173,12,35,135,250,24,55,238,84,198,140,235,157,148,40,105,192,188,168,216,216,185,63,121,98,41,197,143,192,147,76,165,82,235,41,137,38,28,151,181,138,130,133,235,159,171,126,147,187,162,18,138,234,126,180,58,37,209,25,9,44,99,86,200,243,45,20,189,188,203,169,254,109,233,33,96,30,151,168,164,159,181,179,146,205,56,157,83,76,96,195,136,46,150,98,35,114,1,19,231,99,135,68,
236,6,132,103,84,247,253,242,33,204,252,114,28,65,63,237,26,252,71,102,217,4,213,209,225,90,174,255,27,126,223,20,131,211,193,222,244,46,254,26,142,147,196,245,218,33,42,39,216,70,47,65,156,234,60,13,165,33,20,102,91,164,212,214,20,74,116,44,113,165,73,16,83,50,108,237,88,93,114,80,121,69,24,229,107,149,11,184,182,168,71,59,199,108,34,71,149,96,41,151,178,234,166,129,82,46,105,163,19,108,191,189,7,24,8,4,49,37,82,217,217,143,239,72,133,48,81,238,119,130,81,10,228,16,173,111,174,33,2,0,98,96,96,97,242,97,110,98,230,101,230,114,114,237,227,105,115,247,186,189,110,191,218,175,150,124,128,229,112,185,224,164,197,232,93,84,25,71,189,162,229,61,154,200,3,194,89,244,199,15,116,28,223,207,247,121,159,14,247,159,35,78,2,251,160,219,114,239,169,205,157,195,213,243,6,231,248,187,251,140,38,43,47,251,250,20,110,3,74,124,195,92,247,38,93,19,88,235,89,90,237,74,87,166,174,85,105,215,83,41,152,106,142,88,9,243,
77,37,117,73,57,57,226,252,164,92,145,33,163,110,171,103,47,69,193,59,243,239,210,98,115,135,146,136,229,254,224,120,124,62,146,11,252,132,230,180,135,38,229,11,209,24,125,211,234,236,16,255,115,56,31,127,141,134,155,151,153,186,198,67,211,134,230,128,62,182,26,68,170,1,4,205,45,92,254,182,215,245,222,167,68,41,172,45,112,199,185,248,56,253,214,134,211,243,167,139,55,56,151,174,1,152,174,221,112,46,215,37,214,44,173,90,52,80,176,77,187,133,247,135,243,42,94,4,32,142,139,172,82,218,84,91,226,16,13,145,149,132,169,119,242,239,203,214,184,166,165,164,21,131,94,84,154,193,218,42,40,77,185,150,149,164,22,132,74,65,169,41,57,187,108,58,163,58,107,82,202,226,61,99,114,250,228,29,42,169,133,53,108,125,9,145,116,228,16,151,210,82,154,138,184,68,231,93,110,87,72,40,81,163,2,17,101,127,147,68,104,130,8,85,5,216,74,139,200,87,249,122,190,176,17,104,247,120,126,31,255,14,92,246,208,35,120,66,134,162,0,58,2,43,128,241,
209,193,43,148,44,7,173,230,97,67,172,88,12,4,193,125,234,1,162,146,48,4,193,163,20,97,71,89,155,136,20,70,212,91,73,88,216,70,113,74,214,34,81,104,229,76,41,81,19,200,240,195,100,139,89,139,200,40,245,132,36,80,59,37,18,136,204,27,3,99,36,51,146,18,203,151,88,177,37,227,160,29,101,145,147,179,100,55,34,184,248,38,176,37,58,153,105,4,155,59,37,54,38,147,146,41,87,210,153,132,136,73,28,214,66,132,84,162,178,20,246,61,170,140,86,154,160,119,163,65,43,107,137,18,41,104,80,70,4,197,99,112,197,179,22,80,48,139,49,53,233,141,153,173,33,27,20,240,55,247,240,210,2,228,145,19,55,49,85,85,13,82,69,82,91,211,37,109,95,90,69,226,8,221,211,136,21,55,63,126,34,140,105,3,83,22,149,17,252,245,113,142,211,156,154,73,141,40,231,96,150,99,121,156,186,180,152,135,234,63,128,85,97,39,69,248,8,48,40,88,115,158,85,127,101,32,178,77,83,1,189,119,21,32,82,37,187,152,87,139,102,167,66,20,15,30,
240,224,29,249,27,179,213,50,0,57,129,57,154,38,35,234,152,98,106,249,15,171,77,31,166,142,199,32,131,242,89,166,213,106,170,230,39,178,134,218,40,79,133,49,90,235,107,76,13,67,97,191,165,40,140,234,80,162,10,147,32,26,172,189,23,184,206,2,161,72,115,228,178,93,98,52,149,127,148,46,34,245,138,245,110,250,224,210,71,104,143,77,235,246,121,157,6,70,161,108,32,37,195,238,21,39,48,0,188,86,78,50,250,114,213,99,5,138,35,34,129,56,128,0,132,120,140,220,107,44,220,155,127,10,236,179,123,79,155,141,183,246,245,217,237,253,58,246,38,184,60,187,114,255,193,221,242,58,156,126,243,200,245,61,174,255,125,246,127,239,139,53,50,111,189,174,135,218,230,62,215,99,151,221,118,120,29,255,2,209,237,2,61,64,188,14,241,248,59,78,208,134,103,232,0,2,82,198,102,123,198,203,73,249,234,101,115,143,85,89,118,30,94,218,110,183,149,43,108,157,108,101,88,174,1,113,100,86,5,42,104,229,84,26,168,216,151,255,104,176,148,40,128,131,133,185,
40,35,20,156,113,101,213,61,64,119,202,106,47,183,158,183,158,98,114,184,171,78,167,115,234,123,95,215,147,53,177,139,74,208,193,239,41,231,54,158,139,108,222,190,147,252,156,174,47,160,255,73,56,218,224,31,91,147,30,82,208,77,20,20,36,112,97,108,30,83,115,243,120,221,230,131,217,242,26,69,157,8,92,1,215,215,129,122,238,246,207,221,217,245,119,15,97,162,136,161,65,102,237,42,107,73,6,198,185,155,210,100,9,181,211,78,21,58,74,113,245,248,168,187,38,6,42,91,91,174,117,219,146,84,76,204,150,85,148,110,226,194,240,102,26,153,60,53,84,241,167,240,208,14,32,29,49,74,128,94,216,155,91,230,125,193,22,181,163,20,152,56,50,158,160,71,253,23,207,47,147,51,235,253,175,101,47,68,48,105,73,36,230,73,205,138,56,134,68,140,56,84,67,75,41,53,102,147,163,162,81,77,178,48,74,82,210,160,198,200,6,21,32,71,99,132,60,16,212,204,63,70,104,167,70,247,79,94,190,254,55,222,250,190,167,64,165,67,57,47,47,247,70,131,157,226,
197,64,160,225,96,53,98,22,170,14,201,124,66,32,19,205,15,53,88,61,89,95,248,106,227,63,107,233,170,169,244,115,117,126,99,162,78,55,151,71,95,130,166,183,17,74,100,237,201,106,136,161,213,85,163,35,5,85,82,71,23,86,176,180,28,105,89,171,35,160,81,142,177,73,45,250,204,168,2,84,239,154,72,96,56,193,105,77,9,155,148,171,48,33,238,6,33,135,188,129,138,168,149,246,81,200,54,21,201,123,22,35,97,129,152,82,164,9,29,166,49,84,132,217,49,121,153,204,136,153,11,89,219,188,25,219,160,19,118,173,161,131,82,91,13,164,45,71,107,53,156,216,106,151,57,166,6,213,27,17,171,148,167,161,154,20,77,228,203,255,1,215,254,239,10,32,72,8,43,130,54,237,66,212,154,169,148,58,58,116,134,245,234,104,182,156,123,205,21,24,77,237,205,71,203,145,141,227,163,214,95,60,248,171,36,191,253,184,96,52,67,33,152,155,3,0,52,131,42,18,98,42,93,208,72,211,131,57,169,215,225,91,7,33,140,189,67,28,202,225,241,200,154,75,167,49,
246,204,223,113,32,16,42,21,71,195,103,119,226,174,251,177,77,7,8,235,27,64,47,127,27,193,30,246,46,131,203,237,105,56,85,251,190,205,122,195,189,217,242,174,30,91,254,77,249,204,205,156,233,165,54,217,199,216,168,64,200,154,180,84,246,65,112,76,160,65,123,233,152,69,115,232,13,7,76,228,109,41,65,184,228,246,198,3,122,7,210,42,3,15,180,86,188,43,150,110,184,1,172,240,34,67,96,40,200,32,20,96,208,40,155,72,117,64,167,159,160,4,87,195,249,215,167,254,43,33,34,210,188,103,41,251,126,239,34,107,62,236,37,204,59,183,61,11,171,203,249,197,237,217,203,192,108,153,42,156,193,123,5,254,226,12,3,23,215,166,106,191,209,245,117,60,158,97,195,251,251,238,79,75,246,254,138,93,195,17,47,139,224,171,116,29,191,16,225,53,246,126,157,95,203,246,111,249,189,189,175,43,236,248,120,186,31,193,123,25,228,198,22,4,57,157,204,142,199,3,67,140,172,9,198,5,164,54,60,122,99,205,107,56,170,30,151,133,255,107,153,234,106,20,188,21,
112,149,162,202,185,133,85,237,148,21,135,76,151,173,189,173,167,255,29,22,8,249,220,147,17,110,36,28,21,248,132,20,90,182,151,7,23,249,114,217,3,207,239,243,124,56,221,44,149,241,125,85,38,239,174,234,210,239,253,153,206,216,98,118,124,223,149,175,244,109,92,127,248,240,149,208,25,48,164,168,41,185,26,101,94,43,51,181,116,94,253,174,203,237,242,122,24,191,219,251,98,184,29,197,94,223,201,196,208,186,20,219,58,201,58,245,86,81,74,202,81,121,70,133,27,229,185,8,27,27,178,1,66,81,49,63,60,227,42,244,20,165,146,84,88,237,156,90,102,117,209,212,24,217,5,53,164,44,115,49,46,239,200,124,82,226,253,12,164,19,177,6,33,23,244,127,192,216,67,31,61,43,200,61,77,55,33,75,172,8,124,164,132,6,216,124,32,39,40,27,133,198,50,225,132,32,132,239,77,78,8,24,62,145,116,146,114,139,75,125,130,82,65,250,196,187,72,73,133,214,99,56,238,215,154,51,36,83,127,216,91,141,238,222,254,106,20,14,61,180,119,125,239,243,240,15,
40,145,253,12,61,6,135,202,80,208,200,177,160,40,72,2,103,183,144,125,40,162,173,167,20,7,46,230,227,36,13,26,150,113,103,65,202,56,106,163,141,177,222,187,19,213,75,83,120,211,14,74,111,186,78,79,164,174,37,147,39,66,161,43,107,71,140,74,162,88,114,136,42,221,76,101,124,91,99,69,141,88,202,210,30,66,9,98,24,133,41,9,130,197,53,59,107,39,170,236,64,2,22,2,80,200,153,9,86,168,86,172,128,53,105,59,89,41,163,45,85,67,165,141,182,253,115,138,89,25,211,152,182,110,235,198,50,164,156,157,60,119,208,112,188,188,149,84,57,161,69,44,69,37,174,68,176,98,181,162,24,67,132,74,32,141,240,46,4,214,198,52,164,134,149,250,139,40,77,72,201,232,247,243,191,250,223,111,184,95,216,114,180,246,127,205,95,219,234,228,43,166,131,140,215,51,181,227,130,66,123,193,207,141,101,74,155,41,98,126,111,235,135,127,152,206,254,172,206,115,31,61,207,247,29,103,83,47,2,154,187,140,115,185,135,160,44,158,144,82,62,249,148,231,67,214,
253,74,9,159,179,159,152,113,45,115,68,90,235,53,86,230,236,82,187,152,83,127,77,237,69,67,140,234,204,111,14,153,204,238,159,162,235,77,7,164,126,250,103,6,236,98,103,235,159,129,56,27,0,183,207,185,86,241,96,10,40,242,183,47,242,118,110,110,13,179,52,172,46,146,22,193,80,237,106,6,79,204,101,12,26,122,227,8,187,89,6,20,165,55,21,7,195,241,214,0,104,241,79,57,134,201,237,16,40,77,82,205,213,6,227,194,57,209,180,75,178,128,235,157,126,20,170,216,172,225,82,26,32,202,38,13,27,83,229,12,29,120,144,67,5,184,179,131,150,98,17,106,68,218,210,203,145,213,246,33,20,15,140,50,132,226,44,139,207,159,192,21,188,247,149,247,23,216,167,184,184,184,79,78,182,135,65,106,251,249,46,71,251,105,249,245,223,46,168,94,103,138,222,77,63,191,247,251,23,46,158,110,123,91,79,216,182,7,248,47,58,126,235,158,229,237,57,189,112,76,20,217,114,59,91,30,187,189,230,120,59,110,127,161,93,111,241,178,112,161,90,14,147,145,85,22,
66,129,255,243,250,153,181,252,79,246,174,186,92,61,96,4,127,180,106,202,250,99,229,28,30,57,129,127,108,96,21,229,0,38,131,193,144,164,229,140,168,254,128,190,6,239,89,202,121,94,160,175,229,244,61,124,15,177,219,207,79,133,156,35,191,195,38,189,249,83,63,236,53,95,159,139,16,85,32,90,42,64,192,130,150,16,127,169,15,186,201,135,179,221,109,118,124,86,151,159,234,255,219,135,107,21,118,115,187,53,67,39,72,41,2,56,233,155,216,208,9,177,127,197,103,222,1,134,70,74,8,77,191,47,18,17,91,172,213,12,209,181,5,14,19,75,39,43,79,80,41,37,89,149,52,199,229,142,111,89,85,108,40,139,117,230,161,185,140,16,218,233,39,245,104,155,160,10,38,179,208,52,196,148,197,207,170,182,32,232,187,214,78,8,2,238,32,85,78,112,173,169,82,74,242,89,53,211,81,74,103,20,82,11,78,60,162,144,33,32,141,8,101,181,100,154,203,178,50,185,241,113,96,170,17,111,226,76,216,224,126,229,136,188,167,106,14,207,82,27,221,57,58,199,254,144,
35,255,73,214,113,30,170,48,51,94,229,33,219,61,142,97,252,98,211,235,92,200,36,14,93,136,141,225,218,24,59,237,2,4,27,52,173,99,132,19,171,192,41,157,200,181,68,6,83,251,24,168,58,37,91,104,115,229,193,181,100,232,247,7,19,91,17,60,204,187,1,182,40,196,76,36,123,193,161,85,36,99,202,39,227,116,140,205,0,40,155,67,50,20,54,203,90,137,25,116,210,210,45,114,176,147,249,152,70,140,1,153,178,150,30,215,96,120,224,183,36,135,173,208,28,34,72,232,128,42,227,233,81,119,234,24,13,67,234,193,96,95,115,108,52,172,209,90,75,97,20,97,171,109,197,4,90,105,45,221,201,185,98,182,210,150,66,102,255,218,135,122,135,200,13,170,26,33,250,4,213,83,165,170,163,129,8,112,148,85,107,154,155,53,171,202,139,163,12,199,142,126,217,166,243,79,224,206,127,209,207,181,127,92,35,253,180,201,239,128,186,40,10,179,216,69,74,13,146,74,223,25,165,62,249,169,242,23,203,126,171,74,248,253,45,127,127,173,31,98,214,242,87,88,254,202,
155,237,175,177,242,172,204,158,164,213,128,165,32,194,167,58,162,249,103,232,70,183,235,249,208,122,176,65,10,98,250,150,186,238,37,87,195,133,169,3,104,119,117,59,46,243,116,204,238,99,17,66,145,38,104,24,65,60,151,57,126,179,9,22,74,156,216,4,54,103,143,103,251,221,59,64,137,5,247,49,6,64,6,129,205,7,144,43,49,18,20,80,37,91,185,8,64,4,4,157,26,35,8,210,72,229,82,124,113,175,240,34,15,0,147,178,109,11,47,25,138,136,246,238,34,168,246,149,46,19,244,218,176,127,16,137,136,242,149,17,36,53,50,70,175,136,16,84,0,139,163,55,118,136,123,214,222,22,46,0,217,12,102,14,174,255,60,182,180,221,244,178,125,239,222,231,231,58,218,61,47,223,87,182,29,133,19,163,27,167,27,110,215,223,116,253,195,22,20,236,120,0,93,76,140,22,224,137,245,87,144,110,123,211,243,111,57,201,127,203,93,98,127,193,254,60,33,44,110,231,84,59,143,195,101,62,184,219,205,223,58,214,95,171,216,53,175,77,109,143,76,129,141,93,85,162,
211,42,69,22,13,114,19,211,114,224,176,217,206,104,162,238,38,14,114,9,121,137,166,44,155,202,181,30,167,207,226,36,122,221,78,207,243,135,230,234,249,191,251,199,226,7,81,208,219,240,186,26,224,134,119,131,145,155,69,212,106,66,34,222,97,144,157,176,16,229,37,245,184,223,91,155,173,130,255,78,125,111,185,189,104,109,11,53,38,10,132,202,29,84,74,233,210,199,205,14,33,84,228,48,128,75,222,49,116,124,28,1,89,239,64,136,99,196,198,84,16,18,42,43,212,106,114,112,229,195,59,73,74,67,42,17,242,116,84,210,203,181,170,200,206,142,224,181,89,199,139,82,217,231,86,77,235,126,201,219,69,105,19,78,205,213,232,10,77,103,152,226,179,32,9,173,118,116,64,81,202,166,155,141,142,206,10,38,154,140,89,222,192,144,66,32,232,4,226,88,0,129,136,77,67,43,47,237,96,202,53,181,246,93,218,128,153,60,173,129,210,63,20,218,167,236,163,90,163,162,118,162,228,125,37,179,108,225,191,100,81,63,178,102,90,4,133,183,126,197,14,109,51,249,103,167,
202,94,230,60,242,76,153,127,103,6,124,45,232,105,193,247,192,50,205,113,26,37,141,180,137,92,0,120,43,232,162,54,240,175,218,139,239,202,201,24,157,135,37,108,98,134,82,5,16,90,201,61,75,197,240,50,198,161,23,119,224,2,184,209,245,76,199,134,72,38,69,80,52,33,195,73,87,1,26,18,150,168,109,162,231,217,16,192,42,18,172,82,145,170,104,105,194,53,201,9,86,198,86,129,155,164,68,75,64,222,212,146,73,26,202,88,10,116,155,200,165,14,101,89,124,253,179,187,183,101,43,163,141,201,163,10,169,140,32,229,98,77,230,140,210,1,20,14,73,185,85,60,41,46,152,217,36,186,148,186,25,80,186,250,197,107,18,109,128,113,67,53,148,161,82,17,157,204,156,206,241,153,243,54,242,100,84,50,249,94,97,221,229,166,121,93,236,157,101,63,181,184,248,237,102,127,75,59,126,39,82,248,8,37,63,144,180,204,66,179,17,218,55,79,33,179,205,54,78,235,158,194,236,135,48,250,51,52,118,58,107,59,109,241,209,255,36,12,65,84,146,51,7,17,105,236,
115,145,123,249,16,189,51,123,80,202,219,105,144,114,54,241,133,140,240,117,111,145,133,113,183,140,207,178,152,195,88,246,242,54,32,125,45,80,64,147,211,8,145,120,133,192,102,180,194,91,212,189,197,43,95,48,157,37,41,194,9,48,117,173,137,85,2,137,236,206,24,94,42,14,199,213,146,165,10,49,96,210,22,45,122,14,10,225,32,194,64,156,1,62,138,252,136,53,17,4,252,34,175,72,163,159,109,28,221,174,123,15,66,17,240,69,60,76,201,17,194,3,179,145,1,38,146,128,145,123,126,106,174,198,158,49,112,17,67,72,174,145,189,189,200,219,251,197,33,53,153,155,158,86,211,139,233,251,93,109,15,80,132,0,184,238,214,19,242,110,99,30,28,167,131,225,179,60,248,63,95,232,30,98,129,15,224,222,189,62,144,34,176,219,226,162,221,242,123,224,138,243,213,68,184,97,181,173,232,215,103,202,126,160,246,102,233,6,251,131,248,154,180,5,42,34,177,89,145,118,236,32,138,135,138,217,214,146,14,29,114,191,4,26,134,92,189,110,196,149,249,87,237,251,187,46,
163,213,73,116,179,66,163,233,250,193,133,244,156,187,60,203,218,237,48,123,31,216,48,78,17,254,46,58,59,110,44,248,212,252,142,171,85,204,211,26,52,37,8,1,66,23,188,227,93,53,143,179,195,134,53,66,77,96,62,70,66,74,170,105,106,104,198,182,12,147,36,40,217,223,1,140,104,132,8,119,144,171,10,10,253,21,141,53,201,53,34,178,158,77,212,176,208,9,18,82,246,70,0,51,183,47,88,17,44,105,62,131,67,53,110,237,49,151,144,203,59,214,156,57,29,148,215,33,153,85,31,196,60,43,151,93,222,53,82,234,178,134,212,242,172,169,241,244,13,199,127,79,132,111,75,25,213,136,135,118,74,209,14,102,72,42,4,149,160,164,23,80,138,15,37,135,181,176,13,15,40,49,53,147,216,244,145,11,110,224,212,99,255,141,67,11,136,126,202,34,222,89,71,108,83,22,103,148,47,180,127,250,28,235,215,207,204,158,123,18,205,188,209,97,106,18,235,141,199,132,9,129,19,113,103,88,193,164,245,136,165,243,142,212,4,89,167,59,55,204,111,145,95,108,225,49,
15,40,198,74,187,139,101,173,216,33,137,66,63,51,166,8,9,48,39,58,218,64,116,168,61,169,66,16,92,49,137,87,192,100,42,197,66,49,46,17,11,91,10,236,80,150,5,0,24,61,71,233,118,200,6,131,61,222,133,76,2,39,117,2,100,178,157,44,202,206,134,244,183,173,204,102,157,221,117,198,144,184,198,31,201,166,198,211,85,98,166,210,244,65,227,96,82,227,230,195,104,95,99,100,142,226,243,227,107,42,49,244,148,216,204,156,186,55,112,31,165,102,83,162,37,155,180,217,164,77,89,17,117,224,15,60,168,106,39,175,238,230,163,103,175,47,198,225,129,128,12,89,248,37,33,91,78,85,78,195,193,103,209,140,129,133,55,227,105,9,19,38,92,36,29,50,30,75,32,34,33,16,150,198,72,61,174,231,206,27,197,121,80,196,69,91,54,200,214,197,0,202,231,6,96,55,84,1,23,207,21,104,169,80,5,240,71,130,5,52,41,187,227,145,70,111,234,200,126,233,64,6,137,91,12,128,50,91,121,181,151,63,120,201,237,110,194,222,245,113,175,155,195,86,253,22,
170,30,40,229,59,241,66,230,188,79,166,96,40,41,146,163,138,126,10,126,91,100,162,136,119,138,0,193,162,183,136,218,49,15,130,130,150,208,100,24,221,43,106,220,15,72,104,109,77,177,102,205,231,98,216,146,65,219,160,64,171,23,10,228,138,182,197,210,177,194,143,0,27,170,233,118,21,43,203,149,209,87,84,10,53,204,4,171,189,179,191,251,3,117,165,238,206,156,68,254,64,224,113,254,224,81,164,234,27,186,101,10,231,202,50,117,199,10,120,10,87,77,216,215,94,125,129,1,127,45,28,123,111,149,183,193,212,63,183,24,43,94,92,155,173,247,238,120,217,79,63,147,251,246,15,98,19,181,96,46,180,4,240,42,122,127,86,241,51,19,222,70,121,96,79,196,226,243,177,190,48,97,244,140,121,22,58,138,60,230,237,170,183,108,124,75,174,30,85,107,1,127,43,1,118,29,155,24,87,168,60,27,53,110,72,101,147,185,40,110,95,1,165,37,89,146,126,64,122,57,59,59,66,88,236,180,216,46,184,123,69,175,123,235,116,251,109,150,239,83,244,157,125,229,241,175,
39,243,227,19,145,172,248,214,147,109,176,154,208,7,204,5,58,120,249,178,247,235,43,154,122,169,161,169,78,68,22,25,132,20,73,188,235,65,21,240,146,120,19,117,162,213,25,173,155,86,78,77,84,106,232,0,218,68,104,95,157,239,238,27,164,9,9,145,122,140,17,77,142,150,192,144,82,201,155,137,0,68,72,73,4,27,24,53,9,194,201,151,209,138,102,140,187,44,197,245,67,46,204,57,151,6,1,184,216,102,9,34,149,142,108,16,28,76,171,82,86,37,174,107,88,63,72,237,152,58,80,235,154,28,130,199,241,36,162,22,32,190,84,48,171,225,16,33,159,75,1,149,144,19,95,39,214,146,140,131,73,16,211,156,51,36,77,155,147,117,251,40,1,125,109,129,242,160,251,49,194,116,212,65,195,47,41,242,91,226,177,101,186,88,157,24,188,32,248,28,96,195,24,3,99,82,56,49,67,80,215,105,3,196,44,22,112,16,8,25,2,159,22,153,169,154,134,17,136,72,215,2,34,54,98,17,30,30,161,66,70,66,54,114,33,79,205,26,201,246,143,133,69,252,31,9,
231,212,118,61,179,46,209,191,62,109,219,126,166,109,219,182,109,219,220,239,183,87,206,147,131,92,213,119,213,168,116,71,62,229,172,53,115,160,17,35,7,98,36,125,36,25,6,93,208,164,174,132,176,149,123,114,69,235,82,107,0,64,193,40,62,137,198,13,156,92,229,166,16,164,14,92,192,20,178,56,233,193,61,207,8,204,108,240,88,106,12,140,10,12,45,234,248,202,91,252,233,243,9,94,219,248,171,179,193,20,208,129,121,121,182,118,2,23,191,231,12,190,229,122,242,232,91,7,227,0,8,142,195,175,77,219,52,158,11,122,100,141,195,34,49,176,181,240,70,225,143,126,112,83,86,50,143,87,176,121,82,106,66,103,66,124,182,167,33,158,61,11,49,121,218,71,127,158,36,255,6,14,98,145,251,83,104,229,220,182,36,187,149,44,168,159,192,41,35,112,208,242,189,250,155,64,245,0,14,25,145,173,240,196,109,235,127,12,148,115,149,164,77,176,129,211,24,103,190,19,241,235,126,158,120,47,172,95,131,203,165,71,85,221,178,169,231,221,162,48,117,22,244,253,54,80,
38,99,44,135,224,255,158,42,81,130,212,33,88,152,79,224,209,233,251,125,73,233,4,164,3,38,98,88,64,51,63,136,118,17,8,218,66,36,205,58,147,27,180,71,57,229,115,213,76,161,60,54,8,0,168,72,16,150,123,223,37,127,20,117,37,20,207,108,72,26,193,173,86,247,233,212,221,160,190,5,232,60,240,248,91,86,232,48,125,208,16,161,15,4,194,143,96,250,216,199,198,226,100,125,228,170,51,135,36,136,16,19,122,205,247,47,134,156,198,18,74,237,30,121,98,136,44,240,161,97,170,128,114,238,113,181,152,106,46,25,99,203,78,93,116,85,233,85,91,197,108,5,105,11,160,24,220,142,255,148,163,234,68,236,0,175,157,241,3,202,20,181,106,148,5,214,141,172,175,233,37,186,166,206,174,3,149,92,203,193,204,77,149,197,113,148,106,115,148,96,120,205,244,160,73,143,52,237,179,169,95,214,149,241,147,70,180,244,248,145,149,228,124,240,23,180,90,46,243,12,22,249,179,219,30,135,207,254,245,125,253,174,239,75,167,81,218,213,160,20,209,227,159,91,236,112,
187,46,141,215,241,58,220,143,207,112,255,89,210,231,171,177,116,59,218,63,237,61,80,228,39,219,76,197,177,112,97,113,76,206,82,31,178,109,219,2,237,16,82,81,20,201,201,111,205,170,200,114,72,147,148,238,36,208,180,70,3,8,250,43,21,8,1,9,19,81,145,226,150,193,138,24,220,64,42,83,62,214,96,109,71,8,164,38,248,51,254,81,145,98,5,32,241,8,39,196,101,37,167,66,236,35,92,100,140,131,234,150,19,6,89,234,174,188,223,122,26,48,168,65,148,61,179,0,32,163,154,60,224,226,151,40,123,30,72,0,149,67,67,230,65,53,207,71,130,65,214,20,24,43,231,85,72,72,115,66,136,137,2,155,178,66,70,189,50,213,178,208,12,40,246,227,250,167,198,156,87,235,35,114,104,80,223,107,34,64,208,86,200,161,65,76,223,52,124,252,239,191,141,245,5,127,100,140,45,96,246,193,41,62,250,134,16,32,195,165,244,44,80,60,17,75,67,212,98,3,94,141,236,18,153,203,176,231,63,123,200,32,104,32,10,64,0,121,30,236,183,21,114,98,218,155,
191,119,183,209,251,168,12,96,11,106,212,125,36,100,127,224,108,165,22,61,183,82,14,83,6,138,156,109,53,234,0,45,12,237,244,89,42,247,89,60,122,214,232,73,88,77,32,212,3,136,114,150,1,48,67,75,79,189,22,59,95,247,211,158,196,196,26,217,101,28,164,238,223,237,19,96,95,218,110,5,128,24,42,218,204,153,99,121,140,139,141,91,60,37,180,252,47,239,238,208,178,79,154,27,70,44,227,96,205,20,168,68,27,217,80,177,154,174,82,95,212,50,97,124,196,196,169,72,101,86,210,229,22,240,46,228,30,92,62,101,4,12,240,1,87,204,30,20,222,245,7,244,195,237,101,223,67,54,32,162,27,80,51,219,133,200,1,238,2,182,108,130,199,139,223,22,217,236,83,176,58,69,0,160,45,38,78,143,103,173,227,47,174,37,38,215,203,60,39,8,250,174,224,31,61,197,209,239,138,200,36,144,131,234,126,148,247,2,135,104,64,14,94,5,24,51,166,147,36,228,235,236,65,194,95,251,52,134,55,8,35,2,67,11,64,42,146,31,202,30,25,225,209,14,237,11,
209,25,97,26,144,169,220,18,50,10,37,141,124,32,64,155,82,187,128,113,160,176,59,50,104,27,132,205,231,76,3,71,186,86,8,70,214,20,76,16,50,253,216,72,1,171,149,174,237,242,123,75,31,174,111,135,210,123,181,14,247,182,128,127,202,127,252,61,70,204,161,143,85,138,30,140,192,121,76,223,60,38,119,161,93,182,187,122,154,144,234,28,100,225,230,194,241,173,30,215,78,8,74,29,105,178,159,48,91,13,43,109,190,170,102,96,126,26,91,79,15,195,19,80,10,79,23,217,79,89,183,159,156,23,187,69,229,250,24,149,91,138,225,116,179,155,91,141,81,38,40,103,98,135,84,97,227,37,185,234,46,100,237,150,139,161,151,173,146,177,134,212,98,40,195,181,215,57,2,35,68,227,132,95,56,111,229,194,41,80,67,82,171,191,108,104,184,182,139,125,157,207,106,160,166,246,85,237,110,247,188,45,151,215,227,113,248,28,242,207,131,179,0,92,157,11,247,7,219,226,118,253,223,169,90,159,138,70,70,209,109,25,182,35,143,57,191,127,113,17,188,10,36,107,184,197,
93,221,81,74,163,4,43,203,234,144,35,244,249,205,106,141,85,208,70,169,198,217,11,101,7,204,5,134,113,142,180,3,198,247,65,129,109,128,6,170,168,235,66,66,19,147,234,17,148,78,134,136,210,76,146,147,164,39,161,36,121,255,236,153,19,119,140,29,5,83,1,170,169,16,105,158,37,103,62,205,171,208,248,38,52,172,16,109,243,200,174,247,168,74,232,2,48,248,197,189,38,116,140,82,2,20,135,233,215,230,129,189,63,196,106,42,140,131,142,147,86,53,0,228,94,68,154,8,201,221,180,254,170,156,232,213,75,76,228,5,234,193,206,169,16,126,66,218,203,117,128,142,136,97,234,125,167,197,41,196,220,134,238,59,193,109,209,255,142,65,50,157,200,41,35,209,147,92,160,86,114,4,34,136,13,168,117,33,189,176,134,172,67,146,203,137,68,165,103,24,47,142,208,58,114,130,25,28,237,210,201,88,72,50,109,219,226,41,31,136,96,42,240,191,104,241,100,208,131,18,15,225,4,12,20,133,135,131,203,41,179,113,96,233,90,160,22,173,107,113,90,165,124,224,63,156,
165,48,69,86,143,141,22,31,190,24,204,67,105,253,137,215,113,169,159,224,249,186,173,152,34,144,191,188,54,75,158,174,179,149,120,92,251,103,43,178,246,231,111,61,220,155,161,22,157,43,44,63,190,145,67,145,9,139,48,232,189,154,132,1,254,60,42,151,249,4,126,122,102,8,74,222,15,169,74,147,22,130,148,57,2,47,32,106,128,231,143,122,4,211,207,101,147,159,81,248,73,232,46,9,6,190,4,24,1,6,144,4,32,155,199,162,106,124,201,131,40,223,242,161,240,221,11,206,230,145,137,248,81,237,40,174,61,98,7,131,128,175,200,140,0,129,127,44,65,196,99,47,101,102,6,112,249,13,130,12,224,32,33,124,225,144,119,142,142,62,152,4,247,56,129,51,88,227,229,161,50,32,184,95,16,120,28,112,44,18,155,43,73,144,23,226,104,207,13,130,67,31,146,212,118,203,252,91,96,142,197,68,64,128,107,63,194,216,148,1,103,224,62,96,173,19,0,215,130,185,114,240,100,106,87,80,97,107,177,240,127,125,86,48,9,132,65,154,133,115,125,230,29,164,66,182,
10,24,1,50,229,94,68,80,67,12,217,66,249,99,56,64,164,143,229,115,12,115,55,227,226,69,63,156,246,230,7,182,154,161,5,28,191,225,83,145,175,52,240,23,169,217,22,148,32,210,154,161,93,194,77,207,101,217,234,222,15,161,173,242,246,33,102,103,251,201,158,71,183,255,183,217,155,31,238,134,183,199,221,241,254,169,98,250,125,209,79,31,213,163,75,125,188,111,99,239,199,190,236,244,24,216,215,7,71,46,24,154,33,151,245,84,82,173,190,15,89,173,119,102,159,224,170,101,128,165,242,20,75,78,154,236,32,199,102,230,108,212,142,101,69,249,9,12,168,6,137,199,114,18,99,144,23,206,131,24,134,6,246,232,215,190,173,62,253,241,240,135,61,47,111,103,154,188,191,154,157,29,113,4,97,244,109,197,11,155,234,32,243,139,6,46,205,111,37,169,218,78,206,175,181,251,17,55,214,93,71,184,170,31,244,81,22,54,21,19,243,208,77,48,214,114,133,197,228,149,107,205,201,213,177,175,165,75,14,82,188,31,71,7,252,8,132,113,169,32,32,32,134,57,158,177,
190,196,33,56,57,33,177,79,162,118,211,131,188,145,119,42,104,123,130,96,12,112,179,254,16,101,213,144,240,36,102,205,42,71,24,154,145,156,57,67,26,33,230,66,52,255,24,168,244,89,36,73,210,19,2,218,179,13,129,186,32,245,63,5,164,21,16,72,151,117,157,140,8,153,64,89,144,2,33,158,151,185,89,131,85,45,161,229,242,246,141,135,161,141,8,131,2,51,243,195,154,3,136,84,105,208,186,188,32,90,91,148,178,128,243,211,76,160,61,223,255,83,210,204,102,169,37,157,125,72,57,1,202,68,194,14,161,2,25,104,248,41,240,40,216,142,118,55,147,128,186,144,13,222,111,171,141,220,92,10,179,163,163,107,219,2,72,114,167,113,249,82,12,83,182,13,156,200,86,12,48,100,113,8,23,80,249,0,5,210,73,44,4,78,186,145,178,24,146,161,26,224,51,63,32,242,16,19,129,99,75,48,132,61,8,36,248,66,233,39,79,112,191,239,51,10,216,176,153,108,225,229,128,246,190,67,143,38,221,251,241,139,127,204,136,179,104,119,208,63,242,244,83,236,59,34,
208,61,20,81,140,92,18,230,10,19,240,234,52,100,49,148,139,101,175,233,117,46,241,199,50,55,148,178,230,101,1,217,10,55,87,142,52,51,82,211,9,150,52,26,134,130,201,105,176,47,44,80,73,40,209,234,180,37,0,160,23,187,136,56,171,200,115,135,97,6,18,139,70,156,213,235,38,218,106,107,27,90,146,69,195,61,113,107,142,144,52,18,105,9,60,3,207,49,16,191,95,53,229,19,1,49,20,135,151,139,66,170,69,33,51,143,55,187,55,77,245,31,207,55,128,112,177,143,26,135,162,97,70,64,5,8,219,140,47,21,189,217,8,92,87,152,214,55,0,153,43,72,234,197,42,28,60,242,136,64,49,53,203,147,210,246,7,234,240,204,25,240,75,77,250,156,218,171,74,186,37,8,20,107,161,0,90,57,208,58,46,136,92,235,89,87,233,8,180,245,193,163,87,2,74,216,231,102,252,228,60,17,253,20,161,53,76,36,200,117,21,65,113,136,53,64,234,42,38,209,177,186,190,204,13,115,23,131,140,38,196,213,185,47,38,188,24,150,54,200,97,184,127,203,56,20,
184,59,193,146,254,34,69,219,67,224,215,126,188,126,242,171,17,1,202,61,63,128,183,112,203,139,252,252,155,67,70,42,151,194,244,82,109,251,25,126,119,3,33,103,178,107,151,194,71,178,152,59,45,254,67,205,197,212,174,48,85,175,21,162,94,6,231,34,116,7,239,248,209,154,103,96,110,158,118,55,98,57,120,125,102,185,196,219,27,86,186,205,109,18,49,92,30,211,28,40,253,8,39,58,111,164,84,171,245,16,96,189,92,87,22,244,245,221,202,71,61,136,28,62,223,149,110,230,59,237,22,187,209,245,117,219,174,206,163,231,106,117,92,144,140,100,127,203,13,124,109,168,187,80,107,55,166,137,241,101,116,55,95,219,236,93,9,94,234,236,204,147,251,90,156,40,48,171,98,222,42,6,125,70,251,40,33,167,120,130,160,202,106,51,24,205,116,71,198,72,183,16,59,202,19,8,117,171,212,102,12,149,118,97,157,68,115,46,161,99,253,121,10,25,94,42,198,42,182,106,236,167,167,101,145,55,73,130,0,193,54,249,100,18,4,80,140,213,162,127,19,53,105,21,206,136,
119,153,71,142,96,65,235,35,61,221,91,244,251,225,2,103,190,62,233,163,33,85,60,98,5,181,87,146,128,126,3,226,39,100,220,181,184,20,102,174,172,74,92,129,20,201,33,90,227,222,29,153,135,112,84,52,101,25,25,109,173,19,248,77,219,33,216,88,210,94,106,35,226,187,154,117,115,252,23,205,247,67,119,125,214,173,207,7,12,180,109,128,40,171,207,1,33,112,172,1,26,84,134,227,100,74,53,50,229,8,6,114,65,8,22,92,57,215,39,8,49,230,33,240,214,245,52,14,124,249,144,47,254,0,116,26,93,15,14,227,10,4,147,31,195,151,96,194,200,74,161,16,180,35,71,86,9,134,38,84,163,18,208,126,203,207,68,133,161,117,6,50,131,103,195,134,133,102,162,147,67,20,49,131,209,144,195,167,143,33,136,65,224,192,160,13,163,103,19,61,95,234,63,242,93,162,125,54,240,227,172,206,84,210,169,100,48,112,40,111,45,203,242,115,182,189,228,169,4,100,227,204,43,115,146,116,113,6,247,108,134,160,239,38,1,16,87,214,208,126,239,147,105,108,236,10,
39,117,202,119,200,104,253,195,52,145,81,126,68,216,11,195,76,30,98,70,43,197,226,221,163,67,100,41,138,117,9,155,126,67,36,114,183,22,116,200,95,93,251,201,171,221,10,149,109,132,1,168,202,119,197,179,88,33,163,64,24,68,145,131,171,122,16,168,34,136,74,191,63,152,148,57,238,123,157,222,58,52,248,65,35,24,199,177,176,28,136,112,239,16,211,172,138,249,146,40,75,58,119,234,96,215,144,243,213,120,97,146,166,5,196,228,116,116,118,84,192,17,132,20,208,57,92,194,17,26,140,62,60,0,210,76,39,128,201,161,145,176,152,53,248,224,105,51,16,180,59,97,230,86,27,155,40,159,43,224,170,65,3,215,98,234,200,63,84,131,8,195,58,16,0,7,216,72,250,68,91,160,112,138,200,98,132,48,22,222,177,191,159,206,2,20,105,149,110,32,161,207,118,246,12,216,150,233,50,250,60,248,208,32,182,233,157,133,245,8,234,17,222,240,241,207,39,199,91,25,8,33,195,89,81,220,82,137,227,93,226,204,254,221,28,34,54,113,90,190,14,178,196,118,128,169,
214,157,125,137,159,5,250,16,18,14,54,208,97,66,90,213,153,146,159,194,183,195,127,19,197,234,178,108,226,223,211,42,190,203,154,241,22,100,231,22,137,109,68,9,13,200,63,72,58,57,53,11,132,21,168,97,169,218,181,62,130,215,157,201,145,96,92,145,230,76,79,93,75,109,70,174,96,241,157,199,179,123,222,252,10,230,167,190,217,225,107,94,107,124,237,26,61,117,220,58,140,212,213,73,100,81,246,230,225,201,142,206,178,149,131,12,68,220,131,198,105,219,74,179,15,246,154,0,16,96,54,152,144,97,154,163,101,173,137,77,144,137,49,204,26,8,139,253,129,240,50,62,68,203,145,61,48,61,51,136,179,4,161,163,189,40,45,60,173,168,63,19,131,30,130,40,5,8,144,148,70,110,174,145,182,36,164,27,165,10,220,210,41,89,109,81,7,39,67,37,5,2,3,177,193,172,20,98,193,200,125,53,41,38,131,6,182,121,53,11,40,132,133,79,177,209,164,79,4,210,136,70,220,172,234,130,8,134,217,88,123,38,145,189,141,125,112,0,140,35,173,228,92,122,214,212,
72,51,78,48,34,141,122,123,135,218,85,31,19,128,192,78,202,141,63,212,48,29,226,117,95,250,255,237,150,104,126,53,111,169,18,1,128,229,235,76,24,188,242,64,237,53,32,88,206,6,236,159,97,44,220,76,16,136,255,203,29,36,100,2,114,211,222,19,215,182,113,208,134,180,65,251,193,218,218,15,199,161,98,225,28,153,69,166,108,208,59,55,99,190,11,194,165,240,156,58,49,67,202,102,193,170,236,17,34,228,135,2,50,1,80,192,255,61,30,26,187,167,137,5,210,70,90,29,15,1,27,226,152,86,151,16,218,247,64,185,191,199,169,166,136,224,132,33,40,3,194,0,16,26,14,178,236,5,75,144,96,137,64,192,232,40,84,130,116,95,28,26,4,69,26,76,153,112,64,180,188,213,31,174,67,231,52,13,60,17,177,145,98,82,168,74,31,235,195,108,240,192,228,219,52,246,11,193,196,213,241,111,98,221,109,23,231,125,40,98,202,201,125,154,94,18,207,100,250,170,60,50,58,114,204,139,45,144,217,177,175,12,250,159,70,210,220,210,42,63,188,171,173,29,188,238,
7,56,35,167,12,170,125,122,132,208,67,11,234,19,197,171,116,159,220,111,189,253,5,98,31,251,52,78,17,192,143,161,146,168,6,128,184,49,131,57,174,135,247,156,181,37,2,195,69,1,82,0,118,250,87,239,111,171,85,9,181,203,26,75,84,74,117,136,8,152,148,1,131,254,27,224,233,197,255,209,204,151,26,123,153,128,148,169,41,16,61,60,239,94,62,38,230,161,116,125,123,80,237,24,184,215,235,136,33,30,71,0,250,16,193,19,29,11,167,89,86,9,162,150,30,166,88,172,60,39,67,151,238,21,86,65,48,84,224,149,96,137,48,240,9,50,253,198,184,25,62,139,253,154,179,36,121,174,31,88,123,9,130,58,22,64,170,223,190,148,173,154,167,126,0,182,49,177,170,204,24,81,222,214,87,120,215,134,223,235,118,208,108,127,37,20,168,176,159,45,175,200,78,117,166,83,126,151,143,96,168,66,159,182,237,147,10,229,35,206,90,238,116,137,97,234,73,85,58,49,179,43,97,61,3,4,37,62,208,92,199,135,128,38,11,63,23,145,81,237,121,61,36,207,230,94,
139,167,14,175,241,51,87,71,14,90,109,182,119,149,169,57,111,98,106,46,176,101,175,119,178,206,181,246,182,141,50,206,156,190,74,155,56,79,227,239,166,148,210,26,82,35,211,170,108,185,56,196,121,84,214,163,180,148,231,178,28,82,142,118,154,184,203,17,34,102,212,135,82,1,48,79,86,190,231,6,4,61,157,109,80,110,46,17,81,213,16,5,33,129,69,133,27,12,33,92,68,169,251,75,100,253,220,105,195,229,17,9,35,228,32,157,221,25,237,105,161,143,125,67,147,93,147,71,180,155,14,66,75,154,156,146,23,159,141,76,148,123,37,158,14,22,58,253,100,128,2,154,136,80,172,156,7,251,128,183,197,18,2,97,17,47,179,157,181,244,201,59,45,228,19,251,121,208,249,53,105,236,81,78,123,87,14,5,149,199,127,26,71,128,40,193,178,249,45,252,237,92,235,14,47,224,160,210,255,255,224,149,236,191,205,232,109,12,205,63,68,7,228,86,81,11,131,172,235,114,81,51,216,0,88,90,89,220,147,44,46,17,75,151,132,44,58,97,0,120,162,140,20,6,127,192,
152,104,144,25,83,230,159,167,50,11,7,86,232,138,72,88,109,117,90,24,235,39,246,210,46,129,70,198,208,8,126,58,220,127,0,196,99,153,253,187,111,212,169,209,67,204,204,2,148,250,235,44,179,231,203,145,48,126,108,207,45,221,63,182,147,36,203,12,116,195,46,18,149,4,120,176,11,160,65,144,129,199,101,59,47,146,9,75,19,221,89,110,61,15,211,14,127,131,111,121,232,105,162,239,241,232,172,20,131,129,84,49,89,46,23,40,68,107,100,50,213,193,195,23,102,175,113,192,215,252,149,54,202,64,233,228,65,194,254,100,110,97,140,109,118,74,232,134,17,82,1,47,163,23,188,49,251,97,250,95,160,146,250,12,110,132,219,142,136,69,50,29,134,9,36,64,80,8,133,239,60,233,66,58,46,6,172,221,99,1,149,255,94,72,6,21,64,92,60,251,206,63,196,71,78,24,210,230,134,225,164,100,139,174,1,158,143,124,126,77,209,20,113,22,41,40,156,230,168,113,11,53,2,89,141,96,74,111,103,121,143,178,183,254,235,72,229,127,121,220,65,225,54,238,82,110,
228,21,209,200,73,246,197,82,61,85,248,27,183,188,164,183,197,92,41,76,78,193,80,237,208,184,198,239,243,123,234,33,15,94,158,224,253,46,63,2,43,244,255,0,113,194,128,7,79,32,120,92,223,78,92,243,203,35,255,253,135,134,121,223,55,41,117,33,46,164,70,35,209,156,191,68,188,104,126,80,32,209,61,40,126,152,134,252,208,56,248,49,90,51,125,48,128,96,245,252,194,220,251,101,101,178,176,45,222,251,187,211,231,43,93,225,56,231,203,158,210,192,88,147,208,56,172,7,39,33,128,128,196,22,0,82,108,1,63,129,56,53,93,50,196,71,131,18,39,145,51,155,228,208,122,98,119,126,193,158,153,16,254,152,55,21,115,31,225,22,61,171,16,78,129,24,52,222,141,129,21,199,200,90,104,14,193,80,166,114,146,239,75,245,237,78,24,62,151,185,60,104,129,119,202,108,219,103,250,17,207,217,169,62,10,152,252,15,252,37,72,231,236,123,241,97,193,191,94,154,250,96,190,246,112,63,43,67,231,198,123,16,235,64,13,99,181,168,182,79,56,233,195,21,142,172,
117,166,49,252,47,137,164,140,212,237,210,132,118,209,186,23,92,155,12,136,16,248,9,189,94,239,254,57,189,223,86,215,207,165,245,188,75,156,158,197,39,171,85,6,138,53,31,140,222,122,119,218,195,101,12,154,57,26,59,25,151,76,53,79,219,236,192,242,214,196,89,74,26,236,152,175,52,202,18,129,234,181,107,21,121,251,240,227,82,103,14,23,251,8,94,84,187,207,189,177,2,2,75,153,39,134,105,126,116,199,239,32,64,28,29,12,232,3,64,4,153,133,0,9,149,168,181,141,83,184,107,151,239,98,204,145,246,24,40,107,77,215,71,114,141,203,129,133,226,36,93,86,210,254,142,143,55,160,62,132,139,36,164,185,29,123,44,16,32,16,187,180,204,80,0,169,40,202,206,81,31,75,185,27,197,2,37,133,135,1,164,119,110,118,230,77,209,126,203,190,174,59,180,224,233,72,219,13,201,97,203,127,176,187,48,187,167,11,111,105,128,61,169,234,53,30,86,101,63,245,5,174,236,191,173,207,229,249,244,248,173,159,205,176,9,117,195,165,35,224,208,10,132,34,249,9,
28,29,232,195,107,39,174,205,114,254,236,131,60,72,35,206,17,5,254,241,180,239,108,229,55,128,60,112,191,45,72,141,148,105,167,221,155,208,29,69,241,146,26,141,254,151,72,135,116,142,136,8,16,136,8,16,186,18,31,67,60,64,65,200,107,94,192,199,190,223,193,233,124,63,63,46,203,103,110,186,9,61,142,107,39,76,154,56,245,160,68,159,37,23,6,8,96,32,131,16,106,179,131,32,64,78,137,88,30,52,123,40,58,14,207,178,111,62,12,43,37,134,153,196,91,3,41,7,4,41,92,54,27,156,157,205,41,84,115,194,112,217,176,22,135,168,18,167,70,187,116,25,55,39,152,213,92,248,187,192,175,31,72,121,158,117,134,57,195,165,4,17,170,114,76,87,11,5,28,39,206,140,62,130,15,78,148,139,99,216,175,214,190,30,197,192,191,201,117,236,243,58,110,112,221,222,158,83,58,241,33,124,170,161,177,162,147,61,146,177,26,221,95,30,16,27,104,79,81,214,215,163,219,133,164,200,65,159,218,104,213,215,125,237,116,147,30,59,150,26,177,111,244,155,76,119,
195,247,202,53,239,46,85,114,13,239,206,69,207,55,217,88,20,57,70,225,129,49,102,19,44,191,73,121,241,133,32,76,6,111,42,55,80,55,173,17,108,58,55,181,168,27,7,118,172,16,121,199,182,185,105,171,48,154,120,68,189,61,58,102,2,133,192,208,183,65,145,128,144,67,70,205,37,128,153,217,34,1,9,98,69,128,130,112,132,180,121,112,40,199,40,10,252,0,177,201,212,68,128,237,158,158,201,88,158,2,76,48,140,27,205,151,84,24,41,195,120,190,99,203,225,38,212,163,34,7,129,52,3,143,245,23,28,125,16,131,129,12,82,165,98,142,39,85,25,203,13,104,151,128,23,32,82,160,122,198,125,63,186,238,7,107,200,241,77,233,188,170,87,77,54,102,62,79,126,64,164,209,5,223,136,152,106,17,225,158,12,117,35,204,172,74,180,161,124,232,215,208,247,126,213,63,115,148,172,229,29,71,204,106,26,95,79,16,240,192,8,207,206,122,88,219,109,204,58,28,193,55,222,173,225,198,217,157,219,0,115,121,187,4,220,156,46,95,184,226,249,253,160,85,43,197,
137,173,209,26,95,160,69,210,81,246,160,252,9,223,80,60,253,241,117,99,82,140,63,194,66,0,231,213,199,34,236,73,185,113,30,207,231,40,238,126,121,62,53,23,155,78,139,159,109,117,61,105,14,20,255,102,253,132,64,83,64,42,147,137,205,220,247,16,38,36,15,18,194,13,195,138,175,26,106,191,75,157,106,129,22,181,158,165,128,91,60,101,205,155,16,210,172,149,223,248,222,242,101,237,217,204,27,60,107,174,180,42,192,45,233,188,37,88,57,235,247,95,162,19,171,240,117,229,151,185,49,203,120,231,59,188,191,192,69,111,199,102,196,176,200,207,110,124,131,252,198,245,241,122,173,252,227,107,116,92,82,182,110,145,49,149,104,9,135,101,115,160,223,114,81,201,86,65,128,48,141,238,7,231,199,92,24,40,15,108,83,130,18,63,185,102,192,166,215,119,247,254,33,185,190,135,188,235,117,250,132,222,239,231,121,239,116,181,93,25,188,118,184,49,174,150,154,222,249,136,116,31,153,166,76,145,209,231,29,159,242,69,100,153,168,124,86,157,51,80,69,95,55,188,93,83,
186,145,111,235,215,193,118,220,73,150,197,83,183,232,164,66,118,10,0,1,164,58,109,32,41,179,8,142,202,179,4,26,159,153,171,77,50,26,6,119,8,4,72,12,147,176,1,51,79,63,65,240,255,234,229,129,42,147,182,181,221,136,32,53,193,197,23,55,1,28,38,185,246,153,39,81,176,56,138,211,87,175,80,162,12,3,26,8,180,164,24,146,20,150,84,248,153,130,214,241,199,91,106,15,123,216,163,88,86,211,100,1,78,188,150,14,89,38,174,144,179,94,236,53,136,124,208,195,214,112,45,99,205,199,67,240,69,149,116,186,134,17,63,75,16,117,177,128,26,55,77,38,236,241,224,131,149,21,152,4,77,140,154,12,128,83,128,82,229,251,5,251,190,227,185,212,236,218,154,181,98,219,152,175,113,149,11,117,34,57,16,128,128,129,32,253,103,31,14,192,64,9,218,21,100,46,188,145,217,145,46,207,95,96,36,70,46,164,90,110,54,130,123,123,79,231,68,228,125,5,112,34,81,82,109,240,92,149,5,21,97,187,202,59,234,61,41,141,60,230,161,112,151,183,242,51,
42,222,246,155,56,141,108,151,84,137,142,27,163,116,74,183,248,201,163,233,169,122,185,221,207,103,239,49,251,174,47,105,170,52,96,254,149,72,194,240,167,1,165,128,30,166,185,166,164,37,74,109,147,244,36,83,36,12,254,13,78,241,144,249,35,36,219,215,188,205,249,19,35,199,136,237,195,235,88,111,18,206,205,18,110,127,236,94,246,234,166,223,179,202,11,165,198,250,161,154,246,106,47,41,68,140,144,111,142,97,118,168,122,235,93,34,54,120,50,179,205,95,101,194,183,29,103,206,129,230,1,66,140,125,55,113,142,43,131,71,203,55,126,188,115,167,19,171,83,33,152,237,148,197,76,1,234,205,141,134,198,13,90,113,157,171,98,173,241,172,63,228,231,155,167,247,128,163,95,163,209,243,247,81,77,87,53,89,108,91,195,191,82,31,131,175,119,159,36,50,183,108,85,210,8,197,251,81,40,177,49,117,249,42,238,251,8,2,81,165,74,235,220,133,252,209,208,25,60,244,243,167,199,98,197,25,172,165,35,209,64,44,233,224,26,5,0,8,166,160,219,9,2,65,12,105,
49,76,96,17,238,195,151,83,184,47,72,135,164,179,84,90,143,138,28,235,251,36,106,107,184,190,71,201,104,40,62,73,199,168,136,46,92,11,100,36,99,61,77,162,206,81,17,150,84,25,48,151,25,37,4,238,67,59,129,21,35,218,113,127,7,101,13,123,122,80,214,121,205,2,57,204,132,209,109,50,194,128,30,98,153,60,45,82,81,30,4,136,132,24,157,195,105,148,236,128,64,235,45,172,126,157,53,31,100,81,173,13,187,210,98,159,148,90,136,38,72,206,235,207,228,166,2,135,76,37,147,240,103,178,147,66,199,222,177,3,188,19,248,63,122,110,99,179,225,59,88,252,215,248,159,229,212,204,149,141,39,11,48,50,67,4,41,4,200,141,17,172,119,97,78,45,130,42,210,34,75,177,142,15,186,50,55,27,207,119,0,255,69,240,84,65,81,84,207,103,72,154,212,69,93,75,156,130,186,100,167,187,30,24,131,185,83,159,254,207,141,187,141,200,38,72,68,103,201,67,58,109,218,133,54,35,19,75,231,237,126,81,111,248,15,219,86,3,166,46,120,238,165,43,177,31,
72,88,52,151,212,154,54,107,64,78,60,15,3,33,204,59,45,40,134,185,30,194,61,228,112,138,200,168,231,71,99,224,37,215,171,204,182,3,155,55,7,52,199,240,50,5,148,241,183,240,37,42,23,33,42,45,159,164,203,251,211,173,92,26,182,220,43,228,149,251,104,112,202,68,178,126,227,5,104,227,18,232,100,133,205,147,30,245,211,187,93,225,74,95,245,85,18,245,225,167,155,253,28,31,18,50,131,30,255,90,49,31,122,129,68,77,140,157,116,35,37,191,100,236,154,57,61,220,70,171,81,45,205,178,91,40,40,206,201,94,6,26,231,28,11,234,221,167,243,247,153,242,217,157,165,239,193,230,182,73,183,8,97,139,139,91,130,58,77,163,37,157,210,162,249,74,110,136,4,176,246,19,137,97,44,193,165,14,171,107,134,14,245,209,76,155,220,45,243,121,37,51,213,155,233,30,146,237,208,248,8,76,199,63,141,180,236,14,4,168,63,6,138,216,32,68,180,191,232,177,215,251,213,125,207,135,90,13,98,169,18,222,50,218,168,106,70,123,160,196,46,122,203,160,98,127,
0,161,162,160,254,63,155,169,166,226,46,232,119,24,242,48,203,76,9,226,118,101,176,225,69,59,137,32,32,177,30,20,157,116,130,218,189,173,227,63,66,130,180,55,206,236,127,67,28,230,85,63,129,56,68,213,218,165,36,255,179,155,249,35,147,240,194,2,111,40,164,224,211,106,43,234,108,196,45,162,163,130,106,148,66,45,218,33,42,138,242,95,157,36,146,184,233,228,48,130,38,206,222,26,253,208,151,211,245,218,122,93,239,21,231,123,38,172,248,7,241,216,233,197,216,221,188,180,57,207,29,243,125,226,243,147,11,53,238,193,60,130,41,234,144,118,199,178,78,105,242,104,255,49,239,54,64,186,115,33,104,31,35,246,26,164,241,19,31,137,90,48,112,160,3,117,246,76,91,88,213,201,138,159,194,146,171,50,149,121,6,233,90,189,76,219,91,229,96,210,44,45,186,178,218,211,158,70,180,242,245,246,203,231,235,42,170,90,172,119,250,3,122,157,242,33,195,140,45,180,9,127,139,2,15,55,182,25,69,57,32,74,164,65,233,35,230,49,198,6,148,10,88,8,149,113,
73,247,19,115,224,252,191,108,154,178,27,56,200,26,193,2,96,225,230,194,205,10,140,41,132,50,105,108,163,38,235,240,111,135,215,252,135,192,203,238,239,119,66,123,107,60,88,93,110,174,241,165,92,225,30,179,103,156,17,202,241,207,10,86,132,182,118,111,183,203,55,207,193,109,6,131,178,208,79,232,248,116,63,120,2,167,133,254,132,60,248,75,217,163,111,208,47,20,58,216,50,85,181,26,199,57,67,93,105,63,245,21,215,165,106,119,172,185,192,209,208,253,252,14,237,223,151,254,123,111,94,92,217,238,185,243,121,189,26,143,211,250,114,166,77,189,202,181,38,117,177,140,54,186,40,201,162,185,14,214,124,92,96,223,54,175,214,42,77,99,183,78,29,75,87,47,64,142,95,171,167,166,70,83,169,210,130,172,228,116,204,163,217,89,107,16,92,31,10,14,103,115,145,143,252,179,129,236,27,40,62,221,67,128,66,6,25,200,219,200,51,180,81,194,151,163,181,181,53,184,163,38,122,99,245,20,176,181,81,224,33,34,131,170,191,168,106,184,133,125,82,127,4,1,194,37,
65,0,132,135,149,60,35,122,28,73,169,145,128,137,69,169,38,230,234,62,43,102,129,169,217,234,88,47,83,167,137,28,96,139,4,11,75,84,44,16,66,130,184,115,47,23,239,247,223,72,49,44,109,189,91,234,21,109,111,87,20,177,96,121,143,57,7,236,234,188,233,173,46,236,206,65,33,42,67,208,252,189,12,74,154,204,43,124,193,214,159,247,223,66,154,156,94,155,205,200,118,19,243,215,47,2,157,68,196,14,192,3,63,224,31,8,244,46,239,200,9,86,5,236,116,224,31,19,4,69,75,218,99,131,158,149,19,53,32,24,1,140,74,100,68,135,12,84,65,170,132,36,252,152,217,112,68,66,46,132,19,232,27,147,118,164,82,143,174,6,120,90,90,56,244,134,101,149,203,31,152,149,149,40,90,104,129,31,246,215,173,134,79,28,72,103,184,206,187,85,27,141,201,166,150,183,178,169,63,55,8,52,159,7,14,186,208,6,50,50,21,229,179,171,124,152,182,73,43,252,171,193,46,232,210,7,184,15,38,45,112,49,85,200,214,78,157,126,201,255,98,177,210,25,226,142,
194,71,119,59,132,255,2,215,118,157,237,238,7,118,52,61,141,13,246,183,213,183,248,233,81,163,237,236,113,75,17,7,135,191,249,36,182,184,235,107,123,110,138,91,28,207,117,203,48,203,244,174,72,7,164,216,228,26,63,165,160,213,174,243,77,31,67,135,193,31,217,175,177,117,220,189,175,91,224,202,70,109,60,169,73,30,4,152,212,189,82,224,28,48,241,76,176,19,213,52,65,203,63,131,74,25,62,46,219,119,253,195,126,143,210,207,234,107,187,240,125,155,239,249,246,57,184,118,184,218,235,164,220,14,109,6,117,220,170,23,115,137,75,0,147,189,91,143,103,18,24,167,160,97,240,182,220,243,12,56,139,150,155,133,41,68,6,156,54,86,41,246,6,92,35,25,233,52,18,234,206,161,25,125,28,164,170,199,180,19,32,62,122,120,209,71,92,243,144,28,97,44,74,37,56,166,217,34,253,151,211,21,104,142,102,128,107,34,120,205,202,218,114,209,230,57,15,220,157,177,172,109,27,14,156,179,17,210,246,155,202,98,75,230,16,20,239,48,52,42,232,181,15,16,250,112,
36,115,173,79,204,200,194,171,219,127,5,236,133,165,121,155,16,246,74,69,208,69,42,9,17,11,159,39,233,94,143,164,133,133,70,207,92,225,133,156,108,137,33,149,253,126,132,60,207,206,40,147,37,168,41,109,130,151,1,79,152,128,28,133,24,0,82,164,96,127,22,184,138,159,34,203,152,220,136,140,178,23,250,116,252,66,107,183,227,187,248,159,238,184,5,119,35,190,34,14,32,32,130,32,46,140,151,6,180,223,62,140,43,39,74,11,222,107,51,47,51,142,111,127,207,15,5,147,31,14,164,67,56,252,63,227,32,24,85,208,41,76,132,125,38,198,96,75,44,24,174,144,141,58,232,69,122,174,151,236,187,103,177,17,6,111,4,102,73,84,80,14,152,140,47,13,50,213,68,212,50,195,47,207,95,53,123,139,14,212,169,91,108,211,90,101,100,58,139,167,123,149,207,231,197,151,10,232,84,109,55,120,165,37,21,253,199,54,62,157,198,253,79,96,193,161,204,82,193,224,75,197,120,250,248,111,82,46,12,224,148,170,211,96,95,86,69,51,23,232,147,248,24,166,151,248,
225,102,202,76,161,243,111,63,228,228,92,149,208,161,197,47,111,125,180,197,109,117,245,5,57,160,234,231,240,177,239,178,65,250,229,94,192,207,44,109,223,214,57,146,122,148,129,77,97,149,107,194,119,142,127,119,105,167,131,97,158,175,213,222,55,251,227,107,96,247,185,94,38,211,14,14,159,245,247,184,91,105,38,113,253,109,132,10,228,211,174,105,11,204,107,210,106,84,103,231,170,224,120,45,5,246,100,110,179,75,241,222,105,245,120,110,28,127,27,226,119,101,63,223,199,249,126,184,182,191,221,123,112,47,225,99,54,216,46,89,250,75,179,61,58,173,89,222,134,252,129,216,16,42,169,194,190,11,82,160,211,146,107,93,22,240,139,75,87,222,20,103,94,21,127,171,213,98,106,193,241,101,18,164,16,88,108,233,191,11,200,64,8,72,9,111,19,151,129,26,33,187,186,211,95,226,46,143,28,48,245,177,135,92,174,57,244,92,180,11,186,75,106,31,243,12,149,173,93,180,142,112,174,107,115,103,163,3,124,171,188,217,94,121,37,65,230,30,170,88,37,112,150,229,54,214,
182,54,218,113,110,148,190,141,128,83,139,117,81,45,21,86,80,59,91,88,86,212,117,8,116,69,149,25,52,9,201,84,106,58,64,236,19,194,105,236,118,156,201,232,211,194,22,247,119,81,141,101,251,171,149,249,211,183,212,188,227,131,128,4,69,146,18,36,55,86,38,113,72,126,18,49,145,214,252,41,168,66,146,71,30,183,100,186,34,142,165,159,65,168,101,38,124,75,212,185,253,255,88,186,177,255,55,150,12,141,244,68,144,156,72,232,227,146,93,58,100,24,188,130,156,11,183,109,217,39,209,161,20,216,128,77,217,92,198,104,192,195,190,120,208,45,20,194,39,14,146,233,63,40,183,146,174,150,112,11,40,233,128,107,137,129,72,66,0,247,136,19,246,131,40,4,57,136,216,235,236,193,23,4,87,0,35,87,54,141,242,166,39,81,155,214,233,18,152,231,32,197,31,79,152,61,245,205,191,230,54,167,10,37,44,64,237,115,95,188,202,178,88,228,72,191,121,106,108,75,179,17,90,6,102,90,21,133,191,163,152,136,67,227,138,83,81,77,120,197,233,228,164,160,81,77,
241,141,107,234,11,240,205,40,31,183,46,231,135,214,113,192,89,234,248,238,240,232,57,211,39,177,196,5,93,166,25,220,62,245,223,148,49,10,234,190,167,1,153,247,229,143,226,20,39,111,75,28,96,166,61,141,114,159,225,217,238,246,169,111,185,91,92,44,59,93,131,247,2,174,182,249,85,186,184,155,107,228,121,56,143,55,92,45,15,171,113,123,111,231,173,24,68,137,58,220,137,194,170,121,110,167,214,243,197,104,192,83,241,159,178,171,215,43,88,144,39,159,27,230,243,70,222,191,7,253,183,218,181,124,191,139,108,228,251,157,93,207,208,45,178,170,117,81,191,174,57,86,249,180,75,52,248,227,193,168,196,48,141,15,199,55,171,242,75,125,221,234,98,223,102,249,248,231,193,168,90,89,198,184,154,213,107,42,55,158,85,230,134,102,52,66,58,163,181,137,21,64,198,209,195,29,244,192,187,79,105,218,67,50,88,180,161,215,169,142,189,233,206,79,21,137,170,214,58,52,69,228,127,225,66,65,69,254,169,244,126,98,123,144,178,222,217,206,22,65,136,1,247,197,152,233,
56,112,247,255,9,153,75,63,71,202,75,140,15,86,126,89,165,150,181,8,49,205,169,110,228,201,153,176,104,85,217,178,9,148,174,180,91,226,126,18,32,250,66,131,142,35,152,19,213,176,103,146,155,224,238,187,68,78,248,118,74,137,58,67,62,218,14,210,10,3,63,140,55,0,185,24,179,28,152,142,71,124,68,168,95,148,12,237,118,218,36,6,85,222,203,77,225,111,247,123,235,179,120,62,235,239,153,188,1,241,143,162,167,2,14,209,51,233,211,189,42,23,185,43,200,97,202,106,68,107,155,12,154,68,150,179,66,185,32,3,76,102,52,228,52,200,41,102,83,59,13,194,25,116,114,32,26,221,255,65,195,208,166,103,43,147,49,232,253,45,198,129,2,111,95,235,253,18,182,37,135,216,126,98,182,67,155,47,101,119,2,190,177,111,248,181,88,229,153,56,190,173,27,167,74,174,70,122,9,29,241,77,96,187,197,159,182,250,249,45,21,157,10,182,181,138,45,95,8,18,121,32,244,20,207,233,2,202,29,247,124,106,111,40,254,160,12,234,48,88,64,87,196,86,207,121,
246,43,126,37,252,220,145,123,16,241,121,196,108,173,21,62,136,214,57,57,82,190,189,141,1,87,129,235,103,248,32,193,179,2,253,157,229,228,3,135,244,165,78,223,254,38,56,124,112,178,40,184,221,9,122,172,212,152,12,190,222,30,160,61,207,222,82,35,240,240,118,150,115,248,149,148,184,255,253,2,74,140,23,250,175,192,195,130,64,192,181,102,5,101,237,118,161,254,156,30,155,114,29,244,106,253,247,194,253,206,202,207,103,113,121,150,90,235,220,110,103,228,251,52,191,217,111,183,250,93,98,219,222,239,91,127,31,92,243,206,182,181,122,235,157,221,156,230,86,115,248,146,157,8,126,173,203,173,117,224,153,226,112,246,249,188,26,254,166,59,167,195,55,45,101,112,225,190,94,83,39,215,161,189,72,109,76,101,10,27,152,57,154,120,33,57,0,72,35,248,9,8,22,128,240,136,210,28,247,227,219,66,175,80,221,173,244,111,179,41,150,232,66,175,11,113,105,104,83,151,44,117,125,13,34,215,125,52,47,167,189,71,233,124,46,132,200,179,42,33,196,177,200,29,250,28,
150,134,209,138,206,191,7,205,132,188,10,183,168,243,164,71,201,133,159,91,90,186,170,114,241,17,227,221,218,221,153,162,169,233,169,218,142,192,3,23,23,34,24,3,92,213,222,5,10,194,7,55,53,172,194,122,155,132,48,22,145,3,158,105,16,226,26,185,137,75,129,208,245,171,31,196,38,202,22,233,142,7,126,128,197,65,66,2,33,2,77,204,241,120,87,242,87,196,100,81,225,217,255,228,228,97,253,79,78,124,224,81,212,36,98,237,6,236,70,106,230,235,191,65,135,75,184,120,217,23,89,212,237,26,182,73,91,167,141,219,18,117,34,141,140,40,11,128,101,226,166,118,11,131,218,199,37,65,65,141,136,59,92,156,60,178,170,42,140,233,163,172,145,200,171,20,130,235,250,82,62,126,227,86,108,51,150,231,205,25,17,108,54,48,47,94,23,230,66,206,198,91,50,55,23,200,66,160,7,50,101,85,212,213,211,216,17,150,99,11,119,225,151,155,8,27,171,105,167,252,20,134,146,179,31,21,83,86,181,237,222,76,211,185,111,133,55,225,182,127,93,188,73,74,87,85,
147,123,149,48,162,104,60,68,24,90,254,128,203,206,95,105,224,16,242,73,216,57,161,240,168,225,238,126,39,253,61,13,39,0,229,3,46,236,233,39,248,65,3,78,236,235,181,221,251,185,56,254,163,36,222,127,73,67,29,222,184,255,50,184,245,0,25,127,42,229,161,187,229,219,108,119,107,180,63,29,101,85,154,190,5,95,222,174,242,85,87,61,201,106,185,73,90,30,68,81,25,146,40,173,150,236,159,154,247,253,100,189,31,215,205,183,182,75,242,125,63,213,247,114,203,252,222,53,225,183,198,87,254,62,124,225,125,117,75,224,123,95,215,174,59,175,197,38,142,197,224,234,166,95,107,148,193,111,242,27,0,218,235,251,125,54,123,61,158,76,243,251,110,114,184,231,206,141,108,138,28,178,86,162,149,205,122,142,244,148,251,22,182,190,171,88,148,126,117,13,253,208,162,227,117,156,91,124,84,203,245,99,83,62,20,44,214,76,45,174,211,108,249,51,213,181,194,252,172,80,197,89,80,138,30,202,162,61,195,96,63,227,29,158,123,114,79,89,111,130,166,3,55,14,13,146,
159,176,0,97,10,4,129,158,189,22,136,218,239,79,31,125,254,124,26,246,183,87,83,11,235,76,197,25,247,214,62,188,30,220,221,69,88,189,47,215,180,176,90,190,199,253,11,44,245,126,55,104,104,112,129,2,185,56,226,185,175,130,236,252,211,202,237,48,99,65,56,104,47,124,151,252,68,129,0,180,151,202,188,232,7,143,118,183,91,250,112,132,32,12,70,76,39,14,12,137,116,39,252,248,255,3,123,118,231,127,96,159,12,119,196,128,142,159,165,235,67,17,70,113,17,37,69,150,98,55,158,212,101,42,105,60,5,13,114,57,207,154,79,78,139,204,153,64,110,52,144,233,192,41,68,179,9,243,176,157,154,27,229,91,108,160,27,114,149,201,88,166,142,223,134,245,219,154,243,246,73,127,170,4,172,255,46,25,100,181,114,90,101,171,209,68,84,223,187,113,190,90,30,33,55,133,219,146,201,52,240,38,153,6,89,175,14,254,130,218,9,197,228,37,189,82,172,39,78,178,95,224,156,227,229,254,57,28,95,252,202,47,47,162,224,156,55,183,171,134,71,32,66,181,212,172,
239,10,89,228,100,103,114,87,120,67,235,59,230,21,193,114,122,15,200,6,9,98,65,129,44,222,7,56,218,119,22,121,241,128,185,2,92,150,177,214,251,48,159,163,211,19,198,181,15,72,15,196,115,152,201,120,72,16,194,17,116,246,238,172,187,253,175,211,75,220,116,179,46,94,55,187,233,104,121,231,133,207,167,199,94,21,201,175,200,250,150,170,44,92,243,201,102,63,166,182,214,223,111,143,240,125,226,207,239,23,86,206,127,95,63,252,63,120,43,13,122,161,95,93,232,122,211,127,191,3,247,212,105,117,90,190,26,251,37,123,244,5,159,195,29,223,245,15,120,121,110,31,87,187,222,7,17,220,108,123,212,117,248,158,41,94,87,163,195,51,149,214,206,120,30,53,148,184,145,146,38,100,185,54,61,153,10,224,237,204,217,204,202,211,193,78,137,16,77,80,89,128,228,184,235,162,64,75,173,254,108,90,140,101,95,9,52,224,110,137,212,220,133,54,27,186,177,61,51,89,113,194,65,97,187,43,88,178,191,232,125,237,175,167,220,145,39,174,8,145,133,197,206,228,226,139,
77,55,192,161,184,129,253,61,58,70,163,130,1,212,59,48,54,185,249,213,209,133,21,6,233,255,133,222,192,238,22,148,161,39,151,170,60,79,8,140,203,43,35,107,228,53,91,109,119,186,23,3,242,111,55,160,251,25,114,35,158,25,33,235,15,5,245,32,12,65,49,152,126,11,16,213,188,34,120,231,3,47,113,40,59,99,148,37,122,53,73,208,12,102,223,11,49,255,178,248,127,81,252,242,47,139,255,23,197,7,136,16,31,103,187,214,193,217,24,54,15,6,217,238,160,55,220,227,129,111,23,15,203,77,228,32,107,72,166,10,55,109,59,244,37,232,250,61,67,216,15,97,123,200,67,141,184,147,144,46,228,240,164,70,172,123,171,33,11,173,210,122,219,135,67,36,90,163,89,171,86,25,10,90,21,88,105,90,199,73,49,138,2,142,91,17,44,150,255,18,112,148,212,11,10,33,78,33,233,162,190,97,161,96,109,235,188,58,128,150,98,240,247,47,98,25,186,192,119,222,133,195,56,65,11,231,205,222,191,236,223,16,148,210,251,74,172,230,233,68,121,249,58,209,14,114,
66,62,101,28,129,58,13,174,67,137,62,130,92,31,68,149,28,224,75,15,69,168,193,93,127,55,74,243,175,9,240,57,191,176,246,31,121,124,6,33,188,32,2,124,33,130,97,207,178,79,125,157,190,46,23,188,80,169,251,95,210,13,111,48,5,3,249,227,172,247,105,219,180,127,228,164,171,82,177,93,74,148,214,160,190,195,132,215,126,245,26,63,114,61,250,111,116,203,232,124,31,195,207,247,59,170,158,54,159,229,247,241,254,62,255,132,179,33,95,29,215,196,227,98,119,255,28,156,14,255,47,5,222,243,162,22,131,189,4,118,249,252,156,93,227,68,117,109,123,247,149,231,252,51,143,25,16,97,16,66,148,126,148,43,133,85,193,132,197,173,136,96,9,30,144,115,151,79,11,39,231,39,216,221,224,43,35,241,30,210,180,202,36,103,77,176,135,155,180,117,177,150,81,103,47,110,118,172,165,40,104,238,227,208,148,213,98,157,222,5,34,95,244,104,53,215,159,142,230,123,240,213,94,206,122,219,221,248,219,25,2,152,253,184,13,85,35,130,12,152,145,168,213,200,151,153,
242,202,217,246,22,31,156,248,236,158,137,18,100,157,12,97,104,3,146,89,123,8,132,200,198,74,235,228,5,9,61,115,147,115,78,244,116,244,54,96,45,172,135,177,94,43,122,127,27,245,199,192,167,250,18,144,81,124,204,19,16,159,119,132,48,68,192,169,239,129,12,174,68,15,185,251,233,205,204,137,241,159,178,155,223,18,142,96,225,31,143,71,251,251,210,253,247,209,66,214,242,106,198,17,247,159,185,253,72,207,237,113,220,62,140,136,70,81,233,254,18,179,102,130,144,156,129,16,170,131,33,246,55,130,54,153,29,167,32,13,253,31,151,184,31,36,97,200,69,4,162,36,11,195,246,43,226,43,164,144,201,219,96,119,255,36,8,0,73,156,162,5,71,84,251,32,24,2,166,22,153,147,97,73,229,37,72,150,223,110,229,92,158,147,133,56,56,180,84,51,207,87,188,122,127,69,56,82,234,52,246,97,174,51,6,184,202,158,214,101,77,36,88,136,127,241,8,58,223,81,150,31,202,249,220,163,156,177,66,167,49,232,36,23,122,245,19,158,22,130,59,131,165,92,88,38,
223,206,239,129,44,123,155,50,229,227,230,215,1,97,18,214,123,207,147,219,109,15,56,221,251,120,185,238,75,3,140,60,128,246,129,103,243,255,123,221,74,140,13,17,83,189,221,124,46,93,119,250,60,26,220,218,50,163,163,84,164,153,74,85,94,45,222,107,149,234,238,19,120,92,133,247,144,141,61,150,237,208,252,223,117,254,125,127,190,33,215,171,207,174,77,85,170,163,125,223,233,232,208,165,10,199,219,249,59,121,238,95,51,65,139,7,25,115,228,49,30,228,244,130,134,23,101,215,253,227,248,220,205,175,207,219,229,237,46,206,91,35,74,92,46,147,91,152,85,109,110,108,172,42,192,5,44,91,69,26,218,33,221,168,70,187,99,241,47,201,198,64,174,254,212,72,85,234,101,195,109,44,190,139,21,169,9,71,69,149,102,210,32,149,176,248,251,197,26,123,221,143,225,203,251,227,242,247,173,45,97,191,58,251,231,116,245,104,181,103,162,55,86,218,160,234,82,68,253,93,30,53,228,124,244,244,87,217,252,49,190,33,243,74,217,62,123,209,162,210,2,156,37,240,174,113,
130,71,40,14,199,214,208,230,36,5,109,36,107,119,39,35,106,154,22,172,156,50,91,221,186,144,232,236,199,230,212,251,69,134,252,99,163,69,9,250,98,105,38,33,1,8,196,132,188,216,157,1,4,137,9,130,54,1,2,194,100,245,185,152,135,16,67,67,94,134,97,232,219,197,253,175,118,244,193,255,87,59,98,229,59,76,253,187,121,50,94,21,159,127,145,15,41,238,220,44,161,16,198,201,0,89,227,133,108,6,114,199,146,59,1,20,102,116,198,52,49,145,169,252,65,142,199,37,141,202,21,187,107,147,29,221,36,68,141,0,229,98,113,17,17,47,41,206,144,190,17,154,96,237,62,128,108,79,200,20,44,138,173,117,94,248,252,208,13,97,214,27,252,3,81,136,80,37,38,50,142,147,104,113,220,124,80,10,233,241,1,96,73,92,124,61,192,116,231,149,201,211,184,110,96,49,75,56,94,165,112,82,93,128,248,192,10,81,105,203,139,6,101,231,103,188,116,225,122,110,202,73,143,28,237,165,244,166,138,27,189,192,60,31,218,173,42,32,168,207,135,190,13,118,145,79,
255,129,118,22,218,243,55,200,211,42,218,25,200,75,213,235,129,239,219,221,76,149,125,143,111,172,106,128,27,249,118,37,187,156,41,52,41,156,184,249,244,179,34,180,180,43,5,227,17,84,233,191,116,232,242,70,181,25,41,2,247,215,238,123,83,254,222,7,246,249,182,11,126,111,186,181,236,181,121,92,204,78,46,13,94,82,175,125,73,184,233,236,68,97,233,240,195,55,241,190,175,255,60,94,26,175,23,223,225,117,19,120,237,24,250,149,214,131,202,114,96,153,93,239,77,119,71,99,108,20,193,63,83,71,93,113,92,130,141,44,29,205,172,2,128,161,167,167,173,139,210,78,14,73,202,157,59,21,114,37,124,178,221,46,104,219,33,228,38,179,212,201,13,14,212,213,148,111,83,135,216,148,181,45,124,153,60,226,110,44,101,251,81,175,112,241,101,212,224,127,74,149,223,66,248,36,215,24,177,31,117,109,55,150,252,152,175,115,36,157,187,174,156,248,221,32,170,227,88,175,114,61,43,36,170,254,10,234,253,50,146,177,178,149,61,227,139,123,6,7,214,88,71,47,113,216,
84,231,102,109,51,127,147,71,219,168,20,109,212,63,122,22,149,181,142,252,185,89,63,213,153,23,255,130,242,143,143,21,198,39,144,166,201,196,7,100,102,52,240,164,97,14,64,172,214,251,0,251,193,240,81,168,235,129,1,136,129,213,124,34,138,71,154,245,183,255,167,165,255,164,100,255,167,165,255,164,228,127,16,55,63,140,61,48,11,163,165,223,183,170,173,53,92,68,72,54,182,224,34,93,207,195,153,252,169,95,151,135,7,228,31,245,195,195,94,120,40,152,58,235,82,46,22,219,220,174,139,79,127,253,91,124,251,248,205,93,94,214,141,208,114,139,138,157,25,222,226,137,207,107,196,135,223,135,130,196,178,241,96,199,158,81,115,251,58,57,92,173,190,248,17,5,248,72,136,102,247,5,177,38,128,154,157,231,231,161,91,216,91,87,48,134,8,196,48,40,90,46,144,160,74,47,194,140,250,129,41,74,90,160,238,4,64,205,123,54,83,48,149,135,209,185,233,31,152,43,170,104,203,205,188,62,36,12,194,194,5,158,189,0,239,110,153,230,191,1,120,201,178,212,139,131,
222,131,167,198,237,66,200,44,153,149,237,242,119,123,190,141,185,250,166,175,178,138,52,162,3,82,245,123,236,94,239,158,241,160,226,112,251,116,167,34,150,202,11,142,63,245,134,165,244,153,43,228,246,105,154,33,153,123,59,139,184,208,39,100,3,253,87,34,102,82,70,212,187,193,202,181,134,223,203,214,28,35,31,182,149,194,231,52,239,244,46,139,80,97,241,124,148,114,151,101,87,251,50,7,175,214,59,81,139,47,142,84,191,199,226,178,190,180,30,27,246,45,85,219,209,117,153,174,150,223,85,243,123,45,57,126,135,137,217,186,190,195,112,2,29,52,217,74,168,91,79,158,146,4,232,3,71,114,52,53,154,153,244,12,29,89,75,209,53,81,28,40,152,26,117,57,245,152,107,61,99,34,82,27,53,94,220,130,83,66,161,20,134,34,171,210,63,173,201,146,224,130,26,27,118,241,51,152,127,222,95,231,119,181,58,235,116,55,147,207,173,237,94,186,52,111,29,130,210,29,74,238,77,188,42,43,136,253,167,160,146,122,41,56,86,84,156,75,126,54,73,225,148,0,193,18,
180,42,237,103,16,114,216,79,95,163,116,117,45,82,29,177,17,4,115,62,176,116,23,164,6,174,211,179,62,144,3,110,183,243,236,2,124,62,167,244,207,65,247,101,28,187,24,166,43,11,83,135,214,9,106,198,36,74,194,0,200,32,168,191,248,9,115,47,45,42,192,216,141,250,57,25,2,65,134,246,67,209,233,191,154,178,37,255,95,77,57,198,255,127,77,233,14,52,37,37,65,36,136,65,3,140,103,140,233,110,199,234,248,21,64,236,143,87,214,135,155,196,6,118,185,133,138,159,58,108,3,87,214,246,81,48,101,203,185,8,49,165,35,101,57,199,49,36,243,255,72,175,1,4,110,110,12,255,101,170,226,34,140,253,81,154,106,41,240,43,237,166,241,16,192,132,231,107,68,22,229,172,64,25,194,112,32,8,147,69,137,60,160,110,252,231,96,211,215,52,83,94,134,149,48,185,18,138,8,200,153,11,60,68,209,29,232,192,42,176,61,42,237,76,228,148,6,65,168,130,10,153,148,41,165,67,66,70,35,32,205,235,234,225,96,207,192,255,22,83,70,13,216,15,36,194,
22,166,237,92,46,138,233,146,61,107,49,253,216,75,135,10,15,170,194,231,202,161,117,241,36,246,144,56,8,169,131,66,13,237,236,103,211,206,125,200,135,164,21,253,140,69,208,208,166,100,210,70,10,78,179,26,197,228,96,170,125,40,230,240,96,118,51,177,144,107,152,174,121,11,173,209,135,245,236,105,63,233,40,62,50,75,71,40,93,86,27,22,116,106,108,80,64,129,94,221,227,98,164,178,186,115,220,48,241,149,112,243,160,206,3,116,231,114,117,167,254,15,87,125,150,172,174,102,132,55,121,120,173,45,45,157,249,79,58,28,191,81,173,204,24,48,153,131,90,128,219,139,226,161,2,161,14,5,206,104,243,237,115,97,100,42,103,11,175,3,73,77,95,236,45,72,75,161,42,67,246,33,255,61,255,97,190,119,168,219,226,248,237,168,126,131,225,251,109,149,62,22,138,239,193,27,250,126,57,157,163,216,102,165,77,57,221,226,136,186,183,52,75,98,168,211,244,128,38,220,240,46,111,121,182,157,85,249,11,11,180,218,11,255,89,246,159,171,170,105,173,222,63,47,168,51,
63,27,10,247,103,232,87,206,129,24,215,229,249,102,143,228,92,195,130,84,215,181,159,109,192,83,232,149,246,102,24,47,202,50,91,50,38,17,34,177,113,143,201,21,221,160,23,13,69,192,234,30,64,82,184,14,169,249,196,165,22,196,94,23,121,199,179,201,233,246,255,45,164,152,31,253,255,22,146,37,41,18,38,12,229,175,246,158,99,5,208,49,84,2,139,72,164,69,86,165,154,129,14,120,223,40,150,235,205,41,185,116,234,221,90,126,5,193,179,36,43,11,243,115,79,243,83,59,121,215,34,7,49,8,93,216,97,93,16,12,156,132,94,240,119,227,46,224,228,33,249,44,72,48,112,168,112,76,34,90,178,65,194,38,137,181,17,215,145,51,206,224,232,7,34,10,182,100,173,39,0,90,92,93,46,1,133,248,40,183,114,175,48,244,132,31,54,23,194,243,115,161,103,142,225,144,30,132,21,228,217,153,82,52,7,146,15,228,68,6,214,50,39,51,115,15,64,143,50,252,169,133,76,156,25,81,244,37,80,182,205,193,158,143,201,140,92,22,17,220,153,92,138,153,133,242,
41,26,234,201,17,167,155,62,189,115,88,211,187,102,16,168,79,88,234,95,166,196,178,105,107,8,69,16,118,89,211,117,223,160,3,67,244,221,117,128,2,130,103,174,163,34,42,202,37,198,151,214,215,145,113,149,229,10,89,156,237,137,150,149,217,133,227,216,145,161,202,134,206,83,25,137,173,70,103,211,14,195,236,239,198,225,7,241,99,17,39,159,74,226,222,44,219,126,166,130,42,233,66,163,92,234,114,108,167,19,147,114,156,79,170,58,132,133,116,230,232,170,103,164,220,81,132,201,228,37,137,62,160,246,230,139,20,122,104,76,98,112,231,130,4,67,183,151,57,107,134,205,103,31,191,4,90,14,183,84,143,75,6,235,193,201,8,59,37,173,31,52,98,30,152,218,40,9,223,46,219,247,228,190,125,191,236,239,157,64,248,220,80,221,243,22,70,87,10,72,21,201,223,98,184,141,182,53,113,122,86,117,156,224,216,175,162,221,220,33,76,80,144,252,25,4,41,200,207,154,52,234,252,47,0,102,1,129,198,217,133,92,231,183,80,6,11,107,248,120,4,218,177,0,129,126,
111,200,59,84,123,217,226,63,169,197,27,29,178,52,42,147,9,137,72,102,228,228,250,124,192,204,13,13,220,189,136,52,40,6,66,20,158,88,73,143,115,120,240,195,191,94,227,106,120,21,114,86,220,39,142,102,4,100,62,72,24,238,207,192,23,153,142,224,32,129,165,191,208,120,112,57,47,196,179,5,100,222,22,0,208,73,101,115,238,138,74,66,102,119,127,147,64,176,132,29,242,53,112,195,178,130,211,103,111,190,176,225,66,243,240,144,117,90,54,233,43,49,10,101,227,44,254,195,197,186,177,38,77,101,32,89,69,173,149,46,28,42,2,154,153,92,222,52,247,115,104,106,210,22,214,102,140,244,254,224,135,242,216,117,13,102,86,196,101,27,44,237,66,1,113,8,215,26,225,130,69,113,243,237,233,72,223,224,205,189,128,155,160,48,149,159,7,221,66,242,250,86,71,52,211,243,162,88,122,53,252,197,198,18,173,8,203,22,42,224,47,200,148,168,132,135,144,32,38,88,225,151,167,235,26,32,232,110,166,22,163,173,52,128,133,11,2,248,194,114,187,126,236,102,157,93,
197,74,170,166,11,56,43,130,229,29,221,51,184,134,16,131,55,187,131,136,26,68,139,222,171,175,143,233,152,206,122,126,167,114,73,115,56,40,171,193,52,215,250,57,58,236,171,148,40,79,95,175,12,173,180,159,191,215,57,43,203,0,38,86,80,19,199,244,99,175,204,251,35,0,171,126,150,81,7,97,54,36,165,172,3,227,94,28,185,88,144,161,178,45,57,212,162,195,238,76,1,18,232,215,213,103,163,121,49,70,101,204,7,144,108,65,26,49,25,13,154,149,253,183,152,39,128,187,136,151,89,87,18,101,186,118,100,111,107,51,237,131,17,85,145,30,220,118,137,218,248,97,109,180,191,63,227,239,204,120,103,222,218,215,192,251,110,25,92,4,239,184,90,108,19,14,104,218,72,166,131,228,214,80,136,15,16,147,247,210,241,126,84,107,199,150,103,119,171,68,101,233,104,20,107,219,36,191,238,191,218,107,65,119,157,23,40,52,132,249,223,202,2,188,33,251,26,99,71,85,202,148,104,62,144,32,61,36,38,36,221,198,157,205,134,187,110,200,82,248,202,12,119,168,101,1,
66,157,221,75,11,70,172,88,177,75,142,2,2,196,0,52,36,78,17,40,14,241,155,85,89,14,61,203,103,253,45,253,87,38,30,69,83,112,136,3,98,12,246,144,161,23,35,22,186,4,133,254,151,98,20,4,220,120,20,151,192,61,14,32,72,224,26,80,68,148,204,3,51,16,19,42,221,77,92,247,182,37,251,40,6,217,191,238,206,18,154,79,199,45,19,91,222,74,52,217,105,181,117,244,120,74,116,195,104,241,216,183,208,106,43,50,211,200,221,233,161,63,152,206,10,17,145,217,77,174,195,162,224,38,216,107,218,166,133,153,228,165,199,236,206,156,236,17,154,10,86,190,118,159,34,55,28,234,91,70,162,101,27,105,216,132,73,89,20,164,253,12,147,55,129,200,103,101,56,116,29,132,240,8,178,22,160,12,74,94,136,48,54,191,125,7,107,131,184,3,130,138,213,169,215,246,237,112,47,178,67,104,54,255,173,56,77,215,21,216,217,216,205,70,118,165,178,251,60,142,223,247,161,165,251,82,59,180,10,197,67,120,90,219,199,242,43,251,78,245,196,40,207,216,63,121,
171,87,111,71,167,233,26,204,149,103,54,254,134,18,42,105,55,167,152,185,127,99,46,107,19,103,22,242,137,71,42,123,14,251,223,49,45,246,56,33,1,81,145,205,122,57,42,140,150,128,105,169,5,47,214,59,4,184,28,14,125,121,24,90,159,233,79,227,152,213,206,149,102,35,59,27,144,36,123,117,130,0,22,112,163,183,155,110,224,203,206,197,174,196,57,93,168,75,116,123,244,164,93,162,81,74,229,119,14,195,225,119,90,154,53,118,174,137,47,110,25,56,219,89,112,205,163,52,220,224,45,108,214,186,23,215,46,123,181,242,183,31,62,95,100,251,120,62,73,43,212,100,36,80,187,196,4,144,83,232,140,116,141,4,221,125,101,83,33,63,139,168,187,244,165,227,227,152,23,242,39,39,196,48,32,134,148,23,130,128,129,87,66,243,67,168,89,40,40,174,234,255,154,117,239,231,198,207,51,79,240,95,97,249,106,231,228,41,219,231,153,221,217,218,178,247,166,38,111,185,110,206,51,229,153,218,251,193,213,150,218,18,101,245,77,171,91,219,221,178,236,219,221,42,0,68,
78,4,136,156,136,68,16,153,200,57,16,145,68,36,145,35,9,18,32,72,100,16,68,34,1,130,192,125,65,118,75,178,212,146,231,174,102,238,182,171,11,120,241,190,239,19,222,207,243,188,79,120,187,83,73,13,188,183,38,207,156,245,51,12,222,126,61,151,246,186,84,219,227,203,131,203,133,50,24,244,90,9,146,211,132,54,140,210,155,201,161,200,90,189,13,35,101,29,92,115,119,120,55,21,145,5,55,25,232,196,146,191,59,89,156,47,35,140,245,208,8,68,152,27,133,28,233,198,7,213,138,33,121,0,213,174,49,187,46,92,109,237,80,183,78,216,222,219,242,235,56,144,212,38,250,22,125,97,34,97,217,88,98,213,76,171,116,237,108,127,139,235,65,113,34,117,229,162,105,73,38,57,77,250,65,181,22,49,102,170,62,3,97,59,83,188,210,39,88,81,147,144,209,231,137,229,194,6,14,43,202,157,11,214,88,141,136,159,114,193,4,169,140,166,60,148,32,187,169,132,187,250,76,34,79,104,193,114,202,179,171,115,116,81,33,150,23,12,219,18,243,246,70,65,71,141,
13,251,24,182,135,221,52,74,45,188,53,15,99,128,162,244,144,56,144,66,208,11,26,188,59,240,50,213,232,82,40,125,30,194,214,5,124,231,82,221,192,32,162,216,24,20,127,18,135,100,101,59,162,41,150,117,161,43,214,103,107,93,50,232,32,215,113,213,193,39,202,169,190,18,111,209,234,153,163,139,51,173,44,124,211,101,103,52,121,138,63,173,136,128,142,25,108,245,126,78,163,83,42,27,135,160,166,171,45,141,239,7,200,182,68,10,97,68,54,38,183,220,136,198,204,39,221,97,148,154,24,234,28,79,62,98,164,152,185,184,188,14,170,16,112,199,82,207,118,130,88,11,231,169,208,6,184,70,71,251,202,94,246,205,236,186,127,142,169,179,85,68,97,16,89,145,216,227,84,10,78,123,220,205,70,56,205,2,211,86,197,194,77,212,118,119,207,44,9,107,99,146,148,176,152,219,183,251,49,226,254,64,183,115,114,119,167,118,58,118,44,39,236,163,129,83,185,126,44,210,149,77,27,22,250,217,54,123,190,193,92,192,220,17,231,169,248,4,217,72,170,104,85,12,197,41,
208,89,220,132,129,32,119,17,87,134,120,238,250,108,70,132,242,7,56,248,134,171,93,109,89,139,241,124,28,29,137,143,44,13,43,158,46,30,216,42,134,230,136,124,165,138,226,109,141,69,144,189,169,8,230,25,217,97,73,143,86,43,60,231,66,100,212,118,227,206,157,143,247,168,58,99,231,106,113,192,166,143,9,13,191,193,203,142,249,64,183,68,52,209,183,181,252,7,122,33,247,245,63,208,223,191,10,34,47,169,48,112,170,199,186,11,116,195,85,76,197,232,239,221,176,51,216,12,104,176,1,13,160,145,100,53,217,166,222,74,170,246,80,20,130,89,83,128,98,218,32,170,193,119,192,190,105,251,72,78,154,18,206,180,150,201,9,37,19,183,77,221,205,27,44,164,227,61,62,180,162,194,102,109,241,208,110,177,94,191,214,141,14,10,64,243,217,178,149,29,27,100,204,149,11,122,138,240,157,43,100,210,100,30,206,146,162,204,179,51,92,184,21,193,30,69,253,105,95,41,138,184,104,53,42,142,227,206,97,143,130,86,25,42,74,63,169,69,138,181,61,87,226,158,1,147,
179,220,160,61,71,160,161,11,50,32,137,217,12,104,155,183,197,9,131,48,86,16,170,136,85,157,8,132,188,179,30,22,57,67,1,13,57,220,80,50,53,252,174,68,133,218,167,58,92,177,1,56,15,118,177,29,107,39,21,154,100,109,48,112,185,34,99,150,66,161,75,80,225,42,54,210,100,212,243,214,200,66,215,101,160,36,158,40,97,193,150,15,7,142,5,161,241,219,245,16,146,229,9,196,122,174,35,194,6,68,77,166,120,114,229,217,134,161,70,219,50,139,69,22,170,56,104,231,169,217,225,204,58,132,126,176,39,36,8,189,180,147,187,201,89,87,50,219,215,232,237,220,198,208,118,124,210,128,59,53,163,161,65,22,177,86,141,27,90,13,69,60,102,99,112,25,159,81,100,205,218,173,226,112,214,48,222,49,113,75,227,11,86,105,214,190,197,22,78,38,76,30,146,98,246,225,110,102,34,71,241,110,131,189,192,51,23,74,60,99,129,231,44,186,56,252,194,192,63,97,6,10,132,228,13,190,38,215,30,230,99,156,189,205,225,28,232,42,78,209,211,181,4,164,229,195,
164,226,59,165,254,233,213,140,25,221,139,159,183,119,200,39,91,24,26,215,223,220,41,97,173,119,170,35,214,153,195,145,191,165,145,10,220,234,124,11,61,221,222,220,53,30,107,26,28,236,56,115,156,161,55,46,109,68,217,186,158,220,191,57,199,150,165,141,185,204,131,58,189,239,188,17,135,157,221,244,154,1,68,105,156,34,202,50,102,24,71,16,246,220,248,27,184,30,236,71,137,46,81,152,240,16,194,99,77,121,16,142,27,127,16,91,216,122,41,109,155,214,115,225,131,41,186,171,117,150,108,16,128,43,196,3,243,225,246,202,38,140,114,161,206,79,110,73,74,91,134,173,105,138,176,228,86,247,252,72,185,62,36,42,112,91,46,206,45,170,25,200,97,205,209,6,50,189,23,153,250,118,28,251,32,211,102,175,37,117,171,34,48,24,201,232,42,146,79,34,208,104,238,8,195,227,157,109,71,104,172,76,155,95,9,227,114,13,116,79,28,85,40,42,6,156,164,220,56,197,232,103,80,159,2,30,40,119,93,215,220,117,59,175,9,229,181,206,102,212,154,129,157,76,171,89,
109,220,8,126,16,148,66,61,107,120,182,53,115,85,47,18,37,225,197,4,198,241,228,226,2,119,44,0,151,179,20,85,103,21,177,217,205,161,218,60,144,78,128,172,220,98,216,208,58,209,65,231,211,201,182,202,5,146,115,106,50,101,246,9,246,80,159,181,65,41,18,216,30,117,11,100,174,101,233,54,95,142,162,57,192,169,49,88,102,20,25,156,120,194,116,57,233,220,142,141,131,133,104,189,215,149,180,135,227,117,236,176,97,183,222,94,245,187,7,114,95,93,46,117,94,108,249,187,82,69,52,171,21,43,149,150,34,171,217,70,152,42,198,65,130,34,46,51,123,53,229,54,24,114,92,179,89,7,162,129,213,62,109,26,85,182,99,175,77,201,197,40,49,100,23,154,150,98,184,73,42,30,189,7,50,16,132,11,126,101,111,1,217,111,14,15,139,32,232,157,102,187,212,102,152,109,135,76,223,64,17,56,33,242,144,165,179,117,151,245,26,236,174,183,165,176,216,41,226,212,136,187,0,147,122,70,124,77,184,168,141,19,164,19,115,130,70,155,207,228,245,137,32,205,46,81,
139,182,4,61,205,29,75,250,123,82,27,250,242,152,120,118,196,200,112,4,221,82,231,250,90,54,191,54,229,75,210,162,205,112,48,54,197,47,245,103,122,33,32,157,183,237,104,204,33,55,57,46,255,176,115,188,235,191,69,240,239,218,240,235,43,126,177,80,118,229,142,42,113,48,127,164,100,228,201,10,2,79,185,14,90,51,168,163,160,155,104,3,54,246,66,97,23,53,32,156,192,2,101,130,167,60,188,30,223,80,161,44,47,222,209,134,200,80,68,65,108,211,205,223,67,91,78,165,23,162,164,124,147,89,142,87,105,7,195,30,12,107,138,31,7,225,189,109,11,90,151,207,147,68,134,110,158,78,178,104,24,29,222,182,238,78,112,89,54,211,56,173,92,5,161,194,249,42,13,23,177,200,76,158,25,80,157,200,145,14,201,87,250,5,109,116,57,1,47,174,167,102,137,187,93,121,150,135,61,11,163,189,19,37,7,13,65,194,70,113,5,10,85,65,20,83,112,208,118,140,8,217,64,92,38,16,18,18,4,98,117,131,173,99,232,200,155,67,199,15,29,118,183,251,114,75,
197,208,183,181,160,42,44,97,58,157,93,104,7,14,23,168,158,199,195,133,55,232,61,222,145,154,203,160,218,82,158,249,186,95,57,140,108,76,90,116,10,33,106,148,48,65,72,8,1,57,119,123,145,172,35,40,51,188,195,87,123,106,104,185,37,167,150,227,108,37,185,174,69,177,149,212,58,27,170,98,97,111,239,147,145,142,178,25,75,66,78,148,7,18,153,93,151,117,31,213,111,186,123,6,234,56,112,160,78,23,114,164,169,179,34,59,220,223,129,248,79,173,105,107,155,22,220,111,183,39,202,84,88,52,202,6,173,67,26,159,223,197,103,82,27,92,181,25,122,131,15,224,124,117,46,74,98,131,78,174,15,65,230,195,187,227,141,155,196,25,188,149,82,96,20,169,192,93,151,218,118,109,94,31,165,97,167,183,56,41,5,201,141,244,170,136,137,249,8,171,18,158,115,118,103,13,133,104,87,75,59,41,200,85,39,156,17,109,179,159,230,25,28,200,17,141,120,165,149,106,79,166,153,112,113,118,101,209,149,154,54,26,51,58,79,28,59,161,54,16,143,150,82,195,18,222,
186,167,182,142,187,174,76,73,181,162,89,84,62,4,175,119,238,24,211,35,231,221,24,191,126,89,220,159,11,185,89,171,255,156,140,68,235,207,91,224,233,0,116,80,70,51,8,16,9,191,67,64,7,215,54,129,115,102,92,185,88,101,174,25,233,188,82,22,62,113,67,245,37,121,240,225,204,123,192,37,195,174,138,85,132,49,233,114,221,36,54,248,177,50,213,13,187,117,161,38,176,195,139,11,58,171,124,0,55,219,164,93,177,153,114,186,121,1,233,84,164,155,7,44,147,59,53,218,102,93,215,172,70,113,24,131,167,155,42,167,178,48,111,2,171,175,43,173,133,233,205,1,83,172,4,41,177,35,33,113,15,69,28,187,114,224,88,1,82,133,167,118,182,196,35,66,9,2,86,130,173,78,229,148,92,129,108,223,17,132,23,222,212,26,116,14,39,199,232,27,102,111,198,175,134,187,67,146,208,132,7,98,88,239,248,131,249,62,93,127,227,28,236,178,29,66,230,161,221,4,1,185,130,200,141,131,139,192,5,52,210,132,51,65,16,59,105,218,137,161,49,23,243,29,16,110,
129,109,158,136,74,116,199,149,116,75,125,142,57,130,72,199,80,197,140,164,227,128,72,126,124,230,72,16,108,197,4,154,30,104,188,102,117,22,136,105,180,91,190,109,51,88,194,28,55,203,122,218,132,148,173,23,89,76,136,122,133,201,179,143,118,24,126,82,110,56,184,176,201,121,71,194,173,134,17,157,5,139,39,54,106,171,181,37,170,160,224,90,67,150,116,34,166,110,176,164,64,15,119,65,188,109,79,20,148,157,226,101,173,116,116,130,154,110,160,11,168,36,113,18,44,167,78,8,103,139,189,253,197,58,246,228,46,137,171,16,218,208,221,9,205,50,135,129,60,119,231,24,33,193,119,37,76,212,214,128,52,79,167,155,220,49,30,246,70,237,4,217,20,251,241,166,153,44,189,222,236,123,50,58,103,65,122,82,15,209,134,61,61,89,21,141,210,14,169,99,145,114,113,126,57,114,106,135,180,98,7,227,197,141,61,241,19,129,190,65,35,216,64,28,227,69,40,96,218,135,219,218,19,38,183,175,98,152,68,132,155,109,230,112,10,68,12,221,97,39,217,93,244,184,66,192,
59,108,92,171,255,234,28,138,196,152,139,220,221,155,134,15,81,156,87,54,55,168,36,51,99,203,149,178,5,109,193,68,180,114,51,102,26,146,188,189,89,9,61,8,73,89,135,156,113,187,185,229,109,247,184,150,54,200,156,207,69,197,2,231,52,158,75,149,131,161,232,54,142,50,78,21,146,164,6,152,183,225,32,250,135,190,4,120,107,234,180,9,79,183,186,1,137,16,229,129,7,125,242,30,65,133,96,156,218,144,201,89,181,205,114,161,202,123,85,186,74,158,229,144,209,253,161,117,39,143,237,216,207,112,164,13,138,6,163,51,10,2,241,57,116,157,76,132,233,198,145,2,170,181,189,89,143,19,193,25,14,127,154,63,210,107,244,40,88,24,117,56,166,99,233,230,88,155,160,35,69,21,174,118,212,57,108,134,89,224,211,205,121,87,163,195,16,5,29,168,158,125,222,98,4,27,12,38,65,217,4,241,201,17,143,254,42,47,24,93,24,45,253,6,14,49,184,80,17,241,66,43,54,10,212,183,32,112,205,141,43,130,176,116,35,9,126,89,218,228,104,51,17,186,161,87,
5,85,184,56,175,110,231,84,76,247,133,182,60,100,76,170,19,26,129,130,53,67,86,102,139,184,231,183,213,3,49,14,100,128,11,14,112,208,93,130,151,121,130,62,174,207,96,103,173,125,41,83,201,178,119,72,7,144,92,16,211,41,13,155,231,82,3,133,41,38,14,182,200,16,90,63,42,143,228,203,227,113,179,205,213,196,182,181,160,150,54,43,141,214,58,206,246,64,50,218,220,57,226,168,148,206,32,209,114,38,81,213,27,51,76,165,175,202,221,100,185,106,219,194,83,154,227,206,112,179,243,221,141,235,214,34,16,157,231,61,115,215,121,112,86,70,95,7,75,27,45,227,112,77,121,180,93,156,57,80,61,199,158,134,130,38,170,182,231,179,27,50,126,140,212,211,186,151,99,152,229,46,145,220,181,228,218,11,177,100,183,184,117,57,55,101,230,226,246,198,220,20,95,136,155,39,27,18,150,42,219,82,209,90,114,21,85,78,11,143,6,225,52,156,13,134,83,206,93,120,234,238,216,131,162,179,162,241,40,177,142,14,185,161,93,92,154,19,5,26,245,246,97,172,54,190,
12,26,23,23,99,208,5,143,38,244,225,77,179,181,221,198,0,197,197,173,85,160,236,116,128,28,215,161,192,173,70,44,138,48,68,220,236,118,69,116,102,99,48,114,154,80,6,10,37,18,133,101,81,21,81,133,130,114,189,200,254,129,177,207,42,239,83,121,168,70,206,93,137,251,125,6,162,73,235,59,2,223,0,57,204,189,182,111,216,52,249,18,40,66,48,236,65,217,177,21,89,100,223,141,238,214,116,102,26,241,0,194,210,104,156,24,141,208,23,65,162,76,103,55,240,94,178,15,147,120,193,80,34,101,152,72,8,170,81,211,93,222,87,54,2,129,14,204,11,115,117,37,112,111,176,103,137,214,197,162,14,212,216,19,34,119,36,250,113,154,42,70,116,214,189,33,49,135,11,77,129,32,185,181,134,159,3,22,194,35,123,174,26,153,203,49,129,229,32,124,123,6,181,174,231,199,202,138,81,35,222,111,179,119,46,112,44,120,2,31,85,107,15,130,19,83,13,117,231,113,85,61,32,242,150,39,214,231,199,174,226,209,187,200,81,47,56,40,178,155,252,45,3,33,53,67,
31,245,221,248,144,217,2,34,182,214,188,145,42,34,175,119,180,49,106,79,232,6,223,16,67,145,168,113,169,178,183,206,56,205,220,64,13,20,173,79,177,33,21,226,124,18,194,140,139,57,245,106,130,181,137,69,38,99,138,186,153,168,163,219,104,165,211,129,201,158,184,170,225,32,170,100,2,177,112,184,231,100,248,35,12,205,160,163,28,69,21,173,244,69,71,39,25,228,235,103,3,170,187,147,73,142,156,21,59,251,56,42,162,37,116,87,242,252,77,232,194,15,86,129,25,188,153,165,73,118,38,124,52,217,13,49,145,63,72,0,125,245,249,120,3,73,59,49,223,152,102,249,179,41,75,26,165,202,146,168,220,126,229,172,195,204,145,124,12,196,65,48,55,216,167,94,215,204,71,42,220,237,249,193,148,63,97,169,198,72,26,124,68,72,152,74,248,1,94,200,142,114,143,101,4,122,221,23,98,42,123,174,49,50,32,46,105,71,73,253,98,13,150,177,155,207,122,8,93,79,179,235,229,22,197,215,185,121,121,215,176,126,119,133,119,30,12,6,54,48,134,200,114,211,156,62,
176,60,150,246,34,184,56,23,155,42,97,74,8,156,25,190,138,64,145,14,121,86,147,186,162,97,224,35,117,66,213,127,102,131,100,241,68,21,151,93,222,23,202,157,155,140,43,14,229,40,191,219,8,192,185,12,97,236,218,19,22,207,241,112,241,26,111,177,222,178,179,125,12,208,38,53,119,138,183,75,119,80,230,43,76,132,5,180,24,118,242,32,201,230,167,249,33,23,218,204,136,84,50,80,245,25,118,147,114,181,225,57,68,129,160,49,13,193,233,157,123,200,188,36,177,143,32,81,34,204,148,46,30,133,82,72,101,234,48,22,155,227,141,27,97,155,244,174,24,52,49,219,219,66,37,84,79,66,37,92,251,161,144,212,182,47,82,146,141,27,133,117,2,145,48,117,213,46,197,121,182,225,116,143,61,42,86,185,241,158,91,4,165,64,9,238,147,18,166,33,111,93,112,82,195,190,133,11,163,220,78,246,12,177,117,125,234,86,106,157,65,114,123,28,255,84,98,20,75,99,126,81,244,220,71,76,147,119,153,104,110,208,175,220,62,135,209,171,51,114,175,80,142,192,79,33,
96,125,222,109,47,147,134,112,82,187,26,161,106,38,7,20,17,44,70,171,164,145,231,61,62,213,194,22,201,152,136,116,212,222,160,41,43,30,160,73,73,134,211,193,54,13,102,223,116,251,57,46,93,108,45,153,62,74,150,123,199,170,241,173,180,168,58,180,222,217,187,85,197,54,201,67,24,41,18,90,246,213,0,209,49,146,142,253,172,118,90,83,89,219,247,16,121,45,225,157,174,64,144,158,157,57,198,122,133,211,32,221,171,225,53,55,69,44,236,44,194,173,56,43,235,249,237,83,244,250,65,219,174,29,160,20,174,100,31,137,17,42,176,98,19,82,212,147,156,103,205,99,196,154,166,181,123,118,75,218,15,115,232,248,2,231,174,108,63,64,165,103,46,56,135,210,39,213,170,167,12,94,65,90,131,157,121,57,236,78,212,183,63,199,222,201,186,220,194,109,27,113,98,98,114,118,217,102,157,238,224,20,58,93,212,171,211,169,48,201,201,247,202,48,226,225,153,5,102,175,160,187,99,117,66,195,88,199,42,123,221,154,67,63,179,205,117,102,157,151,56,40,157,18,199,246,
189,49,178,155,197,214,69,196,93,61,137,109,211,57,116,90,162,118,14,235,31,248,162,219,129,20,185,206,100,161,64,209,141,225,26,70,91,197,87,113,8,172,114,195,127,43,17,243,78,144,26,213,222,29,62,21,153,90,50,156,158,141,213,238,157,21,141,24,36,68,68,71,152,5,110,170,170,71,48,184,164,94,188,85,202,70,98,54,68,180,13,71,90,215,33,52,32,152,218,48,145,12,250,41,124,95,69,194,133,115,144,217,97,130,127,150,139,87,221,193,169,8,181,207,219,17,120,153,125,121,72,233,146,216,16,117,85,205,163,129,68,67,78,200,237,194,79,240,184,253,148,245,235,171,153,127,221,97,79,9,6,130,180,228,186,213,176,250,205,118,197,102,73,234,106,221,37,155,18,134,222,60,179,239,236,172,99,110,203,174,27,134,121,215,153,229,109,121,253,245,205,26,77,188,240,221,201,39,94,249,249,34,41,79,39,147,211,171,68,25,167,157,115,179,251,146,205,233,72,42,187,17,172,159,245,177,97,56,186,71,117,31,164,97,174,140,37,57,236,13,243,177,145,223,161,199,
101,175,61,78,218,241,245,109,67,77,187,116,105,39,39,225,59,68,189,192,209,116,96,219,231,68,142,38,59,230,193,156,39,24,220,157,187,142,247,92,111,236,78,117,57,174,104,14,65,108,110,52,75,138,214,230,154,200,5,65,136,134,108,80,50,238,219,227,51,224,236,53,190,108,142,218,184,114,222,154,107,167,59,40,68,196,40,1,73,221,104,139,212,140,64,151,99,46,139,240,196,83,244,95,210,149,165,190,53,32,181,243,116,116,254,90,15,13,106,249,14,143,198,41,31,99,147,159,235,92,221,208,79,221,216,129,86,11,69,129,55,12,185,139,20,100,231,16,105,246,43,234,179,1,29,50,58,28,160,88,2,27,233,102,59,107,213,17,185,183,186,228,208,114,103,237,0,237,66,121,87,199,225,229,99,36,132,176,59,83,123,141,55,155,80,141,113,166,105,172,225,137,188,13,189,107,72,37,65,89,135,157,114,143,135,146,242,110,26,176,107,228,88,223,63,211,8,220,6,30,178,98,244,13,217,17,55,54,17,220,55,93,150,115,117,108,179,159,4,243,215,51,250,232,37,107,
155,127,10,221,132,91,198,71,142,4,179,99,247,206,232,163,41,58,229,135,54,8,154,140,212,15,83,197,59,232,26,36,115,232,185,38,102,106,190,216,8,36,68,154,107,54,44,107,228,33,23,68,148,16,220,206,141,5,48,231,6,138,97,152,73,39,44,16,89,161,232,225,17,46,36,50,205,22,85,116,34,12,57,146,195,225,117,38,57,185,77,224,241,245,162,181,93,239,5,206,80,52,156,168,137,78,97,110,41,135,77,50,83,90,234,123,197,178,205,157,68,163,84,114,30,29,118,185,53,242,225,97,56,171,202,92,30,149,128,218,95,113,226,72,149,28,206,194,209,110,116,29,140,184,118,181,224,209,219,8,194,35,210,37,215,134,51,146,143,114,222,221,148,237,58,11,158,107,199,188,99,152,143,204,243,145,90,61,133,236,179,107,226,131,81,183,165,81,78,182,171,176,22,36,78,158,21,209,125,14,164,133,217,62,104,28,90,121,76,116,151,181,189,127,153,243,150,204,28,159,33,28,116,178,207,7,238,11,107,215,127,39,30,114,88,49,195,172,216,83,178,71,8,173,66,105,
159,128,17,115,215,117,0,231,89,160,44,124,200,113,190,189,110,244,36,7,35,111,26,7,41,166,177,177,204,48,143,214,236,38,132,5,86,222,141,223,16,239,129,41,8,231,144,10,82,223,24,169,27,86,30,113,138,12,49,57,195,112,139,41,39,120,209,204,49,92,212,219,31,10,77,36,254,32,140,211,210,246,106,105,165,74,8,148,247,251,19,78,185,216,85,90,128,166,71,112,198,119,112,123,208,109,253,54,127,48,99,249,90,202,184,249,130,244,144,56,152,226,132,179,88,222,53,57,89,163,166,87,223,215,9,189,108,160,126,131,148,45,1,90,55,23,66,157,88,163,8,115,197,216,173,51,173,17,195,145,5,197,116,172,77,157,210,112,76,46,114,180,219,130,174,110,125,67,104,162,79,206,233,61,201,224,166,223,111,35,176,116,204,128,109,86,78,57,135,112,178,134,197,139,105,253,120,236,122,82,112,16,180,111,121,183,98,139,106,53,14,9,133,9,241,206,154,174,164,238,142,115,81,4,196,36,24,22,18,26,25,116,215,13,183,200,226,68,239,118,125,111,216,67,16,153,
84,211,229,76,164,128,45,154,176,16,213,154,222,32,212,227,137,204,142,3,199,77,159,31,212,183,44,87,147,145,138,109,233,187,46,2,183,70,63,31,49,8,243,47,11,6,123,47,233,203,167,81,184,225,14,15,169,229,123,101,200,74,249,42,57,238,169,23,230,253,35,197,73,141,38,159,57,3,98,201,205,40,63,189,216,34,115,120,49,16,190,191,128,251,164,118,91,202,8,49,118,11,126,135,189,109,85,205,216,173,246,148,113,178,127,48,8,55,224,142,217,105,67,197,181,53,78,144,160,59,209,152,82,247,180,51,33,254,29,140,224,63,160,101,38,58,97,115,67,223,119,143,112,183,245,155,65,181,100,191,222,152,93,242,91,148,233,30,116,211,38,221,159,200,224,120,46,161,217,204,40,138,252,102,121,157,227,117,95,23,219,241,185,183,192,226,185,112,167,14,108,205,166,151,100,247,155,39,146,134,118,91,6,231,213,91,208,164,41,146,78,28,164,17,104,160,11,231,136,182,36,64,211,91,142,248,81,123,114,151,247,120,191,115,237,96,187,188,59,112,230,124,190,183,102,70,
9,18,151,220,104,188,180,97,244,236,102,193,208,188,218,116,70,115,95,94,90,157,157,33,81,162,178,205,118,168,168,72,17,18,40,8,58,155,177,18,208,53,47,54,174,145,235,203,142,117,190,179,56,153,155,154,55,138,20,178,238,213,110,149,235,227,109,112,128,131,187,242,216,149,142,166,169,188,201,22,78,7,16,148,0,116,235,53,78,141,215,46,44,41,30,32,196,176,73,146,95,191,37,131,139,180,126,253,129,139,20,63,59,65,134,32,87,160,109,21,193,109,89,191,130,83,52,117,9,138,116,142,245,91,238,92,136,62,152,89,167,183,65,10,57,216,239,85,149,200,195,76,62,225,191,133,219,203,242,20,1,132,166,143,167,158,51,83,149,231,189,60,220,196,90,248,117,61,28,70,198,90,3,129,42,141,48,244,237,109,49,144,112,80,68,189,133,140,159,146,145,167,240,57,126,216,138,110,174,53,240,108,89,224,142,104,198,103,55,193,77,55,170,229,154,3,13,159,127,30,144,141,105,26,7,102,148,36,170,98,35,62,63,118,88,55,91,207,23,96,81,231,212,201,243,184,
16,24,244,141,51,148,189,101,64,205,87,48,41,91,148,116,103,204,195,217,252,240,218,116,218,188,246,166,133,245,214,14,115,136,147,12,118,152,102,23,221,231,165,196,80,61,47,226,198,53,241,34,148,182,169,230,242,210,213,201,237,174,155,22,136,12,20,126,48,143,5,238,148,35,12,37,133,103,186,200,158,48,105,141,103,182,158,181,228,216,29,173,44,130,210,94,250,89,144,166,124,156,27,244,246,247,236,169,138,115,109,195,154,104,134,136,209,13,7,249,40,126,117,174,132,185,88,160,179,210,85,62,235,118,57,172,51,3,68,38,36,240,14,234,10,212,113,9,110,47,178,56,167,9,15,153,146,206,84,243,60,66,58,108,228,164,199,221,84,54,217,137,181,133,217,146,176,203,177,14,201,218,186,195,5,228,121,8,42,96,230,76,147,222,246,5,100,223,202,33,175,57,253,62,108,25,148,229,21,233,90,203,145,249,98,27,153,30,42,119,213,41,194,46,255,46,237,26,10,187,136,248,233,254,136,55,92,179,59,15,173,165,100,122,83,182,127,11,238,82,55,230,7,39,126,32,
240,239,54,185,220,78,111,17,179,35,247,179,190,156,178,16,235,144,205,240,233,101,10,92,203,237,131,246,104,177,44,55,237,162,23,186,195,98,43,117,12,82,108,199,213,186,74,108,178,198,161,111,65,214,173,60,15,120,152,46,194,59,104,248,218,37,14,49,137,214,145,162,62,47,105,118,136,84,146,155,137,145,91,222,133,145,123,92,58,69,95,205,199,163,81,35,110,80,116,57,170,209,212,8,223,11,23,18,35,132,117,143,135,185,176,104,200,50,194,158,38,133,132,244,64,48,208,32,230,131,151,61,228,3,247,144,40,212,86,83,62,182,176,73,153,131,26,54,103,168,176,214,13,112,202,155,54,161,109,237,118,207,60,168,33,136,116,244,25,162,239,109,52,174,102,206,45,14,183,154,20,206,10,51,194,250,117,95,157,152,11,120,129,138,171,52,189,154,80,187,245,147,228,8,82,175,207,23,100,124,237,234,106,72,84,93,39,238,164,107,51,39,152,105,166,130,75,227,96,150,178,252,175,4,110,216,56,196,151,107,71,7,85,11,235,220,94,36,92,28,49,117,193,131,211,45,
47,39,157,66,8,46,46,6,76,165,172,78,178,229,181,21,57,90,42,71,108,203,45,119,66,118,241,178,145,10,33,246,74,217,61,237,112,220,225,27,45,133,156,200,67,233,167,61,129,52,170,184,55,220,36,78,27,32,209,124,11,217,43,89,69,86,72,7,227,36,133,97,70,26,43,34,51,15,248,251,187,228,40,186,189,163,130,9,54,202,116,101,181,13,205,76,249,174,67,69,51,119,61,118,77,13,242,230,142,239,18,42,221,9,201,128,50,61,68,229,168,172,130,70,176,123,104,24,33,110,108,91,197,181,163,99,46,189,86,88,120,1,227,29,65,106,211,59,158,119,178,157,114,75,189,210,248,126,134,192,200,49,72,150,77,152,216,195,213,9,188,34,83,236,202,5,73,66,96,212,210,24,179,200,93,223,214,4,169,28,126,58,44,207,13,187,242,171,157,99,135,214,55,212,76,185,187,183,206,220,30,153,66,25,84,7,117,210,190,182,49,51,116,120,145,253,161,39,150,118,158,84,9,160,75,156,197,73,29,146,165,121,114,159,55,135,4,188,206,12,249,58,108,201,209,236,
231,235,21,105,208,113,231,74,141,78,211,12,41,153,78,222,79,95,113,238,134,167,92,193,174,38,133,48,241,130,137,125,69,148,163,40,13,250,71,209,52,136,117,188,53,134,66,118,101,237,125,21,58,84,190,185,100,95,233,253,219,205,163,0,200,115,137,22,89,183,143,206,144,251,87,164,211,110,42,39,241,146,73,92,129,187,11,178,201,47,227,41,65,199,51,4,163,20,56,178,236,142,64,184,152,25,72,178,173,166,239,176,230,10,246,108,41,253,113,29,66,133,79,36,222,108,138,127,108,38,69,247,210,204,114,70,130,204,110,77,227,94,139,5,57,130,76,28,9,98,27,17,231,120,162,9,211,129,131,45,209,174,197,60,110,184,67,19,224,218,145,113,189,136,177,147,189,46,220,217,233,119,147,90,222,187,27,45,187,121,77,125,91,47,244,175,91,33,11,235,148,96,63,190,99,72,19,110,221,90,154,10,209,228,43,61,71,118,88,214,77,22,83,66,40,195,134,237,39,155,170,245,218,250,201,161,243,102,238,184,37,212,2,179,129,165,107,74,171,164,35,134,126,18,147,230,
71,249,158,0,146,76,247,207,212,141,189,106,137,133,205,122,27,2,70,53,10,242,111,140,134,118,59,51,149,230,153,164,112,249,212,44,61,220,55,69,243,103,3,254,248,76,228,188,145,168,186,131,242,32,61,45,248,133,71,4,110,117,190,59,186,173,28,162,46,247,54,57,74,165,185,215,216,114,6,160,201,230,246,177,172,147,205,243,16,33,68,160,165,132,231,239,226,135,234,211,226,33,95,65,20,106,236,204,173,115,194,174,242,214,191,214,176,71,66,188,227,245,38,195,85,103,145,27,144,148,193,27,27,27,218,25,228,118,48,202,185,204,224,103,232,80,209,26,221,139,150,76,199,137,190,163,232,12,132,175,146,199,71,146,43,15,125,180,205,212,218,179,153,53,5,236,50,148,68,11,195,78,7,70,109,20,166,40,45,114,192,239,147,111,161,201,197,142,206,133,213,91,245,222,150,243,134,141,220,105,80,40,67,71,69,139,209,79,80,54,99,204,88,104,234,215,207,213,243,92,126,31,118,205,239,15,188,163,155,201,154,125,228,11,69,148,150,65,55,57,108,218,179,164,45,192,
19,82,160,86,99,66,60,40,122,125,210,51,117,5,125,203,168,20,66,153,46,200,19,154,210,242,122,58,27,151,192,14,245,33,40,36,197,145,184,238,134,65,196,154,94,234,129,146,186,87,169,51,124,58,93,139,33,2,28,129,28,92,245,114,65,105,211,1,38,137,142,212,61,35,219,116,20,131,196,21,26,36,146,215,143,169,128,178,233,132,8,223,156,106,138,105,27,125,251,194,194,10,208,171,162,210,218,165,146,186,141,164,229,230,216,148,132,113,78,174,110,42,116,197,17,36,67,113,221,145,143,205,97,219,194,234,129,64,183,41,194,187,209,72,47,167,40,175,213,10,227,154,166,160,183,147,83,7,148,93,230,58,122,183,215,235,205,23,133,133,49,207,221,41,42,130,14,1,84,207,113,156,58,174,109,182,19,228,45,15,121,118,187,206,240,11,72,188,30,212,135,135,83,144,7,190,184,60,228,220,155,27,47,114,70,97,174,153,194,41,50,254,145,150,17,94,248,41,32,12,184,157,68,50,229,24,225,104,50,237,159,112,28,169,218,122,122,225,207,246,43,26,243,13,99,227,
164,77,26,24,233,27,148,176,91,223,129,147,156,38,186,103,38,93,59,62,189,76,14,52,6,187,69,193,80,180,115,131,141,216,212,233,43,49,199,36,59,132,123,41,147,88,10,194,237,216,150,138,65,29,241,206,215,164,181,115,135,226,210,143,144,160,179,94,109,10,52,240,49,171,61,167,87,105,14,30,233,71,166,188,251,178,137,116,114,32,42,101,40,32,29,176,48,232,67,138,208,27,43,236,68,47,243,145,33,117,124,106,219,8,166,214,215,178,197,2,95,151,175,89,109,110,183,74,225,108,160,74,226,3,253,150,21,159,80,87,124,59,216,102,148,228,82,164,111,192,121,202,186,172,186,13,109,180,78,15,249,125,216,37,167,105,42,164,12,249,46,5,189,113,185,117,38,60,190,37,76,44,124,171,125,236,38,89,42,114,187,105,40,133,23,251,250,32,98,35,157,8,175,101,79,114,197,132,205,113,232,179,204,144,90,84,36,29,114,159,91,48,114,162,116,48,61,149,139,128,118,78,79,111,210,22,144,66,2,231,32,55,56,64,210,129,212,230,23,142,52,107,208,98,76,52,
45,24,236,24,172,31,177,70,218,51,176,139,168,159,9,46,21,2,99,168,0,180,232,182,46,113,56,199,48,181,214,144,250,186,179,48,156,129,82,180,77,89,162,44,171,240,250,9,74,174,72,238,82,45,87,213,193,141,211,113,66,63,147,38,52,215,10,213,94,143,220,8,87,71,142,34,171,116,40,9,165,174,79,14,41,60,54,214,7,25,194,90,177,45,3,223,83,82,101,148,119,237,116,52,123,236,65,248,77,172,232,33,212,179,0,46,255,62,6,209,89,203,59,144,62,161,71,109,59,82,236,23,111,137,55,50,92,63,189,85,214,49,133,59,76,119,81,120,57,140,138,97,35,73,227,160,133,12,137,38,23,49,220,68,146,34,87,117,155,37,225,174,174,222,158,207,5,199,8,14,37,42,81,34,26,113,48,7,55,137,203,49,244,249,49,182,88,25,38,253,236,75,138,100,70,9,95,236,56,183,105,39,103,152,75,68,79,177,185,78,178,101,75,125,157,227,182,29,237,238,40,27,20,131,197,184,216,203,94,220,20,204,182,136,102,219,180,55,108,31,84,196,153,126,249,22,
124,230,20,227,185,22,103,8,58,26,39,170,112,177,72,190,61,128,250,6,210,66,121,84,194,159,183,52,16,20,36,231,243,171,200,52,69,138,4,163,17,111,103,183,157,115,46,171,99,161,162,72,20,214,54,87,32,219,134,96,118,85,113,37,223,77,119,115,229,97,165,68,59,163,13,206,186,227,106,243,114,16,60,54,88,108,186,43,71,254,218,104,220,55,101,57,45,249,33,45,187,192,94,223,221,54,198,125,45,59,207,28,196,250,36,155,136,186,222,202,243,134,218,164,126,158,59,191,136,9,40,178,54,83,90,76,195,214,155,205,166,128,2,185,158,18,136,112,121,78,157,30,195,199,241,59,228,204,167,136,113,74,219,82,91,197,218,137,183,48,115,25,61,165,207,239,6,172,193,42,20,42,57,128,136,61,10,107,164,173,54,9,19,212,51,112,44,12,207,241,65,240,6,216,229,209,69,206,179,2,184,148,177,181,71,158,48,174,118,132,8,14,13,173,245,14,195,76,67,144,191,75,68,94,103,73,117,121,135,44,183,229,242,102,30,37,6,245,228,211,185,203,81,104,39,139,
183,195,113,184,164,183,39,132,112,92,114,178,241,14,45,145,110,179,197,9,255,76,232,210,77,232,146,171,181,64,190,15,31,183,27,184,218,133,213,174,62,135,98,207,45,224,254,44,77,92,247,128,12,187,167,177,202,177,229,36,37,244,84,156,217,48,37,76,20,167,24,241,96,231,98,43,112,120,61,110,93,104,163,170,6,162,53,170,43,13,76,101,161,92,196,166,124,152,97,33,120,161,4,101,34,5,5,227,180,35,116,52,41,126,218,246,54,163,153,163,237,156,186,83,59,231,170,124,39,3,114,145,234,180,141,117,65,66,215,156,64,167,232,210,182,98,72,56,17,198,38,130,115,91,126,219,126,66,173,173,115,207,39,180,202,44,60,109,204,69,206,221,245,131,16,103,194,179,182,14,118,58,151,68,120,3,103,112,232,192,226,179,112,91,107,20,35,73,103,86,63,123,238,188,50,217,79,40,153,160,154,87,83,207,67,112,60,134,142,132,54,97,45,28,47,55,82,77,140,219,98,221,198,212,146,141,227,93,49,108,105,189,153,174,223,45,146,78,235,174,191,87,19,194,42,55,
202,4,130,178,14,245,37,24,84,100,29,154,8,65,166,225,248,246,89,171,107,213,193,15,24,58,165,70,116,114,116,196,153,157,204,239,178,135,220,133,99,205,58,25,234,156,12,85,28,59,57,157,160,148,11,158,136,34,134,156,251,16,117,10,245,100,154,219,146,32,8,86,106,245,128,44,95,35,29,238,92,165,203,188,29,4,181,24,112,184,14,82,232,227,19,54,9,58,50,73,53,2,246,132,20,131,144,157,225,227,235,242,249,181,105,163,209,202,132,147,174,174,108,16,104,103,180,1,129,162,88,172,92,237,40,124,238,20,127,92,9,5,225,71,251,157,227,190,0,198,137,228,166,113,155,148,30,243,75,14,20,230,52,242,68,103,139,91,252,218,189,150,242,232,216,185,17,130,71,36,5,175,28,1,135,172,123,168,235,30,168,231,74,238,149,66,226,5,202,233,6,82,132,59,48,104,132,97,131,50,145,80,178,215,25,62,116,198,46,247,24,20,17,184,155,113,13,95,71,181,246,187,218,62,141,195,215,13,56,168,154,74,34,40,110,31,246,13,141,35,37,179,124,129,43,214,
91,228,219,227,138,163,89,25,83,42,103,41,188,125,155,97,93,111,98,19,140,12,142,49,189,69,81,196,227,107,102,208,37,218,72,169,26,62,183,171,29,80,136,23,10,185,34,43,137,200,221,90,143,164,4,215,88,184,70,69,251,34,64,100,94,146,13,83,121,104,243,40,148,101,10,154,234,118,49,87,22,145,110,100,170,67,82,80,86,42,140,83,167,84,4,203,131,86,100,176,219,205,246,154,237,56,91,227,178,166,109,39,60,2,228,4,93,167,111,196,31,180,48,126,30,123,40,206,170,198,213,12,85,58,157,161,46,20,212,131,25,255,128,65,50,20,233,3,81,251,170,156,159,87,195,156,96,40,124,147,183,28,160,2,54,206,150,175,164,10,156,203,11,102,1,36,126,14,61,23,113,168,7,57,148,101,30,63,223,163,176,36,62,217,169,111,81,112,59,54,101,124,11,82,38,235,203,246,174,15,131,41,145,91,233,34,50,34,40,95,99,143,174,149,35,35,231,158,33,204,61,43,141,239,6,119,138,254,104,194,218,64,30,98,179,166,221,227,3,43,73,106,241,16,145,185,
11,22,61,182,51,201,154,195,72,185,106,212,183,52,44,36,141,120,76,23,170,92,251,48,37,66,81,63,61,246,150,47,196,168,80,50,136,176,66,24,18,141,0,138,107,95,31,222,7,128,43,114,140,131,231,239,85,25,150,162,83,217,11,45,80,71,82,143,136,202,81,71,200,230,28,60,182,203,24,21,174,9,212,220,214,118,87,239,201,119,78,8,193,241,24,53,75,52,46,164,206,192,26,115,228,111,182,52,178,177,158,60,34,185,226,146,13,191,13,28,107,214,99,167,202,162,12,168,103,149,162,102,12,37,104,183,124,236,132,212,171,49,214,12,120,222,208,47,234,83,179,154,169,116,14,241,93,187,147,86,130,101,16,64,113,28,197,186,130,36,46,19,106,78,92,125,138,131,212,119,121,242,115,171,44,12,239,5,54,139,231,229,121,74,84,12,168,215,170,145,156,109,163,188,99,188,147,17,202,134,195,36,101,71,47,44,118,35,76,155,223,146,79,23,247,212,205,248,46,74,75,46,28,105,83,99,140,161,217,149,52,229,132,174,108,109,14,115,156,8,2,71,157,105,167,120,
18,87,194,167,45,80,132,238,59,15,96,53,217,236,217,241,86,168,5,41,251,173,218,156,108,111,39,41,233,68,14,178,157,198,20,198,176,228,200,53,214,80,143,235,238,229,5,151,135,182,51,100,241,86,171,169,13,106,173,178,173,84,223,57,143,38,225,25,173,254,202,0,73,248,165,51,246,241,222,188,220,96,90,226,231,233,34,212,114,100,192,140,234,62,50,81,177,171,78,83,233,253,181,218,14,213,24,128,74,34,160,132,2,103,105,198,197,58,106,55,148,86,25,74,67,86,199,84,56,141,31,187,59,142,152,40,48,231,43,44,25,100,8,185,53,72,250,244,100,90,148,184,213,108,70,246,196,166,132,105,183,116,124,55,157,44,38,217,147,197,85,99,80,171,157,236,92,90,77,21,255,169,66,233,63,189,213,64,73,23,1,118,32,166,190,210,139,183,11,220,173,74,72,229,58,30,121,90,229,69,56,89,237,228,156,178,16,162,186,191,77,99,98,178,61,223,58,238,234,80,84,185,106,174,19,19,162,182,77,8,20,6,64,12,83,179,145,99,118,152,23,143,87,122,107,119,
93,156,177,178,69,51,115,165,241,60,126,31,39,236,228,121,137,179,45,197,144,100,112,250,215,66,148,152,119,7,42,64,170,198,204,171,97,27,66,198,14,178,158,232,177,252,38,226,30,161,172,10,13,216,169,73,178,240,244,203,222,136,136,150,175,229,165,109,237,17,86,150,3,59,64,125,134,167,84,170,171,134,179,90,215,166,115,49,246,209,176,144,143,86,201,241,236,87,52,84,229,178,44,46,215,29,169,43,48,182,89,178,27,204,112,250,21,195,179,145,99,210,39,23,20,204,94,42,23,112,73,183,171,17,132,240,172,193,208,12,38,53,107,43,66,165,52,135,60,208,34,123,212,17,123,130,108,236,186,224,70,219,232,162,120,146,168,254,46,230,141,117,26,153,14,98,158,35,28,180,251,231,107,218,38,33,35,132,180,106,21,27,178,23,232,145,234,225,27,137,73,178,31,175,34,66,113,151,210,3,85,151,134,62,231,216,141,146,237,117,98,173,189,40,212,210,212,198,57,56,146,109,247,82,9,220,38,157,148,97,211,29,230,145,86,37,210,185,135,143,132,29,6,246,30,4,
132,71,220,222,225,27,198,217,254,168,25,9,242,250,28,87,85,153,98,153,42,102,122,41,227,203,111,237,42,19,163,46,168,210,133,155,21,24,110,243,26,222,9,247,79,78,125,226,11,220,205,164,123,231,192,185,182,40,148,108,206,89,144,149,33,252,205,212,69,33,200,83,94,39,208,122,129,152,16,102,50,4,50,2,112,145,75,104,215,236,104,62,157,221,138,195,225,48,137,117,37,189,184,96,29,153,206,115,215,27,72,166,15,218,233,199,144,154,139,27,136,148,20,44,98,160,202,6,184,4,85,9,109,4,75,72,192,206,251,36,243,198,77,60,72,224,121,134,210,154,48,196,212,211,22,30,136,187,122,23,83,115,240,251,8,162,135,124,108,227,207,2,211,117,176,77,114,29,141,30,169,185,9,28,220,149,148,238,109,88,196,141,9,90,25,27,243,5,144,168,150,140,104,70,110,253,18,184,27,42,28,169,231,124,18,119,88,226,89,147,92,229,14,85,175,186,48,193,237,121,10,35,68,105,26,240,137,75,91,42,3,83,9,161,210,237,252,166,161,132,206,159,29,142,55,111,
199,91,106,49,145,170,195,112,38,21,69,226,104,159,51,109,194,45,190,144,220,11,43,134,50,167,120,26,18,166,137,92,19,65,198,117,97,142,93,108,64,154,24,125,138,130,199,180,19,115,194,13,134,106,174,172,235,38,53,187,159,81,19,36,69,22,140,218,90,146,121,157,5,26,78,211,72,242,13,35,99,250,120,59,121,54,208,106,104,102,178,14,141,64,55,49,132,217,185,111,74,101,18,48,106,55,7,157,237,162,172,144,227,208,212,58,10,57,181,48,34,61,27,21,29,15,124,165,51,83,212,199,207,197,130,251,35,181,2,17,56,55,42,54,220,236,81,120,198,147,39,212,148,193,78,89,23,219,220,31,11,138,137,253,116,176,215,186,205,72,225,39,216,3,100,95,46,13,109,52,9,226,16,17,36,51,35,129,72,173,150,102,129,176,68,18,65,15,242,80,18,145,220,167,113,59,226,187,110,110,180,216,160,18,144,172,152,117,221,182,149,161,236,28,117,165,40,110,86,170,128,160,115,249,8,93,114,150,74,209,202,249,53,2,88,221,141,116,15,118,118,22,36,91,205,14,
185,237,153,96,183,24,53,214,23,24,215,106,160,6,56,42,51,199,180,139,115,130,17,122,70,239,163,197,202,212,60,91,42,235,49,65,188,5,53,219,156,23,8,141,13,115,128,182,14,95,108,96,10,105,178,12,217,199,75,240,151,158,137,95,68,96,246,200,29,59,212,3,119,78,131,67,162,34,136,241,137,182,47,23,176,2,10,238,84,164,115,224,228,176,211,22,91,165,123,245,110,83,43,52,55,52,186,244,40,104,56,151,203,18,132,72,44,19,111,213,192,215,30,180,77,201,225,42,37,189,186,214,4,167,74,53,100,127,64,25,96,92,158,15,139,190,139,128,66,47,118,106,74,76,152,9,51,152,94,148,84,180,8,75,52,106,229,175,113,96,7,170,157,175,168,200,137,91,134,165,98,131,170,167,189,76,81,86,38,247,120,179,242,20,92,70,48,212,160,244,58,5,182,7,162,231,131,205,90,83,124,199,209,66,13,254,187,43,58,100,160,189,60,58,176,6,174,117,103,118,245,182,179,126,180,134,167,71,91,59,38,58,150,221,167,145,47,12,193,97,182,0,205,216,155,250,
90,31,70,12,201,204,59,149,1,241,84,187,134,87,156,4,184,167,156,170,228,90,22,40,195,25,66,230,122,217,162,177,164,182,149,166,227,35,147,218,109,213,222,34,177,224,226,181,162,51,129,11,173,232,20,102,51,113,122,100,215,115,69,48,7,175,187,147,194,118,24,21,249,221,80,17,60,149,70,5,163,130,242,8,177,133,128,16,203,125,60,153,194,131,52,92,125,107,153,135,229,34,242,17,37,82,202,158,53,5,173,109,90,228,122,230,64,149,80,208,110,166,124,204,74,136,120,199,85,7,58,201,199,171,211,77,129,141,114,229,178,57,18,44,249,165,38,88,160,236,53,175,24,26,177,134,232,51,168,106,153,182,224,8,82,46,149,152,38,211,237,222,168,83,107,94,84,5,23,138,44,215,103,57,114,88,140,108,142,33,60,25,19,164,77,39,135,135,76,173,165,251,204,91,97,168,72,41,149,29,69,151,169,30,238,21,58,99,119,106,172,236,75,125,252,208,222,206,78,90,144,222,191,230,123,251,73,215,232,70,69,66,137,248,198,52,101,238,109,96,83,185,205,157,212,198,
149,254,160,153,222,150,121,26,101,194,86,71,184,197,112,40,215,13,57,206,70,74,224,128,93,161,147,41,62,55,146,14,70,66,179,148,3,227,58,71,194,140,216,130,241,208,54,152,85,55,119,207,204,217,99,226,105,58,188,175,186,54,42,172,3,131,66,135,179,157,169,117,27,40,92,67,98,61,141,70,214,90,109,198,117,248,204,60,237,30,29,96,15,147,150,51,46,233,236,154,113,53,179,236,7,45,69,23,83,224,203,68,134,91,166,187,34,99,74,29,235,172,228,45,1,65,170,236,66,184,71,116,140,74,55,180,109,234,78,174,214,52,222,1,142,115,168,155,185,208,27,147,254,73,46,121,36,235,28,30,105,217,193,19,244,17,126,81,227,200,175,130,35,61,122,160,83,119,103,45,106,182,184,89,63,56,166,96,120,50,147,164,173,34,93,25,74,9,45,236,188,144,207,130,172,197,24,154,190,211,245,241,146,107,97,159,45,191,137,87,211,220,71,169,93,31,29,17,170,122,32,209,164,55,112,140,242,100,175,7,109,17,86,156,60,184,75,232,52,99,240,232,200,190,25,73,
91,144,253,146,146,112,125,103,183,173,199,251,201,203,11,20,197,62,64,69,26,18,149,180,132,186,74,241,9,150,128,149,136,168,123,72,122,104,115,63,49,33,123,120,132,181,12,14,105,226,83,11,62,137,154,68,206,199,16,173,38,250,152,48,113,74,11,138,30,205,72,2,71,213,147,117,135,7,121,156,180,241,226,234,118,234,146,61,110,69,119,184,214,40,115,202,60,59,15,236,224,103,69,214,37,107,128,146,38,100,10,135,205,118,59,62,176,50,22,172,236,217,65,39,66,223,71,219,247,250,136,163,35,16,148,152,105,200,154,197,105,212,152,57,23,100,2,77,249,65,145,210,48,250,185,155,228,91,149,216,140,95,156,183,242,222,179,252,248,240,106,56,15,19,88,146,154,233,46,125,119,105,112,167,199,65,131,202,235,54,38,139,232,22,161,202,147,184,240,11,8,26,10,131,96,33,238,249,56,198,65,238,241,161,109,239,136,7,101,18,180,235,105,48,155,117,209,238,65,217,144,52,152,206,102,181,7,80,54,146,119,139,182,108,222,200,232,219,124,132,183,235,193,35,44,178,
53,96,180,233,177,225,161,39,227,155,186,124,71,80,69,192,29,48,54,1,149,66,120,74,176,91,51,218,2,31,139,192,157,253,77,130,169,124,200,223,159,131,210,96,194,181,103,19,239,153,143,237,18,92,59,59,134,218,113,54,212,36,94,4,164,86,15,93,216,174,231,94,143,227,9,73,205,34,8,193,184,166,43,96,59,53,241,29,251,107,0,161,183,60,52,241,239,71,68,111,121,57,42,30,217,0,241,115,15,190,130,48,142,1,117,238,52,48,246,122,187,3,101,87,240,183,24,203,102,174,128,68,89,216,99,90,223,46,84,27,72,125,115,91,197,175,222,156,182,196,213,158,35,119,18,184,114,101,14,22,129,178,122,151,112,6,94,87,114,0,238,11,126,25,224,185,100,73,1,120,222,179,4,120,46,89,146,0,158,75,150,123,178,92,1,101,33,200,232,107,150,251,81,133,32,91,142,78,65,75,57,212,190,29,4,232,190,28,129,250,246,251,145,102,41,28,144,77,94,10,7,100,167,150,194,1,217,215,75,225,128,236,197,82,56,32,155,184,20,254,47,112,30,2,146,95,
229,2,54,145,67,9,119,18,60,148,0,247,140,249,86,130,7,105,202,35,154,46,60,238,196,89,42,11,85,24,2,183,135,25,227,250,80,117,84,70,234,31,75,240,85,179,172,172,19,87,59,18,60,163,90,159,8,207,119,119,147,250,19,119,9,187,239,192,140,103,180,91,154,176,64,171,138,65,81,50,91,55,58,161,32,105,176,83,255,105,246,166,72,43,221,206,165,157,22,175,186,198,183,242,9,194,218,9,108,174,54,156,114,111,208,183,135,139,245,206,254,29,237,156,187,117,186,203,91,58,66,189,15,81,57,134,60,158,29,169,36,168,156,16,254,46,27,223,166,66,237,89,222,97,137,190,88,52,214,33,65,2,23,103,76,120,230,30,63,152,87,93,159,26,58,208,250,252,26,114,85,184,196,216,23,5,212,228,210,188,116,15,198,53,90,232,219,45,229,125,185,133,116,206,223,213,234,54,184,46,180,49,224,65,242,111,213,0,218,75,215,77,1,190,187,116,93,20,152,224,9,56,83,8,228,114,241,107,126,77,240,128,151,139,192,26,31,10,128,3,124,44,153,64,103,180,
157,250,54,64,167,25,236,33,26,120,224,164,50,100,6,152,85,230,105,176,131,221,217,133,138,138,108,218,49,192,4,221,110,214,58,119,195,188,57,26,99,5,196,245,53,118,13,221,188,187,59,68,92,150,38,67,67,233,246,28,19,31,201,238,70,147,171,32,52,71,240,56,9,94,88,101,7,135,168,224,246,79,230,251,117,91,214,5,216,200,32,188,161,33,174,10,39,84,78,63,226,157,19,249,44,40,129,139,216,245,240,96,99,75,143,75,244,32,149,147,171,27,185,3,121,13,190,19,2,154,237,146,157,42,252,225,201,124,3,114,227,70,242,247,131,38,112,158,71,91,12,152,108,187,240,134,69,227,222,117,70,144,210,45,105,185,113,15,191,59,19,95,218,135,45,163,237,234,38,236,184,17,223,46,74,44,1,148,32,236,95,245,218,98,40,1,220,23,144,151,152,176,78,250,123,49,20,193,3,69,62,32,240,6,7,164,231,97,194,243,102,226,225,243,247,238,235,61,76,47,152,162,5,124,171,107,170,254,193,163,159,191,252,183,63,94,89,126,253,187,31,255,155,239,223,15,
254,228,199,63,250,135,199,191,94,253,201,199,143,127,181,250,222,59,239,63,127,246,242,213,202,195,143,63,120,239,123,79,158,189,122,239,123,15,115,255,240,234,197,147,103,191,90,78,190,30,125,247,71,0,135,159,255,217,59,63,252,193,15,127,240,199,127,242,39,223,93,249,229,243,231,79,31,189,251,243,63,92,249,156,223,163,119,190,188,126,207,7,216,240,238,47,238,23,127,241,32,230,209,187,239,253,193,207,255,240,207,254,237,202,147,143,127,245,232,123,191,195,16,144,190,228,7,172,253,151,79,31,63,125,242,234,183,127,241,201,39,95,217,242,5,207,7,173,126,241,90,207,207,185,126,248,228,233,234,79,31,127,188,186,164,251,250,166,251,45,171,191,1,56,188,247,191,190,251,222,119,222,251,206,119,151,144,252,241,143,239,143,240,242,65,193,149,159,255,155,239,191,209,15,80,233,158,227,155,185,207,185,175,124,246,228,213,71,43,31,62,127,241,241,227,87,111,22,151,124,127,176,242,147,15,151,131,149,39,47,87,150,252,191,183,242,234,163,213,55,251,128,185,87,143,255,
105,21,96,249,226,249,199,95,103,9,144,173,62,123,249,228,249,179,31,188,86,234,245,142,47,129,113,207,2,96,248,122,106,229,29,128,243,202,255,249,201,175,190,187,2,124,47,23,126,249,228,213,203,149,79,86,95,172,124,242,228,55,171,79,31,214,159,3,11,47,94,235,240,242,187,63,250,6,167,248,123,0,161,87,223,226,21,191,251,241,205,206,240,5,159,127,49,111,248,205,189,185,126,14,140,126,248,141,123,126,251,207,216,243,217,147,15,94,125,116,191,239,167,159,62,125,250,77,187,62,90,125,242,171,143,94,125,190,237,141,135,220,159,235,37,160,231,91,92,228,253,231,207,95,124,240,242,7,111,166,127,243,189,71,111,134,191,253,98,120,47,253,139,159,175,197,252,224,27,204,241,87,47,30,127,246,179,213,247,95,253,237,147,103,128,65,150,191,190,193,18,95,190,179,127,249,252,233,243,23,192,190,175,89,231,215,207,159,124,112,111,157,47,179,5,236,243,238,47,150,19,191,184,159,126,244,101,130,247,254,224,13,102,223,98,149,111,182,197,183,91,224,247,32,255,77,
203,79,1,157,255,143,183,48,248,194,179,238,207,255,139,7,24,62,247,172,247,239,127,125,247,91,113,253,251,231,75,20,151,177,238,201,255,245,213,64,248,175,5,234,187,191,184,151,250,139,149,251,175,207,213,253,228,249,203,215,177,11,80,5,136,92,192,231,231,107,47,255,255,192,102,57,243,255,25,36,75,154,95,172,44,63,63,215,241,197,191,226,161,129,123,189,84,233,229,202,227,149,23,128,204,199,207,126,5,196,122,224,66,47,39,63,191,183,143,86,62,88,253,16,16,245,193,202,47,127,187,178,250,228,62,154,254,191,184,233,192,175,149,239,45,227,244,189,189,87,30,189,94,93,218,123,185,180,242,248,217,7,143,238,205,253,134,238,245,60,64,177,196,227,115,130,23,175,57,221,103,160,37,4,175,111,213,27,178,47,80,89,178,124,56,251,155,181,135,163,255,110,204,89,121,0,226,233,15,127,252,163,159,1,4,207,63,126,176,238,59,175,173,251,85,16,1,227,126,105,219,163,119,222,224,248,179,213,87,159,190,120,118,143,228,253,242,131,172,111,10,111,255,105,245,213,
207,30,63,121,246,203,231,159,189,150,246,69,82,121,139,192,175,236,254,221,196,242,133,63,252,250,241,211,63,250,247,143,222,166,208,61,237,131,70,15,201,247,241,51,128,238,147,79,95,45,105,62,253,28,241,7,6,15,59,126,184,242,206,207,86,63,248,238,202,171,231,43,63,252,205,223,0,127,222,130,218,235,131,44,47,200,87,115,230,195,207,215,119,231,205,193,126,55,243,189,62,216,210,215,255,57,153,242,173,215,230,249,139,39,95,205,155,95,144,191,245,50,125,29,158,151,159,254,242,33,171,125,176,250,244,201,199,79,94,61,56,250,189,207,125,238,114,111,41,92,238,69,127,139,125,255,126,89,129,124,115,45,241,181,216,241,37,189,255,211,95,252,57,160,55,240,9,232,253,135,15,48,221,115,123,244,101,110,255,188,202,225,155,115,212,27,32,0,230,15,69,213,131,123,60,255,16,128,228,161,122,2,2,193,55,167,251,39,207,30,191,2,74,198,55,129,96,41,232,117,32,120,244,166,126,251,199,143,128,114,237,53,171,151,64,128,121,252,193,123,223,127,254,236,233,111,
95,131,246,26,173,183,195,118,127,196,191,248,244,195,15,87,95,188,5,182,111,197,232,75,164,255,3,99,180,242,86,144,62,126,254,193,147,15,159,60,254,229,211,213,183,95,183,159,188,252,207,64,229,251,193,255,3,183,250,188,48,125,77,250,47,88,149,254,126,220,222,92,178,87,47,128,32,243,228,195,183,163,114,31,166,63,7,102,229,241,139,101,10,122,249,228,131,213,175,247,35,191,7,148,111,119,154,111,7,229,53,2,15,212,175,113,120,248,241,63,20,26,15,42,125,51,38,95,220,165,111,114,149,127,124,91,225,242,106,245,227,79,158,2,138,60,122,247,63,254,142,123,60,125,252,242,229,253,57,254,221,202,63,62,250,211,119,255,165,29,235,129,239,155,201,87,223,136,212,39,247,37,195,235,67,191,186,111,3,255,121,46,242,22,56,190,226,36,255,138,112,252,243,93,234,95,8,135,111,117,142,149,255,250,95,255,232,135,192,159,63,251,163,149,159,191,252,33,208,93,255,225,202,223,61,116,198,159,62,123,255,21,208,118,191,124,244,232,191,255,247,47,161,247,16,143,
255,250,55,192,223,213,247,63,125,181,12,74,239,189,243,59,143,33,111,123,96,88,249,42,205,61,16,223,248,16,241,181,8,251,201,139,231,191,122,241,248,99,96,252,248,21,80,217,61,125,186,242,252,19,32,243,2,25,25,168,66,31,127,250,244,213,195,139,194,147,167,192,165,185,47,1,63,127,54,248,157,119,136,37,219,31,62,156,3,248,250,254,127,251,249,255,178,242,215,191,121,12,88,117,245,71,143,94,79,2,83,223,255,111,95,213,246,157,247,190,243,209,171,143,159,190,247,29,160,200,248,254,159,174,188,247,157,191,121,242,98,245,195,231,191,249,193,234,111,86,223,251,206,163,111,78,247,127,245,226,201,175,87,255,246,201,203,87,95,170,28,255,252,197,139,199,191,253,197,202,253,215,163,255,248,117,24,254,244,53,94,159,211,190,165,156,124,6,132,0,128,252,225,172,247,0,61,126,245,209,203,101,89,246,24,192,230,131,37,229,203,239,45,195,205,234,139,103,143,159,46,171,229,37,32,203,49,48,251,193,234,179,87,64,62,1,42,26,32,37,45,137,95,254,246,37,
224,219,223,82,181,188,255,217,7,95,58,192,219,205,11,236,121,187,162,191,124,249,252,233,167,175,30,172,179,242,236,241,199,171,64,210,255,228,197,234,203,165,22,207,126,245,144,64,63,125,241,2,248,185,52,243,251,171,47,1,19,62,127,241,79,203,181,15,158,44,27,144,231,47,30,138,131,127,191,228,11,220,192,247,31,106,49,64,230,95,62,208,253,213,167,175,183,189,243,131,239,126,99,21,241,151,31,1,220,222,196,189,207,223,241,190,57,9,220,239,127,244,238,55,196,175,111,122,104,123,254,244,131,213,47,202,201,127,248,146,255,46,15,246,222,255,252,150,179,45,173,246,230,217,235,129,252,181,159,62,253,227,255,240,31,190,126,219,95,126,250,254,146,213,135,159,62,125,27,40,255,240,22,80,190,251,45,150,253,171,213,151,255,244,234,249,39,255,251,227,103,64,164,120,241,211,213,207,126,175,157,191,70,241,133,213,255,28,168,84,94,44,203,161,229,141,2,44,254,235,213,23,247,87,16,168,140,190,70,248,14,0,245,227,151,128,210,192,58,176,248,119,47,127,242,236,
195,231,223,172,234,79,255,238,167,239,189,251,179,191,254,235,159,254,227,207,254,252,167,255,248,222,187,255,249,94,199,63,92,249,218,252,163,183,19,188,243,235,215,199,250,42,9,16,136,238,155,156,207,109,246,147,87,128,127,62,64,254,166,1,122,180,196,253,62,192,188,14,138,43,31,61,126,185,242,203,85,32,2,189,15,220,183,47,93,164,165,119,191,250,104,89,212,222,103,236,39,175,238,119,62,123,254,134,39,176,245,183,171,175,126,199,190,63,185,127,2,253,244,229,42,96,209,251,11,188,124,46,0,42,201,207,101,1,115,191,92,125,35,232,213,103,79,222,191,111,198,129,138,16,136,234,203,75,243,242,201,171,79,31,223,135,234,239,45,223,51,129,155,254,16,209,30,132,252,79,247,82,158,252,209,159,252,240,199,127,247,195,101,97,249,165,83,44,121,190,92,249,203,87,47,158,190,247,163,31,253,253,131,139,254,245,175,1,158,47,223,249,238,143,151,111,182,223,122,230,207,62,2,198,143,87,126,249,233,171,87,95,94,93,94,109,192,174,203,55,94,224,92,175,87,223,
7,2,193,47,87,223,172,173,60,254,21,208,124,174,188,124,254,187,2,94,111,250,242,73,127,240,251,15,1,8,121,77,1,184,255,95,126,244,228,233,7,127,251,252,229,171,191,121,254,254,167,192,41,222,88,97,153,45,150,93,221,179,213,207,128,152,9,116,226,159,1,136,3,78,253,189,149,167,203,43,250,242,241,111,191,183,2,0,240,241,39,175,254,238,127,3,156,240,161,254,254,236,241,87,25,62,164,158,175,232,248,163,7,211,175,2,193,97,233,205,171,192,250,251,143,1,123,126,137,225,202,199,64,163,248,242,117,142,90,125,250,193,210,166,79,159,63,127,185,250,250,33,28,96,253,38,55,61,122,244,127,3,221,246,105,239,
120,156,236,189,137,87,162,89,146,40,254,175,112,122,222,244,175,106,38,59,43,215,90,178,102,230,116,77,175,117,166,186,123,78,85,205,123,243,78,77,86,165,149,82,89,78,155,154,163,102,87,215,204,155,57,172,178,111,130,128,40,2,130,40,110,160,162,34,162,172,130,224,2,238,136,138,128,202,226,194,226,130,40,136,239,251,62,64,209,84,43,51,171,166,103,222,57,191,60,121,18,184,223,141,184,113,35,226,198,141,136,27,247,203,207,238,192,254,199,255,184,117,227,214,159,221,250,142,63,15,126,14,255,170,224,121,113,197,195,207,138,238,221,123,247,253,130,59,247,223,255,253,223,253,238,189,247,65,248,219,0,252,221,119,110,223,125,247,254,221,219,247,238,188,13,252,115,251,238,237,59,247,239,220,189,119,251,221,59,239,221,123,247,238,221,119,111,61,120,92,92,80,94,254,240,179,226,59,239,190,11,1,221,1,128,238,188,115,255,206,237,119,238,189,123,239,221,219,119,223,121,247,14,0,123,231,214,173,59,183,222,185,115,255,246,189,187,239,222,185,255,160,16,94,254,248,
225,103,183,128,238,119,129,238,239,189,125,247,189,91,183,111,221,122,231,246,237,91,119,239,188,115,235,238,253,123,183,111,223,189,3,160,184,243,206,157,219,183,238,63,128,151,20,62,252,236,215,111,191,15,2,220,3,39,117,255,109,128,244,183,1,108,247,238,221,2,176,131,96,247,238,222,190,123,235,206,221,251,183,223,187,255,246,131,47,225,79,138,74,46,155,210,253,239,156,210,59,183,30,20,85,192,159,102,103,84,112,239,253,191,248,233,253,247,111,3,160,111,223,120,251,207,222,1,134,189,119,31,24,236,61,112,70,119,1,176,59,119,222,190,255,222,237,251,247,0,146,238,221,186,243,160,12,254,47,207,139,202,224,79,225,37,21,89,12,69,183,111,223,185,253,254,151,183,223,121,31,32,225,63,254,227,63,110,222,190,119,43,195,169,119,0,90,110,223,2,232,190,115,27,104,3,230,241,206,237,251,239,221,122,239,254,187,183,223,189,117,247,157,123,119,238,191,3,76,253,89,65,89,193,211,236,76,190,188,119,231,253,236,60,222,189,241,238,159,189,125,251,109,128,163,183,
222,5,232,191,255,30,128,224,22,48,9,224,19,96,228,125,224,239,221,119,31,84,100,129,65,56,16,232,189,27,239,253,25,192,164,187,247,111,189,243,222,173,119,238,189,115,255,30,48,147,59,183,223,190,13,48,242,22,56,127,64,12,15,74,74,203,158,22,20,63,252,236,223,190,248,247,63,255,197,111,127,242,15,159,192,62,131,253,219,191,221,6,117,229,167,111,0,98,185,121,239,206,205,91,111,194,62,43,191,245,62,236,179,191,248,233,59,239,223,131,253,242,121,201,227,138,162,210,146,242,123,255,112,19,246,49,252,43,120,25,188,228,49,252,225,195,127,255,247,31,63,4,251,253,197,79,239,2,189,50,223,97,31,21,149,87,192,74,191,130,125,149,3,130,21,149,192,158,21,60,254,125,193,19,248,205,108,31,224,227,116,204,219,185,161,96,31,63,47,41,41,42,121,2,251,170,168,24,94,14,43,40,41,132,61,46,125,250,20,248,44,207,13,117,239,253,63,255,9,52,206,253,247,31,124,84,0,12,240,245,47,129,190,143,222,120,12,12,83,1,123,252,117,65,217,163,
191,120,244,230,3,160,211,103,63,125,227,214,205,91,55,1,206,189,9,251,178,180,180,248,225,23,192,0,103,32,15,223,200,239,0,129,3,61,242,155,0,92,15,191,120,244,23,0,7,238,66,4,61,124,19,28,247,206,251,176,223,61,131,3,115,170,248,26,14,53,195,62,251,243,159,228,186,192,30,126,83,84,241,53,244,168,160,16,254,248,121,65,5,188,16,246,172,172,244,9,32,36,88,33,252,171,162,18,224,55,192,12,176,195,239,62,129,125,249,45,216,8,174,205,60,182,0,31,144,86,193,62,123,11,246,139,63,22,60,125,86,12,127,240,240,66,251,217,52,222,120,244,163,199,15,30,253,211,163,127,250,205,183,176,242,103,101,240,130,194,242,175,225,240,138,155,21,127,172,120,244,163,55,111,194,62,172,128,125,83,84,92,12,43,5,104,206,13,118,74,209,27,197,69,191,135,195,158,192,11,139,0,121,149,193,74,74,43,224,207,10,10,223,132,65,147,40,44,125,252,28,84,114,216,163,31,93,134,251,38,68,211,221,28,201,87,8,20,36,17,246,107,64,128,197,128,
88,207,100,152,147,32,248,248,103,5,21,23,196,119,227,37,133,153,133,126,13,73,222,128,189,10,72,193,51,128,121,133,191,204,87,129,15,160,38,64,69,43,32,89,2,223,65,133,207,211,132,135,80,59,128,185,2,96,97,57,180,26,242,116,37,15,227,205,243,80,144,176,190,132,195,158,150,22,22,125,85,4,104,11,184,8,94,128,2,245,12,232,7,88,161,2,64,155,64,93,40,40,1,196,120,51,95,77,62,134,87,60,47,3,245,180,236,57,28,212,185,199,5,229,112,144,142,242,231,143,31,195,203,203,111,230,137,47,127,81,129,232,63,169,40,203,76,240,123,8,230,20,199,127,186,120,202,43,202,94,85,46,21,240,63,86,228,90,65,240,87,102,92,62,199,62,56,21,203,107,178,235,12,193,171,243,170,164,224,233,15,207,175,139,102,13,26,228,106,198,221,121,109,101,59,155,249,111,129,33,114,236,3,84,7,176,22,143,126,124,129,129,151,177,243,139,207,51,157,63,207,2,93,224,39,136,245,114,158,190,0,152,223,233,209,143,65,60,192,20,159,21,84,124,125,251,
21,217,11,194,220,121,13,152,187,167,66,249,8,180,202,231,39,241,6,160,46,207,43,96,255,92,90,4,237,143,21,95,151,193,225,16,84,249,77,216,21,188,253,21,188,226,31,0,28,101,191,44,45,46,132,151,93,186,67,94,202,189,243,112,175,168,145,16,12,196,245,55,47,106,6,160,61,160,30,129,90,1,109,157,80,87,88,233,31,128,127,114,170,118,6,125,149,194,124,88,254,113,105,105,197,53,83,186,108,125,229,3,125,191,249,92,52,17,95,21,20,3,122,94,4,205,168,12,248,2,44,164,239,154,24,184,35,23,150,2,222,13,176,219,2,131,193,31,255,30,132,127,177,35,12,254,71,192,141,186,114,229,92,46,221,211,149,243,61,229,251,34,224,163,31,191,140,128,95,79,168,0,69,31,195,139,11,42,138,254,0,255,123,64,165,31,189,113,102,0,94,114,66,249,224,192,140,174,38,191,172,244,41,184,52,175,236,0,46,169,75,103,86,150,29,1,234,1,171,40,133,61,41,133,176,157,78,19,196,12,182,103,127,67,136,206,109,43,191,4,60,44,120,198,159,187,
1,136,252,65,222,179,162,219,247,111,189,255,59,208,99,202,71,246,232,175,1,215,235,45,64,139,127,95,254,86,5,252,241,215,37,165,197,165,79,190,125,11,240,136,159,61,175,128,151,149,63,250,209,53,40,32,50,31,230,163,248,178,40,3,255,180,0,240,168,139,207,67,95,228,33,96,110,190,41,125,94,92,8,76,27,100,1,128,228,230,205,183,128,191,47,224,56,55,195,15,243,214,65,73,41,236,105,65,197,227,175,1,95,166,226,27,56,224,123,126,89,10,16,4,89,44,24,224,109,150,101,89,251,219,231,197,197,215,121,34,31,195,11,138,243,183,134,239,54,95,249,80,175,182,216,175,145,125,65,241,169,237,58,39,223,55,10,129,72,240,113,69,105,217,183,160,255,12,110,149,89,231,25,2,43,122,242,117,5,172,24,94,1,8,11,218,16,203,193,78,143,126,244,232,71,121,43,62,131,231,212,32,64,139,254,154,117,242,91,96,255,189,212,250,189,244,230,120,14,201,235,88,195,87,220,218,138,11,202,115,131,229,120,251,51,0,164,8,104,0,119,178,115,86,2,246,
176,0,180,160,64,76,11,198,29,57,99,114,202,171,60,84,55,242,149,40,207,242,60,47,41,188,104,122,96,15,43,190,6,220,27,208,54,23,151,151,230,144,95,138,53,231,205,228,45,213,7,231,25,6,132,91,111,125,93,10,232,227,143,110,192,178,95,223,122,94,14,47,123,43,23,45,1,107,226,205,83,194,242,123,100,215,202,169,88,207,133,64,192,146,6,200,122,53,247,177,168,164,226,44,10,202,32,120,117,125,127,61,231,230,76,144,208,176,229,217,120,61,79,165,111,63,204,15,92,50,80,25,79,5,0,251,240,84,116,15,50,45,167,198,235,209,79,238,156,237,166,0,102,48,82,253,178,24,254,180,28,138,95,65,125,1,36,3,6,162,80,146,0,52,191,185,40,188,252,230,11,168,110,131,168,178,153,4,0,21,16,79,65,105,139,138,139,61,47,244,131,255,203,243,130,107,108,82,73,97,102,49,125,88,114,181,199,159,221,181,110,0,34,122,251,222,233,98,132,126,125,14,131,62,178,146,59,143,236,7,139,148,46,91,248,0,4,232,188,103,118,191,139,164,128,50,
42,45,191,5,224,254,107,96,192,187,176,91,167,34,254,4,94,80,6,88,113,192,165,63,23,68,125,5,200,161,188,34,127,5,67,200,51,50,249,242,219,10,56,136,175,8,76,254,156,234,0,136,255,18,21,128,253,32,42,144,79,220,21,154,112,142,206,162,140,185,253,170,20,48,24,23,39,119,17,254,131,146,12,163,96,127,40,40,134,162,155,194,162,199,192,78,9,185,225,240,204,100,191,129,168,189,56,2,132,253,26,99,254,243,220,230,241,17,188,228,9,232,247,92,106,195,179,178,2,124,182,71,15,30,156,41,207,139,240,175,166,62,167,59,215,149,206,92,121,209,191,66,177,28,56,195,242,156,219,94,254,252,41,248,181,160,184,56,19,37,130,157,202,207,155,221,243,152,175,153,255,107,78,251,117,102,11,210,10,176,235,250,185,158,207,20,228,186,231,187,56,167,58,1,184,58,69,21,89,127,191,8,114,232,206,20,186,168,162,28,194,247,157,128,208,142,242,194,78,246,186,108,127,129,230,187,57,110,231,179,253,84,103,126,86,250,236,219,215,204,87,156,195,241,202,90,
247,138,59,78,9,252,155,191,47,46,120,12,207,219,116,158,125,155,219,218,207,52,14,88,112,37,143,139,159,67,86,33,199,165,76,6,57,211,181,60,207,55,63,69,249,67,228,203,62,1,61,231,130,194,223,149,20,191,192,78,144,97,215,176,49,15,242,53,28,213,27,151,34,5,158,150,229,112,158,153,240,138,242,243,97,193,27,144,14,129,30,43,196,155,55,97,128,219,5,130,193,74,1,56,176,253,155,178,34,208,132,195,203,158,22,85,128,41,236,66,56,152,140,128,140,111,38,121,157,49,133,165,95,101,209,158,13,122,62,32,40,129,125,84,84,242,252,143,16,8,132,173,188,28,58,15,0,237,122,57,188,2,218,70,64,231,232,6,236,73,89,233,243,103,144,188,74,65,211,159,219,206,97,63,249,63,255,73,114,201,255,247,79,46,35,112,206,87,63,133,120,113,245,227,12,131,174,20,239,67,216,43,139,23,16,67,78,144,57,202,50,63,51,82,121,152,231,202,101,7,63,39,230,215,150,209,135,229,215,138,232,199,47,124,94,155,227,249,97,229,148,77,8,92,41,169,
236,243,171,101,149,237,112,65,90,23,57,149,101,235,37,108,127,8,74,234,60,215,47,196,141,151,44,228,162,124,73,67,78,90,105,46,229,86,10,136,4,28,38,131,189,60,119,226,244,178,194,187,100,47,249,176,252,149,206,222,50,221,95,125,223,190,124,211,134,136,61,183,97,103,210,102,167,123,242,229,225,22,64,196,171,38,15,95,43,84,190,158,238,194,171,232,134,134,186,156,242,140,39,158,225,120,46,192,184,248,249,65,89,89,193,183,143,254,42,251,243,111,242,242,102,208,147,207,97,208,199,195,191,122,49,66,248,155,140,181,203,13,113,105,18,45,127,7,191,226,41,192,151,204,65,198,213,93,206,162,144,239,166,41,187,134,224,101,101,165,101,224,169,242,11,236,44,40,201,128,131,250,154,129,42,135,14,221,10,114,121,242,236,25,45,152,189,41,207,164,102,190,122,14,184,7,208,242,201,101,162,33,87,33,227,75,93,226,87,64,217,3,48,233,6,172,40,8,1,56,199,76,104,243,6,244,251,155,162,226,194,199,5,101,133,229,111,230,224,78,185,0,109,104,89,4,
16,81,192,250,2,83,31,47,156,165,64,76,201,237,121,217,182,179,89,231,160,51,14,34,212,126,205,190,247,157,106,242,223,84,39,192,224,19,204,142,253,191,37,227,204,238,248,106,50,190,40,182,91,239,63,248,168,180,32,115,132,248,197,39,5,95,157,137,238,154,68,222,121,136,171,133,243,130,41,250,4,204,100,2,46,65,14,193,27,23,109,81,230,172,9,8,75,190,41,45,251,61,84,188,241,247,64,48,255,71,104,63,201,250,213,207,43,74,159,2,49,240,99,192,213,254,22,246,4,94,2,47,131,74,29,190,252,54,91,218,112,89,61,195,63,60,250,203,71,127,121,54,234,155,121,245,33,207,202,138,0,220,128,135,94,92,154,9,236,79,133,10,68,126,165,128,97,204,204,8,112,19,225,153,131,202,98,40,6,204,151,46,8,93,88,244,20,94,2,122,152,80,107,6,38,35,26,232,184,60,7,12,237,14,176,79,191,6,76,110,54,15,0,184,179,69,144,27,4,86,101,156,77,231,15,69,101,21,207,11,114,193,68,38,200,63,29,47,75,66,38,116,203,159,59,136,
244,22,224,132,157,37,17,47,83,191,183,158,149,149,62,6,121,11,121,200,231,78,151,206,75,22,96,212,63,63,7,118,170,124,234,179,193,225,37,99,63,47,169,40,42,62,235,7,63,77,64,156,238,223,249,137,199,79,75,63,45,43,40,255,250,111,139,74,190,107,63,252,67,105,81,225,105,186,241,12,236,123,100,216,127,14,47,134,87,100,115,135,231,179,225,192,108,202,179,225,6,160,132,128,92,193,233,64,35,194,128,33,175,50,124,57,146,126,5,175,248,89,41,192,134,71,111,92,157,121,187,216,247,225,27,151,30,87,62,127,250,101,38,1,13,150,139,149,103,252,234,76,80,153,203,113,20,193,1,139,80,92,250,24,82,151,108,97,207,69,74,47,241,156,114,227,255,172,24,176,174,167,132,94,198,238,115,61,179,100,222,2,201,124,90,250,7,144,150,226,140,176,95,147,64,99,83,30,51,79,151,107,134,206,43,170,121,222,202,184,67,167,69,61,176,71,63,250,199,71,63,58,91,203,103,53,97,103,216,62,251,243,63,207,84,2,157,197,227,176,175,115,240,103,86,0,
178,180,240,127,172,0,200,203,47,150,122,248,139,127,252,244,209,23,191,252,240,163,95,0,255,126,244,193,175,62,185,200,205,127,248,4,120,242,233,199,31,124,242,235,71,95,252,237,135,191,189,200,75,56,32,199,135,95,92,68,2,50,247,2,224,105,250,243,246,195,92,154,242,43,200,97,187,1,86,218,0,252,46,4,149,181,240,52,175,80,88,12,230,21,206,42,118,192,14,231,180,245,13,64,6,223,62,6,15,133,174,213,134,191,253,248,119,255,11,164,228,163,15,127,251,119,159,188,60,245,231,192,78,105,191,243,2,237,89,134,231,243,25,76,144,148,22,23,151,126,3,43,255,246,233,151,165,197,69,143,97,128,44,126,127,141,175,255,243,95,124,244,139,79,129,193,62,254,197,7,63,127,244,197,239,126,251,209,255,126,121,66,95,132,61,165,246,222,139,212,130,58,150,37,185,16,52,17,160,57,191,64,59,116,116,158,61,68,202,143,119,138,11,158,228,111,60,231,232,135,172,77,70,119,127,14,135,63,251,95,185,13,253,31,47,134,158,23,103,112,93,34,236,74,164,175,
21,132,94,194,59,112,91,6,102,85,254,98,102,62,187,172,50,36,100,82,94,217,68,87,102,155,121,248,217,89,152,8,118,124,94,14,46,182,135,121,40,193,214,115,158,79,182,98,45,235,248,0,43,239,212,235,201,38,215,178,235,241,20,243,205,135,23,173,230,171,197,255,89,254,129,137,203,31,88,36,47,160,252,47,17,72,222,174,255,255,144,56,78,213,249,135,92,26,127,2,1,228,88,127,46,23,150,181,36,160,193,190,60,45,156,17,15,224,103,100,36,146,243,133,161,33,94,173,186,237,18,171,249,49,84,58,119,189,114,95,247,43,63,83,249,10,204,191,108,216,239,157,22,251,206,68,61,48,228,55,143,95,61,187,127,73,5,99,94,178,19,240,162,47,57,232,188,208,33,87,19,240,93,234,242,219,223,101,30,156,57,123,80,85,199,185,147,129,179,90,199,140,174,188,145,95,157,149,161,5,116,240,193,236,53,184,215,3,26,241,38,168,79,111,157,38,225,94,0,201,80,247,2,208,185,195,155,140,178,190,198,234,207,17,158,97,254,101,74,12,251,158,53,154,160,45,
253,13,224,219,124,135,226,190,130,122,158,98,124,53,157,4,248,248,58,106,9,255,230,37,141,201,69,237,248,13,228,97,67,167,205,153,212,66,46,25,155,165,227,52,236,60,83,158,76,251,247,182,36,151,68,106,25,219,246,125,44,114,30,150,255,20,91,124,145,125,185,248,238,188,57,6,89,246,195,240,231,202,59,7,217,184,255,133,136,228,124,0,86,244,244,85,138,38,193,254,223,167,144,184,252,124,113,47,136,238,111,75,193,58,187,236,241,111,38,154,43,134,127,85,1,109,78,153,210,177,242,103,5,192,164,243,86,57,192,39,216,39,153,70,240,4,13,148,18,0,4,32,188,1,123,244,255,1,127,193,143,71,255,84,145,251,82,2,126,185,121,243,202,128,185,244,247,240,146,162,127,189,178,236,250,236,55,16,56,127,7,123,178,168,94,177,154,20,172,32,127,217,10,150,44,72,5,56,210,5,32,168,18,42,87,192,89,122,198,106,176,190,38,27,201,131,105,56,8,52,159,155,192,232,48,232,26,89,201,105,45,201,89,177,202,217,197,140,204,144,153,4,125,126,78,233,
44,41,155,65,92,8,47,169,0,239,108,148,101,4,115,249,225,242,89,94,10,26,15,8,208,129,241,11,138,243,7,206,197,144,32,22,88,193,87,21,80,206,8,172,83,201,140,3,30,153,158,38,121,178,5,251,121,104,129,189,167,164,52,71,82,174,6,229,28,122,160,245,249,179,66,40,33,144,29,9,98,79,222,112,167,121,165,12,206,239,173,64,255,125,52,231,23,37,133,23,212,163,224,82,189,56,47,124,16,234,245,228,127,231,82,209,255,240,2,190,66,66,224,153,232,207,62,249,159,23,4,116,3,218,61,242,143,190,191,248,252,127,66,217,162,207,97,153,79,232,52,224,66,211,23,80,27,120,238,15,52,129,31,15,255,230,139,191,201,120,155,208,32,47,43,193,156,252,126,249,162,91,151,217,118,50,29,224,224,205,70,112,220,107,10,29,64,171,249,49,252,25,28,212,229,188,163,161,2,192,215,135,221,124,92,254,135,92,10,57,199,186,51,1,103,78,103,206,149,109,157,141,8,236,58,37,96,70,39,155,131,202,9,242,195,83,175,238,252,200,96,129,41,32,139,178,
220,207,178,210,111,206,178,66,80,10,3,94,120,249,198,254,49,252,15,128,191,8,7,21,241,229,140,240,149,69,160,121,152,190,223,54,245,146,139,234,82,232,138,82,104,252,75,140,243,89,241,253,139,81,27,8,115,110,143,203,87,246,211,85,8,97,206,179,214,121,53,123,160,29,125,88,4,10,0,226,1,176,126,114,103,168,224,97,71,209,211,162,226,2,232,108,1,68,145,189,71,83,14,29,106,157,171,32,124,97,161,93,233,15,131,183,103,43,62,42,5,164,242,70,113,233,245,103,52,103,125,207,75,5,132,203,114,165,224,210,122,52,176,67,46,255,156,187,253,7,123,8,136,3,152,98,38,147,155,119,44,114,245,81,32,24,64,148,127,90,154,85,162,55,10,75,159,127,89,12,191,176,242,47,33,251,2,224,121,218,51,72,78,151,41,212,243,154,74,151,146,162,138,92,172,126,214,1,186,55,147,95,15,14,78,11,58,233,43,120,10,230,227,243,74,241,114,35,192,242,38,12,134,85,0,95,65,70,20,148,195,126,253,235,7,191,249,205,131,79,78,207,156,126,242,127,
206,86,42,52,60,160,29,89,143,18,100,109,166,233,141,175,75,159,151,149,223,128,61,5,12,248,141,220,32,111,158,46,91,192,20,84,228,212,1,60,183,203,195,13,85,239,149,62,131,234,91,33,247,63,67,19,192,172,12,146,76,142,254,50,113,156,239,119,225,140,239,82,14,95,196,125,245,41,95,254,165,190,51,126,190,104,248,96,15,47,229,93,134,187,167,251,254,153,20,178,156,185,118,254,231,181,229,202,249,255,250,55,159,156,169,34,104,205,32,147,118,227,101,149,50,15,252,188,66,158,89,24,80,166,87,154,31,64,210,23,158,189,134,38,131,87,106,174,209,228,211,35,235,28,227,243,206,169,179,50,200,209,152,249,245,20,76,224,229,149,87,101,169,184,66,74,23,111,219,252,23,40,57,32,133,55,222,188,42,201,158,215,233,172,248,32,19,60,228,62,178,210,190,164,148,235,244,200,43,15,203,53,37,7,207,129,189,250,154,56,224,42,85,200,62,190,90,25,114,14,102,86,29,114,146,253,16,242,247,46,95,86,16,45,215,44,44,240,228,246,85,164,255,240,58,65,
228,45,131,11,43,237,244,56,9,60,27,62,91,105,207,51,183,16,190,115,125,157,3,131,24,255,60,123,110,250,60,255,158,0,116,242,124,3,246,48,239,249,11,230,254,165,12,123,230,8,251,33,100,120,202,191,46,45,203,249,58,55,47,106,54,228,122,103,14,135,0,77,253,54,163,190,224,93,120,96,91,135,94,96,0,112,241,246,157,187,55,239,193,254,238,203,171,77,239,167,165,159,22,93,121,143,12,124,244,57,236,209,131,7,224,151,156,18,102,32,94,45,87,82,126,225,52,0,138,246,31,190,52,134,171,134,5,12,247,243,199,25,71,44,67,106,166,44,30,234,120,169,43,118,209,11,123,9,186,111,64,158,81,102,11,0,149,59,115,130,92,252,45,32,30,112,156,43,157,12,144,226,159,3,142,239,21,172,5,31,65,172,5,191,156,177,22,250,245,167,103,237,139,195,94,193,90,168,227,159,128,181,224,56,215,123,154,63,135,12,211,7,133,96,17,200,153,11,151,253,252,78,223,51,31,250,26,63,238,226,164,206,61,44,3,95,46,241,194,30,119,222,59,5,3,228,
83,151,28,2,200,119,87,207,213,240,148,151,102,226,231,162,10,216,215,5,229,121,87,37,207,234,45,10,139,158,20,85,156,207,160,64,229,58,185,156,30,96,41,203,192,132,25,128,23,48,29,223,100,33,161,84,217,147,178,130,103,95,195,10,254,88,84,126,86,77,14,3,130,48,232,114,94,102,224,236,27,124,78,161,65,10,0,83,92,244,244,249,211,44,37,255,242,188,0,136,192,43,190,61,163,37,19,40,20,100,25,115,117,188,13,6,134,31,60,126,12,221,4,124,137,34,174,115,0,47,231,221,229,248,159,239,211,157,189,117,6,194,4,112,28,84,193,130,199,224,53,97,88,249,243,47,203,129,201,60,7,155,79,59,62,45,5,150,42,96,68,203,74,255,88,244,180,32,179,105,61,46,42,202,131,187,228,106,239,89,186,42,123,171,21,74,37,61,131,151,129,105,218,27,153,232,12,220,30,191,1,66,176,108,233,35,60,187,169,229,65,20,151,126,147,131,200,92,109,57,35,239,171,162,178,242,211,43,179,57,55,229,116,132,139,40,115,29,78,17,158,35,249,131,146,51,
110,156,94,194,133,226,250,23,24,82,90,2,21,81,67,181,210,87,48,32,239,74,40,236,209,143,140,216,178,175,159,151,195,140,92,128,92,0,137,145,1,80,102,84,195,30,151,25,155,1,20,95,150,25,7,138,141,50,56,120,209,183,28,150,31,180,1,160,31,20,64,160,191,131,103,64,127,11,64,62,7,0,225,16,220,243,98,56,60,115,49,251,210,227,196,95,22,85,156,189,43,35,223,191,186,246,62,244,41,204,43,101,104,78,171,1,175,242,167,139,225,37,121,49,60,176,66,206,59,69,103,149,205,217,66,185,76,78,43,251,20,4,206,164,81,64,16,168,190,13,192,12,47,123,10,47,44,2,180,49,119,108,155,57,119,41,131,63,43,46,120,156,45,11,124,154,17,25,120,35,253,230,85,119,106,63,44,255,123,208,80,60,47,0,109,197,163,55,190,129,182,164,235,74,188,243,186,67,139,16,130,248,28,246,77,94,66,234,241,119,149,160,63,134,60,240,2,216,179,51,92,103,202,116,221,17,49,56,185,239,46,214,189,212,120,64,160,215,155,141,171,139,110,191,202,38,
107,174,120,92,150,197,126,225,197,23,80,99,249,197,52,58,180,164,206,139,31,204,215,64,162,58,77,154,101,240,229,238,141,130,245,145,80,249,90,81,222,217,90,6,44,219,35,227,227,93,121,48,249,2,231,50,105,205,60,97,127,47,174,93,158,151,252,234,197,12,87,222,211,115,60,187,115,53,187,160,204,239,119,115,10,234,118,13,159,50,9,228,23,185,116,245,209,216,51,248,227,162,130,211,82,161,23,95,200,245,43,120,197,167,240,167,207,114,119,36,190,227,69,2,103,93,207,10,40,127,5,175,200,236,233,185,151,141,85,0,157,178,103,233,217,85,13,213,170,156,91,16,87,18,252,155,2,168,154,251,133,147,188,83,239,179,232,9,176,192,63,125,113,113,131,163,22,67,30,231,95,157,147,21,244,42,67,80,88,247,96,159,130,5,238,151,228,82,65,156,128,118,100,186,92,72,210,101,125,207,243,87,71,159,148,128,126,66,166,14,167,224,65,182,8,231,236,250,241,95,230,95,63,46,120,120,19,220,20,50,183,163,255,0,191,208,247,214,185,158,80,33,241,69,108,63,
185,253,66,159,18,248,19,232,205,29,87,190,101,9,216,127,10,158,192,65,62,221,248,30,172,58,101,8,44,139,240,5,38,221,128,157,107,248,242,210,212,102,65,6,56,47,18,44,56,247,178,128,47,175,188,50,124,126,30,127,226,169,92,104,184,100,59,184,98,110,55,206,38,150,63,205,199,47,63,205,255,234,153,94,104,40,124,157,169,223,56,155,119,62,23,10,175,228,194,179,210,111,238,124,175,149,125,54,115,16,213,85,11,26,246,113,65,81,249,153,93,45,128,242,204,119,110,230,159,27,148,255,75,89,54,229,117,57,153,119,127,56,50,239,190,18,153,119,175,33,234,222,15,71,212,189,87,34,234,222,85,68,253,109,230,69,64,185,52,193,167,103,103,92,23,190,254,16,182,252,212,183,203,142,122,185,235,155,129,188,52,202,255,67,65,241,21,113,254,53,64,47,102,21,95,6,168,224,143,223,229,90,130,196,128,134,62,247,46,165,179,244,225,185,197,4,98,186,210,168,148,60,1,211,0,133,119,223,190,245,3,238,3,103,72,47,234,8,224,36,92,48,27,224,36,78,
95,59,88,88,88,126,110,114,103,85,84,32,36,172,162,224,247,80,246,188,0,186,112,3,133,236,229,160,47,145,199,131,91,208,204,129,145,13,234,43,235,89,139,202,43,10,74,30,195,191,91,229,126,96,237,59,47,117,168,28,54,75,202,43,235,225,31,175,122,67,207,53,48,223,190,6,204,31,175,122,101,225,117,227,220,185,116,39,40,204,206,21,246,198,103,159,127,93,81,241,236,209,131,71,111,61,122,11,88,249,55,191,41,250,125,209,51,48,194,123,116,179,180,236,201,163,183,192,223,143,222,250,197,243,199,197,69,133,240,130,146,71,95,228,64,63,135,193,115,141,224,109,180,172,200,115,23,213,50,60,201,124,7,230,10,213,95,158,61,188,147,247,16,32,240,101,149,227,239,75,193,64,250,139,71,127,245,41,116,111,246,198,165,173,255,21,202,241,197,231,89,34,62,207,81,243,240,175,114,136,31,253,56,35,137,103,87,73,252,165,128,255,196,98,204,213,34,93,120,71,212,157,43,109,215,107,173,227,255,127,117,231,193,252,235,159,206,34,188,58,109,255,61,172,72,238,
43,192,170,55,111,92,103,81,78,191,255,235,53,214,5,218,25,255,203,246,157,203,107,9,32,154,254,219,170,232,15,184,1,21,128,19,253,207,217,53,206,201,245,79,190,101,188,178,92,255,244,123,199,37,2,120,101,123,255,187,194,194,76,129,200,213,41,91,160,203,85,69,32,249,126,230,213,254,52,148,172,45,45,188,178,114,242,23,127,0,67,149,235,137,0,251,252,0,84,192,1,52,87,230,56,193,234,206,107,104,57,173,255,203,245,123,21,122,242,233,40,3,17,156,85,4,67,103,46,16,101,167,167,114,224,37,169,114,120,241,87,224,12,50,175,48,187,142,240,79,75,63,46,40,60,61,174,188,174,196,9,234,121,205,209,36,164,76,87,209,158,209,52,176,250,175,16,254,164,12,14,207,63,110,1,166,82,86,0,108,19,37,87,92,171,248,180,244,231,240,39,47,73,34,208,243,229,72,188,88,240,253,2,157,89,146,206,211,153,37,62,143,206,75,114,161,191,2,79,54,193,87,46,92,127,181,225,151,69,21,31,150,252,178,44,255,125,234,96,141,246,69,51,117,190,241,
181,173,212,23,159,127,12,127,12,217,136,204,231,153,137,200,30,62,101,105,185,242,236,9,34,227,243,44,57,121,208,167,111,108,190,250,5,247,223,13,93,250,229,63,3,84,93,241,82,223,199,21,25,169,0,66,41,128,168,7,37,241,21,168,218,153,247,119,156,214,151,158,222,8,203,182,100,176,194,30,130,255,249,66,254,91,72,10,202,159,129,237,101,224,217,207,249,23,96,252,53,236,167,63,45,122,90,240,4,254,224,238,157,183,223,253,241,157,91,119,223,65,160,73,40,51,18,145,251,147,192,213,109,13,226,14,124,11,201,170,142,227,147,197,165,16,45,20,10,183,236,217,14,251,35,20,225,218,224,1,155,139,220,25,25,65,232,18,254,8,86,99,157,222,109,170,9,115,252,2,163,94,170,28,72,14,133,100,45,129,73,203,209,124,7,38,138,50,72,234,249,140,164,101,169,113,105,132,41,29,231,41,217,161,41,137,21,248,182,192,83,66,223,214,192,70,224,91,149,21,122,28,26,205,60,230,181,101,30,75,187,50,143,173,217,199,83,141,153,199,255,233,120,220,214,36,
122,225,228,80,127,162,212,30,31,38,211,39,206,195,14,232,121,36,62,208,37,208,235,104,210,72,106,119,194,237,211,65,112,105,93,92,71,235,223,38,224,67,83,20,137,53,185,178,170,21,248,245,26,22,231,40,100,25,111,234,75,235,119,7,7,23,231,197,43,131,123,14,187,217,125,18,92,112,31,173,183,66,195,110,227,250,226,187,136,68,200,44,63,56,220,109,234,75,12,32,130,9,54,198,62,52,79,59,233,143,78,173,107,147,7,83,54,136,204,217,253,250,35,255,201,204,64,122,113,121,81,179,191,97,23,180,111,54,29,199,71,251,78,70,67,22,129,134,27,154,218,6,208,197,87,147,157,76,99,42,128,240,9,142,70,106,180,4,150,0,237,107,92,176,208,65,4,228,144,182,119,165,91,152,158,78,139,210,100,124,64,176,51,9,77,243,88,230,148,8,65,74,220,227,174,238,184,156,130,231,115,234,215,22,230,133,227,253,224,99,101,156,182,135,52,12,154,55,27,123,180,113,244,64,42,209,239,22,28,205,78,55,37,44,200,233,216,158,222,125,180,218,248,178,252,158,
5,27,41,227,225,170,158,42,168,193,110,231,45,209,90,198,121,18,224,153,187,203,138,143,67,96,241,170,17,171,25,82,20,177,146,51,214,101,224,41,65,174,15,174,85,49,178,252,106,108,98,146,161,249,176,66,242,154,53,140,50,196,4,218,147,86,137,56,35,79,215,40,93,90,35,2,241,91,33,172,161,41,62,132,213,106,222,201,168,31,103,4,194,26,154,218,132,176,78,73,54,32,172,76,50,1,194,26,146,175,67,88,167,36,25,172,18,43,1,194,42,173,145,64,88,1,164,16,86,137,213,2,97,29,97,214,65,88,199,186,118,32,172,146,65,23,132,213,202,84,67,88,233,210,6,8,107,205,90,13,132,213,154,92,0,176,186,151,92,129,128,166,173,247,112,198,130,242,207,107,131,61,109,135,234,163,185,212,96,107,122,168,135,169,67,200,20,42,198,154,135,178,104,152,30,96,96,79,142,185,86,70,221,2,197,70,229,161,212,135,246,233,69,86,107,108,71,226,53,40,23,180,97,157,30,75,136,7,140,107,214,85,86,107,101,200,181,172,217,37,110,212,212,12,110,243,
167,131,115,219,205,199,97,229,174,117,145,52,176,33,112,225,199,182,118,177,222,78,206,118,231,122,31,58,81,53,56,164,18,236,173,182,51,230,182,98,179,77,232,132,203,155,90,23,186,122,181,28,190,155,64,171,92,64,11,39,73,27,59,146,86,229,64,237,130,210,18,159,167,249,12,184,24,22,119,28,28,11,39,82,221,97,149,194,27,113,239,135,90,57,30,218,94,112,118,104,37,18,226,30,4,217,154,67,245,176,60,53,167,168,163,206,7,136,180,245,25,140,34,130,223,168,158,29,100,171,61,251,193,153,129,142,150,46,252,198,34,45,94,235,192,160,107,155,245,221,205,152,94,94,23,102,193,56,23,96,154,180,60,165,184,178,87,97,72,173,204,30,75,117,84,1,190,190,209,114,72,217,179,175,16,230,92,139,186,182,214,190,14,161,154,115,220,34,52,118,105,154,36,195,17,86,152,224,177,37,4,41,207,82,165,118,121,190,219,226,199,5,248,10,44,14,61,38,98,108,6,183,186,213,154,78,126,205,18,117,236,96,91,87,91,199,95,36,157,232,79,136,235,104,167,75,
51,153,50,50,20,245,146,64,223,178,108,217,238,242,91,198,183,146,93,241,147,248,170,78,48,72,94,163,161,252,129,22,170,209,64,141,122,107,186,119,226,85,227,253,19,171,129,166,216,110,196,199,49,8,52,120,105,135,145,20,26,29,137,183,196,227,22,138,77,84,197,233,179,226,70,23,103,170,137,29,18,77,71,120,85,210,151,166,110,88,147,77,60,140,105,113,150,135,129,254,4,148,43,221,86,179,70,212,218,99,79,98,217,116,234,240,90,203,100,18,175,163,35,236,30,53,121,27,99,233,110,23,133,80,166,163,24,98,39,222,167,222,162,242,228,250,205,9,245,162,116,153,60,62,61,130,175,52,160,91,167,69,49,27,5,17,20,241,134,102,107,38,133,53,225,153,197,37,153,119,114,177,118,208,135,158,35,47,24,187,166,23,25,209,180,14,239,117,84,141,162,241,66,99,232,104,18,165,220,65,36,86,185,221,195,8,162,176,70,196,87,44,85,170,219,234,104,230,57,234,106,179,15,131,93,242,207,85,78,180,41,219,182,42,105,68,119,231,42,78,63,221,129,239,32,41,
233,66,58,146,152,152,215,118,162,80,49,189,80,148,156,174,222,171,99,120,150,55,154,187,69,12,204,88,115,147,103,15,79,93,48,72,162,106,197,164,119,141,80,175,88,107,80,38,200,226,96,76,92,221,196,150,75,237,82,180,38,213,32,157,67,147,59,84,102,12,67,52,114,194,76,84,237,120,23,34,75,90,243,202,142,128,124,130,84,70,189,8,193,113,98,110,131,139,87,12,214,242,123,218,24,12,207,116,63,94,78,20,24,22,249,78,237,68,106,75,85,229,7,172,46,123,160,103,213,26,57,236,214,153,48,72,148,69,21,64,96,134,119,154,36,156,230,73,226,78,55,11,79,170,95,192,232,140,8,7,125,98,198,61,76,160,18,118,29,84,74,131,215,215,187,127,24,168,29,82,143,175,172,32,131,83,243,205,58,76,176,157,175,53,78,165,251,165,204,224,120,36,104,219,153,28,13,24,176,74,167,242,104,150,60,44,158,210,147,195,189,116,165,159,98,143,152,144,51,244,77,11,33,90,229,161,43,143,230,142,213,88,218,124,226,208,31,34,139,241,82,82,135,57,116,176,
170,12,77,35,145,162,46,159,204,47,196,59,228,137,1,246,196,241,241,102,154,49,74,199,161,241,216,65,98,157,80,206,82,88,106,24,81,177,70,231,221,198,107,232,221,35,132,205,153,233,152,143,194,48,96,240,205,108,4,197,137,235,20,26,142,98,75,213,107,35,109,3,142,21,81,90,184,213,217,63,24,156,33,79,36,102,136,155,145,40,101,255,104,221,206,58,105,195,14,219,182,184,4,92,218,189,205,117,244,180,232,144,19,18,161,130,77,163,115,29,88,34,222,112,44,165,4,28,157,98,213,134,80,199,214,139,208,179,14,239,76,251,172,52,93,27,192,12,19,215,49,59,7,20,81,186,121,44,109,54,211,181,92,99,172,138,120,178,54,104,182,154,90,90,79,250,136,237,77,120,109,95,160,250,196,220,148,88,74,202,118,48,158,37,228,16,43,180,140,215,240,153,164,132,200,52,79,13,120,249,150,190,67,99,77,82,89,39,105,239,152,145,110,12,12,30,243,216,49,20,94,187,203,29,67,177,38,220,13,129,142,96,127,173,100,164,65,152,246,98,27,49,71,41,161,36,
56,37,80,187,201,116,84,104,212,225,239,32,58,16,72,99,88,141,172,55,42,37,242,48,38,206,233,8,119,205,55,111,5,41,45,70,174,103,112,159,117,48,226,210,46,75,196,77,110,155,206,184,129,217,172,12,197,217,46,29,121,59,42,228,155,219,188,177,113,58,94,29,69,152,38,81,113,141,57,193,78,180,34,234,99,195,36,50,119,112,123,106,74,164,216,181,45,37,196,3,40,161,161,47,210,217,79,108,155,166,163,241,253,196,218,100,3,6,213,229,171,211,86,142,32,70,233,3,102,103,157,117,124,126,99,84,218,174,12,217,92,120,142,65,216,221,141,108,117,58,134,43,153,203,28,132,47,180,39,236,165,45,72,71,18,51,254,224,72,221,214,242,46,226,160,229,68,186,235,104,155,228,134,250,199,195,147,251,237,2,100,148,57,104,95,19,209,185,68,123,51,66,40,196,211,194,209,169,96,163,65,137,153,81,42,248,136,158,222,213,90,131,184,246,80,57,22,244,225,213,226,5,38,94,96,56,102,167,177,51,214,99,90,245,214,108,99,175,175,129,206,178,19,141,104,81,
122,223,77,195,88,12,109,92,11,10,88,93,116,99,144,61,143,23,70,151,16,94,212,56,78,165,104,193,117,225,88,3,190,53,33,3,131,215,97,136,88,38,102,145,22,76,105,27,48,186,106,5,34,22,165,88,136,244,6,91,175,108,194,44,50,54,234,208,6,175,253,40,188,229,175,223,175,85,207,199,205,193,118,173,113,125,202,109,4,118,12,147,147,136,20,205,77,45,171,216,158,248,174,173,170,1,79,175,166,211,245,66,52,174,70,75,97,152,214,226,92,18,27,84,80,241,58,55,226,82,138,244,246,46,37,42,188,48,20,208,183,57,152,149,12,36,150,225,69,44,248,48,213,98,69,170,25,161,211,41,16,94,52,214,161,183,110,173,186,146,145,21,14,114,116,160,201,51,222,53,181,136,33,59,29,6,23,157,97,197,55,232,100,237,72,177,39,230,233,65,27,141,212,45,76,39,219,43,228,138,4,242,182,22,3,33,229,209,7,29,220,6,217,6,167,166,30,139,93,244,71,233,164,221,97,54,115,4,223,216,69,38,210,200,33,101,27,129,99,238,197,232,25,142,230,208,
22,19,173,104,12,146,78,234,166,13,233,70,74,163,211,104,235,156,166,108,40,21,49,39,225,184,25,133,235,87,122,184,212,80,168,145,213,61,211,88,199,232,199,187,141,109,209,77,60,30,43,136,172,165,230,48,238,142,133,229,32,33,229,102,185,83,137,90,94,123,135,196,131,88,136,74,240,66,207,26,3,83,169,227,178,132,36,33,61,90,213,138,212,41,40,67,90,214,81,156,169,210,206,238,241,197,45,178,217,225,109,98,168,219,124,208,166,84,32,6,88,200,17,47,145,16,13,112,6,6,181,184,101,228,76,125,71,184,126,162,122,125,202,217,103,136,28,243,171,98,113,155,180,38,118,52,103,214,55,226,168,61,181,114,162,148,51,198,93,19,98,81,195,236,144,88,185,65,160,219,17,226,32,131,22,86,172,249,72,236,65,17,242,136,41,109,211,89,251,198,215,14,93,1,77,123,119,253,184,127,193,110,71,163,194,131,141,139,81,131,107,40,32,24,94,209,82,103,55,162,28,63,147,187,73,108,115,132,93,232,205,25,122,55,119,151,111,221,238,243,247,117,30,7,173,135,
219,70,93,77,39,145,128,192,209,125,140,22,177,199,141,32,68,247,237,204,69,143,177,179,31,189,189,144,156,80,6,85,194,126,51,22,45,69,237,159,24,221,118,14,139,218,208,50,98,238,161,10,82,201,53,126,40,98,233,173,31,33,29,226,219,69,233,217,110,242,20,183,75,131,198,7,246,251,155,81,67,13,82,133,138,55,179,64,164,137,27,108,136,227,26,18,177,123,99,220,227,21,108,18,91,113,4,235,254,42,222,166,112,58,215,118,196,36,145,14,225,152,212,85,15,106,27,49,12,157,118,31,203,194,175,119,140,137,3,42,63,142,109,66,236,244,197,216,83,136,227,177,161,195,68,178,123,184,31,216,178,141,135,200,112,108,113,101,209,176,188,180,178,100,27,66,116,68,234,59,34,213,218,165,229,147,254,52,189,93,221,160,175,230,28,172,104,119,200,116,68,98,37,176,95,197,144,111,181,175,205,50,23,89,13,61,225,21,87,223,254,65,199,106,186,102,116,190,225,152,27,23,170,12,14,86,157,217,140,241,240,17,253,216,122,63,201,219,201,10,99,45,213,91,139,164,
148,135,142,76,10,163,147,209,52,155,190,84,201,53,238,47,155,116,248,213,42,249,80,114,120,190,175,146,204,37,207,114,245,33,41,222,105,27,179,88,55,173,27,22,61,122,15,209,81,135,235,28,8,135,240,235,84,116,0,97,225,141,109,49,197,189,4,6,67,214,50,39,25,103,80,49,166,6,15,26,169,10,24,253,12,227,60,203,199,192,147,80,196,67,33,75,39,65,41,195,199,26,138,60,136,236,173,222,30,30,180,232,106,137,172,149,9,197,150,165,233,32,186,66,88,95,247,251,98,189,61,180,218,67,46,67,76,179,85,237,201,17,190,73,157,65,212,64,212,110,181,227,165,113,102,195,8,170,182,91,168,102,106,105,42,167,146,212,176,227,169,174,25,29,139,14,141,137,214,14,52,11,105,166,216,187,141,237,72,248,16,62,236,24,126,88,113,98,196,13,251,6,148,34,221,168,7,57,129,68,146,116,179,236,149,37,100,242,228,136,50,117,148,56,50,170,143,19,149,149,106,241,137,117,37,194,209,34,134,8,94,10,235,232,248,240,232,96,125,113,185,122,62,2,48,117,
48,181,124,76,69,141,246,173,104,123,150,83,135,71,251,209,89,215,58,6,99,58,113,49,25,228,196,248,38,15,25,104,164,118,12,238,83,15,186,28,72,161,103,127,57,96,152,227,183,163,253,100,254,17,221,180,161,86,40,58,184,76,228,66,168,85,42,150,38,154,197,72,142,247,200,61,52,59,22,69,11,112,184,68,8,105,30,19,242,164,225,21,246,14,160,199,40,143,35,186,130,55,146,71,107,221,238,158,19,161,76,65,247,17,38,194,184,64,103,55,85,135,194,168,142,218,117,28,121,16,203,95,98,120,119,153,14,46,118,30,225,55,46,30,172,119,174,174,113,1,255,121,170,214,68,92,195,55,207,241,9,81,204,190,167,94,31,160,210,71,93,179,211,93,45,181,141,145,4,49,220,223,16,235,8,238,58,155,226,62,98,67,155,197,202,25,102,57,122,172,189,7,75,148,113,166,167,203,181,36,246,160,80,248,234,102,42,113,93,41,50,55,15,98,69,198,57,60,155,81,105,244,55,201,218,136,78,47,43,184,158,170,237,215,85,154,60,14,68,76,87,187,106,100,51,112,
177,22,191,164,105,12,219,131,165,178,244,84,99,127,98,116,176,83,73,90,241,117,209,53,228,185,64,71,195,2,198,224,67,250,164,199,251,201,248,46,254,32,157,180,147,146,209,147,249,173,62,171,177,187,79,127,114,100,28,18,28,39,23,251,34,180,149,161,147,195,149,244,226,124,68,123,156,92,217,238,3,62,56,65,124,95,213,74,101,171,128,20,15,167,182,7,82,201,109,225,192,138,56,76,64,225,248,72,11,58,160,150,154,233,128,15,199,227,218,34,124,192,118,196,93,210,154,193,216,134,153,202,211,40,155,234,209,142,118,223,50,219,205,157,148,75,87,100,218,132,114,139,221,137,230,137,77,115,216,73,140,194,231,28,38,55,135,22,40,123,237,162,4,101,132,40,168,242,225,230,166,83,117,60,174,32,120,168,166,215,238,145,184,71,193,13,87,124,191,61,217,44,106,169,17,183,247,208,109,122,68,96,21,224,188,231,40,186,158,28,234,28,210,97,35,149,163,75,194,225,37,171,42,32,25,181,232,167,186,163,59,113,178,180,203,151,228,238,249,156,146,49,119,147,181,71,
108,170,154,109,25,215,237,162,140,19,129,195,132,108,93,226,71,153,251,176,104,202,196,218,114,218,48,198,48,32,41,120,51,178,143,212,128,159,37,115,128,253,67,152,198,16,24,13,65,252,136,72,80,171,153,72,215,161,184,134,225,202,65,122,111,195,2,149,204,49,9,101,45,4,182,15,229,161,178,218,130,200,78,118,2,135,225,28,119,6,53,132,192,170,185,14,121,104,23,203,28,99,3,19,242,134,153,5,53,58,74,109,92,213,142,205,46,47,236,243,171,120,82,97,7,118,40,58,69,198,215,37,246,87,199,240,206,169,84,99,192,206,25,34,9,135,56,193,69,55,173,133,183,124,114,76,165,85,34,25,120,13,150,41,218,29,59,166,197,72,115,145,99,51,192,206,74,192,18,163,212,115,154,214,186,125,82,156,207,217,116,70,67,28,79,180,73,19,217,244,242,237,41,163,82,180,190,83,235,219,228,56,89,78,255,241,200,240,140,222,127,132,81,212,161,27,72,34,10,29,171,224,235,19,152,227,6,90,157,230,132,132,66,75,135,163,45,60,151,127,176,189,91,178,103,166,
33,144,125,22,162,174,205,211,195,139,118,143,76,44,186,3,157,157,19,243,22,57,166,111,113,146,200,153,209,140,215,171,162,85,222,9,210,8,178,131,58,106,99,38,211,102,19,47,172,88,143,19,205,8,59,102,135,99,235,152,55,98,155,233,108,34,87,182,69,12,85,33,69,227,76,202,246,240,184,133,72,26,221,171,97,226,71,91,132,116,18,138,146,232,76,68,215,169,135,54,195,112,61,131,200,151,214,143,111,88,235,26,142,15,133,210,16,5,65,234,238,229,46,8,189,113,90,80,87,29,194,10,16,134,182,184,140,34,85,225,133,7,61,164,209,136,168,181,10,109,78,88,118,200,58,49,1,155,196,79,200,35,221,243,7,11,157,62,236,124,141,2,143,64,143,168,44,83,30,63,193,172,136,85,119,138,70,98,131,194,88,250,64,130,67,153,188,19,132,253,38,20,51,26,233,163,173,200,195,218,22,247,210,49,18,135,11,144,145,154,198,68,170,110,126,112,80,142,145,28,71,148,70,43,126,94,129,165,187,53,236,88,189,11,71,118,116,251,240,67,204,250,19,44,70,61,
166,247,165,105,131,140,177,22,118,103,167,123,171,75,109,238,222,84,244,226,250,228,3,10,142,113,184,191,46,209,189,87,227,157,28,157,84,157,12,226,69,24,83,156,209,222,189,177,224,50,242,237,141,245,29,116,42,185,3,191,218,37,79,14,211,246,241,200,57,4,205,31,148,59,150,118,68,42,143,167,110,110,78,163,217,116,47,107,99,190,57,91,240,80,70,216,64,97,56,94,10,25,201,192,226,88,209,238,142,13,183,241,216,219,99,20,144,17,39,35,226,61,122,127,237,110,80,73,159,96,163,181,227,14,237,244,97,181,150,162,58,24,54,174,178,155,23,91,88,132,157,253,224,196,248,110,180,114,67,38,244,116,134,83,150,201,209,185,32,119,143,212,35,21,25,235,123,49,3,190,217,206,69,203,252,182,40,16,8,104,251,154,78,200,254,30,151,83,222,45,52,138,117,142,222,89,239,18,119,44,80,19,68,212,213,118,26,194,163,117,88,108,23,149,44,222,169,247,59,76,85,53,12,233,178,140,206,24,83,47,199,210,51,88,61,9,223,214,17,238,182,112,84,145,230,228,
174,0,63,173,136,237,11,187,38,25,125,43,88,217,206,148,141,77,243,89,34,135,43,177,190,122,98,127,148,32,147,12,147,121,93,172,46,4,183,29,65,138,106,24,75,53,141,164,24,101,170,81,155,182,111,70,232,202,190,110,43,31,127,210,219,51,145,172,174,57,212,33,240,113,172,199,141,105,59,57,54,87,47,85,111,160,201,92,3,30,133,155,118,41,26,176,180,213,5,195,14,162,241,192,174,240,176,201,155,73,103,29,58,182,139,92,81,210,36,120,177,222,38,64,17,241,82,219,81,103,98,187,175,237,48,189,79,74,40,182,247,18,39,237,187,75,115,232,122,18,38,129,153,18,241,241,214,58,238,208,26,195,20,222,38,143,143,215,78,235,251,91,253,124,172,112,167,165,222,41,25,164,214,247,203,168,8,95,135,74,188,167,34,77,212,7,250,27,2,58,170,80,137,213,173,41,240,216,45,139,234,152,61,64,105,13,172,87,139,219,108,109,206,85,237,110,82,71,82,109,68,28,129,106,154,70,140,64,57,152,182,22,30,151,106,232,25,220,69,234,24,234,93,117,136,188,
57,237,89,59,48,207,170,76,68,27,185,101,49,193,56,48,81,134,123,26,81,11,186,73,196,192,145,50,185,212,58,60,135,108,32,36,119,213,120,185,204,149,240,119,242,130,51,221,178,105,15,119,113,99,147,197,173,173,237,58,156,78,14,165,58,180,180,232,177,102,85,72,49,212,106,163,211,117,140,150,181,73,70,165,34,214,176,91,213,72,196,86,161,122,7,21,59,177,35,94,92,222,38,146,153,220,51,19,67,19,213,193,48,73,218,216,168,100,44,27,251,84,170,36,23,32,44,170,160,247,44,155,118,48,149,99,213,154,131,74,68,131,48,197,237,31,58,130,24,175,92,180,226,79,90,122,218,19,4,229,198,74,20,205,87,119,176,245,141,226,213,200,210,22,97,175,221,135,236,68,206,83,28,10,108,247,216,204,76,64,140,180,52,142,12,236,54,5,119,218,39,88,161,61,21,97,139,46,107,58,174,86,185,106,185,75,120,61,91,57,217,77,148,224,233,102,153,39,70,96,147,80,44,83,148,146,182,70,232,59,123,186,110,142,120,46,138,192,204,169,149,73,121,181,215,110,
110,231,43,88,138,234,122,9,129,65,92,36,213,173,121,151,73,18,207,88,220,100,159,53,14,12,173,133,27,83,155,132,149,58,115,115,199,4,192,127,226,32,102,37,190,169,164,4,187,221,34,87,213,40,14,79,138,14,83,228,254,3,159,167,95,32,75,57,252,172,96,160,71,238,240,38,186,233,40,170,171,155,106,171,241,245,26,68,70,204,172,84,128,156,109,147,98,56,170,177,53,250,18,119,216,229,29,149,58,29,137,195,4,214,190,222,131,233,172,109,181,163,170,49,116,183,112,194,213,79,90,107,22,137,244,70,195,114,237,130,43,38,57,24,172,241,209,149,131,148,0,189,121,8,177,189,60,73,22,14,123,182,215,132,13,39,110,94,123,181,54,18,71,73,143,194,211,190,166,86,196,240,116,183,141,97,50,89,113,232,69,203,162,123,183,111,4,129,99,12,44,249,38,8,128,146,226,235,80,161,214,240,201,70,21,213,35,214,224,192,36,135,53,185,26,97,146,19,129,133,100,131,91,48,19,171,115,238,163,81,106,14,131,57,184,201,245,217,16,76,116,164,123,85,110,221,
34,76,111,168,14,132,248,17,36,18,27,150,169,6,39,162,27,4,87,163,118,56,160,27,55,116,213,8,250,12,149,186,67,52,202,36,108,153,100,74,103,38,153,171,171,11,126,215,98,107,44,168,104,60,74,123,142,134,106,82,107,59,162,170,90,145,40,205,75,133,93,59,198,42,231,158,119,90,101,27,164,120,204,214,176,189,206,143,237,214,225,157,71,71,58,230,94,176,213,88,187,63,108,15,55,236,205,245,177,144,67,40,167,110,13,217,217,61,60,164,37,13,77,218,80,242,90,215,46,93,202,138,154,21,66,85,187,100,110,148,181,27,116,160,124,221,33,4,149,140,239,236,60,174,172,86,9,131,77,118,76,75,213,48,105,12,59,193,211,234,119,195,150,0,129,196,244,172,33,145,26,228,126,245,182,74,182,81,141,141,232,228,161,154,106,75,72,151,70,30,248,86,58,26,162,92,62,51,40,156,166,248,37,141,81,103,131,122,235,40,209,157,28,66,86,26,133,24,21,189,221,48,135,197,36,235,209,211,18,3,42,185,31,138,197,101,40,137,240,68,236,216,64,226,73,139,
8,137,181,159,120,176,216,188,54,185,50,225,64,83,218,6,232,93,17,182,131,94,237,25,198,81,5,225,232,106,104,116,9,139,167,214,155,122,134,101,86,190,101,247,72,13,6,39,241,184,180,170,38,102,239,90,222,65,12,246,72,102,58,155,137,6,63,161,138,218,53,161,72,175,225,204,228,200,176,14,173,69,226,244,20,70,186,59,173,38,208,187,147,93,3,141,77,161,77,171,173,186,102,205,171,151,53,69,251,61,230,74,253,180,75,108,244,187,162,90,217,204,32,15,131,213,97,132,171,194,154,249,16,119,104,4,199,144,26,241,19,123,174,238,209,93,100,37,95,170,214,118,135,167,60,188,77,39,129,190,22,212,39,18,61,93,168,205,54,20,6,239,33,46,179,85,99,173,110,32,68,228,244,121,162,20,149,210,137,85,123,106,152,67,26,53,146,139,21,182,196,137,195,76,146,120,4,207,237,52,108,45,244,219,4,83,78,34,57,136,144,180,0,241,238,118,16,216,237,154,145,155,156,141,97,223,200,48,146,129,92,245,176,164,168,160,126,141,164,171,66,81,44,40,202,230,
186,197,202,52,6,249,74,164,223,51,37,113,182,182,201,144,100,15,78,103,85,119,180,136,198,71,245,166,181,190,70,147,135,189,63,189,58,167,116,86,75,91,169,62,29,42,76,152,62,106,214,179,147,65,194,228,129,100,92,137,110,140,236,30,179,136,150,102,134,127,117,111,126,198,108,93,229,13,132,154,213,42,162,108,74,78,174,35,112,99,61,34,158,113,245,128,212,226,177,36,170,119,68,134,227,245,209,229,6,142,143,22,232,112,30,90,89,118,213,238,64,67,255,106,180,134,3,6,219,83,105,78,27,224,131,216,21,199,59,28,196,62,134,145,70,153,245,142,41,129,166,95,117,136,182,242,155,19,147,81,85,163,14,191,20,228,217,248,129,68,183,102,97,164,122,127,74,34,235,242,173,35,250,194,180,241,200,176,136,135,112,32,188,30,241,12,105,178,221,228,82,0,1,71,56,186,113,210,231,177,69,170,211,85,8,199,30,163,178,73,138,198,89,247,55,16,168,177,152,168,31,189,52,178,96,208,132,142,53,139,237,115,253,58,231,114,99,170,138,56,129,119,215,89,73,51,
213,62,70,180,117,165,203,142,159,225,31,197,246,18,188,121,78,192,3,208,137,161,238,105,86,20,115,113,21,149,22,193,183,32,165,150,153,25,29,178,69,168,227,175,118,214,201,13,68,5,23,59,233,218,64,25,69,209,88,173,182,165,57,178,49,171,52,179,166,68,14,34,15,159,144,34,176,75,146,53,147,208,61,59,167,70,226,146,67,11,157,42,129,119,217,182,174,153,77,140,132,122,136,228,241,57,113,67,106,151,71,24,240,28,178,72,146,182,131,77,149,216,110,26,76,108,178,168,169,166,216,152,127,65,84,133,69,109,234,85,17,15,77,132,155,95,159,147,142,236,174,98,9,98,52,9,137,110,6,227,114,33,87,61,128,247,111,35,173,51,105,225,128,229,104,83,0,88,229,21,146,213,220,157,162,213,202,87,5,171,77,24,45,130,177,84,237,116,152,3,67,166,97,124,52,236,81,196,253,203,82,5,143,216,35,67,56,27,58,59,196,205,204,122,186,206,39,140,105,169,225,19,22,137,200,148,10,77,98,39,102,54,128,194,213,48,71,87,59,185,75,6,165,131,161,92,
83,71,69,202,117,95,59,121,122,169,214,156,64,38,253,182,166,237,165,153,198,13,41,90,142,92,158,236,212,50,118,9,66,147,123,113,171,186,90,99,81,161,106,144,219,155,129,177,170,73,181,117,42,85,213,213,63,73,147,35,232,82,207,160,156,200,60,76,198,38,251,43,21,168,113,76,155,115,122,171,213,181,37,71,232,81,252,48,151,229,156,33,162,14,89,116,116,0,107,98,232,49,36,37,30,107,227,183,31,15,30,182,15,89,112,61,171,152,152,141,193,140,33,15,228,123,174,102,214,180,3,209,52,103,136,107,22,144,149,141,108,82,159,13,75,229,104,66,45,73,57,6,197,78,174,86,19,181,245,158,19,36,189,129,39,155,71,173,226,170,170,24,17,78,248,120,69,213,170,109,238,182,236,132,228,107,246,81,63,186,241,32,113,236,236,88,136,73,251,84,131,134,197,108,30,153,95,179,102,58,169,110,243,246,6,214,107,204,29,44,105,45,102,143,132,164,116,88,246,58,112,254,237,165,206,104,147,69,21,72,155,235,230,26,122,237,102,199,162,158,114,188,171,216,175,71,
27,72,219,125,237,75,131,83,53,221,221,216,142,122,159,1,133,103,9,221,92,103,72,23,78,160,103,210,102,46,82,185,200,176,110,51,80,3,158,157,227,218,86,70,162,69,56,54,35,179,251,205,147,82,59,157,83,167,25,94,145,214,237,90,130,181,107,155,228,164,33,58,81,39,69,234,219,69,93,51,164,36,203,30,231,175,16,55,42,3,190,20,59,76,119,16,124,248,1,182,164,107,17,176,51,173,3,235,149,193,144,79,66,144,32,56,3,137,35,137,167,115,68,129,160,41,80,24,47,194,84,227,199,17,134,13,152,102,89,184,222,22,151,232,54,169,235,44,194,26,171,202,139,8,251,245,52,234,242,97,59,98,164,49,212,74,197,30,157,16,43,77,234,42,180,43,30,149,122,248,189,142,185,177,174,161,116,239,120,80,33,145,5,133,149,115,253,171,120,205,114,98,98,182,50,189,110,49,117,53,199,172,59,109,210,142,126,169,220,65,31,233,183,52,9,180,30,212,236,246,226,161,206,39,238,180,183,174,204,171,142,118,182,220,53,123,27,30,171,61,214,182,53,160,25,100,
115,18,12,220,130,52,96,48,81,240,9,253,166,133,215,239,144,109,78,176,150,60,171,166,233,86,201,28,104,98,7,226,201,46,192,117,208,179,166,193,116,47,67,106,115,144,12,71,141,24,76,140,97,171,100,46,50,214,189,104,76,66,164,233,221,58,49,242,122,40,174,245,117,210,164,39,173,172,233,193,233,194,196,37,54,6,229,83,43,12,113,76,237,136,119,102,133,212,19,115,244,214,111,54,113,103,120,120,25,194,139,152,237,196,180,121,176,163,205,68,219,226,86,67,63,107,186,69,178,211,82,167,153,168,237,227,154,235,18,71,19,45,85,253,212,73,251,100,74,25,158,180,28,31,206,184,132,120,222,208,242,113,127,143,234,120,196,189,220,212,177,17,246,246,34,170,84,3,94,146,129,48,192,151,47,78,15,75,166,253,181,137,78,81,104,98,113,41,68,108,163,78,145,201,61,77,174,249,41,19,149,23,233,215,163,200,201,193,41,51,193,77,235,166,161,119,36,135,134,202,248,178,64,75,113,247,9,229,97,69,58,40,75,184,85,9,203,150,208,52,140,181,182,146,86,54,
216,161,36,131,53,176,179,58,163,235,167,52,182,105,118,147,67,212,42,193,4,130,233,154,28,34,108,40,5,77,82,157,170,93,186,26,114,146,24,186,21,69,192,94,37,176,108,55,69,55,142,89,252,52,51,210,88,63,235,15,17,39,145,136,99,214,50,138,238,71,183,51,15,170,164,117,132,250,206,9,180,201,163,144,237,57,20,232,37,161,4,27,90,159,112,29,118,46,203,118,33,183,97,185,102,2,208,105,86,8,25,115,224,153,174,169,224,194,168,3,131,111,105,165,57,59,43,101,7,27,147,40,123,223,90,43,203,19,63,92,147,171,76,205,222,93,105,39,95,19,196,219,187,98,222,30,77,84,229,49,233,38,219,249,174,78,30,215,60,183,195,98,72,13,226,117,100,76,193,197,217,241,67,97,133,33,97,182,74,236,117,187,136,145,52,123,87,180,63,60,50,176,17,236,66,132,53,203,26,107,253,138,180,67,209,219,203,23,247,138,102,76,130,96,171,227,120,158,52,36,170,75,30,90,214,55,55,157,9,122,223,54,26,123,128,198,227,164,40,96,189,214,58,87,100,3,
171,179,9,170,126,68,129,90,194,83,57,36,95,44,186,60,193,25,247,28,205,73,7,228,67,6,115,194,172,39,198,35,130,160,119,124,3,221,76,27,107,244,136,16,82,249,58,113,126,207,20,172,101,16,73,24,244,246,86,107,67,202,163,194,187,187,55,35,140,163,20,138,165,116,53,85,235,181,85,140,58,135,79,80,135,70,30,181,206,186,27,249,137,249,85,155,192,215,58,20,157,180,217,78,100,193,128,76,128,155,239,138,216,55,150,85,73,91,67,122,45,102,153,234,156,20,50,83,56,52,119,215,161,235,216,218,171,218,235,93,35,134,14,204,219,39,145,241,241,117,211,193,226,16,249,164,114,208,111,196,37,88,116,123,167,168,127,126,137,134,64,44,162,185,224,25,154,148,92,207,175,175,233,140,140,170,84,93,147,104,11,57,56,210,77,217,150,251,54,15,23,39,199,132,135,161,38,114,101,212,134,74,209,48,85,202,233,189,166,222,1,14,223,69,241,141,133,61,244,78,145,146,45,90,167,238,118,247,110,177,148,56,4,130,131,143,29,18,197,41,63,69,176,75,24,243,
13,45,146,170,6,246,218,67,181,141,7,252,202,67,157,232,80,20,54,91,56,107,83,235,252,41,125,93,171,167,177,91,211,135,39,180,104,152,88,46,2,136,59,28,158,24,130,89,159,24,111,28,32,74,16,253,4,15,199,34,170,174,49,200,177,225,24,58,182,52,177,123,216,38,98,111,47,54,213,196,248,211,177,70,185,59,54,218,215,84,211,120,40,100,58,12,235,250,170,147,89,118,68,191,182,189,219,186,205,89,49,153,22,166,76,248,104,155,109,139,107,103,200,183,7,87,78,164,140,104,60,185,135,33,173,55,54,10,170,61,60,206,86,139,92,215,32,67,120,248,155,93,132,89,63,46,204,117,13,81,119,237,110,87,163,145,187,25,99,35,122,76,106,19,109,19,187,222,60,180,83,183,178,27,50,245,91,36,88,75,55,3,145,112,99,245,40,91,167,215,64,116,111,80,251,194,20,164,187,67,176,207,211,175,112,66,218,72,100,187,203,114,178,94,19,227,9,34,13,12,205,224,28,191,245,144,182,62,51,211,136,31,208,31,82,22,163,19,157,109,77,81,47,201,62,192,
83,44,137,189,198,105,155,111,115,53,84,223,119,204,29,169,111,199,236,186,19,195,248,57,123,98,107,204,107,137,106,176,58,106,212,32,141,14,24,44,49,44,143,70,140,245,25,196,19,134,93,27,187,94,26,37,122,54,39,26,82,253,2,7,210,188,96,73,236,162,112,62,252,92,63,197,185,47,15,111,206,38,157,24,17,63,204,160,30,212,175,116,30,214,78,97,39,198,247,226,136,145,134,131,93,163,78,132,113,84,234,252,235,211,18,175,93,24,213,7,182,89,253,226,33,106,187,207,103,104,82,120,119,253,246,249,109,87,227,128,76,220,221,102,236,30,163,183,167,92,78,17,29,41,174,170,106,226,181,78,154,5,40,124,67,27,150,84,215,230,76,5,235,24,107,158,99,247,46,95,186,85,143,217,86,134,233,187,150,131,101,6,63,64,12,46,50,150,52,212,173,186,122,92,31,159,193,159,95,28,171,28,24,138,26,23,68,179,6,228,202,212,212,145,173,170,79,213,192,14,140,213,31,85,41,212,85,27,29,235,35,109,85,90,4,30,163,64,96,186,26,38,200,206,184,154,
24,160,109,50,76,181,147,26,241,76,11,155,222,101,155,69,140,6,48,195,116,234,73,125,104,151,208,122,212,55,235,65,42,219,27,90,145,65,207,110,96,173,67,32,93,233,30,236,17,12,143,38,57,107,166,205,52,126,109,121,19,105,192,10,90,150,146,252,89,49,190,73,78,164,112,141,154,206,253,112,23,205,62,103,244,232,170,19,99,3,237,138,131,144,211,232,66,106,119,235,76,114,78,152,192,199,85,109,176,77,120,206,6,125,90,101,84,244,183,80,86,77,157,210,174,74,157,72,166,170,166,87,29,212,56,122,85,62,100,3,42,136,166,97,189,104,157,6,143,33,249,36,11,54,44,69,180,234,209,243,119,166,153,130,177,168,110,208,190,170,218,181,27,189,163,235,142,36,175,7,161,29,36,57,76,140,186,176,79,39,86,225,169,44,147,131,106,171,195,82,27,80,139,248,254,202,166,189,17,127,76,63,211,113,28,152,33,72,211,244,216,182,214,128,158,167,104,106,162,181,29,227,76,140,3,179,213,111,168,181,12,173,140,163,167,199,143,153,187,39,225,216,81,220,187,33,
77,29,239,111,234,52,1,215,144,122,39,194,55,199,53,147,132,65,251,6,141,74,142,70,177,53,158,206,117,98,120,129,106,148,162,87,204,19,147,142,13,50,74,222,139,25,108,105,98,77,57,92,94,171,201,165,213,11,180,49,63,107,120,173,125,174,26,205,235,114,45,176,171,49,195,12,177,109,224,100,39,177,140,61,17,6,34,155,150,131,86,17,26,99,138,184,251,220,46,26,49,57,191,122,8,50,19,224,165,211,128,157,221,231,58,69,38,247,186,187,147,230,243,107,69,108,180,173,206,86,211,222,98,210,29,177,131,209,230,145,105,25,109,196,34,65,247,180,210,14,182,16,102,157,99,128,175,6,34,83,45,207,27,247,132,219,52,58,52,53,96,21,203,216,200,106,106,213,24,142,196,209,9,81,11,28,20,138,201,27,221,32,168,218,184,78,98,156,102,180,41,199,107,149,92,202,76,87,7,130,74,93,209,174,39,39,186,165,125,158,62,103,215,94,156,52,163,97,97,68,147,109,213,222,118,38,138,78,109,172,238,100,54,91,29,253,113,25,149,87,47,70,35,48,56,22,
99,195,108,181,218,100,107,234,217,233,105,237,14,59,213,16,104,20,34,131,8,162,60,132,104,242,172,197,151,151,117,56,225,66,90,157,242,14,184,157,189,181,109,170,129,86,233,168,129,24,210,249,99,251,254,208,241,112,175,175,123,107,224,96,217,27,26,104,242,31,72,183,135,154,148,234,8,222,211,185,143,175,234,20,28,205,199,237,109,99,113,249,44,195,221,143,31,223,25,228,77,7,150,92,71,149,61,154,234,225,234,14,60,169,118,3,197,107,17,119,247,142,1,17,190,192,60,75,64,117,13,81,217,59,228,94,193,122,159,51,16,48,14,172,137,7,15,220,130,22,109,143,108,103,84,183,146,114,111,183,31,7,221,91,245,157,62,26,149,52,47,75,209,147,61,221,225,133,142,218,230,33,138,67,80,211,160,119,68,168,52,58,81,106,230,198,76,163,188,117,34,1,48,159,212,209,241,174,129,253,195,93,12,176,184,58,150,102,2,179,226,56,62,53,141,16,17,21,200,201,45,4,141,92,111,219,70,247,219,146,137,104,255,209,42,153,176,217,186,205,90,70,31,120,189,184,
132,50,177,79,31,241,171,25,3,94,143,164,74,167,239,174,70,76,54,205,18,101,203,38,36,138,186,82,173,78,5,212,107,169,233,166,170,84,114,66,188,143,31,181,41,27,59,150,134,59,13,28,29,199,223,72,52,36,162,113,9,54,130,49,163,183,89,115,88,222,129,0,240,92,170,165,107,241,250,105,47,169,213,77,106,51,36,68,8,74,2,57,202,143,136,120,170,248,130,78,209,62,24,25,223,142,168,27,106,113,67,204,241,158,254,173,222,246,246,26,78,63,103,158,237,15,72,165,136,38,179,197,82,89,89,73,173,196,85,54,5,56,115,71,227,236,229,100,172,222,40,92,61,192,210,6,59,197,29,39,59,14,129,122,47,80,27,31,180,110,138,34,251,162,100,48,190,189,107,221,32,173,56,181,203,241,225,97,94,84,127,34,230,180,180,81,235,199,82,232,222,65,34,190,13,35,99,29,17,151,215,231,116,18,58,51,42,22,86,210,15,205,9,1,6,131,213,206,212,35,213,242,177,67,71,248,96,59,178,189,101,33,109,157,104,58,251,36,233,225,147,227,228,56,77,212,
185,226,16,202,235,14,36,17,47,22,103,69,160,143,164,40,174,77,67,240,169,145,22,192,61,91,24,140,225,133,116,186,167,139,234,109,94,174,103,34,251,234,87,253,253,186,118,221,116,195,14,89,68,68,120,9,171,189,132,54,177,103,110,162,187,210,184,28,26,159,20,13,19,236,98,255,66,66,148,66,169,86,235,121,81,14,96,193,44,244,133,214,122,119,116,247,36,54,186,74,238,217,19,111,133,5,74,175,113,126,208,128,151,155,240,82,33,154,38,165,51,76,252,165,97,186,50,86,141,244,218,69,131,114,39,121,78,22,157,238,22,111,97,17,78,137,8,55,225,27,91,35,68,124,227,205,251,43,12,165,115,178,79,223,63,205,94,175,70,205,29,250,76,211,58,111,115,53,110,133,167,220,236,163,70,234,76,189,84,244,129,127,144,57,187,233,246,233,121,135,254,112,154,168,115,40,122,53,189,51,3,142,163,213,96,175,114,211,197,235,217,223,110,71,15,46,79,15,172,138,55,71,73,181,115,3,155,29,219,39,30,231,190,117,141,90,87,111,166,106,90,156,10,231,74,63,
111,185,223,205,229,213,112,235,86,122,23,186,182,22,168,169,129,221,250,53,234,122,178,207,52,110,110,223,219,110,136,10,249,78,175,177,218,222,19,219,86,91,37,213,19,152,185,217,58,67,235,68,219,82,91,108,103,187,217,216,35,162,140,201,84,171,166,198,74,154,163,185,147,229,103,18,27,8,149,150,160,206,24,215,199,102,54,211,43,146,99,141,24,48,206,199,91,39,93,141,228,196,56,45,230,224,225,211,45,18,131,116,195,137,103,24,189,44,76,80,151,82,111,173,14,137,101,203,201,145,212,80,111,4,93,45,59,169,71,26,170,173,50,203,130,100,148,30,19,85,169,24,20,173,120,166,163,166,122,73,110,98,44,13,241,230,194,254,225,173,147,254,37,230,38,87,189,179,168,152,111,177,7,100,193,149,48,105,36,70,167,35,9,170,237,61,29,209,174,50,217,77,58,46,138,23,141,31,116,236,41,177,179,62,223,198,164,96,141,39,63,140,41,91,48,124,83,66,183,139,19,58,37,86,15,49,164,150,4,102,100,203,54,10,234,96,173,139,239,168,95,142,78,145,91,132,
59,53,13,145,250,37,230,192,33,182,111,199,229,155,223,98,13,55,115,15,41,128,13,76,216,72,211,40,99,251,194,38,194,203,84,132,26,59,172,77,113,141,204,186,29,112,238,120,122,214,183,213,236,190,184,159,29,158,107,146,54,89,112,71,56,220,17,25,189,204,63,70,30,249,141,163,227,155,203,186,225,227,225,152,113,157,80,43,234,143,43,186,247,227,72,85,242,56,189,179,185,218,191,238,137,28,56,189,26,151,38,86,175,50,14,76,24,29,93,161,100,202,231,18,55,111,114,235,120,252,133,116,87,123,164,191,119,41,182,215,126,128,34,5,109,225,196,28,18,235,55,240,152,68,210,220,76,123,122,98,52,210,38,78,248,38,201,216,189,234,237,84,181,155,129,196,52,180,204,203,35,222,118,70,179,101,19,169,223,19,30,41,157,198,230,249,212,144,97,36,121,152,220,212,30,109,58,235,81,62,154,13,63,48,159,162,227,250,12,46,2,37,168,108,9,110,141,90,177,168,13,20,38,200,213,247,14,139,82,78,13,94,223,206,23,11,183,220,109,168,105,244,52,69,42,23,
175,133,144,88,211,196,24,107,201,186,226,54,172,55,247,32,102,40,209,100,95,152,142,183,5,106,16,178,168,197,133,235,217,111,88,35,112,102,251,15,149,205,102,106,152,218,44,168,50,239,70,83,116,124,199,97,186,182,210,204,94,90,174,95,94,65,137,71,118,108,94,94,167,30,209,145,80,13,157,236,136,49,14,134,6,51,205,95,55,219,246,116,49,118,74,234,99,248,135,246,15,147,65,49,159,57,80,57,57,78,224,155,26,118,241,4,83,192,39,38,35,230,141,56,44,131,222,182,127,50,148,60,108,101,90,183,204,116,238,196,212,193,230,196,140,75,228,225,201,247,153,44,130,85,100,174,98,163,24,100,124,27,10,101,216,90,24,71,243,183,198,155,98,155,162,131,237,36,34,24,59,78,110,196,99,137,173,61,140,195,33,110,181,245,245,206,132,106,109,139,206,205,161,30,86,122,106,159,19,179,3,134,162,207,177,115,60,185,178,87,29,193,237,243,70,3,56,215,120,183,198,24,31,173,50,14,37,171,246,214,84,170,216,54,63,122,4,26,49,245,192,92,237,40,145,188,
189,45,238,96,78,143,214,198,73,221,44,95,63,97,33,58,195,219,215,250,17,134,42,35,114,171,218,130,58,214,38,82,118,172,216,153,242,110,165,241,194,222,249,230,133,225,238,166,120,115,203,66,85,42,222,237,165,31,50,208,22,100,171,169,77,237,219,196,6,144,141,253,173,141,13,36,59,219,54,138,15,132,132,200,147,216,64,79,95,92,76,107,27,71,249,180,222,213,129,110,6,71,137,116,81,198,154,26,76,78,84,167,167,10,133,171,243,250,67,97,237,184,218,67,107,175,243,226,210,179,27,17,27,98,196,219,169,73,162,76,169,45,181,184,102,96,178,143,135,28,93,196,85,107,85,7,169,14,161,149,208,168,75,212,245,19,119,194,248,122,62,118,36,168,239,156,100,45,146,213,152,225,90,202,104,125,84,154,162,218,140,104,193,138,103,31,189,178,204,38,107,37,88,102,236,80,104,24,68,54,232,247,241,126,12,166,186,163,79,105,217,95,170,89,104,98,235,144,235,125,75,213,173,117,46,219,170,144,48,189,233,142,240,6,84,132,122,181,0,215,137,119,54,225,105,40,
35,46,37,157,181,251,211,125,45,179,35,214,41,130,145,184,212,136,62,114,233,103,90,66,227,12,20,106,202,68,30,89,96,237,77,227,231,188,20,67,37,149,169,101,31,76,40,246,71,104,186,61,167,98,219,222,222,182,75,37,143,147,247,14,226,182,120,239,65,239,204,254,204,42,167,119,142,211,83,173,237,105,149,29,141,14,15,104,131,72,190,45,93,137,0,24,187,188,62,160,247,87,69,106,234,205,179,157,171,115,2,95,48,126,84,119,184,173,60,220,30,87,14,40,212,77,206,21,121,36,220,220,78,57,26,94,113,41,187,134,196,61,202,67,79,63,193,69,156,240,249,151,142,37,238,202,238,122,52,125,210,104,80,82,232,92,134,39,90,19,102,182,53,113,61,177,234,158,221,17,156,74,236,13,209,235,188,241,70,69,98,82,67,183,72,122,5,91,75,221,13,46,165,140,203,144,101,253,205,227,163,45,59,176,142,70,240,173,192,58,106,218,154,20,12,141,140,13,44,145,90,150,39,67,254,24,186,69,103,212,52,240,201,168,168,126,204,98,241,197,83,53,206,237,58,180,
48,101,37,105,132,125,172,40,114,64,134,26,93,12,132,200,147,99,251,24,146,169,135,64,23,244,81,231,249,2,204,238,146,104,174,173,102,74,77,222,24,168,20,12,247,219,171,108,120,198,170,72,82,93,185,46,15,239,206,174,210,52,19,109,8,13,195,167,92,63,24,136,140,175,68,154,247,162,233,38,142,3,137,163,122,102,120,135,91,242,241,100,91,71,138,47,107,53,152,26,155,98,226,16,117,69,21,116,211,5,113,159,7,61,91,223,30,166,78,177,167,149,235,120,46,171,185,153,32,166,204,211,145,252,57,82,163,162,161,182,167,3,101,104,68,161,194,164,133,69,158,203,76,101,15,116,134,240,181,52,192,219,76,118,96,119,195,123,39,83,71,193,181,45,157,46,229,177,115,244,206,73,137,106,179,45,210,126,184,52,67,75,139,58,18,145,89,193,122,122,41,221,138,106,216,90,225,156,44,70,15,229,71,198,150,3,99,123,227,180,121,94,61,172,239,157,94,155,63,118,237,157,164,18,58,211,241,136,16,49,236,112,205,36,166,150,93,199,94,187,154,198,174,244,118,90,
81,38,218,24,25,161,171,23,74,169,122,220,90,75,37,221,213,96,22,82,25,204,182,67,196,240,110,27,133,199,166,54,173,146,112,137,149,137,174,174,208,6,99,137,44,100,45,79,203,230,187,58,121,19,206,245,24,194,212,235,26,245,250,211,199,105,22,211,176,196,214,13,250,15,134,93,139,246,197,197,228,100,96,203,181,130,102,200,15,69,40,153,113,190,209,28,174,242,207,178,54,163,51,168,65,118,117,100,154,194,111,193,242,196,108,90,212,140,198,208,48,236,249,42,218,184,96,213,219,183,29,155,65,214,202,196,45,4,97,75,115,147,28,131,21,3,17,123,27,73,164,150,186,61,205,94,116,149,217,97,10,245,249,19,164,102,215,56,15,169,231,119,245,238,196,76,44,65,227,162,133,210,179,67,118,108,38,24,246,26,36,55,17,175,61,222,64,6,163,141,201,170,93,57,223,106,52,2,222,84,157,190,25,205,233,64,163,107,54,121,230,40,118,147,140,16,250,154,89,70,132,213,232,102,12,57,177,40,214,148,127,198,27,211,43,8,68,60,197,62,173,15,25,241,141,147,
18,20,222,131,210,109,237,14,27,249,235,75,26,194,118,221,209,124,122,171,99,120,28,29,90,63,161,76,134,14,145,222,201,133,142,142,213,166,142,217,249,169,169,249,185,197,41,103,236,164,179,119,109,222,70,59,81,17,246,154,143,215,87,70,147,233,248,201,232,202,177,76,208,185,38,175,220,160,25,15,219,27,153,149,45,53,225,19,245,48,210,95,227,246,35,188,70,227,252,232,246,104,98,124,216,184,208,228,106,160,104,231,210,71,17,254,248,218,190,81,204,28,173,197,153,216,28,44,205,25,67,216,230,27,17,134,73,4,30,139,218,65,79,5,157,41,57,153,160,106,193,182,89,156,158,89,95,245,132,77,39,67,47,154,176,234,246,181,246,181,41,59,17,41,34,30,89,189,201,182,188,253,166,175,225,120,18,140,131,247,26,250,132,238,73,188,124,104,193,214,215,228,159,35,214,19,40,81,94,245,170,58,216,158,172,91,137,250,98,138,69,4,134,35,139,57,183,234,226,198,145,38,148,79,104,171,65,165,18,40,106,229,144,101,130,21,66,48,130,54,175,21,181,49,135,151,
16,14,246,24,66,5,110,189,71,109,48,135,22,108,52,187,97,210,70,25,102,142,54,24,43,45,12,229,36,123,202,136,151,175,204,32,235,248,93,243,7,136,202,58,159,149,185,78,92,66,165,88,6,149,164,114,205,190,18,62,100,114,154,116,56,39,97,120,82,213,39,80,161,117,234,230,96,98,105,211,61,224,48,145,104,38,114,162,187,33,69,233,101,69,245,34,150,104,162,123,67,118,36,38,57,60,251,166,49,92,109,122,118,57,208,176,126,2,104,146,186,183,91,161,234,82,187,209,34,68,7,165,139,125,178,77,169,30,159,29,21,108,218,86,230,211,71,225,205,144,252,100,114,103,84,171,229,164,119,154,166,86,198,79,102,246,99,218,69,91,199,201,118,219,177,106,105,110,66,221,33,231,246,206,217,153,251,115,19,188,86,156,139,48,74,217,31,30,95,23,36,120,182,116,251,73,106,126,210,101,63,233,85,246,208,132,99,99,242,109,65,237,178,139,208,105,183,202,164,38,111,144,220,131,54,204,238,182,204,134,2,202,189,58,167,200,80,207,79,28,80,249,9,229,108,229,
120,189,187,201,211,150,48,96,122,80,142,217,141,30,173,124,42,237,62,1,226,184,244,72,218,177,15,249,93,11,189,228,208,70,178,103,191,169,207,205,104,20,119,241,204,211,131,40,42,53,161,22,35,252,116,39,71,158,50,47,138,40,41,107,93,92,222,219,96,243,45,143,105,142,166,141,213,85,65,67,147,160,193,51,62,62,196,51,123,164,65,85,131,118,88,42,173,25,243,49,237,164,209,170,37,59,135,80,143,242,154,68,30,12,133,224,27,107,14,244,200,34,67,158,166,161,214,74,205,126,180,103,116,15,207,16,44,183,226,85,116,49,107,43,74,108,100,215,7,197,83,20,29,90,202,49,136,250,7,79,216,236,93,39,47,54,17,160,96,198,58,154,68,28,250,164,176,197,70,160,155,16,13,54,171,211,185,142,17,70,151,98,83,181,27,100,23,21,93,139,171,117,239,47,7,170,214,35,188,240,184,186,71,161,233,138,14,245,43,84,206,229,89,145,44,18,9,71,58,182,107,218,91,35,109,169,153,233,229,212,230,33,78,155,74,39,23,5,186,70,109,186,127,51,117,124,
50,151,78,55,138,219,119,142,231,143,39,163,225,100,8,35,218,81,183,246,30,13,201,195,210,86,191,64,34,238,234,147,205,204,31,45,207,184,247,101,237,59,75,211,163,195,150,250,137,227,149,196,152,111,138,202,12,197,60,182,13,67,189,137,72,216,37,240,235,41,141,196,197,234,147,246,101,78,223,0,107,199,111,53,44,72,108,190,70,25,195,164,39,43,90,91,109,242,13,106,157,99,193,149,156,144,31,30,51,34,241,221,248,92,122,47,210,227,20,112,64,3,180,78,28,230,249,69,77,189,105,116,87,203,114,114,86,106,218,246,41,23,244,7,216,54,202,134,167,123,159,136,78,250,183,246,170,92,86,170,114,185,155,47,18,142,201,59,231,90,150,154,221,255,151,169,175,106,114,158,87,214,253,235,14,51,115,50,225,9,51,51,51,51,115,50,97,102,78,206,251,173,125,115,170,100,149,203,229,27,187,91,15,180,37,249,140,158,219,166,254,252,141,109,234,82,198,194,54,33,202,65,68,194,163,39,133,77,190,40,222,15,50,59,24,27,177,164,13,126,85,50,255,164,219,247,
53,163,60,142,118,254,86,112,17,204,175,9,36,86,109,82,130,251,133,229,240,179,50,4,98,104,245,142,98,233,204,97,111,207,9,188,245,195,184,228,240,176,183,93,31,60,181,230,177,14,209,78,50,145,221,185,241,225,84,73,13,130,48,85,153,60,124,7,100,56,130,53,17,203,140,205,205,50,122,51,191,7,163,137,201,40,15,55,116,32,167,186,97,163,25,168,27,19,122,53,42,235,73,17,112,196,227,225,122,187,176,107,103,245,97,253,70,149,147,102,241,113,120,16,104,17,31,213,251,245,165,98,190,151,98,182,197,125,11,143,141,79,229,203,189,53,194,213,59,150,249,202,54,209,33,9,111,252,38,178,73,214,134,13,227,127,30,14,94,19,21,2,85,242,173,123,110,148,120,213,66,44,131,176,157,95,229,29,249,154,205,161,103,89,87,199,16,166,119,213,12,248,146,226,160,209,200,32,225,194,91,170,89,64,206,104,191,217,64,62,129,108,122,16,36,157,141,170,4,7,101,15,117,227,118,212,66,131,160,117,86,210,129,4,255,199,7,207,255,241,1,223,72,244,137,196,
221,99,200,189,195,142,11,129,127,131,7,147,179,31,225,136,91,1,43,43,22,80,77,202,176,213,223,132,253,8,154,43,118,44,176,96,62,47,152,201,252,99,37,184,225,227,199,77,38,227,179,92,21,13,50,47,43,162,167,42,57,232,7,139,144,253,34,255,7,43,232,246,221,196,251,49,205,165,166,127,5,116,22,117,234,246,1,188,115,47,66,209,14,72,239,153,25,21,196,85,135,211,135,45,129,105,247,195,136,200,92,75,229,102,24,195,80,60,244,54,95,33,6,49,4,67,142,33,132,166,159,103,254,199,19,244,241,225,8,254,0,106,118,243,127,24,206,145,31,68,73,138,245,218,238,94,202,224,6,239,26,59,84,170,167,70,243,16,100,208,41,199,5,165,179,95,163,61,116,82,64,203,239,127,185,32,25,198,119,226,170,205,205,12,17,123,110,152,217,223,119,18,155,246,147,174,149,157,85,109,4,186,213,58,213,49,106,178,41,61,42,187,201,98,81,248,227,233,28,62,176,220,104,135,162,253,58,164,22,175,91,225,148,217,181,171,119,164,160,59,72,182,72,162,239,229,
176,173,66,189,5,186,103,171,215,104,172,5,230,201,153,165,98,231,113,41,170,36,54,128,112,175,243,210,189,224,36,202,67,89,192,59,146,164,78,135,40,156,67,244,166,247,107,120,216,196,215,199,115,111,121,24,209,249,198,73,82,11,22,19,179,242,87,126,44,167,106,249,176,210,226,215,16,13,12,41,71,41,8,54,100,131,215,121,227,143,114,134,219,201,183,240,91,40,15,16,141,59,8,238,15,4,66,145,118,76,47,132,123,138,228,99,185,19,187,39,248,191,50,106,44,248,173,254,10,62,125,45,92,142,159,187,7,10,14,237,99,201,164,76,139,239,12,181,73,36,77,53,106,113,83,145,171,206,221,16,228,152,245,194,136,129,31,52,95,157,53,151,223,174,124,170,181,161,103,108,242,104,19,148,177,33,41,67,100,58,204,140,149,134,211,151,236,80,182,235,101,31,76,235,78,111,11,31,116,110,52,255,106,135,42,40,46,86,172,167,241,233,196,254,34,134,39,214,36,163,222,212,6,58,85,230,67,201,208,30,60,217,77,24,9,225,20,61,229,45,124,23,80,23,186,34,
64,159,150,187,31,130,26,150,104,133,25,134,157,214,206,175,132,28,12,227,21,104,110,193,47,153,248,91,222,192,4,105,241,17,111,241,53,162,116,163,171,134,103,168,215,186,210,158,185,33,26,97,185,25,178,239,155,57,112,126,108,62,195,225,1,56,157,254,110,183,254,238,42,144,217,90,189,78,163,57,89,205,202,150,178,13,109,161,218,106,212,16,212,93,232,188,180,195,146,206,42,217,126,155,151,253,150,87,225,247,42,180,247,172,160,209,26,173,116,172,57,64,203,156,170,89,142,202,59,113,42,39,78,85,224,108,234,84,76,209,197,220,167,117,206,189,86,86,224,59,74,215,251,193,98,146,144,156,120,231,242,190,247,148,217,230,249,24,148,244,60,253,43,206,66,92,6,142,117,86,222,71,52,162,183,31,105,112,154,23,165,40,50,125,53,2,194,223,12,12,251,4,97,67,32,148,200,177,251,56,16,184,241,111,52,114,32,206,184,199,112,174,243,255,199,71,242,53,60,33,134,161,101,231,11,215,159,170,160,58,232,226,47,181,171,35,142,44,67,98,226,36,62,95,9,87,
13,23,198,100,12,196,155,243,228,144,32,78,45,154,233,193,81,7,197,190,6,39,231,217,48,141,141,142,66,51,27,7,162,55,205,153,230,107,179,43,129,136,11,251,231,56,2,198,30,88,8,80,135,72,158,214,139,251,57,127,123,70,129,145,8,64,32,102,154,221,204,237,213,75,202,160,58,224,190,42,203,131,68,56,229,203,138,40,24,143,35,63,109,153,179,142,148,191,0,198,134,238,61,83,136,128,90,144,38,107,38,106,136,61,74,98,15,243,204,114,26,153,99,233,171,44,33,48,200,77,219,229,149,247,15,175,114,171,198,187,198,74,182,108,193,172,52,202,125,48,159,3,147,201,98,248,58,157,86,183,190,220,247,20,232,190,42,159,205,164,139,229,161,163,213,214,104,190,94,4,102,189,160,185,192,112,212,74,111,149,254,150,107,111,247,94,227,164,85,222,120,158,188,208,48,44,61,191,235,233,102,82,20,226,101,232,185,118,1,132,205,214,190,200,52,148,154,200,39,192,208,235,184,234,61,146,217,188,104,179,120,93,99,139,109,106,216,210,79,17,30,99,194,234,254,121,
137,239,118,174,212,13,238,63,5,186,230,123,69,174,245,143,2,17,169,55,35,203,249,100,2,38,129,106,86,97,56,42,60,3,4,7,0,185,35,167,80,228,110,126,56,164,254,37,68,111,183,2,71,254,103,240,97,222,255,19,92,149,7,161,197,135,145,116,184,187,16,205,114,177,10,114,6,146,206,35,141,94,116,188,107,60,218,196,126,193,250,0,215,78,194,37,245,124,135,65,243,0,30,9,39,89,108,79,192,218,82,174,251,237,240,5,11,58,36,193,135,114,194,16,175,142,19,15,194,96,58,232,12,147,11,102,0,155,25,232,7,102,205,70,54,35,69,163,227,140,97,153,98,191,95,136,96,92,102,17,157,66,227,32,81,210,100,228,138,149,42,137,4,33,100,30,44,122,106,168,95,175,19,55,214,66,88,108,213,206,212,7,3,80,148,213,127,97,28,216,23,77,82,161,0,243,175,2,228,133,120,138,215,105,254,183,124,152,203,113,72,204,11,146,74,76,104,137,55,135,145,93,234,227,254,225,48,123,30,134,26,193,96,59,146,70,84,82,78,146,240,37,247,106,33,178,
71,16,126,61,94,159,7,31,243,226,225,254,170,123,250,105,185,211,157,206,54,155,201,108,86,181,156,151,28,135,203,213,114,157,50,209,93,103,52,125,114,189,146,146,210,67,2,21,234,247,169,65,56,44,189,35,178,175,243,32,122,160,69,82,66,82,68,95,136,58,111,251,190,183,108,200,189,135,150,215,118,177,170,22,201,223,188,183,80,112,74,84,54,206,82,217,92,168,90,105,254,218,150,198,109,52,163,92,227,98,93,35,98,114,87,150,31,213,237,100,91,113,49,120,87,53,15,57,99,254,62,13,1,149,216,119,234,121,95,116,76,238,59,144,240,127,194,162,53,129,154,84,206,128,175,0,240,67,183,197,70,45,69,247,98,1,99,109,215,107,192,140,232,240,230,79,247,207,56,254,23,50,230,127,34,185,103,64,5,144,49,250,175,28,41,201,16,241,122,0,225,7,10,203,75,73,46,228,50,36,161,61,148,25,210,41,128,53,69,10,85,172,208,93,221,229,149,124,89,10,89,9,135,38,44,70,224,64,138,230,231,11,72,110,152,197,249,64,64,123,247,254,237,18,251,69,
100,123,184,40,69,68,130,53,234,131,220,104,46,144,7,17,97,15,143,145,112,200,163,141,140,98,171,203,244,209,68,197,126,15,9,128,109,150,211,104,144,240,164,90,172,91,69,128,131,205,99,113,243,149,9,215,11,85,207,226,128,185,44,51,29,191,224,221,74,44,0,184,237,198,174,223,162,226,155,142,223,177,175,138,247,180,119,225,168,76,151,141,113,21,193,7,199,178,103,7,17,142,10,81,184,174,110,156,253,51,146,180,141,32,152,80,231,234,105,116,125,30,47,122,103,103,230,253,37,178,243,87,137,164,111,248,240,244,12,199,132,193,12,40,165,209,72,252,14,125,222,15,144,182,234,205,222,233,93,0,170,85,196,248,249,98,169,209,28,173,56,203,205,106,94,180,93,170,151,242,188,165,114,177,163,255,162,145,106,45,208,253,132,68,99,217,57,126,123,22,169,93,35,173,247,164,249,98,175,234,45,52,40,158,114,207,215,43,121,188,35,53,179,72,203,50,1,37,253,185,168,34,56,239,12,197,153,185,7,184,61,203,220,163,57,191,93,155,119,111,110,120,142,158,102,170,
103,13,115,232,34,172,192,71,184,102,243,183,57,1,32,32,194,166,34,228,31,241,35,253,219,149,201,114,183,241,17,189,255,82,45,127,187,223,172,80,11,237,155,119,147,81,52,164,6,113,141,204,212,223,241,162,250,79,237,93,142,180,170,115,10,179,232,110,105,92,202,187,169,124,125,208,255,86,93,254,24,17,69,198,101,100,114,21,58,45,183,108,127,248,253,180,169,5,223,96,245,115,176,4,51,174,214,36,215,154,110,226,38,249,134,214,99,234,45,80,91,215,24,99,244,6,189,119,29,237,241,174,46,76,190,45,18,83,7,2,133,212,238,160,50,19,79,196,150,7,173,227,111,195,50,107,232,189,252,40,46,176,92,203,173,28,61,187,226,214,105,193,112,179,224,227,237,20,77,248,115,182,247,103,205,205,85,21,191,59,75,80,62,215,164,9,174,92,218,170,69,200,93,56,96,200,36,143,44,184,42,4,149,39,49,160,28,4,14,183,158,244,215,59,179,118,248,133,88,174,25,46,251,1,23,227,109,129,143,249,159,132,172,247,60,205,169,1,126,207,66,25,46,91,132,29,
192,53,177,127,127,90,230,17,179,193,205,212,146,147,132,202,129,98,72,174,224,84,135,233,84,239,2,13,90,157,83,21,133,92,206,76,91,220,141,234,54,189,99,136,115,82,185,190,148,160,151,152,181,237,101,162,217,39,217,198,123,136,252,174,175,69,217,134,99,26,59,205,151,65,223,19,103,17,255,168,176,170,72,219,86,152,134,182,70,184,0,234,166,255,179,89,102,184,18,222,80,129,174,253,96,157,27,171,230,114,11,71,237,207,118,75,198,116,37,67,65,95,38,219,59,145,203,184,140,170,152,44,236,17,177,134,65,36,132,15,96,60,145,133,227,250,19,41,119,234,220,103,0,118,198,24,152,159,102,142,244,85,133,0,4,59,225,178,4,240,13,98,42,97,30,172,46,196,238,9,7,218,229,173,83,104,253,110,178,39,196,68,213,62,205,86,162,10,198,102,164,211,255,3,174,167,78,181,244,16,57,248,144,230,184,181,226,46,249,10,73,66,208,103,227,181,243,222,186,190,63,143,29,182,103,176,232,201,122,126,176,91,15,87,243,233,132,186,30,88,98,216,204,50,186,22,
32,162,115,146,252,69,138,0,210,250,60,150,172,113,99,174,192,158,7,215,154,221,214,112,38,79,179,86,58,166,185,170,179,99,173,234,75,53,125,190,85,178,156,228,4,75,35,165,136,94,172,109,149,205,178,172,211,231,181,26,117,175,57,199,139,103,29,170,201,150,117,62,226,58,249,177,31,240,246,242,237,160,186,220,17,3,53,90,110,0,208,24,46,220,146,135,197,247,107,65,207,155,79,253,229,149,240,49,76,77,86,135,143,218,180,56,32,140,251,219,241,238,95,40,15,151,44,144,94,40,50,98,90,230,255,171,192,135,222,238,179,250,22,232,167,228,129,245,133,40,128,127,172,126,131,56,199,183,120,35,129,175,45,235,228,152,165,57,0,143,43,109,86,64,248,152,86,200,97,84,40,3,155,234,14,142,254,221,196,6,62,213,173,106,177,128,190,222,151,246,232,225,91,110,120,17,91,207,54,65,219,16,47,99,176,253,153,109,129,219,56,2,35,226,223,253,29,48,60,233,67,150,141,34,70,233,5,198,252,14,193,217,160,107,105,18,82,235,253,198,157,230,132,218,7,103,
191,28,165,197,182,110,105,65,96,70,4,145,192,28,71,136,251,172,29,23,13,48,65,192,252,39,6,40,29,62,134,71,229,51,120,3,195,85,3,164,127,218,90,124,136,239,158,17,74,187,145,232,103,103,146,152,97,188,252,245,85,220,87,25,171,244,73,197,34,250,189,33,114,205,217,143,109,174,155,98,237,170,80,185,150,181,23,209,98,65,130,195,201,240,43,136,226,235,153,245,244,73,192,253,231,228,93,122,182,149,143,37,7,6,217,37,71,6,27,214,197,53,246,128,71,143,62,161,76,17,219,254,23,237,39,221,14,42,253,222,151,139,250,134,4,12,220,89,248,110,117,245,164,249,154,13,57,154,10,55,207,255,113,137,130,199,124,87,138,191,237,203,73,221,19,231,34,80,10,2,65,17,20,234,14,126,249,175,248,64,49,145,92,32,126,168,184,32,130,108,23,48,204,63,245,66,170,214,237,159,193,202,92,243,22,204,82,222,69,64,31,140,173,198,186,83,186,239,240,104,7,1,200,5,170,76,173,233,129,202,96,108,201,18,38,113,196,189,185,106,234,132,232,96,90,67,
68,163,103,184,253,242,142,153,188,158,194,187,87,237,53,186,121,73,119,11,151,11,125,177,26,161,39,222,110,35,32,41,204,137,203,0,200,208,178,134,243,74,146,181,114,99,94,168,131,190,108,182,234,228,108,169,176,25,218,227,27,61,224,157,197,44,252,251,79,131,36,231,27,246,247,60,136,142,63,77,216,151,183,104,100,15,176,77,77,89,1,193,143,245,22,229,130,221,79,189,219,235,100,30,183,58,63,122,83,99,176,115,182,3,118,46,226,227,255,241,113,81,164,59,172,191,27,245,211,1,144,138,31,43,196,4,191,65,164,247,252,194,165,80,63,176,157,169,65,89,24,81,70,63,237,133,204,251,137,218,95,71,215,222,151,99,161,38,198,143,29,237,77,200,192,254,159,132,255,133,211,226,236,128,106,209,204,250,174,234,251,62,110,56,57,204,94,22,171,23,218,222,131,33,122,127,74,102,48,132,121,40,251,163,102,188,193,182,111,135,16,72,133,127,52,206,7,51,54,68,14,5,89,79,79,31,107,163,66,196,185,115,0,130,155,80,1,168,127,218,127,153,176,76,99,145,
210,100,23,28,144,18,254,18,48,202,211,126,249,10,90,135,91,103,90,28,235,39,239,211,75,124,163,168,32,62,48,25,173,44,150,140,254,29,28,144,8,50,29,225,126,19,141,20,4,15,33,228,67,67,71,235,205,193,100,123,188,73,46,78,92,38,58,204,147,200,109,7,2,255,220,20,59,163,92,152,38,38,118,146,254,26,61,13,100,55,34,234,166,25,243,48,134,140,207,99,13,54,254,249,97,233,220,185,211,200,112,121,183,132,231,9,140,55,5,29,233,46,244,194,160,53,88,18,122,54,194,110,8,83,80,27,80,75,94,51,234,17,75,30,146,153,187,63,129,65,216,12,169,70,138,179,131,36,183,19,151,113,46,1,37,48,153,111,58,38,199,64,229,97,196,138,133,119,2,95,126,119,71,91,95,234,159,139,93,120,239,95,197,179,127,254,148,92,195,204,63,220,175,147,254,246,93,17,64,180,129,241,248,218,21,109,38,65,253,32,48,175,221,80,142,152,48,104,120,245,99,179,72,214,8,99,115,171,91,229,191,30,202,243,103,183,63,97,109,169,64,91,184,232,250,103,
43,195,161,178,197,171,43,130,193,59,181,145,63,201,173,141,29,138,213,85,41,200,10,203,234,252,11,74,93,215,115,204,17,158,121,152,77,43,1,231,206,93,175,23,171,197,234,51,91,202,22,91,245,44,54,87,89,78,182,11,139,208,120,58,92,200,27,14,46,235,120,80,18,116,13,30,40,231,8,179,185,166,153,183,148,32,42,119,253,177,68,173,108,173,117,193,202,210,161,80,45,15,196,12,144,194,153,100,223,115,139,16,43,37,248,225,238,219,176,45,131,73,70,209,122,119,135,219,205,107,123,190,180,117,103,105,204,218,48,236,102,54,238,13,114,229,213,89,50,222,49,136,124,120,207,243,76,231,54,137,203,18,152,221,68,11,134,110,196,96,71,192,176,161,126,229,157,246,95,149,71,165,206,245,66,185,33,192,39,227,203,32,134,61,50,84,231,129,118,126,184,1,223,176,122,69,181,161,169,164,208,192,161,86,168,228,29,255,171,124,89,63,221,166,220,247,219,203,67,157,80,120,254,56,124,250,66,28,33,42,179,27,148,47,80,247,119,203,214,248,222,221,146,113,121,191,
193,137,38,217,78,149,133,74,122,61,182,113,120,97,218,192,72,160,62,64,232,99,132,17,33,39,6,24,150,76,152,123,83,152,204,234,127,35,222,207,37,181,49,218,3,77,77,210,191,4,102,36,133,116,228,93,248,22,24,187,135,6,191,163,86,177,152,51,140,197,80,235,153,125,134,153,19,128,111,49,83,142,98,241,141,3,144,55,142,79,110,19,214,246,35,104,32,196,37,87,1,73,233,143,177,234,193,47,81,239,42,141,119,139,65,196,25,220,193,215,78,192,66,184,89,55,117,177,148,38,89,54,182,231,119,100,205,88,28,123,187,243,227,179,196,189,147,207,183,95,196,223,122,171,47,143,152,46,222,13,114,135,65,138,3,136,248,250,33,185,33,197,238,89,67,138,108,191,239,227,208,138,50,152,114,17,108,213,178,228,6,211,177,217,77,228,18,148,214,205,74,231,163,40,110,175,236,158,212,135,148,210,168,58,70,252,172,53,127,248,148,30,147,109,92,97,221,127,69,79,165,118,85,31,228,234,80,189,127,124,9,18,195,107,241,145,63,143,86,164,70,33,168,214,140,179,
205,190,63,100,235,216,229,134,116,209,136,98,77,107,7,131,39,172,0,32,136,250,23,79,6,37,251,4,189,204,76,227,88,143,163,227,167,212,166,121,23,124,32,156,99,169,40,27,208,155,166,184,144,18,114,254,93,121,155,120,38,222,173,178,94,41,11,237,241,252,188,193,58,57,251,42,171,91,103,225,106,86,116,74,135,199,148,81,231,211,121,90,103,66,78,124,52,20,43,201,116,90,69,42,15,222,131,199,80,2,36,140,176,231,83,181,206,166,108,187,152,215,101,115,141,97,171,208,19,22,75,117,209,90,58,241,167,115,20,239,4,160,216,48,241,49,65,115,35,31,226,227,81,244,210,15,127,133,78,165,125,93,99,37,134,69,49,111,168,22,254,172,24,128,57,239,176,10,75,103,155,219,238,204,80,150,44,171,22,117,170,181,152,145,139,195,65,224,21,211,132,96,130,150,101,145,163,41,20,153,34,160,203,160,0,214,239,200,67,127,33,167,243,13,247,173,122,26,99,232,117,232,149,108,94,13,213,43,89,81,40,140,252,132,36,68,4,80,129,134,88,16,50,215,108,130,
250,93,220,9,235,30,121,84,138,106,238,201,140,150,204,173,57,113,115,227,24,111,61,77,17,128,129,16,39,208,46,111,99,216,201,69,36,40,96,244,76,17,128,249,92,238,200,184,196,157,41,5,119,14,235,189,90,114,78,11,26,226,77,40,98,182,145,233,228,26,193,184,142,56,248,242,47,56,168,99,187,67,37,31,2,76,177,67,122,158,191,120,122,29,241,119,252,16,18,18,77,197,8,84,87,124,118,19,150,93,128,97,201,117,3,125,254,94,36,188,232,222,219,68,243,82,36,17,75,218,143,245,112,165,162,62,180,221,156,16,32,72,21,0,184,247,146,190,54,140,67,183,61,219,8,61,198,40,112,110,13,206,203,48,242,177,205,111,15,173,197,151,239,78,4,97,12,250,202,10,170,120,211,192,232,209,230,223,184,124,123,219,190,107,223,45,128,61,182,16,105,195,249,13,191,54,221,139,51,58,161,201,99,168,186,126,16,125,22,83,104,74,71,69,76,182,203,78,245,28,43,152,80,200,164,48,0,140,49,168,100,62,74,94,232,163,11,105,140,45,228,120,18,8,4,162,
29,188,255,148,98,206,229,31,134,181,147,13,212,37,86,141,184,104,97,219,238,84,48,0,166,8,228,78,213,40,150,49,188,202,191,82,57,27,10,26,70,185,69,6,142,9,44,251,181,54,228,23,126,11,160,68,135,179,18,31,106,11,179,135,228,113,189,156,19,139,115,242,238,130,196,53,205,152,24,104,210,38,81,14,69,174,73,48,1,207,61,91,244,43,69,235,218,161,102,195,143,122,205,205,178,86,187,227,178,117,76,77,26,223,136,133,229,144,40,88,223,59,42,49,39,21,10,62,16,200,203,227,101,179,159,55,166,144,47,86,26,141,230,122,5,169,131,4,19,125,94,38,243,207,30,42,87,235,233,106,158,215,179,179,6,71,59,211,34,53,11,141,223,90,168,78,159,181,197,195,205,116,252,33,228,133,253,78,73,138,103,33,40,69,116,58,201,62,158,212,40,180,162,19,155,119,133,169,29,254,122,172,47,185,229,164,84,93,188,107,117,199,90,158,154,11,4,176,192,26,61,31,135,30,156,138,242,158,84,158,176,142,167,85,80,244,224,44,164,83,60,199,9,226,90,79,
162,172,72,246,35,125,170,24,8,64,195,249,0,27,131,144,99,171,48,106,224,37,110,247,128,9,6,119,211,134,17,42,177,32,206,70,57,195,72,34,122,15,14,128,35,106,106,28,221,145,234,54,165,136,96,249,191,25,23,186,183,27,68,217,6,156,113,75,117,69,34,113,2,186,196,58,46,242,120,47,50,106,63,8,82,91,101,207,192,181,25,2,80,151,147,67,7,37,99,225,116,108,99,187,84,51,192,68,71,71,84,165,35,50,194,96,157,165,227,231,123,249,7,165,93,35,164,14,249,6,203,117,200,122,60,4,205,192,181,204,173,28,37,191,159,136,52,247,61,132,13,178,46,220,67,173,117,199,73,235,252,38,184,204,124,27,226,237,37,184,194,98,148,36,184,153,18,34,20,4,201,234,195,1,152,112,130,52,140,147,105,251,8,9,154,24,124,82,228,231,201,218,196,244,22,139,25,140,164,80,16,163,21,177,152,69,33,228,145,125,0,96,91,116,180,4,153,83,142,100,38,7,235,83,2,105,136,85,108,204,171,40,115,166,191,163,219,96,180,105,217,120,21,8,40,17,
242,240,86,48,185,223,122,5,29,10,183,245,173,145,33,24,212,102,125,36,23,225,24,123,21,179,75,22,5,159,37,211,31,55,98,6,138,36,108,12,190,144,42,248,211,171,241,193,215,79,79,222,250,9,119,111,229,98,84,115,156,168,24,230,36,252,110,39,187,135,250,54,227,199,203,96,138,197,141,165,50,218,14,50,213,116,159,15,86,3,207,121,62,190,91,222,194,249,252,30,254,65,15,15,22,2,67,75,156,20,39,143,155,6,46,234,175,196,28,57,90,8,164,188,79,146,13,8,17,79,147,26,82,67,16,89,3,196,121,221,105,139,199,46,114,209,71,94,96,184,75,62,96,57,88,9,112,201,30,239,104,93,235,119,33,48,244,67,188,171,189,252,77,77,151,214,220,168,149,240,150,98,222,148,136,234,125,89,3,203,225,126,116,91,236,129,191,215,229,239,52,252,243,207,254,110,187,221,77,16,254,222,4,132,156,243,196,190,92,206,75,16,198,67,46,99,163,230,147,145,203,57,65,226,8,107,119,244,73,217,132,6,143,67,201,247,58,127,69,127,161,49,97,30,147,58,
15,161,231,190,227,207,181,8,66,195,210,228,169,214,218,133,42,57,223,108,214,138,65,206,153,133,61,75,58,56,137,3,162,25,191,51,146,119,50,35,241,224,36,35,120,141,77,43,92,90,7,190,165,100,116,122,106,22,99,164,108,44,20,28,46,65,178,197,226,218,154,214,75,139,192,141,241,0,213,207,244,36,209,117,137,142,183,207,236,188,77,69,126,139,202,117,141,111,156,105,103,192,133,31,136,195,167,143,189,29,64,202,87,130,47,147,133,22,74,168,68,146,41,16,196,33,145,126,65,25,64,255,6,106,2,117,32,63,166,142,183,113,91,239,42,248,95,1,196,126,95,182,118,160,38,99,255,226,98,62,33,178,239,134,97,145,216,117,52,128,103,140,21,36,250,20,141,214,27,254,8,33,179,65,5,46,132,245,199,4,161,156,159,197,158,247,19,166,89,159,194,212,216,45,76,58,160,121,79,130,248,208,189,151,26,130,75,152,36,252,160,183,98,177,153,31,109,112,40,118,169,203,55,85,29,38,53,92,217,128,123,193,92,110,237,207,207,210,253,248,21,7,246,95,88,168,
90,70,198,160,45,111,28,132,226,50,145,138,116,220,254,129,239,244,182,44,131,223,35,232,120,97,12,195,113,159,15,134,168,85,87,63,3,96,53,191,77,55,220,213,212,197,101,219,164,26,64,50,24,210,13,95,80,179,33,12,198,106,251,67,130,143,119,180,236,236,236,151,76,37,169,31,225,233,233,31,195,187,226,6,24,49,114,246,65,68,131,68,255,205,16,72,195,106,57,88,150,160,120,23,197,251,100,188,239,5,169,157,12,70,93,103,189,148,63,152,174,39,179,95,65,152,210,153,218,11,163,121,185,202,253,24,105,184,23,226,21,163,243,123,0,20,2,30,198,238,65,41,221,152,172,186,131,12,102,128,244,0,106,63,242,105,3,53,151,228,21,33,214,91,178,95,226,154,229,200,64,124,207,0,139,252,25,19,107,104,143,35,77,47,41,179,100,208,206,180,242,215,78,6,221,90,103,5,52,226,55,15,155,83,148,130,181,189,220,149,131,66,185,1,158,219,22,154,134,114,148,32,59,60,245,118,157,137,158,217,62,70,109,30,238,7,211,177,88,223,25,123,191,201,234,90,
9,199,156,6,159,77,95,9,201,244,25,139,101,61,225,48,108,231,29,29,229,106,175,105,141,96,80,233,100,210,167,222,55,157,9,166,24,125,207,158,95,2,230,253,233,12,17,52,31,78,98,171,208,209,8,186,35,239,145,225,5,89,173,195,207,65,161,85,218,69,39,234,168,210,144,217,177,53,60,254,108,189,48,217,78,79,107,217,228,36,57,203,118,138,173,66,47,149,232,237,162,111,163,69,214,149,59,31,119,142,192,157,185,175,26,100,69,179,120,240,237,121,143,95,59,70,15,242,172,21,220,134,110,207,56,12,52,76,47,172,13,18,129,155,221,250,57,25,10,44,183,17,57,100,206,144,107,192,14,132,207,115,133,131,51,86,124,49,203,228,19,71,22,96,202,63,159,93,14,77,218,29,96,137,219,58,232,120,163,81,1,32,112,2,193,242,87,103,35,73,225,117,68,135,138,218,149,135,204,44,62,229,127,31,79,79,41,144,164,67,86,142,12,249,192,153,9,240,9,194,112,176,254,249,169,214,240,249,108,104,147,106,230,138,2,211,67,236,120,48,153,29,220,27,215,12,
122,150,129,108,104,12,12,20,128,127,158,183,129,184,162,127,90,111,201,234,200,219,152,215,238,254,216,255,111,195,40,244,47,64,114,241,144,146,161,81,95,132,217,104,127,12,227,104,204,181,235,234,142,12,15,106,228,104,169,246,219,234,159,223,250,19,198,161,68,80,176,250,7,77,154,149,191,36,121,26,169,204,172,251,2,208,0,142,198,121,3,106,160,77,231,20,190,178,248,81,150,153,139,112,29,114,147,134,70,68,107,170,88,66,64,2,220,152,176,22,112,221,192,209,149,61,236,73,221,179,120,41,134,93,48,249,180,101,197,122,222,63,99,230,120,121,250,99,85,55,10,86,238,192,167,190,77,162,200,117,26,17,67,4,108,72,200,129,166,187,11,149,210,108,165,131,46,92,224,165,2,213,165,194,219,19,152,42,115,232,230,226,184,148,236,62,157,119,171,177,187,128,214,190,119,113,47,149,126,9,173,60,96,229,2,255,10,13,137,204,193,27,235,206,191,135,222,50,43,32,71,246,251,219,135,189,8,229,118,112,148,93,120,204,60,154,253,162,211,184,154,39,41,231,147,179,
135,58,157,109,28,208,143,40,120,117,170,219,28,98,107,239,118,255,105,111,104,19,144,95,152,252,65,167,165,175,36,72,157,86,15,132,255,88,206,215,84,121,143,183,223,83,26,176,51,95,40,34,105,21,16,124,29,83,16,49,224,114,166,223,118,155,213,97,53,161,202,62,103,197,163,95,204,103,188,89,237,106,179,124,174,86,235,130,195,105,209,91,236,86,147,221,106,53,56,173,243,122,221,225,126,225,31,239,102,16,232,242,133,32,109,224,147,77,227,37,103,243,249,10,97,24,216,15,23,199,127,188,18,150,75,156,179,249,110,1,231,216,113,188,28,221,137,161,76,34,51,158,2,254,240,57,82,72,133,96,246,66,205,214,174,53,151,24,249,118,165,218,44,213,201,165,92,171,213,232,148,7,245,189,94,56,121,165,247,191,208,187,17,155,160,125,4,13,141,223,84,122,3,150,26,35,224,55,136,8,42,246,82,209,227,46,188,221,153,134,63,87,243,218,75,29,127,189,173,115,55,44,11,251,95,242,19,138,29,175,95,64,138,94,211,159,59,195,93,60,41,232,74,2,64,69,
117,156,237,13,60,238,218,35,94,38,134,202,167,78,11,232,1,228,54,71,22,216,93,232,193,84,71,207,13,21,101,201,73,215,141,222,118,93,175,238,127,248,73,188,155,212,136,211,61,90,22,8,250,61,251,33,78,252,105,58,210,187,215,96,184,83,182,180,39,141,30,114,233,10,210,233,77,76,42,200,207,164,78,108,83,23,162,252,147,29,106,18,47,60,185,238,251,192,38,143,0,107,253,55,255,82,125,220,5,251,47,191,2,7,66,164,134,183,71,187,185,133,92,207,97,237,238,25,232,204,219,35,40,83,31,247,11,244,46,4,210,234,47,172,76,2,191,27,6,22,24,102,185,188,58,232,55,97,255,57,241,105,245,139,205,246,84,21,170,96,54,197,5,136,59,48,69,14,18,66,54,141,76,98,251,48,62,189,63,36,205,42,111,247,115,101,57,156,195,102,153,121,149,112,80,219,71,174,222,238,157,139,134,94,189,225,211,82,206,220,63,58,14,2,38,233,57,250,94,126,144,243,63,183,14,136,193,119,229,127,74,91,215,3,54,37,203,212,30,16,38,98,148,48,117,17,
190,199,170,151,137,146,237,33,175,157,10,63,73,117,171,233,214,216,143,91,104,185,10,155,255,152,154,146,158,70,103,32,90,96,154,169,239,84,79,52,50,151,6,125,241,3,192,0,238,209,0,76,59,254,182,31,215,169,161,118,139,74,37,181,76,61,32,113,59,159,199,33,148,94,37,222,61,105,198,117,218,183,17,106,215,56,162,165,64,108,5,255,96,10,144,218,201,73,49,37,6,50,126,69,144,59,243,192,171,125,78,18,25,10,20,153,238,143,88,57,16,54,168,193,200,110,14,50,128,236,195,248,86,246,219,204,218,10,255,4,198,119,102,254,248,133,6,133,198,106,253,26,148,70,169,219,44,202,131,203,96,165,78,173,241,200,255,245,74,249,226,180,154,229,255,101,226,229,194,68,32,158,8,132,243,141,64,96,67,239,71,224,219,181,126,180,82,111,246,254,216,188,113,6,113,50,146,175,42,150,10,196,116,222,107,215,138,249,183,131,111,53,202,157,175,82,228,59,151,177,147,67,171,20,149,220,188,59,241,30,134,14,4,243,213,74,177,215,175,182,10,229,194,193,192,184,
141,92,185,237,71,209,250,236,150,13,89,79,117,240,126,155,173,131,215,139,58,133,74,247,88,39,19,47,228,66,251,221,114,222,250,213,174,68,226,149,155,235,89,169,53,88,192,16,28,118,234,30,183,247,16,134,130,73,101,103,42,117,63,155,154,18,83,124,237,246,33,167,58,237,223,86,69,187,191,175,61,45,143,157,183,227,70,152,40,97,43,74,57,69,186,220,220,55,56,12,64,155,103,36,184,250,203,111,238,40,103,19,49,230,127,73,221,35,247,41,90,79,53,71,73,204,143,205,235,80,105,64,220,55,238,37,122,3,45,11,146,57,17,165,83,9,212,218,64,161,183,143,139,234,168,219,63,9,30,31,212,43,94,16,235,152,44,176,239,253,187,254,116,25,125,75,236,168,27,165,88,93,83,201,13,9,175,9,131,11,98,149,161,7,143,160,21,65,31,236,125,174,119,170,157,231,194,251,118,111,108,131,179,104,15,9,83,10,48,232,178,149,98,167,139,16,10,23,175,140,2,132,157,199,93,128,147,38,49,60,127,167,205,14,94,180,246,22,36,119,168,246,117,6,20,11,
192,59,28,155,107,26,226,201,10,8,179,138,229,194,26,104,211,154,51,87,127,153,145,227,244,156,154,73,162,28,251,127,143,197,225,110,75,92,174,190,160,91,241,206,149,141,180,177,110,223,38,248,19,155,47,114,27,34,117,214,51,216,23,137,73,249,0,40,204,195,163,193,2,34,9,45,13,123,243,202,180,201,201,34,201,68,201,235,202,18,9,21,157,46,169,18,27,255,99,249,254,229,120,180,69,93,50,193,53,44,21,36,0,179,135,8,42,206,48,137,142,160,72,82,217,238,31,7,60,49,16,180,141,58,152,208,52,95,87,108,61,11,37,15,34,148,196,28,159,192,218,182,187,207,51,20,57,72,177,188,6,173,37,100,90,125,7,154,11,171,132,63,246,100,102,79,181,171,131,2,47,160,7,191,167,225,62,61,251,99,53,209,185,58,79,248,208,102,0,254,129,156,234,69,174,126,47,63,160,115,107,47,116,207,167,167,137,98,154,221,169,67,249,82,175,7,180,43,141,86,161,218,184,85,219,213,135,227,215,253,181,155,69,191,106,165,250,43,146,26,149,90,167,244,43,252,
7,119,150,72,61,167,88,110,151,108,238,60,204,229,46,120,44,51,126,122,90,34,30,205,167,11,201,126,226,44,29,110,229,206,93,211,30,244,195,69,24,45,170,181,102,170,181,85,99,88,43,52,107,149,75,179,148,105,22,115,181,236,175,23,70,114,206,2,63,95,85,43,39,115,173,106,174,82,203,140,183,242,33,255,212,15,251,247,180,118,221,162,125,110,213,251,123,211,190,74,174,100,206,183,85,98,122,53,250,11,63,83,220,234,141,150,121,158,47,187,11,120,64,94,98,150,43,153,197,146,158,139,57,53,170,35,226,249,231,226,249,116,63,4,89,242,48,101,92,123,126,198,116,6,85,100,156,153,66,85,96,136,209,57,6,249,38,163,157,73,63,207,243,113,169,105,238,159,143,181,151,119,194,253,58,14,142,127,62,13,185,137,212,74,131,155,239,85,255,249,219,7,198,152,68,234,7,133,132,244,44,6,65,253,65,158,244,224,75,161,19,16,64,252,139,100,128,10,108,82,165,69,114,115,43,50,55,234,32,244,66,187,213,29,22,113,253,24,235,91,113,0,57,255,151,165,
126,118,80,6,186,203,48,230,149,201,222,36,25,9,49,166,44,239,164,183,241,34,243,69,157,26,57,96,239,148,217,62,177,93,80,103,184,126,110,101,35,182,110,31,112,183,19,183,207,16,127,159,12,110,60,146,91,68,25,57,63,13,255,163,5,10,48,91,95,4,224,123,23,197,157,208,249,90,43,91,31,132,15,34,189,180,2,229,205,59,89,188,239,158,71,58,212,38,12,205,246,243,30,192,52,221,99,35,11,113,224,197,106,142,127,96,35,156,26,212,158,54,167,199,13,107,175,18,30,213,230,250,100,8,105,195,61,235,172,36,2,55,70,217,249,23,131,120,209,130,108,160,240,51,101,55,81,178,245,240,247,81,46,239,178,173,10,135,101,32,141,196,81,57,19,240,11,235,96,98,248,15,164,51,245,89,226,105,237,149,60,147,169,241,176,209,62,16,163,85,112,158,154,219,3,43,21,194,52,101,78,75,8,68,46,173,106,87,226,172,52,69,148,95,0,198,131,246,192,247,30,254,113,239,53,19,156,8,25,150,36,48,36,125,162,72,212,20,119,244,40,74,162,29,117,80,
152,53,136,77,216,244,145,153,47,202,112,87,148,72,217,214,219,208,137,215,118,239,235,108,18,177,27,205,6,217,118,177,29,174,183,171,213,74,163,197,40,53,106,149,90,167,56,232,158,237,230,199,97,238,25,205,110,167,155,156,191,231,235,181,94,177,92,190,118,155,197,249,108,182,78,204,127,216,43,30,103,254,203,229,44,216,220,213,143,105,93,195,157,109,39,206,138,243,60,91,58,107,90,8,78,71,119,74,172,252,87,232,249,247,114,20,162,175,199,97,20,75,148,98,157,197,41,182,68,123,93,95,75,162,90,175,213,28,165,190,122,182,86,44,22,10,181,82,123,107,149,145,161,159,74,123,203,239,183,158,240,84,122,26,115,91,77,202,231,209,201,69,94,234,39,178,101,167,188,76,226,2,32,74,40,92,218,167,244,88,204,179,206,198,119,19,197,53,6,239,76,229,92,178,153,216,105,41,41,123,152,214,106,181,228,143,96,119,60,115,46,204,58,255,185,210,28,218,183,143,20,185,219,173,159,16,143,179,178,221,46,91,12,151,59,101,91,175,239,164,208,173,128,164,247,182,
180,156,140,2,220,66,245,218,176,9,80,255,206,35,71,120,228,4,86,104,60,211,101,152,67,213,105,194,76,1,202,44,183,234,48,236,199,157,172,51,236,127,187,52,32,213,87,211,46,24,184,74,32,239,112,181,159,121,121,174,219,209,38,92,23,90,223,6,125,89,132,75,207,119,132,23,158,58,79,111,208,33,59,156,136,8,242,166,184,101,90,153,82,174,172,128,187,126,119,178,5,154,72,114,201,134,79,210,183,60,59,58,182,151,31,209,96,149,227,116,47,23,184,6,33,155,116,36,33,26,102,189,126,238,50,215,95,243,54,49,196,220,132,187,165,246,230,236,204,150,251,104,223,224,120,127,45,44,235,181,68,26,136,160,185,222,72,142,4,30,32,49,4,74,186,56,222,86,11,14,75,101,173,38,67,219,247,31,159,187,205,171,236,174,156,63,182,216,244,231,159,20,194,68,145,149,167,31,65,118,99,159,57,40,197,33,178,144,116,38,2,208,245,241,47,26,166,79,239,163,217,194,137,72,32,230,82,48,116,34,99,93,192,141,127,24,235,33,51,6,43,75,80,13,197,46,
134,142,62,148,78,94,150,251,1,20,99,199,84,202,207,43,7,30,45,67,225,92,238,17,30,159,202,116,74,34,20,8,212,28,41,28,53,232,8,66,222,81,0,190,49,91,48,47,58,157,178,31,33,197,206,4,115,28,59,233,150,138,13,18,190,13,204,35,35,40,214,90,126,120,165,100,52,13,68,108,34,240,238,254,233,59,29,88,254,21,170,149,34,187,251,231,157,207,95,28,191,34,251,215,44,117,27,189,78,233,211,33,4,229,5,53,75,252,202,194,189,223,81,65,43,52,219,229,194,179,109,231,182,171,213,5,3,243,93,7,1,21,26,121,241,89,101,176,86,23,156,20,211,197,78,182,22,41,231,136,157,60,107,42,112,252,199,41,246,10,93,38,195,87,166,82,232,84,134,220,181,158,175,53,106,42,221,190,96,169,153,107,244,242,154,250,13,46,66,251,24,1,157,227,39,3,17,126,56,193,7,72,99,126,239,77,123,223,44,218,155,135,175,85,202,125,134,83,210,94,179,140,212,156,229,92,222,252,153,181,154,172,67,146,183,10,139,6,254,208,247,190,94,87,222,161,
76,168,246,66,110,233,175,173,19,125,210,232,16,219,96,79,137,248,62,222,174,205,119,243,89,219,182,95,253,243,179,228,44,108,58,31,191,192,219,109,193,212,31,193,70,32,253,21,124,144,226,170,141,84,166,46,108,107,4,60,61,8,156,211,160,195,228,182,82,97,189,10,126,49,90,159,28,205,217,199,6,51,157,230,193,3,0,102,173,123,156,187,152,250,228,20,163,24,125,68,116,51,115,168,99,38,188,249,111,76,182,202,187,177,238,72,206,168,91,219,127,20,238,237,7,244,66,216,28,66,19,164,223,6,202,54,36,146,8,37,216,101,229,105,2,230,2,147,168,113,4,28,102,33,128,181,95,94,227,119,128,111,161,221,187,218,109,177,64,24,99,217,47,223,109,150,73,12,247,63,136,54,173,187,105,51,25,236,229,122,126,97,9,4,102,186,234,145,138,107,36,219,101,150,122,53,8,238,18,70,106,177,118,100,56,103,185,64,133,90,247,236,186,135,52,49,72,81,10,78,210,48,164,216,187,201,12,26,74,253,65,34,92,221,151,26,224,72,40,161,11,13,36,116,71,191,
7,34,215,196,81,105,202,244,118,89,72,95,162,145,237,55,14,117,209,196,138,55,193,5,76,35,72,186,225,241,188,173,23,131,37,27,92,49,69,129,95,22,151,73,9,140,126,22,202,102,38,172,245,131,45,34,124,80,163,143,26,5,72,130,54,209,205,72,51,105,26,214,15,55,13,109,35,246,150,89,88,71,140,114,245,8,173,247,90,194,73,22,225,16,163,105,93,97,133,208,170,90,231,218,252,227,249,1,20,36,12,96,200,147,48,60,120,70,205,54,82,168,16,58,50,242,123,146,114,64,43,249,96,92,178,85,227,138,215,50,173,0,222,25,186,109,215,235,210,148,16,153,70,248,232,148,143,70,21,208,132,12,101,50,41,216,92,228,26,245,66,173,177,175,215,139,178,205,198,222,225,184,158,206,227,227,117,101,133,160,81,92,176,63,156,226,118,43,212,16,250,141,111,159,187,107,202,255,154,142,248,94,173,203,35,83,154,36,109,4,40,4,188,19,203,181,1,138,228,113,51,52,167,181,9,120,195,4,131,194,39,27,31,5,50,22,80,16,235,14,22,107,37,136,44,0,
158,1,164,40,52,222,74,187,74,162,80,73,76,147,203,161,8,29,12,55,98,207,171,132,223,165,185,159,8,137,115,246,110,69,10,191,219,80,34,28,171,172,254,106,226,252,96,157,182,191,182,141,131,147,80,106,176,177,112,236,238,163,103,7,188,100,70,25,237,174,244,143,237,190,129,157,255,152,150,190,79,210,55,214,65,191,178,128,248,85,98,122,3,76,65,185,196,216,122,108,34,124,191,76,135,234,194,219,50,220,26,146,179,85,31,151,27,149,103,238,36,32,182,116,214,222,15,154,123,112,91,123,123,189,242,201,198,139,21,122,11,127,220,109,114,245,35,251,12,218,115,51,6,37,64,155,197,80,45,148,241,219,187,240,219,249,31,70,27,2,59,0,24,120,58,171,84,126,53,3,99,152,202,217,121,224,178,65,174,45,118,58,150,249,56,245,215,173,103,252,37,118,121,45,203,237,207,252,133,229,131,221,57,234,206,32,108,206,254,93,235,6,131,251,198,202,52,213,202,142,56,214,47,197,33,57,23,6,32,136,55,75,15,149,198,157,94,35,38,69,231,196,220,75,102,18,
81,196,10,129,51,72,165,95,53,171,182,95,107,46,171,25,217,160,178,31,10,44,95,143,57,126,141,118,68,193,229,124,75,6,114,235,142,201,241,249,176,1,216,120,116,83,206,34,116,145,116,87,146,195,185,11,136,18,32,17,227,29,67,239,24,194,74,227,59,177,106,250,167,215,104,24,49,160,15,190,183,224,194,245,195,45,40,58,53,205,225,30,118,89,42,64,53,76,59,217,226,93,5,110,31,86,219,19,34,209,170,49,42,179,41,34,42,235,235,89,133,75,218,5,142,132,91,22,164,229,61,116,133,95,195,211,245,20,116,114,224,15,109,76,107,252,176,40,20,141,252,249,3,129,103,68,159,108,226,150,157,62,143,21,27,84,14,56,228,199,0,178,157,75,240,179,219,104,53,219,252,238,203,224,99,7,17,189,54,140,46,163,69,71,182,93,44,22,91,173,2,170,210,190,74,133,66,57,211,168,180,42,185,66,254,81,234,148,10,181,86,245,85,68,252,66,73,35,207,41,52,151,43,193,8,127,226,66,60,255,218,58,245,239,248,175,141,59,26,72,39,3,192,253,159,247,
123,27,195,229,83,129,122,83,184,213,134,124,59,161,214,238,152,152,202,80,100,230,44,201,156,247,227,181,166,242,192,55,101,218,108,116,51,18,23,110,181,233,76,181,17,116,122,154,51,141,175,74,2,113,60,95,133,194,99,145,245,36,141,184,237,209,124,223,167,101,81,114,209,15,159,92,180,57,44,88,147,58,150,86,42,17,122,238,98,231,119,246,244,244,29,170,196,207,184,82,38,35,227,124,38,229,55,86,8,197,196,187,65,195,255,250,50,29,126,127,89,16,37,54,122,212,119,37,31,192,73,197,27,154,61,152,177,95,255,55,91,56,215,50,132,55,39,112,78,128,18,238,247,38,247,222,202,136,113,91,4,45,175,95,64,178,0,208,0,82,197,94,115,97,102,255,150,21,225,166,66,194,95,78,32,142,225,21,49,5,148,106,119,143,169,116,188,66,85,55,92,156,247,108,44,115,27,118,255,52,48,210,174,162,137,178,195,215,150,8,2,125,125,239,59,214,77,25,73,207,137,46,39,150,103,6,9,236,111,121,157,167,21,179,227,168,59,105,152,185,49,172,216,80,186,47,
14,118,53,0,8,255,80,44,127,135,205,107,78,13,108,177,120,252,229,108,126,90,171,47,237,251,85,243,20,123,31,207,35,244,21,159,202,12,13,214,186,118,106,113,186,108,230,114,70,95,43,239,207,248,118,26,4,15,100,83,9,0,156,20,244,28,251,44,26,136,187,128,127,240,17,88,217,49,182,199,159,2,240,66,59,46,66,73,206,65,186,167,64,106,181,220,37,148,150,138,48,184,22,189,174,30,163,28,3,38,119,17,169,120,2,19,126,169,2,81,191,192,220,247,73,189,119,59,220,0,129,35,164,99,1,98,4,247,247,29,101,62,164,137,82,169,253,7,249,237,21,223,193,27,24,151,28,237,168,119,253,100,48,172,178,48,96,13,172,189,100,29,170,64,171,116,29,89,15,12,215,131,176,178,205,36,78,111,12,223,76,213,135,130,145,181,238,145,88,64,227,203,60,49,166,229,239,78,19,7,150,114,124,20,254,148,216,179,56,114,92,214,115,1,74,212,121,35,79,171,6,215,241,49,239,212,93,240,122,47,223,236,116,122,196,110,181,2,54,132,246,192,253,62,143,140,
239,103,96,125,94,135,58,161,99,191,84,66,192,241,107,143,175,227,28,128,178,66,239,137,187,23,142,5,42,197,181,87,207,79,229,219,138,171,118,57,149,255,249,13,240,213,86,1,179,5,151,182,222,204,152,255,163,100,36,39,217,92,122,109,21,34,227,159,63,169,84,104,251,74,153,250,239,204,90,182,214,230,206,5,246,225,127,116,56,151,191,133,162,7,217,9,237,214,31,129,111,135,10,33,22,197,33,148,104,28,30,11,48,240,125,8,129,136,14,35,215,55,90,36,60,22,162,128,111,114,152,107,39,52,146,110,84,13,202,143,57,178,238,192,231,141,15,205,195,55,164,81,50,22,169,158,51,220,1,209,175,4,102,33,144,229,189,63,185,66,108,224,59,180,243,188,129,168,160,8,162,90,135,202,112,85,253,223,130,89,156,91,83,255,111,201,83,35,185,226,65,99,232,89,120,199,226,90,90,14,244,91,199,141,105,180,191,29,127,142,20,110,2,162,16,238,89,164,254,89,251,96,105,16,94,146,75,5,179,250,193,128,87,95,37,212,185,22,51,101,14,242,217,40,117,162,
179,134,41,172,208,242,201,196,225,145,7,104,210,152,138,161,180,4,32,228,64,178,244,245,157,12,211,216,255,232,250,55,130,142,242,18,220,217,32,24,188,22,196,169,161,200,207,143,107,133,214,173,185,148,172,122,139,195,103,153,242,211,122,125,166,89,36,166,45,128,151,248,94,207,220,123,234,59,89,222,188,239,74,205,222,40,11,181,5,189,246,122,44,199,58,208,215,106,118,110,246,18,139,189,50,87,226,150,52,223,63,147,50,74,197,126,130,94,121,82,205,149,0,126,60,113,182,82,54,164,224,245,118,164,8,49,123,209,51,71,101,36,80,95,2,171,115,183,185,199,70,20,49,8,182,24,215,86,108,250,16,39,9,15,23,171,74,193,110,139,181,166,191,142,94,142,118,218,185,11,107,86,235,22,205,148,189,106,187,141,92,228,210,252,93,200,58,17,164,239,146,23,241,109,83,37,241,17,219,81,60,8,10,71,21,121,97,112,76,182,179,242,219,3,224,211,241,216,178,209,160,252,82,131,65,106,97,214,200,71,73,127,133,119,173,61,21,12,147,200,243,199,151,35,11,169,
164,194,140,176,223,135,218,248,172,99,216,180,153,61,250,235,229,118,246,114,10,125,10,203,175,93,253,119,68,179,194,120,73,100,76,43,73,104,21,90,197,82,113,157,113,184,140,70,179,230,57,185,90,151,139,18,108,149,72,194,209,223,172,54,174,247,99,59,126,94,200,210,214,122,157,78,119,160,95,105,76,102,218,140,243,74,157,112,17,39,60,231,230,226,34,235,115,100,253,61,71,0,248,164,41,106,73,23,185,255,144,173,148,234,214,168,62,213,253,126,74,69,26,49,39,251,75,158,72,147,85,250,226,59,129,39,163,77,227,35,152,252,13,157,231,164,60,26,36,130,247,131,153,185,96,159,105,36,44,97,146,159,24,166,190,69,126,119,87,247,57,215,14,132,109,106,129,241,153,43,175,5,246,159,151,89,44,26,220,218,214,160,201,242,121,155,110,24,236,109,223,29,226,239,224,49,224,56,59,167,17,252,252,90,179,37,138,112,230,155,98,8,168,136,241,183,147,177,40,46,114,204,12,176,141,232,230,164,46,50,0,161,196,39,121,70,39,209,250,106,241,125,136,253,191,13,
77,220,107,80,169,145,22,95,142,21,181,131,188,140,149,37,250,243,47,64,172,31,156,206,23,157,127,166,13,192,191,208,169,117,15,24,248,183,31,124,86,62,229,213,179,55,117,159,234,166,181,43,60,155,93,186,139,255,179,116,31,215,150,215,255,250,254,42,161,218,42,3,49,223,128,157,67,100,211,211,185,28,176,100,214,21,68,49,32,136,17,79,126,183,124,76,76,250,153,58,98,196,32,131,49,47,165,154,242,59,198,245,159,67,56,114,46,109,204,146,51,106,148,76,111,189,123,169,120,108,181,10,197,237,100,115,231,190,247,235,225,250,165,207,21,55,125,190,104,76,116,42,158,94,203,86,55,55,55,114,213,70,174,128,176,152,157,162,41,165,106,102,97,120,185,157,72,10,14,35,32,178,38,77,43,201,65,19,137,188,0,9,240,217,56,88,225,82,108,255,51,41,67,61,252,210,202,248,37,158,135,34,15,85,16,206,76,182,226,3,81,64,1,165,32,220,24,6,4,129,52,81,170,212,153,141,21,196,85,114,56,138,127,193,158,57,89,168,215,212,245,130,127,41,9,133,
91,230,75,156,24,13,6,2,6,88,152,40,36,41,195,80,249,150,90,45,128,49,120,39,245,216,144,95,69,102,191,241,4,49,34,9,251,206,52,132,104,238,225,6,70,12,189,78,60,35,78,255,24,12,173,32,197,204,128,89,13,178,140,51,77,18,178,145,187,65,48,203,137,55,80,248,62,30,19,114,78,34,128,20,115,99,162,23,224,134,23,203,255,202,220,205,81,179,137,131,123,138,194,64,207,110,238,51,89,121,51,132,11,127,176,31,206,198,18,192,193,39,69,192,29,124,190,167,116,118,206,240,229,63,183,129,118,60,103,92,63,187,186,203,118,204,51,160,88,232,72,250,131,181,166,211,105,172,241,79,146,162,171,245,22,215,106,58,217,178,222,217,103,191,170,51,97,202,228,206,159,199,179,141,220,114,168,74,139,246,221,197,141,231,114,186,50,217,106,218,127,109,227,156,107,142,70,149,93,13,52,137,85,204,196,32,178,89,95,36,62,96,98,41,133,99,62,104,146,240,73,89,17,111,47,225,196,188,126,84,109,206,2,63,51,191,23,66,55,206,194,115,200,50,0,68,
119,1,64,0,18,152,23,226,126,50,50,47,91,197,81,127,106,65,185,12,127,39,200,6,51,185,209,100,219,120,238,182,75,67,231,116,54,190,87,16,174,214,190,107,43,138,46,50,41,52,50,223,49,130,95,21,21,206,28,250,251,121,246,182,110,61,136,128,130,98,103,209,0,104,157,130,67,48,57,159,105,176,173,50,31,105,143,193,155,118,245,30,223,248,249,48,122,124,48,122,71,122,130,72,10,238,63,32,189,106,186,24,112,245,146,47,120,61,30,164,139,208,157,196,238,227,225,144,167,1,162,122,132,225,233,87,121,20,237,190,183,167,96,75,98,74,187,96,35,15,40,215,222,57,226,152,140,254,243,155,147,175,60,184,44,221,15,247,99,147,24,32,195,76,229,210,190,21,211,51,44,61,104,83,104,48,120,31,13,176,84,174,40,103,4,7,32,137,82,128,154,1,79,166,239,95,6,48,202,215,221,43,96,102,103,246,90,44,225,79,135,201,99,101,39,85,242,94,111,235,27,29,254,116,63,163,192,38,81,174,134,28,221,196,58,0,191,131,100,202,200,212,163,5,233,56,
75,91,200,184,92,78,179,86,119,60,64,169,231,59,161,62,85,238,111,105,169,116,249,162,239,143,167,215,159,88,77,35,226,227,138,33,244,191,12,213,45,198,23,163,220,211,127,132,123,169,242,239,20,216,221,9,163,152,107,212,34,142,60,137,239,209,176,176,27,35,212,54,156,238,14,239,8,244,195,214,140,127,2,87,33,31,123,147,14,184,193,181,205,246,28,138,128,46,195,254,168,222,211,242,182,215,252,30,236,0,21,65,220,175,123,80,4,85,195,64,39,233,195,207,253,112,22,104,16,133,215,228,240,191,9,204,203,250,32,180,17,90,14,17,134,17,194,21,153,108,250,191,31,37,160,21,7,207,77,154,36,232,24,227,7,187,240,185,28,103,175,149,250,225,165,167,235,26,60,105,230,18,248,137,204,177,210,208,248,241,95,119,48,113,144,180,19,145,50,127,177,161,227,83,215,114,146,57,201,219,241,235,226,26,142,209,23,213,15,201,41,201,71,14,136,81,182,146,245,254,64,128,243,7,205,10,38,249,212,41,105,104,254,106,139,137,240,194,81,87,136,137,75,42,217,18,
20,139,232,169,242,1,21,101,43,74,75,42,179,155,65,50,45,191,196,64,72,152,8,172,36,30,184,49,88,144,155,196,50,48,12,218,14,196,22,102,123,20,2,83,84,168,213,181,105,118,112,67,173,147,16,66,252,229,221,133,229,77,177,252,28,239,187,119,235,110,135,122,129,255,117,103,26,111,178,16,240,239,116,3,203,103,168,164,229,246,96,28,192,132,209,190,15,44,60,52,4,120,206,61,182,53,139,143,135,47,24,244,1,183,198,26,190,123,251,231,215,123,106,75,191,40,91,56,38,45,136,77,252,172,1,233,91,87,130,25,170,111,203,34,55,159,151,242,200,231,124,119,85,250,46,37,150,47,235,101,214,153,33,2,227,154,196,67,189,145,185,241,159,11,233,33,253,125,198,177,191,79,250,76,250,135,98,199,8,220,86,131,202,203,146,196,6,32,214,155,62,23,126,123,165,247,113,40,125,60,131,168,96,140,181,111,253,151,31,161,95,219,162,73,64,44,27,22,244,236,155,159,133,131,69,121,208,159,40,219,145,193,51,110,237,181,71,173,217,114,51,89,97,6,75,248,
53,237,251,7,227,48,21,126,23,4,27,211,76,218,161,67,184,168,114,115,167,95,157,11,121,134,151,110,33,196,102,13,131,192,64,209,107,9,109,137,181,70,183,102,15,111,142,141,32,207,170,18,198,220,118,157,89,141,225,153,179,81,56,197,27,66,190,6,139,254,187,234,119,160,102,247,146,206,221,127,35,127,153,63,87,211,36,39,71,70,183,110,222,62,183,219,83,108,63,184,0,83,136,162,41,176,87,18,124,238,123,130,250,162,241,158,249,122,203,229,227,132,159,217,253,109,195,240,141,199,115,168,169,36,223,12,130,250,119,216,25,8,204,38,28,9,62,191,247,208,54,119,41,104,134,95,238,108,63,147,240,58,136,29,198,24,4,32,94,144,118,203,67,117,122,32,35,144,146,105,190,254,252,192,57,232,37,0,155,249,142,154,16,162,168,37,161,240,189,0,167,170,122,201,106,25,122,219,229,32,30,9,227,145,246,208,56,116,98,107,219,17,20,244,187,163,100,40,139,211,237,37,140,155,239,172,244,159,41,33,12,80,202,179,252,75,238,179,51,152,135,83,76,179,247,245,
89,7,182,123,98,225,202,203,245,61,140,69,41,153,31,10,41,105,73,21,181,104,230,90,179,166,89,124,55,139,207,92,166,229,127,62,139,249,195,161,147,93,90,237,154,120,190,164,49,208,143,95,17,169,45,242,87,147,36,5,213,200,21,36,55,121,213,94,131,150,163,42,158,153,69,77,209,128,88,80,64,96,6,242,196,5,128,84,5,70,161,168,133,164,242,82,247,150,52,78,114,101,72,117,79,252,53,101,131,69,75,219,227,81,231,243,189,147,88,43,125,2,115,138,133,249,186,224,162,127,107,111,167,223,16,157,42,167,175,63,181,128,176,180,253,70,172,6,240,81,204,84,255,254,74,73,251,222,43,171,12,41,173,207,241,99,230,230,168,122,118,207,245,234,251,28,60,47,187,247,59,204,62,237,123,192,30,165,21,145,113,227,212,229,177,65,140,239,66,144,84,66,54,1,63,232,242,13,142,38,38,10,136,208,5,58,26,212,188,28,58,21,254,84,240,32,32,131,188,38,57,125,145,213,38,71,1,63,163,47,30,26,187,89,115,158,0,133,4,86,125,146,183,55,91,238,
156,46,54,152,204,249,196,113,96,97,23,180,237,150,39,86,197,5,30,131,27,21,113,184,113,8,23,115,11,203,243,184,30,103,29,252,96,181,216,238,47,100,31,235,96,189,24,74,203,214,37,229,190,20,102,182,23,215,246,58,35,185,84,39,120,77,86,199,34,253,173,204,166,104,149,120,177,74,56,109,19,238,168,110,42,250,63,234,118,48,224,122,153,106,175,170,89,45,229,127,232,177,110,184,83,142,18,228,188,35,173,37,29,249,209,117,106,15,200,50,133,140,47,152,38,24,238,68,9,172,87,15,161,49,165,30,183,48,226,114,46,110,95,89,82,241,22,40,32,110,82,101,179,66,18,188,74,253,6,34,8,129,52,38,12,112,234,119,29,243,156,94,163,100,189,202,210,230,12,156,193,192,194,55,206,63,205,146,164,141,77,246,73,106,149,82,91,41,33,205,35,197,97,51,105,37,246,63,31,156,108,33,172,83,83,138,211,104,199,237,122,42,12,240,159,153,193,163,23,10,26,236,237,165,78,183,143,180,19,12,196,149,213,224,166,178,185,48,60,225,138,56,36,106,102,235,
16,125,223,11,66,176,173,85,177,134,134,16,81,150,148,52,163,137,36,239,223,90,177,213,105,157,173,38,65,40,247,125,242,39,190,55,255,123,122,159,236,199,92,141,33,151,197,158,229,150,106,179,164,157,74,231,4,32,14,139,96,218,176,154,14,226,147,88,241,242,161,45,254,167,131,7,82,161,0,96,171,193,200,146,20,205,51,130,100,88,48,56,40,170,185,12,195,76,124,245,131,116,74,39,136,33,231,56,146,61,175,45,24,231,181,30,144,204,129,208,241,168,66,116,223,144,165,29,250,80,24,233,222,136,172,138,192,85,69,189,91,151,245,213,103,28,88,16,248,214,148,248,58,246,232,53,13,34,83,68,243,23,6,11,49,32,173,126,223,206,243,110,74,61,155,220,23,19,139,197,90,90,6,191,118,237,213,28,96,208,159,190,55,225,58,210,171,105,241,201,106,88,71,105,164,65,106,130,222,76,213,213,30,139,171,64,193,105,224,13,140,85,231,55,156,174,172,47,174,152,66,95,175,15,4,204,52,1,4,253,90,83,250,105,68,253,183,61,211,223,40,109,58,81,192,84,
244,223,253,39,62,181,146,199,4,239,207,84,133,129,191,92,52,152,216,195,27,8,247,245,204,209,213,171,59,125,106,13,151,62,177,102,103,136,168,204,211,69,244,94,35,204,147,155,14,107,5,39,35,21,103,7,207,78,225,90,120,137,191,167,221,66,4,233,64,52,41,204,156,159,26,83,82,139,93,192,174,82,194,143,164,196,196,111,14,123,245,19,182,166,59,206,96,200,218,212,209,172,242,180,245,59,81,253,84,207,35,74,31,124,50,249,48,92,206,185,140,38,151,120,71,241,86,116,41,21,210,63,118,33,208,70,178,117,9,39,45,215,119,171,155,202,235,130,217,229,144,252,248,237,31,158,163,108,26,246,218,219,143,202,253,197,173,126,5,53,179,151,25,208,139,210,53,245,159,30,4,196,170,37,168,31,37,239,161,219,134,95,75,14,241,226,162,70,188,48,72,197,179,191,103,164,74,126,71,154,86,125,150,5,57,24,27,59,34,103,209,51,176,252,188,91,211,104,42,113,190,31,251,179,211,100,143,3,65,43,147,85,200,1,64,81,156,45,115,103,206,241,145,209,160,136,
117,90,205,244,40,192,141,4,144,83,233,42,133,126,238,254,2,179,213,20,90,196,42,226,220,246,84,64,86,142,69,44,249,215,166,115,169,166,83,126,28,196,248,124,254,1,200,246,69,224,187,254,129,149,109,189,129,159,102,176,211,95,31,16,18,33,84,100,216,98,68,117,133,22,101,234,15,26,13,232,193,37,191,28,36,72,71,185,130,24,132,27,22,136,245,226,72,99,6,12,144,167,164,36,12,4,7,249,231,92,249,142,110,249,113,68,205,45,67,16,172,181,67,45,202,168,68,33,37,50,88,217,212,31,76,76,123,246,171,201,228,190,127,207,131,207,147,66,230,52,89,142,246,251,130,79,6,66,251,254,240,133,164,245,180,2,116,37,12,125,247,9,240,11,137,243,125,62,243,154,237,34,141,109,207,41,31,150,229,17,243,86,237,109,244,79,78,104,235,124,218,212,214,183,97,41,76,235,93,22,234,203,76,0,14,125,152,166,10,119,165,81,173,90,112,51,251,109,128,183,254,173,191,176,197,76,64,64,187,118,223,3,56,33,8,92,239,10,125,31,59,5,56,126,72,242,
239,49,92,116,3,50,249,95,14,205,61,6,195,162,186,71,161,109,155,117,151,174,240,61,59,97,212,150,143,170,155,168,49,8,7,147,107,137,40,97,56,20,19,15,35,30,81,26,43,41,157,124,240,223,241,134,239,73,74,75,254,66,80,114,88,108,45,251,153,168,217,79,125,12,108,37,114,14,185,214,94,78,97,162,139,64,8,116,176,135,183,185,82,236,58,45,153,230,215,235,99,152,78,124,46,74,216,227,22,202,148,3,37,127,185,63,215,248,176,146,4,146,220,185,205,21,53,216,236,93,15,242,239,232,80,90,174,254,176,172,128,39,207,164,18,220,168,85,200,18,207,44,23,16,140,17,59,107,236,76,204,237,183,39,127,135,177,124,43,7,30,100,229,71,246,49,125,212,211,132,148,71,252,129,181,26,148,37,146,170,90,88,121,218,246,216,254,193,196,102,70,219,70,86,192,246,234,192,253,16,177,56,203,227,96,185,125,104,196,204,102,63,170,49,44,121,182,243,56,237,86,46,97,118,66,177,78,249,23,145,248,19,245,88,141,19,189,42,247,82,249,232,202,140,30,62,
29,219,123,205,113,219,197,106,212,19,151,95,2,2,66,36,66,73,161,34,72,95,252,205,114,194,153,170,11,103,39,241,160,59,59,51,25,133,31,183,123,146,176,158,175,18,242,64,64,236,247,3,80,9,183,204,49,72,132,165,212,140,90,132,133,127,231,190,245,252,51,159,106,191,95,253,226,163,80,201,84,79,151,14,145,23,18,132,51,8,1,73,11,171,105,187,4,22,173,144,146,41,80,54,44,132,76,227,62,76,26,20,122,147,217,229,129,118,214,31,253,127,52,156,83,179,52,77,215,173,255,122,181,109,219,90,109,219,214,106,219,88,109,219,189,239,231,253,98,71,84,212,81,29,100,198,196,184,70,228,204,18,6,102,23,21,143,14,0,121,229,57,235,162,101,245,7,178,162,73,141,155,216,87,125,13,39,189,218,233,186,223,75,46,109,133,215,132,207,126,109,98,129,72,234,226,13,218,155,163,82,14,37,197,3,74,247,20,213,241,4,101,12,93,124,101,229,223,173,255,203,57,114,63,240,126,126,7,254,16,126,116,158,187,235,163,42,83,176,22,134,232,118,245,29,122,
255,39,131,112,0,105,160,64,251,181,204,218,112,99,145,64,9,5,198,225,138,227,188,5,196,12,251,177,4,116,61,16,100,250,0,189,208,92,68,110,247,190,42,181,28,0,21,101,253,152,97,110,136,185,229,101,53,8,129,191,205,204,243,129,163,213,3,100,24,214,237,217,6,177,206,63,201,191,134,114,232,224,184,101,52,159,250,88,193,221,156,58,22,214,111,202,241,52,249,140,250,167,192,69,102,182,176,210,127,195,161,113,44,102,167,165,139,254,246,93,190,245,226,57,75,155,0,227,6,9,172,70,136,163,177,24,73,244,75,12,98,211,243,174,168,60,92,33,35,52,112,104,18,71,52,151,211,17,189,183,58,252,33,9,189,128,193,120,187,61,46,71,88,111,193,33,116,13,71,116,46,159,136,84,211,47,163,156,229,91,64,114,217,125,130,108,75,126,206,2,215,139,50,46,255,125,194,249,206,132,79,12,65,92,179,53,159,194,109,25,91,121,221,205,238,140,175,5,186,101,53,245,100,131,3,197,152,251,71,203,51,187,250,207,48,81,20,111,154,225,93,150,89,78,167,244,
128,130,90,207,240,72,185,77,161,67,149,20,184,155,212,147,1,219,175,128,144,13,58,169,7,181,210,254,30,118,25,61,250,56,22,148,127,251,245,147,88,231,20,230,25,29,17,89,207,238,250,126,57,10,11,14,5,230,148,117,176,145,209,209,251,121,70,2,122,128,232,141,164,224,44,95,181,27,137,39,97,32,224,169,22,4,149,173,34,248,209,161,66,22,180,181,253,195,88,163,34,29,111,231,59,251,130,31,42,245,115,186,17,240,117,124,223,166,75,146,72,33,9,180,20,92,84,32,163,0,158,173,98,182,242,160,114,58,251,144,37,32,165,22,142,77,193,222,74,203,185,164,11,110,11,17,138,44,16,171,11,169,18,67,2,9,225,59,176,36,106,0,129,119,144,86,41,187,14,229,158,139,10,200,167,142,209,106,176,28,110,183,211,167,173,46,19,88,106,31,27,115,92,69,20,25,172,246,19,58,13,66,115,220,249,61,8,143,41,137,215,44,42,223,17,160,60,251,63,99,49,78,131,251,74,24,182,194,150,188,142,203,199,162,180,141,5,8,2,231,123,62,247,73,106,105,
194,242,169,175,14,190,57,121,141,225,98,197,242,144,51,88,103,21,14,156,180,29,238,6,10,129,12,5,14,24,90,34,77,89,171,72,0,3,84,48,164,23,31,64,25,4,186,220,224,126,84,215,146,104,24,167,47,212,143,248,140,126,17,140,192,221,122,114,189,255,93,120,189,131,56,84,208,68,231,237,18,67,221,82,0,80,161,79,45,51,231,188,164,227,95,59,14,55,90,182,111,20,110,154,98,224,172,164,184,210,132,37,228,217,158,47,49,31,164,165,149,6,166,83,134,70,96,135,125,219,230,50,176,150,123,81,144,114,67,123,115,161,1,238,224,204,196,65,187,235,91,94,173,244,22,225,234,251,91,254,174,226,112,194,229,37,129,25,65,226,138,141,162,130,136,79,119,22,206,23,179,133,103,78,254,222,167,182,244,231,239,154,163,112,180,127,74,70,189,134,127,183,198,249,13,29,14,246,27,94,99,174,27,114,159,36,252,166,164,212,45,7,156,230,185,215,123,229,108,230,134,15,67,116,100,219,197,18,67,192,208,108,217,141,117,140,204,61,176,35,152,191,169,15,34,44,
16,89,82,147,72,228,231,84,133,166,30,62,140,152,164,5,160,246,125,16,47,244,161,74,207,5,204,8,111,58,136,200,185,5,119,88,26,47,175,219,39,110,54,25,221,38,31,205,145,24,191,124,194,232,216,54,154,7,32,161,20,136,41,230,115,103,4,60,129,26,131,155,125,253,224,120,35,145,67,5,80,96,7,110,158,109,197,48,167,108,138,89,67,50,90,42,146,31,22,174,189,107,174,163,12,120,253,87,224,12,198,187,78,39,212,19,196,83,68,250,234,192,129,142,39,147,189,153,208,207,223,5,35,73,229,150,195,139,167,218,15,118,228,161,24,201,86,69,91,10,80,136,28,198,181,24,118,72,55,108,223,149,230,179,80,18,92,207,204,179,78,108,76,87,242,23,177,20,16,52,204,220,61,65,136,91,105,115,90,17,143,71,83,56,24,104,43,226,253,128,81,70,237,63,213,79,158,80,211,132,237,120,201,115,216,123,237,14,195,121,66,61,16,163,28,7,182,27,80,94,126,118,216,98,6,116,245,217,74,199,170,137,15,214,96,197,66,62,51,99,217,239,180,129,63,109,
145,172,79,108,79,90,254,197,207,222,55,163,212,93,131,150,4,231,221,54,152,194,224,27,244,96,94,146,213,190,16,22,70,21,230,156,41,0,14,230,80,122,59,246,73,151,213,203,191,63,52,253,32,132,19,166,167,218,196,2,4,242,161,249,90,109,239,131,0,105,3,72,209,110,102,228,57,88,138,173,244,240,74,103,143,71,59,204,144,149,47,138,47,234,174,195,106,245,210,99,17,162,179,241,103,217,9,127,253,4,24,88,25,126,65,97,38,227,79,211,97,38,12,49,6,79,68,195,68,184,144,64,116,161,45,84,90,160,100,210,210,62,144,141,174,130,246,63,121,243,36,13,98,150,22,37,158,37,79,193,231,69,124,125,165,25,243,177,238,171,207,206,216,112,178,140,222,238,179,222,94,81,197,144,147,133,228,81,162,251,94,111,91,134,126,130,114,116,58,108,18,218,26,178,154,173,59,129,128,10,161,32,2,20,13,62,255,181,48,65,220,142,27,206,119,80,206,124,119,202,20,130,0,21,249,27,98,218,3,26,176,112,227,2,137,176,187,72,15,101,234,186,153,65,12,227,
159,245,164,134,232,56,170,235,116,211,26,173,126,230,86,12,66,209,32,191,129,149,96,194,168,217,87,135,176,164,48,11,45,223,251,214,204,14,24,246,91,96,182,37,96,167,33,39,132,245,47,249,144,50,198,64,17,210,181,151,86,71,29,213,191,168,79,63,119,88,81,76,57,163,162,66,175,152,142,235,120,3,240,119,135,136,39,39,16,32,84,91,83,16,130,92,201,217,152,44,9,13,11,54,213,139,106,155,7,226,16,240,196,114,59,117,170,122,66,103,98,105,114,39,16,74,41,226,2,132,153,40,20,226,49,20,108,236,154,133,232,96,197,251,4,157,28,82,213,212,26,70,211,57,18,196,67,185,230,239,123,144,149,177,70,18,78,56,212,193,9,88,87,162,130,232,143,226,5,162,0,34,23,233,125,71,208,51,93,196,177,189,2,173,233,119,6,32,163,116,167,134,8,105,5,160,214,88,243,245,86,124,71,56,155,212,47,173,181,152,149,159,168,233,177,30,35,244,159,123,220,255,63,39,247,254,14,217,158,61,174,147,133,106,59,76,234,73,254,122,114,74,173,35,121,153,
93,223,83,214,247,196,69,178,128,2,237,138,207,168,255,83,103,60,253,137,1,115,191,4,235,115,132,156,20,1,111,169,248,119,176,77,210,245,101,96,133,86,242,185,219,229,245,24,118,41,65,40,146,89,31,230,219,92,86,222,165,226,37,50,240,208,36,40,179,124,16,6,120,25,232,220,16,106,66,124,57,49,61,35,147,75,156,43,41,3,223,59,197,219,73,161,117,85,151,191,109,153,169,16,172,244,45,197,139,76,180,83,51,2,141,117,84,41,33,192,99,167,192,0,177,9,185,117,133,66,179,146,185,76,254,185,17,58,92,60,180,51,20,88,246,231,142,219,218,181,25,40,14,33,240,53,49,147,111,144,23,77,230,195,44,58,5,9,213,11,218,175,21,131,102,248,51,204,28,55,118,255,182,66,86,143,235,158,79,184,231,54,79,179,18,106,170,63,28,159,67,138,68,233,200,24,206,12,77,19,41,90,5,223,176,158,229,47,104,2,47,9,161,25,181,19,216,81,251,108,251,254,253,45,180,242,34,222,11,31,128,61,21,157,17,1,227,140,86,78,19,33,158,137,117,112,
187,230,181,243,15,20,28,82,81,54,103,75,40,228,6,1,123,132,79,56,77,195,97,39,148,8,134,46,133,139,172,224,54,39,98,118,117,108,157,222,78,207,202,46,88,57,36,162,39,159,210,33,192,223,247,106,130,178,189,68,85,198,165,115,26,68,117,37,241,164,41,84,25,46,35,45,198,197,140,40,47,171,20,25,242,84,93,141,147,4,143,135,152,247,151,116,61,33,222,3,127,171,183,60,184,215,85,5,143,117,200,51,195,25,7,93,75,45,45,76,144,7,137,165,196,68,153,40,9,179,78,150,67,154,147,242,8,177,138,216,102,130,84,29,110,167,203,241,248,235,87,159,190,106,191,227,105,245,26,201,132,61,113,230,187,95,121,70,126,240,41,67,198,177,8,60,5,126,131,36,68,17,53,112,60,63,223,97,155,66,246,97,233,150,101,228,73,156,85,92,248,172,27,24,244,147,49,86,124,196,249,117,254,236,244,140,171,206,73,103,81,102,110,221,45,13,217,194,83,127,127,242,75,234,147,136,112,252,165,105,45,44,48,100,200,22,128,242,207,159,28,111,142,241,211,81,
78,226,96,13,179,173,167,159,87,75,144,25,124,1,70,221,136,88,138,217,127,202,119,156,178,128,3,90,246,246,21,178,37,231,200,151,75,93,129,199,20,164,44,29,81,51,141,207,9,119,167,48,115,68,30,195,210,39,131,189,52,9,141,103,214,88,222,203,251,61,40,156,219,145,154,73,85,151,190,69,61,180,188,19,124,95,202,153,73,170,35,108,56,115,104,234,195,51,235,34,164,133,250,94,244,89,217,233,228,169,25,45,125,179,89,125,181,242,225,54,86,45,255,107,209,91,222,218,11,62,119,150,214,221,41,124,109,56,146,82,118,210,124,3,98,237,227,49,200,141,45,196,55,149,32,16,43,56,16,135,111,224,177,48,39,110,139,68,54,104,211,151,8,186,35,164,151,145,159,70,235,226,124,240,22,81,156,225,0,220,35,30,181,120,144,51,217,232,250,192,219,123,168,117,100,167,139,180,20,236,64,151,232,210,121,54,63,60,110,54,171,253,183,197,185,64,63,59,57,178,32,42,204,179,146,66,144,32,172,169,32,87,115,81,190,241,245,217,54,42,245,32,14,10,135,11,
4,176,131,128,165,182,196,222,180,46,124,104,14,94,159,119,48,109,83,81,254,145,29,246,206,4,122,23,40,129,198,32,232,73,248,136,6,20,78,34,70,154,50,66,249,64,72,73,100,89,14,32,69,144,100,156,35,60,239,241,56,98,227,158,113,43,197,171,97,240,143,33,73,0,248,64,57,187,96,7,234,206,74,195,153,134,71,43,231,176,108,76,101,198,156,101,137,4,32,254,207,66,139,171,193,215,17,80,115,203,74,223,170,19,95,252,122,181,29,237,215,222,95,60,135,196,246,186,198,179,144,169,16,55,241,35,36,221,135,234,239,155,143,249,23,162,128,52,42,193,109,239,67,211,93,108,214,75,158,136,205,47,12,255,192,118,230,173,56,223,127,227,199,253,95,173,192,230,38,86,65,129,169,6,114,79,108,228,50,112,168,157,182,135,126,7,204,102,28,115,32,194,210,231,239,96,235,238,159,225,48,88,153,249,74,217,29,57,253,206,250,43,91,221,48,56,99,236,8,253,202,169,48,215,10,62,52,251,99,182,165,82,35,74,203,0,154,197,15,58,227,253,70,199,79,228,
44,57,130,110,206,198,151,199,248,136,20,64,24,131,25,33,205,6,111,51,152,57,249,181,200,198,128,241,28,102,191,233,196,71,57,204,132,37,197,2,177,231,89,106,169,4,191,64,181,134,96,81,34,89,23,242,36,54,78,84,117,178,81,235,124,221,106,246,251,186,62,239,253,165,255,246,191,33,146,189,30,10,19,42,244,207,193,221,42,98,82,87,238,77,31,196,249,231,254,239,211,239,36,95,69,122,43,245,150,79,229,243,19,234,63,199,1,125,161,170,79,67,245,9,90,194,162,218,52,114,240,2,242,34,225,45,195,253,212,179,26,83,179,248,215,0,163,55,246,40,253,149,136,15,197,135,71,33,58,68,255,56,90,56,55,81,194,188,101,12,71,200,6,170,161,36,244,78,57,212,179,81,221,160,178,161,186,53,235,182,152,224,105,220,77,20,161,116,63,123,140,122,79,13,156,207,87,131,81,121,117,249,204,76,148,188,237,229,251,195,19,48,64,18,18,217,9,44,212,228,37,89,74,145,202,116,15,139,137,187,43,23,18,144,145,210,79,56,89,151,201,70,216,231,226,199,
61,136,0,23,36,8,28,210,211,203,42,233,161,47,73,32,159,50,113,0,214,245,230,223,67,57,188,160,38,67,80,17,165,71,43,42,131,77,238,32,73,88,97,25,17,3,105,32,23,227,97,213,16,208,126,44,228,236,247,136,247,135,80,130,73,129,160,155,40,92,77,72,169,133,173,1,248,71,32,113,214,178,6,255,66,213,40,144,162,253,187,128,64,109,226,129,21,23,229,245,48,20,136,187,197,97,124,97,173,98,88,113,24,17,150,157,209,244,87,231,81,127,139,36,219,36,186,125,30,214,61,215,52,118,196,24,171,62,4,252,179,61,77,191,199,146,122,197,251,43,49,124,138,156,58,73,122,141,56,193,13,212,255,61,252,15,91,222,99,134,185,3,215,124,71,76,178,5,230,164,251,86,82,59,223,167,205,197,7,107,83,94,123,93,10,2,212,3,156,206,175,141,112,125,223,182,207,162,59,204,120,57,211,138,52,69,183,50,209,26,146,234,21,236,97,225,5,217,30,65,117,247,60,205,3,141,223,91,75,148,83,166,183,3,75,147,49,148,112,242,248,183,153,201,104,97,
178,147,48,222,115,100,35,150,250,146,229,216,18,252,169,161,198,91,49,127,35,248,60,226,225,239,199,239,237,248,49,220,199,83,170,252,36,180,34,10,179,140,206,72,192,24,188,31,101,213,24,88,174,193,3,33,2,253,69,219,144,96,173,250,138,24,249,187,35,244,225,49,238,239,196,248,197,86,240,51,159,150,157,222,255,253,164,153,130,175,129,9,12,144,157,137,114,238,255,112,112,233,48,4,228,190,46,193,95,166,224,157,224,220,108,64,171,207,81,49,99,175,155,64,136,191,55,74,235,55,62,54,37,80,249,13,146,165,46,146,59,76,232,5,18,131,254,57,130,176,182,27,236,71,44,250,240,135,140,117,22,118,183,54,49,216,90,203,134,248,242,41,81,132,54,31,42,46,59,72,72,205,228,166,173,233,228,159,219,90,36,112,18,245,214,218,21,31,151,191,167,96,17,51,253,103,5,5,195,60,179,255,192,94,203,194,64,110,174,78,226,198,231,134,68,68,0,6,17,33,56,242,13,209,168,248,86,152,223,92,202,244,26,40,8,140,96,178,181,144,162,140,164,162,14,207,
44,44,223,132,130,2,183,62,83,52,159,83,206,32,20,85,140,68,54,37,185,235,240,71,90,113,47,220,97,133,132,14,163,62,3,50,6,59,7,55,147,224,129,192,242,42,9,220,226,26,75,60,3,4,234,18,96,212,31,234,3,8,33,101,39,86,130,29,46,16,144,253,112,248,199,18,238,29,60,174,234,151,165,111,116,126,61,228,229,27,57,134,157,129,134,56,118,162,142,222,241,206,95,109,220,34,145,138,119,174,159,50,24,133,18,102,88,19,16,166,225,146,68,190,114,213,228,247,253,95,139,185,188,191,81,69,102,187,215,69,29,237,166,127,236,114,190,4,146,39,113,11,139,40,52,228,97,175,86,127,188,104,106,203,184,161,35,187,9,25,217,74,255,210,19,247,108,150,53,121,217,203,102,218,129,188,138,226,233,159,127,252,92,143,192,213,99,70,165,35,64,68,66,53,13,241,170,26,103,26,168,255,124,1,129,240,132,62,70,116,67,122,118,18,86,164,93,29,25,165,123,184,93,174,15,152,102,73,190,59,222,97,215,215,160,6,148,197,148,212,1,98,171,178,149,134,
33,128,164,96,95,210,83,179,168,150,216,88,229,164,253,175,63,215,60,239,251,234,152,176,64,1,183,251,248,101,155,220,166,95,227,95,104,252,186,14,123,223,239,21,59,181,172,14,107,18,241,202,41,191,213,154,219,77,144,224,56,96,236,200,90,31,214,141,52,23,226,229,176,101,183,111,224,96,228,26,126,42,114,91,213,186,232,238,77,161,211,18,117,222,27,65,51,211,91,185,245,147,222,108,71,251,228,229,58,232,159,194,222,4,207,110,63,37,236,47,92,75,122,177,212,240,175,218,104,216,226,42,130,180,8,179,229,50,36,141,0,145,169,6,7,234,90,60,126,69,148,102,144,6,19,228,169,88,211,205,189,17,210,9,35,9,31,144,119,18,186,149,79,50,80,77,80,172,88,219,40,244,118,0,182,56,57,98,203,252,60,107,57,116,81,196,180,208,17,73,188,177,82,239,219,116,32,37,84,240,123,58,68,231,137,19,115,56,119,244,248,71,109,60,107,86,39,111,155,3,94,20,236,69,14,250,115,163,163,235,220,6,49,204,43,27,204,211,161,11,194,67,83,163,172,153,
244,3,76,37,90,42,255,103,191,147,253,136,165,62,111,255,5,65,24,40,101,79,74,10,188,206,1,183,217,107,121,188,30,137,75,235,5,199,168,130,89,215,125,189,93,226,34,34,14,177,37,123,93,169,110,162,233,75,221,97,47,18,137,231,70,19,231,214,117,206,202,253,130,144,95,253,156,97,112,165,152,134,74,78,154,52,39,250,207,203,132,42,112,147,7,57,239,182,219,36,119,73,106,86,240,122,219,36,162,131,226,177,201,209,170,115,142,250,129,36,105,154,178,64,138,99,186,178,5,108,214,116,231,120,103,138,174,40,121,117,126,120,89,153,241,10,169,201,49,101,195,216,15,143,74,47,253,140,197,205,253,213,239,114,125,23,185,205,122,1,210,121,82,117,81,57,29,149,54,55,104,185,229,183,24,24,197,224,28,212,63,224,32,219,3,44,145,68,243,168,68,228,191,191,167,248,47,129,176,133,57,135,216,112,135,253,112,132,173,58,80,9,191,175,87,205,95,207,235,113,115,83,116,131,115,2,221,202,110,38,228,171,239,64,148,111,58,118,34,241,159,55,106,49,65,198,
66,95,91,190,60,202,46,72,40,249,176,105,186,87,215,45,228,128,9,165,251,195,85,169,1,34,173,70,137,51,14,4,24,37,36,146,131,108,182,158,117,124,0,249,97,238,117,14,138,210,127,0,35,197,8,100,165,147,163,20,84,176,188,116,64,191,60,215,182,113,16,72,247,130,9,98,140,155,168,103,138,54,115,227,207,30,129,189,117,14,215,48,133,255,131,176,160,10,214,222,17,123,247,151,114,174,188,20,194,178,146,60,126,109,185,192,46,112,93,85,245,152,160,254,80,81,68,204,191,116,41,170,119,236,219,44,232,74,68,92,172,136,4,47,38,132,55,163,211,23,201,199,214,99,18,29,133,196,244,83,14,209,119,3,192,251,4,45,206,126,120,39,7,175,63,51,116,243,198,235,42,58,19,171,162,96,97,9,149,16,210,57,110,192,194,9,22,86,235,84,87,250,33,104,103,92,201,68,176,57,25,77,79,151,17,112,5,140,173,143,35,123,148,58,225,165,223,218,249,76,61,192,53,238,129,219,79,253,150,126,226,247,65,32,155,133,128,185,67,211,132,225,30,48,139,196,
197,193,184,142,17,251,239,180,0,75,109,26,178,113,27,142,156,251,180,198,20,126,79,238,62,216,189,253,91,37,199,67,193,12,44,236,58,169,106,251,60,198,81,163,95,34,53,96,119,121,69,209,179,191,8,191,20,149,166,180,1,79,14,73,64,248,234,18,115,46,30,123,65,192,6,35,43,146,125,32,1,45,131,242,127,212,184,205,45,12,148,124,25,66,201,148,105,202,215,148,152,238,144,28,15,105,127,65,112,97,189,191,140,116,200,157,73,67,75,161,214,140,140,199,246,140,74,72,245,245,115,163,120,92,109,189,39,185,223,244,9,29,39,187,20,147,167,134,125,116,148,197,176,21,207,57,108,126,152,141,153,41,28,16,33,62,101,11,234,171,193,174,50,37,120,80,92,161,208,54,254,239,104,33,154,214,38,129,80,105,183,105,50,133,14,229,135,71,217,194,41,86,63,26,89,46,87,131,117,127,123,55,187,23,136,93,46,8,179,38,201,15,155,174,131,116,255,39,100,74,107,86,114,195,160,116,161,145,53,31,67,251,3,8,168,103,248,99,175,101,46,185,152,130,33,41,
64,168,53,74,192,136,52,11,211,8,8,124,44,82,42,16,209,225,217,21,2,97,115,226,201,50,135,128,163,77,160,83,155,66,112,58,66,27,115,93,176,182,96,7,96,32,31,14,244,107,9,84,94,213,15,82,152,41,77,9,45,11,40,65,170,10,86,195,18,194,10,134,46,192,147,146,37,197,246,208,244,51,162,119,222,74,130,0,197,140,133,167,85,17,209,76,217,69,4,158,174,176,181,188,60,242,144,110,79,60,22,32,127,16,112,50,104,156,96,64,78,46,158,77,1,64,49,112,74,147,7,106,91,56,168,150,150,218,155,163,229,142,185,16,99,0,115,75,27,130,94,159,229,9,230,124,186,218,90,124,239,33,155,1,69,224,219,184,67,194,135,57,240,90,199,240,189,249,96,185,248,48,14,66,166,168,170,253,203,125,172,202,251,127,163,22,165,199,103,25,39,138,146,36,158,194,115,89,193,227,96,89,240,14,238,165,101,141,153,254,157,226,251,130,171,186,148,162,1,211,205,6,67,48,106,224,127,142,235,184,106,207,161,82,171,252,213,176,178,14,247,149,139,133,217,197,
220,137,88,120,155,147,135,47,155,12,2,230,249,26,95,5,21,240,121,44,48,44,131,220,86,156,127,2,243,121,184,42,23,161,232,238,146,246,31,230,244,95,225,50,123,58,12,157,147,197,102,60,96,119,6,0,233,92,253,39,180,187,141,34,196,248,86,103,141,235,195,205,201,42,63,180,194,119,17,211,128,25,224,180,83,93,154,195,143,120,46,176,110,227,203,201,201,44,255,197,220,212,186,187,138,144,130,45,154,63,43,46,205,197,33,6,150,214,195,100,3,24,81,17,17,25,202,219,254,87,153,47,172,71,234,248,85,149,89,64,173,118,88,114,141,115,242,64,21,254,178,17,169,49,49,193,127,12,241,119,248,252,45,248,121,156,235,11,65,46,235,83,6,164,192,9,4,166,211,31,217,149,41,74,0,186,133,79,101,32,194,21,110,135,190,75,229,44,159,5,5,197,156,54,222,154,160,41,206,177,214,97,230,3,177,144,71,20,98,153,87,154,156,103,83,247,70,61,52,220,147,100,234,57,62,244,73,241,66,33,213,203,161,249,190,150,43,88,16,11,217,177,182,144,93,114,
136,168,50,98,247,35,174,25,136,34,162,168,45,224,34,172,249,83,75,255,141,250,160,50,40,201,28,159,100,229,167,16,209,208,182,249,109,154,97,17,243,208,110,17,34,255,212,42,114,187,173,196,223,201,221,25,242,17,152,221,79,127,143,151,135,65,162,242,76,163,227,204,9,136,161,72,168,215,20,12,245,29,183,56,91,158,154,60,250,173,146,192,3,72,6,203,16,26,109,165,47,188,137,129,179,104,117,25,62,143,75,253,85,95,101,77,8,16,153,191,237,160,253,71,120,255,199,46,191,161,43,0,22,151,158,181,123,15,146,51,138,166,53,220,181,246,255,207,163,155,191,228,58,203,221,14,28,35,28,69,81,123,49,60,161,144,235,234,245,227,88,96,39,7,177,14,6,23,101,142,237,0,159,140,36,12,240,238,95,136,99,137,55,56,185,221,122,239,120,235,64,170,102,94,72,85,156,37,128,92,239,207,46,207,13,63,32,139,159,103,99,63,181,82,89,141,85,49,45,104,101,221,28,118,54,36,135,84,40,21,211,159,159,68,195,98,6,54,147,192,44,122,6,206,209,249,
116,253,165,137,149,165,153,77,204,89,78,2,109,170,229,29,185,152,244,117,186,62,22,195,245,91,245,234,220,126,144,67,227,212,76,228,241,175,241,34,108,57,204,122,167,170,247,139,213,255,65,32,233,148,150,135,244,161,18,215,216,25,26,203,218,39,126,120,104,240,137,135,153,237,66,243,19,99,163,130,193,165,71,36,6,57,197,40,233,66,221,204,25,48,140,162,7,173,218,44,207,173,31,222,141,136,80,122,65,136,176,203,208,245,58,7,52,177,97,72,37,64,0,224,213,61,111,1,160,99,40,73,242,48,112,65,208,220,8,189,130,122,81,74,61,229,68,157,146,125,245,4,235,20,104,117,232,232,170,29,50,209,182,2,96,112,109,214,7,9,177,0,49,129,82,228,19,227,132,9,151,209,160,13,34,122,162,92,4,80,187,45,138,150,217,117,97,0,146,105,97,185,75,162,94,84,202,59,213,55,131,75,115,165,83,119,22,3,99,35,107,35,148,22,172,243,243,49,250,12,134,39,165,159,149,140,74,238,133,25,55,15,17,103,31,108,94,87,93,33,59,230,193,137,220,131,
111,46,65,66,207,133,60,19,82,34,189,58,215,237,115,187,191,218,106,250,172,72,133,115,106,225,140,150,84,175,87,153,204,154,250,143,187,188,198,210,31,194,175,113,155,98,96,141,60,134,95,116,101,238,144,164,35,0,212,55,78,87,123,68,217,153,113,226,115,203,247,156,224,212,46,189,21,71,175,26,23,247,53,145,105,193,251,107,150,106,251,75,110,5,171,135,39,176,159,31,51,66,34,182,169,189,244,81,91,10,60,179,48,193,56,30,221,41,36,200,62,178,18,159,186,148,1,20,84,254,237,212,116,166,84,115,58,72,207,223,15,64,234,47,94,37,85,113,62,134,159,21,31,237,148,248,242,122,32,242,179,74,35,226,32,204,70,138,76,41,62,136,52,250,4,57,207,204,114,58,125,138,169,184,74,135,200,189,132,62,123,59,189,179,189,199,204,240,150,64,159,55,37,120,81,244,53,160,220,154,23,72,133,53,60,211,10,117,141,200,127,243,39,124,42,103,236,17,226,55,130,166,112,39,164,150,50,113,9,136,74,130,70,74,24,252,213,226,225,241,245,160,159,192,175,158,
177,6,136,6,49,80,178,127,113,196,245,223,229,26,245,131,145,56,239,152,130,68,50,1,104,143,58,63,51,81,104,83,159,78,21,66,72,138,61,88,232,185,1,196,174,221,92,229,238,34,146,238,41,52,98,160,239,146,15,34,199,158,27,11,82,152,48,99,97,198,230,45,32,32,68,10,45,15,88,74,93,131,11,147,36,161,196,82,100,169,170,242,40,213,148,194,75,236,115,26,191,205,67,10,173,5,138,109,97,204,64,181,142,218,63,125,179,209,57,201,161,40,43,183,166,176,159,89,126,148,64,192,58,206,113,95,72,99,172,115,82,83,3,244,109,11,199,198,102,192,172,17,85,22,200,204,86,102,132,216,113,39,145,115,61,38,219,40,245,58,215,239,91,251,149,21,246,21,55,61,46,70,234,18,188,90,229,140,95,89,59,244,34,106,224,145,175,65,106,196,137,118,139,35,206,240,35,189,167,144,129,129,74,11,92,241,90,126,216,119,39,132,151,219,251,190,149,66,92,85,201,13,63,35,47,160,76,10,24,93,58,242,210,196,37,152,98,48,0,115,183,98,113,10,153,3,
19,204,6,107,6,211,3,253,66,253,80,86,174,102,131,226,67,34,38,24,122,50,95,214,244,99,98,11,186,3,137,88,59,96,181,255,107,99,42,51,112,70,58,232,146,209,143,138,196,72,17,50,102,115,149,111,103,204,30,157,113,98,0,35,92,152,157,73,34,250,10,67,84,59,13,217,202,90,107,23,184,216,34,4,114,118,96,26,221,253,206,170,247,151,123,120,85,207,163,209,43,110,222,89,49,17,146,71,188,125,172,16,103,116,35,235,151,182,163,137,72,46,77,233,24,170,6,58,191,161,24,87,24,211,112,233,28,0,31,79,32,21,178,46,97,253,19,238,27,243,129,246,108,206,221,138,194,60,0,79,155,38,213,63,10,58,94,31,90,188,230,47,12,70,211,207,28,139,75,42,145,8,179,192,245,190,170,216,44,104,173,106,64,208,127,71,41,1,163,211,204,36,200,50,111,190,160,180,64,200,193,136,29,18,16,206,176,191,118,146,52,187,186,52,35,34,33,24,116,181,172,186,201,152,7,133,84,204,124,32,185,175,1,29,88,32,125,36,95,114,142,133,196,24,65,12,
138,228,5,37,178,130,186,226,130,21,105,138,252,172,145,60,31,232,44,33,4,239,32,44,104,206,168,226,52,88,16,182,212,20,68,213,102,198,162,120,78,64,146,133,76,211,48,97,2,44,21,50,47,74,125,152,124,110,152,1,99,79,71,17,176,185,124,38,135,137,141,82,240,37,70,186,15,5,242,35,120,76,203,178,56,52,14,6,149,102,104,37,51,114,132,211,96,185,29,238,231,119,13,216,132,211,239,18,110,234,98,131,11,211,105,125,176,27,218,102,151,202,197,89,233,243,127,89,87,93,78,243,179,86,40,123,252,210,57,171,232,79,151,255,216,72,15,3,185,165,207,137,194,246,118,124,248,180,90,139,67,89,139,214,178,137,172,110,129,182,96,210,101,64,140,199,230,103,253,213,26,169,85,239,239,34,178,29,223,74,251,214,16,220,241,68,100,63,183,68,16,9,31,91,77,212,228,246,143,227,246,209,130,140,2,53,9,22,227,80,198,245,141,5,52,162,75,217,164,24,148,69,83,34,254,145,172,92,63,88,232,69,186,11,197,165,190,217,204,100,113,210,52,54,226,122,
210,80,56,28,222,232,31,57,109,129,149,55,153,186,45,148,19,118,63,188,237,251,207,254,152,78,133,208,23,106,127,176,131,211,204,38,240,207,86,35,113,95,79,159,119,105,57,248,194,110,136,15,78,184,216,134,103,1,99,8,128,37,18,176,152,29,247,222,49,152,119,151,193,254,124,7,68,22,230,30,93,134,47,96,83,112,25,86,230,176,201,58,53,216,101,129,136,33,57,53,143,8,131,34,189,74,182,226,90,8,128,9,224,109,109,95,113,189,110,48,98,237,111,50,249,40,230,167,85,209,68,194,19,111,16,29,103,39,76,72,201,0,120,0,197,183,108,89,75,105,178,119,240,76,65,191,154,124,0,20,117,3,255,242,236,92,20,170,104,4,82,130,221,241,72,166,167,81,100,85,154,1,97,4,97,189,201,97,233,13,132,238,36,176,85,142,8,166,117,76,106,31,8,26,34,15,157,175,153,123,7,97,210,169,255,19,148,194,3,33,178,179,112,100,121,38,32,113,106,198,157,250,58,9,231,141,26,207,221,56,241,61,149,35,163,246,48,53,17,78,143,206,231,30,92,91,
86,164,118,157,53,15,183,243,144,171,199,218,104,176,243,208,230,223,204,239,118,187,238,8,105,233,74,0,209,247,5,60,111,18,56,20,64,191,253,88,164,93,58,203,103,91,219,81,33,255,157,164,79,135,52,4,1,213,55,190,106,208,222,15,173,125,190,143,222,65,139,233,13,139,76,239,152,49,115,97,126,183,252,167,29,247,129,197,137,27,90,255,232,168,171,195,123,119,176,52,133,203,3,17,65,67,1,110,234,46,195,103,81,103,154,63,94,106,41,196,14,245,179,36,156,51,79,82,151,91,6,134,122,210,11,242,104,234,156,198,248,234,106,72,68,185,252,210,48,242,73,229,149,37,45,147,122,149,231,227,0,132,168,146,201,200,214,72,70,69,195,130,154,12,11,139,92,69,120,195,74,27,199,114,57,20,5,56,231,36,246,224,214,170,181,97,18,90,23,54,232,77,1,198,173,120,41,226,248,223,95,33,205,0,19,116,62,119,75,245,144,226,65,160,71,101,47,113,244,29,220,5,168,223,174,221,191,212,223,177,4,244,158,122,145,59,251,210,19,178,172,108,189,6,125,200,
206,107,99,195,66,64,210,94,110,193,224,238,91,117,3,118,57,32,7,99,4,195,187,211,221,106,201,32,1,210,148,79,190,149,184,109,76,142,206,188,34,65,62,115,244,225,102,212,161,51,165,109,110,62,182,53,103,203,109,185,218,180,165,25,92,159,188,62,68,174,132,22,98,106,62,22,213,243,147,109,70,112,57,87,72,226,142,4,201,145,121,176,1,157,125,168,211,178,124,134,119,118,140,166,193,155,91,132,130,115,25,222,68,169,60,5,80,52,46,137,16,18,148,253,5,249,49,37,44,140,144,129,99,191,17,193,24,192,9,102,3,106,160,64,40,90,254,121,199,224,159,228,84,44,96,248,30,101,3,33,52,174,237,64,204,177,183,226,26,10,211,178,50,65,72,98,224,249,187,234,113,15,204,216,120,199,28,254,238,97,170,193,95,212,233,183,102,121,162,130,49,255,146,102,10,208,130,80,206,71,106,43,210,171,75,133,8,104,130,237,197,100,114,27,30,159,203,241,80,188,169,171,64,10,118,113,160,97,173,18,91,0,236,5,181,238,159,30,86,184,240,128,3,101,104,206,
191,107,139,144,53,112,32,171,100,239,167,137,243,181,22,191,183,82,131,19,105,249,151,221,238,222,250,109,247,123,159,127,59,203,166,211,181,136,131,91,169,141,207,198,68,156,58,189,233,105,103,44,57,52,22,60,0,204,132,66,9,91,97,207,218,75,173,73,99,62,224,42,242,162,215,109,127,69,46,46,16,181,240,71,50,205,190,188,18,198,82,218,53,176,199,116,183,95,188,189,53,222,19,216,99,77,245,240,235,52,145,15,248,107,113,178,120,199,26,111,185,149,113,54,246,193,181,162,131,8,225,181,61,31,235,182,245,197,31,25,154,214,45,235,168,9,42,89,133,12,105,170,200,72,170,176,17,136,200,119,85,199,16,97,8,174,163,66,106,144,12,255,129,40,19,241,252,175,219,96,123,188,126,166,154,37,32,192,95,168,27,178,127,185,188,76,4,15,109,143,152,4,181,150,46,226,32,123,30,112,55,202,85,79,139,153,111,167,79,29,196,238,7,156,202,138,159,159,58,43,158,136,220,102,22,21,73,171,134,13,157,105,109,132,252,128,53,194,76,207,71,35,226,214,93,0,
253,69,116,0,126,241,212,184,230,59,32,19,4,194,191,241,104,53,110,221,130,134,84,148,8,114,62,98,119,237,126,30,152,242,17,169,103,187,79,245,77,231,187,144,120,128,219,9,209,224,128,5,202,15,114,237,179,89,131,109,119,131,241,223,173,29,65,187,203,41,22,63,149,164,51,110,249,23,124,110,74,159,84,131,97,58,26,218,22,226,21,16,100,72,143,192,130,9,124,152,152,71,31,81,226,115,194,141,55,56,3,24,166,178,47,169,233,230,102,22,160,64,15,86,77,136,16,82,21,85,7,9,17,213,161,18,22,224,98,134,250,207,164,251,6,146,88,25,121,46,53,128,67,241,77,30,49,123,147,138,27,238,110,52,250,192,135,117,136,76,219,244,175,117,6,117,180,170,45,79,229,140,150,241,47,1,255,59,35,180,165,249,118,1,68,30,163,253,225,121,132,175,183,179,213,240,33,87,240,177,28,45,21,63,183,101,168,213,73,245,233,5,157,2,223,211,230,242,130,109,251,83,241,183,162,148,214,126,178,211,190,250,72,67,56,253,198,159,163,158,64,172,191,239,57,80,
161,255,252,215,177,209,6,221,79,112,212,152,201,95,77,13,67,40,188,211,172,244,42,169,136,208,210,183,219,119,230,219,90,134,63,95,225,169,237,17,94,244,196,13,143,120,209,47,159,247,115,19,148,63,175,119,114,232,167,12,184,116,182,219,235,31,151,1,96,172,163,250,244,12,13,65,208,176,112,199,9,29,86,16,248,85,162,252,156,118,232,153,96,135,62,221,251,26,127,221,231,164,236,238,179,118,115,22,50,114,80,135,70,45,211,151,160,226,40,47,188,160,47,2,174,196,19,30,29,110,186,194,100,238,74,208,216,255,187,96,173,102,160,231,184,85,96,29,106,163,75,71,209,170,94,209,166,155,103,51,171,135,25,196,66,170,195,183,244,246,249,221,46,103,162,215,106,83,127,42,147,227,154,118,199,28,153,130,14,173,169,80,76,175,132,95,204,246,111,81,169,100,63,174,77,222,165,238,218,5,233,175,85,65,57,46,143,234,108,72,107,72,241,187,117,125,220,247,110,76,144,249,196,55,246,120,20,195,15,121,174,29,121,138,54,44,194,112,107,115,244,70,0,225,159,110,
67,56,99,56,84,152,6,204,112,182,198,37,36,38,3,237,19,5,242,169,134,93,158,221,21,241,37,217,41,76,20,0,9,182,176,57,176,14,89,58,135,90,164,80,252,79,50,201,1,162,242,179,180,60,57,75,217,223,176,228,221,1,223,51,227,113,143,91,230,95,241,122,122,109,98,71,192,227,163,130,35,158,91,27,139,150,17,165,14,20,98,18,152,120,85,7,136,120,117,238,239,74,124,2,114,110,224,189,91,52,179,116,178,248,196,236,23,32,222,6,78,195,103,192,39,232,84,168,169,9,106,242,48,168,161,67,84,63,0,144,132,142,217,33,100,25,113,233,129,204,122,219,139,132,115,175,34,206,156,60,41,188,253,144,14,27,127,246,212,139,153,217,34,210,94,168,105,19,249,194,195,54,231,39,80,53,100,54,219,247,96,214,71,108,95,143,203,122,57,85,14,31,46,82,10,42,81,125,234,26,98,6,10,255,28,81,247,187,138,215,89,107,95,3,87,217,171,39,90,248,203,156,0,134,180,223,100,197,151,211,251,213,1,151,92,182,227,61,205,191,128,79,235,245,117,251,
118,127,133,163,167,61,94,20,3,226,39,203,88,236,195,138,155,244,124,99,97,131,1,235,253,81,251,150,124,222,175,166,194,15,254,96,118,146,64,23,172,248,26,177,184,83,134,254,229,148,91,12,112,126,241,192,17,240,254,93,172,188,36,173,61,239,193,201,168,126,255,249,189,217,239,215,219,245,77,190,228,29,248,105,77,234,20,94,233,219,147,44,131,202,107,34,88,188,143,129,193,198,161,180,78,117,192,92,107,110,48,166,180,136,132,41,2,67,131,148,8,229,135,74,12,32,19,115,246,93,37,76,19,9,125,180,165,222,30,40,156,115,90,171,48,133,195,213,138,102,153,233,230,56,8,132,58,52,205,186,6,121,235,154,137,124,143,73,162,90,201,118,166,47,245,5,9,203,211,172,92,251,83,151,126,202,100,149,101,109,175,149,43,178,249,6,95,61,93,148,81,128,216,124,75,83,92,203,92,238,7,215,161,57,162,117,89,22,79,178,145,208,209,64,243,229,181,126,67,208,120,237,98,7,182,151,23,2,162,204,28,38,139,193,64,52,27,125,190,186,223,60,52,25,108,238,
139,193,27,55,218,205,102,175,213,171,182,122,91,42,111,89,224,240,239,115,55,70,140,82,164,94,111,95,184,250,31,255,10,94,20,55,104,31,173,252,34,232,146,5,15,6,4,176,142,49,116,43,62,65,24,22,20,122,139,7,10,73,36,66,36,193,234,238,4,19,133,178,221,128,246,47,6,104,15,15,145,120,147,24,66,254,217,113,137,121,123,37,14,249,154,151,149,108,103,159,220,207,203,63,188,221,29,228,89,2,142,0,50,102,208,168,163,205,172,101,215,66,117,240,234,215,204,238,78,104,229,106,24,150,198,67,20,148,5,81,64,201,58,77,233,244,223,43,138,132,184,21,231,62,225,189,199,16,136,245,185,6,2,116,24,80,211,74,107,70,254,83,131,103,93,31,6,169,15,12,125,161,236,195,8,38,217,117,203,138,76,59,250,97,54,104,54,85,177,191,121,89,22,189,4,172,102,155,194,241,246,234,239,46,151,67,95,207,163,227,247,53,217,124,94,135,195,55,211,94,181,67,237,208,119,248,90,52,15,221,160,254,115,255,251,91,203,154,196,185,231,95,125,217,159,83,
32,64,199,127,22,39,200,143,225,184,123,237,94,228,15,95,79,223,44,174,233,115,188,104,221,183,124,30,61,117,139,254,123,22,97,178,170,111,91,101,231,220,87,34,175,63,127,131,49,43,113,200,249,217,151,80,191,12,53,236,128,123,9,205,129,36,237,109,213,229,86,157,247,129,47,244,241,115,231,234,225,238,8,100,95,111,157,223,201,184,253,46,175,38,23,226,84,225,146,227,136,103,120,41,221,0,72,78,211,168,160,196,66,107,75,29,225,130,240,176,51,46,131,253,127,249,164,115,212,192,55,3,24,36,150,133,222,252,227,254,115,167,15,34,165,181,172,60,61,161,126,166,123,21,246,132,40,67,231,63,150,30,40,101,85,148,204,175,181,173,181,5,133,205,150,29,101,34,180,96,217,25,109,208,218,4,168,200,162,34,222,217,150,155,77,86,164,216,145,109,173,235,42,234,97,37,119,155,237,194,180,128,12,75,103,158,121,21,158,128,165,3,202,35,147,6,17,197,183,151,195,191,149,143,178,11,73,118,115,110,181,158,93,190,187,3,158,171,112,94,108,254,210,176,136,145,
117,21,7,213,138,23,69,118,67,205,104,240,231,95,215,7,248,196,82,238,79,91,231,39,177,164,41,47,207,192,146,34,33,120,80,188,45,100,248,195,195,115,53,18,230,149,72,218,17,117,44,144,59,99,0,27,51,112,7,5,24,68,36,80,10,49,241,93,77,161,168,101,250,195,33,109,1,245,254,53,5,110,106,127,25,22,81,180,82,119,121,65,207,229,117,211,235,7,184,173,244,241,59,84,219,235,66,80,76,25,143,231,226,56,200,39,6,198,252,149,73,138,25,251,118,118,8,213,78,133,3,192,214,68,195,143,12,165,126,41,184,147,3,136,213,77,20,49,51,43,26,97,158,161,217,162,182,197,3,94,187,166,82,157,118,244,120,224,252,137,190,3,201,40,245,70,78,201,206,148,5,86,21,6,0,35,85,193,216,139,165,187,155,226,253,96,147,8,155,128,42,219,20,85,32,221,127,52,212,62,113,177,91,29,150,255,79,9,218,189,14,40,237,139,212,215,227,173,122,122,231,132,146,127,159,147,233,43,188,156,223,247,142,67,85,235,208,126,206,51,82,56,28,56,77,7,
26,38,243,253,102,212,100,107,175,228,219,184,71,101,180,115,39,7,25,97,150,226,29,226,103,139,190,6,178,62,7,197,159,129,108,93,187,86,87,211,161,109,151,149,126,251,13,76,135,131,227,62,168,219,223,59,62,143,143,15,221,28,255,206,218,221,212,158,190,226,18,196,120,171,246,139,12,217,85,1,8,164,223,16,130,24,139,206,23,69,120,254,99,174,151,119,191,187,52,157,26,218,10,108,133,12,59,177,145,129,169,4,98,101,255,53,132,172,54,40,1,20,113,6,2,155,196,112,102,1,100,40,76,163,38,241,188,11,71,70,144,187,121,44,253,185,124,118,179,200,105,98,107,40,51,224,48,145,212,220,13,221,85,4,160,177,147,77,161,248,226,100,125,192,202,221,154,22,73,189,46,165,94,87,131,79,80,45,204,75,217,111,195,203,92,29,28,220,221,44,52,182,42,225,163,143,192,155,165,185,159,19,8,217,43,214,186,128,156,0,235,175,45,115,203,37,103,243,107,78,42,139,63,145,130,183,57,215,203,200,206,56,182,8,205,250,185,150,126,70,234,69,112,210,89,53,
98,42,223,9,249,93,45,136,77,240,248,42,130,187,208,161,243,236,30,121,53,167,142,66,218,24,121,213,140,137,142,58,80,96,122,192,226,137,86,7,84,179,3,167,208,78,73,211,33,84,141,143,181,109,24,210,94,205,138,141,91,143,200,228,148,21,68,15,191,100,249,193,238,223,255,28,110,139,163,167,247,19,196,156,101,97,68,171,57,16,239,15,221,159,252,254,51,159,174,92,158,231,203,231,25,248,188,30,23,159,16,231,118,46,28,20,48,3,204,38,34,20,10,69,29,128,221,12,216,192,176,57,101,192,94,37,44,207,177,44,174,170,47,206,104,6,71,80,0,64,165,246,220,183,92,41,213,42,157,107,219,156,103,40,213,173,54,172,130,107,183,26,57,2,22,130,196,41,115,106,144,19,11,124,160,9,156,138,70,182,117,34,196,250,47,36,159,222,47,100,49,205,38,190,87,1,131,186,54,148,110,89,157,2,8,210,159,216,12,235,141,224,101,110,204,7,62,250,197,76,44,206,144,222,247,17,41,128,41,175,63,46,143,119,215,174,55,97,240,106,254,187,75,188,66,195,
223,205,247,147,156,223,7,131,194,183,251,187,185,52,155,159,239,229,82,248,116,27,73,93,225,179,48,229,29,90,92,7,132,16,127,246,141,65,221,239,104,116,58,237,125,215,233,112,253,123,10,78,88,55,38,195,239,194,123,148,95,181,48,237,133,127,19,149,247,61,207,183,57,176,126,163,204,121,123,167,158,141,63,121,182,95,35,193,214,114,122,192,155,254,34,127,127,219,31,112,21,20,156,11,9,167,44,124,56,156,193,209,78,18,248,12,39,77,163,120,98,22,73,10,160,0,65,176,240,68,212,174,79,70,244,11,57,114,36,233,97,195,151,253,251,105,123,116,62,31,125,35,0,208,216,186,45,99,48,244,61,40,19,57,15,161,5,194,29,74,243,227,209,213,224,241,88,123,53,105,66,231,26,7,174,26,155,105,28,25,216,61,114,54,216,137,197,37,127,238,173,42,201,170,200,188,179,72,50,126,171,90,28,229,90,96,251,8,186,158,117,14,34,85,213,75,213,186,152,126,172,152,147,130,198,191,127,25,16,4,9,10,120,203,136,187,127,13,43,214,213,217,106,244,121,173,
77,199,84,69,68,231,229,52,151,122,29,169,195,170,154,126,67,61,189,167,140,147,107,224,25,241,253,102,163,91,92,173,49,13,36,12,101,60,40,149,43,174,98,206,95,179,83,60,193,139,90,183,111,233,56,194,14,56,136,192,144,177,107,1,128,189,133,148,34,79,1,36,40,104,236,12,219,1,36,198,142,37,7,128,62,107,79,11,40,132,146,132,45,96,152,22,200,92,97,183,235,228,26,95,46,97,202,227,11,34,17,32,97,32,124,187,115,91,94,159,163,225,115,216,89,92,86,90,81,218,112,20,97,232,44,192,91,69,15,166,17,115,109,9,128,248,105,23,15,130,60,129,202,168,231,146,89,54,40,255,153,122,138,42,74,142,52,122,2,170,3,223,193,123,197,2,55,211,5,188,8,161,110,11,210,70,184,186,90,102,94,148,83,174,40,160,82,116,77,141,167,180,236,1,97,224,130,150,115,8,163,202,191,15,145,212,130,211,162,100,59,63,35,210,140,211,48,64,162,223,54,191,195,106,63,112,76,246,134,195,57,191,116,168,4,15,238,133,134,221,109,255,20,6,50,58,
42,26,206,232,88,204,74,221,164,240,163,83,133,218,127,239,172,57,11,181,87,93,11,131,125,251,155,153,125,251,161,113,98,177,186,125,47,169,87,176,250,72,126,131,159,249,126,127,153,124,171,197,97,49,114,139,8,14,135,230,39,184,231,211,28,68,43,98,87,134,132,166,78,28,17,44,120,121,58,150,50,73,223,1,179,130,207,217,205,79,39,146,190,18,29,128,236,252,66,145,68,218,251,87,35,36,28,42,225,87,13,180,23,127,90,129,211,76,44,121,201,19,136,117,105,120,250,54,131,145,215,34,179,186,190,94,69,244,174,157,67,232,182,135,107,22,78,4,52,146,69,14,28,240,168,25,11,173,21,40,220,98,170,10,95,135,185,66,128,112,88,249,23,14,114,144,229,223,230,214,54,178,45,208,241,194,193,201,109,137,55,249,254,2,64,234,90,180,241,84,187,154,122,179,175,41,70,167,143,164,63,94,40,184,152,26,139,209,124,109,102,44,61,155,111,163,48,99,58,165,53,127,71,235,1,205,73,5,79,30,128,11,241,85,22,125,64,140,220,91,71,79,112,151,76,74,
40,37,149,118,45,181,154,238,64,61,212,65,1,119,179,44,33,126,221,177,66,42,158,163,97,237,254,213,67,60,126,244,182,229,7,231,59,200,65,155,15,5,183,5,237,9,1,140,40,204,9,112,45,87,0,92,32,237,185,164,187,144,202,64,144,13,169,208,44,109,131,128,163,13,197,207,26,112,108,142,1,99,239,70,99,238,165,227,25,104,232,141,237,20,8,42,183,9,20,62,185,192,245,159,177,230,119,65,245,191,195,177,230,80,182,103,188,78,59,167,215,157,224,132,177,103,195,72,35,126,208,41,176,7,213,158,201,66,88,106,48,183,56,159,161,85,204,210,226,160,135,6,80,144,131,148,33,160,125,146,148,182,246,115,22,31,156,77,113,1,25,145,152,186,93,35,26,151,92,60,93,127,94,47,218,55,225,211,148,53,201,166,130,78,62,176,38,95,91,71,23,211,2,105,90,52,99,253,249,32,46,17,201,191,176,46,1,246,99,205,118,66,163,60,57,45,224,144,160,154,88,8,40,61,30,53,253,62,239,201,98,14,236,143,111,156,230,130,111,98,94,186,14,63,114,213,
79,50,138,230,173,225,247,121,120,124,62,14,46,33,7,5,118,246,73,33,153,139,78,22,42,246,62,140,124,174,229,81,14,193,61,58,145,83,203,128,147,29,69,25,138,3,231,72,129,183,210,71,76,137,50,146,135,33,172,49,153,56,198,62,167,91,87,30,94,213,16,13,56,32,88,121,17,62,33,53,4,191,110,199,250,167,58,30,89,213,127,182,231,255,13,18,109,223,181,223,40,47,191,33,194,192,80,125,31,28,0,68,153,118,5,15,146,44,117,234,56,64,170,93,165,47,230,208,208,107,248,148,170,21,119,82,187,234,211,160,137,141,16,103,216,124,199,210,50,73,138,6,160,15,49,137,199,98,241,111,108,22,159,197,98,181,212,205,134,219,251,211,45,71,4,91,161,0,84,129,158,134,73,80,63,168,250,68,160,44,208,169,246,245,169,157,106,1,191,115,153,130,74,147,208,54,159,54,34,172,101,240,92,236,139,31,243,75,113,255,254,243,203,131,207,59,210,88,82,153,201,62,80,184,252,67,35,128,19,57,169,168,23,115,148,36,219,226,153,141,37,45,31,84,65,213,
190,165,55,208,238,172,144,17,138,190,28,154,20,55,126,241,143,250,220,95,143,195,165,224,113,153,86,18,53,8,197,209,29,204,90,26,20,105,43,153,11,37,161,48,66,107,58,70,70,244,98,141,191,107,113,14,109,193,210,54,159,202,42,95,29,94,255,160,161,43,173,208,255,143,169,122,253,80,203,16,224,34,79,55,6,0,10,242,180,104,2,147,197,102,144,167,145,40,39,134,69,2,123,230,148,89,200,204,65,67,185,54,95,217,224,145,207,43,80,248,165,32,139,118,208,94,235,218,89,68,108,102,7,36,40,252,120,105,63,217,215,60,240,57,143,254,85,108,4,49,61,51,65,12,34,15,5,88,193,179,0,7,128,98,44,14,56,186,100,14,130,12,1,180,215,53,5,143,67,131,71,17,51,77,21,6,11,90,80,85,11,37,162,104,210,78,236,106,0,225,159,229,122,50,131,9,233,97,38,107,39,96,26,238,2,33,36,169,29,31,88,210,96,145,111,217,41,205,182,115,81,131,118,23,82,68,213,105,112,40,3,120,78,119,97,159,91,138,252,210,172,109,54,121,140,59,
131,149,158,235,113,173,208,234,211,253,224,44,96,74,27,255,122,197,47,228,49,5,164,171,15,187,34,141,100,6,189,212,144,225,180,164,66,97,45,246,118,57,195,60,194,151,72,45,153,148,9,31,222,89,243,46,26,58,51,33,155,194,168,188,105,182,119,125,214,97,136,243,124,206,30,57,67,30,3,242,44,194,225,72,253,29,7,118,201,60,160,136,251,116,3,17,144,254,181,245,88,128,195,154,209,230,232,212,128,67,128,62,115,127,5,88,41,144,178,208,245,234,215,71,110,71,76,179,231,208,72,245,147,65,73,187,195,223,210,178,177,255,203,212,13,7,161,55,233,42,197,110,207,246,22,55,188,48,109,122,110,10,119,186,78,191,197,176,19,116,159,39,183,157,55,36,93,92,187,224,224,23,18,241,27,170,3,30,250,50,143,149,167,236,220,95,253,182,102,191,228,200,123,36,11,128,115,192,101,61,113,208,188,139,45,228,68,76,28,64,24,134,28,11,63,68,177,130,170,81,168,12,44,111,23,169,110,35,185,201,101,249,146,245,134,106,146,171,209,53,116,177,136,88,213,74,
125,22,19,148,211,237,214,151,110,247,182,11,121,250,245,247,208,207,30,92,197,251,110,211,139,206,103,255,222,201,191,19,154,97,47,15,215,133,196,81,202,40,34,145,192,129,58,22,173,239,168,18,77,42,5,180,86,84,129,249,234,184,144,223,190,251,146,195,235,244,46,212,212,159,232,225,124,81,233,224,175,109,81,166,179,228,113,30,212,137,100,239,238,175,166,148,90,242,135,19,74,44,39,190,164,73,35,201,233,164,245,28,213,109,247,81,5,193,191,229,138,113,36,112,25,22,124,128,33,194,202,90,213,73,163,102,101,16,161,99,180,23,212,140,223,202,125,197,66,84,13,152,105,180,81,99,190,242,252,1,121,210,14,149,217,130,148,82,6,80,12,195,209,244,123,202,172,196,253,107,43,75,5,209,228,107,234,64,98,20,98,54,6,214,153,218,69,167,23,22,104,53,60,155,228,217,80,58,24,140,25,193,140,42,138,244,245,35,100,151,84,39,19,42,149,107,199,11,162,150,106,81,44,96,158,22,50,95,155,182,196,133,144,59,149,218,78,141,11,104,30,28,53,100,80,224,
168,6,146,202,186,27,88,125,88,86,125,54,46,100,116,109,89,227,166,61,50,112,106,206,213,161,163,53,191,88,238,70,184,234,66,8,96,185,98,100,13,77,183,187,157,12,36,83,48,219,16,252,65,224,124,24,188,94,187,141,109,154,92,157,128,26,58,154,138,23,212,24,44,130,82,18,89,127,239,216,221,170,79,86,166,53,148,231,21,75,150,53,191,142,93,73,36,60,123,54,44,188,214,133,8,233,202,121,39,215,237,243,184,173,13,77,142,206,33,232,149,192,53,213,80,194,37,241,106,8,103,193,137,4,221,231,77,174,192,72,194,2,103,183,252,105,247,190,235,54,85,120,105,188,97,196,59,26,121,155,178,250,253,251,22,216,77,222,253,131,213,187,182,81,179,89,120,113,132,240,221,12,102,207,12,103,29,107,130,220,117,118,104,196,67,1,232,6,219,58,122,81,121,77,69,144,21,93,166,230,48,228,93,50,75,32,233,116,186,21,39,76,167,176,212,63,125,173,228,128,33,73,83,218,157,141,183,47,224,249,120,123,18,115,114,62,223,229,229,75,201,201,6,214,164,84,
170,95,213,217,181,254,152,237,28,19,91,203,180,177,251,197,191,206,173,173,83,152,220,198,211,201,242,5,62,231,251,249,88,210,124,123,157,78,173,86,173,17,37,3,0,9,131,149,22,132,184,7,241,116,211,72,15,137,16,172,118,81,45,25,176,222,223,105,87,125,181,154,45,28,84,182,125,98,26,230,65,29,118,49,50,71,92,65,4,5,50,117,163,140,80,85,172,175,108,21,241,99,22,52,57,44,212,63,255,164,215,64,179,90,173,110,181,218,238,87,60,62,87,192,19,36,58,221,206,120,171,211,191,48,140,123,232,94,57,235,231,209,74,163,242,241,92,190,71,145,125,111,2,19,193,73,174,252,131,37,146,191,44,18,140,79,250,158,55,113,207,32,50,250,243,254,219,235,68,56,111,105,1,34,84,215,4,136,212,177,219,98,22,75,220,164,141,55,96,112,18,51,59,23,180,31,81,93,28,32,235,213,226,115,242,208,119,88,191,11,69,153,10,66,128,24,83,15,12,253,144,139,82,192,92,106,208,29,42,128,208,138,33,32,120,192,104,160,11,79,77,106,17,195,69,202,
186,34,106,37,253,24,123,59,6,228,27,12,79,60,44,197,64,2,193,131,70,8,162,244,74,98,205,159,174,179,161,12,32,109,32,25,21,202,176,136,88,208,46,198,28,90,140,252,72,3,30,198,149,141,85,249,71,158,21,167,33,16,56,154,173,158,207,231,27,28,212,245,208,73,120,137,189,230,37,139,4,171,11,62,21,237,120,175,221,102,177,216,23,174,139,103,41,0,203,50,218,229,164,222,76,108,20,62,19,203,167,31,201,63,144,160,33,57,48,165,32,108,138,101,14,193,172,220,166,133,16,89,73,140,181,88,189,232,182,185,31,30,152,189,226,210,90,5,189,84,159,12,199,160,170,56,136,13,138,171,114,25,190,232,254,65,64,234,121,15,255,255,253,199,100,105,62,158,232,51,76,161,161,65,205,158,220,2,107,31,210,217,244,169,101,188,230,134,152,57,193,149,84,13,119,205,240,88,71,184,161,72,241,2,188,66,138,165,142,174,140,16,45,220,41,249,103,176,126,159,67,121,108,27,154,228,30,146,36,183,110,234,244,4,48,54,157,155,192,227,46,185,108,253,87,163,
209,111,248,124,8,127,178,5,201,117,233,247,217,179,155,145,116,219,158,176,143,73,133,173,175,165,133,164,175,233,209,149,237,72,61,76,201,119,87,7,34,236,67,180,52,4,76,19,59,129,132,36,140,51,39,81,231,32,202,203,3,215,33,159,148,112,136,222,140,231,28,12,215,42,97,251,219,255,197,254,16,58,250,254,64,175,89,67,79,224,15,175,57,144,158,219,102,8,73,18,134,32,219,252,110,37,30,234,140,182,143,203,71,94,118,59,116,186,127,95,69,66,251,10,172,44,39,158,85,15,221,35,224,170,38,158,74,63,175,13,87,123,44,174,211,170,250,215,94,56,13,204,141,113,196,251,189,155,137,172,237,68,72,229,252,106,241,217,137,124,18,159,24,39,138,41,67,62,165,239,166,83,198,68,62,149,223,21,19,133,98,34,87,36,167,211,127,116,103,2,72,125,3,232,88,100,190,53,16,98,47,137,164,83,127,254,37,97,239,92,61,165,247,155,70,169,6,236,29,184,24,21,138,85,158,225,134,161,19,66,228,37,137,251,213,130,91,180,3,215,224,36,109,109,72,145,
126,30,164,148,156,59,19,84,233,194,222,92,77,216,38,80,168,47,59,237,234,58,120,141,141,107,82,130,253,116,56,6,208,119,128,169,207,67,166,20,146,147,176,137,190,177,216,178,32,88,85,73,68,177,188,114,150,188,193,89,90,234,229,28,148,164,154,54,16,79,135,147,63,179,173,98,55,50,56,140,59,47,244,44,93,32,91,89,83,15,203,97,216,223,156,64,218,214,73,200,32,45,84,53,236,87,1,209,37,65,145,137,190,152,217,7,249,134,55,216,117,140,182,84,247,158,212,5,181,205,2,136,148,123,109,204,255,139,224,250,128,255,59,240,221,184,124,127,121,78,57,111,9,16,116,9,249,172,127,140,253,89,85,15,111,179,172,9,133,152,226,48,54,136,69,90,76,187,248,48,6,22,242,152,157,116,49,16,97,247,51,77,97,32,90,215,172,108,120,28,160,100,7,137,215,2,2,203,14,231,209,98,80,10,7,16,15,121,13,185,131,16,191,146,154,238,79,34,150,208,148,238,86,101,36,165,180,172,83,101,241,49,159,255,205,94,147,197,40,194,224,7,96,60,163,68,
187,186,196,211,43,159,114,142,29,225,249,200,1,118,136,103,222,8,189,49,170,5,65,229,228,210,1,78,14,217,143,193,82,86,230,207,4,129,220,223,0,209,9,250,144,190,193,118,125,151,31,71,190,245,208,176,248,47,23,174,151,125,165,240,217,120,238,101,135,26,228,133,53,54,221,62,230,88,124,191,20,151,143,38,239,244,233,90,91,94,71,191,230,255,246,53,58,80,32,242,182,241,132,21,198,101,248,91,180,203,232,40,35,15,110,153,130,97,170,61,101,129,149,151,236,68,3,79,151,49,80,127,112,204,180,210,95,101,44,115,125,6,208,250,38,94,67,116,110,84,45,169,199,93,140,205,192,70,122,28,14,207,143,93,159,78,103,213,74,184,176,124,157,159,59,190,27,131,155,98,224,245,232,214,83,193,96,173,132,49,93,62,205,143,4,28,228,235,101,14,147,189,45,191,27,69,153,187,73,253,133,164,193,246,154,107,68,197,95,205,66,29,73,194,145,64,192,252,124,164,248,254,189,41,92,190,96,126,33,235,244,138,191,29,241,98,255,219,137,74,23,251,250,88,16,16,
239,148,194,79,179,131,9,17,215,243,185,70,216,253,80,4,136,128,84,189,199,178,150,33,143,85,110,142,131,212,224,187,130,95,224,130,161,113,36,230,80,122,207,34,59,125,240,202,221,80,131,91,167,223,165,67,1,83,96,230,232,249,158,78,31,228,58,92,201,45,135,174,7,113,253,67,191,152,88,90,124,185,40,197,178,103,84,110,53,251,115,251,141,123,181,221,112,187,108,244,250,185,170,205,215,9,107,41,234,210,134,137,254,69,87,226,64,68,226,33,18,3,16,3,49,102,50,203,97,51,131,24,251,114,113,116,16,105,224,20,147,75,248,54,102,194,139,38,77,65,34,123,254,161,188,97,163,75,171,180,170,249,43,167,44,38,82,136,82,214,82,175,42,144,112,76,100,51,53,110,136,56,202,41,94,155,103,241,142,218,118,226,200,253,56,144,128,240,107,167,133,140,216,197,139,55,2,154,24,240,144,73,34,250,93,51,150,219,22,2,22,171,222,1,122,62,183,83,71,77,239,119,64,252,150,248,158,122,206,209,216,31,68,173,254,201,242,163,212,177,222,51,29,165,94,187,
193,254,13,225,94,60,98,158,95,90,169,232,190,28,227,254,162,232,162,192,108,252,142,133,100,183,214,176,169,54,14,57,178,110,155,46,30,63,84,234,71,29,145,139,52,53,106,231,54,248,218,188,94,207,193,101,184,243,89,94,45,117,117,121,158,132,205,20,152,62,112,22,221,217,219,227,171,155,60,77,40,242,215,123,87,237,249,255,187,220,59,247,46,223,66,150,146,211,240,114,92,78,225,91,24,122,125,164,131,201,116,241,90,59,30,110,43,61,129,229,188,155,168,54,63,176,254,52,67,52,203,45,36,191,38,180,99,20,199,75,82,235,105,11,100,196,51,184,9,69,108,164,200,18,161,168,6,194,8,90,40,166,36,39,19,83,67,3,68,19,64,126,51,92,221,14,96,183,99,107,166,152,1,74,211,221,138,51,158,181,63,74,152,243,84,58,120,21,49,65,175,126,246,245,62,137,175,238,240,244,58,110,118,163,233,99,178,123,204,81,70,70,1,165,171,136,112,246,234,38,243,185,53,115,42,11,141,141,152,193,187,236,212,79,97,211,6,74,125,235,172,11,32,79,42,70,
248,27,85,129,252,246,80,71,101,116,123,248,6,44,28,199,150,213,134,175,54,19,181,221,110,5,59,198,82,97,175,156,59,254,82,146,245,215,206,215,15,63,172,223,136,24,50,207,149,35,253,64,93,199,17,162,31,188,88,5,40,50,162,153,133,80,133,5,249,174,45,49,62,84,67,243,20,191,171,252,233,113,222,123,11,41,186,249,231,45,175,226,122,127,200,199,78,47,32,236,110,59,59,226,231,232,50,186,49,118,167,201,200,161,188,34,218,60,44,18,239,70,240,196,23,56,196,38,18,105,58,167,121,157,3,64,103,6,40,29,148,186,204,167,217,95,217,131,73,43,6,152,221,175,239,198,15,191,206,87,138,199,114,127,153,47,187,150,211,247,245,25,191,46,153,243,234,57,239,76,111,240,205,246,60,125,118,159,225,155,172,239,80,183,71,219,53,192,120,57,6,197,160,196,205,42,44,141,195,218,5,215,5,15,151,88,156,99,105,41,128,120,198,136,119,189,21,228,126,179,245,136,152,228,142,142,69,171,29,187,68,122,208,146,35,165,173,207,118,139,204,5,202,195,61,55,
132,5,243,16,114,138,101,99,153,114,124,53,101,100,213,0,34,209,2,134,202,74,172,68,5,43,116,17,133,192,38,220,148,209,206,115,96,48,238,196,162,118,237,252,207,202,138,116,255,31,9,231,208,44,77,215,109,209,191,94,182,117,202,182,109,219,182,109,219,117,159,247,187,141,236,102,35,99,205,185,199,136,92,177,131,203,168,25,40,18,91,61,148,226,31,250,114,244,246,183,254,164,31,241,186,28,13,10,40,17,186,62,107,137,77,7,157,237,168,55,220,246,181,75,213,165,173,240,32,37,42,99,51,244,5,203,139,223,244,207,200,84,25,224,59,243,216,108,78,227,238,60,188,187,210,247,109,36,191,160,146,12,23,186,50,191,166,131,21,3,152,137,74,34,142,6,87,98,174,21,156,198,166,64,98,95,186,157,114,92,70,1,249,80,48,104,48,209,236,185,22,211,221,170,219,220,38,175,77,213,110,85,212,23,12,0,218,237,222,216,212,174,248,113,121,143,30,221,127,219,149,204,134,29,196,130,58,121,224,166,15,196,106,217,57,29,23,195,223,240,112,187,94,54,157,211,
74,98,178,174,17,248,32,54,249,157,0,228,154,37,225,120,201,169,221,21,3,223,120,9,38,194,53,6,23,118,247,102,2,22,14,29,25,230,66,110,42,8,202,1,229,212,148,180,52,236,87,148,212,164,76,83,98,240,211,125,237,15,176,190,239,239,114,155,94,171,39,100,175,120,124,214,147,85,107,116,91,206,6,205,233,108,69,102,229,29,201,190,124,93,135,51,210,102,215,235,47,122,253,7,108,55,159,220,22,155,207,68,64,78,67,82,164,157,232,240,145,233,216,214,166,4,169,110,224,82,142,134,91,137,251,79,236,195,232,155,18,29,60,28,108,200,240,230,192,153,102,25,213,182,157,213,174,194,131,248,33,45,189,50,176,134,128,55,191,102,179,223,199,64,120,121,217,109,230,193,113,124,223,123,2,178,191,229,121,34,68,87,183,50,51,104,128,54,44,13,225,249,169,66,72,249,192,197,66,85,246,129,37,120,223,58,81,144,40,162,240,213,113,183,116,169,83,60,92,78,164,62,163,60,245,11,255,75,136,124,30,248,120,128,8,179,39,105,241,131,179,158,140,19,187,72,
161,12,233,59,206,172,101,33,244,151,188,1,204,243,46,64,186,95,98,254,148,252,108,223,113,56,207,81,160,242,91,205,241,227,215,236,191,78,21,167,157,218,178,210,123,237,54,163,217,166,180,88,109,246,87,165,213,170,163,191,170,181,102,181,218,110,87,252,45,119,146,213,186,147,254,112,34,224,29,34,121,32,34,200,226,115,61,94,16,66,167,4,19,139,55,208,145,5,195,69,126,203,80,117,59,8,143,233,101,49,219,200,80,144,49,64,2,63,96,62,38,5,58,243,104,233,82,156,4,197,231,223,230,204,208,147,224,216,6,2,99,100,38,176,24,254,57,157,192,5,112,214,121,6,134,213,16,74,3,144,95,46,246,253,27,29,61,188,5,47,237,244,46,76,114,75,182,46,106,3,202,75,193,192,175,40,46,164,131,76,102,149,207,70,125,77,37,246,100,134,220,253,231,3,131,202,32,213,100,72,123,202,7,157,86,183,235,113,180,247,111,151,7,116,85,161,219,237,186,228,107,129,129,150,79,139,214,251,120,149,68,174,117,165,25,192,175,182,106,182,24,60,22,244,254,1,
160,194,61,39,171,201,253,37,34,158,229,130,135,232,10,164,229,98,81,100,129,38,58,78,69,133,127,60,13,142,60,5,130,121,161,50,224,211,184,136,117,71,49,107,70,220,198,16,219,31,130,254,239,205,224,71,208,15,45,74,17,208,107,117,121,205,115,183,122,187,241,150,255,93,173,208,251,87,191,129,136,135,255,19,68,58,2,104,39,128,127,108,218,237,233,244,168,119,120,221,156,44,14,66,28,50,122,226,41,10,242,222,112,121,149,141,201,222,255,76,253,240,154,127,8,193,57,63,131,159,157,201,195,198,192,68,186,142,157,134,242,66,133,187,153,198,79,251,163,0,179,152,156,248,207,50,33,93,113,182,228,167,2,224,217,207,20,204,88,251,149,29,222,102,203,75,99,211,152,92,73,147,221,113,53,156,142,117,205,166,89,115,73,214,87,22,169,132,84,18,143,207,36,233,152,38,158,83,97,255,124,126,5,190,1,62,5,77,52,40,23,55,137,199,78,187,218,52,183,108,124,179,115,172,158,36,106,90,74,21,185,239,7,110,122,239,207,17,119,94,220,205,167,235,198,143,
215,84,206,201,12,158,216,214,78,204,75,66,171,181,234,99,86,187,13,145,234,140,117,93,82,89,228,252,132,78,76,67,96,80,200,132,68,182,31,44,125,10,212,148,132,162,52,44,235,50,36,251,192,158,128,107,193,178,207,62,174,78,126,188,95,159,4,61,11,254,158,244,47,34,33,182,167,38,90,60,72,49,14,244,16,90,135,30,11,217,137,252,19,191,31,32,47,206,4,119,214,246,40,0,250,167,27,213,129,153,88,245,19,163,199,35,128,146,211,109,196,4,82,98,22,170,166,29,175,158,30,91,79,216,121,53,219,36,34,206,207,102,84,254,154,102,74,87,120,107,91,88,20,47,188,203,123,148,77,181,100,145,159,132,115,82,80,63,129,31,3,251,61,64,219,245,95,58,95,31,207,231,115,207,29,82,39,253,35,104,212,244,175,90,181,221,240,48,124,238,168,79,94,90,172,84,207,66,47,207,7,11,208,185,133,59,191,28,188,210,166,86,193,33,181,96,60,115,6,73,14,148,223,42,179,54,121,70,175,179,110,253,126,183,143,109,173,98,254,227,55,39,61,203,34,104,
53,150,130,139,251,232,188,45,5,215,80,154,23,135,146,203,182,50,24,177,62,142,117,130,113,185,220,31,255,213,55,206,57,233,168,38,34,55,176,166,101,255,215,38,143,172,109,3,146,59,166,91,27,6,202,167,225,162,19,44,2,162,203,80,38,192,211,199,149,3,92,59,173,193,169,234,39,143,49,237,19,132,77,71,83,74,187,157,83,42,137,80,148,28,86,147,42,97,183,85,215,122,94,94,55,160,13,103,177,188,193,197,246,235,125,124,17,168,124,108,106,205,83,27,111,91,149,21,57,110,114,67,165,221,137,114,35,68,6,190,110,14,205,155,226,244,115,210,145,84,22,171,138,48,29,37,57,173,0,245,6,198,8,135,161,39,136,160,89,56,0,54,144,29,145,54,178,166,183,244,153,214,53,234,150,165,118,142,247,55,185,249,190,119,222,47,226,92,214,88,222,229,7,249,222,33,190,126,31,217,243,63,117,67,63,191,42,46,43,135,33,227,36,176,24,49,74,10,131,67,196,179,149,128,189,191,66,2,124,111,118,181,63,218,94,124,105,117,185,223,63,87,124,111,121,80,
181,254,213,156,110,140,133,194,66,133,185,144,136,15,71,70,223,188,153,128,139,64,133,135,189,153,129,134,134,158,153,59,9,36,180,81,97,240,180,31,28,231,73,5,126,153,34,237,19,231,133,29,94,230,26,251,150,28,235,124,120,95,254,13,235,239,233,185,57,248,189,175,143,225,54,114,244,125,39,201,64,37,25,192,112,231,151,254,242,121,213,79,249,91,30,154,152,250,130,165,162,200,254,12,144,218,250,70,233,144,152,7,250,83,44,139,183,233,40,83,140,26,77,134,205,246,119,245,200,218,30,12,161,187,254,13,249,191,119,25,102,231,254,29,20,196,20,185,232,129,123,196,203,198,46,177,161,194,4,197,128,92,212,162,16,86,76,36,194,123,167,190,8,115,171,137,127,210,35,57,9,224,74,177,36,163,57,97,176,206,43,24,135,153,156,5,103,228,29,211,188,50,195,204,35,36,138,20,145,144,193,104,18,185,227,31,201,179,139,98,117,211,94,26,18,206,125,173,45,155,247,5,54,96,16,125,159,79,103,109,23,162,237,0,39,95,130,78,198,65,203,119,64,34,218,13,
70,254,78,251,248,128,29,192,250,187,134,246,224,191,73,199,196,107,113,74,195,107,98,16,90,221,97,115,242,226,99,213,251,140,55,131,254,67,114,154,190,102,203,83,207,50,184,109,78,189,73,159,178,112,153,80,197,190,0,254,34,203,219,117,127,15,56,143,239,247,243,120,12,56,159,215,235,245,251,234,223,126,39,151,209,235,134,239,207,215,75,245,239,101,109,168,189,104,196,141,177,47,188,74,165,147,212,59,152,114,162,252,52,37,64,199,131,156,148,173,14,21,188,1,10,34,145,168,79,2,154,138,116,232,194,0,213,4,117,148,209,82,193,170,123,22,224,98,128,149,120,227,156,203,91,248,3,211,226,67,40,204,81,148,63,243,248,156,52,140,115,165,150,154,7,13,57,223,182,35,45,25,185,126,65,154,64,162,233,133,88,122,19,165,65,170,53,165,249,156,20,159,106,24,159,204,140,63,53,14,249,73,216,24,241,18,207,167,104,203,179,247,6,134,130,52,29,196,91,183,7,93,31,85,70,208,175,86,145,113,224,191,165,177,248,245,78,221,155,156,106,145,214,209,209,44,
250,102,215,223,78,248,1,18,235,60,180,164,25,165,174,101,103,131,205,69,165,36,46,46,13,142,132,180,187,155,216,172,2,60,254,129,246,104,42,36,41,190,71,233,216,35,171,0,222,6,169,95,148,157,72,70,153,51,134,121,57,13,128,99,83,200,165,105,38,244,49,51,221,117,142,182,201,226,85,149,230,197,251,44,120,118,66,236,103,65,217,100,242,189,32,164,20,53,159,3,151,144,79,123,219,249,220,94,93,110,198,70,194,218,2,190,139,125,62,194,193,91,95,111,82,187,56,223,95,155,175,127,56,64,221,92,95,109,115,58,57,222,94,89,109,71,222,131,110,161,111,94,76,160,227,98,67,98,216,56,229,34,35,0,14,0,36,36,246,51,98,225,161,236,53,19,81,225,18,128,24,96,172,175,125,0,10,160,21,50,146,225,18,35,124,117,146,227,227,209,226,219,246,187,87,104,224,159,3,49,158,234,73,204,52,126,147,195,228,180,57,237,58,146,219,241,2,78,118,23,164,222,245,52,91,94,206,153,197,97,162,233,146,162,189,220,132,173,62,58,11,152,132,138,190,57,
152,253,171,40,232,99,40,89,27,14,99,152,63,163,203,128,117,27,31,95,107,26,125,32,111,201,160,103,47,135,217,235,122,120,61,55,16,102,85,82,165,32,235,58,251,143,69,90,242,160,140,88,81,142,151,140,176,100,64,5,224,131,162,191,85,157,114,108,107,204,204,50,223,91,36,67,184,144,66,144,20,20,19,219,204,144,124,140,252,167,41,146,69,180,201,181,200,79,213,138,24,160,151,207,23,89,53,53,215,24,55,76,108,191,94,188,169,226,237,231,4,72,55,61,14,178,120,220,40,223,31,64,226,3,201,5,224,61,74,143,128,185,181,31,174,1,2,51,61,2,157,56,248,105,145,170,255,30,125,179,8,177,7,120,217,125,32,9,3,172,184,255,185,13,23,175,181,117,112,130,16,239,60,223,192,243,4,160,101,178,42,143,44,66,31,4,15,192,3,154,191,54,121,204,61,66,28,237,20,6,59,204,175,115,251,55,245,249,254,39,207,23,9,144,7,228,239,225,120,84,42,150,206,215,227,71,164,78,171,34,40,115,1,38,16,8,171,48,246,175,207,95,207,178,156,204,
245,120,192,136,93,82,47,60,255,238,37,45,165,67,219,102,181,168,84,81,165,10,133,192,1,94,161,21,100,200,69,176,18,58,121,65,17,3,18,107,73,9,228,9,44,37,216,15,208,98,162,158,165,131,119,159,95,25,89,153,232,101,236,205,195,56,17,254,241,210,103,218,20,135,34,147,233,75,108,4,229,108,184,56,136,77,178,201,9,223,186,250,92,71,241,76,53,250,153,142,227,94,194,105,143,195,135,167,177,226,151,117,10,161,201,14,228,40,112,246,43,153,71,103,122,35,45,242,11,137,167,254,121,254,71,227,84,7,125,95,113,142,185,28,94,172,217,106,252,211,74,73,227,232,81,143,7,196,61,2,134,125,3,241,228,63,176,93,229,109,255,41,103,226,63,91,203,21,27,141,90,165,194,30,3,187,240,147,75,79,82,80,138,3,25,175,62,132,75,76,6,133,75,177,24,141,232,75,208,9,77,212,1,46,221,49,200,72,93,28,111,82,49,96,92,4,210,179,241,90,161,170,233,28,24,207,215,235,207,123,58,158,109,37,218,182,162,172,170,60,93,151,239,38,50,15,
245,120,213,207,47,213,125,217,104,54,156,228,197,228,173,73,215,233,181,38,9,147,222,128,193,220,3,189,117,29,133,214,99,231,161,40,156,10,143,162,84,49,221,182,195,171,105,227,224,23,191,229,14,23,217,236,32,200,237,87,76,192,245,251,159,233,164,36,114,234,195,103,224,147,55,247,206,221,58,169,94,139,215,131,0,227,127,145,46,205,190,175,106,196,10,183,0,169,20,98,226,194,58,26,80,32,85,33,196,217,128,2,192,249,9,140,0,105,28,41,152,205,149,154,187,199,200,200,94,28,220,174,46,93,58,233,198,109,210,41,97,62,172,75,167,113,171,148,218,87,129,136,223,69,23,102,248,138,183,255,230,238,169,247,159,200,113,82,170,17,57,254,83,48,130,180,32,126,253,171,52,251,179,172,233,187,235,212,245,169,236,60,129,229,118,239,173,190,86,142,142,202,50,172,173,175,176,77,135,106,218,73,246,69,215,48,110,86,92,44,84,39,125,255,96,172,58,205,58,99,187,229,188,212,219,174,122,203,214,36,183,60,144,148,37,3,187,42,162,190,91,211,28,24,84,205,
114,211,129,43,90,103,74,7,27,41,211,139,40,225,60,40,164,16,203,97,113,137,1,131,163,117,7,55,154,152,144,75,2,30,101,149,20,88,180,142,4,83,2,157,118,68,80,105,169,186,164,172,22,236,155,222,109,141,160,7,170,241,115,101,75,8,134,17,28,196,147,199,33,223,203,31,52,4,72,117,112,223,32,224,151,241,247,227,49,249,222,75,248,23,37,124,124,183,176,77,53,245,29,157,195,159,4,17,89,251,66,145,16,92,196,170,61,92,51,93,245,170,155,126,93,179,146,166,52,104,234,137,125,128,227,28,115,5,155,118,212,57,79,6,11,81,59,42,67,214,179,38,78,26,242,26,189,49,85,178,13,16,42,43,124,143,183,178,53,100,239,193,192,119,78,79,118,230,100,222,180,186,52,254,122,205,162,116,218,237,174,247,161,193,32,99,22,213,220,227,140,14,79,86,64,253,207,18,152,247,201,111,134,176,29,120,223,215,251,181,216,102,14,88,132,112,197,98,57,250,187,202,176,117,41,166,164,108,209,81,97,230,228,48,18,114,138,176,118,28,11,89,37,168,115,80,
147,190,49,83,153,177,176,88,78,185,131,160,146,44,20,215,68,146,138,82,148,73,206,52,137,85,33,9,32,146,151,162,228,4,235,145,141,212,104,223,240,233,101,184,103,236,37,177,215,59,45,14,123,211,237,115,116,188,246,110,167,209,230,200,48,48,218,64,191,169,54,5,172,0,141,55,33,5,14,75,230,40,53,150,127,78,172,211,161,18,137,148,94,120,223,239,14,201,121,234,191,231,165,247,27,253,195,53,231,245,196,234,126,63,239,203,247,176,153,244,42,232,78,71,148,205,3,224,178,7,195,24,225,39,17,80,105,177,14,170,195,128,97,248,252,201,68,73,65,164,168,146,161,198,205,67,97,18,4,225,96,159,205,203,189,178,132,144,113,171,148,51,142,234,226,124,140,182,86,39,150,234,12,110,187,222,247,254,219,158,193,251,112,238,119,255,109,132,176,190,107,247,224,238,118,127,62,171,207,119,208,184,249,40,144,16,109,44,17,64,234,166,115,45,223,144,212,72,166,80,129,90,139,147,66,97,156,169,181,3,52,8,82,26,56,227,42,80,66,21,128,127,78,218,170,178,
210,194,183,78,221,157,208,53,128,35,112,210,105,235,186,112,26,7,59,85,13,190,29,16,241,67,6,244,179,43,160,155,179,206,78,224,223,157,182,89,177,112,58,135,119,75,1,129,50,88,128,104,124,113,137,90,157,202,134,245,251,250,151,24,206,54,222,91,93,65,254,237,115,8,75,202,60,134,254,44,244,72,85,23,86,38,169,153,133,130,117,245,224,132,207,161,213,218,215,228,88,31,109,52,182,217,155,107,84,201,236,237,180,107,141,227,201,166,47,81,80,101,212,20,115,22,20,113,52,91,225,163,177,32,170,132,68,86,196,209,20,156,6,130,0,142,129,93,93,67,125,44,136,242,94,94,57,9,132,192,142,97,224,168,120,63,8,56,53,180,156,2,199,33,21,18,207,31,220,120,37,28,13,26,250,62,181,74,8,254,24,250,69,215,203,105,150,209,38,145,66,141,128,2,225,148,240,192,43,70,74,136,254,63,99,100,235,66,15,63,127,218,172,111,176,110,109,125,161,211,94,199,33,74,16,154,216,188,242,70,219,199,94,110,216,0,86,253,189,124,122,74,50,148,109,124,
62,97,180,191,186,56,101,20,100,215,125,51,223,29,5,198,139,179,238,154,167,181,183,119,129,102,170,235,27,174,85,20,210,109,144,137,110,198,8,179,44,210,77,138,64,83,109,200,89,168,131,79,65,210,156,163,90,52,185,83,186,185,128,130,0,174,253,158,39,116,198,122,250,237,165,34,23,126,215,104,115,48,40,52,124,147,76,102,228,154,237,198,94,239,251,128,253,238,210,180,230,23,104,251,245,43,44,234,179,39,19,123,205,4,13,234,113,249,254,225,230,112,214,12,46,155,201,200,141,242,73,3,220,80,172,73,198,18,168,156,37,14,65,84,130,136,36,208,69,242,179,130,153,67,27,207,33,67,165,103,160,208,11,115,219,18,122,166,148,121,71,197,149,75,234,63,58,184,133,138,115,120,100,131,242,178,51,250,234,203,80,35,156,129,99,87,225,75,219,104,115,62,59,73,175,122,215,245,105,62,221,63,143,247,239,189,220,252,86,112,150,10,13,246,128,59,143,245,178,69,75,69,108,104,7,134,244,162,45,101,196,41,55,191,108,240,4,162,173,54,183,219,97,182,222,247,
89,69,47,68,7,9,93,111,0,5,24,119,42,224,123,176,18,170,242,8,219,238,231,253,224,191,203,241,121,185,217,176,90,134,143,51,146,183,235,136,152,24,50,140,9,214,135,11,51,45,192,111,64,198,24,38,104,14,66,153,133,141,156,132,245,16,75,75,97,9,106,91,70,2,117,25,12,116,25,201,168,119,173,198,232,187,26,190,50,94,7,189,219,99,191,220,118,143,207,229,242,222,63,223,219,107,24,233,232,62,161,19,60,102,175,242,206,149,85,172,246,175,65,188,143,219,114,243,146,179,202,254,146,5,232,3,184,185,237,253,114,19,211,233,98,128,221,227,251,88,185,94,39,86,6,229,230,175,129,64,128,153,143,38,81,21,10,63,140,132,176,206,249,184,2,73,156,42,11,67,189,3,59,85,185,248,187,85,104,132,90,209,151,107,233,24,19,247,60,145,169,135,177,213,200,142,41,170,231,59,53,97,19,135,58,180,179,28,209,184,5,203,37,211,250,254,73,216,161,34,191,222,62,132,200,254,114,64,246,32,164,66,229,247,130,22,62,173,203,149,219,184,225,217,98,27,
206,158,31,21,189,206,57,9,90,28,144,238,236,36,87,221,58,144,159,44,137,121,11,241,17,155,190,199,66,151,242,202,236,58,218,169,82,154,12,76,244,216,72,109,93,235,75,229,52,251,138,107,173,202,137,5,4,118,73,152,38,222,174,185,146,149,227,230,232,44,144,36,39,10,81,128,164,153,129,178,61,157,35,39,96,186,91,33,241,14,83,160,193,1,68,36,184,96,142,41,164,128,152,156,193,24,163,228,84,80,42,253,73,255,198,103,18,17,25,99,60,32,221,116,220,177,176,55,195,224,171,51,103,156,202,134,223,158,98,77,183,83,59,233,84,48,80,38,166,152,229,162,68,95,212,165,252,180,222,139,180,123,118,64,165,93,53,130,252,249,104,97,17,132,221,229,245,188,13,223,179,205,65,105,75,154,117,47,123,189,101,99,45,217,40,179,35,23,166,135,253,72,254,177,61,243,140,221,139,124,238,220,236,139,91,45,205,201,182,79,50,163,139,86,216,16,103,152,6,34,90,165,91,205,94,125,136,145,185,161,204,23,49,194,46,226,23,229,166,41,214,20,93,36,104,23,
57,226,206,153,17,52,246,155,71,46,65,20,116,38,214,197,230,175,78,93,46,23,60,166,147,201,106,183,218,109,247,227,250,190,247,251,160,102,249,241,17,191,1,194,119,107,14,90,255,146,162,118,149,126,199,247,180,180,59,255,19,72,112,24,174,50,205,240,254,56,203,245,154,124,2,61,171,133,171,133,217,146,140,168,161,162,3,19,42,234,110,58,98,26,101,227,69,69,170,128,229,40,165,104,169,20,165,6,151,212,85,244,194,110,195,119,226,50,186,80,82,89,148,162,166,149,225,225,125,22,89,207,96,211,223,109,55,88,155,157,154,187,189,238,56,108,54,155,195,163,116,187,156,94,175,237,125,255,190,175,251,125,255,28,101,86,120,158,175,221,49,116,56,92,110,118,118,186,180,140,62,132,144,30,220,204,139,73,113,170,148,31,186,235,205,223,247,246,198,128,221,147,175,76,141,6,62,94,232,119,139,214,119,23,24,253,212,97,117,11,251,58,29,55,155,205,141,103,100,43,216,214,182,98,107,140,72,145,161,110,76,115,69,195,212,24,164,247,67,190,34,84,3,180,141,131,
97,16,223,72,226,82,19,32,89,10,66,145,164,208,177,197,21,57,36,40,89,132,83,63,200,190,172,91,179,179,229,163,58,219,28,231,155,245,124,116,151,207,87,188,238,211,250,3,220,159,231,247,245,120,5,60,14,255,109,46,125,115,188,215,43,254,167,219,77,123,193,35,8,175,235,34,0,43,183,247,251,7,132,225,186,160,24,109,2,255,2,250,253,111,133,5,255,214,250,1,91,239,244,217,29,107,215,153,141,6,23,155,176,32,57,90,200,119,166,246,36,178,228,95,63,168,226,155,194,50,121,108,150,106,139,216,116,3,239,219,52,89,19,189,51,204,15,194,122,71,136,246,126,250,121,105,87,169,225,39,29,128,94,115,69,47,192,75,37,76,235,208,31,43,202,97,104,182,160,197,53,76,238,126,212,158,89,202,3,142,97,186,255,16,208,163,93,0,217,188,30,64,215,14,47,46,249,121,109,245,91,131,57,164,99,123,154,246,79,145,190,182,98,94,61,131,220,242,182,113,218,206,19,164,64,165,240,104,43,249,59,74,87,174,84,67,211,185,118,167,1,94,94,34,189,243,
210,80,117,100,84,151,134,117,17,7,52,166,96,136,48,199,3,71,77,106,213,81,162,38,9,17,12,35,87,162,54,40,12,169,128,47,103,219,25,64,127,2,81,151,208,124,217,177,65,20,164,65,51,152,166,191,53,118,185,153,239,170,159,135,108,44,38,10,147,122,76,251,187,172,141,88,99,136,74,38,159,144,2,248,156,90,116,139,77,39,201,189,143,169,216,62,198,209,56,115,22,173,24,142,86,186,217,221,243,106,20,140,88,186,243,205,208,119,222,122,207,10,243,254,194,65,92,158,68,184,241,112,218,30,168,234,74,223,180,112,86,140,216,161,214,87,41,238,122,89,255,92,84,240,98,96,132,90,231,160,175,240,28,254,177,54,23,170,65,75,141,108,146,122,4,15,147,181,163,54,108,225,167,68,142,43,142,59,160,56,110,99,198,150,245,252,22,136,149,218,172,216,21,146,166,221,189,248,123,48,104,238,72,226,66,128,115,216,215,193,103,165,159,131,228,248,103,247,90,173,22,147,173,255,122,3,217,135,207,222,118,29,124,116,191,29,20,124,40,205,44,239,84,89,151,157,
92,98,63,191,115,165,213,121,217,157,206,102,204,229,102,170,53,112,126,82,178,32,55,53,22,181,138,185,167,128,50,154,134,46,132,102,53,1,2,42,5,43,189,81,243,50,170,12,74,165,64,57,51,107,114,57,58,16,80,34,106,131,138,74,41,207,168,244,114,226,120,205,166,249,198,66,124,25,255,21,180,215,225,250,29,110,251,35,241,194,174,249,190,191,67,230,0,207,237,124,223,243,246,80,210,241,190,223,203,232,171,243,125,206,248,223,247,55,28,84,10,137,69,210,148,76,254,5,248,134,153,102,130,201,214,142,220,122,188,199,186,199,94,173,219,80,183,253,179,12,190,80,51,255,251,232,20,232,59,198,221,215,243,62,206,223,199,227,253,154,201,123,60,166,220,216,213,85,15,234,7,82,253,108,69,104,36,129,97,70,244,13,13,60,187,226,204,152,235,232,65,42,159,127,188,155,252,250,241,164,168,44,68,201,199,210,188,156,79,235,230,13,58,199,117,171,43,56,216,170,99,143,115,181,17,182,71,205,185,82,113,18,238,184,171,195,209,174,211,181,143,173,106,189,89,175,
120,223,21,159,197,229,116,218,172,78,171,211,109,119,58,248,142,219,115,255,128,42,112,174,237,243,254,238,200,53,0,14,104,253,221,250,220,195,94,71,152,233,182,215,110,187,23,229,224,189,190,217,107,162,219,228,118,53,80,250,68,202,161,217,71,126,209,15,87,22,245,170,179,115,85,49,91,196,116,149,163,145,74,46,171,231,194,9,86,209,179,133,172,9,133,173,155,194,50,181,150,138,185,205,156,153,45,15,208,202,4,188,249,39,186,21,50,147,109,34,52,179,69,208,130,13,233,14,229,98,73,147,48,104,13,55,144,214,61,47,129,183,121,254,159,81,112,59,224,5,125,16,67,187,142,13,153,10,3,59,238,213,247,43,60,153,47,185,185,187,193,141,205,255,131,124,162,89,217,236,246,188,214,209,23,208,118,126,13,102,32,127,80,169,90,95,201,0,229,176,228,228,197,111,239,183,47,120,235,211,205,35,118,169,32,103,182,114,251,90,148,187,52,92,129,6,96,5,123,96,123,218,224,138,30,122,182,120,23,168,83,84,147,162,205,4,129,65,128,43,160,31,87,86,144,83,
82,28,26,166,164,73,220,178,162,107,146,168,255,14,76,76,45,207,131,177,238,248,161,84,58,235,143,154,218,41,133,214,1,205,175,1,213,176,77,155,15,76,72,87,32,67,57,21,181,165,198,13,205,141,167,28,218,9,200,93,132,94,228,185,28,131,38,144,174,234,183,55,113,192,94,125,118,14,199,235,22,118,157,114,126,228,251,192,220,149,23,159,215,110,102,252,4,12,247,118,166,52,75,243,45,16,147,103,165,95,105,161,167,4,231,84,253,0,108,47,119,99,132,105,111,83,87,149,187,196,183,103,8,112,84,225,34,76,250,5,155,113,51,42,197,13,0,116,2,20,32,170,153,69,11,88,83,93,84,228,209,145,40,168,124,223,168,36,13,53,104,4,6,109,29,252,230,151,6,113,67,16,194,30,16,218,128,75,67,219,183,179,209,104,119,90,189,110,203,231,56,218,93,223,195,235,126,197,127,55,50,248,205,231,225,185,95,143,195,71,199,95,230,221,237,242,244,113,38,82,107,60,129,206,231,141,115,252,52,242,95,239,254,184,227,231,144,28,64,215,61,253,174,178,89,129,
250,219,133,74,104,236,134,195,41,140,215,14,154,244,164,109,171,218,218,105,189,185,130,233,102,143,166,148,200,151,161,40,32,8,81,160,34,79,222,214,138,206,32,209,208,16,248,66,170,32,174,255,68,157,248,97,82,212,11,167,32,173,158,2,81,177,188,123,140,203,254,90,251,62,175,233,71,246,225,121,223,199,150,172,87,251,126,74,190,159,172,255,145,237,30,187,95,237,84,248,219,225,115,89,63,40,12,112,112,22,54,116,131,96,166,253,170,25,226,113,167,170,87,154,45,114,246,183,8,108,63,159,209,235,199,251,189,126,36,222,215,141,188,223,22,54,27,143,247,59,76,67,186,157,175,11,250,30,174,165,221,45,224,127,254,221,242,4,176,74,161,164,95,150,224,187,144,20,38,193,30,48,173,234,131,208,6,134,166,48,10,4,67,236,209,85,209,52,224,95,2,247,92,142,183,184,162,84,196,206,245,123,169,150,212,44,105,43,170,212,70,46,93,158,171,123,37,206,189,142,124,85,237,37,88,223,46,217,30,111,137,117,23,204,174,22,138,163,217,250,141,19,127,155,230,122,
181,92,112,87,216,207,120,197,224,240,24,42,6,151,197,250,188,195,194,126,187,235,95,122,223,200,228,131,3,224,253,80,235,51,10,249,111,111,95,238,109,249,60,50,214,20,7,85,40,158,133,226,153,244,206,237,215,131,99,132,63,34,30,51,106,231,32,100,31,239,72,203,228,26,69,211,54,33,0,75,210,1,5,196,197,75,18,53,155,79,62,167,60,5,143,101,93,9,109,61,165,21,7,222,105,238,242,89,191,160,229,221,60,54,177,221,188,213,77,153,152,210,210,114,255,137,214,55,215,39,235,95,249,229,215,248,37,108,160,27,223,208,95,91,167,199,161,60,69,73,89,186,135,123,77,250,249,13,21,199,250,28,92,190,49,228,21,178,186,134,79,145,195,224,42,131,185,74,134,85,157,42,139,5,11,150,231,188,132,183,120,241,89,148,85,173,4,126,179,146,254,224,202,136,228,203,111,160,129,80,77,243,86,240,137,212,219,61,251,109,26,70,103,81,57,142,222,18,78,51,77,66,49,113,130,95,193,71,176,179,161,177,187,56,182,208,37,169,134,200,193,188,178,202,190,140,
48,67,47,231,69,101,246,95,144,144,194,56,196,83,29,173,178,54,86,48,112,181,5,83,15,236,8,83,63,244,239,132,200,104,22,125,234,90,62,174,89,222,40,72,24,206,201,83,211,9,98,62,19,73,131,109,152,245,48,240,47,96,248,238,182,247,5,134,100,93,189,231,0,111,148,155,206,238,243,11,189,197,208,125,29,54,176,11,136,224,55,243,238,166,235,102,175,90,128,75,5,111,206,34,251,105,84,221,216,173,56,180,46,168,200,200,201,189,42,236,51,83,80,28,105,250,106,208,171,249,107,62,145,146,234,31,168,94,158,128,114,204,120,104,169,154,34,105,134,148,186,49,73,243,87,80,102,191,2,20,86,18,180,77,213,2,229,116,55,137,126,112,98,232,10,173,253,26,40,59,191,57,87,1,61,11,3,239,44,212,119,51,43,83,229,11,239,56,92,54,155,211,242,62,224,193,251,57,200,100,122,35,151,171,166,151,199,82,104,185,60,198,187,191,67,176,127,231,71,155,253,110,61,239,92,218,3,132,58,57,240,128,222,108,122,128,111,38,232,218,63,68,172,254,99,197,
21,171,21,10,37,226,167,76,103,240,232,86,145,26,41,212,169,230,2,164,102,227,134,212,128,37,69,253,180,43,211,135,70,214,206,170,214,178,186,84,154,138,114,98,6,120,242,151,14,20,82,42,131,110,174,82,21,101,218,76,94,108,34,174,230,233,239,121,126,251,173,172,215,91,253,222,57,59,123,103,251,253,14,208,28,53,250,251,205,54,161,213,39,68,22,36,198,203,185,178,179,156,82,140,138,241,80,193,93,203,42,206,178,141,190,185,54,110,231,253,238,129,254,196,108,188,239,67,119,103,111,128,230,174,171,199,125,245,222,16,241,126,255,188,139,236,247,199,118,54,147,225,119,57,109,111,205,61,176,51,51,150,116,97,37,50,55,40,153,190,174,14,51,90,209,81,202,142,128,225,83,62,114,216,64,34,133,71,9,130,56,47,152,136,81,130,234,65,134,68,220,230,195,48,241,36,113,120,150,148,90,231,25,109,196,211,32,233,202,128,83,133,154,218,221,93,200,122,196,191,177,213,57,221,229,228,25,24,240,64,204,38,100,156,126,198,104,177,179,186,87,248,25,248,240,54,
218,185,216,152,41,48,191,59,233,217,39,32,96,167,195,129,112,114,96,239,108,67,222,185,91,170,215,98,241,122,119,14,5,83,244,91,18,129,232,66,91,173,9,255,90,103,204,96,40,197,240,250,149,176,65,111,104,132,161,154,128,18,121,172,34,79,75,16,113,120,223,24,96,87,55,44,158,191,22,79,200,144,108,99,213,79,96,12,29,249,118,10,129,200,20,14,127,188,128,69,244,119,120,7,36,252,155,98,101,35,199,34,171,139,67,60,233,29,93,201,193,240,63,5,167,203,192,119,130,141,160,37,78,18,48,84,24,133,14,210,104,161,79,162,166,246,158,94,100,167,209,224,198,226,104,214,97,103,153,173,156,63,121,101,26,11,208,237,88,236,253,225,167,209,6,71,250,113,140,186,236,187,12,222,58,206,171,219,76,241,200,57,48,243,28,201,244,21,58,143,187,11,188,144,169,44,15,154,147,168,67,131,249,139,210,142,13,34,129,47,23,178,164,41,11,52,109,106,246,89,18,143,164,161,103,54,8,217,109,14,154,150,54,231,37,174,66,132,64,45,236,254,67,74,244,244,
110,41,4,220,151,60,183,20,187,162,252,4,252,161,0,248,92,229,66,18,230,101,52,114,95,195,192,172,74,196,98,189,56,236,213,34,17,194,153,8,133,90,58,165,172,90,98,247,16,110,187,190,218,131,230,145,117,181,245,156,239,145,222,144,225,182,216,206,171,223,195,247,73,206,23,123,111,215,88,179,217,237,131,37,159,244,137,42,253,3,99,151,195,182,84,176,213,103,239,16,251,69,145,32,106,97,3,106,147,222,143,104,122,37,64,126,128,178,240,139,17,114,88,24,0,22,142,252,150,200,94,74,8,146,147,1,251,82,69,211,212,49,203,226,137,169,97,90,215,65,247,83,77,91,57,246,209,212,188,143,7,209,207,161,98,193,231,226,94,101,163,67,225,236,236,244,234,245,80,183,227,178,123,61,222,136,221,225,249,215,236,55,223,241,248,237,92,82,248,150,45,79,244,121,239,63,235,171,251,129,119,127,79,46,254,49,249,118,116,58,89,247,251,6,133,97,182,16,15,192,220,246,62,110,194,243,254,250,222,238,111,236,229,189,27,191,71,55,233,207,235,245,178,241,239,64,
205,76,169,174,169,15,64,51,185,157,158,157,51,190,254,177,143,118,50,253,189,159,160,96,103,100,10,255,81,80,211,80,85,80,125,91,177,36,21,226,5,238,26,73,81,137,99,179,6,172,120,200,168,185,215,159,4,189,73,156,84,38,253,191,152,124,95,165,93,101,247,253,202,220,187,101,165,246,251,129,212,134,87,22,31,191,160,107,174,23,44,22,42,212,43,99,187,107,194,73,12,144,146,168,143,88,108,36,227,211,27,99,250,225,35,90,127,120,183,206,247,190,234,238,237,202,156,244,94,234,124,157,171,199,235,251,126,159,211,222,55,211,25,185,254,116,91,111,187,237,243,184,254,249,180,221,219,108,213,79,185,14,65,208,48,7,134,142,131,157,136,39,30,38,36,227,23,211,251,18,91,141,39,17,1,122,171,17,225,166,24,113,69,162,64,32,213,232,173,80,80,10,49,13,166,105,49,207,249,110,48,140,135,88,56,170,197,186,101,21,82,113,233,160,75,104,62,127,134,76,62,38,179,80,204,88,7,48,131,52,243,47,129,14,4,64,16,52,179,145,253,170,211,56,136,195,
56,25,64,174,73,192,246,163,47,74,170,187,247,244,116,191,251,230,247,85,157,144,52,34,68,175,140,166,226,37,107,188,236,168,115,176,182,8,35,204,73,152,237,226,190,70,180,65,46,142,72,182,146,172,202,27,152,172,154,78,143,36,145,229,230,251,112,226,236,246,13,210,27,65,44,17,235,6,32,244,23,50,36,229,225,2,67,30,152,7,212,101,107,22,207,236,46,30,18,54,148,24,196,45,176,64,28,170,24,224,39,134,14,83,136,57,113,139,150,237,124,176,75,84,254,37,177,213,82,124,224,182,48,103,48,240,41,61,151,152,186,9,111,174,102,44,85,218,243,16,119,135,83,241,41,245,179,213,182,156,203,88,91,77,231,176,139,52,118,235,103,171,209,213,228,166,15,79,65,221,225,17,62,200,68,129,71,6,11,44,12,239,223,83,196,148,86,31,42,107,66,175,185,186,186,35,21,192,118,86,178,4,189,164,68,237,47,95,4,44,65,65,162,225,90,7,120,67,181,172,172,218,81,8,86,72,171,162,229,13,25,86,254,36,111,9,212,91,225,148,146,255,162,215,38,75,
233,171,90,85,19,120,15,98,207,152,61,29,147,238,44,161,177,184,132,14,201,5,72,13,67,196,126,153,88,33,64,28,96,47,172,33,200,166,14,123,154,83,164,237,124,127,120,230,59,184,222,221,91,232,248,17,139,179,130,238,110,33,45,15,101,210,114,27,22,239,219,114,248,234,175,149,231,208,120,91,164,173,244,199,173,61,92,183,83,208,148,165,178,46,105,205,154,9,74,83,110,88,52,241,249,37,171,210,47,5,54,205,180,181,4,194,160,16,86,42,29,36,235,243,13,74,163,238,48,104,253,182,33,214,60,52,40,161,170,35,168,95,23,186,33,235,133,138,38,138,74,156,237,180,76,89,185,136,17,109,89,12,162,191,238,242,179,21,4,220,157,213,119,223,40,115,158,145,146,43,191,74,5,155,209,108,60,191,80,71,100,250,148,86,190,144,10,94,114,213,254,66,183,221,182,251,3,49,59,246,207,233,180,105,249,159,58,130,173,119,60,129,94,46,155,175,7,148,1,175,50,223,243,126,58,126,124,149,145,43,5,183,253,1,111,187,236,150,135,215,10,118,215,156,246,159,
143,164,107,86,155,84,165,10,141,14,249,27,182,36,152,64,174,93,28,45,248,12,2,4,132,212,81,132,141,58,178,103,35,55,72,84,171,35,20,227,130,20,199,65,253,56,70,217,16,177,34,142,226,26,72,242,11,249,173,166,74,178,149,253,60,207,234,238,38,195,235,77,219,222,103,81,51,158,237,125,4,42,235,61,233,161,116,91,174,237,138,127,150,62,2,97,66,243,212,144,9,2,196,88,81,73,222,25,237,203,16,233,82,249,192,100,209,103,53,195,191,110,187,175,231,167,118,31,102,187,31,208,151,237,64,85,57,155,46,0,122,126,127,159,253,118,25,97,245,76,44,56,25,237,226,255,192,34,19,171,132,118,245,78,171,215,105,245,23,123,204,108,240,216,31,171,21,134,7,242,212,186,151,55,77,74,242,97,24,122,102,228,167,22,99,36,202,231,20,209,126,105,126,10,90,119,119,19,2,108,219,72,235,248,25,198,64,37,158,178,210,199,199,185,139,76,238,27,13,247,95,119,112,107,40,194,46,205,152,160,16,73,143,90,213,140,19,85,232,254,233,40,0,93,34,77,
30,130,92,68,63,13,114,7,39,204,159,200,211,104,179,128,102,122,123,89,150,170,107,243,217,82,153,27,179,54,111,79,167,37,183,161,44,185,119,238,117,251,223,143,161,166,55,136,161,142,64,176,61,41,201,174,12,49,168,33,36,216,46,19,10,161,201,18,92,226,164,247,36,103,136,74,193,150,141,249,8,40,169,180,2,106,155,160,196,146,200,8,206,127,102,171,187,120,68,2,22,196,132,19,12,140,109,227,79,105,39,185,203,119,225,16,83,189,223,219,180,143,251,128,46,4,176,220,61,65,234,82,236,241,22,24,197,100,129,18,15,16,128,195,95,136,190,198,28,186,16,236,50,87,236,28,80,242,61,216,152,190,193,27,93,138,157,119,77,89,123,5,176,89,185,49,207,62,87,249,46,227,106,90,171,179,196,121,94,95,98,79,96,68,98,234,78,165,107,0,112,35,161,182,117,22,231,205,107,67,84,89,149,146,102,210,81,215,80,146,18,253,91,154,161,157,22,213,139,71,108,178,112,84,242,92,6,83,16,131,172,30,235,178,114,125,173,19,245,211,246,24,177,146,249,138,
17,157,22,131,103,146,186,161,24,200,119,98,221,173,119,246,54,103,247,248,107,58,106,73,249,243,52,135,130,52,209,213,124,134,226,29,7,74,169,66,160,190,179,152,216,142,200,0,147,76,166,146,62,255,7,144,112,209,19,245,27,115,64,7,180,118,219,126,115,83,179,26,235,111,71,83,243,128,190,182,235,83,247,124,165,134,142,143,187,229,93,60,53,28,231,64,27,231,136,205,102,125,124,126,167,98,9,219,248,157,82,90,23,98,148,166,86,151,36,26,170,75,86,99,92,50,168,200,190,5,165,170,56,32,156,60,122,142,136,166,214,70,122,99,252,143,223,33,234,130,205,223,205,3,240,52,77,211,58,117,53,195,98,68,232,176,174,203,156,232,108,224,174,23,138,248,226,35,164,109,49,237,197,16,66,120,140,64,3,144,185,105,127,223,109,116,54,189,118,171,221,104,117,85,189,186,175,225,241,186,209,118,187,203,243,113,255,195,183,233,113,240,169,168,226,185,30,138,228,3,174,202,49,205,29,98,127,62,254,14,199,1,135,0,66,68,249,125,211,191,192,225,246,91,46,78,
203,219,113,0,157,93,40,192,6,6,190,233,233,233,171,159,129,251,188,252,98,149,238,242,79,37,96,157,190,172,32,225,29,253,3,84,203,80,249,114,113,238,31,166,151,107,18,186,142,134,150,212,41,116,15,85,116,120,210,96,51,180,189,41,9,106,97,182,138,178,229,61,57,55,38,221,173,182,213,233,236,254,227,227,190,111,241,30,15,196,227,125,206,253,157,254,81,226,245,101,119,128,110,101,94,166,76,237,178,135,202,105,113,60,11,16,49,157,239,76,242,123,19,237,183,207,237,7,162,221,157,176,238,253,113,189,208,115,127,186,46,183,237,147,178,217,221,45,143,189,177,172,217,154,205,54,83,101,219,100,165,74,225,110,237,3,122,115,115,131,145,57,219,170,53,107,173,90,211,255,123,102,167,197,156,58,102,56,211,182,62,86,67,160,84,147,98,70,123,69,74,201,22,234,102,178,201,199,150,133,156,8,131,228,142,254,29,12,24,29,73,149,168,4,181,132,183,159,56,58,197,85,84,145,168,148,106,63,27,113,181,76,241,160,87,2,30,152,156,107,84,192,19,139,115,177,
41,52,9,201,84,7,156,29,159,137,50,148,187,74,224,7,222,65,121,162,153,76,53,64,204,140,119,11,157,136,225,226,54,47,187,56,55,243,228,177,247,45,247,255,129,227,67,36,210,197,33,18,222,143,69,184,252,26,50,157,242,165,240,38,119,122,247,39,116,113,152,128,11,41,245,223,60,204,46,209,138,197,2,192,63,194,151,30,188,134,40,122,16,253,33,226,0,32,0,145,29,56,93,184,196,11,50,140,51,53,107,196,19,162,20,122,111,225,222,160,69,95,201,35,150,213,226,1,49,75,179,73,30,137,66,98,142,241,46,97,118,172,215,176,16,187,251,100,239,228,22,140,219,82,144,143,114,110,146,177,113,208,111,2,55,149,135,4,105,219,6,50,125,132,82,137,168,52,179,144,49,180,162,213,35,31,209,253,51,28,155,156,145,237,86,207,197,127,218,71,231,77,98,165,246,188,153,166,103,81,31,195,198,149,76,155,112,221,147,2,37,241,155,22,101,43,43,59,146,197,151,18,252,16,60,73,151,203,213,174,130,104,196,113,152,171,8,88,176,254,57,107,55,153,51,34,
166,40,239,71,139,67,28,153,145,192,82,70,153,60,223,66,209,203,187,140,234,219,22,31,124,198,113,137,74,248,152,59,11,217,132,211,58,68,4,22,140,232,100,202,55,66,39,48,126,62,182,73,196,142,95,112,70,117,222,47,47,194,196,43,197,16,127,167,93,157,247,72,47,27,160,26,58,84,205,246,126,131,239,155,162,119,216,89,155,238,197,87,197,177,19,184,110,43,72,101,7,90,232,37,136,93,153,167,160,52,132,220,100,13,23,91,234,124,241,15,75,92,169,227,196,164,20,91,61,86,150,108,84,78,30,66,121,155,165,60,174,37,236,210,206,81,171,208,94,33,152,75,197,140,170,161,167,148,138,154,200,4,219,107,237,1,122,2,65,68,9,151,119,182,227,59,92,38,76,20,251,29,127,152,4,217,133,235,155,115,128,0,128,232,24,88,136,124,152,27,25,57,169,169,148,88,123,185,154,236,189,102,171,217,174,182,171,57,231,103,218,157,78,56,105,49,124,23,148,134,97,183,96,126,15,39,50,191,96,22,249,241,252,109,251,247,243,125,222,167,131,253,231,136,19,195,
62,232,150,204,115,106,113,230,112,213,188,206,62,254,238,94,131,209,194,205,188,62,249,91,159,18,219,48,214,221,73,199,8,214,184,151,22,155,194,153,174,105,148,154,245,84,2,166,154,194,22,194,124,83,78,94,146,14,182,40,55,41,149,165,200,136,203,226,222,75,80,240,246,252,187,52,91,93,193,4,98,185,63,216,31,159,143,248,2,63,161,217,173,129,81,241,66,212,135,223,148,42,51,192,255,236,142,199,168,94,119,113,211,83,231,120,96,220,208,236,208,199,86,141,72,214,129,160,185,153,195,219,118,59,158,251,148,40,129,181,248,174,24,7,31,251,187,181,224,127,185,211,197,19,152,75,214,0,76,199,166,63,151,106,98,75,134,86,41,232,41,216,134,205,204,29,225,60,242,23,1,136,227,32,43,148,22,213,26,63,68,130,100,5,97,234,153,252,251,178,85,142,113,41,110,70,161,23,165,186,191,182,240,139,83,142,121,37,174,6,160,18,80,114,74,206,44,27,142,136,214,146,144,48,185,207,168,236,111,242,14,22,85,130,42,182,182,132,136,219,50,136,83,97,46,78,
133,28,162,227,46,179,201,197,148,136,65,142,136,176,190,9,34,52,78,132,42,253,44,133,89,232,45,127,221,95,216,16,180,123,60,191,143,127,7,46,107,224,230,63,33,3,161,31,29,134,229,193,248,72,255,21,76,148,2,22,211,160,46,146,47,250,252,192,62,249,0,81,73,24,2,255,81,12,179,34,204,77,88,2,35,234,44,36,44,108,35,63,37,170,225,8,180,124,166,20,169,113,100,232,97,180,70,45,5,100,132,122,66,18,168,237,34,9,68,230,142,129,81,146,9,73,137,230,138,204,232,146,126,208,12,51,200,201,89,188,27,18,156,60,35,216,28,153,204,212,252,205,157,18,29,147,73,137,164,51,225,72,64,68,36,54,115,33,68,42,80,25,10,235,30,81,68,202,13,208,187,94,167,149,52,68,177,4,212,47,33,2,162,49,184,236,94,243,41,152,197,152,154,240,68,77,150,160,21,10,24,205,221,220,20,31,121,100,199,140,12,101,69,141,84,146,84,150,84,81,211,147,84,144,56,66,231,52,100,198,76,143,159,16,99,220,192,20,5,69,24,127,125,156,99,52,
135,122,82,37,202,216,152,229,88,22,163,46,205,166,129,106,4,176,200,109,164,48,15,1,6,5,170,142,179,114,84,2,34,91,52,37,208,115,87,2,194,21,178,147,113,53,171,119,74,68,225,224,6,247,223,225,209,152,165,146,2,200,113,204,209,56,25,82,199,20,99,211,119,88,109,122,48,85,44,10,233,151,206,82,141,70,93,49,61,145,85,212,70,113,202,143,209,26,111,125,170,31,8,122,77,121,126,88,131,18,149,152,56,81,111,233,190,192,53,38,8,69,154,35,151,173,34,189,161,24,81,58,136,228,43,218,189,233,2,75,47,161,53,54,174,91,231,117,10,24,129,178,128,148,52,171,91,152,192,0,240,106,41,65,239,201,148,143,21,40,134,8,251,99,0,2,16,226,54,112,174,209,80,119,254,201,179,206,174,61,109,54,222,218,214,103,151,231,107,223,27,225,178,204,202,53,130,187,100,53,248,223,205,45,211,117,57,190,247,217,247,189,47,214,200,156,229,186,30,104,26,251,108,151,85,114,217,224,53,252,11,244,103,227,235,0,162,117,144,203,219,177,3,86,60,93,
11,224,147,210,86,235,51,86,74,200,86,47,171,107,172,204,176,114,240,226,118,187,45,95,97,235,68,51,205,116,246,137,67,147,210,95,70,43,166,18,127,217,182,252,71,131,197,120,30,28,200,207,133,105,1,255,140,43,41,239,254,63,135,180,250,114,233,184,235,41,38,139,187,106,181,90,135,174,251,117,62,153,19,155,176,8,237,255,158,50,78,253,185,200,228,108,59,241,207,225,252,2,122,159,184,189,5,254,177,212,169,1,5,221,64,65,65,124,39,198,234,54,54,54,143,215,109,222,159,45,175,17,212,137,192,225,115,188,109,168,251,110,251,220,29,29,95,231,16,34,10,233,106,100,198,166,180,20,165,96,156,171,33,73,20,81,59,205,84,174,165,20,86,143,143,170,99,164,163,50,213,229,90,187,45,74,68,196,76,73,73,233,196,47,116,79,186,158,206,81,131,101,95,18,15,109,3,82,97,131,24,232,129,189,57,37,238,23,108,86,217,139,254,137,61,237,14,184,85,163,88,110,153,152,89,238,163,166,45,31,198,164,196,225,168,59,57,43,224,232,98,17,226,80,9,46,
37,212,168,85,134,138,68,212,137,252,48,65,73,129,234,67,43,148,143,28,142,17,50,127,64,61,255,24,160,237,234,159,111,242,242,246,190,177,230,247,61,5,42,236,138,121,105,185,55,232,109,20,15,6,2,13,5,42,97,147,64,121,72,228,226,124,169,112,126,168,194,106,137,218,194,91,29,143,44,197,171,186,220,203,214,120,245,137,42,213,88,30,189,113,154,206,74,40,146,53,39,139,62,138,86,85,12,246,36,84,65,29,94,152,129,226,114,168,97,174,142,128,122,41,202,34,53,255,102,6,37,160,114,87,135,253,131,9,78,99,140,91,37,28,185,17,113,215,11,216,228,13,84,72,45,183,142,2,150,177,64,222,51,233,113,51,196,152,36,77,254,96,106,125,89,144,25,147,151,137,180,136,177,144,182,76,155,177,21,58,97,85,235,90,40,181,89,71,90,179,180,102,221,129,173,116,24,99,106,64,181,17,50,139,57,26,170,65,81,135,191,188,31,112,237,251,174,0,252,184,160,204,111,209,46,68,141,137,74,169,161,131,103,88,183,134,102,201,56,215,108,158,222,208,220,188,
180,44,217,48,62,106,124,133,131,175,66,242,217,142,11,122,35,24,132,185,216,0,64,35,160,36,33,166,146,5,141,52,61,152,18,58,45,190,121,16,192,88,59,196,161,20,26,15,45,217,84,10,99,75,143,142,125,190,64,33,63,234,63,187,19,103,221,139,110,218,64,88,79,15,122,249,90,8,214,160,123,233,95,110,79,253,169,210,243,110,214,27,206,205,154,115,118,89,178,111,210,107,106,100,141,47,149,209,54,198,70,248,2,230,164,169,180,245,3,99,2,13,218,77,69,205,234,67,119,208,103,32,111,75,49,194,41,179,213,31,208,59,144,86,238,187,161,213,194,93,190,116,193,245,96,185,7,25,4,67,65,122,1,31,131,70,89,133,202,3,58,245,4,197,57,106,246,191,62,245,93,9,97,161,250,61,75,218,246,123,39,89,253,97,45,97,158,185,245,153,95,93,206,47,78,215,86,2,102,74,84,193,12,222,205,243,22,103,24,184,176,54,86,122,245,142,183,237,118,15,234,158,223,119,127,90,178,246,87,236,26,142,120,153,249,95,133,243,248,133,8,174,209,247,235,252,
90,182,126,203,239,237,125,93,97,199,199,211,253,8,222,75,33,55,22,63,192,110,167,119,92,46,24,98,96,78,48,78,32,181,238,214,25,170,30,253,81,249,184,44,124,95,243,84,91,165,224,45,128,171,4,85,202,46,44,42,135,180,48,96,56,173,173,109,45,245,239,176,64,200,230,238,180,96,35,102,43,193,39,164,192,188,189,60,56,200,151,211,230,127,126,159,231,195,233,102,46,143,239,171,18,121,119,85,21,127,239,207,116,198,18,177,98,251,142,108,165,107,225,122,131,135,183,136,78,131,33,5,117,209,89,47,113,155,233,169,185,253,234,117,156,46,167,199,77,255,221,222,23,253,237,40,242,120,79,70,186,198,41,223,214,72,150,169,167,130,82,80,142,138,51,42,84,47,205,133,216,232,128,5,16,8,11,185,193,25,87,254,75,82,202,9,185,197,198,174,166,87,23,117,149,158,89,80,131,138,18,7,227,244,12,77,39,5,222,71,71,58,16,107,16,114,241,247,15,24,187,232,163,123,5,185,167,254,140,200,34,51,12,31,42,160,126,22,15,200,14,72,135,193,177,84,
48,33,8,224,123,163,3,2,134,79,196,237,132,204,236,84,157,160,84,144,46,254,46,80,146,193,245,24,142,251,53,231,116,241,212,23,242,84,34,187,183,175,18,129,67,15,173,93,207,243,60,252,3,74,100,47,253,23,133,67,165,40,104,248,152,151,231,197,254,179,75,192,58,20,208,150,83,146,13,23,241,112,226,58,13,75,191,51,33,37,28,181,222,194,88,238,157,137,242,165,206,191,105,7,133,39,85,251,139,39,175,69,163,59,76,249,83,84,143,24,165,88,190,100,19,149,218,153,210,240,182,68,11,106,145,132,169,57,4,227,196,16,10,83,228,7,10,107,86,198,70,84,218,128,4,44,4,32,151,49,226,204,96,181,80,6,171,83,54,178,66,74,91,42,7,10,43,109,59,114,136,152,105,227,152,182,110,105,199,82,164,140,149,56,183,209,112,188,172,153,80,58,160,5,44,69,41,42,135,177,34,149,188,16,69,4,139,32,181,224,46,0,86,199,52,164,154,153,28,133,21,70,164,120,248,251,249,94,189,239,55,212,203,111,217,26,219,191,230,175,110,181,178,21,195,78,
198,235,24,154,113,94,174,185,224,231,134,18,165,197,16,50,190,183,245,195,55,72,101,126,22,199,185,135,158,231,122,246,179,177,27,6,205,157,134,185,204,77,80,20,78,72,9,143,124,202,241,32,235,94,185,136,207,218,78,140,152,134,49,36,173,117,106,11,99,118,169,94,76,201,81,67,115,81,19,35,90,211,155,77,38,179,122,167,200,122,211,6,169,158,190,153,30,187,216,89,123,103,32,206,10,192,237,179,206,85,44,144,4,10,125,173,139,172,149,157,91,66,76,53,179,131,164,133,49,84,155,138,206,21,113,232,253,186,206,48,196,110,150,126,121,241,77,197,193,112,220,53,0,90,24,41,198,48,153,13,2,165,137,43,217,106,127,156,63,199,27,54,113,6,112,189,255,29,5,74,22,115,176,148,248,137,210,73,221,202,80,58,130,7,46,228,80,6,238,108,160,165,72,136,26,146,182,127,165,240,106,251,16,136,250,6,41,66,126,150,198,230,79,224,10,222,253,202,122,11,236,83,84,88,220,39,39,235,67,47,177,254,188,151,163,237,180,252,250,110,23,84,183,61,69,239,
166,159,223,251,253,11,21,78,183,189,181,43,104,217,252,188,215,31,126,235,154,229,108,89,157,96,76,20,90,179,59,107,14,187,189,102,185,59,78,111,161,89,111,241,210,80,190,82,10,145,145,21,38,66,142,31,121,124,140,106,238,39,125,87,156,206,46,48,140,63,90,212,37,221,177,124,14,13,29,192,17,11,88,65,217,129,137,64,32,40,110,58,194,202,17,208,91,231,62,139,89,247,11,244,53,159,190,135,239,33,122,251,249,168,144,115,248,119,216,164,54,35,213,195,86,245,246,56,8,97,25,162,161,2,248,76,104,17,49,74,126,208,13,30,156,229,106,177,98,179,154,236,84,251,223,125,184,22,65,39,187,91,211,181,252,164,220,143,147,188,137,117,173,0,59,42,60,115,118,48,52,92,68,168,123,61,161,144,216,100,174,102,136,142,213,127,152,152,219,25,89,156,74,41,74,43,164,57,46,123,124,75,43,34,125,73,164,53,13,76,37,132,192,246,119,82,13,183,113,42,127,50,11,78,131,12,105,236,172,108,241,3,222,107,245,132,32,224,14,18,197,4,215,156,42,36,
36,175,69,61,29,38,181,6,1,53,239,192,35,242,105,2,210,128,80,84,138,198,185,52,35,149,25,30,7,134,10,241,38,206,4,117,206,87,134,200,185,43,166,208,44,185,209,158,35,115,236,15,57,244,157,164,109,199,161,2,51,225,149,110,178,205,109,31,196,46,86,157,214,137,76,224,208,249,232,24,174,137,178,82,78,64,160,78,211,216,135,56,145,18,156,212,10,157,75,100,32,185,143,130,42,83,178,153,54,87,28,156,75,186,110,127,48,178,228,129,195,188,227,103,9,131,140,120,162,27,24,88,132,82,134,108,50,78,69,89,116,128,162,49,32,67,97,179,140,133,152,70,39,204,157,2,27,59,153,143,105,196,40,144,33,109,234,112,117,186,27,126,75,176,89,114,245,33,140,132,246,169,82,174,14,117,167,142,209,48,164,14,12,246,54,198,6,253,26,173,49,231,135,97,150,202,90,136,163,21,150,226,157,156,45,100,202,45,9,100,246,175,125,168,119,136,76,175,172,18,34,79,80,45,89,172,216,235,8,63,91,81,177,164,56,25,147,178,180,56,74,113,172,200,151,101,
60,255,248,174,220,23,253,92,251,198,85,210,79,147,248,246,169,139,130,32,131,93,36,85,32,137,228,157,86,232,18,159,10,111,177,236,53,43,132,223,104,249,27,53,127,136,89,211,87,102,250,202,111,150,175,202,204,49,211,123,146,70,13,150,128,8,159,202,144,230,155,161,235,157,142,251,67,235,194,250,73,136,241,91,236,184,150,28,53,7,166,242,163,93,149,237,184,196,213,50,58,143,69,16,69,154,160,97,4,209,92,106,255,205,38,88,40,113,98,229,91,29,93,174,245,119,111,3,197,102,220,199,224,7,233,249,86,47,64,166,192,136,81,64,165,116,229,36,0,17,16,116,114,140,32,72,194,229,75,225,197,185,194,11,92,0,76,194,178,46,60,100,40,34,210,189,11,161,154,87,170,68,208,105,66,190,126,56,44,204,149,135,144,228,208,16,185,34,130,80,62,44,134,222,216,32,174,89,107,155,191,0,164,51,152,41,176,30,185,173,41,155,241,101,253,222,61,207,207,117,184,123,94,190,175,76,43,2,39,70,54,14,23,220,166,187,105,123,135,45,40,208,118,3,58,152,
40,205,207,21,233,174,32,237,246,166,227,221,178,226,255,46,119,137,142,2,189,121,92,80,216,206,169,54,46,155,195,120,112,182,155,209,58,218,91,43,89,85,143,85,101,11,79,129,245,93,69,172,213,40,132,102,53,114,19,213,176,225,176,217,206,96,164,238,38,118,114,17,121,137,36,205,155,242,181,22,251,155,197,72,127,53,219,95,142,55,48,85,206,255,237,31,139,30,68,126,119,195,237,168,129,27,238,13,70,110,20,80,171,9,137,120,135,65,118,130,124,132,155,208,225,126,111,77,166,2,30,157,122,158,82,107,209,220,230,171,12,20,8,149,61,40,21,146,165,151,147,25,64,168,200,129,31,151,184,99,254,240,49,4,100,189,3,33,142,97,43,67,78,136,43,45,80,139,209,206,145,13,238,36,9,13,169,64,200,82,17,113,55,219,172,32,219,59,130,199,106,25,47,138,37,175,75,57,173,249,196,111,39,165,69,56,53,86,195,43,52,149,102,136,206,252,4,180,210,214,2,133,73,171,118,54,60,58,202,152,72,34,106,126,3,131,114,62,191,237,143,97,1,4,34,54,
5,45,191,52,253,41,199,216,220,119,104,125,70,226,180,6,74,70,40,180,87,209,67,53,135,5,205,68,193,253,138,103,153,252,127,201,162,126,164,141,148,16,10,111,254,10,109,218,102,242,207,78,21,221,244,121,232,158,50,70,103,58,124,205,239,106,192,119,255,50,197,118,24,196,245,148,145,156,7,120,202,232,130,198,255,175,218,11,239,242,201,16,153,135,196,44,98,154,82,1,16,154,137,61,83,73,247,208,199,193,23,167,239,4,184,208,181,116,219,138,72,36,132,80,52,33,205,78,85,0,106,18,150,168,105,160,231,153,32,192,34,228,175,146,225,138,112,105,196,53,200,113,102,218,90,134,27,37,68,179,95,214,208,144,73,106,202,88,2,116,25,201,197,54,101,89,120,253,179,187,183,121,43,165,141,201,195,50,169,132,32,101,163,13,198,140,210,6,228,15,9,153,69,52,41,44,24,153,4,186,152,188,233,81,218,218,197,99,20,110,128,49,125,37,152,166,82,17,237,244,252,143,237,53,229,172,228,201,176,104,244,190,66,218,203,77,253,186,216,218,203,94,114,113,241,217,
76,190,166,102,252,142,39,241,97,74,174,47,110,154,4,38,3,180,103,154,66,102,155,109,140,214,57,133,88,15,65,228,167,175,239,180,150,86,202,236,253,27,137,233,252,136,56,107,10,32,82,216,231,34,251,242,34,186,103,86,191,152,179,209,32,165,76,252,11,25,226,107,158,2,19,227,106,26,158,37,17,155,190,236,230,172,192,191,53,95,14,77,76,195,68,226,21,2,155,209,242,111,97,231,22,43,127,193,127,76,113,1,78,128,169,170,13,172,2,72,100,181,199,240,98,97,48,174,20,205,21,136,30,147,50,107,208,115,80,16,7,17,248,99,116,240,81,232,67,172,137,32,224,23,121,69,26,124,44,195,240,118,221,187,17,114,191,55,236,102,136,143,16,46,152,133,244,51,144,4,140,204,253,83,113,212,182,180,158,131,24,64,178,245,204,237,69,222,222,47,118,137,209,212,112,55,27,30,76,207,231,108,185,129,66,4,192,121,183,156,144,119,43,227,96,63,29,244,159,229,193,247,249,66,247,16,51,188,15,247,236,117,254,36,129,213,18,21,108,230,223,3,87,152,175,38,
130,13,179,101,65,191,62,83,214,3,181,55,73,54,216,31,196,219,160,45,80,97,177,213,130,180,97,251,17,60,84,196,178,20,181,232,160,235,197,87,211,101,170,117,61,166,200,189,170,223,223,117,25,169,76,34,155,21,26,253,167,235,95,72,207,185,211,189,172,222,14,179,247,129,5,99,23,224,239,130,163,237,194,130,79,141,239,184,82,193,60,45,1,99,156,224,39,116,192,59,238,85,253,56,219,173,88,3,212,8,230,97,196,164,132,138,166,130,166,173,203,16,73,140,146,142,14,96,68,61,72,184,131,156,21,80,112,84,48,84,197,215,176,208,114,54,82,67,2,7,72,64,217,27,0,140,236,62,111,65,48,37,185,52,14,85,191,181,198,28,66,54,103,95,179,231,127,160,156,22,201,168,120,33,166,89,169,228,244,172,145,18,167,37,168,146,101,140,245,167,119,48,30,61,17,222,45,101,88,37,30,90,73,121,43,144,38,41,17,84,130,226,47,143,146,127,40,89,172,153,165,127,64,137,201,153,216,170,11,95,112,125,135,14,251,111,28,154,64,244,83,26,246,204,218,34,
171,162,48,163,124,161,189,211,231,88,187,126,102,182,236,147,104,226,14,15,83,163,72,103,56,198,141,8,156,144,51,195,242,39,205,71,52,149,179,39,39,200,218,159,99,195,248,22,120,133,38,30,243,128,98,44,180,187,72,218,140,30,18,40,244,51,109,12,147,0,115,162,189,5,68,7,91,147,10,4,193,17,145,184,121,76,186,92,200,23,98,98,145,160,41,199,14,164,25,0,128,222,181,23,111,135,76,32,208,229,94,200,36,112,66,203,71,38,90,137,130,244,172,79,125,91,138,76,198,209,89,167,245,241,107,236,145,104,168,221,29,5,102,42,73,29,212,118,6,53,102,58,12,247,85,122,250,40,58,63,190,198,34,93,71,137,206,76,201,123,29,247,81,168,55,69,90,162,65,155,77,90,148,21,81,11,254,192,3,202,86,226,234,106,60,186,182,218,98,28,234,243,201,144,133,79,28,180,102,149,165,20,28,124,22,206,232,88,120,35,150,18,51,96,130,69,194,46,229,50,249,66,18,2,97,174,15,85,227,90,246,188,145,159,251,5,92,164,105,133,108,157,116,160,108,174,
7,118,130,101,112,225,92,134,22,243,21,0,111,200,95,64,19,210,59,30,105,240,36,143,172,151,22,164,23,187,68,0,40,163,153,83,121,120,253,151,204,230,34,236,157,31,215,186,49,104,214,110,193,202,129,82,186,19,47,100,246,251,100,12,4,19,66,25,170,224,163,224,183,5,6,138,120,167,240,17,204,191,38,81,51,230,66,80,208,34,154,12,251,243,8,235,247,3,18,90,93,83,44,25,211,185,16,50,167,209,86,40,208,226,129,2,57,194,109,161,120,44,243,194,192,186,114,186,93,69,75,50,69,228,21,145,64,245,51,254,106,239,232,237,70,160,142,196,213,158,147,200,31,8,60,198,235,63,10,84,93,93,187,76,226,156,25,134,246,88,6,79,225,202,9,235,218,173,45,48,224,175,153,109,235,174,114,86,152,234,231,18,97,69,139,107,163,249,222,29,47,251,233,103,114,223,142,32,86,97,19,230,68,139,1,175,194,255,145,112,78,109,211,51,237,18,254,235,99,219,182,237,153,123,108,219,182,109,99,61,239,250,178,159,108,228,168,174,170,243,74,119,60,63,171,248,
153,14,109,35,60,176,59,108,241,122,89,95,152,48,114,198,60,243,109,69,14,243,118,214,154,54,190,37,91,139,168,181,128,209,74,128,93,71,39,198,21,42,199,70,141,235,82,217,100,46,138,217,87,64,105,81,150,160,31,144,30,206,206,142,16,22,218,77,182,19,238,90,209,107,158,26,221,126,155,229,122,20,125,123,95,126,252,243,201,220,248,68,36,43,190,181,68,11,172,38,244,0,115,129,14,94,186,236,125,250,178,166,86,172,107,42,19,145,69,6,33,133,227,239,90,64,5,188,196,223,68,157,104,117,70,235,166,229,83,3,149,28,56,128,54,17,218,91,227,187,122,6,105,92,66,164,30,163,68,147,163,41,48,36,85,242,70,220,15,17,82,226,129,58,70,77,130,112,114,37,180,162,17,229,46,139,49,253,128,11,251,155,75,3,0,92,116,179,4,145,138,71,54,8,14,166,85,40,171,34,215,57,168,29,164,118,76,13,168,117,78,14,129,227,120,18,86,11,16,95,42,152,85,119,136,144,207,165,128,74,200,138,175,19,107,81,198,193,196,137,41,206,25,146,162,205,
201,186,125,132,128,190,54,65,57,208,253,24,102,58,106,160,193,151,20,254,45,241,216,18,93,172,142,247,95,16,124,22,176,97,140,129,81,41,156,152,38,168,107,180,62,98,22,245,59,8,132,52,129,79,11,207,84,13,195,16,68,164,107,1,97,27,177,0,15,13,81,65,35,33,19,190,144,167,102,141,100,59,98,97,17,138,41,103,173,157,3,77,24,5,16,35,233,35,201,48,232,130,38,115,37,132,173,220,147,43,90,151,90,3,0,10,70,241,73,180,110,224,228,170,48,135,32,117,224,2,166,148,199,73,15,238,121,70,96,102,131,199,82,99,96,82,98,104,209,191,175,162,197,159,62,159,224,181,157,191,58,27,205,1,61,152,151,103,235,38,112,241,123,206,224,91,175,39,143,161,117,48,13,128,224,56,252,218,180,79,227,185,160,71,222,56,44,18,3,123,11,111,18,254,232,7,55,101,37,247,120,5,155,39,165,38,116,38,196,103,71,26,226,217,179,16,147,167,99,36,245,36,249,55,112,16,139,220,159,66,43,231,182,37,217,173,228,65,195,4,78,25,129,131,214,239,
213,223,4,106,6,112,200,136,108,131,39,110,91,255,99,160,154,171,37,109,130,29,156,198,56,243,157,136,95,255,243,196,123,97,195,26,92,46,61,170,154,150,93,51,239,22,133,169,179,160,239,183,131,50,25,83,57,4,255,247,84,137,10,164,9,193,194,124,2,143,78,223,239,75,42,39,32,29,48,19,195,2,154,229,65,116,136,64,208,22,34,105,209,155,221,160,61,202,169,152,171,103,74,213,177,65,0,64,69,130,176,194,251,46,249,163,168,43,161,120,102,67,210,8,110,181,186,79,167,238,70,205,45,64,231,129,199,223,178,82,143,233,131,134,8,67,32,16,126,4,211,199,62,54,22,39,27,34,87,189,37,36,65,132,152,208,107,190,127,49,230,180,214,80,106,247,200,19,67,100,129,15,13,83,7,84,115,143,171,197,212,112,201,24,123,118,234,162,171,75,175,218,42,102,47,200,90,0,229,224,118,252,167,28,117,39,226,0,120,29,140,31,80,174,172,85,163,44,176,126,100,123,77,47,209,53,117,118,29,168,21,58,14,102,110,174,44,142,163,84,155,163,2,195,107,230,
7,77,118,164,233,158,77,195,178,174,138,159,180,162,165,199,143,172,36,231,3,105,208,102,189,204,51,88,228,207,97,127,28,62,251,215,247,245,187,190,47,157,70,105,87,131,82,68,143,127,105,177,195,237,186,52,94,199,251,231,126,124,134,251,207,146,62,95,141,101,219,209,254,233,232,129,34,63,249,102,42,142,133,11,139,99,114,150,250,144,237,219,22,104,135,144,137,162,72,78,126,107,81,71,150,67,154,164,116,39,129,166,53,26,64,208,95,169,65,8,72,152,136,138,20,183,12,86,196,232,6,82,153,138,177,22,107,63,66,32,53,129,212,36,165,34,197,74,64,226,17,78,136,203,42,78,133,216,71,184,200,152,63,170,91,65,24,100,169,187,242,126,235,105,192,160,70,81,246,204,2,128,76,26,242,128,139,95,162,28,121,32,1,84,14,13,153,7,245,60,31,9,6,89,83,96,172,156,87,35,33,205,9,33,38,10,108,202,74,57,245,202,212,200,67,51,160,216,143,235,159,26,115,94,173,143,200,161,65,125,175,153,0,65,219,32,135,6,49,125,211,242,241,191,255,54,
214,23,252,145,49,182,128,217,7,167,248,232,27,66,128,12,151,178,179,64,249,68,44,141,81,171,29,120,53,177,75,100,46,195,145,255,236,33,131,160,145,40,0,1,20,121,176,223,94,200,137,105,111,254,222,221,70,239,163,114,128,61,168,213,244,145,144,253,129,179,149,89,13,220,74,57,76,25,40,115,246,213,168,3,180,50,116,211,103,169,220,103,241,232,89,147,39,97,51,131,80,15,32,202,89,6,192,140,45,3,245,90,236,124,221,79,71,18,19,107,100,151,113,144,166,127,119,76,128,125,89,187,21,0,98,168,104,11,103,142,229,49,46,118,110,241,148,208,241,191,188,251,159,142,125,210,222,48,98,57,7,107,161,64,37,186,200,134,138,213,118,85,134,162,142,9,227,35,38,78,101,42,179,146,45,183,128,119,33,247,224,242,41,35,96,128,15,184,98,246,160,240,174,63,160,31,110,47,199,30,178,1,17,221,128,154,197,33,68,14,112,23,176,117,19,60,94,252,246,200,102,159,130,213,41,2,0,109,49,113,122,60,107,61,127,113,45,49,185,94,230,57,65,48,116,5,
255,232,41,142,126,87,68,102,129,2,84,247,163,188,23,56,68,11,250,227,85,128,49,83,58,73,66,190,206,30,36,252,181,79,99,120,131,48,34,48,180,2,100,34,197,161,236,145,19,30,237,208,190,16,157,17,166,1,185,218,45,33,163,80,178,200,7,2,180,171,116,11,24,7,10,187,35,131,246,65,216,114,206,52,112,164,107,133,96,98,77,193,4,33,211,143,141,20,176,58,217,218,161,184,183,12,225,250,118,40,187,87,235,112,111,11,40,85,253,227,239,49,98,14,125,172,82,244,96,4,206,99,250,230,49,133,11,237,178,223,53,211,132,76,255,71,22,110,46,28,223,234,113,237,132,160,212,145,54,251,9,179,53,176,210,230,171,110,6,230,167,177,237,244,48,62,1,165,240,116,145,253,148,245,251,201,121,177,91,84,174,143,81,185,165,28,78,55,187,185,205,20,101,130,114,102,118,72,29,54,93,146,171,238,66,222,110,185,24,6,249,42,25,107,200,172,198,50,92,119,157,35,48,66,52,78,248,133,243,86,46,156,18,53,36,181,250,203,134,150,107,191,56,214,249,172,
22,106,110,95,53,238,118,207,219,114,121,61,158,63,223,159,226,243,224,44,0,87,231,194,253,193,182,184,93,255,119,170,49,164,162,145,81,116,91,134,237,200,99,206,239,95,93,4,175,2,201,26,110,113,215,116,84,178,40,193,198,178,253,41,16,134,252,102,181,198,42,105,163,84,227,236,133,178,3,150,2,195,52,71,58,0,227,251,160,192,54,66,3,85,212,117,33,161,137,73,245,8,74,47,71,68,105,102,201,73,210,147,80,146,188,127,241,204,137,255,141,255,10,230,2,84,91,33,210,60,75,206,124,154,87,163,241,77,104,88,41,218,230,145,93,239,81,157,208,7,96,240,139,123,77,232,152,100,4,40,14,211,175,205,3,123,127,136,213,84,154,6,29,39,173,106,4,40,188,136,52,17,146,187,233,252,85,5,209,107,144,152,201,11,212,131,157,83,35,252,132,180,151,251,7,58,34,134,169,247,157,22,167,16,115,27,186,239,4,183,71,255,59,6,201,116,34,167,140,68,79,114,129,218,200,17,136,32,54,160,214,133,244,194,26,178,14,73,46,39,18,149,158,97,188,56,
66,219,200,9,102,112,116,75,39,99,33,201,180,237,139,167,98,32,130,169,193,255,170,197,147,65,15,74,60,132,19,48,80,20,30,14,46,167,220,206,129,165,107,129,90,180,174,195,233,84,138,129,255,112,150,193,148,89,3,54,90,124,248,98,48,15,165,37,21,175,227,50,63,193,243,117,219,48,69,32,127,121,109,150,60,93,103,43,241,184,246,207,54,100,77,234,111,61,220,155,161,14,157,43,44,63,190,209,159,50,19,22,97,208,123,13,9,3,252,121,212,46,203,9,252,244,204,16,148,188,31,82,149,37,173,4,25,115,4,94,64,52,0,143,148,122,4,211,207,101,179,159,81,248,73,232,46,9,6,190,4,152,0,70,144,4,32,159,199,162,26,124,201,131,40,223,242,161,240,221,11,206,230,145,137,248,81,243,87,92,123,196,127,12,2,190,34,55,1,4,254,177,4,17,143,189,84,153,25,192,229,55,10,50,128,131,132,240,133,67,222,57,58,250,96,22,220,227,4,206,96,141,87,132,202,128,224,126,65,224,113,192,177,72,108,174,34,65,94,136,163,35,55,8,14,125,
72,82,219,45,247,111,129,57,22,19,1,1,174,253,8,83,83,14,156,129,251,128,181,94,0,92,11,230,170,193,147,169,91,65,133,173,197,194,255,245,217,192,36,16,6,105,17,206,13,153,119,144,10,217,42,97,4,200,148,123,17,65,141,49,100,11,229,143,225,0,145,62,150,207,49,206,221,140,139,23,253,112,58,154,31,216,106,134,22,112,252,198,79,69,177,210,194,95,164,102,91,80,130,200,106,198,118,9,55,61,151,229,171,123,63,132,182,41,218,135,152,131,237,39,123,30,221,190,116,179,183,60,220,13,111,143,187,227,253,83,197,244,251,162,159,62,234,71,151,250,120,223,198,222,143,99,217,233,49,176,175,15,142,92,48,54,67,46,219,169,164,94,125,31,242,90,239,204,62,193,213,203,0,75,237,41,150,156,52,249,65,129,205,204,217,168,29,203,134,242,19,24,80,45,18,143,229,36,198,32,47,156,7,49,14,141,236,209,175,125,91,125,250,227,225,15,123,94,222,206,52,69,127,53,59,255,197,17,132,209,183,21,47,108,170,131,204,47,26,184,52,191,149,164,122,59,
57,191,214,238,71,220,84,119,29,225,234,126,208,71,89,216,213,76,204,67,63,193,216,202,21,22,147,87,174,53,39,215,191,125,45,93,250,35,197,251,113,116,192,143,64,152,150,74,2,2,98,156,227,25,235,75,28,130,83,16,18,251,36,106,55,61,40,26,121,167,146,182,39,8,198,0,55,75,138,40,171,135,132,39,49,107,81,255,133,161,25,201,153,51,164,17,98,46,68,83,202,64,165,207,34,73,146,158,16,208,158,109,8,212,5,169,75,149,144,86,64,32,91,214,245,114,34,100,2,101,65,10,132,120,94,238,102,13,86,181,132,142,203,219,55,30,198,54,34,12,10,204,44,15,91,14,32,82,167,65,235,242,130,104,107,81,202,2,206,79,59,129,246,124,255,79,73,51,187,181,150,116,246,33,229,4,40,19,9,255,9,149,200,64,195,79,129,71,193,14,180,187,153,4,212,133,108,240,126,91,109,228,230,50,152,3,29,93,219,23,64,146,59,141,203,151,98,152,178,125,224,68,182,98,128,33,139,67,184,128,202,7,40,144,78,98,33,112,178,141,140,197,144,12,53,0,
159,229,1,81,132,152,8,28,91,130,33,236,65,32,193,23,74,63,121,130,251,125,159,81,192,134,45,100,43,47,7,116,244,255,12,104,210,189,31,191,248,199,140,56,139,118,7,253,35,79,63,197,177,35,2,221,67,17,197,196,37,97,174,48,1,175,78,67,22,67,185,88,246,154,94,231,18,82,150,165,161,146,55,47,11,200,86,184,185,114,100,153,145,134,78,176,166,209,48,20,76,65,131,125,97,129,74,66,133,214,164,173,1,0,189,216,69,196,89,69,158,59,12,51,146,88,52,226,172,94,55,211,86,91,251,208,154,44,26,239,137,91,115,132,164,145,72,75,224,25,120,142,129,248,253,170,57,159,8,136,161,56,188,66,20,82,47,10,153,121,188,217,189,105,171,255,120,190,1,132,139,125,212,56,20,13,51,1,42,64,216,102,124,169,24,44,38,224,186,194,180,189,1,200,92,65,82,47,86,225,224,145,71,4,138,105,88,158,148,174,63,208,132,103,206,128,95,102,54,228,52,94,117,210,45,65,160,88,11,37,208,198,129,214,113,65,228,218,192,186,202,70,160,173,15,30,
189,18,80,194,62,55,227,39,231,137,232,167,8,173,101,34,65,174,171,8,138,67,172,1,50,87,49,137,142,213,13,101,110,152,187,24,100,180,33,174,222,125,49,227,197,176,180,81,1,195,253,91,198,161,192,221,9,150,244,23,41,218,30,2,191,246,227,245,147,95,131,8,80,238,249,1,188,133,91,94,20,231,223,28,50,82,187,148,230,151,122,219,207,240,187,27,8,57,147,93,187,148,62,146,213,210,105,241,31,26,46,166,118,133,169,123,173,16,245,50,56,23,161,59,120,199,143,214,62,3,115,203,180,187,17,43,192,235,51,203,37,222,222,176,178,109,110,147,136,225,242,152,230,64,229,71,56,209,121,19,165,90,173,135,0,235,229,186,178,160,175,239,54,62,234,65,228,240,249,174,116,51,223,105,183,216,141,174,175,219,118,117,30,61,87,171,227,130,100,36,251,91,110,224,107,67,221,133,90,187,49,77,140,47,163,187,229,218,102,239,74,240,82,103,103,153,220,215,226,68,129,89,21,243,86,49,232,51,218,71,9,57,197,19,4,85,214,88,192,104,166,59,50,70,186,133,
216,81,158,64,168,219,100,118,83,168,180,11,235,37,218,115,9,29,235,207,83,200,240,82,57,86,179,213,99,63,61,45,143,188,73,18,4,8,182,201,39,147,32,128,114,172,17,253,115,212,164,77,56,35,222,229,30,5,130,5,173,143,12,116,111,209,239,135,11,156,249,250,164,143,134,84,241,136,21,212,81,73,2,250,13,136,159,144,113,215,226,50,152,165,178,42,113,5,50,36,135,104,139,123,119,100,30,226,175,162,45,203,201,104,91,157,192,111,218,15,193,198,146,246,210,152,16,223,213,172,155,227,191,104,190,31,186,235,179,109,125,62,96,160,109,7,68,89,125,14,8,129,99,13,208,160,50,28,39,87,105,144,169,191,96,32,23,132,96,193,149,115,125,130,16,99,30,2,111,221,64,227,192,151,15,197,66,10,160,211,232,6,112,24,87,32,152,253,24,190,4,19,70,86,10,133,160,3,57,178,73,48,52,161,6,149,128,246,91,126,38,42,12,173,51,144,25,60,27,54,44,52,19,157,28,162,136,25,140,134,28,62,125,12,65,12,2,7,6,109,24,61,155,233,249,82,
255,145,239,18,29,179,129,31,103,115,166,146,78,21,131,129,67,121,107,89,150,159,179,237,37,79,37,32,27,103,89,89,146,164,139,51,184,103,51,4,125,55,9,128,184,178,134,142,123,159,76,99,99,87,56,153,83,177,67,70,235,31,166,153,140,242,35,194,94,24,102,242,16,51,90,41,22,239,30,29,34,75,81,172,75,216,244,27,35,145,187,173,160,71,254,234,186,79,94,227,86,170,237,35,12,64,93,190,43,159,197,10,25,5,194,32,138,28,92,213,131,64,21,65,84,250,253,193,164,204,113,223,235,244,214,161,193,15,90,193,56,142,133,229,64,132,123,135,152,102,85,44,151,68,89,210,185,83,7,187,134,130,175,193,11,147,52,29,32,166,160,163,179,163,2,142,32,164,128,206,225,18,142,208,96,244,225,1,144,118,58,1,76,14,141,132,213,162,197,7,79,155,129,160,221,9,51,183,186,216,68,245,92,1,87,13,26,184,22,211,68,254,161,26,68,24,214,131,0,56,192,70,210,39,218,3,133,83,68,30,35,132,177,240,142,227,253,116,22,160,72,155,108,3,9,125,
182,179,103,192,190,76,151,209,231,193,135,6,177,79,239,44,172,71,80,143,240,134,143,127,57,57,222,202,65,8,57,206,134,226,150,74,28,239,18,103,241,239,230,16,177,153,211,242,117,144,37,246,31,152,106,219,57,150,248,89,160,15,33,225,96,3,61,38,164,83,159,41,249,41,124,59,252,231,40,54,151,117,19,255,158,86,241,93,214,130,183,34,59,183,72,108,35,74,104,65,254,65,210,201,169,89,33,172,64,13,75,213,173,13,17,188,254,76,142,4,227,202,52,103,122,234,90,107,51,114,5,139,239,60,158,221,243,230,87,176,60,13,205,14,95,251,90,227,107,215,232,169,227,214,99,100,174,78,34,139,114,52,15,79,118,116,150,173,28,228,32,226,30,52,78,219,87,218,125,176,215,4,128,0,179,193,132,12,211,30,173,107,109,108,130,76,140,97,182,64,88,236,15,132,151,241,33,90,129,236,129,233,153,65,156,37,8,29,29,69,89,225,105,67,73,205,12,122,8,162,18,32,64,50,26,185,185,70,218,147,144,110,148,42,112,203,166,100,141,85,19,156,12,85,20,8,
12,196,6,179,82,136,5,35,247,213,166,152,12,26,216,238,213,46,160,16,22,62,197,70,147,62,17,72,35,26,113,179,170,11,34,24,102,103,237,153,68,246,54,246,193,1,48,127,105,21,231,210,179,165,70,218,113,130,17,105,212,219,59,212,174,250,152,0,4,14,82,110,252,161,134,233,16,175,251,210,255,111,183,68,243,171,125,203,84,8,0,44,95,103,194,224,149,7,106,175,5,193,114,118,96,255,12,99,225,102,130,64,252,95,239,32,33,19,144,155,238,158,184,182,77,131,54,164,13,218,15,214,182,126,56,14,21,11,231,200,44,50,101,135,222,185,25,203,93,16,46,133,231,212,137,5,82,182,8,86,101,143,16,161,56,20,144,9,128,18,254,239,241,208,216,61,77,44,144,54,178,234,120,8,216,16,199,180,186,132,208,190,7,202,253,61,78,61,69,4,39,12,65,25,16,6,128,208,112,144,117,47,88,130,4,75,4,2,70,71,161,18,164,251,226,208,32,40,211,96,202,132,3,162,229,109,254,112,29,58,167,105,225,137,136,157,20,147,65,213,134,88,31,102,135,7,
38,223,166,169,95,8,38,174,127,255,28,235,110,191,56,239,67,17,83,65,238,211,12,146,120,38,211,87,231,145,209,209,223,188,216,2,89,254,246,149,65,255,211,72,90,90,58,213,135,119,181,183,131,215,253,0,103,226,148,65,181,79,143,16,122,232,64,125,162,120,149,238,147,251,173,183,191,64,236,99,159,166,41,2,248,49,86,18,213,0,16,55,102,48,199,245,240,158,179,182,70,96,184,40,64,6,192,78,165,245,254,182,90,149,80,187,172,177,68,173,210,132,136,128,73,25,48,232,191,1,158,94,252,31,205,124,169,177,151,25,72,153,154,3,209,195,243,238,229,99,98,30,74,215,183,7,213,142,129,123,189,142,24,226,113,4,160,15,17,60,209,177,112,154,117,149,32,234,232,97,138,213,198,115,50,244,233,94,97,21,4,67,5,94,9,150,8,3,159,32,211,111,140,155,225,179,216,175,57,75,146,231,250,129,181,151,32,168,103,1,100,134,237,75,213,170,121,234,7,96,27,19,171,202,77,17,213,109,125,133,119,237,248,189,126,7,205,246,87,66,129,26,251,217,242,138,
236,84,103,58,229,119,249,8,134,58,244,105,219,63,169,80,62,226,172,229,78,151,24,166,158,84,167,19,51,135,10,214,51,66,80,226,3,205,117,124,8,104,242,240,115,17,25,213,158,215,67,242,108,233,181,120,154,240,26,63,115,117,20,160,213,102,123,87,155,155,243,38,166,230,2,91,247,6,39,235,92,107,111,219,40,211,204,233,171,180,137,243,52,254,110,78,169,108,33,13,50,173,206,150,139,67,156,71,109,59,202,74,121,46,235,79,198,209,77,19,119,5,66,196,140,250,80,106,0,230,201,202,247,220,128,160,167,179,13,42,44,37,34,170,26,162,32,36,176,168,112,131,33,132,139,40,77,127,137,172,159,59,109,184,34,34,97,132,254,72,103,119,70,119,90,24,98,223,208,100,215,228,17,29,230,131,208,154,38,167,20,197,103,35,19,229,94,137,167,131,149,78,63,25,161,128,38,34,20,43,231,193,62,224,109,177,132,64,88,196,203,108,103,43,125,242,78,43,249,196,126,30,244,126,109,26,123,84,208,222,149,67,65,237,241,159,198,17,32,74,176,108,126,11,210,157,
107,221,225,5,254,168,244,255,63,120,37,255,111,51,122,27,67,243,15,209,1,133,77,212,194,32,235,250,92,212,2,54,2,150,54,22,247,36,143,75,196,178,37,33,139,78,24,1,158,40,35,133,193,31,48,102,26,100,198,148,251,231,169,204,226,15,43,116,69,36,172,182,38,45,140,245,19,123,89,151,64,35,99,104,4,63,29,238,63,0,226,177,204,254,221,55,233,53,232,33,102,102,5,202,252,117,150,197,243,229,72,24,63,182,231,150,238,31,219,73,146,117,6,186,97,23,137,74,2,60,216,5,208,32,200,192,227,178,159,23,201,132,181,137,238,44,183,158,135,121,135,191,193,183,60,244,52,209,247,120,244,54,138,209,72,170,152,173,151,11,20,162,51,49,153,154,224,225,11,115,212,56,224,107,254,74,27,101,160,116,242,32,225,120,50,183,48,198,54,59,37,116,195,8,153,128,151,49,8,222,152,253,48,253,175,80,201,124,70,55,194,237,64,196,34,153,14,195,12,18,32,40,132,194,119,158,116,33,255,46,70,172,195,99,5,149,165,47,36,131,10,32,46,158,125,167,
20,241,81,16,134,180,185,113,56,41,217,163,107,128,231,163,152,95,83,52,101,156,69,10,10,167,57,106,220,74,141,64,86,35,152,202,219,89,222,163,236,173,255,58,82,251,95,30,119,80,184,141,187,84,27,69,69,52,114,146,125,177,84,79,29,254,198,173,47,217,109,49,87,9,147,83,48,84,55,52,173,241,251,252,158,122,200,131,151,39,120,191,203,143,192,10,125,41,32,78,24,240,224,9,4,143,235,219,137,107,126,69,228,191,255,208,48,239,251,38,165,46,196,133,52,104,36,154,35,77,196,139,150,7,5,18,221,131,226,135,105,200,15,141,131,31,163,53,211,7,3,8,86,207,47,204,189,95,86,38,11,251,226,189,191,59,125,190,210,21,142,115,190,28,41,45,140,53,9,141,195,6,112,18,2,8,72,236,1,32,197,30,240,19,136,83,243,37,67,124,52,40,113,18,57,179,73,14,109,39,118,231,23,236,89,8,225,143,101,83,177,244,17,110,209,179,10,225,20,136,65,211,221,20,88,113,76,172,133,246,16,12,101,42,39,197,190,84,223,238,132,225,115,153,203,131,
22,120,167,204,182,125,166,31,241,156,157,250,163,132,41,164,224,47,65,54,103,223,139,15,43,254,245,210,214,7,243,181,135,251,89,25,59,55,222,131,88,7,106,25,171,69,181,125,194,201,30,174,112,100,173,55,143,225,210,36,146,50,210,180,75,19,218,69,231,94,112,237,114,32,66,224,39,244,122,189,251,231,244,126,219,92,63,151,206,243,46,113,122,86,159,188,86,25,40,215,124,48,122,235,221,233,14,151,49,104,246,215,216,201,185,100,170,101,218,102,7,150,183,38,206,90,210,98,199,124,149,73,158,8,84,175,93,155,200,219,135,31,151,122,75,184,216,71,240,162,186,125,238,141,21,16,88,170,60,49,76,243,163,59,254,63,2,228,175,131,1,125,0,136,32,179,16,32,161,18,181,182,105,10,119,237,242,93,140,37,210,30,3,229,173,233,250,72,174,113,57,176,80,156,164,207,74,218,223,241,241,6,52,132,112,145,132,44,183,99,143,5,2,4,98,151,150,27,11,32,53,69,213,57,26,98,41,119,163,88,160,164,240,48,128,236,206,205,206,188,41,218,111,217,215,119,
135,86,60,29,105,191,33,57,108,197,15,118,23,102,247,116,225,45,13,112,36,213,189,198,195,166,234,167,190,192,149,227,183,245,185,60,159,30,191,245,179,27,55,161,110,184,116,4,28,90,129,80,36,63,129,163,3,125,120,237,196,181,91,207,159,125,144,7,105,196,57,162,192,63,158,246,157,109,252,6,144,7,238,183,5,169,145,42,237,116,120,19,250,163,40,94,210,160,209,255,26,233,144,206,17,17,1,2,17,1,66,87,225,99,136,7,40,8,121,205,11,248,216,247,59,56,157,239,231,199,101,249,204,77,55,161,199,113,237,132,201,18,167,30,148,232,179,230,194,0,1,12,100,20,66,237,14,16,4,200,41,17,203,131,102,15,69,199,225,89,142,205,135,97,163,196,48,147,120,107,32,227,128,32,133,203,102,131,115,176,57,133,106,78,24,46,27,215,226,16,85,226,212,234,150,46,211,230,4,179,89,10,210,11,252,250,129,148,231,89,103,152,51,92,74,16,161,42,199,124,181,82,192,113,226,204,228,35,248,224,68,133,56,134,253,234,28,235,81,12,252,155,92,199,62,239,
223,13,174,223,59,114,42,39,62,132,79,53,180,54,116,178,71,50,85,163,251,203,3,98,7,237,41,170,250,122,116,187,144,148,57,232,83,23,173,250,186,175,157,126,210,99,199,82,35,246,141,126,147,235,111,248,94,185,230,221,165,74,174,225,221,185,232,249,38,27,171,50,199,40,60,48,166,108,130,229,55,171,46,190,16,132,201,224,77,21,70,234,166,53,130,77,231,230,22,117,243,135,29,43,69,222,177,125,110,222,42,77,102,30,209,224,136,142,153,64,33,48,244,109,80,36,32,228,144,81,115,9,96,22,182,72,64,130,216,16,160,32,28,33,107,30,254,84,99,20,5,126,128,216,229,26,34,192,126,79,207,228,44,79,1,38,24,198,77,150,75,42,140,148,99,60,223,177,245,112,19,26,80,145,131,64,150,129,199,250,11,142,33,136,193,64,6,169,82,49,199,147,169,77,229,6,180,75,192,11,16,41,80,61,227,190,31,93,247,131,45,244,247,77,233,189,234,87,77,62,102,62,79,126,64,164,209,5,223,136,152,106,17,225,158,12,245,35,204,172,74,180,163,124,232,215,
208,247,126,213,63,115,148,188,229,29,71,44,26,26,223,64,16,240,192,8,207,206,118,88,59,236,204,58,28,193,55,221,109,225,198,217,157,219,0,115,121,135,4,220,156,46,95,184,226,249,253,160,85,43,197,137,189,209,26,95,160,69,210,81,254,160,72,133,111,40,158,254,248,186,49,41,134,148,176,16,192,121,245,177,8,123,82,109,156,199,243,57,138,187,95,158,79,237,197,174,215,225,103,91,125,79,150,3,197,191,89,63,33,208,20,144,202,100,98,51,247,61,132,9,201,131,132,112,195,176,226,171,134,198,239,210,164,90,160,69,173,103,45,224,22,79,121,243,38,132,52,107,229,55,190,183,124,217,122,118,203,6,207,154,171,108,74,112,75,54,111,9,86,206,250,253,151,232,196,42,124,125,249,101,105,204,50,222,249,14,239,47,112,209,219,177,5,49,44,242,179,27,223,32,191,113,125,188,94,27,255,248,26,29,151,148,173,91,100,74,37,90,194,97,217,18,232,183,92,84,178,77,16,32,76,163,251,193,249,49,23,6,202,3,251,148,160,194,79,174,25,176,249,245,221,189,
127,72,174,239,161,232,122,157,62,161,247,251,121,222,59,93,93,87,14,175,29,110,140,171,181,102,112,62,34,221,71,166,41,87,102,12,249,191,79,249,34,178,78,212,62,155,222,25,168,162,175,27,222,174,41,219,40,182,245,235,96,59,238,36,203,226,169,91,116,82,35,59,5,128,0,82,157,54,144,148,89,4,71,229,89,3,141,207,204,213,38,153,140,131,59,4,2,36,134,73,216,128,133,103,152,32,248,210,122,121,160,206,164,237,109,55,34,72,77,112,241,197,77,0,135,73,174,125,150,73,20,44,142,226,12,213,43,148,40,199,128,6,2,29,41,134,36,133,37,21,126,166,160,251,147,242,150,186,195,30,246,40,150,53,52,121,128,19,175,165,67,214,137,43,228,172,23,123,13,34,31,244,176,55,92,203,88,243,241,16,124,81,37,189,190,97,194,207,18,68,125,44,160,193,77,147,9,71,60,248,96,101,5,102,65,19,163,33,3,224,20,160,76,245,126,193,190,239,120,46,53,187,182,102,173,216,54,230,107,92,21,66,189,72,1,4,32,96,32,72,255,217,135,3,48,80,
130,110,5,153,11,111,100,118,164,203,243,23,24,137,145,11,169,81,88,76,224,222,222,211,57,17,121,95,1,156,72,148,84,27,60,87,101,65,69,216,175,138,142,102,79,74,35,143,121,40,220,229,173,252,76,202,183,227,38,78,35,219,37,117,162,227,198,168,156,178,45,126,242,104,122,170,94,110,247,243,217,123,44,190,235,75,150,42,13,152,210,18,73,24,254,52,160,20,208,195,60,215,150,116,68,153,125,146,158,100,138,132,193,63,227,20,15,153,63,66,178,125,205,219,157,63,49,114,140,216,62,188,127,235,77,194,185,89,194,29,143,221,203,81,221,244,123,54,69,161,212,88,63,212,211,94,237,37,131,136,17,138,205,49,204,14,85,111,189,75,196,14,79,102,182,249,171,92,248,118,224,44,57,208,60,64,136,177,239,102,206,113,101,244,232,248,166,143,119,238,116,98,245,106,4,179,157,178,90,40,64,131,165,209,208,186,65,43,174,115,85,172,53,158,245,135,226,124,243,244,30,112,244,107,52,122,254,62,234,233,170,38,143,109,107,248,87,234,99,244,245,238,147,68,230,150,
173,74,26,161,120,63,10,37,54,166,46,95,197,125,31,65,32,234,84,105,157,187,144,63,90,58,131,135,126,254,12,88,172,56,131,181,118,36,90,136,53,29,92,163,0,0,193,20,116,59,65,32,136,33,45,134,9,44,194,125,248,114,10,247,5,233,144,116,150,74,235,81,145,99,67,159,68,109,13,215,247,40,25,13,197,39,233,24,53,209,133,107,129,76,100,172,167,73,212,255,85,132,37,117,6,204,101,70,9,129,251,208,65,96,197,136,14,156,244,160,170,97,79,15,202,58,175,93,32,135,153,48,186,77,70,24,209,67,44,147,167,67,42,203,131,0,145,16,163,115,56,141,146,3,16,104,189,133,213,175,179,230,131,44,170,181,97,87,86,236,147,82,11,209,4,201,121,73,205,110,42,112,200,84,49,9,82,179,131,20,58,246,142,29,224,157,192,255,209,115,27,187,29,223,193,226,191,166,255,34,167,102,169,108,60,89,128,137,25,34,200,32,64,110,140,96,187,11,115,26,17,84,153,22,89,139,117,124,208,149,185,217,121,190,3,88,26,193,83,5,69,81,61,159,33,105,
83,23,77,45,113,10,234,147,157,238,122,96,10,230,78,125,250,191,52,238,54,34,155,32,17,157,37,15,233,180,105,23,218,140,76,172,157,183,251,69,189,225,63,108,123,13,152,186,224,185,151,174,196,113,32,97,209,92,82,107,218,172,1,57,241,60,12,132,176,236,116,160,24,230,122,8,247,144,195,41,34,163,153,31,77,129,151,194,160,182,216,15,108,222,28,208,28,195,203,20,80,198,223,194,151,168,92,132,168,180,124,146,46,239,79,183,114,105,216,115,175,144,87,225,163,193,41,19,201,250,141,23,160,77,75,160,147,21,182,76,122,212,79,239,118,133,171,124,213,87,73,212,135,159,110,142,115,124,72,200,12,122,252,107,197,114,232,5,18,53,49,118,210,141,148,252,146,177,107,230,244,112,27,173,70,181,52,203,110,161,160,56,39,123,25,104,157,115,44,168,119,159,206,223,103,202,103,119,150,189,7,155,219,38,221,34,132,173,46,110,9,234,52,143,150,116,74,139,230,43,185,33,18,192,218,79,36,134,177,4,151,38,172,169,25,59,212,71,51,109,118,183,44,231,149,220,
92,111,166,123,72,246,159,214,71,96,254,253,211,72,203,241,135,0,245,199,64,17,27,132,136,246,23,61,246,122,191,186,239,249,80,155,81,44,83,193,91,38,59,85,195,104,15,84,216,69,111,25,84,238,15,32,84,20,212,255,23,51,213,84,220,5,253,14,67,30,102,153,41,65,220,174,12,54,188,232,32,17,4,36,214,131,162,151,77,80,187,183,109,44,37,36,72,123,211,204,33,29,226,48,175,250,9,196,33,170,215,46,21,249,95,220,204,31,153,132,23,22,120,67,33,5,159,78,87,209,100,35,110,17,29,21,212,160,148,26,209,14,81,81,150,165,117,146,72,226,166,147,195,8,154,56,123,107,244,67,95,78,215,107,239,117,189,87,156,239,153,176,225,31,196,99,167,23,99,119,243,178,230,60,119,204,247,137,207,79,46,212,184,7,243,8,166,168,67,218,29,203,122,149,217,163,251,199,188,219,0,233,206,133,160,125,140,216,107,144,198,79,124,36,106,193,200,129,14,52,217,51,109,97,211,36,43,126,10,75,161,206,84,230,25,164,107,245,50,111,111,149,131,89,187,180,
234,203,26,79,123,26,209,41,214,219,47,159,175,175,168,107,177,222,73,10,244,58,21,67,134,5,91,104,19,164,139,2,15,55,182,155,68,57,32,74,164,69,25,34,150,49,198,14,148,9,88,8,181,105,73,247,19,115,224,252,191,110,154,114,24,57,200,26,193,10,96,225,230,194,205,10,140,41,132,50,105,108,163,38,239,240,111,135,215,252,135,192,203,239,239,119,66,119,107,60,88,93,110,174,241,165,92,225,30,139,103,156,17,42,240,207,10,86,132,182,117,111,183,203,55,207,193,109,6,131,178,208,79,232,248,244,63,120,2,167,131,254,132,60,248,75,213,163,111,208,47,20,58,216,50,87,117,218,191,115,134,186,210,125,234,43,174,75,221,238,216,114,129,163,177,251,249,29,218,191,47,253,247,222,188,184,242,221,115,231,243,122,181,30,167,237,229,76,155,123,149,107,77,230,98,153,236,116,81,146,69,115,29,108,249,184,192,177,109,94,109,85,154,214,97,155,254,45,93,189,0,57,126,173,158,154,90,109,165,74,11,178,146,211,49,143,230,96,173,65,112,67,40,56,156,205,
69,62,242,207,14,114,108,160,248,116,15,1,10,25,229,32,111,35,207,208,69,9,95,142,206,222,214,226,142,218,232,141,213,83,194,214,38,129,135,136,12,170,165,81,245,112,11,251,164,164,4,1,194,37,65,0,132,135,149,34,35,122,28,73,169,145,128,137,69,169,39,150,234,62,43,102,129,169,217,234,216,32,215,164,137,28,96,139,4,11,75,212,44,16,66,130,184,115,47,23,239,247,159,165,24,151,246,222,45,245,138,182,183,43,138,88,176,188,199,156,3,118,117,222,244,86,23,14,231,160,16,149,35,104,254,94,6,37,75,230,149,190,96,75,234,253,183,144,38,167,215,102,51,178,223,196,252,245,139,64,39,17,177,3,240,192,15,248,7,2,189,203,59,114,130,85,1,59,61,248,199,4,65,209,146,246,216,104,96,229,68,13,8,70,0,163,18,25,209,33,3,85,144,169,32,9,63,102,54,28,145,144,11,225,4,250,198,164,255,82,169,71,87,11,60,45,173,28,122,195,186,202,229,15,204,202,74,20,45,180,192,15,199,235,86,195,39,14,164,51,92,239,221,106,76,166,
100,83,199,91,217,53,159,27,4,154,207,3,7,93,104,3,25,153,138,242,217,85,62,76,219,164,149,254,213,96,23,116,25,2,220,7,147,22,184,152,43,100,91,167,78,191,228,127,177,88,233,12,113,71,225,163,187,3,194,127,129,107,187,206,118,247,3,255,53,61,141,13,246,183,53,180,248,233,81,163,237,236,113,75,145,63,14,127,243,73,108,113,215,215,246,220,20,183,56,158,235,150,97,145,27,92,145,14,72,185,201,53,126,42,65,171,93,231,155,63,198,14,131,63,114,92,99,235,184,123,95,183,194,85,141,218,120,82,147,60,8,48,153,123,165,196,253,193,196,51,193,78,84,211,6,173,255,2,42,101,252,184,236,223,245,15,251,61,202,62,171,175,253,194,247,109,190,231,219,231,224,218,225,106,175,147,106,59,180,27,53,113,155,65,204,37,46,1,76,246,110,61,158,73,96,156,130,150,193,219,114,207,51,224,44,90,110,22,166,16,57,112,218,88,165,216,27,112,141,100,162,211,72,168,59,135,102,242,113,144,234,30,211,65,128,248,232,225,69,31,113,205,67,114,132,177,
40,149,224,152,103,139,180,52,167,47,208,254,154,1,174,153,224,181,168,106,203,69,155,231,60,112,119,166,178,174,109,60,112,206,38,72,219,111,46,139,173,153,67,80,188,195,208,168,160,215,62,64,232,195,145,204,181,33,49,35,11,175,110,255,21,176,23,150,230,109,66,216,43,19,65,23,169,36,68,44,124,158,100,123,3,146,22,22,154,60,115,165,23,114,178,39,134,84,246,251,17,242,60,59,163,76,150,160,161,180,9,94,6,60,97,6,114,148,98,0,72,153,130,73,173,112,53,63,69,150,51,185,17,57,101,47,244,233,249,133,214,110,199,119,241,63,221,113,11,238,70,124,69,28,64,64,4,65,92,24,47,45,104,191,125,152,86,78,148,14,188,215,101,94,22,28,223,241,158,31,10,102,63,28,72,135,112,248,82,211,32,24,85,210,41,76,132,99,38,198,96,75,44,24,174,144,141,254,209,139,244,92,47,217,119,207,98,35,12,222,4,204,146,168,160,28,48,25,95,26,229,234,137,168,101,129,95,158,191,106,246,22,29,104,82,183,216,166,181,202,200,245,86,79,247,170,
152,207,139,47,53,208,169,222,110,240,42,107,42,250,143,109,124,122,173,251,159,192,130,67,185,181,130,193,151,138,241,244,241,159,83,46,140,224,148,186,211,96,95,86,69,11,23,232,147,248,24,230,151,248,225,102,202,205,161,243,111,63,228,228,92,149,208,161,197,47,111,125,180,197,109,117,245,5,57,160,234,231,240,113,236,178,65,250,229,94,192,207,172,109,223,214,57,146,121,84,129,77,97,149,107,194,119,127,255,238,210,77,7,195,60,95,167,187,111,246,199,215,192,225,115,189,204,230,29,28,62,235,239,113,183,210,76,226,146,110,132,74,228,211,161,109,11,44,107,210,106,84,103,231,170,224,120,45,5,246,100,110,179,75,241,222,105,245,120,110,28,127,27,226,119,229,63,223,199,249,126,184,182,191,221,123,112,47,225,99,118,216,46,89,146,166,217,30,189,206,162,104,67,164,32,54,132,74,170,176,239,130,20,232,180,228,218,150,5,252,226,210,85,52,197,153,87,197,223,106,181,152,58,112,124,153,4,41,5,86,123,90,122,1,25,9,1,25,225,109,230,50,80,35,100,87,
127,146,38,238,138,200,1,83,31,123,200,229,218,159,129,139,118,65,119,73,221,99,158,161,178,117,139,214,17,206,117,109,238,108,116,128,111,83,52,219,43,175,36,200,220,67,149,171,4,206,186,220,198,218,182,70,59,206,141,210,183,17,112,106,177,46,106,100,194,10,106,103,15,203,139,250,14,129,174,172,50,131,102,33,153,74,77,7,136,125,66,56,141,221,142,51,25,67,90,216,226,254,46,234,177,124,127,181,49,127,134,150,134,119,124,16,144,160,72,82,130,228,198,202,36,14,201,79,34,38,210,90,169,146,42,36,121,20,113,107,166,43,226,88,251,25,132,70,110,198,183,68,157,219,255,219,210,141,253,63,91,50,54,210,19,65,114,34,161,143,75,14,217,144,97,244,10,114,46,220,182,229,152,68,135,50,96,3,54,101,115,25,163,1,15,251,226,65,183,80,8,159,56,72,166,165,80,110,37,93,45,225,22,80,210,1,215,18,3,145,132,0,238,17,39,236,7,81,8,114,16,113,212,217,131,47,8,174,4,70,174,108,26,229,77,79,162,54,173,211,37,48,207,65,138,63,
158,48,123,234,91,126,205,109,78,29,74,88,129,186,231,190,120,149,103,177,200,145,97,243,212,218,151,22,19,180,12,204,180,42,74,127,71,57,17,135,198,21,167,178,154,240,138,211,201,73,65,171,158,226,27,215,212,23,224,155,81,62,110,125,206,15,173,227,128,179,212,241,221,225,209,115,230,79,98,137,11,186,204,51,184,99,234,191,169,98,20,212,125,79,3,50,239,203,31,197,41,78,222,150,56,192,76,119,26,229,62,195,179,195,237,211,220,114,183,184,88,126,186,6,239,5,92,109,243,171,116,113,55,215,200,243,112,30,111,184,90,30,86,227,246,222,206,91,49,136,18,117,184,19,165,77,251,220,78,109,231,139,201,136,167,226,63,101,87,175,87,176,34,79,62,55,204,231,141,188,127,15,250,111,181,107,249,126,23,249,200,247,59,187,158,161,91,100,85,235,162,126,93,75,172,242,105,151,104,240,199,131,81,137,97,26,31,142,111,86,229,151,250,250,213,197,177,205,242,241,207,131,73,189,178,142,113,53,155,215,92,110,60,171,204,13,205,100,130,116,70,107,51,43,128,140,
163,135,59,232,129,119,159,210,116,135,100,176,104,71,175,83,29,71,211,157,159,42,19,85,157,109,104,142,40,164,225,66,65,77,254,169,13,126,98,123,144,178,221,217,206,22,65,136,1,247,197,152,233,56,112,247,75,133,204,165,159,35,227,37,198,7,27,191,172,214,200,91,132,152,246,84,55,241,20,76,88,180,170,106,217,5,42,87,218,45,113,63,9,16,67,161,65,199,17,44,137,106,216,51,201,77,112,247,93,34,39,124,59,101,68,189,49,31,109,7,105,133,129,31,198,27,128,92,140,89,14,76,199,35,62,34,212,47,74,134,118,59,109,18,131,170,232,229,166,240,183,251,189,245,89,61,159,245,247,76,222,128,248,71,209,83,9,135,24,152,244,233,94,157,139,220,149,228,48,101,53,162,181,205,70,109,34,203,89,161,92,144,1,38,51,26,114,26,228,20,179,169,155,6,225,12,58,57,16,141,238,165,208,48,180,233,217,202,229,12,122,127,139,249,67,129,183,175,245,126,9,219,146,67,108,63,49,219,161,205,151,242,59,1,223,216,55,252,58,172,234,76,28,223,214,141,
83,37,87,35,189,132,127,241,77,96,187,197,159,182,134,249,45,21,157,10,182,181,138,61,95,8,18,121,32,244,20,207,233,2,202,29,247,124,234,104,40,165,80,6,117,24,44,160,43,98,155,231,60,251,21,191,18,126,238,200,61,136,248,60,98,182,214,10,31,68,235,156,2,169,216,222,198,128,171,192,245,51,126,144,224,89,129,254,206,114,242,129,67,250,82,167,111,127,19,28,62,56,89,20,220,238,4,61,86,106,76,6,95,111,15,208,158,103,111,169,17,120,120,59,43,56,252,74,74,220,255,126,1,37,198,11,45,45,240,176,32,16,112,173,93,65,89,187,93,168,63,167,199,166,220,63,122,181,254,123,225,126,103,213,231,179,184,60,75,173,117,110,183,51,241,125,218,223,236,183,91,253,46,177,109,239,247,173,191,15,174,121,103,219,90,189,13,206,110,78,123,171,253,249,146,157,8,126,173,207,173,245,224,153,242,112,246,249,188,90,254,166,59,167,195,55,45,85,112,225,190,94,83,39,215,161,189,72,109,204,101,10,27,152,57,154,121,33,5,0,72,35,248,9,8,22,
128,240,136,210,254,238,199,183,149,94,161,186,91,233,223,102,83,44,209,133,94,23,226,210,208,165,46,89,234,250,26,68,174,251,104,94,78,119,143,210,249,92,8,145,103,83,65,136,99,145,59,244,57,44,141,163,21,157,127,15,90,8,121,53,110,81,231,201,142,146,11,63,183,180,118,213,229,226,35,198,187,181,187,51,101,83,219,83,183,255,2,15,92,92,136,96,12,112,85,71,23,40,8,31,220,212,176,26,235,109,18,194,88,68,14,120,166,65,136,107,228,38,46,3,66,215,175,126,16,155,40,91,101,59,30,248,1,22,7,9,9,132,8,52,177,196,227,93,137,180,136,201,162,194,179,255,201,201,195,250,159,156,248,192,163,168,73,196,58,140,216,141,204,194,55,124,131,127,46,225,226,229,88,100,81,183,107,216,46,107,157,54,110,107,212,137,52,49,162,44,0,150,137,155,58,172,12,106,31,151,4,5,181,34,238,112,113,242,200,171,234,48,166,143,178,69,34,175,82,8,174,239,203,248,248,141,91,185,205,88,159,55,103,68,176,217,192,188,120,125,152,11,57,155,110,201,
220,92,32,15,129,30,200,148,77,89,215,76,99,71,88,142,45,220,133,95,110,34,108,172,161,157,242,83,24,74,193,126,84,204,89,245,182,123,51,79,231,190,21,222,140,219,74,187,120,179,140,174,174,38,247,106,97,68,217,120,136,48,180,252,1,151,157,191,210,192,33,228,147,112,112,66,225,81,195,221,253,78,250,123,26,78,0,202,7,92,216,211,79,240,131,6,156,216,215,107,187,247,115,113,252,71,73,188,255,146,134,122,188,105,255,101,112,235,1,50,254,84,202,67,119,203,183,197,225,214,234,126,122,202,170,52,125,11,190,188,93,229,171,169,122,146,213,114,147,180,60,136,162,114,36,81,86,45,57,62,53,239,251,201,122,63,174,155,111,109,151,228,251,126,234,239,229,150,249,189,107,194,111,141,175,250,125,248,194,251,234,150,192,247,190,174,93,119,94,139,77,254,22,131,171,155,126,173,81,6,191,201,111,0,104,175,239,247,217,236,245,120,50,45,239,187,249,207,61,119,110,228,83,228,144,181,18,173,236,182,115,164,167,218,183,176,245,93,197,170,242,107,106,232,135,14,
29,175,227,220,226,163,70,97,24,155,243,161,96,177,102,110,113,157,22,171,212,92,215,9,243,179,66,21,103,69,41,123,40,171,238,12,131,253,76,119,120,238,201,61,101,189,9,154,30,220,56,52,72,126,194,2,132,41,16,4,6,246,90,32,106,191,63,125,244,249,243,105,56,222,94,109,45,172,55,23,103,220,91,251,240,122,112,119,23,97,245,190,92,211,194,26,197,30,247,175,176,212,251,221,160,177,193,5,10,20,226,136,231,190,10,178,243,79,27,183,195,140,5,225,160,189,240,93,242,19,5,2,208,94,38,247,162,31,60,218,221,97,237,195,17,130,48,24,49,157,252,97,72,164,59,225,199,255,31,216,179,59,255,3,251,100,184,35,6,116,252,44,125,31,138,48,137,139,40,25,178,20,187,241,100,46,115,73,235,41,104,145,203,121,214,114,114,90,229,206,4,114,163,133,76,7,78,33,154,77,152,135,29,212,220,40,223,98,3,221,144,171,92,206,50,119,252,118,172,223,222,156,183,79,134,83,37,96,251,119,201,33,171,149,211,38,95,141,38,162,250,222,141,243,213,242,
8,133,57,220,150,76,166,129,55,201,60,200,122,245,240,23,212,65,40,38,47,233,149,114,61,113,146,253,2,231,28,175,240,207,225,248,226,87,113,121,17,5,231,188,165,93,53,62,2,17,170,181,102,123,87,200,34,39,59,147,187,194,27,58,223,49,175,12,150,211,123,64,54,72,16,11,10,100,241,62,192,209,189,179,200,139,7,204,21,224,178,140,181,193,135,249,28,157,158,48,174,125,64,122,32,158,195,76,206,67,130,16,127,65,103,239,206,186,59,164,157,94,226,166,159,117,241,250,217,77,79,203,59,47,124,62,61,246,170,72,126,69,214,183,84,101,225,154,79,54,251,49,181,183,164,191,61,194,247,137,63,191,95,88,57,255,125,253,240,255,224,173,52,232,133,126,117,161,235,77,255,253,14,220,83,167,213,105,249,106,236,151,252,209,23,124,14,119,124,215,63,224,229,185,125,92,237,122,31,68,112,179,237,81,223,225,123,166,120,125,141,14,207,84,90,59,211,121,212,80,225,70,42,154,144,229,218,244,228,106,128,183,51,103,51,43,207,63,118,74,132,104,130,202,2,36,
199,93,23,5,90,26,205,103,211,98,44,251,42,160,17,119,75,164,230,46,180,197,216,141,237,153,201,138,19,14,10,59,92,193,146,227,69,239,235,126,61,213,142,60,113,69,136,44,44,118,166,16,95,236,250,1,14,197,13,236,239,209,49,26,21,12,160,222,129,177,217,205,175,142,46,172,48,200,240,175,244,6,118,183,160,28,61,185,84,21,121,66,96,92,94,153,88,35,175,197,102,191,211,189,24,144,127,187,1,221,207,144,27,241,204,8,217,126,40,168,7,97,12,138,193,244,91,128,168,225,21,193,59,31,120,137,67,57,24,163,44,209,171,77,130,102,48,199,94,136,249,215,197,255,171,226,151,127,93,252,191,42,62,64,132,248,56,251,181,14,206,198,176,121,48,200,126,7,189,225,30,15,124,187,120,88,111,162,63,178,150,100,174,112,211,246,67,95,130,174,223,51,132,253,16,182,135,60,52,136,59,9,233,66,14,79,26,196,186,183,26,178,208,106,157,183,125,56,68,162,53,154,173,106,147,163,160,85,129,141,166,251,59,41,71,81,192,113,43,130,197,242,95,2,142,146,
122,65,33,196,41,36,93,52,52,172,20,172,125,157,215,4,208,50,12,254,254,69,44,67,23,248,206,187,248,51,77,208,194,121,179,247,175,251,55,4,165,244,190,18,171,121,58,81,94,190,78,116,128,156,144,79,25,71,160,78,131,235,80,162,143,32,215,7,81,21,7,248,50,64,17,26,112,215,223,141,210,252,107,2,124,206,47,172,253,71,30,159,65,8,47,136,0,95,136,96,220,179,28,83,95,167,175,207,5,47,84,234,254,151,116,195,27,76,193,64,241,56,27,124,186,54,237,31,57,233,171,84,108,151,18,165,53,168,239,48,225,181,95,189,198,143,92,143,254,27,221,50,122,223,199,248,243,253,142,234,167,221,103,253,125,188,191,207,63,225,108,200,215,191,107,226,113,113,184,127,127,156,14,95,154,2,239,121,81,171,209,81,2,187,124,126,206,174,113,162,186,182,189,251,202,115,254,89,198,12,136,48,8,33,202,62,170,149,210,166,100,194,226,54,68,176,4,15,40,184,203,167,149,147,243,19,28,110,240,149,145,120,15,105,58,85,146,179,38,56,194,77,218,186,88,203,
104,178,23,55,59,214,82,22,180,247,113,104,202,106,177,78,239,2,145,47,122,180,154,235,79,71,251,61,248,106,47,103,189,237,110,72,119,198,0,102,63,110,67,53,136,32,3,102,34,234,180,138,101,166,188,114,182,189,197,7,39,62,187,103,162,4,121,39,67,24,218,129,100,214,30,2,33,178,177,178,58,121,65,66,207,220,228,156,19,61,29,189,141,88,43,235,97,170,215,138,222,223,70,243,49,242,169,190,4,100,20,31,243,4,196,231,29,33,12,17,112,154,123,32,131,43,209,67,238,126,122,51,115,98,252,167,236,230,183,132,35,88,248,199,227,209,254,190,244,255,125,180,144,183,188,218,113,196,45,181,180,31,233,185,35,142,219,135,17,209,40,42,221,95,98,214,76,16,146,51,16,66,245,48,196,254,70,208,37,179,227,20,164,97,144,114,137,251,65,18,134,92,68,32,42,178,48,236,184,34,190,66,10,153,188,13,118,247,79,130,0,144,196,41,91,112,68,181,15,130,33,96,26,145,37,25,150,84,94,130,100,249,237,86,205,21,57,121,136,131,67,203,180,243,124,197,
107,240,87,132,35,149,94,235,24,230,58,99,128,171,236,105,93,214,68,130,149,40,141,71,208,249,142,170,252,80,205,231,30,213,140,21,58,141,65,39,133,208,107,152,240,116,16,220,25,44,227,194,50,249,118,126,15,100,57,218,148,41,31,55,191,14,8,147,176,193,123,158,220,110,123,192,233,222,199,43,244,95,26,96,228,1,180,15,60,187,255,223,235,86,97,236,136,152,250,237,230,115,233,250,211,231,209,224,214,150,25,61,165,34,203,84,170,138,106,241,94,171,84,119,159,192,227,42,188,135,236,236,177,124,135,230,255,174,243,239,251,243,13,185,94,125,118,109,170,86,31,29,251,78,71,143,46,85,56,222,142,244,228,185,127,45,4,29,30,100,202,145,199,120,144,211,11,26,94,84,93,247,143,227,115,55,191,62,111,151,183,187,56,111,141,40,113,185,76,110,97,54,141,165,177,177,169,1,23,176,124,21,105,232,134,116,147,6,237,142,197,191,36,59,3,185,146,106,144,234,212,203,142,219,88,125,23,27,82,27,142,138,42,205,164,81,38,97,241,247,139,53,246,186,31,195,
151,247,199,69,250,173,45,97,191,58,251,231,116,245,104,181,103,162,55,86,217,161,154,82,68,243,93,30,181,228,124,244,36,173,108,164,140,111,200,178,82,181,207,94,180,168,180,0,103,9,188,107,156,224,17,138,195,177,53,180,57,73,65,27,201,218,221,201,136,154,167,5,27,167,204,214,180,46,36,58,251,177,57,245,126,145,33,255,216,104,81,130,190,88,154,73,72,0,2,49,33,47,118,103,0,65,98,130,160,77,128,128,48,89,67,46,230,33,196,208,144,151,113,24,250,118,113,255,27,59,250,224,255,27,59,98,21,59,76,253,187,121,50,94,21,159,127,145,15,41,239,220,44,161,16,198,201,1,89,211,133,108,1,114,199,146,59,1,20,102,116,198,52,49,145,169,250,65,142,199,37,141,202,21,187,107,147,29,221,44,68,141,0,229,98,113,17,17,47,41,206,144,161,17,154,96,29,62,128,124,79,200,20,172,202,173,109,94,248,252,208,13,97,214,27,148,130,40,68,168,10,19,25,199,73,180,56,110,62,40,133,12,248,0,176,36,46,190,30,96,186,243,202,228,105,93,
55,176,152,37,28,175,82,56,153,62,64,124,96,133,168,180,245,69,131,178,243,51,94,186,112,61,55,21,164,71,142,246,82,121,83,197,141,65,96,153,15,29,54,53,16,212,231,67,223,70,135,200,103,248,64,59,11,221,249,27,228,233,148,237,12,228,165,238,245,192,247,237,110,166,206,190,199,55,86,53,192,141,124,187,146,93,206,28,154,20,78,220,124,250,89,17,90,219,149,130,233,8,170,244,95,122,116,121,163,222,140,148,129,251,107,247,189,169,126,239,3,251,124,219,5,191,55,253,90,254,218,60,46,22,39,151,6,47,105,214,190,36,220,124,118,162,176,116,248,225,155,120,223,215,82,143,151,198,235,197,119,120,253,4,94,59,134,126,165,245,160,178,28,88,103,215,123,211,221,209,154,26,69,240,207,220,209,84,254,46,193,70,150,142,102,86,1,192,208,211,211,214,71,105,167,63,73,202,157,59,21,114,37,124,178,221,46,232,218,33,228,38,179,212,43,140,127,168,171,57,223,166,14,177,41,91,91,248,50,123,196,221,88,202,254,163,94,225,226,203,168,193,255,148,42,191,
133,240,73,174,49,98,63,234,218,97,42,249,49,95,231,72,54,119,93,57,241,187,81,84,199,177,94,229,122,86,72,84,75,11,154,253,50,146,177,177,85,61,211,139,123,6,7,214,216,191,94,226,176,169,206,45,186,102,254,166,136,182,81,41,218,168,127,244,44,42,107,61,249,115,179,125,170,51,47,254,5,229,31,31,43,140,79,32,75,147,137,15,200,204,100,228,201,194,28,128,88,99,240,1,246,131,225,163,80,55,0,3,16,35,171,249,68,20,143,52,219,111,255,79,75,255,73,201,241,79,75,255,73,201,255,32,110,126,24,71,96,22,70,203,190,111,117,91,103,188,136,144,108,108,193,69,186,158,135,51,197,211,176,46,15,15,72,41,245,195,195,94,120,40,152,38,235,82,45,22,219,220,174,139,79,127,253,91,124,251,248,205,93,94,182,141,208,122,139,138,157,25,222,226,137,207,107,197,135,223,135,130,196,178,241,224,191,61,163,230,246,117,114,184,90,125,241,35,10,240,145,16,205,225,11,98,205,0,13,59,207,207,67,183,176,183,190,96,10,17,136,97,80,180,92,32,
65,85,94,132,5,245,3,83,84,180,64,221,9,128,90,246,108,166,96,170,8,163,115,83,41,152,43,170,232,202,205,188,33,36,12,194,194,5,158,163,0,239,110,153,22,233,0,188,100,89,235,197,65,239,193,211,224,118,33,100,150,204,202,118,249,187,61,223,206,92,125,211,87,121,69,22,209,3,169,134,61,118,111,112,207,120,80,113,184,125,186,83,17,75,213,5,199,159,122,195,50,250,204,21,114,251,180,205,144,220,189,157,69,92,232,19,178,129,150,150,136,153,148,9,245,110,176,114,173,225,247,178,181,196,200,135,109,165,240,57,205,59,189,203,34,84,88,60,31,165,220,101,217,213,189,44,193,171,237,78,212,225,139,35,245,239,177,184,172,47,173,199,134,125,75,213,118,116,125,166,171,227,119,53,252,94,75,129,223,97,98,246,174,239,48,156,64,7,77,182,10,234,54,144,167,36,1,250,192,145,28,205,141,102,38,61,67,71,214,50,116,77,20,7,10,166,38,125,78,51,230,218,206,152,136,204,78,141,23,183,224,148,80,40,131,161,200,234,244,79,103,182,38,184,160,198,
134,93,252,12,230,159,247,215,249,93,173,206,122,253,205,236,115,235,186,151,46,205,91,135,160,244,135,146,123,19,175,202,11,98,255,41,168,162,94,10,127,43,42,206,165,56,155,101,112,74,128,96,13,218,84,142,51,8,57,236,167,175,81,186,166,22,169,142,216,8,130,37,31,88,186,11,50,35,215,233,89,31,200,1,183,219,121,118,1,62,159,83,250,247,71,247,101,254,118,49,76,87,30,166,14,109,19,212,140,73,148,132,1,144,65,208,112,241,19,230,94,90,84,128,113,152,12,115,50,4,130,12,237,135,162,211,127,99,202,150,226,127,99,202,49,254,255,199,148,238,64,83,82,18,68,130,24,52,192,116,198,152,239,14,172,158,95,1,196,164,188,178,33,220,36,54,176,203,45,84,252,212,99,27,184,178,174,143,130,169,90,206,69,136,41,27,169,202,57,142,49,153,255,71,122,13,32,112,115,99,248,47,83,53,23,97,234,143,210,84,107,129,95,105,55,77,135,0,38,60,95,35,178,40,103,5,202,16,134,3,65,152,60,74,228,1,245,99,233,31,155,190,166,153,243,114,
172,132,201,149,80,68,64,206,92,224,33,138,238,192,63,172,18,219,163,210,206,68,78,105,16,132,42,169,144,73,153,82,58,36,228,52,2,210,178,174,30,14,142,12,92,186,152,50,106,192,126,32,17,182,50,237,231,114,81,76,151,236,89,139,233,199,81,58,84,120,80,53,62,87,14,173,139,39,177,135,196,65,200,254,40,212,208,206,113,54,239,220,135,124,72,86,49,204,88,4,45,109,74,38,109,100,224,52,171,81,76,14,166,186,135,114,14,15,102,55,19,43,185,134,233,90,182,208,26,125,88,207,158,246,147,142,242,35,183,118,132,178,101,181,97,69,167,198,70,37,20,232,213,63,46,38,42,171,59,199,13,19,95,9,55,15,234,60,64,119,46,87,127,234,255,112,213,103,201,230,106,70,120,147,135,215,214,210,209,153,255,164,195,241,155,52,170,140,17,147,57,104,4,184,189,40,30,42,16,234,80,224,140,54,223,62,23,38,166,106,182,240,254,33,169,233,139,163,5,105,41,213,101,200,62,228,191,231,63,204,247,14,117,91,28,191,29,245,111,48,124,191,109,178,199,66,
249,61,120,67,223,47,167,115,20,219,109,180,41,167,91,28,81,247,214,102,73,12,117,154,31,208,132,27,222,229,45,207,246,179,58,127,97,129,86,123,225,191,200,150,186,170,218,214,234,253,243,130,58,243,179,177,112,127,134,126,229,28,136,113,93,158,111,142,72,206,53,44,200,244,93,199,217,14,60,133,94,105,111,134,241,162,44,179,37,83,18,33,18,155,246,152,92,209,13,122,209,80,4,172,254,1,36,133,235,144,154,79,92,106,65,28,117,145,119,60,155,156,110,255,63,133,20,243,163,255,63,133,100,73,138,132,9,67,245,171,189,231,88,1,116,12,149,192,34,18,89,145,85,169,102,160,3,222,55,138,229,122,115,42,46,157,122,183,149,95,65,240,44,201,202,194,252,220,211,252,212,78,222,117,200,65,12,66,23,118,88,23,4,3,39,161,23,252,221,184,11,56,121,72,62,11,18,12,28,42,28,147,136,150,124,144,176,75,98,109,196,117,228,140,51,56,134,129,136,130,45,217,234,9,128,14,87,87,72,64,33,62,202,173,218,43,141,61,225,135,205,133,240,252,92,232,
153,99,60,164,7,97,37,121,118,166,20,45,129,228,3,57,145,131,117,204,201,204,210,3,208,163,12,127,106,33,23,103,70,20,67,9,148,109,115,176,231,99,50,163,144,71,4,119,38,151,98,97,161,124,202,134,102,114,196,233,167,79,239,28,214,244,174,25,4,234,19,150,250,215,41,177,108,218,26,66,17,132,93,182,116,221,55,232,192,16,125,119,29,160,132,224,153,235,168,136,138,114,137,241,165,245,117,100,90,101,185,66,22,103,123,162,101,229,14,225,56,118,100,168,179,161,243,84,78,98,107,208,217,244,159,113,38,189,113,248,65,252,88,196,201,167,146,184,55,203,190,159,169,161,42,186,208,164,144,185,254,182,211,137,89,53,206,39,213,29,194,66,54,251,235,106,102,164,220,81,132,201,228,37,137,62,160,246,230,139,148,6,104,76,98,116,231,130,4,99,183,151,57,107,135,205,103,31,191,4,90,15,183,84,143,75,6,27,192,201,8,59,37,171,31,180,98,30,152,218,40,9,223,46,251,247,228,190,125,191,236,239,157,64,248,220,80,221,243,22,70,87,9,72,21,137,
116,49,220,70,219,218,56,61,171,62,78,112,236,87,209,97,233,16,38,40,72,254,12,130,20,20,103,109,26,117,254,87,0,179,128,64,227,236,66,174,243,91,40,131,133,53,126,60,2,221,88,128,64,191,55,228,29,170,189,108,241,159,212,226,141,14,89,154,84,201,132,68,36,55,113,114,125,62,96,230,134,6,238,94,68,26,20,3,33,10,79,172,164,199,57,60,248,225,95,175,113,53,190,10,57,27,238,19,71,51,2,114,31,36,12,247,103,224,139,76,71,112,144,192,210,95,104,60,184,156,23,226,217,2,50,111,15,0,232,164,178,37,119,69,37,33,179,187,191,73,32,88,195,127,138,53,112,195,178,129,211,103,111,190,176,225,66,243,240,144,109,90,54,27,42,49,10,101,227,44,254,195,197,186,169,38,75,101,32,89,101,173,149,46,28,42,2,154,133,92,222,52,247,115,104,106,210,22,214,102,140,244,254,224,135,242,216,117,45,102,86,196,101,27,44,221,66,9,249,19,174,181,194,5,139,226,230,59,210,145,190,209,155,123,1,55,65,97,42,63,15,186,133,228,245,173,
142,104,166,231,69,177,236,106,148,198,198,18,157,8,203,22,42,225,47,200,148,168,130,135,144,32,38,88,233,87,164,235,90,32,232,110,161,22,163,173,52,128,133,11,2,248,194,114,187,126,236,102,157,93,229,74,166,161,11,56,43,130,245,29,221,51,184,198,16,131,55,187,131,136,90,68,139,222,171,175,143,233,152,222,118,126,167,114,73,75,56,40,175,193,180,215,250,57,58,236,171,85,40,79,223,160,10,173,116,31,233,235,156,149,103,0,19,27,168,137,99,250,177,87,230,253,17,128,85,63,203,232,31,97,54,36,165,108,3,211,94,28,185,88,145,161,178,61,57,212,161,195,238,76,1,18,232,215,53,103,147,101,49,70,101,44,7,144,124,65,26,49,25,13,154,141,45,93,204,19,192,93,196,203,172,171,136,114,125,59,178,183,183,153,142,193,136,170,76,15,110,187,68,109,252,176,53,218,223,159,233,119,102,188,51,111,221,107,224,125,183,140,46,130,119,92,45,182,9,7,52,109,36,215,67,114,107,40,196,7,136,41,122,233,120,63,170,115,96,203,179,187,77,162,182,118,
180,202,181,125,146,95,247,95,237,181,160,187,206,11,148,90,194,92,186,178,2,111,200,190,214,212,81,151,50,37,154,15,36,72,15,137,9,73,183,113,103,179,225,174,27,178,20,190,50,195,29,106,89,128,208,100,247,178,130,9,43,86,238,146,163,128,0,49,0,13,137,83,4,138,67,252,102,213,214,67,207,250,89,127,75,255,13,19,143,162,41,56,196,1,49,6,123,200,208,139,17,11,93,130,66,255,75,49,9,2,110,60,138,75,224,30,7,16,36,112,13,40,34,74,150,129,5,136,9,149,238,102,174,123,219,146,127,148,131,172,180,187,179,134,230,211,113,203,204,86,180,18,77,118,90,99,27,61,158,18,253,48,90,60,246,173,180,255,107,214,205,159,19,79,207,60,193,127,69,225,141,233,45,119,216,94,119,207,244,196,132,61,219,209,247,132,99,123,221,29,238,142,217,31,28,233,170,116,149,202,149,219,89,153,53,153,89,46,123,103,38,2,16,247,37,16,247,37,46,33,110,113,223,135,56,37,64,128,184,79,9,9,132,196,141,16,151,4,66,176,95,164,204,170,114,85,
86,185,119,163,123,119,50,50,224,229,125,223,231,120,63,207,243,62,199,155,153,109,145,24,90,206,165,26,182,128,171,140,80,1,137,85,224,88,12,82,78,144,213,166,118,138,216,243,216,118,63,122,169,15,157,16,10,82,102,44,123,115,129,234,176,41,51,241,6,53,154,15,195,207,25,228,70,124,251,52,194,216,60,135,74,106,41,4,172,237,129,110,18,196,69,80,10,18,26,17,225,44,238,209,205,218,142,7,127,133,164,224,84,138,182,185,91,233,9,204,80,170,201,117,157,184,8,231,164,184,90,213,206,66,149,182,197,55,245,192,122,239,20,150,188,105,238,84,140,124,97,5,17,222,57,197,113,211,189,227,204,128,158,170,177,22,146,226,73,238,104,239,34,156,133,219,98,140,188,168,178,69,217,184,172,147,245,28,81,149,195,236,4,24,241,88,112,114,16,29,250,92,179,253,29,92,255,124,3,140,246,119,218,205,179,248,89,19,116,145,44,34,18,185,99,2,66,130,128,221,58,232,59,187,58,145,210,82,203,14,211,133,124,180,86,222,216,234,41,130,132,53,30,103,239,250,
90,85,222,141,214,133,182,224,48,28,207,109,169,122,152,243,163,36,149,156,76,205,14,177,108,238,113,81,217,198,213,149,129,198,117,4,193,178,198,109,245,61,42,190,60,227,23,178,165,145,237,50,58,54,114,187,119,92,174,192,116,231,184,11,25,97,58,45,129,82,34,6,193,236,248,241,153,42,31,164,217,199,44,10,116,97,16,148,154,187,225,64,117,223,9,21,73,8,251,88,8,125,123,211,11,93,3,143,9,133,59,66,214,64,70,115,228,169,164,6,222,91,147,103,206,250,25,6,111,191,158,75,123,93,170,237,241,101,244,114,161,12,6,189,86,130,228,52,161,61,64,233,205,228,80,120,173,222,134,145,178,14,174,185,59,188,155,138,200,130,155,12,116,98,201,223,157,44,206,151,17,198,122,104,4,34,204,141,66,142,116,227,131,106,197,144,60,128,106,215,152,93,23,174,182,118,168,91,39,108,239,109,249,117,28,72,106,19,125,139,190,48,145,176,108,44,177,106,166,85,186,118,182,191,197,245,160,56,225,186,114,209,180,36,147,156,38,61,90,173,133,141,153,170,207,64,
216,206,20,175,244,9,86,196,36,100,244,121,98,185,176,129,195,138,114,231,130,53,86,35,236,167,92,48,65,42,163,41,15,37,200,110,42,7,93,125,38,145,39,180,96,57,229,217,213,57,186,168,16,203,11,134,109,137,121,123,163,160,163,198,134,125,12,219,195,110,26,165,22,222,154,135,49,64,81,122,72,28,72,33,232,5,13,222,29,120,153,106,116,41,148,62,15,97,235,2,190,115,169,110,96,16,17,108,12,138,63,137,67,178,178,29,209,20,203,186,208,21,235,179,181,46,25,20,205,117,92,117,240,137,114,170,175,196,91,180,122,230,232,226,76,43,59,184,233,178,51,154,60,197,159,86,132,65,199,12,182,122,63,167,209,41,149,141,67,80,211,213,150,198,247,3,100,91,34,133,48,34,27,147,91,110,88,99,230,147,238,48,74,77,12,117,142,39,31,49,82,204,92,92,94,7,85,8,184,99,169,103,59,65,172,29,228,169,208,6,184,70,71,251,202,94,246,205,236,186,127,142,169,179,85,68,97,16,89,145,216,227,84,10,78,123,220,205,134,57,205,2,211,86,197,194,
77,212,118,119,207,44,57,208,198,36,41,97,49,183,111,247,99,196,253,129,110,231,228,238,78,237,116,236,88,78,216,71,3,167,114,253,88,164,43,155,54,44,244,179,109,246,124,131,185,128,185,195,206,83,241,9,178,145,84,209,170,24,138,83,160,179,184,9,3,65,238,34,174,12,241,220,245,217,140,8,229,15,112,240,13,87,187,218,178,22,227,249,56,58,28,31,89,26,86,60,93,60,176,85,12,205,17,249,74,21,193,219,26,139,32,123,83,17,204,51,178,195,146,30,173,86,120,206,133,200,136,237,198,157,59,31,239,81,117,198,206,213,34,202,166,143,9,13,191,193,203,142,249,64,183,68,52,209,183,181,252,7,122,33,247,245,63,208,223,191,10,34,47,169,48,112,170,199,186,11,116,15,170,152,138,209,223,187,97,103,176,25,208,96,3,26,64,35,201,106,178,77,189,149,84,237,161,40,4,179,166,0,197,180,65,84,131,47,202,190,105,251,72,78,154,18,206,180,150,201,9,37,19,183,77,221,205,27,44,164,227,61,62,180,162,194,102,109,241,208,110,177,94,191,214,141,
162,5,160,249,108,217,202,142,13,50,230,202,5,61,69,248,206,21,50,105,50,15,103,73,81,230,217,25,238,160,21,198,30,69,252,105,95,41,130,184,104,53,42,142,227,206,97,143,130,86,25,42,74,63,169,69,138,181,61,87,226,158,1,147,179,220,160,61,71,160,161,11,50,32,137,217,12,104,155,183,197,57,0,97,172,32,84,17,171,58,17,8,121,103,61,44,114,134,2,26,114,184,161,100,106,248,93,137,10,181,79,117,184,98,3,112,30,236,98,59,214,78,42,52,201,218,96,224,114,133,199,44,133,66,151,160,194,85,108,164,201,168,231,173,145,133,174,203,64,73,60,81,194,130,45,31,14,28,11,66,227,183,235,33,36,203,19,136,245,92,71,132,13,136,154,76,241,228,202,179,13,67,141,182,101,22,139,44,84,113,208,206,83,179,15,50,235,16,122,116,79,72,16,122,105,39,119,147,179,174,100,182,175,209,219,185,141,161,237,248,164,1,119,106,70,67,131,44,108,173,26,55,180,26,138,120,204,198,224,50,62,163,200,154,181,91,197,7,89,195,120,199,196,45,141,47,
88,165,89,251,22,91,56,153,48,121,72,138,217,135,187,153,137,28,197,187,13,246,2,207,92,40,241,140,5,158,179,232,226,240,11,3,255,132,25,40,16,146,55,248,154,92,123,152,143,113,246,54,135,115,160,171,56,69,79,215,18,144,150,15,147,138,239,148,250,167,87,51,102,100,47,126,222,222,33,159,108,97,104,92,127,115,167,132,181,222,169,142,88,103,14,71,254,150,70,42,112,171,243,45,244,116,123,115,215,120,172,105,112,176,227,204,113,134,222,184,180,17,101,235,122,114,255,230,28,91,150,54,230,50,15,234,244,190,243,70,28,118,118,211,107,6,16,165,113,138,40,203,152,7,56,130,176,231,198,223,192,245,96,63,74,116,137,194,28,12,33,60,214,148,7,225,184,241,209,216,194,214,75,105,219,180,158,11,31,76,209,93,173,179,100,131,0,92,33,30,152,15,183,87,54,97,148,11,117,126,114,75,82,218,50,108,77,83,132,37,183,186,231,71,202,245,33,81,129,219,114,113,110,81,205,64,14,107,142,52,144,233,189,240,212,183,227,216,7,153,54,123,45,169,91,21,
134,193,72,70,87,145,124,18,134,70,114,71,24,30,239,108,59,76,99,101,218,252,202,1,46,215,64,247,196,17,133,162,98,192,73,202,141,83,140,126,6,245,41,224,129,114,215,117,205,93,183,243,154,80,94,235,108,70,173,25,216,201,180,154,213,198,141,224,209,160,20,234,89,195,179,173,153,171,122,145,40,57,88,76,96,28,79,46,46,112,199,2,112,57,75,81,117,86,17,155,221,28,170,205,3,233,4,200,202,45,134,13,173,19,29,116,62,157,108,171,92,32,57,167,38,83,102,159,96,15,245,89,27,148,34,129,237,81,183,64,230,90,150,110,243,229,40,154,40,78,141,193,50,35,200,224,196,115,64,151,147,206,237,216,56,88,136,214,123,93,73,251,65,188,142,29,54,236,214,219,171,126,55,42,247,213,229,82,231,197,150,191,43,85,68,178,90,177,82,105,41,178,154,109,132,169,98,28,36,40,226,50,179,87,83,110,131,33,199,53,155,117,32,26,88,237,211,166,81,101,59,246,218,148,92,140,18,67,118,161,105,41,134,155,164,226,209,123,32,3,65,184,224,87,246,22,
144,253,230,240,176,8,130,222,105,182,75,109,134,217,118,200,244,13,20,129,19,34,15,89,58,91,119,89,175,193,238,122,91,10,139,157,34,78,141,184,11,48,169,103,196,215,132,139,218,56,65,58,49,39,104,180,249,76,94,159,8,210,236,18,181,104,75,208,211,220,177,164,191,39,181,161,47,143,137,103,71,140,12,71,208,45,117,174,175,101,243,107,83,190,36,45,218,12,209,177,41,126,169,63,211,11,1,233,188,109,71,99,14,185,201,113,249,135,157,227,93,255,45,130,127,215,134,95,95,241,139,133,178,43,119,84,137,131,249,35,37,35,79,86,16,120,202,117,208,154,65,29,1,221,68,26,176,177,23,10,187,168,1,225,4,22,40,19,60,229,225,245,248,134,10,101,121,241,142,54,68,134,34,10,98,155,110,254,30,218,114,42,189,16,37,229,155,204,114,188,74,139,14,123,48,172,41,126,28,132,247,182,45,104,93,62,79,18,25,186,121,58,201,162,97,116,120,219,186,59,193,101,217,76,227,180,114,21,132,10,231,171,52,92,196,34,51,121,102,64,117,194,71,58,36,95,
233,23,180,209,229,4,188,184,158,154,37,238,118,229,89,30,246,236,0,237,157,40,57,104,8,18,54,138,43,80,168,10,162,152,130,131,182,99,68,200,6,226,50,129,144,144,32,16,171,27,108,29,67,71,222,28,58,126,232,176,187,221,151,91,42,134,190,173,5,85,97,9,211,233,236,66,59,112,184,64,245,60,30,46,188,65,239,241,142,212,92,6,213,150,242,204,215,253,202,97,120,99,210,162,83,8,17,163,132,9,66,66,8,200,185,219,139,100,29,65,153,7,59,124,181,167,134,150,91,114,106,57,206,86,146,235,90,20,91,73,173,179,161,42,22,246,246,62,25,233,40,155,177,36,228,68,25,149,200,236,186,172,251,168,126,211,221,51,80,199,129,168,58,93,200,145,166,206,138,236,112,127,7,226,63,181,166,173,109,90,112,191,221,158,40,83,7,162,81,54,104,29,210,248,252,46,62,147,218,224,170,205,208,27,124,0,231,171,115,81,18,27,116,114,125,8,50,31,222,29,111,220,36,206,224,173,148,2,163,72,5,238,186,212,182,107,243,250,40,13,59,189,197,73,41,72,
110,184,87,69,76,204,71,88,149,240,156,179,59,107,40,68,187,90,218,73,65,174,58,225,140,104,155,253,52,207,224,64,142,104,196,43,173,84,123,50,205,28,20,103,87,22,93,169,105,163,49,35,243,196,177,19,106,3,241,104,41,53,44,225,173,123,106,235,184,235,202,148,84,43,154,69,229,67,240,122,231,142,49,61,114,222,141,241,235,151,197,253,185,144,155,181,250,207,201,72,180,254,188,5,158,14,64,209,50,154,65,128,72,248,29,2,58,184,182,9,156,51,227,202,197,42,115,205,72,231,149,178,240,137,27,170,47,201,131,15,103,222,40,151,12,187,42,86,17,198,164,203,117,147,216,224,199,202,84,55,236,214,133,154,192,14,47,46,232,172,114,20,110,182,73,187,98,51,229,116,243,2,210,169,72,55,163,44,147,59,53,218,102,93,215,172,70,241,1,6,79,55,85,78,101,7,188,9,172,190,174,180,22,166,55,81,166,88,9,82,98,71,66,226,30,138,56,118,229,192,177,2,164,10,79,237,108,137,71,132,18,4,172,4,91,157,202,41,185,2,217,190,35,8,47,188,
169,53,232,28,78,142,209,55,204,222,140,95,13,119,135,36,161,9,15,196,176,222,241,7,243,125,186,254,198,57,216,101,59,132,204,67,187,9,2,114,5,145,27,209,139,192,5,52,220,132,51,65,16,59,105,218,137,161,49,23,243,29,16,110,129,109,158,136,74,116,199,149,116,75,125,142,57,130,72,199,80,197,140,164,227,128,72,126,124,230,72,16,108,197,4,154,30,104,188,102,117,22,136,105,180,91,190,109,51,88,14,56,110,150,245,180,9,41,91,47,178,152,16,245,10,147,103,31,237,48,252,164,220,112,112,97,147,243,142,132,91,13,35,58,11,22,79,108,212,86,107,75,84,65,193,181,134,44,233,68,76,221,96,73,129,30,238,130,120,219,158,40,40,59,197,203,90,233,232,4,53,221,64,23,80,73,226,36,88,78,157,16,206,22,123,251,139,117,236,201,93,18,87,33,180,161,187,19,154,101,14,3,121,238,206,49,66,130,239,74,152,168,173,1,105,158,78,55,185,99,60,236,141,218,9,178,41,246,227,77,51,89,122,189,217,247,100,116,206,130,244,164,30,162,13,123,
122,178,42,18,161,29,82,199,34,229,226,252,114,228,212,14,105,197,14,198,139,27,123,226,39,2,125,131,70,176,129,56,198,139,80,192,180,15,183,181,39,76,110,95,197,48,137,8,55,219,204,225,20,136,24,186,195,78,178,187,232,113,133,128,119,216,184,86,255,213,57,20,137,49,23,185,187,55,13,31,162,56,175,108,110,80,73,102,198,150,43,101,11,218,130,137,72,229,102,204,52,36,121,123,179,18,122,16,146,178,14,57,227,118,115,203,219,238,113,45,109,144,57,159,139,136,5,206,105,60,151,42,7,67,145,109,28,101,156,42,36,73,13,48,111,195,65,244,15,125,9,240,214,212,105,19,158,110,117,3,18,33,202,3,15,250,228,61,130,10,193,56,181,33,147,179,106,155,229,66,149,247,170,116,149,60,203,33,163,251,67,235,78,30,219,177,159,225,72,27,20,13,70,103,20,4,226,115,232,58,153,8,211,141,195,5,84,107,123,179,30,39,130,51,28,254,52,127,164,215,232,81,176,3,212,225,152,142,165,155,99,109,130,142,20,81,184,218,17,231,176,121,192,2,159,110,
206,187,26,29,134,40,232,64,245,236,243,22,35,216,96,48,9,202,38,136,79,14,123,244,87,121,193,232,194,104,233,55,112,136,193,133,138,136,23,90,177,17,160,190,5,129,107,110,92,17,132,165,27,73,240,203,210,38,71,155,9,211,13,189,42,168,194,197,121,117,59,167,98,186,47,180,229,33,99,82,157,208,8,20,172,25,178,50,91,216,61,191,173,70,197,56,144,1,46,136,226,160,187,4,47,243,4,125,92,159,193,206,90,251,82,166,146,101,239,144,162,144,92,16,211,41,13,155,231,82,3,133,41,38,14,182,200,16,90,63,34,15,231,203,227,113,179,205,213,196,182,181,160,150,54,43,141,212,58,206,246,64,50,218,220,57,226,168,148,206,32,209,114,38,81,213,27,51,76,165,175,202,221,100,185,106,219,194,83,154,227,206,112,179,243,221,141,235,214,34,16,153,231,61,115,215,121,112,86,70,95,7,75,27,45,227,112,77,121,180,93,156,57,80,61,199,158,134,130,38,170,182,231,179,27,50,126,140,212,211,186,151,99,152,229,46,145,220,181,228,218,11,177,100,183,184,
117,57,55,101,230,226,246,198,220,20,95,136,155,39,27,18,150,42,219,82,209,90,114,21,85,78,59,24,13,14,210,112,54,24,78,57,119,225,169,187,99,15,138,206,138,196,35,196,58,58,228,134,118,113,105,78,4,104,212,219,135,177,218,248,50,104,92,92,140,65,23,60,154,208,135,55,205,214,118,27,3,20,23,183,86,129,178,211,1,114,92,135,2,183,26,177,8,194,16,118,179,219,21,209,153,141,193,200,105,66,25,40,148,72,20,150,69,85,68,21,10,202,245,194,251,81,99,159,85,222,167,242,80,141,156,187,18,247,251,12,68,147,214,119,4,190,1,114,152,123,109,223,176,105,242,37,80,132,224,129,7,101,199,86,100,225,125,55,186,91,211,153,105,196,40,132,165,209,56,49,26,161,47,140,68,153,206,110,224,189,100,31,38,241,130,161,68,202,48,145,16,84,35,166,187,188,175,108,4,2,29,152,119,192,213,149,192,189,193,158,37,82,23,139,58,80,99,79,136,220,145,232,199,105,170,24,209,89,247,134,196,28,46,52,5,130,228,214,26,126,14,88,8,15,239,185,
106,100,46,199,4,150,131,240,237,25,212,186,158,31,43,43,70,141,120,191,205,222,185,192,177,224,9,124,68,173,141,6,39,166,26,234,206,227,170,122,64,228,45,79,172,207,143,93,197,35,119,225,163,94,112,80,100,55,249,91,6,66,106,134,62,234,187,241,33,179,5,68,108,173,121,195,85,68,94,239,104,99,212,158,208,13,190,33,134,34,81,227,82,101,111,157,113,154,185,129,26,40,90,159,98,67,42,196,249,36,132,25,23,115,234,213,4,107,19,139,76,198,20,117,51,17,71,183,209,74,167,3,147,61,113,85,195,65,84,201,4,98,225,112,207,201,240,135,25,154,65,71,57,138,40,90,233,139,142,78,50,200,215,207,6,84,119,39,147,28,57,43,118,246,113,68,68,75,232,174,228,249,155,208,133,31,172,2,51,120,51,75,147,236,76,248,104,178,27,98,34,31,77,0,125,245,249,120,3,73,59,49,223,152,102,249,179,41,75,26,161,202,146,168,220,126,229,172,195,204,145,124,12,68,52,152,27,236,83,175,107,230,35,21,238,246,60,58,229,79,88,170,49,146,6,31,
17,18,166,18,126,128,23,178,35,220,99,25,129,94,247,133,152,202,158,107,140,12,136,75,218,81,82,191,88,131,101,236,230,179,30,66,215,211,236,122,185,69,241,117,110,94,222,53,172,223,93,225,157,209,193,192,6,198,16,89,110,154,211,7,150,199,210,94,4,23,231,98,83,37,76,9,129,51,195,87,17,40,210,33,207,106,82,87,52,12,124,184,78,168,250,207,108,144,44,158,168,226,178,203,251,66,185,115,147,113,197,161,28,229,119,27,1,56,151,33,140,93,123,14,196,115,60,92,188,198,91,172,183,236,108,31,3,180,73,205,157,226,237,210,29,148,249,10,19,102,1,45,134,157,60,72,178,249,105,126,200,133,54,51,194,149,12,84,125,134,221,164,92,109,120,14,81,32,104,76,67,112,122,231,30,50,47,73,236,35,72,148,48,51,165,139,71,160,20,82,153,58,140,197,230,120,227,198,129,77,122,87,12,154,152,237,109,161,18,170,39,161,18,174,253,80,72,106,219,23,41,201,198,141,194,58,129,72,152,186,106,151,226,60,219,112,186,199,30,21,171,220,120,207,45,130,
82,160,4,247,73,9,211,144,183,46,56,169,97,223,194,133,81,110,39,123,134,216,186,62,117,43,181,206,32,185,61,142,127,42,49,138,165,49,191,40,114,238,35,166,201,187,76,52,55,232,87,110,159,195,232,213,25,185,87,40,135,225,167,16,176,62,239,182,151,73,67,56,169,93,13,83,53,147,40,69,4,139,209,42,105,228,121,143,79,181,176,69,50,38,34,29,177,55,104,202,138,7,104,82,146,7,233,96,155,6,179,111,186,253,28,151,46,182,150,76,31,37,203,189,99,213,248,86,90,84,29,90,239,236,221,170,98,155,228,33,140,20,9,45,251,106,128,232,24,73,199,126,86,59,173,169,172,237,123,136,188,150,240,78,87,32,72,207,206,28,99,189,194,105,144,238,213,240,154,155,34,22,118,22,230,86,156,149,245,252,246,41,122,61,218,182,107,7,40,133,43,217,71,98,132,10,172,216,132,20,245,36,231,89,243,24,177,166,105,237,158,221,146,246,15,56,116,124,129,115,87,182,71,81,233,153,11,206,161,244,73,181,234,41,131,87,144,214,96,103,94,14,187,19,241,237,
207,177,119,178,46,183,112,219,70,156,152,152,156,93,182,89,167,139,158,66,167,139,122,117,58,21,38,57,249,94,25,70,60,60,179,192,236,21,116,119,172,78,104,24,235,88,101,175,91,115,232,103,182,185,206,172,243,18,7,165,83,226,216,190,55,70,118,179,216,186,136,184,171,39,177,109,58,135,78,75,212,206,97,253,168,47,178,29,72,145,235,76,22,10,20,217,24,174,97,180,85,124,21,135,192,42,55,252,183,18,49,239,4,169,81,237,221,225,83,225,169,37,195,233,217,88,237,222,89,209,136,65,66,68,116,132,89,224,166,170,122,4,131,75,234,197,91,165,108,36,102,67,68,219,112,164,117,29,66,3,130,169,13,19,201,160,159,194,247,85,36,92,56,7,153,29,38,248,103,185,120,213,29,156,138,80,251,188,29,129,151,217,151,135,148,46,137,13,81,87,213,60,26,72,36,228,132,220,46,252,4,143,219,79,89,191,190,154,249,215,29,246,148,96,32,72,75,174,91,13,171,223,108,87,108,150,164,174,214,93,178,41,97,232,205,51,251,206,206,58,230,182,236,186,97,152,
119,157,89,222,150,215,95,223,172,209,196,11,223,157,124,226,149,159,47,146,242,116,50,57,189,74,148,113,218,57,55,187,47,217,156,142,164,178,27,193,250,89,31,123,0,71,247,168,238,104,26,230,202,88,146,195,222,48,31,27,249,29,122,92,246,218,227,164,29,95,223,54,212,180,75,151,118,114,114,112,135,168,23,56,154,14,108,251,156,200,209,100,199,60,152,243,4,131,187,115,215,241,158,235,141,221,169,46,199,21,205,33,136,205,141,102,73,209,218,92,19,185,32,8,209,144,13,74,198,125,123,124,6,156,189,198,151,205,81,27,87,206,91,115,237,116,7,133,8,27,37,32,169,27,109,145,154,17,232,114,204,101,17,158,120,138,254,75,186,178,212,183,6,164,118,158,142,206,95,235,161,65,45,223,225,209,56,229,99,108,242,115,157,171,27,250,169,27,59,208,106,161,40,240,134,33,119,145,130,236,28,34,205,126,69,125,54,160,67,70,135,3,20,75,96,35,221,108,103,173,58,34,247,86,151,28,90,238,172,29,160,93,40,239,234,56,188,124,140,132,16,118,103,106,175,241,
102,19,170,49,206,52,141,53,60,145,183,161,119,13,169,36,40,235,176,83,238,241,80,82,222,77,3,118,141,28,235,251,103,26,129,219,192,67,86,140,190,33,59,236,198,38,130,251,166,203,114,174,142,109,246,147,96,254,122,70,31,185,100,109,243,79,161,155,112,203,248,200,145,96,118,236,222,25,125,52,69,167,252,208,6,65,147,145,250,97,170,120,7,93,131,100,14,61,215,196,76,205,23,27,129,132,72,115,205,134,101,141,60,228,130,136,18,130,219,185,177,0,230,220,64,49,12,51,233,132,5,34,43,20,61,60,194,133,68,166,217,162,138,78,132,33,71,114,56,188,206,36,39,183,9,60,190,94,180,182,235,189,192,25,138,134,19,53,209,41,204,45,229,176,73,102,74,75,125,175,88,182,185,147,104,148,74,206,163,195,46,183,70,62,60,60,200,170,50,151,71,37,160,246,87,156,56,82,37,135,179,112,180,27,89,7,35,174,93,45,120,228,54,140,240,136,116,201,181,225,140,228,163,156,119,55,101,187,206,130,231,218,49,239,24,230,35,243,124,164,86,79,33,251,236,154,
56,58,234,182,52,202,201,118,21,214,130,196,201,179,34,186,207,129,180,48,219,209,198,161,149,199,68,119,89,219,251,151,57,111,201,204,241,25,14,130,78,246,249,192,125,97,237,250,239,196,67,14,43,102,152,21,123,74,246,8,161,85,40,237,19,48,98,238,186,14,224,60,11,148,133,15,57,206,183,215,141,158,228,96,228,77,227,32,197,52,54,150,25,230,209,154,221,132,176,192,202,187,241,27,226,61,48,5,225,28,82,65,234,27,35,117,195,202,35,78,145,33,38,103,120,208,98,202,9,94,52,115,12,23,245,246,135,66,19,137,63,56,192,105,105,123,181,180,82,37,4,202,251,253,9,167,92,236,42,45,64,211,35,56,227,59,184,61,232,182,126,155,63,152,177,124,45,101,220,124,65,122,72,28,76,113,194,89,44,239,154,156,172,81,211,171,239,235,132,94,54,80,191,65,202,150,0,173,155,11,161,78,172,17,132,185,98,236,214,153,214,176,225,200,130,98,58,214,166,78,233,65,76,46,114,180,219,130,174,110,125,67,104,162,79,206,233,61,201,224,166,223,111,35,176,116,
204,128,109,86,78,57,135,112,178,134,197,139,105,253,120,236,122,82,16,13,218,183,188,91,177,69,181,26,135,132,14,8,241,206,154,174,164,238,142,115,17,4,196,36,24,22,18,26,25,116,215,13,183,200,226,68,239,118,125,111,216,67,16,153,84,211,229,76,164,128,45,154,176,16,213,154,222,32,212,227,137,204,142,3,199,77,159,71,235,91,150,171,201,72,197,182,244,93,23,129,91,163,159,143,24,28,240,47,11,6,123,47,233,203,167,81,184,225,14,15,169,229,123,101,200,74,249,42,57,238,169,23,230,253,35,197,73,141,38,159,57,3,98,201,205,40,63,189,216,34,115,120,49,16,190,191,128,251,164,118,91,202,8,49,118,11,126,135,189,109,85,205,216,173,246,148,113,178,31,29,28,52,224,142,217,105,67,197,181,53,78,144,160,59,209,152,82,247,180,51,33,254,29,140,224,143,210,50,19,157,176,185,161,239,187,71,184,219,250,205,160,90,178,95,111,204,46,249,45,202,116,15,186,105,147,238,79,100,112,60,151,208,108,102,20,69,126,179,188,206,241,186,175,139,237,248,
220,91,96,241,92,184,83,7,182,102,211,75,178,251,205,19,73,67,187,45,131,243,234,45,104,210,20,78,39,162,105,4,26,232,194,57,162,45,9,208,244,150,195,126,212,158,220,229,61,222,239,92,59,216,46,239,14,156,57,159,239,173,153,81,130,196,37,55,18,47,109,24,61,187,89,48,52,175,54,157,209,220,151,151,86,103,103,72,148,168,108,179,29,42,42,92,132,4,10,130,206,102,172,4,116,205,139,141,107,228,250,178,99,157,239,44,78,230,166,230,141,34,133,172,123,181,91,229,250,120,27,28,224,224,174,60,118,165,163,105,42,111,178,133,211,1,4,37,0,221,122,141,83,227,181,11,75,138,7,8,49,108,146,228,215,111,201,224,34,173,95,31,117,145,226,103,39,200,16,228,10,180,173,34,184,45,235,87,112,138,166,46,65,145,206,177,126,203,157,11,209,7,51,235,244,54,72,33,7,251,189,170,18,121,152,201,39,252,183,112,123,89,158,34,128,208,244,241,212,115,102,170,242,188,151,135,155,88,11,191,174,135,195,200,88,107,32,80,165,17,134,190,189,45,6,18,
14,10,171,183,144,241,83,50,242,20,62,199,15,91,145,205,181,6,158,45,11,220,17,205,248,236,38,184,233,70,181,92,115,160,225,243,207,3,178,49,77,227,192,140,146,68,85,108,196,231,199,14,235,102,235,249,2,44,234,156,58,121,30,23,2,131,190,113,134,178,183,12,168,249,10,38,101,139,146,238,140,121,56,155,31,94,155,78,155,215,222,180,176,222,218,97,14,113,146,193,14,211,236,162,251,188,148,24,170,231,69,220,184,38,94,132,210,54,213,92,94,186,58,185,221,117,211,2,145,129,194,163,243,88,224,78,57,194,80,82,120,166,139,236,57,32,173,241,204,214,179,150,28,187,163,149,133,81,218,75,63,11,210,148,143,115,131,222,254,158,61,85,113,174,109,88,19,205,16,49,178,225,32,31,197,175,206,149,48,23,11,116,86,186,202,103,221,46,135,117,102,128,200,132,4,94,180,174,64,29,151,224,246,34,139,115,154,240,144,41,233,76,53,207,35,164,15,140,156,244,184,155,202,38,59,177,182,48,91,18,118,57,214,33,89,91,119,184,128,60,15,65,5,204,156,105,
210,219,190,128,236,91,57,228,53,167,223,135,45,131,178,188,34,93,107,57,50,95,108,35,211,67,229,174,58,69,216,229,223,165,93,67,97,23,17,63,221,31,241,134,107,118,231,161,181,148,76,111,202,246,111,193,93,234,198,60,122,226,7,2,255,110,147,203,237,244,22,49,59,114,63,235,203,41,11,177,14,217,12,159,94,166,192,181,220,62,104,143,22,203,114,211,46,122,161,59,44,182,82,199,32,197,118,92,173,171,196,38,107,28,250,22,100,221,202,243,128,135,233,34,188,131,134,175,93,226,16,147,72,29,41,234,243,146,102,135,72,37,185,153,24,185,229,93,24,185,199,165,83,244,213,124,60,18,49,226,6,69,151,163,26,73,141,240,189,131,66,98,132,176,238,241,48,23,22,13,89,70,216,211,164,144,144,30,8,6,26,196,124,240,178,135,28,117,15,137,66,109,53,229,99,11,155,148,57,168,97,115,134,10,107,221,0,167,188,105,19,218,214,110,247,204,131,26,130,72,71,159,33,250,222,70,227,106,230,220,226,112,171,73,225,172,48,35,172,95,247,213,137,185,128,23,
168,184,74,211,171,9,181,91,63,73,142,32,245,250,124,65,198,215,174,174,134,68,213,117,226,78,186,54,115,130,153,102,42,184,52,14,102,41,203,255,74,224,134,141,67,124,185,118,20,173,90,88,231,246,34,225,226,136,169,11,70,79,183,188,156,116,10,33,184,184,24,48,149,178,58,201,150,215,86,228,104,169,28,177,45,183,220,9,217,197,203,70,42,132,216,43,101,247,180,195,113,135,111,180,20,114,34,15,165,159,246,4,210,168,226,222,112,147,56,109,128,68,243,45,100,175,100,21,89,33,29,140,147,116,0,51,210,88,97,153,121,192,223,223,37,71,208,237,29,21,76,176,81,166,43,171,109,104,102,202,119,29,42,154,185,235,177,107,106,144,55,119,124,151,80,233,78,72,6,148,233,33,42,71,101,21,52,130,221,67,195,8,113,99,219,42,174,29,29,115,233,181,194,194,11,24,239,8,82,155,222,241,188,147,237,148,91,234,149,198,247,51,4,70,142,65,178,108,194,196,30,174,78,224,21,153,98,87,46,72,18,2,163,150,198,152,69,238,250,182,38,72,229,240,211,97,
121,110,216,149,95,237,28,59,180,190,161,102,202,221,189,117,230,246,200,20,202,160,58,168,147,246,181,141,153,161,195,11,239,15,61,177,180,243,164,74,0,93,226,44,78,234,144,44,205,147,251,188,57,36,224,117,102,200,215,7,150,28,205,126,190,94,145,6,29,119,174,212,232,52,205,144,146,233,228,253,244,21,231,110,120,202,21,236,106,82,8,19,47,152,216,87,68,56,138,210,160,127,20,73,131,88,199,91,99,40,100,87,214,222,87,161,67,229,155,75,246,149,222,191,221,60,10,128,60,151,104,145,117,251,232,12,185,127,69,58,237,166,114,18,47,153,196,21,184,187,32,155,252,50,158,18,116,60,67,48,74,129,35,203,238,8,132,139,153,129,36,219,106,250,14,107,174,96,207,150,210,31,215,33,84,248,68,226,205,166,248,199,102,82,100,47,205,44,103,36,200,236,214,52,238,181,88,144,35,200,196,145,32,182,17,113,142,39,146,48,69,29,108,137,118,45,230,113,195,29,154,0,215,142,140,235,69,140,157,236,117,225,206,78,191,155,212,242,222,221,72,217,205,107,234,219,
122,161,127,221,10,89,88,167,4,251,241,29,67,154,112,235,214,210,84,136,38,95,233,57,178,195,178,110,178,152,18,66,25,54,108,63,217,84,173,215,214,79,14,157,55,115,199,45,161,22,152,13,44,93,83,90,37,29,49,244,147,152,52,63,202,247,4,144,100,186,127,166,110,236,85,75,44,108,214,219,16,48,170,17,144,127,99,52,180,219,153,169,52,207,36,133,203,167,102,233,225,190,41,146,63,27,240,199,103,34,231,141,68,213,29,148,7,233,105,193,47,60,34,112,171,243,221,209,109,229,16,117,185,183,201,81,42,205,189,198,150,51,0,77,54,183,143,101,157,108,158,135,8,33,2,45,37,60,127,23,63,84,159,22,15,249,10,162,80,99,103,110,157,19,118,149,183,254,181,134,61,28,226,29,175,55,25,174,58,139,220,128,164,12,222,216,216,208,206,32,183,131,17,206,101,6,63,67,135,138,214,200,94,164,100,58,78,244,29,69,103,224,224,42,121,124,36,185,242,208,71,219,76,173,61,155,89,83,192,46,67,73,180,240,192,233,192,168,141,194,20,165,69,14,248,125,
242,45,52,185,216,209,185,176,122,171,222,219,114,222,176,145,59,13,10,101,232,168,104,49,250,9,202,102,140,25,11,77,253,250,185,122,158,203,239,195,174,249,253,129,119,116,51,89,179,143,124,161,176,210,50,232,38,135,77,123,150,180,5,120,66,10,212,106,76,136,209,162,215,39,61,83,87,208,183,140,74,33,148,233,130,60,161,41,45,175,167,179,113,9,236,80,31,130,66,82,28,137,235,110,24,68,172,233,165,30,40,169,123,149,58,195,167,211,181,24,34,192,17,200,193,85,47,23,148,54,69,49,73,116,184,238,25,217,166,163,24,36,174,208,32,145,188,126,76,5,148,77,39,68,248,230,84,83,76,219,232,219,23,22,86,128,94,21,149,214,46,149,212,109,36,45,55,199,166,36,140,115,114,117,83,161,43,142,32,25,138,235,142,124,108,62,176,45,172,30,8,116,155,34,188,27,141,244,114,138,242,90,173,48,174,105,10,122,59,57,21,165,236,50,215,209,187,189,94,111,190,40,44,140,121,238,78,81,17,116,8,160,122,142,227,212,113,109,179,157,32,111,121,200,179,219,
117,134,95,64,226,245,160,62,60,156,130,140,250,226,242,144,115,111,110,188,200,25,133,185,102,10,167,200,248,71,90,198,193,194,79,1,97,192,237,36,146,41,199,8,71,147,105,255,132,227,72,213,214,211,11,127,182,95,209,152,111,24,27,39,109,210,192,72,223,160,28,184,245,29,56,201,105,162,123,102,210,181,227,211,203,228,64,99,176,91,20,12,69,59,55,216,136,77,157,190,18,115,76,178,67,184,151,50,137,165,32,220,142,109,169,24,212,17,239,124,77,90,59,119,40,46,253,8,9,58,235,213,166,64,3,31,179,218,115,122,149,230,224,145,126,100,202,187,47,155,72,39,7,162,82,134,2,210,1,11,131,62,164,8,189,177,194,78,228,50,31,30,82,199,167,182,141,96,106,125,45,91,44,240,117,249,154,213,230,118,171,20,206,6,170,36,142,234,183,172,248,132,186,226,219,193,54,35,36,151,34,125,3,206,83,214,101,213,109,104,163,117,122,200,239,195,46,57,77,83,33,101,200,119,41,232,141,203,173,51,225,241,45,97,98,225,91,237,99,55,201,82,145,219,77,67,
41,188,216,215,7,17,27,233,196,193,90,246,36,87,76,216,28,135,62,203,12,169,69,133,211,33,247,185,5,35,39,74,7,211,83,185,8,104,231,244,244,38,109,1,41,36,112,14,114,131,3,36,29,72,109,126,225,72,179,6,45,198,68,211,130,193,142,193,250,17,107,164,61,3,187,136,250,153,224,82,33,48,134,10,64,139,110,235,18,135,115,12,83,107,13,169,175,59,11,195,25,40,69,219,148,37,202,178,10,175,159,160,228,138,228,46,213,114,85,29,220,56,29,39,244,51,105,66,115,173,80,237,245,200,141,131,234,200,81,100,149,14,37,161,212,245,201,33,133,199,198,250,32,67,88,43,182,101,224,123,74,170,140,242,174,157,142,100,143,61,8,191,137,21,57,132,122,22,192,229,223,199,32,58,107,121,7,210,39,244,168,109,71,138,253,226,45,241,70,134,235,167,183,202,58,166,112,135,233,46,10,47,135,17,49,108,36,105,68,91,200,144,104,114,17,195,77,36,41,114,85,183,89,18,238,234,234,237,249,92,112,140,224,80,34,18,37,162,17,7,115,112,147,184,28,67,
159,31,99,139,149,97,210,207,190,164,72,102,148,131,139,29,231,54,237,228,12,115,137,232,41,54,215,73,182,108,169,175,115,220,182,35,221,29,101,131,98,176,24,23,123,217,139,155,130,217,22,214,108,155,246,134,237,104,69,156,233,151,111,193,103,78,49,158,107,113,134,160,163,113,162,10,23,139,228,219,3,168,111,32,45,148,71,37,252,121,75,3,65,65,114,62,191,138,76,83,164,72,48,26,241,118,118,219,57,231,178,58,22,42,138,68,97,109,115,5,178,109,8,102,87,21,87,242,221,116,55,87,126,160,148,104,103,180,193,89,119,92,109,94,14,130,199,6,139,77,119,229,200,95,27,141,251,166,44,167,37,63,164,101,23,216,235,187,219,198,184,175,101,231,153,131,88,159,100,19,81,215,91,121,222,80,155,212,207,115,231,23,49,1,69,214,102,74,139,105,216,122,179,217,20,80,32,215,83,2,17,46,207,169,211,99,248,56,126,135,156,249,20,49,78,105,91,106,171,88,59,241,22,102,46,163,167,244,249,221,128,53,88,133,66,37,81,136,216,163,176,134,219,106,147,48,
65,61,3,199,14,224,57,62,8,222,0,187,60,186,240,121,86,0,151,50,182,246,200,19,198,213,142,16,193,161,161,181,222,225,1,211,16,228,239,18,145,215,89,82,93,222,33,203,109,185,188,153,71,137,65,61,249,116,238,114,20,218,201,226,237,112,28,46,233,237,9,33,28,151,156,108,188,67,75,164,219,108,113,194,63,19,186,116,19,186,228,106,45,144,239,195,199,237,6,174,118,97,181,171,207,161,216,115,11,184,63,75,19,215,61,32,195,238,105,172,114,108,57,73,9,61,21,103,246,128,114,64,20,167,24,241,96,231,98,43,112,120,61,110,93,104,35,170,6,162,53,170,43,13,76,101,161,92,196,166,124,152,97,33,120,161,4,101,194,5,5,227,180,35,116,52,41,126,218,246,54,163,153,163,237,156,186,83,59,231,170,124,39,3,114,145,234,180,141,117,65,66,215,156,64,167,232,210,182,98,72,56,17,198,38,130,115,91,126,219,126,66,173,173,115,207,39,180,202,236,96,218,152,139,156,187,235,209,16,103,194,179,182,162,59,157,75,34,188,129,51,56,116,96,241,217,
65,91,107,20,35,73,103,86,63,123,238,188,50,217,79,40,153,160,154,87,83,207,67,112,60,134,142,132,54,97,45,28,47,55,82,77,140,219,98,221,198,212,146,141,227,93,49,108,105,189,153,174,223,45,146,78,235,174,191,87,19,194,42,55,202,4,130,178,14,245,37,24,84,100,29,154,8,65,166,7,241,237,179,86,215,170,131,71,25,58,165,70,116,114,116,196,153,157,204,239,178,135,220,133,99,205,58,25,234,156,12,85,28,59,57,157,160,148,11,158,136,34,134,156,251,16,117,10,245,100,154,219,146,32,8,86,106,53,74,150,175,145,14,119,174,210,101,222,14,130,90,12,56,92,209,20,250,248,132,77,130,142,76,82,141,128,61,33,197,32,100,231,193,241,117,249,252,218,180,209,104,101,14,146,174,174,108,16,104,103,180,1,129,162,88,172,92,237,40,124,238,20,127,92,9,5,225,71,251,157,227,190,0,198,9,231,166,113,155,148,30,243,75,162,10,115,26,121,162,179,197,45,126,237,94,75,121,116,236,220,8,193,195,146,130,87,142,128,67,214,61,212,117,15,212,115,
37,247,74,33,241,2,229,116,3,41,194,69,13,26,225,129,65,153,72,40,217,235,12,31,58,99,151,123,12,138,48,220,205,184,134,175,163,90,251,93,109,159,198,225,235,6,28,84,77,37,17,20,183,15,251,134,198,145,146,89,190,192,21,235,45,242,237,113,197,209,172,140,41,149,179,20,222,190,205,176,174,55,177,9,70,6,199,152,222,162,40,226,241,53,51,232,18,109,164,84,13,159,219,213,14,40,196,11,133,92,145,149,132,229,110,173,71,82,130,107,44,92,163,162,125,17,32,50,47,201,134,169,60,180,121,20,202,50,5,77,117,187,152,43,139,72,55,50,213,33,41,40,43,21,198,169,83,42,130,229,65,43,50,216,237,102,123,205,118,156,173,113,89,211,182,19,30,6,114,130,174,211,55,226,163,45,140,159,199,30,138,179,170,113,53,67,149,78,103,168,11,5,53,58,227,71,25,36,67,145,62,16,181,175,202,249,121,245,128,19,12,29,220,228,45,81,84,192,198,217,242,149,84,129,115,121,193,44,128,196,207,161,231,34,14,53,154,67,89,230,241,243,61,10,75,226,
147,157,250,22,5,183,99,83,198,183,32,101,178,190,108,239,250,48,152,18,185,149,46,34,35,140,242,53,246,232,90,57,50,124,238,25,194,220,179,210,248,110,112,167,232,143,38,172,13,228,33,54,107,218,61,142,90,73,82,139,135,136,204,93,176,232,177,157,73,214,124,128,148,171,70,125,75,195,66,210,136,199,116,161,202,181,15,83,34,20,245,211,99,111,249,66,140,10,37,131,8,43,132,33,209,8,160,184,246,245,225,125,0,184,34,199,56,120,254,94,149,97,41,58,149,189,208,2,117,36,245,136,168,28,117,152,108,206,193,99,187,140,81,225,154,64,205,109,109,119,245,158,124,231,132,16,28,143,81,179,68,227,66,234,12,172,49,71,254,102,75,35,27,235,201,35,146,43,46,217,240,219,192,177,102,61,118,170,44,202,128,122,86,41,106,198,80,130,118,203,199,78,72,189,26,99,205,128,231,13,253,162,62,53,171,153,74,231,16,223,181,59,105,37,88,6,1,20,199,81,172,43,72,226,50,161,230,196,213,167,56,72,125,151,39,63,183,202,14,224,189,192,102,241,188,60,
79,137,138,1,245,90,53,156,179,109,148,119,140,119,50,66,217,112,152,164,236,232,133,197,110,152,105,243,91,242,233,226,158,186,25,223,69,105,201,133,35,109,106,140,49,52,187,146,166,156,208,149,173,205,97,142,19,65,224,168,51,237,20,79,226,74,248,180,5,10,211,125,231,1,172,38,155,61,59,222,10,181,32,101,191,85,155,147,237,237,36,37,157,112,52,219,105,76,97,12,75,142,92,99,13,245,184,238,94,94,112,121,104,59,67,22,111,181,154,218,160,214,42,219,74,245,157,243,72,18,158,209,234,175,12,144,132,95,58,99,31,239,205,203,13,166,37,126,158,46,66,45,71,6,204,168,238,35,19,21,187,234,52,149,222,95,171,237,80,141,1,168,36,12,74,40,112,150,102,92,172,163,118,67,105,149,161,52,100,117,76,133,211,248,177,187,227,136,137,2,115,190,194,146,65,134,144,91,131,164,79,79,166,69,136,91,205,102,120,79,108,74,152,118,75,199,119,211,201,98,146,61,89,92,53,6,181,218,201,206,165,213,84,241,159,42,148,254,211,91,13,148,116,17,96,7,
98,234,43,189,120,187,192,221,170,132,84,174,227,145,167,85,94,28,36,171,157,156,83,22,66,84,247,183,105,76,76,182,231,91,199,93,29,138,42,87,205,117,98,66,212,182,9,129,194,0,136,97,106,54,114,204,62,224,197,227,149,222,218,93,23,103,172,108,209,204,92,105,60,143,223,199,9,59,121,94,226,108,75,49,36,25,156,254,181,16,37,230,221,129,10,144,170,49,243,106,216,134,144,177,131,172,39,114,44,191,9,187,71,40,171,66,3,118,106,146,44,60,253,178,55,34,162,229,107,121,105,91,123,132,149,229,192,14,80,159,225,41,149,234,170,225,172,214,181,233,92,140,125,52,44,228,163,85,114,60,251,21,13,85,185,44,139,203,117,71,234,10,140,109,150,236,6,51,156,126,197,240,108,228,152,244,201,5,5,179,151,202,5,92,210,237,106,24,33,60,107,48,52,131,73,205,218,10,83,41,205,33,15,180,200,30,117,196,158,32,27,187,46,184,209,54,186,40,158,36,162,191,139,121,99,157,70,166,131,152,231,8,209,118,255,124,77,219,36,100,132,144,86,173,98,67,
246,2,61,82,253,224,70,98,146,236,199,171,136,80,220,165,244,64,213,165,161,207,57,118,163,100,123,157,88,107,47,2,181,52,181,113,14,142,100,219,189,84,2,183,73,39,101,216,116,135,121,164,85,137,116,238,225,195,7,14,3,123,15,2,194,35,110,239,240,13,227,108,127,212,12,7,121,125,142,171,170,76,177,76,21,51,189,148,241,229,183,118,149,137,81,23,84,233,194,205,10,12,183,121,13,239,28,244,79,78,125,226,11,220,205,164,123,231,192,185,182,40,148,108,206,89,144,149,33,252,205,212,69,33,200,83,94,39,208,122,129,152,112,192,100,8,100,4,224,34,151,208,174,217,209,124,58,187,21,31,28,28,144,88,87,210,139,11,214,145,233,60,119,189,129,100,250,160,157,126,12,169,185,184,129,72,73,193,34,6,170,108,128,75,80,149,208,70,176,132,4,236,188,79,50,111,220,196,131,4,158,103,40,173,9,67,76,61,109,225,129,184,171,119,49,53,7,191,143,32,122,200,199,54,254,44,48,93,7,219,36,215,145,200,145,154,155,192,193,93,73,233,222,134,69,220,
152,160,149,177,49,95,0,137,104,201,136,102,248,214,47,129,187,161,194,145,122,206,39,113,135,37,158,53,201,85,238,80,245,170,11,19,220,158,167,48,66,148,166,1,159,184,180,165,50,48,149,16,42,221,206,111,26,74,232,252,217,225,120,243,118,188,165,22,19,169,58,12,103,82,81,36,142,246,57,211,38,220,226,11,201,189,176,98,40,115,138,167,33,97,154,240,53,17,100,92,23,230,216,197,6,164,137,209,167,40,120,76,59,49,39,220,96,168,230,202,186,110,82,179,251,25,53,65,82,100,193,168,173,37,153,215,89,160,225,52,141,36,223,48,50,166,143,183,147,103,3,173,134,102,38,235,208,8,116,19,67,152,157,251,166,84,38,1,163,118,115,208,217,46,202,10,57,14,77,173,163,144,83,11,35,210,179,17,209,241,192,87,58,51,69,124,252,92,44,184,63,82,43,16,129,115,163,98,195,205,30,29,204,120,242,132,154,50,216,41,235,98,155,251,99,65,49,177,159,14,246,90,183,25,41,252,4,27,69,246,229,210,208,70,147,32,14,17,65,50,51,18,136,212,106,105,
22,8,75,36,17,52,154,135,146,136,228,62,141,219,17,223,117,115,163,197,6,149,128,100,197,172,235,182,173,12,101,231,168,43,69,113,179,82,5,4,157,203,135,233,146,179,84,138,86,206,175,17,192,234,110,184,27,221,217,89,144,108,53,59,228,182,103,130,221,98,212,88,95,96,92,171,129,26,224,136,204,28,211,46,206,9,70,232,25,189,143,22,43,83,243,108,169,172,199,4,241,22,212,108,115,94,32,52,54,204,1,218,58,124,177,129,41,164,201,50,100,31,47,193,95,122,38,126,17,129,217,35,119,236,80,15,220,57,13,14,137,138,32,198,39,218,190,92,192,10,40,184,83,145,206,129,147,195,78,91,108,149,238,213,187,77,173,208,220,208,232,210,163,160,225,92,46,75,16,194,177,76,188,85,3,95,123,208,54,37,135,171,148,244,234,90,19,156,42,213,144,253,1,101,128,113,121,62,44,250,46,2,10,189,216,169,41,49,97,38,204,96,122,81,82,209,194,44,209,168,149,191,198,129,29,168,118,190,162,34,39,110,25,150,138,13,170,158,246,50,69,89,153,220,227,205,
202,83,112,25,193,80,131,210,235,20,216,30,136,158,15,54,107,77,241,29,71,11,53,248,239,174,232,144,129,246,242,40,106,13,92,235,206,236,234,109,103,253,104,13,79,143,180,118,76,116,44,187,79,35,95,24,130,195,108,1,154,177,55,245,181,62,140,24,146,153,119,42,3,226,169,118,13,175,56,9,112,79,57,85,201,181,44,80,134,51,132,204,245,178,69,99,73,109,43,77,199,71,38,181,219,170,189,69,98,193,197,107,69,103,2,23,90,209,41,204,102,226,244,200,174,231,138,96,14,94,119,39,133,237,48,42,242,187,161,34,120,42,141,8,70,5,229,17,98,11,1,33,150,251,120,50,133,7,105,184,250,214,50,15,203,69,228,195,74,164,148,61,107,10,90,219,180,240,245,204,129,42,161,160,221,76,249,152,149,16,241,142,171,14,116,146,143,87,167,155,2,27,229,202,101,115,36,88,242,75,77,176,64,217,107,94,49,52,98,13,209,103,80,213,50,109,193,17,164,92,42,49,77,166,219,189,81,167,214,188,168,10,46,20,89,174,207,114,228,176,24,217,28,195,193,100,
76,144,54,157,28,30,50,181,150,238,51,111,133,161,34,165,84,118,20,93,166,250,65,175,208,25,187,83,99,101,95,234,227,135,246,118,118,210,130,244,254,53,223,219,79,186,70,55,42,18,74,196,55,166,41,115,111,3,155,202,109,238,164,54,174,244,209,102,122,91,230,105,148,9,91,29,225,22,195,161,92,55,228,56,27,41,129,3,118,133,78,166,248,220,112,58,24,14,205,82,14,140,235,28,9,51,98,11,198,67,219,96,86,221,220,61,51,103,143,137,167,233,131,125,213,181,81,97,29,24,20,58,156,237,76,173,219,64,225,26,18,235,105,36,188,214,106,51,174,15,206,204,211,238,81,20,123,152,180,156,113,73,103,215,140,171,153,101,63,104,41,186,152,2,95,38,60,220,50,221,21,25,83,234,88,103,37,111,9,8,82,101,23,194,61,162,99,84,186,161,109,83,119,114,181,166,241,14,112,156,67,221,204,133,222,152,244,79,114,201,35,89,231,240,72,203,14,158,160,143,240,139,26,71,126,21,28,233,209,3,157,186,59,107,81,179,197,205,122,244,152,130,225,201,76,146,
182,138,116,101,40,37,180,176,243,66,62,11,178,22,99,104,250,78,215,199,75,174,29,248,108,249,77,188,154,230,62,74,237,250,232,136,80,213,3,137,36,189,129,99,148,39,123,61,104,139,176,226,100,244,46,161,211,140,193,163,35,251,102,56,109,65,246,75,74,194,245,157,221,182,30,239,39,47,47,80,20,251,0,21,110,72,84,210,18,234,42,197,39,88,2,86,34,162,238,33,233,161,205,253,196,132,236,225,17,214,50,56,164,137,79,45,248,36,106,18,57,31,67,180,154,232,99,194,196,41,45,40,122,52,35,9,28,81,79,214,29,30,228,113,210,198,139,171,219,169,75,246,184,21,217,225,90,35,204,41,243,236,60,176,131,159,21,89,151,172,1,74,154,144,41,28,54,219,237,56,106,101,44,88,217,179,104,39,76,223,71,219,247,250,136,163,35,16,148,152,105,200,154,197,105,196,152,57,23,100,2,77,121,180,72,105,24,253,220,77,242,173,74,108,198,47,206,91,121,239,89,126,124,120,53,156,31,16,88,146,154,233,46,125,119,105,112,167,199,65,131,202,235,54,38,139,
232,22,161,202,147,184,240,11,8,26,10,131,96,33,238,249,56,198,65,238,241,161,109,239,136,7,101,18,180,235,105,48,155,117,209,238,65,217,144,52,152,206,102,181,7,80,54,146,119,139,182,108,222,200,232,219,124,132,183,235,193,35,44,178,53,96,180,233,177,225,161,39,227,155,186,124,71,80,69,192,29,48,54,1,149,66,120,74,176,91,51,218,2,31,139,192,157,253,77,130,169,124,200,223,159,131,210,96,194,181,103,19,239,153,143,237,18,92,59,59,134,218,113,54,212,36,94,4,164,86,15,93,216,174,231,94,143,227,9,73,205,34,8,193,184,166,43,96,59,53,241,29,251,107,0,161,183,60,52,241,239,71,68,111,121,57,42,30,217,0,241,115,15,190,130,48,142,1,117,238,52,48,246,122,187,3,101,87,240,183,24,203,102,174,128,68,89,216,99,90,223,46,84,27,72,125,115,91,197,175,222,156,182,196,213,158,35,119,18,184,114,101,162,139,64,89,189,75,56,3,175,43,57,0,247,5,191,12,240,92,178,164,0,60,239,89,2,60,151,44,73,0,207,37,203,61,
89,174,128,178,16,100,244,53,203,253,168,66,144,45,71,167,160,165,28,106,223,14,2,116,95,142,64,125,251,253,72,179,20,14,200,38,47,133,3,178,83,75,225,128,236,235,165,112,64,246,98,41,28,144,77,92,10,255,23,56,15,1,201,175,114,1,155,200,161,132,59,9,30,74,128,123,198,124,43,193,131,52,229,17,77,23,30,119,226,44,149,133,42,12,129,219,195,140,113,125,168,58,34,35,245,143,37,248,170,89,86,214,137,171,29,9,158,81,173,79,132,231,187,187,73,253,137,187,132,221,119,96,198,51,218,45,77,88,160,85,197,160,8,153,173,27,157,80,144,52,216,169,255,52,123,83,164,149,110,231,210,78,139,87,93,227,91,249,4,97,237,4,54,87,27,78,185,55,232,219,195,197,122,103,255,142,118,206,221,58,221,229,45,29,161,222,135,168,28,67,30,207,142,84,18,84,78,8,127,151,141,111,83,161,246,44,239,176,68,95,44,26,235,144,32,129,139,51,38,60,115,143,31,204,171,174,79,13,29,104,125,126,13,185,42,92,98,236,139,2,106,114,105,94,186,7,
227,26,45,244,237,150,242,190,220,66,58,231,239,106,117,27,92,23,218,24,240,32,249,183,106,0,237,165,235,166,0,223,93,186,46,10,76,240,4,156,41,4,114,185,248,53,191,38,120,192,203,69,96,141,15,5,192,1,62,150,76,160,51,218,78,125,27,160,211,12,246,16,13,60,112,82,25,50,3,204,42,243,52,88,116,119,118,161,162,34,155,118,12,48,65,183,155,181,206,221,3,222,28,141,177,2,226,250,26,187,134,110,222,221,29,34,46,75,147,161,161,116,123,142,137,143,100,119,163,201,85,16,154,35,120,156,4,47,172,178,131,67,84,112,251,39,243,253,186,45,235,2,108,100,16,222,208,16,87,133,19,42,167,31,246,206,137,124,22,148,192,69,236,122,120,176,177,165,199,37,122,144,202,201,213,141,220,129,188,6,223,9,1,205,118,201,78,21,254,240,100,190,1,185,113,35,249,251,65,19,56,207,163,45,6,76,182,93,120,195,162,113,239,58,35,72,233,150,180,220,184,135,223,157,137,47,237,195,150,209,118,117,115,224,184,17,223,46,74,44,1,148,32,236,95,245,
218,98,40,1,220,23,144,151,152,176,78,250,123,49,20,193,3,69,62,32,240,6,7,164,231,97,194,243,102,226,225,243,247,238,235,61,76,47,152,162,5,124,171,107,170,254,193,163,159,191,252,183,63,94,89,126,253,187,31,255,155,239,223,15,254,228,199,63,250,135,199,191,94,253,201,199,143,127,181,250,222,59,239,63,127,246,242,213,202,195,143,63,120,239,123,79,158,189,122,239,123,15,115,255,240,234,197,147,103,191,90,78,190,30,125,247,71,0,135,159,255,217,59,63,252,193,15,127,240,199,127,242,39,223,93,249,229,243,231,79,31,189,251,243,63,92,249,156,223,163,119,190,188,126,207,7,216,240,238,47,238,23,127,241,32,230,209,187,239,253,193,207,255,240,207,254,237,202,147,143,127,245,232,123,191,195,16,144,190,228,7,172,253,151,79,31,63,125,242,234,183,127,241,201,39,95,217,242,5,207,7,173,126,241,90,207,207,185,126,248,228,233,234,79,31,127,188,186,164,251,250,166,251,45,171,191,1,56,188,247,191,190,251,222,119,222,251,206,119,151,144,252,241,143,239,143,
240,242,65,193,149,159,255,155,239,191,209,15,80,233,158,227,155,185,207,185,175,124,246,228,213,71,43,31,62,127,241,241,227,87,111,22,151,124,127,176,242,147,15,151,131,149,39,47,87,150,252,191,183,242,234,163,213,55,251,128,185,87,143,255,105,21,96,249,226,249,199,95,103,9,144,173,62,123,249,228,249,179,31,188,86,234,245,142,47,129,113,207,2,96,248,122,106,229,29,128,243,202,255,249,201,175,190,187,2,124,47,23,126,249,228,213,203,149,79,86,95,172,124,242,228,55,171,79,31,214,159,3,11,47,94,235,240,242,187,63,250,6,167,248,123,0,161,87,223,226,21,191,251,241,205,206,240,5,159,127,49,111,248,205,189,185,126,14,140,126,248,141,123,126,251,207,216,243,217,147,15,94,125,116,191,239,167,159,62,125,250,77,187,62,90,125,242,171,143,94,125,190,237,141,135,220,159,235,37,160,231,91,92,228,253,231,207,95,124,240,242,7,111,166,127,243,189,71,111,134,191,253,98,120,47,253,139,159,175,197,252,224,27,204,241,87,47,30,127,246,179,213,247,95,253,237,
147,103,128,65,150,191,190,193,18,95,190,179,127,249,252,233,243,23,192,190,175,89,231,215,207,159,124,112,111,157,47,179,5,236,243,238,47,150,19,191,184,159,126,244,101,130,247,254,224,13,102,223,98,149,111,182,197,183,91,224,247,32,255,77,203,79,1,157,255,143,183,48,248,194,179,238,207,255,139,7,24,62,247,172,247,239,127,125,247,91,113,253,251,231,75,20,151,177,238,201,255,245,213,64,248,175,5,234,187,191,184,151,250,139,149,251,175,207,213,253,228,249,203,215,177,11,80,5,136,92,192,231,231,107,47,255,255,192,102,57,243,255,25,36,75,154,95,172,44,63,63,215,241,197,191,226,161,129,123,189,84,233,229,202,227,149,23,128,204,199,207,126,5,196,122,224,66,47,39,63,191,183,143,86,62,88,253,16,16,245,193,202,47,127,187,178,250,228,62,154,254,191,184,233,192,175,149,239,45,227,244,189,189,87,30,189,94,93,218,123,185,180,242,248,217,7,143,238,205,253,134,238,245,60,64,177,196,227,115,130,23,175,57,221,103,160,37,4,175,111,213,27,178,47,80,89,
178,124,56,251,155,181,135,163,255,110,204,89,121,0,226,233,15,127,252,163,159,1,4,207,63,126,176,238,59,175,173,251,85,16,1,227,126,105,219,163,119,222,224,248,179,213,87,159,190,120,118,143,228,253,242,131,172,111,10,111,255,105,245,213,207,30,63,121,246,203,231,159,189,150,246,69,82,121,139,192,175,236,254,221,196,242,133,63,252,250,241,211,63,250,247,143,222,166,208,61,237,131,70,15,201,247,241,51,128,238,147,79,95,45,105,62,253,28,241,7,6,15,59,126,184,242,206,207,86,63,248,238,202,171,231,43,63,252,205,223,0,127,222,130,218,235,131,44,47,200,87,115,230,195,207,215,119,231,205,193,126,55,243,189,62,216,210,215,255,57,153,242,173,215,230,249,139,39,95,205,155,95,144,191,245,50,125,29,158,151,159,254,242,33,171,125,176,250,244,201,199,79,94,61,56,250,189,207,125,238,114,111,41,92,238,69,127,139,125,255,126,89,129,124,115,45,241,181,216,241,37,189,255,211,95,252,57,160,55,240,9,232,253,135,15,48,221,115,123,244,101,110,255,188,202,225,
155,115,212,27,32,0,230,15,69,213,131,123,60,255,16,128,228,161,122,2,2,193,55,167,251,39,207,30,191,2,74,198,55,129,96,41,232,117,32,120,244,166,126,251,199,143,128,114,237,53,171,151,64,128,121,252,193,123,223,127,254,236,233,111,95,131,246,26,173,183,195,118,127,196,191,248,244,195,15,87,95,188,5,182,111,197,232,75,164,255,3,99,180,242,86,144,62,126,254,193,147,15,159,60,254,229,211,213,183,95,183,159,188,252,207,64,229,251,193,255,3,183,250,188,48,125,77,250,47,88,149,254,126,220,222,92,178,87,47,128,32,243,228,195,183,163,114,31,166,63,7,102,229,241,139,101,10,122,249,228,131,213,175,247,35,191,7,148,111,119,154,111,7,229,53,2,15,212,175,113,120,248,241,63,20,26,15,42,125,51,38,95,220,165,111,114,149,127,124,91,225,242,106,245,227,79,158,2,138,60,122,247,63,254,142,123,60,125,252,242,229,253,57,254,221,202,63,62,250,211,119,255,165,29,235,129,239,155,201,87,223,136,212,39,247,37,195,235,67,191,186,111,3,255,121,46,
242,22,56,190,226,36,255,138,112,252,243,93,234,95,8,135,111,117,142,149,255,250,95,255,232,135,192,159,63,251,163,149,159,191,252,33,208,93,255,225,202,223,61,116,198,159,62,123,255,21,208,118,191,124,244,232,191,255,247,47,161,247,16,143,255,250,55,192,223,213,247,63,125,181,12,74,239,189,243,59,143,33,111,123,96,88,249,42,205,61,16,223,248,16,241,181,8,251,201,139,231,191,122,241,248,99,96,252,248,21,80,217,61,125,186,242,252,19,32,243,2,25,25,168,66,31,127,250,244,213,195,139,194,147,167,192,165,185,47,1,63,127,54,248,157,119,136,37,219,31,62,156,3,248,250,254,127,251,249,255,178,242,215,191,121,12,88,117,245,71,143,94,79,2,83,223,255,111,95,213,246,157,247,190,243,209,171,143,159,190,247,29,160,200,248,254,159,174,188,247,157,191,121,242,98,245,195,231,191,249,193,234,111,86,223,251,206,163,111,78,247,127,245,226,201,175,87,255,246,201,203,87,95,170,28,255,252,197,139,199,191,253,197,202,253,215,163,255,248,117,24,254,244,53,94,159,
211,190,165,156,124,6,132,0,128,252,225,172,247,0,61,126,245,209,203,101,89,246,24,192,230,131,37,229,203,239,45,195,205,234,139,103,143,159,46,171,229,37,32,203,49,48,251,193,234,179,87,64,62,1,42,26,32,37,45,137,95,254,246,37,224,219,223,82,181,188,255,217,7,95,58,192,219,205,11,236,121,187,162,191,124,249,252,233,167,175,30,172,179,242,236,241,199,171,64,210,255,228,197,234,203,165,22,207,126,245,144,64,63,125,241,2,248,185,52,243,251,171,47,1,19,62,127,241,79,203,181,15,158,44,27,144,231,47,30,138,131,127,191,228,11,220,192,247,31,106,49,64,230,95,62,208,253,213,167,175,183,189,243,131,239,126,99,21,241,151,31,1,220,222,196,189,207,223,241,190,57,9,220,239,127,244,238,55,196,175,111,122,104,123,254,244,131,213,47,202,201,127,248,146,255,46,15,246,222,255,252,150,179,45,173,246,230,217,235,129,252,181,159,62,253,227,255,240,31,190,126,219,95,126,250,254,146,213,135,159,62,125,27,40,255,240,22,80,190,251,45,150,253,171,213,151,
255,244,234,249,39,255,251,227,103,64,164,120,241,211,213,207,126,175,157,191,70,241,133,213,255,28,168,84,94,44,203,161,229,141,2,44,254,235,213,23,247,87,16,168,140,190,70,248,14,0,245,227,151,128,210,192,58,176,248,119,47,127,242,236,195,231,223,172,234,79,255,238,167,239,189,251,179,191,254,235,159,254,227,207,254,252,167,255,248,222,187,255,249,94,199,63,92,249,218,252,163,183,19,188,243,235,215,199,250,42,9,16,136,238,155,156,207,109,246,147,87,128,127,62,64,254,166,1,122,180,196,253,62,192,188,14,138,43,31,61,126,185,242,203,85,32,2,189,15,220,183,47,93,164,165,119,191,250,104,89,212,222,103,236,39,175,238,119,62,123,254,134,39,176,245,183,171,175,126,199,190,63,185,127,2,253,244,229,42,96,209,251,11,188,124,46,0,42,201,207,101,1,115,191,92,125,35,232,213,103,79,222,191,111,198,129,138,16,136,234,203,75,243,242,201,171,79,31,223,135,234,239,45,223,51,129,155,254,16,209,30,132,252,79,247,82,158,252,209,159,252,240,199,127,247,195,
101,97,249,165,83,44,121,190,92,249,203,87,47,158,190,247,163,31,253,253,131,139,254,245,175,1,158,47,223,249,238,143,151,111,182,223,122,230,207,62,2,198,143,87,126,249,233,171,87,95,94,93,94,109,192,174,203,55,94,224,92,175,87,223,7,2,193,47,87,223,172,173,60,254,21,208,124,174,188,124,254,187,2,94,111,250,242,73,127,240,251,15,1,8,121,77,1,184,255,95,126,244,228,233,7,127,251,252,229,171,191,121,254,254,167,192,41,222,88,97,153,45,150,93,221,179,213,207,128,152,9,116,226,159,1,136,3,78,253,189,149,167,203,43,250,242,241,111,191,183,2,0,240,241,39,175,254,238,127,3,156,240,161,254,254,236,241,87,25,62,164,158,175,232,248,163,7,211,175,2,193,97,233,205,171,192,250,251,143,1,123,126,137,225,202,199,64,163,248,242,117,142,90,125,250,193,210,166,79,159,63,127,185,250,250,33,28,96,253,38,55,61,122,244,127,3,246,152,31,213,

View file

@ -4,7 +4,10 @@ topic "News and changes Log";
[{_}%EN-US
[s0; [*R+184 Functions4U. News and changes log]&]
[s0;%- &]
[ {{1441:8559f0;g0;^t/25b/25 [s0;# [2 2012/12/22]]
[ {{1441:8559f0;g0;^t/25b/25 [s0;# [2 2013/04/01]]
:: [s0;# [2 Removed min() and max() templates as they are now in Core]&]
[s0;# [2 Redefined File/Folder `"X`" functions]]
:: [s0;# [2 2012/12/22]]
:: [s0;# [2 Added ReadCSV().]]
:: [s0;# [2 2012/07/03]]
:: [s0;# [2 Included NAMESPACE`_UPP.]]

View file

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