Functions4U: Added some geometry functions.

git-svn-id: svn://ultimatepp.org/upp/trunk@4702 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
koldo 2012-03-19 20:17:39 +00:00
parent a6165193ae
commit 17d63ff5c2
7 changed files with 473 additions and 452 deletions

View file

@ -80,10 +80,7 @@ bool LaunchFileCreateProcess(const char *file) {
}
bool LaunchFileShellExecute(const char *file) {
HINSTANCE ret;
ret = ShellExecuteW(NULL, L"open", ToSystemCharsetW(file), NULL, L".", SW_SHOWNORMAL);
return (int)ret > 32;
return 32 < int(ShellExecuteW(NULL, L"open", ToSystemCharsetW(file), NULL, L".", SW_SHOWNORMAL));
}
bool LaunchFile(const char *_file) {
@ -707,30 +704,7 @@ String GetShellFolder(const char *local, const char *users)
else
return ret;
}
/*
String GetDesktopFolder()
{
String ret = GetShellFolder("XDG_DESKTOP_DIR", "DESKTOP");
if (ret.IsEmpty())
return AppendFileName(GetHomeDirectory(), "Desktop");
else
return ret;
}
String GetProgramsFolder() {return String("/usr/bin");}
String GetAppDataFolder() {return GetHomeDirectory();};
String GetMusicFolder() {return GetShellFolder("XDG_MUSIC_DIR", "MUSIC");}
String GetPicturesFolder() {return GetShellFolder("XDG_PICTURES_DIR", "PICTURES");}
String GetVideoFolder() {return GetShellFolder("XDG_VIDEOS_DIR", "VIDEOS");}
String GetTemplatesFolder() {return GetShellFolder("XDG_TEMPLATES_DIR", "XDG_TEMPLATES_DIR");}
String GetDownloadFolder()
{
String browser = GetExtExecutable("html");
browser = ToLower(browser);
if (browser.Find("firefox") >= 0)
return GetFirefoxDownloadFolder();
return GetShellFolder("XDG_DOWNLOAD_DIR", "DOWNLOAD");
};
*/
String GetTempFolder()
{
return GetHomeDirectory();
@ -766,53 +740,6 @@ int ReverseFind(const String& s, const String& toFind, int from) {
return -1;
}
// Like StrToDate but using Time
/* Now include in TimeDate
const char *StrToTime(struct Upp::Time& d, const char *s) {
s = StrToDate(d, s);
if (!s)
return NULL;
d.hour = d.minute = d.second = 0;
const char *fmt = "hms";
while(*fmt) {
while(*s && !IsDigit(*s))
s++;
int n;
if(IsDigit(*s)) {
char *q;
n = strtoul(s, &q, 10);
s = q;
} else
break;
switch(*fmt) {
case 'h':
if(n < 0 || n > 23)
return NULL;
d.hour = n;
break;
case 'm':
if(n < 0 || n > 59)
return NULL;
d.minute = n;
break;
case 's':
if(n < 0 || n > 59)
return NULL;
d.second = n;
break;
default:
NEVER();
}
fmt++;
}
return d.IsValid() ? s : NULL;
}
*/
Time StrToTime(const char *s) {
Time ret;
if (StrToTime(ret, s))
@ -2190,23 +2117,9 @@ Color RandomColor() {
return Color(Random(), 0);
}
double Random(double min, double max) {
return min + (max - min)*Random()/double(0xffffffff);
}
/* Included in ImageOp
Image Rotate180(const Image& orig) {
Size sz = orig.GetSize();
ImageBuffer dest(sz);
for(int rw = 0; rw < sz.cy; rw++)
for(int cl = 0; cl < sz.cx; cl++)
dest[rw][cl] = orig[sz.cy - rw - 1][sz.cx - cl - 1];
return dest;
}
*/
Image GetRect(const Image& orig, const Rect &r) {
if(r.IsEmpty())
return Image();
return Image();
ImageBuffer ib(r.GetSize());
for(int y = r.top; y < r.bottom; y++) {
const RGBA *s = orig[y] + r.left;

View file

@ -269,8 +269,28 @@ inline const T& max(const T& a, const T& b, const T& c, const T& d) {
return ab > cd ? ab : cd;
}
double Random(double min, double max);
template <class T>
T AngleAdd360(T ang, T val) {
ang += val;
while (ang >= 360)
ang -= 360;
while (ang < 0)
ang += 360;
return ang;
}
template <class T>
inline const T Distance(const T& x1, const T& y1, const T& x2, const T& y2) {
return sqrt(pow2(x1-x2) + pow2(y1-y2)); }
template <class T>
inline const T Distance(const T& x1, const T& y1, const T& z1, const T& x2, const T& y2, const T& z2) {
return sqrt(pow2(x1-x2) + pow2(y1-y2) + pow2(z1-z2)); }
template <class T>
inline const double Angle(const T& x1, const T& y1, const T& x2, const T& y2) {
return atan2(y2-y2, x2-x1);
}
// A String based class to parse into
class StringParse : public String {

View file

@ -302,7 +302,7 @@ characters.&]
[s0;l288; For example `"Århus Ørsted Ñandú crème brûlée`"
is converted in `"Aarhus Oersted Nandu creme brulee`"&]
[s3;%- &]
[s4;%- &]
[s4; &]
[s5;:IsPunctuation`(wchar`):%- [@(0.0.255) bool]_[* IsPunctuation]([_^wchar^ wchar]_[*@3 c])&]
[s2; Returns true if [%-*@3 c ]is a punctuation character.&]
[s3;%- &]
@ -340,6 +340,91 @@ for all times [%-*@3 find] char appears.&]
[s2; Returns the average of [%-*@3 a] and [%-*@3 b].&]
[s3; &]
[s4;%- &]
[s5;:Average`(T`,T`,T`):%- [@(0.0.255) template]_<[@(0.0.255) class]_[*@4 T]>_[*@4 T]_[* Averag
e]([*@4 T]_[*@3 a], [*@4 T]_[*@3 b], [*@4 T]_[*@3 c])&]
[s2; Returns the average of [%-*@3 a], [%-*@3 b] and [%-*@3 c].&]
[s3; &]
[s4;%- &]
[s5;:Average`(T`,T`,T`,T`):%- [@(0.0.255) template]_<[@(0.0.255) class]_[*@4 T]>_[*@4 T]_[* Ave
rage]([*@4 T]_[*@3 a], [*@4 T]_[*@3 b], [*@4 T]_[*@3 c], [*@4 T]_[*@3 d])&]
[s2; Returns the average of [%-*@3 a], [%-*@3 b], [%-*@3 c] and [%-*@3 d].&]
[s3; &]
[s4;%- &]
[s5;:pow2`(T`):%- [@(0.0.255) template]_<[@(0.0.255) class]_[*@4 T]>_[*@4 T]_[* pow2]([*@4 T]_[*@3 a
])&]
[s2; Raises [%-*@3 a] to 2. Similar to sqr().&]
[s3; &]
[s4;%- &]
[s5;:pow3`(T`):%- [@(0.0.255) template]_<[@(0.0.255) class]_[*@4 T]>_[*@4 T]_[* pow3]([*@4 T]_[*@3 a
])&]
[s2; Raises [%-*@3 a] to 3.&]
[s3; &]
[s4;%- &]
[s5;:pow4`(T`):%- [@(0.0.255) template]_<[@(0.0.255) class]_[*@4 T]>_[*@4 T]_[* pow4]([*@4 T]_[*@3 a
])&]
[s2; Raises [%-*@3 a] to 4.&]
[s3; &]
[s4;%- &]
[s5;:min`(const T`&`,const T`&`,const T`&`):%- [@(0.0.255) template]_<[@(0.0.255) class]_
[*@4 T]>_[@(0.0.255) const]_[*@4 T][@(0.0.255) `&]_[* min]([@(0.0.255) const]_[*@4 T][@(0.0.255) `&
]_[*@3 a], [@(0.0.255) const]_[*@4 T][@(0.0.255) `&]_[*@3 b], [@(0.0.255) const]_[*@4 T][@(0.0.255) `&
]_[*@3 c])&]
[s2; Returns the min value of [%-*@3 a], [%-*@3 b] and [%-*@3 c].&]
[s3; &]
[s4;%- &]
[s5;:min`(const T`&`,const T`&`,const T`&`,const T`&`):%- [@(0.0.255) template]_<[@(0.0.255) c
lass]_[*@4 T]>_[@(0.0.255) const]_[*@4 T][@(0.0.255) `&]_[* min]([@(0.0.255) const]_[*@4 T][@(0.0.255) `&
]_[*@3 a], [@(0.0.255) const]_[*@4 T][@(0.0.255) `&]_[*@3 b], [@(0.0.255) const]_[*@4 T][@(0.0.255) `&
]_[*@3 c], [@(0.0.255) const]_[*@4 T][@(0.0.255) `&]_[*@3 d])&]
[s2; Returns the min value of [%-*@3 a], [%-*@3 b], [%-*@3 c] and [%-*@3 d].&]
[s3; &]
[s4;%- &]
[s5;:max`(const T`&`,const T`&`,const T`&`):%- [@(0.0.255) template]_<[@(0.0.255) class]_
[*@4 T]>_[@(0.0.255) const]_[*@4 T][@(0.0.255) `&]_[* max]([@(0.0.255) const]_[*@4 T][@(0.0.255) `&
]_[*@3 a], [@(0.0.255) const]_[*@4 T][@(0.0.255) `&]_[*@3 b], [@(0.0.255) const]_[*@4 T][@(0.0.255) `&
]_[*@3 c])&]
[s2; Returns the max value of [%-*@3 a], [%-*@3 b] and [%-*@3 c].&]
[s3; &]
[s4;%- &]
[s5;:max`(const T`&`,const T`&`,const T`&`,const T`&`):%- [@(0.0.255) template]_<[@(0.0.255) c
lass]_[*@4 T]>_[@(0.0.255) const]_[*@4 T][@(0.0.255) `&]_[* max]([@(0.0.255) const]_[*@4 T][@(0.0.255) `&
]_[*@3 a], [@(0.0.255) const]_[*@4 T][@(0.0.255) `&]_[*@3 b], [@(0.0.255) const]_[*@4 T][@(0.0.255) `&
]_[*@3 c], [@(0.0.255) const]_[*@4 T][@(0.0.255) `&]_[*@3 d])&]
[s2; Returns the max value of [%-*@3 a], [%-*@3 b], [%-*@3 c] and [%-*@3 d].&]
[s3; &]
[s4;%- &]
[s5;:AngleAdd360`(T`,T`):%- [@(0.0.255) template]_<[@(0.0.255) class]_[*@4 T]>_[*@4 T]_[* Angle
Add360]([*@4 T]_[*@3 ang], [*@4 T]_[*@3 val])&]
[s2; Adds [%-*@3 val] to [%-*@3 ang] taking care that result is between
0 and 365º.&]
[s3; &]
[s4;%- &]
[s5;:Distance`(const T`&`,const T`&`,const T`&`,const T`&`):%- [@(0.0.255) template]_<[@(0.0.255) c
lass]_[*@4 T]>_[@(0.0.255) const]_[*@4 T]_[* Distance]([@(0.0.255) const]_[*@4 T][@(0.0.255) `&
]_[*@3 x1], [@(0.0.255) const]_[*@4 T][@(0.0.255) `&]_[*@3 y1], [@(0.0.255) const]_[*@4 T][@(0.0.255) `&
]_[*@3 x2], [@(0.0.255) const]_[*@4 T][@(0.0.255) `&]_[*@3 y2])&]
[s2; Returns the euclidean distance between ([%-*@3 x1], [%-*@3 y1])
and ([%-*@3 x2], [%-*@3 y2]).&]
[s3; &]
[s4;%- &]
[s5;:Distance`(const T`&`,const T`&`,const T`&`,const T`&`,const T`&`,const T`&`):%- [@(0.0.255) t
emplate]_<[@(0.0.255) class]_[*@4 T]>_[@(0.0.255) const]_[*@4 T]_[* Distance]([@(0.0.255) con
st]_[*@4 T][@(0.0.255) `&]_[*@3 x1], [@(0.0.255) const]_[*@4 T][@(0.0.255) `&]_[*@3 y1],
[@(0.0.255) const]_[*@4 T][@(0.0.255) `&]_[*@3 z1], [@(0.0.255) const]_[*@4 T][@(0.0.255) `&]_[*@3 x
2], [@(0.0.255) const]_[*@4 T][@(0.0.255) `&]_[*@3 y2], [@(0.0.255) const]_[*@4 T][@(0.0.255) `&
]_[*@3 z2])&]
[s2; Returns the euclidean distance between ([%-*@3 x1], [%-*@3 y1] [%-*@3 z1]),
and ([%-*@3 x2], [%-*@3 y2], [%-*@3 z2]).&]
[s3; &]
[s4;%- &]
[s5;:Angle`(const T`&`,const T`&`,const T`&`,const T`&`):%- [@(0.0.255) template]_<[@(0.0.255) c
lass]_[*@4 T]>_[@(0.0.255) const]_[@(0.0.255) double]_[* Angle]([@(0.0.255) const]_[*@4 T][@(0.0.255) `&
]_[*@3 x1], [@(0.0.255) const]_[*@4 T][@(0.0.255) `&]_[*@3 y1], [@(0.0.255) const]_[*@4 T][@(0.0.255) `&
]_[*@3 x2], [@(0.0.255) const]_[*@4 T][@(0.0.255) `&]_[*@3 y2])&]
[s2; Returns the angle between ([%-*@3 x1], [%-*@3 y1]) and ([%-*@3 x2],
[%-*@3 y2]).&]
[s3; &]
[s4;%- &]
[s5;:Odd`(int`):%- [@(0.0.255) bool]_[* Odd]([@(0.0.255) int]_[*@3 val])&]
[s2; Returns true if [%-*@3 val ]is odd.&]
[s3; &]
@ -1575,7 +1660,7 @@ and Color [%-*@3 color].&]
[s2;l0;:RandomColor`(`):%- [_^Color^ Color]_[* RandomColor]()&]
[s2; Returns a random color.&]
[s3; &]
[s4;%- &]
[s4; &]
[s5;:GetRect`(const Image`&`,const Rect`&`):%- [_^Image^ Image]_[* GetRect]([@(0.0.255) con
st]_[_^Image^ Image][@(0.0.255) `&]_[*@3 orig], [@(0.0.255) const]_[_^Rect^ Rect]_`&[*@3 r])&]
[s2; Returns a subimage delimited by Rect [%-*@3 r] taken from [%-*@3 orig].&]

View file

@ -1,353 +1,354 @@
TITLE("Functions4U. Reference")
COMPRESSED
120,156,212,187,249,87,226,89,150,47,250,175,184,170,111,215,203,236,206,138,142,49,199,190,119,85,117,13,221,181,110,117,87,175,202,234,245,126,168,142,170,48,35,204,76,187,34,194,184,106,84,85,222,126,221,139,81,230,73,16,16,69,64,38,113,96,80,20,68,148,25,4,7,192,17,81,70,149,193,129,65,20,153,121,223,47,56,70,132,145,67,119,223,245,94,174,92,1,126,191,123,239,179,207,222,251,236,243,217,251,28,126,115,183,225,191,253,183,219,239,221,254,179,219,95,243,223,199,63,105,250,188,241,229,211,246,135,191,105,190,127,255,195,79,26,239,62,248,228,247,255,243,151,31,125,2,242,223,1,248,239,125,112,231,222,135,15,238,221,185,127,247,125,224,159,59,247,238,220,125,112,247,222,253,59,31,222,253,232,254,135,247,238,125,120,251,227,199,79,27,219,218,30,254,230,233,221,15,63,172,49,221,5,152,238,126,240,224,238,157,15,238,127,120,255,195,59,247,62,248,240,46,192,123,247,246,237,187,183,63,184,251,224,206,253,123,31,222,125,240,241,147,166,182,199,15,
127,115,27,32,191,7,144,127,244,254,189,143,110,223,185,125,251,131,59,119,110,223,187,251,193,237,123,15,238,223,185,115,239,46,32,226,238,7,119,239,220,126,240,113,211,243,39,15,127,243,119,239,127,2,50,220,7,39,245,224,125,64,245,247,1,105,247,239,223,6,164,131,108,247,239,221,185,119,251,238,189,7,119,62,122,240,254,199,159,53,125,209,252,252,77,83,122,240,181,83,250,224,246,199,205,237,77,207,206,102,212,120,255,147,191,248,225,131,79,238,0,172,239,191,247,254,159,125,0,12,123,255,1,48,216,71,224,140,238,1,108,119,239,190,255,224,163,59,15,238,3,42,221,191,125,247,227,214,166,255,245,178,185,181,233,89,211,243,246,51,9,205,119,238,220,189,243,201,103,119,62,248,4,80,225,223,255,253,223,111,221,185,127,187,110,169,15,0,93,238,220,6,244,190,123,7,120,6,204,227,131,59,15,62,186,253,209,131,15,239,124,120,251,222,7,247,239,62,248,0,152,250,139,198,214,198,103,103,51,249,236,254,221,79,206,230,241,225,123,31,254,217,251,119,222,7,
44,122,251,67,64,255,7,31,1,2,110,3,147,0,62,1,67,62,0,254,191,247,225,199,237,103,204,32,31,200,244,209,123,31,253,25,96,164,123,15,110,127,240,209,237,15,238,127,240,224,62,48,147,187,119,222,191,3,24,242,54,56,127,192,13,31,63,111,105,125,214,248,244,225,111,254,245,119,255,246,231,63,253,135,31,252,211,167,13,191,105,248,215,127,189,3,198,202,15,223,1,220,114,235,254,221,91,183,223,109,248,77,219,237,79,26,126,243,23,63,252,224,147,251,13,63,123,249,252,113,123,115,203,243,182,251,255,116,171,225,87,77,159,55,181,54,61,127,220,244,240,225,191,253,219,247,31,130,116,127,241,195,123,0,85,253,123,195,47,154,219,218,27,90,62,111,248,252,156,169,161,249,121,195,139,198,199,191,111,252,162,233,214,25,13,240,113,49,230,157,243,161,26,126,245,242,249,243,230,231,95,52,124,222,252,180,169,173,161,241,249,147,134,199,45,207,158,1,159,109,231,67,221,255,228,207,127,80,27,231,193,39,31,255,162,17,24,224,203,159,1,180,143,222,121,12,
12,211,222,240,248,203,198,214,71,127,241,232,221,143,1,162,223,252,240,157,219,183,110,223,2,44,247,110,195,103,45,45,79,31,254,14,24,224,146,229,225,59,87,9,106,236,0,197,213,71,128,172,135,191,123,244,23,128,5,238,213,20,122,248,46,56,238,221,79,26,126,249,162,9,152,83,251,151,77,181,199,13,191,249,243,31,156,147,52,60,252,99,115,251,151,181,87,141,79,154,30,191,108,108,111,122,210,240,162,181,229,11,192,73,13,79,154,62,111,126,14,252,13,24,3,36,248,229,167,13,159,125,5,62,4,215,230,21,179,0,31,181,168,106,248,205,95,53,252,244,79,141,207,94,60,109,250,248,225,43,207,47,167,241,206,163,239,61,254,248,209,63,63,250,231,191,255,170,161,237,69,107,83,227,147,182,47,155,154,218,111,181,255,169,253,209,247,222,189,213,240,243,246,134,63,54,63,125,218,208,2,232,124,62,216,133,70,239,60,109,254,125,83,195,23,77,79,154,1,127,181,54,60,111,105,111,122,209,248,228,221,134,218,36,158,180,60,126,9,6,121,195,163,239,189,73,
246,173,154,78,247,206,85,190,193,161,160,138,13,127,7,56,240,41,224,214,75,31,158,123,16,124,253,227,198,246,87,220,247,222,55,116,230,25,247,119,240,228,123,13,223,134,165,241,5,96,188,39,63,187,26,2,63,170,61,2,66,180,189,230,75,224,59,24,240,87,34,225,97,237,57,32,185,29,48,97,91,109,53,92,137,149,43,18,111,93,231,170,57,235,179,166,134,103,45,79,154,63,111,6,162,5,92,4,175,113,129,113,6,208,1,89,168,17,136,38,48,22,26,159,3,110,188,117,53,76,126,213,212,254,178,21,140,211,214,151,77,96,204,61,110,108,107,2,245,104,123,249,248,113,83,91,219,173,43,238,187,186,168,64,241,159,182,183,214,39,248,31,112,204,133,140,255,114,247,180,181,183,126,91,191,180,55,253,169,253,252,41,200,254,173,13,119,213,98,63,186,112,203,63,52,62,187,72,69,192,252,129,144,127,244,253,87,140,246,38,19,254,238,183,117,226,223,158,49,213,108,120,93,234,155,141,248,26,227,85,162,71,223,7,229,0,19,124,209,216,254,229,157,111,105,83,
144,231,238,119,224,185,119,225,137,95,128,169,229,250,36,222,1,66,228,101,123,195,191,180,52,215,146,124,251,151,173,77,77,53,174,182,91,13,55,68,227,223,54,181,255,19,32,163,245,103,45,79,159,52,181,190,49,205,191,209,122,215,249,190,101,8,214,120,106,86,63,159,204,69,72,0,177,243,28,120,1,134,67,45,255,215,72,27,90,254,0,252,115,30,100,151,220,55,45,177,175,155,209,155,150,212,127,218,108,222,28,229,181,233,180,2,95,128,165,243,117,179,2,247,148,39,45,192,254,12,236,23,192,88,77,143,127,15,242,191,78,216,208,244,39,0,8,188,53,209,252,170,169,241,233,213,69,243,245,142,189,202,245,237,12,1,6,218,27,29,10,108,108,79,47,188,122,54,141,26,241,173,119,158,0,64,239,113,123,75,235,87,224,246,8,166,143,179,189,177,198,214,252,197,151,237,13,79,155,218,219,1,51,129,57,162,13,36,122,244,189,71,223,187,98,142,186,156,11,107,213,44,114,147,65,128,152,253,7,32,47,189,49,48,190,113,218,184,38,228,187,68,202,183,92,244,
64,105,112,62,216,185,109,127,12,176,52,3,15,192,53,126,45,42,26,30,54,130,225,5,64,86,16,86,156,71,217,133,173,174,136,122,175,1,64,36,173,87,124,116,70,252,242,249,147,87,99,178,225,97,251,151,64,182,7,3,247,105,91,203,185,240,55,74,189,117,166,224,207,0,63,53,157,33,171,235,6,3,208,212,95,125,217,2,196,227,247,222,107,56,251,250,87,47,219,154,90,255,234,28,12,181,1,160,234,66,177,171,20,0,32,186,193,173,63,6,226,171,189,169,46,255,39,77,77,47,190,241,146,127,149,241,219,121,19,8,221,135,239,130,240,253,253,134,159,252,244,31,127,245,211,31,255,232,215,63,253,201,195,115,23,213,68,183,157,155,240,204,84,32,203,123,13,143,193,119,160,239,154,1,236,210,250,12,0,135,0,233,25,101,27,24,218,207,155,192,109,176,177,245,171,107,187,230,167,47,129,4,213,214,244,4,128,44,0,172,253,113,11,144,76,192,117,218,252,191,155,254,17,88,3,239,188,251,150,44,240,227,150,103,160,219,190,29,216,0,180,187,4,129,117,1,
223,62,31,124,183,109,241,50,208,107,195,182,157,149,43,87,150,252,157,135,87,113,91,157,171,190,199,1,108,63,191,8,237,143,235,79,154,239,60,184,253,201,47,1,192,252,232,7,119,47,83,49,32,25,4,234,159,61,109,122,214,86,131,239,160,79,128,200,5,113,120,173,70,106,109,121,118,81,132,180,221,122,77,212,29,80,212,89,33,5,136,2,224,100,173,106,107,127,149,242,21,58,160,186,109,124,122,115,206,126,254,164,158,108,126,254,252,13,117,215,123,215,160,207,123,128,139,222,191,127,145,172,106,127,253,182,161,246,113,230,185,235,194,254,211,128,226,155,18,35,192,1,130,62,144,227,117,85,64,31,181,180,221,6,100,255,119,96,192,123,13,183,47,92,252,105,83,99,235,227,47,65,20,120,13,67,126,14,248,161,173,253,106,134,171,9,175,251,228,179,175,128,245,2,200,107,6,107,223,139,24,0,229,191,33,4,26,254,83,66,224,170,114,55,68,194,53,61,155,235,219,209,231,45,64,66,125,117,114,175,242,255,232,121,221,80,13,127,104,124,90,3,196,79,154,31,
215,19,4,56,114,109,178,127,172,105,251,234,8,53,233,111,217,236,126,114,190,185,254,162,233,249,23,237,95,222,128,1,206,124,5,224,159,71,31,127,124,25,60,175,243,127,235,244,88,103,190,17,231,181,1,169,11,180,13,56,195,182,115,192,215,246,242,25,248,181,17,40,190,106,245,28,72,212,118,125,91,186,46,249,45,243,255,142,211,254,46,179,5,117,5,204,245,246,185,94,47,148,206,201,175,38,249,139,152,248,249,231,224,6,93,7,139,0,237,181,237,186,25,40,119,65,121,95,203,88,219,81,94,219,233,191,171,217,95,211,249,222,185,181,175,154,253,34,102,126,220,242,226,171,239,88,221,94,147,241,237,55,229,111,183,227,60,111,250,227,63,62,109,124,220,116,101,211,121,241,213,27,246,109,192,100,143,159,190,172,101,133,115,43,213,27,104,231,27,119,123,203,57,249,133,200,255,140,118,193,167,77,237,192,54,255,228,151,207,159,190,102,78,208,96,111,49,227,21,206,239,0,228,223,123,163,80,224,109,235,185,204,203,20,222,126,109,111,110,120,248,78,45,134,64,68,
95,179,205,187,13,0,44,5,217,26,90,0,62,240,249,31,91,155,193,20,14,160,159,230,118,176,131,247,164,9,44,99,107,201,183,222,187,171,167,194,150,207,207,196,94,14,122,205,164,63,127,14,84,193,207,95,254,169,198,82,147,214,214,86,107,135,130,121,189,173,169,189,182,141,128,224,241,189,134,47,90,91,94,190,168,249,171,5,76,253,231,219,121,195,15,254,159,255,34,191,92,253,247,255,184,143,192,57,223,252,182,102,139,155,95,215,13,116,163,123,31,158,255,241,29,252,12,248,227,156,249,92,197,250,159,117,247,60,188,130,233,206,180,56,239,219,126,75,63,93,164,163,38,160,126,188,2,241,255,239,230,167,79,30,55,182,62,105,251,198,69,194,141,18,190,67,181,80,183,40,56,210,159,255,249,153,224,43,201,164,158,109,31,158,147,3,223,0,170,179,68,84,43,193,30,3,112,24,176,235,89,223,243,73,29,254,0,150,248,227,185,74,103,57,170,222,2,191,16,116,235,225,119,78,67,151,193,14,162,180,58,32,61,7,159,175,126,254,168,181,181,241,171,71,127,125,
246,231,255,120,244,253,139,173,182,246,230,183,13,181,143,135,127,253,58,122,252,31,245,149,112,62,4,96,216,27,0,230,89,118,191,225,45,104,147,159,157,129,214,175,69,168,95,175,211,163,239,215,88,154,90,91,91,90,193,3,151,215,246,245,198,231,117,118,208,122,117,174,182,90,63,186,241,188,251,118,118,124,1,118,62,218,234,109,141,207,95,2,222,174,229,200,243,254,214,21,207,191,97,207,185,234,246,154,128,75,191,191,83,251,251,194,245,239,158,243,93,88,161,150,236,206,4,212,148,2,188,13,182,13,94,235,207,214,140,114,158,15,207,158,93,206,250,156,187,14,30,106,207,223,146,19,191,54,76,254,63,26,19,96,97,2,118,150,254,255,229,227,122,194,252,118,62,126,213,109,183,63,249,248,23,45,141,53,113,143,126,247,105,227,231,151,174,123,75,19,236,58,199,205,206,249,252,188,187,126,177,153,128,93,64,96,151,56,23,240,206,21,112,89,39,172,117,176,1,200,250,199,150,214,223,215,206,53,255,17,40,244,254,84,219,201,207,48,215,203,246,150,103,64,125,244,
24,200,156,95,53,124,209,244,188,169,181,118,10,248,217,87,103,167,126,111,58,234,251,167,71,127,249,232,47,47,71,125,247,202,209,233,139,214,102,64,54,128,222,158,182,212,139,190,11,167,2,85,65,11,128,163,235,51,2,32,68,83,253,204,227,105,173,62,184,234,93,144,251,73,243,179,166,231,32,250,168,61,173,243,212,93,83,59,73,58,103,6,201,111,53,252,250,75,0,161,159,213,136,0,212,105,174,237,140,224,129,229,229,116,254,208,220,218,254,178,241,124,111,168,23,128,23,227,157,169,80,135,245,87,231,14,10,189,221,240,206,231,151,13,184,55,133,223,95,1,53,239,99,208,182,53,244,116,173,107,125,221,179,128,161,254,229,37,176,75,94,213,254,172,112,120,195,216,47,159,183,55,63,189,164,107,186,40,78,47,234,132,171,77,169,95,183,252,186,181,177,237,203,191,105,126,254,117,123,241,31,90,154,159,92,180,162,46,217,254,3,221,233,250,222,219,118,237,200,176,222,73,6,102,211,118,6,69,129,32,4,252,10,78,167,54,98,3,48,228,77,137,239,92,37,160,
122,252,49,80,148,183,63,122,231,230,174,204,171,180,15,223,121,227,33,200,203,103,159,213,155,183,224,77,138,182,134,119,46,11,142,243,250,183,185,9,200,8,79,91,30,215,194,229,236,204,251,85,77,223,80,161,157,143,255,227,167,64,118,189,80,244,77,230,190,70,121,166,230,109,80,205,103,45,127,0,117,121,90,119,246,119,84,208,36,254,38,231,219,103,11,233,98,185,190,126,196,253,235,214,230,103,175,157,9,190,37,119,129,244,255,145,211,190,182,235,39,112,160,184,191,105,1,27,176,103,149,118,221,56,79,155,62,111,175,25,163,126,138,209,246,2,168,7,219,174,116,130,0,100,219,240,105,253,33,88,172,128,161,10,48,1,2,223,107,120,244,127,1,255,131,31,143,254,185,253,252,203,115,240,203,173,91,55,198,95,203,239,155,158,3,37,251,77,103,163,151,127,3,113,248,53,230,57,19,245,13,77,116,14,147,192,67,222,111,218,44,60,99,105,7,71,122,133,169,214,116,62,123,255,162,229,210,212,96,43,243,108,97,128,187,90,141,245,170,53,129,209,27,106,23,150,
158,95,180,237,46,251,130,151,87,0,234,67,214,219,35,87,83,244,37,198,169,11,126,210,4,164,178,207,155,193,115,39,208,49,111,174,227,47,211,124,109,60,32,222,129,241,129,140,125,101,224,243,4,2,74,105,104,252,188,189,150,130,193,150,96,125,28,176,58,189,200,153,103,71,233,87,196,130,71,1,45,175,205,245,114,14,245,254,223,181,241,128,167,47,95,60,169,45,184,179,161,107,246,186,50,254,69,222,174,15,114,83,68,253,170,233,15,224,105,3,104,247,111,22,84,55,158,31,92,145,244,31,91,118,223,48,188,222,200,221,222,82,27,255,13,193,86,199,41,128,3,223,208,156,6,121,174,173,217,171,222,185,112,71,77,242,149,232,187,210,238,5,227,226,33,240,119,107,221,6,128,195,129,237,247,28,106,127,218,252,172,249,105,99,13,122,128,34,206,14,239,219,106,152,247,90,243,249,181,200,184,241,244,0,188,119,214,254,139,22,192,43,239,60,109,121,59,132,187,164,189,238,21,144,239,204,42,141,111,108,101,130,4,231,219,211,249,189,153,134,135,128,59,128,41,214,
19,253,21,212,116,115,165,0,98,216,182,95,183,156,5,209,59,79,90,94,126,6,160,142,171,253,146,55,170,253,10,227,117,221,235,66,206,3,166,78,121,115,159,227,73,211,227,230,103,141,79,219,206,28,127,73,243,57,240,240,106,63,176,54,179,90,45,208,248,12,220,177,175,52,114,207,7,105,184,50,103,16,203,1,166,5,109,1,32,221,191,251,187,143,255,254,239,63,254,244,211,203,70,198,207,47,184,207,53,0,98,164,253,188,118,111,187,124,10,4,206,153,252,75,222,90,111,183,229,69,237,244,163,134,59,235,99,2,246,168,83,222,120,14,248,10,221,43,40,255,141,70,124,85,246,205,56,255,234,13,161,75,123,189,178,82,0,162,134,135,111,180,77,221,122,23,153,233,210,202,103,211,191,245,182,249,95,15,136,27,231,255,119,127,255,233,101,180,129,9,171,150,181,222,251,166,113,119,133,253,122,204,93,38,145,47,91,94,190,186,7,94,190,124,214,252,234,86,247,237,130,245,229,115,176,237,255,240,173,145,122,81,180,158,27,254,74,165,122,230,131,115,29,235,127,61,
3,219,68,87,122,110,103,90,220,224,165,235,173,215,139,32,62,211,172,249,172,165,4,166,136,250,163,119,192,193,218,222,3,71,1,254,61,147,253,238,197,5,188,23,141,173,237,231,105,13,44,79,223,234,228,179,64,4,188,240,206,187,87,235,187,55,69,56,64,116,217,126,168,227,157,243,143,51,111,127,255,45,160,247,138,148,183,52,29,94,2,69,218,91,160,203,77,161,112,246,250,230,96,56,71,83,103,225,112,238,217,159,215,32,202,155,151,85,77,151,183,44,44,176,118,251,54,222,127,248,54,71,92,89,6,175,172,180,115,47,252,13,88,29,94,174,180,151,245,51,234,175,93,95,215,216,106,134,127,121,86,57,189,188,122,138,92,171,61,223,107,120,120,229,253,171,139,228,155,37,238,122,17,251,176,150,120,218,190,108,105,61,135,51,183,94,141,236,26,166,2,35,251,61,48,82,191,170,135,47,120,81,20,216,185,107,183,123,1,43,222,185,123,239,214,253,134,255,249,217,205,169,23,168,90,155,111,188,133,5,190,250,109,195,163,143,63,6,191,156,7,97,157,227,219,213,
184,109,175,180,152,107,5,202,195,111,44,225,166,97,129,196,253,242,113,29,107,213,85,173,31,154,214,8,223,136,182,94,5,90,223,64,239,247,106,224,167,190,5,128,193,93,175,33,159,126,5,184,7,28,231,70,28,1,106,252,19,0,239,222,96,90,240,85,205,180,224,151,75,211,214,254,250,63,111,218,215,135,189,193,180,53,194,255,3,166,5,199,121,59,152,252,73,45,49,253,232,9,216,6,186,68,105,103,159,95,11,47,175,114,191,5,170,189,58,169,107,47,91,193,155,215,175,237,113,215,1,232,147,135,87,80,119,141,225,42,34,189,214,197,107,107,169,151,124,0,226,250,178,177,237,202,69,195,203,142,203,19,160,144,107,191,94,244,213,26,118,231,77,8,32,83,182,130,53,62,32,23,72,29,127,60,227,172,225,181,47,90,27,95,124,217,208,248,167,230,182,203,179,198,134,166,167,181,31,179,180,213,7,62,251,121,203,5,55,168,1,144,138,155,159,189,124,118,166,201,255,122,217,8,84,133,237,95,93,234,82,175,5,26,207,12,115,115,205,6,246,30,126,244,248,113,
237,30,221,55,104,227,94,99,248,102,232,238,220,254,87,49,221,229,79,50,106,146,0,139,131,33,216,248,184,29,52,74,219,203,207,218,128,201,188,4,31,95,16,62,107,1,150,42,144,68,91,91,254,4,64,221,250,166,245,184,185,249,10,223,171,96,3,228,186,168,176,207,238,132,214,138,221,23,77,173,224,17,214,123,245,2,12,220,30,255,8,84,89,103,135,31,77,103,155,218,21,142,167,45,127,60,231,168,95,124,184,84,239,243,230,214,182,139,11,167,231,48,229,98,132,87,69,158,19,92,8,188,166,242,143,158,95,90,227,226,10,235,115,144,254,53,131,180,60,175,157,161,182,181,60,107,186,201,0,87,46,84,54,60,250,158,9,217,250,229,203,182,6,19,19,80,23,16,98,162,0,154,153,52,13,143,91,77,3,128,136,207,90,77,83,79,77,146,38,240,154,108,91,195,213,186,12,96,253,81,99,141,245,151,77,117,214,127,0,56,95,130,23,18,107,124,47,159,54,1,92,55,54,14,127,222,246,143,224,2,120,217,8,174,129,71,239,252,177,150,106,111,62,56,189,70,
94,11,174,26,199,111,27,254,88,79,80,245,243,153,215,75,204,179,235,210,231,71,29,53,100,217,216,240,226,82,214,165,145,110,110,114,254,170,233,5,120,3,227,107,143,161,222,184,40,106,172,111,95,14,55,31,39,125,126,214,103,184,225,117,235,153,244,87,174,138,215,30,182,189,218,209,170,133,202,181,107,190,181,86,67,45,106,206,147,221,153,188,243,219,114,96,231,191,214,152,109,126,118,121,99,178,206,118,70,81,199,46,55,158,225,189,102,185,154,155,223,187,226,236,255,144,213,94,219,167,174,25,237,205,111,175,217,236,238,205,230,170,117,185,190,222,82,53,178,183,216,169,222,44,123,221,74,55,247,168,95,0,21,59,120,84,83,191,9,244,166,95,210,253,109,83,251,175,155,158,189,56,191,122,254,53,23,204,47,73,47,15,7,254,182,169,189,190,91,157,255,198,172,29,32,58,59,220,57,59,214,1,79,48,174,47,137,27,85,254,251,198,218,73,229,141,77,245,79,155,191,0,150,248,175,95,95,222,224,168,79,107,88,234,175,175,121,171,246,11,86,208,93,247,27,126,
13,30,222,190,161,17,8,202,4,226,163,78,242,74,135,233,12,85,93,191,50,247,197,115,112,7,172,223,99,104,252,248,236,106,245,229,181,203,191,188,122,237,178,241,225,45,48,221,213,111,133,254,161,233,21,218,219,215,40,107,135,100,175,74,251,193,157,215,104,158,55,125,209,8,10,187,105,169,252,8,200,172,141,95,52,129,118,122,239,63,96,170,11,131,52,156,9,124,205,72,239,53,92,123,240,217,27,251,114,141,117,230,43,53,78,227,181,75,210,159,221,120,85,242,151,79,158,212,91,34,55,39,115,128,228,166,182,199,31,26,159,126,93,18,7,72,106,105,188,229,201,141,215,85,127,250,135,166,231,95,167,4,72,243,159,160,69,19,32,230,198,236,7,182,212,223,162,203,69,83,251,156,238,219,232,115,85,143,86,80,192,101,151,190,134,50,106,154,93,224,208,86,240,162,103,211,211,207,193,25,212,175,116,190,77,241,95,183,252,170,241,201,5,64,127,91,83,175,70,249,22,48,14,160,231,167,175,227,237,243,144,2,95,214,90,218,79,154,190,104,109,106,186,10,48,128,
169,180,54,62,105,110,124,126,195,37,34,160,254,105,250,226,27,170,8,80,126,51,21,95,61,149,121,77,207,51,149,174,235,121,166,252,21,61,223,144,35,255,22,196,242,224,53,131,55,37,202,171,87,246,219,127,254,252,103,173,87,127,153,8,158,196,253,238,209,95,255,186,118,11,234,189,55,61,252,206,201,226,119,191,253,21,80,188,61,250,221,111,27,234,159,15,255,250,74,34,105,184,212,229,198,163,150,154,26,191,61,83,231,10,247,89,231,233,243,26,243,141,71,45,95,195,221,242,217,191,0,90,221,240,35,176,199,237,117,175,0,78,105,172,105,15,122,226,243,90,231,187,118,103,229,226,208,164,246,219,182,43,183,238,235,82,27,30,130,191,197,189,122,243,166,177,237,5,248,188,21,68,133,215,47,125,252,247,134,31,254,16,40,44,190,104,250,248,222,221,247,63,252,254,221,219,247,62,128,192,113,48,43,20,114,254,95,14,213,123,48,141,58,13,111,20,59,165,229,234,230,86,156,20,143,39,6,143,29,249,201,36,129,187,51,125,74,103,66,143,102,103,33,250,92,36,
137,212,218,151,51,226,238,4,35,194,49,25,68,202,169,226,76,92,50,24,117,219,10,235,82,68,10,102,20,244,177,41,69,219,150,112,107,150,42,90,96,41,233,241,37,129,29,248,182,193,82,214,190,237,128,15,129,111,157,246,218,235,248,92,253,53,107,184,254,90,52,90,127,109,63,123,189,36,172,191,254,47,151,227,183,23,225,27,213,188,161,170,212,149,243,197,74,213,147,151,214,222,39,179,83,163,28,131,158,36,74,150,50,139,254,176,190,198,87,209,103,245,164,201,67,12,58,190,68,16,216,139,129,109,29,39,98,208,210,24,133,184,109,65,172,170,24,50,211,211,155,235,252,192,244,177,203,105,245,87,99,27,254,194,238,80,109,216,67,148,42,155,129,228,226,86,217,105,62,35,86,229,166,32,177,28,29,225,156,89,39,85,39,83,75,187,186,226,233,146,163,166,230,234,73,95,33,82,93,153,170,108,250,54,181,39,123,78,206,200,190,184,156,157,83,85,231,226,54,142,150,25,95,58,4,196,101,183,139,10,170,169,20,133,132,57,133,217,110,29,134,198,129,135,133,27,
54,50,40,0,31,215,77,4,198,184,149,229,10,175,130,71,71,57,71,238,218,52,203,18,143,128,11,106,226,95,240,142,101,101,4,52,155,209,183,179,177,206,93,152,4,95,43,179,164,99,168,113,218,186,47,28,215,101,225,83,165,220,164,159,83,88,93,22,231,108,208,229,244,177,193,95,216,22,126,83,123,175,130,15,9,11,137,206,241,206,218,3,167,147,181,69,26,92,96,9,128,119,254,81,59,58,91,99,203,118,206,218,173,181,64,225,43,25,243,163,70,150,18,180,250,244,78,39,229,204,94,66,49,21,95,155,15,45,46,235,222,65,40,227,84,224,121,209,46,224,215,253,233,157,35,139,186,121,160,124,123,77,106,124,137,93,147,106,183,30,213,195,143,49,91,147,26,95,218,175,73,93,18,236,213,164,82,241,152,154,212,184,108,183,38,117,73,80,151,42,176,99,106,82,69,221,130,154,84,64,104,77,170,192,110,171,73,157,165,246,214,164,206,143,30,213,164,10,166,189,53,169,118,170,166,38,149,44,234,175,73,237,222,233,174,73,181,23,55,0,169,254,45,111,52,170,
29,158,200,175,216,96,145,117,93,108,124,56,175,41,172,149,166,135,42,51,227,84,61,68,34,87,83,118,130,132,77,227,242,20,5,89,45,51,237,148,222,13,130,131,200,130,105,242,206,229,77,218,80,250,72,16,50,42,55,116,9,189,1,137,201,70,77,59,246,109,218,80,71,220,235,211,102,176,123,221,221,211,135,236,229,216,218,225,64,57,161,204,216,55,113,83,123,28,47,122,254,32,131,12,41,24,135,138,93,21,60,215,57,61,163,230,28,111,143,80,214,14,210,171,98,120,206,27,42,237,114,189,19,58,6,219,143,33,117,108,192,185,110,220,222,145,96,72,57,213,179,161,180,101,215,73,97,35,42,141,68,149,99,243,137,92,105,44,161,150,135,146,254,147,248,16,35,72,58,142,173,206,4,146,113,230,105,140,174,205,107,44,178,210,154,188,151,184,30,197,146,118,87,16,242,36,122,175,107,117,154,174,9,158,196,86,166,164,131,163,232,189,77,82,182,199,133,128,247,12,24,198,6,16,19,172,81,196,134,105,45,74,53,235,88,74,126,199,132,220,88,10,172,150,69,122,
34,7,221,39,180,229,9,199,206,0,102,205,187,169,31,30,82,73,185,26,70,121,144,107,26,213,138,5,150,36,45,129,9,58,114,156,82,112,171,67,231,91,31,179,69,80,81,182,28,137,130,207,243,40,251,177,131,49,141,86,193,238,222,34,206,159,30,234,123,122,217,155,184,170,161,138,221,133,123,188,90,119,201,68,145,247,9,162,42,159,196,231,244,70,108,11,7,197,209,108,53,187,173,231,76,227,119,72,176,72,116,144,104,50,18,83,161,238,177,163,108,231,194,228,226,118,84,156,206,36,195,12,35,71,139,22,73,77,184,248,220,108,118,48,155,181,17,28,188,78,134,202,142,154,219,92,233,194,74,5,90,105,98,91,160,170,16,247,236,69,49,11,97,222,92,101,33,106,255,69,149,129,49,187,85,203,27,26,119,22,145,116,50,209,178,51,232,46,162,245,100,136,51,168,193,31,34,108,99,35,188,56,204,92,72,67,142,178,42,205,1,145,37,51,236,47,106,54,69,62,252,194,242,44,186,195,8,31,90,230,165,29,4,72,140,199,154,89,237,118,115,187,19,43,155,91,
146,144,123,179,103,58,12,95,195,111,152,70,151,55,41,169,138,30,29,114,117,206,193,209,92,83,188,224,134,41,143,32,185,109,230,152,5,130,229,118,243,216,242,173,14,205,112,47,201,186,70,220,30,8,35,144,91,145,181,142,197,97,229,240,65,7,9,235,87,108,163,12,203,82,180,20,167,36,115,201,80,108,110,93,167,128,193,210,6,46,175,184,220,117,220,75,9,250,246,6,198,120,20,196,252,128,56,120,140,38,110,24,5,41,141,220,29,218,193,244,201,119,250,149,57,60,63,150,230,119,137,233,50,145,83,4,215,150,250,69,107,112,188,84,109,69,80,120,179,85,106,174,243,40,180,145,220,210,89,3,71,28,124,21,170,76,133,32,156,114,110,109,143,137,150,79,247,176,199,135,41,148,224,242,36,90,134,229,24,55,217,30,221,98,233,64,221,25,1,178,46,125,106,124,219,158,204,143,233,205,8,40,204,166,142,66,16,150,35,177,128,49,224,198,30,141,209,208,184,190,13,132,222,4,113,145,23,87,252,22,12,17,147,113,17,9,253,161,240,196,73,62,218,51,163,89,
8,4,160,177,165,245,1,61,34,54,194,214,153,150,42,147,34,106,108,33,25,115,28,185,231,162,70,164,210,163,44,172,226,45,252,37,3,62,49,65,86,70,8,206,164,25,186,66,222,183,97,82,157,65,178,178,176,86,214,32,73,235,185,124,36,142,231,163,69,56,169,53,126,186,173,140,47,67,161,188,209,176,36,194,69,187,100,185,41,250,98,185,188,95,161,204,145,81,112,52,114,26,219,203,149,209,228,182,110,74,138,175,213,135,14,209,90,242,216,44,102,127,101,57,29,38,80,140,8,244,0,29,66,240,160,20,92,99,33,189,213,181,51,59,60,229,10,240,42,220,3,197,228,116,108,5,191,152,91,193,238,39,83,132,147,194,174,147,86,29,70,90,28,7,76,12,170,226,63,100,186,198,7,245,208,69,1,87,78,39,145,153,46,36,22,109,44,139,8,81,151,130,175,222,227,234,233,6,30,124,213,21,90,25,89,21,85,122,162,8,11,118,23,113,116,74,224,85,6,230,43,86,43,89,199,52,165,59,177,213,157,105,171,221,60,56,84,85,97,71,196,104,157,42,218,85,
181,138,115,91,69,201,17,34,184,5,157,161,197,125,104,45,155,138,203,241,204,235,196,104,136,109,83,229,77,221,69,101,175,96,68,186,34,218,155,154,46,179,232,105,24,90,151,97,206,195,104,139,254,254,168,52,54,217,35,152,237,231,86,66,72,33,162,80,226,10,98,75,28,141,31,79,134,197,231,92,17,41,214,5,129,154,18,26,104,159,73,41,144,37,16,89,134,52,49,186,62,112,16,35,12,154,152,193,233,19,218,233,172,87,231,19,240,197,126,135,222,180,135,216,239,136,103,233,94,61,254,48,197,101,91,135,67,233,5,50,90,147,130,152,221,176,172,214,154,163,231,134,32,125,105,11,14,207,156,62,92,90,226,201,51,142,173,28,127,10,198,53,170,146,138,73,236,240,50,25,142,158,196,246,20,251,17,176,209,112,175,174,99,22,50,71,158,178,122,122,237,11,235,123,115,162,17,101,220,225,69,51,140,220,177,49,232,144,199,101,233,160,250,24,144,112,252,152,59,65,218,16,205,230,86,34,177,217,222,3,95,6,114,58,88,21,101,92,195,110,102,124,114,33,225,62,
25,225,64,83,212,105,231,14,143,204,196,58,7,32,92,46,154,148,72,45,197,132,70,37,98,69,41,103,67,198,39,182,123,140,252,158,188,114,62,22,70,107,248,27,84,52,199,88,166,87,144,43,246,50,169,235,96,85,56,17,238,39,211,156,88,19,156,87,57,241,147,16,54,227,48,211,6,3,86,23,217,20,163,175,163,185,169,45,72,8,182,128,82,203,7,81,163,40,218,84,120,135,75,65,160,245,8,44,146,138,216,36,197,74,186,126,132,190,75,14,73,167,8,54,44,185,223,49,33,89,180,242,76,66,61,220,24,114,22,18,7,145,190,147,30,205,122,214,26,27,209,153,118,151,252,38,96,199,48,123,176,80,222,218,146,79,77,15,102,51,142,206,126,52,185,139,76,54,112,225,168,110,29,129,98,222,201,50,113,116,48,64,249,187,204,164,87,201,51,56,71,149,176,196,198,76,212,48,236,162,118,80,160,72,74,8,178,17,70,116,241,229,165,1,136,94,47,135,132,224,72,151,193,126,176,237,45,38,3,12,232,220,148,56,184,48,186,180,137,192,123,92,70,47,153,98,
71,247,235,37,35,80,126,48,29,28,135,155,76,196,3,132,130,30,226,50,121,28,217,240,160,17,83,10,26,98,46,102,191,100,143,209,221,135,68,110,70,82,100,92,198,66,167,206,162,133,163,120,44,9,31,87,14,99,24,214,9,132,129,226,26,136,31,80,225,114,97,12,87,237,93,54,86,132,4,161,199,228,80,44,19,246,148,242,180,7,83,30,128,161,38,149,65,38,49,30,23,210,198,86,132,189,148,73,180,223,52,156,218,71,163,145,156,228,78,105,13,225,151,110,248,98,152,146,159,230,47,229,122,88,35,82,65,16,178,145,18,160,185,193,29,10,162,67,207,164,113,113,92,114,170,115,8,170,151,19,102,116,180,66,150,170,214,173,30,179,249,131,146,85,203,33,54,62,102,61,29,86,202,33,83,52,232,108,8,139,73,69,25,83,211,58,148,15,186,210,39,77,244,45,118,237,46,121,84,198,100,153,221,153,206,58,68,221,233,194,154,213,32,68,17,199,123,100,88,17,99,158,185,195,69,194,44,244,56,95,185,135,33,59,33,252,24,133,148,144,239,132,113,244,105,30,
180,64,21,13,235,237,170,133,157,188,55,170,29,25,235,91,136,108,56,157,112,88,98,90,184,153,50,122,103,162,28,75,64,71,92,221,75,49,34,84,230,62,118,216,149,240,194,247,87,200,99,204,12,219,126,168,138,168,20,229,152,61,127,104,210,119,43,176,24,8,138,28,166,12,242,131,126,8,38,117,226,164,110,6,77,138,73,248,225,70,113,81,25,83,115,39,173,72,184,8,118,82,53,249,157,12,26,177,127,112,214,58,78,228,148,138,59,236,120,210,54,209,55,139,203,163,71,120,149,213,49,252,18,115,84,11,71,71,79,38,7,96,51,253,34,185,154,181,178,129,37,241,251,29,144,114,55,14,59,182,183,16,12,113,246,177,67,40,140,253,100,27,237,144,123,60,59,71,124,28,79,15,113,185,245,93,211,58,33,130,162,215,157,32,105,232,93,233,60,63,170,142,160,232,102,200,145,42,77,95,130,148,231,103,242,185,226,152,101,18,216,178,77,121,104,34,189,25,216,52,250,182,2,91,142,25,136,52,217,39,77,118,233,182,124,213,201,10,121,68,211,111,232,98,156,6,
116,71,120,50,36,23,136,158,116,82,100,7,35,59,171,212,77,90,255,120,34,224,85,157,156,74,183,43,221,115,235,253,101,102,150,171,54,186,104,189,86,43,34,200,134,76,34,251,34,184,144,130,150,64,218,186,14,54,113,165,32,25,90,228,166,220,169,10,157,188,213,193,52,157,248,204,122,244,118,167,108,166,104,89,87,117,224,153,248,85,166,33,46,66,123,28,243,54,251,190,125,207,102,128,31,67,164,189,40,197,84,34,142,222,37,194,163,16,27,107,254,128,202,159,192,80,40,146,193,53,193,2,133,136,48,247,7,225,80,117,212,20,161,152,214,105,97,10,26,7,195,230,185,52,189,0,166,76,148,181,4,89,12,58,209,117,104,153,182,233,123,176,180,192,162,252,192,38,62,77,5,48,187,187,145,112,122,98,156,212,147,103,82,248,36,71,231,177,12,18,118,235,141,188,126,172,238,96,4,45,202,82,251,103,97,61,99,92,13,85,71,82,123,148,184,254,163,96,87,247,220,124,106,102,158,183,115,170,221,168,80,249,161,67,164,52,23,134,132,145,243,104,139,188,106,66,
89,194,83,74,158,126,46,8,93,132,66,113,250,85,122,96,11,90,172,22,8,75,133,92,193,164,41,231,58,58,52,252,170,61,144,100,232,32,51,152,16,129,86,40,231,11,167,187,155,190,174,245,36,96,212,233,146,175,76,132,205,169,2,186,113,95,41,95,56,73,173,122,119,17,8,115,213,75,165,224,115,11,251,44,104,84,72,148,78,159,16,79,71,93,80,110,240,196,23,53,174,177,71,224,17,60,187,64,54,239,105,228,114,41,147,10,221,136,15,137,248,162,220,0,31,202,8,21,252,51,171,243,41,56,7,133,202,197,161,214,121,46,75,148,8,208,143,128,56,134,5,93,169,0,218,132,159,235,241,251,199,171,92,137,156,28,198,44,38,80,81,197,24,81,15,67,168,11,35,122,134,44,134,100,111,81,66,25,170,139,137,92,135,68,76,155,167,187,138,237,29,38,128,159,151,122,204,216,29,244,192,26,27,147,66,156,4,251,12,81,34,121,206,187,186,60,58,216,35,76,230,176,137,201,254,180,52,150,241,136,179,97,108,255,176,205,206,176,208,92,227,246,137,211,45,194,
2,53,56,234,221,226,7,97,48,116,215,0,17,187,171,228,89,7,166,145,60,211,26,154,78,233,48,69,196,146,97,172,39,68,139,237,150,122,38,245,29,230,160,11,146,214,247,108,155,232,20,84,122,48,34,16,207,35,199,145,68,154,129,104,154,204,205,77,43,148,184,64,120,148,172,197,175,69,165,253,27,8,99,24,26,22,149,79,138,217,12,250,180,82,116,226,138,169,234,250,129,202,110,26,83,25,170,5,211,12,167,92,220,84,37,73,129,153,106,62,80,217,92,79,234,202,197,192,161,10,248,96,196,208,170,206,64,199,16,7,151,77,148,14,167,74,197,67,238,84,128,159,192,192,80,108,168,13,30,213,136,172,100,0,195,177,152,142,36,27,200,29,89,175,168,123,58,189,103,37,178,180,74,113,31,220,53,18,246,209,253,76,183,76,20,144,232,114,202,3,186,2,206,226,155,215,144,110,132,60,236,177,224,7,226,27,132,227,17,94,142,48,139,229,116,134,81,107,203,165,94,22,147,19,203,107,200,61,199,56,102,33,182,231,205,158,140,20,7,120,131,221,252,145,113,178,
195,0,137,110,3,150,15,22,82,187,197,25,197,140,30,153,236,152,219,226,90,182,236,234,168,96,206,102,88,26,75,29,101,241,162,209,112,145,121,28,246,8,230,253,98,251,56,223,220,185,58,184,160,207,192,76,139,209,124,78,178,43,136,192,172,42,36,156,176,184,227,171,24,231,41,70,40,1,109,133,170,112,253,232,85,60,3,216,63,184,21,4,134,210,31,67,207,242,56,61,218,197,74,47,140,105,180,116,76,147,39,250,55,136,120,134,153,43,25,196,208,195,176,32,145,54,28,131,42,232,57,20,130,81,86,196,180,152,232,182,181,23,154,119,242,37,174,249,169,69,89,255,202,134,6,158,34,10,183,117,243,171,190,141,19,118,39,75,196,149,34,103,82,75,120,116,111,238,100,123,30,237,89,42,9,163,78,198,12,142,59,195,136,109,250,73,131,44,95,181,76,36,117,64,41,104,45,146,202,203,204,151,73,105,220,90,178,108,5,204,217,1,100,98,152,102,77,59,212,123,130,203,178,25,251,158,84,156,17,76,137,181,201,253,16,219,89,50,41,121,187,71,61,225,125,134,
135,230,137,148,103,45,43,134,72,1,33,239,133,247,227,120,4,50,82,206,54,228,16,229,126,82,175,182,138,131,193,69,150,212,32,203,27,153,30,25,19,28,91,73,16,168,202,134,213,15,7,199,89,169,177,217,197,77,127,84,161,88,92,183,201,16,170,77,55,150,177,162,93,232,83,167,58,67,139,184,89,168,148,56,231,160,22,43,86,51,43,33,223,205,98,173,16,39,226,136,225,144,174,155,144,3,100,58,150,41,57,192,198,59,161,188,5,42,225,208,178,96,195,226,230,142,187,169,232,185,65,46,25,7,35,228,20,185,212,46,49,239,48,90,250,40,88,182,168,111,97,207,222,219,95,206,115,69,113,2,4,55,54,193,220,224,134,178,164,152,190,43,142,228,64,140,195,89,9,65,164,70,115,79,199,113,115,73,222,80,39,220,154,179,29,225,245,124,12,178,136,94,148,37,199,214,79,55,20,97,228,122,183,28,13,129,207,170,109,75,193,8,198,42,79,119,41,120,179,233,105,110,186,114,42,64,193,204,161,69,204,137,24,70,77,37,85,164,128,44,161,27,244,111,149,161,
40,84,20,15,213,10,115,165,222,245,233,105,25,66,80,78,42,77,118,244,186,28,73,246,107,233,233,62,47,10,239,26,11,163,103,168,125,85,36,66,51,111,8,87,72,211,148,249,65,186,66,225,63,24,213,88,199,246,229,19,40,149,108,74,206,48,89,38,123,115,99,199,221,33,247,156,91,93,157,70,243,16,230,44,101,100,108,111,195,107,98,59,133,125,82,50,17,47,69,111,143,202,138,22,210,9,26,186,6,33,69,98,50,215,214,17,79,29,12,246,174,173,105,181,251,126,159,46,29,94,115,196,242,18,204,30,12,193,8,17,240,80,10,18,69,75,141,73,247,252,166,114,104,220,196,193,67,170,179,252,99,242,100,79,38,166,36,47,210,225,186,5,151,110,57,223,165,35,168,79,45,166,109,250,192,230,32,13,115,116,18,91,92,200,164,58,246,36,220,160,34,81,178,185,231,214,98,204,99,220,184,136,103,234,155,64,76,133,87,21,155,182,245,67,94,52,26,213,169,196,85,124,100,220,235,145,141,113,77,124,189,107,98,53,180,197,156,143,118,199,32,189,61,10,99,98,
174,23,137,28,37,226,249,71,125,17,151,185,179,155,34,242,73,200,148,121,141,47,93,89,65,26,112,232,97,105,98,204,198,80,39,7,138,25,14,122,89,158,62,225,142,186,41,170,0,82,114,180,228,160,147,194,182,100,62,144,86,245,97,39,83,24,137,192,130,103,141,210,70,33,204,17,8,46,165,165,108,117,11,113,105,194,146,80,87,113,238,39,201,74,213,152,157,141,174,78,140,47,22,187,186,243,122,8,58,139,12,250,17,195,213,178,181,107,171,107,15,142,103,26,209,48,212,178,87,222,143,36,109,111,24,143,32,194,83,167,60,72,199,239,23,61,189,240,116,6,26,80,146,4,104,190,193,193,129,97,209,34,71,65,145,59,84,13,231,43,39,184,156,252,240,56,87,29,201,108,173,193,251,112,136,28,98,137,199,70,219,123,153,51,59,20,115,226,16,191,176,208,179,108,152,28,138,176,145,220,163,193,62,143,96,154,216,55,41,33,66,194,82,53,255,88,141,91,236,139,78,246,71,245,68,174,18,169,223,145,163,145,7,54,117,153,62,69,24,138,238,118,241,135,29,195,
158,109,93,166,168,199,169,247,146,174,104,23,73,203,135,192,92,84,199,32,139,73,52,142,79,103,160,122,138,38,163,137,227,247,151,131,59,167,214,85,181,25,235,192,15,110,230,40,167,102,130,101,92,8,219,208,187,33,83,5,101,113,107,200,178,6,237,199,20,51,26,180,76,226,205,69,20,172,216,202,152,100,57,200,220,220,219,167,49,123,122,70,243,203,197,153,146,84,71,74,149,181,219,92,130,177,71,151,90,238,165,12,238,184,41,29,242,116,127,166,83,136,69,118,194,38,166,229,71,233,2,43,43,27,230,73,204,254,149,197,153,197,174,88,2,39,18,10,149,20,159,73,165,86,23,153,128,98,41,57,121,220,103,62,66,116,204,119,105,79,59,32,253,220,18,115,114,166,80,51,188,114,211,142,174,14,142,143,228,48,202,189,64,10,206,214,72,233,6,33,127,59,185,117,128,57,30,9,67,21,208,117,130,75,142,28,155,95,89,137,242,161,54,225,236,84,70,28,59,26,89,164,197,143,213,152,3,178,68,92,238,82,123,123,152,91,104,3,93,233,30,195,10,208,100,171,
36,152,198,208,113,48,154,57,69,168,216,147,228,163,99,253,24,131,191,150,130,32,214,52,202,162,172,43,228,180,142,176,229,52,121,87,159,0,67,193,110,226,122,119,66,62,156,32,56,159,53,59,87,77,83,51,59,9,97,105,31,19,232,181,14,72,23,1,251,99,167,17,129,236,190,146,16,27,243,243,188,157,115,40,52,46,101,33,200,34,167,225,224,36,71,82,114,69,104,177,232,184,204,21,202,141,145,97,68,239,24,209,209,29,158,48,242,76,136,85,17,7,186,58,44,66,48,212,243,59,228,45,166,197,27,154,19,121,92,185,124,14,233,220,29,71,40,122,134,156,176,46,4,217,207,93,244,78,226,118,6,120,60,131,201,232,235,217,240,166,5,167,211,221,97,178,114,154,16,37,15,204,64,14,125,110,60,215,18,60,220,225,246,87,253,172,145,46,93,50,11,19,21,18,203,97,241,16,196,178,60,230,160,152,205,118,20,124,211,182,233,207,168,102,33,40,202,212,86,120,17,3,4,41,186,23,22,31,74,84,247,58,137,65,190,22,5,54,57,236,197,237,36,21,159,139,
110,20,251,253,156,149,116,175,231,4,14,211,48,40,212,233,125,102,216,1,161,194,147,99,219,50,251,1,102,121,79,125,202,69,207,66,161,200,132,68,61,189,152,218,195,120,133,58,75,84,191,96,28,237,230,168,140,29,250,60,28,102,230,14,186,169,162,21,55,117,123,123,35,226,221,28,74,199,228,194,66,37,88,152,233,46,237,28,241,58,123,120,188,10,171,148,240,30,153,58,61,199,161,101,181,99,154,16,180,218,19,206,222,8,114,76,143,246,20,10,122,234,113,108,200,212,115,98,113,38,250,143,215,84,52,232,12,204,163,223,129,42,198,44,51,58,220,140,219,1,147,245,120,51,100,17,45,101,149,115,213,35,130,181,57,90,38,230,130,133,199,226,16,34,30,173,80,148,59,186,212,220,152,216,137,24,236,180,224,230,145,139,44,157,33,147,176,69,49,56,106,112,7,10,213,66,79,186,14,213,146,189,46,100,82,47,139,119,119,217,226,250,10,244,52,28,144,246,167,152,108,106,140,187,76,136,8,132,41,79,191,230,160,144,27,43,206,64,59,76,92,132,154,60,98,92,
67,34,138,125,240,101,129,17,86,60,137,167,179,18,152,128,91,229,187,246,160,104,220,38,68,96,159,196,158,110,14,236,184,3,139,46,56,97,120,138,60,154,164,187,200,93,65,11,138,200,73,164,182,227,115,91,72,52,177,207,60,110,145,216,217,182,76,65,3,22,39,217,172,168,179,59,237,28,245,29,65,166,199,5,43,138,1,172,49,130,233,36,142,46,202,43,59,40,43,62,105,209,195,117,80,148,129,64,169,140,85,52,24,242,88,113,116,74,40,142,239,219,29,93,221,59,33,131,68,156,154,12,90,59,12,203,94,190,41,226,77,233,36,43,211,44,4,82,143,224,110,115,187,215,227,204,153,89,20,69,100,66,47,30,123,199,230,50,208,14,182,72,163,27,75,44,5,89,251,30,12,121,39,102,200,229,198,71,97,251,195,48,4,58,136,245,209,213,243,67,126,160,68,100,168,130,41,130,90,233,65,106,130,221,212,25,173,6,202,68,114,7,179,88,11,21,199,159,69,51,21,198,131,141,73,7,103,201,131,197,199,32,130,65,160,222,61,140,1,187,221,0,116,159,177,103,
9,207,90,160,20,232,118,144,38,130,197,12,59,56,125,39,140,96,131,17,246,119,109,118,170,41,198,86,66,35,193,37,129,103,104,88,2,197,7,81,122,187,70,58,200,91,152,51,152,119,84,66,115,144,126,178,188,189,166,244,116,137,134,136,97,61,44,129,89,46,12,24,232,197,24,198,125,42,88,80,194,133,201,76,153,134,181,13,80,34,219,199,235,43,86,251,54,107,42,62,160,81,99,37,75,50,124,47,134,153,30,231,177,76,219,167,184,193,160,45,215,117,196,51,150,119,231,124,253,140,48,41,42,245,228,237,52,167,58,51,213,63,185,157,234,102,128,197,246,82,133,49,12,96,16,167,188,124,196,128,156,32,40,21,152,213,224,90,226,104,39,213,121,184,157,61,144,115,167,212,66,61,122,43,198,114,176,163,185,49,237,198,108,215,201,146,64,50,26,222,133,168,18,164,133,164,133,199,130,184,32,161,32,127,5,231,30,49,123,229,64,193,145,72,237,85,85,65,71,178,171,210,9,113,29,83,58,196,34,56,202,126,178,7,129,205,167,121,147,240,173,217,13,163,54,94,
214,110,142,172,77,234,61,62,97,169,19,187,136,246,247,218,113,43,93,97,74,106,40,48,234,68,175,176,11,233,227,28,107,157,17,13,2,122,34,136,199,218,128,124,45,171,38,146,146,232,65,168,200,182,178,162,135,14,114,245,236,109,69,175,204,136,149,51,145,110,239,30,204,196,75,165,123,116,131,3,201,189,85,165,149,182,196,115,97,89,232,156,8,130,220,18,236,152,185,254,213,53,13,20,85,156,217,80,168,57,33,159,99,87,187,154,155,141,143,99,241,11,107,252,254,82,134,133,153,10,230,105,56,193,240,233,190,154,239,52,79,231,246,105,196,146,56,61,31,217,224,117,34,97,251,6,117,50,72,226,161,214,119,215,68,179,153,109,36,134,15,199,65,225,3,96,93,206,101,106,166,208,145,67,168,125,165,194,157,178,21,246,57,64,86,14,224,236,214,177,18,169,71,182,205,217,22,35,116,16,202,86,151,199,101,141,206,152,45,232,84,34,40,207,70,124,34,57,11,59,46,129,120,250,21,82,254,0,181,143,172,15,115,211,58,98,162,74,195,97,169,34,174,153,239,65,
172,70,97,168,110,234,220,182,130,185,101,84,186,40,202,29,77,138,167,220,13,143,224,151,183,122,172,57,104,49,226,16,31,110,173,8,247,68,112,25,212,231,86,232,40,25,12,215,236,223,60,232,234,210,218,212,176,110,232,225,126,116,190,211,173,177,47,149,58,71,39,221,36,25,132,44,10,78,203,176,212,124,49,237,158,236,144,195,22,16,195,158,229,131,33,239,129,12,98,128,177,19,76,154,103,5,11,203,211,200,240,40,210,76,49,32,112,74,52,210,193,30,41,79,231,71,102,108,168,241,109,68,218,65,161,166,161,167,178,99,239,0,109,217,5,17,175,25,179,218,13,104,135,144,142,83,57,144,68,134,54,62,88,148,33,96,244,226,118,23,86,215,23,172,66,201,253,44,201,58,108,27,213,217,73,73,50,18,229,128,122,72,55,48,102,59,138,203,118,156,115,17,184,240,52,87,246,72,55,210,34,149,122,218,184,121,214,71,102,119,239,152,171,93,195,161,137,232,110,183,85,74,19,245,32,142,113,80,130,212,118,44,69,69,14,183,20,41,177,77,29,173,88,123,215,250,
39,156,86,215,166,129,80,206,200,79,250,224,70,220,161,106,100,107,122,169,123,108,12,41,237,11,27,97,104,26,215,207,244,196,245,137,28,124,165,98,101,66,149,155,20,251,33,5,54,21,60,42,247,12,81,114,131,220,249,21,137,51,98,117,139,156,100,70,175,214,18,16,245,102,108,177,158,157,125,124,209,152,90,236,21,65,13,35,188,209,21,92,145,230,204,178,3,216,189,142,104,184,68,79,144,93,152,48,122,138,46,24,221,4,242,204,208,212,110,71,44,30,22,96,4,16,198,84,174,32,8,42,102,229,16,146,28,134,8,65,204,221,17,20,198,98,68,12,72,18,125,142,172,64,191,79,220,165,97,118,104,157,33,72,34,98,32,17,125,249,17,200,172,48,62,68,68,22,170,216,14,179,166,19,238,205,166,68,65,246,132,107,109,126,116,166,50,177,16,147,11,36,49,110,199,218,228,54,90,235,203,45,174,118,84,118,109,230,209,129,180,253,104,88,36,157,20,201,92,228,217,73,155,152,163,11,194,86,15,55,243,250,48,95,225,28,10,172,171,11,71,7,254,238,227,189,
160,221,153,30,62,152,210,78,211,25,57,10,106,67,20,53,154,9,232,156,97,223,198,154,116,73,246,23,105,91,193,109,243,242,144,96,13,76,177,83,217,226,40,0,29,12,180,101,176,221,75,17,57,92,56,99,65,136,64,164,41,142,14,234,38,101,55,4,71,228,120,218,137,131,170,137,53,78,240,238,238,226,220,193,138,178,123,28,165,79,96,183,232,8,88,88,35,55,102,17,61,179,161,149,0,110,60,237,154,232,219,23,51,87,88,104,9,36,4,89,85,32,134,131,200,185,1,172,99,243,160,127,146,182,60,40,56,26,236,213,46,246,168,152,214,222,92,97,113,176,115,146,232,118,186,75,202,132,219,86,206,175,120,185,104,214,140,175,60,57,174,46,207,250,125,98,233,94,34,52,1,233,84,79,133,112,70,204,20,91,182,185,108,17,44,71,122,114,10,94,124,113,115,43,142,29,38,46,225,241,227,98,239,250,146,153,200,74,78,26,96,248,226,244,146,21,227,39,141,145,224,71,130,188,177,35,235,227,232,8,126,21,87,150,144,87,98,146,156,95,157,179,29,112,205,22,
164,125,8,23,216,163,199,139,20,218,212,209,246,138,126,146,32,28,214,102,138,51,196,78,206,34,132,234,117,207,96,246,148,28,177,72,175,30,17,109,199,61,56,138,62,32,143,58,59,57,182,67,113,106,175,76,99,87,168,73,97,223,106,36,142,117,67,33,101,154,15,70,142,192,71,168,167,157,162,94,76,159,98,17,110,14,202,37,199,46,57,124,139,43,64,198,119,23,189,121,133,79,146,169,193,6,95,247,34,16,211,180,56,52,237,66,83,189,75,177,141,57,23,2,61,56,68,242,40,58,36,167,123,110,152,83,181,51,68,11,102,243,59,50,181,121,32,148,17,41,216,218,24,218,57,154,14,141,107,83,234,160,89,239,30,97,123,21,44,166,117,237,136,70,17,25,249,187,208,180,156,137,114,162,103,18,114,99,206,106,23,56,123,51,144,217,10,61,195,59,177,204,78,237,197,70,33,9,173,79,107,239,11,136,164,242,137,9,54,127,130,183,98,230,196,134,92,229,117,220,12,175,183,152,183,237,238,239,123,114,100,213,33,28,121,10,71,163,68,48,96,189,246,120,2,146,
169,237,213,28,209,48,43,135,109,161,137,12,92,56,157,242,45,50,22,130,133,53,209,148,108,198,104,205,89,13,216,108,146,19,11,45,236,193,7,72,243,194,32,15,34,146,237,98,215,143,205,177,30,10,22,135,128,31,30,12,245,151,130,106,180,127,108,63,73,41,148,96,52,165,87,220,101,208,117,82,122,93,97,78,47,28,90,24,90,245,11,217,185,245,109,7,39,60,52,147,114,59,28,85,73,44,42,225,160,214,71,147,206,61,159,186,232,232,175,236,164,109,75,10,55,151,90,66,193,153,25,151,94,122,112,220,121,60,177,131,141,159,90,15,171,201,133,133,93,243,233,230,12,190,218,49,29,49,161,114,52,178,83,193,155,92,223,34,65,32,155,112,38,120,134,38,194,247,177,251,186,21,201,57,181,122,212,13,183,225,99,179,99,132,67,89,120,63,191,233,158,231,230,227,98,124,71,202,1,43,145,16,157,202,229,99,241,196,20,131,237,37,132,231,19,65,178,130,167,164,243,118,137,153,177,137,3,154,18,5,129,48,208,233,60,150,95,138,16,56,25,204,124,120,102,19,
215,57,117,60,18,239,17,158,178,59,242,122,94,158,151,176,218,24,59,75,187,236,37,67,239,80,80,56,166,85,161,49,131,90,42,146,9,1,234,14,87,48,13,161,246,229,22,132,83,88,1,100,18,19,100,216,120,93,221,70,25,50,145,134,167,183,22,51,249,97,30,253,112,83,220,157,102,47,167,133,50,127,122,78,37,238,22,230,185,84,151,113,215,208,89,93,165,39,13,59,135,153,161,67,70,192,108,222,88,50,163,83,195,142,3,166,147,34,59,156,14,84,69,148,84,182,120,140,192,237,10,133,156,174,32,139,113,48,40,211,247,75,32,65,246,254,40,102,53,130,74,48,189,51,196,140,211,239,21,154,152,251,105,58,100,220,172,49,147,246,145,187,3,51,71,189,129,76,220,60,105,19,32,109,99,20,72,206,143,52,192,28,138,144,17,235,223,35,170,18,4,168,95,202,57,97,25,2,140,184,46,153,60,28,181,85,119,187,211,44,78,178,159,162,157,94,99,15,229,73,187,43,43,66,244,148,33,79,216,76,45,42,134,197,169,16,206,57,197,146,111,241,67,166,101,71,
120,127,59,222,167,42,51,103,251,70,16,25,127,206,130,94,115,230,14,230,67,182,148,22,169,39,166,140,162,212,148,209,150,70,178,72,216,180,202,200,95,52,102,28,244,62,81,10,27,220,95,236,47,77,114,92,80,235,134,45,151,129,161,194,232,181,73,130,231,68,150,216,95,45,122,16,60,118,130,66,60,237,11,40,242,61,75,200,197,133,227,44,100,182,255,52,99,210,243,16,174,14,125,100,119,89,16,114,114,83,134,232,33,109,146,63,67,28,9,135,141,98,121,40,19,113,174,31,122,133,83,18,254,216,176,105,108,158,60,82,242,122,120,100,40,191,179,83,204,26,114,91,57,48,116,255,48,18,215,59,236,41,197,122,41,59,193,178,63,195,22,29,244,33,14,149,9,114,198,118,234,163,176,163,216,216,38,101,75,75,60,232,237,67,169,216,20,246,250,230,124,199,212,76,202,180,193,91,53,66,3,75,75,5,71,167,74,221,79,143,206,247,21,58,229,154,206,61,233,238,236,112,167,14,130,70,200,33,136,209,254,69,188,39,171,193,70,73,251,20,115,143,91,203,95,25,
164,147,71,29,171,144,185,40,194,66,38,86,251,226,25,204,80,65,181,26,132,42,71,250,135,160,177,96,38,186,35,229,136,2,99,211,227,28,203,92,145,177,99,222,175,160,119,124,251,80,35,146,51,184,85,100,175,242,209,98,25,150,192,52,105,21,39,137,81,146,115,205,20,212,119,229,230,167,70,228,167,113,143,201,11,213,101,122,205,50,70,2,195,70,117,238,209,205,104,198,30,121,89,109,146,79,14,18,182,205,10,209,104,135,158,39,81,119,145,59,79,187,93,19,234,48,180,31,22,131,147,144,33,184,94,139,70,224,194,130,13,7,146,192,219,14,26,216,71,203,84,206,124,74,63,237,220,86,103,156,166,208,220,174,171,200,26,135,232,166,113,46,51,165,55,17,214,243,213,104,34,205,236,34,58,122,145,196,126,216,38,122,178,67,124,60,27,73,27,86,164,229,232,10,70,84,33,167,15,117,70,248,58,65,219,157,234,145,46,80,17,46,196,193,164,177,199,54,19,88,128,47,47,148,169,153,106,34,93,200,134,246,68,165,242,201,190,94,27,245,206,104,142,146,108,107,
86,235,198,76,59,247,72,68,124,42,133,236,14,42,118,177,137,13,162,73,4,15,88,23,221,174,61,60,76,54,129,152,30,20,211,150,92,222,144,221,236,213,25,56,186,116,132,102,217,25,89,235,130,179,70,189,27,244,46,132,133,194,119,76,85,143,114,62,100,149,27,77,238,219,78,135,120,112,132,57,233,87,249,189,36,108,113,125,59,15,26,19,176,165,199,136,92,61,97,122,120,102,255,174,95,65,10,71,116,60,58,220,209,235,232,30,25,52,235,11,244,88,106,96,118,89,66,154,181,9,224,227,67,164,211,3,136,85,239,154,98,107,128,202,84,199,10,101,131,137,97,173,30,78,140,218,249,18,58,180,139,216,57,143,194,49,244,92,216,6,3,6,163,178,230,246,48,234,97,166,7,155,37,153,28,202,133,30,37,147,176,50,42,133,16,137,1,221,110,113,113,76,164,10,170,60,163,199,89,220,138,150,134,224,185,135,187,66,35,84,24,153,40,236,82,80,7,236,174,201,172,132,200,234,227,195,33,8,20,141,178,103,181,219,29,146,29,205,234,242,178,238,136,94,234,143,
10,185,208,24,4,43,139,67,196,193,157,172,207,167,71,113,55,42,154,82,104,202,239,153,232,25,86,79,13,137,230,140,216,184,62,146,62,137,196,203,150,137,240,216,193,212,169,47,20,159,18,71,78,69,135,51,98,165,38,137,14,42,78,208,157,10,78,97,61,235,28,158,207,202,86,41,254,73,244,194,209,52,107,57,186,229,45,116,140,107,187,44,93,82,52,174,103,15,198,26,228,143,77,204,3,21,62,199,186,138,129,141,206,16,233,71,248,9,206,174,202,19,141,154,166,118,248,211,167,126,206,160,110,92,114,52,167,15,148,252,135,35,229,152,255,160,79,17,38,17,113,235,146,18,185,56,62,150,216,144,246,12,204,16,92,156,238,126,131,43,73,36,145,177,34,43,51,109,158,99,237,98,49,64,250,36,206,45,140,78,157,228,51,8,96,113,73,183,86,162,171,252,44,186,180,12,225,97,229,80,247,1,132,132,239,115,28,194,39,29,197,92,106,178,176,141,199,236,15,29,210,124,240,211,80,8,149,83,230,78,200,179,17,13,101,42,20,20,116,234,13,99,93,16,183,120,
21,43,241,153,161,48,98,160,75,83,138,106,118,74,203,226,206,82,113,145,127,130,158,115,40,133,210,45,139,194,200,208,51,34,66,172,49,151,202,10,144,73,132,21,126,72,91,67,178,78,57,0,114,233,18,237,100,251,150,67,184,33,63,110,216,152,227,65,8,57,232,28,59,201,99,169,179,27,122,249,200,116,114,225,48,169,233,239,65,205,80,23,198,39,15,38,70,70,186,25,147,140,117,122,36,42,18,65,196,86,155,173,163,163,131,216,129,234,16,71,25,107,133,5,186,175,152,238,51,113,183,79,145,164,105,5,95,90,61,114,113,52,199,209,158,236,180,125,159,151,60,225,21,99,217,195,140,125,15,23,240,232,124,89,139,133,149,50,84,249,140,193,97,98,223,124,9,62,49,141,69,15,35,36,180,2,214,183,187,166,23,144,169,41,62,183,131,156,183,230,56,8,4,82,183,210,7,213,200,230,243,174,196,233,97,242,240,192,134,59,168,106,21,42,65,197,82,45,23,23,72,60,69,192,197,149,245,158,10,146,33,36,202,14,129,23,68,48,166,67,139,9,107,160,54,0,
158,109,76,167,209,92,50,57,56,74,12,13,248,250,168,80,85,223,118,100,82,63,162,95,238,63,194,243,176,144,16,102,123,2,51,204,15,174,45,142,117,152,124,241,5,55,207,130,113,242,35,27,57,94,9,166,222,238,99,165,24,64,6,179,145,55,134,250,252,169,76,53,61,183,141,31,63,230,31,36,56,202,144,105,125,218,136,150,153,209,34,46,156,36,34,83,204,236,45,11,89,153,238,130,134,156,188,105,153,7,191,38,73,45,143,241,15,144,16,143,128,135,90,12,207,239,96,146,225,133,129,147,0,69,233,113,171,12,147,203,244,221,46,216,90,62,108,94,214,135,6,186,80,1,150,114,95,69,76,246,154,39,136,240,211,200,52,117,117,223,31,54,176,242,145,68,5,171,119,201,39,180,19,43,83,174,194,118,108,66,185,239,101,141,159,28,142,192,167,125,203,83,219,252,253,57,92,207,218,212,190,244,176,26,244,156,216,119,136,189,125,86,162,118,208,35,247,4,38,89,190,73,63,147,213,205,236,13,76,108,140,30,108,16,75,83,153,190,29,226,110,81,101,94,176,142,
28,31,246,167,184,108,79,200,212,229,28,79,31,106,236,130,174,69,196,218,106,175,113,104,113,120,107,56,125,116,56,96,26,231,17,230,37,234,109,179,176,131,228,26,80,208,34,84,108,63,166,195,22,211,155,178,134,244,202,126,37,32,40,107,249,64,114,46,31,84,71,133,248,220,2,41,237,98,161,43,131,2,163,104,207,131,166,152,66,52,68,76,95,210,28,108,207,240,37,190,226,108,105,102,34,9,239,146,84,251,160,198,46,187,196,182,33,152,35,167,121,157,106,10,65,199,95,145,118,119,109,201,204,148,173,25,214,90,34,98,57,168,78,110,81,247,153,154,163,77,249,250,160,51,42,137,5,18,184,217,52,153,12,197,168,15,143,245,88,167,218,236,52,235,153,48,86,42,123,42,61,86,34,87,195,225,61,55,103,135,37,203,167,149,131,8,182,57,167,207,160,184,30,129,61,136,141,107,4,209,21,137,207,65,128,157,238,140,178,93,125,190,212,18,126,144,123,212,221,159,236,219,162,78,229,145,170,35,111,120,253,128,102,25,96,230,9,64,14,204,57,112,203,48,211,200,
198,62,36,68,149,199,133,82,187,56,171,149,216,15,163,158,163,224,248,238,161,134,174,202,70,232,137,53,177,72,108,67,21,80,168,2,30,238,99,151,161,133,136,105,110,97,223,167,183,148,45,105,211,46,166,135,55,153,149,143,157,100,161,234,98,185,114,180,191,61,185,27,76,158,122,66,90,175,54,221,167,54,77,45,154,92,163,241,98,41,236,229,15,236,51,123,89,236,141,202,232,72,114,114,98,43,125,60,114,10,195,197,28,137,220,26,20,25,49,178,168,88,220,218,202,72,101,113,46,57,204,207,133,221,120,228,113,215,97,169,203,79,129,34,250,7,215,101,201,208,8,101,192,182,15,53,28,115,11,74,143,105,96,189,52,99,156,45,230,139,251,186,194,190,167,15,22,38,57,208,83,235,37,50,74,101,244,98,8,49,229,96,236,96,206,142,132,237,193,16,49,166,97,194,194,43,121,180,104,195,8,155,207,61,240,15,195,150,225,203,4,145,140,191,19,135,34,205,139,243,180,45,123,192,111,220,29,24,135,172,16,82,69,85,130,140,118,68,187,33,146,148,205,139,26,63,
233,223,193,48,86,39,243,202,1,43,49,65,28,224,116,90,51,169,18,25,45,205,87,122,58,172,244,45,95,159,47,0,227,207,30,57,66,44,133,1,34,205,169,103,170,71,124,132,139,162,69,44,179,119,173,142,99,125,154,94,18,133,41,145,153,147,124,49,198,103,83,167,58,220,11,24,182,185,63,131,198,152,163,97,62,30,178,110,66,33,41,228,225,147,234,76,49,63,68,181,31,88,201,204,197,165,211,253,197,21,47,47,200,146,157,80,105,24,59,207,218,73,135,81,240,232,97,24,204,120,176,177,0,103,31,44,136,211,251,188,211,195,34,36,150,46,23,247,178,233,220,193,49,194,229,226,15,57,84,19,43,241,30,199,166,103,127,102,156,86,89,58,97,164,157,64,162,80,185,142,202,238,192,113,87,18,117,194,154,139,162,188,11,99,90,83,118,174,211,52,83,236,60,222,81,171,211,135,236,84,1,76,98,154,169,181,158,57,44,254,240,144,47,165,46,207,245,100,113,99,180,240,36,102,35,181,194,58,209,69,32,198,78,19,244,160,203,6,43,235,114,37,39,146,239,41,
133,14,42,104,238,196,250,192,134,101,76,156,29,24,220,232,44,101,199,66,228,60,5,110,131,14,153,135,53,225,125,100,20,42,156,28,18,246,227,156,116,199,28,58,26,231,66,171,233,169,113,85,150,79,26,94,128,133,117,161,237,169,49,10,67,9,245,18,230,197,253,102,15,76,17,236,132,161,122,67,145,120,66,183,160,9,146,70,122,67,168,202,234,94,210,1,153,13,41,180,69,152,185,116,160,225,119,79,185,85,44,232,220,38,170,75,167,62,45,73,185,118,140,80,159,235,157,196,30,37,208,125,108,228,108,204,160,112,211,54,241,26,132,165,135,48,215,151,18,149,136,14,19,156,19,8,158,192,3,62,58,94,39,64,82,211,121,174,113,26,218,111,56,65,71,16,136,46,169,74,105,59,217,234,222,16,211,245,208,93,213,86,215,80,175,215,177,205,197,44,239,251,147,172,41,53,166,79,195,65,41,208,30,49,154,4,51,161,74,162,85,103,164,162,26,92,157,181,47,97,76,216,45,33,188,224,53,172,12,198,23,40,48,216,146,25,63,187,65,59,94,70,175,133,8,198,
14,34,85,71,63,93,148,159,204,146,244,199,30,249,161,115,100,56,67,196,47,224,143,79,179,142,236,196,233,196,202,201,202,54,99,98,141,49,222,165,27,31,146,20,230,44,83,186,24,148,237,168,116,64,0,195,250,118,167,12,145,206,100,119,159,117,85,177,189,198,9,199,178,133,222,252,161,50,127,184,160,156,146,107,196,158,128,44,153,24,24,33,20,44,1,175,114,116,134,63,174,204,7,39,49,94,236,98,56,178,85,22,248,59,198,250,224,100,183,201,168,36,144,153,148,96,170,59,65,29,22,51,131,233,174,241,204,44,74,205,15,197,201,189,161,172,80,158,115,107,201,54,193,4,231,96,107,172,223,171,148,48,41,146,51,188,89,46,28,56,129,117,52,139,30,2,214,145,248,192,205,153,153,157,159,218,194,13,250,220,241,72,26,62,168,55,105,251,217,120,88,202,48,111,179,133,179,165,110,207,97,47,156,91,178,227,180,92,21,45,5,157,146,192,230,54,163,113,188,123,254,4,129,51,143,99,200,28,21,113,157,205,65,100,182,120,107,195,221,75,26,252,222,84,7,199,
50,233,236,116,160,41,219,60,65,87,199,174,44,145,89,221,38,105,23,135,33,90,74,88,185,123,58,149,92,8,36,7,142,83,21,49,195,5,69,17,131,43,172,252,129,108,161,56,44,45,177,37,67,70,179,80,156,230,199,137,1,117,204,79,230,100,195,65,248,106,223,72,130,184,68,95,86,238,162,153,180,129,1,12,159,176,78,134,178,215,112,66,121,127,207,184,20,102,20,194,96,9,220,198,38,203,107,37,210,167,20,113,116,15,9,64,155,69,41,50,147,56,174,46,21,98,59,7,122,125,41,232,100,24,60,110,129,122,127,56,57,146,223,90,33,85,120,210,92,114,149,179,91,217,170,12,193,250,15,2,140,234,102,42,47,43,152,6,79,77,35,194,101,235,186,198,98,152,88,222,89,47,123,143,171,165,156,222,92,158,229,66,44,46,239,74,110,201,231,45,135,156,26,18,189,35,164,176,195,204,164,121,60,68,223,199,21,17,13,168,157,193,14,178,183,223,202,37,82,168,195,121,136,37,51,76,96,209,137,226,109,28,42,23,88,28,29,141,239,81,182,240,92,154,111,89,
178,62,170,96,45,122,118,211,16,243,132,119,46,20,169,148,43,52,170,113,139,174,159,142,156,90,188,155,206,205,205,162,59,122,224,13,192,41,178,60,15,38,49,173,11,173,137,206,200,42,109,63,181,2,155,166,119,37,151,9,236,65,36,139,79,39,165,172,112,4,9,65,95,239,36,45,112,182,67,170,195,244,10,180,71,194,31,196,112,7,7,196,50,4,146,15,84,236,195,56,158,70,228,15,14,132,224,157,86,151,57,174,138,228,112,3,222,5,22,212,192,30,157,56,74,155,105,28,225,166,141,48,126,132,119,237,231,40,206,110,40,51,151,237,41,239,65,99,41,97,177,51,35,99,219,77,38,0,77,245,26,6,224,12,41,28,222,189,207,178,166,144,251,120,8,55,60,64,51,65,236,38,63,101,198,131,132,209,150,34,43,161,180,65,142,193,162,9,206,101,67,220,132,22,186,5,48,116,16,166,63,200,88,76,236,221,45,45,230,176,183,176,94,57,144,90,22,224,241,221,42,193,29,207,67,67,238,13,169,116,91,44,93,93,95,90,90,95,219,92,242,164,171,138,137,157,
117,7,169,170,198,28,15,148,119,3,115,197,74,182,58,23,40,75,56,138,29,89,199,30,201,148,31,17,82,59,6,187,19,85,141,5,26,233,246,71,32,33,147,105,125,238,112,46,183,96,49,109,136,189,253,4,221,90,165,144,100,47,236,156,152,248,212,185,30,148,153,206,64,146,60,105,136,99,93,8,49,186,33,104,36,236,8,190,20,243,148,100,120,140,122,16,57,108,243,4,87,195,93,139,14,189,4,190,105,70,106,70,118,70,118,150,156,88,40,15,91,176,135,138,195,87,246,27,85,127,217,13,214,193,199,253,42,174,223,141,150,205,108,56,84,226,200,26,182,15,67,72,177,186,182,53,177,145,98,111,32,21,78,203,55,33,8,134,36,237,57,232,205,154,102,197,176,48,215,209,13,43,229,96,196,142,25,219,34,45,14,161,196,28,33,59,108,111,13,45,192,156,30,83,184,114,212,238,184,198,104,141,111,56,72,78,163,219,65,176,80,231,250,77,29,54,138,210,77,95,50,161,101,129,21,104,47,123,116,253,20,210,209,27,182,83,119,177,91,176,18,205,168,22,116,236,
56,3,137,60,149,33,214,163,60,24,139,91,173,226,168,225,122,205,64,44,183,181,239,159,114,153,113,36,51,62,55,214,95,34,76,208,82,6,30,141,183,56,182,39,41,240,113,174,224,137,121,30,213,83,89,245,69,251,119,171,64,36,105,38,198,228,234,81,141,31,206,131,72,9,163,244,234,33,161,107,97,117,142,179,239,8,172,87,10,137,253,184,172,234,62,154,211,233,24,149,35,241,82,96,161,186,114,146,214,109,58,164,213,195,225,178,122,107,109,81,35,149,49,39,214,156,212,147,181,69,214,16,202,139,153,35,156,88,22,118,57,57,150,163,50,82,45,173,187,189,206,234,132,114,156,196,157,159,151,29,114,122,124,94,140,194,105,151,136,204,161,24,126,28,110,92,205,12,174,198,163,202,227,94,15,207,216,199,206,157,18,217,57,229,106,199,66,159,95,28,28,206,25,17,227,48,215,234,222,184,78,182,84,241,87,129,58,174,50,91,113,157,212,112,215,198,4,62,190,87,28,63,17,171,252,20,33,127,148,101,93,158,134,17,137,57,13,31,18,33,123,24,178,146,117,147,
71,40,217,123,179,178,137,126,71,216,55,175,45,44,155,186,58,99,70,49,167,63,184,176,48,195,178,6,69,49,117,191,206,34,18,117,207,135,169,78,220,92,231,150,147,129,233,131,133,204,188,32,130,128,9,207,15,68,199,37,201,153,160,120,102,168,67,123,146,26,159,59,70,83,56,190,33,180,154,204,167,29,164,176,66,122,95,140,191,68,208,195,69,12,35,111,114,186,74,167,103,60,172,244,98,148,128,152,151,138,121,12,178,155,59,232,192,144,205,144,126,135,221,227,217,69,112,83,91,233,165,158,61,188,151,8,239,65,245,248,79,124,209,206,221,36,43,177,160,25,151,107,71,83,51,147,114,181,199,183,202,147,36,147,137,164,244,176,123,100,40,57,92,90,89,246,149,246,243,40,93,169,82,220,228,232,133,186,202,228,126,169,92,93,171,84,132,252,145,163,242,122,217,157,74,20,227,8,222,145,102,104,162,48,35,75,136,134,34,28,1,127,84,37,89,89,47,248,86,252,39,146,145,163,173,229,57,139,173,111,177,28,200,205,135,151,136,212,120,58,232,216,51,246,153,177,
152,12,134,221,71,16,98,55,187,170,35,62,134,106,138,118,20,177,27,55,4,142,176,80,66,49,27,240,242,161,33,135,108,143,216,235,218,240,22,23,101,249,50,37,153,205,100,215,42,199,201,113,15,135,1,38,160,93,172,133,21,225,137,39,42,240,209,65,95,113,85,100,62,12,43,55,12,167,200,97,194,94,112,236,4,11,47,70,14,142,59,189,118,162,210,55,198,230,113,231,101,138,181,193,173,1,255,9,54,174,138,234,93,57,214,152,159,186,203,219,34,89,123,80,22,243,118,145,202,234,204,74,202,133,78,150,209,182,221,45,218,224,172,9,227,149,249,173,252,33,99,101,215,234,219,57,232,232,71,234,71,12,246,131,45,138,157,93,69,58,137,177,21,56,92,177,25,200,240,69,177,73,245,86,156,212,119,88,24,221,239,233,195,231,82,65,88,116,194,133,159,236,79,9,35,226,60,123,54,28,29,164,25,161,184,53,241,128,57,15,17,19,72,19,118,219,194,174,210,187,130,77,196,243,70,171,61,178,237,234,80,248,224,199,30,69,98,36,52,188,17,161,175,89,197,1,
17,170,3,85,40,76,149,167,240,135,154,181,194,68,213,58,24,241,46,21,142,10,164,46,139,142,54,83,213,205,217,116,37,73,44,73,168,186,11,9,221,144,206,89,30,225,29,148,109,11,85,113,194,26,166,16,71,171,246,69,71,119,130,133,228,84,10,147,125,94,140,9,186,234,218,204,59,183,237,165,117,83,183,130,183,229,58,112,77,186,214,85,147,242,238,137,131,140,9,23,56,29,9,113,132,75,161,141,141,5,116,7,47,55,231,117,163,99,93,130,69,131,203,142,246,78,163,40,50,21,109,16,102,20,23,134,55,114,25,41,194,8,61,92,20,250,224,198,218,126,80,172,237,7,156,81,178,174,159,239,207,152,180,41,252,174,219,0,44,30,156,83,157,233,64,229,220,120,241,146,27,227,165,134,55,131,9,179,30,213,53,101,203,184,187,145,186,25,24,147,185,211,109,103,155,51,21,109,103,39,113,145,61,212,5,143,175,72,172,199,107,157,70,61,172,31,29,92,226,244,226,185,254,160,150,156,207,204,179,105,243,2,46,189,155,22,213,234,32,125,39,1,11,85,26,162,
148,99,74,140,145,176,22,142,22,84,118,220,86,208,140,178,196,165,52,246,2,35,108,154,53,149,149,167,112,5,31,142,235,180,161,120,99,189,69,87,239,180,81,199,233,64,113,66,8,165,150,211,203,208,108,235,161,84,7,95,46,245,167,69,12,182,49,63,162,70,136,228,52,171,11,142,54,106,6,8,70,81,76,48,170,54,29,75,16,43,101,32,22,132,225,217,20,127,77,165,101,154,200,1,45,82,169,15,106,200,94,245,177,108,115,49,182,166,34,209,39,38,162,50,198,186,56,74,183,138,115,98,155,181,163,80,212,132,11,120,182,213,71,149,86,39,69,227,51,90,137,70,172,150,30,148,45,110,217,145,48,137,38,235,74,147,170,3,83,96,15,27,80,121,214,187,186,247,112,197,158,216,156,237,100,119,217,58,72,222,128,152,3,190,146,172,212,65,161,22,6,221,196,73,7,197,231,35,243,226,112,249,88,185,20,62,74,204,30,102,78,2,251,71,219,116,206,104,196,33,133,241,201,139,3,37,215,238,0,77,202,65,46,239,9,20,86,67,152,154,17,65,145,97,22,236,
208,53,218,59,24,35,164,6,146,29,57,147,11,66,30,77,193,9,59,80,40,134,146,98,206,192,217,199,22,151,205,121,204,10,112,235,109,84,155,177,186,38,224,86,130,210,142,1,98,92,27,146,244,116,253,191,76,157,85,147,243,188,162,172,255,186,195,204,156,76,120,194,204,204,56,97,102,102,102,198,243,126,107,223,156,42,217,229,114,249,198,150,220,221,143,44,201,31,75,58,105,90,124,103,168,205,95,194,84,165,22,54,101,185,234,220,9,65,142,25,47,140,24,248,65,243,213,25,115,233,237,202,37,155,27,122,218,38,143,54,64,105,27,146,50,64,166,194,204,88,113,48,125,201,14,37,187,94,246,193,52,239,244,150,240,65,231,70,115,175,86,168,140,226,98,197,122,26,159,78,236,45,98,120,98,85,50,236,78,109,160,83,121,62,144,12,236,193,147,221,132,145,16,78,209,83,206,194,119,1,53,161,43,2,244,104,217,251,33,168,97,137,86,152,65,216,105,109,255,74,200,193,48,94,129,230,230,253,146,137,191,233,13,76,144,22,31,241,22,95,35,138,55,186,106,112,
134,122,173,43,237,153,27,162,17,150,155,1,251,190,153,3,231,199,230,51,24,28,128,211,105,116,187,245,118,87,129,204,214,236,182,235,141,201,106,86,178,148,108,104,11,213,86,165,134,160,238,124,251,165,29,20,117,86,201,246,219,184,236,183,188,50,191,91,166,189,103,121,141,214,104,165,99,205,1,90,250,84,201,112,84,222,137,83,57,113,170,2,103,83,187,108,138,46,230,62,173,115,238,181,178,2,223,97,170,214,11,22,18,132,196,196,59,151,247,188,167,244,54,199,199,160,164,231,233,168,48,11,113,25,56,214,89,121,31,210,136,222,94,164,206,105,92,148,162,200,244,85,15,8,127,211,48,236,19,132,13,129,80,34,199,238,227,64,224,198,191,209,200,129,56,227,30,195,217,246,255,95,63,146,175,225,9,49,12,44,59,95,184,246,84,5,213,65,23,127,169,93,29,113,100,25,18,19,39,241,249,74,184,106,176,48,38,98,32,222,156,39,135,4,113,106,209,76,15,142,58,40,246,53,56,49,207,132,105,108,116,20,154,222,56,16,221,105,214,52,95,155,93,127,136,184,
176,119,142,35,96,236,190,133,0,117,136,228,41,189,184,151,245,183,102,20,24,137,0,4,98,166,217,205,220,90,189,164,12,170,3,238,171,176,60,72,132,83,190,44,139,130,241,56,242,211,146,57,107,72,249,11,96,108,232,222,51,133,8,168,5,41,178,102,162,134,216,163,36,246,32,199,44,165,144,89,150,190,194,18,2,253,236,180,85,90,121,71,120,149,91,53,222,213,87,178,101,19,102,165,81,238,253,249,28,152,76,22,131,215,233,180,186,245,228,190,167,64,247,85,249,108,38,93,44,7,29,174,182,70,243,245,34,48,235,5,141,5,134,163,86,122,43,244,183,92,123,187,119,235,39,173,242,198,243,228,132,134,65,241,249,93,79,55,147,130,16,47,67,207,181,11,32,108,182,246,68,166,129,212,68,62,1,134,110,219,85,235,146,204,230,69,139,197,235,24,155,108,83,221,150,122,138,240,24,19,86,247,143,37,190,219,185,82,215,191,255,228,233,154,239,21,185,214,63,242,68,164,222,140,44,229,18,127,48,9,84,179,10,195,81,225,25,32,56,0,200,29,57,137,34,119,
114,131,1,117,244,39,122,187,21,56,242,63,192,135,121,255,47,112,149,31,132,38,31,70,210,225,238,66,52,203,197,202,203,25,72,58,143,52,124,209,241,174,241,112,19,251,5,235,3,92,59,9,151,208,243,29,6,205,3,120,252,57,201,98,251,31,172,37,229,186,223,14,95,48,175,67,18,124,40,39,12,241,106,59,241,32,12,166,141,78,51,185,96,6,176,153,129,126,96,214,76,100,51,84,212,219,206,24,150,41,246,251,133,8,198,101,22,209,41,52,14,18,37,69,70,174,88,201,162,72,16,66,230,192,162,167,134,250,245,58,113,99,45,132,197,86,237,76,61,48,0,69,89,253,23,198,129,125,209,36,20,10,48,255,42,64,94,136,167,120,141,230,127,203,7,217,44,135,196,188,32,169,196,63,45,241,230,48,178,139,61,220,63,29,102,207,195,80,35,24,108,71,210,136,74,202,73,18,190,100,95,77,68,230,8,194,175,199,235,115,255,99,94,60,220,95,117,87,63,45,181,59,211,217,102,51,153,205,42,150,243,146,227,112,185,154,174,83,58,186,107,15,167,79,174,87,
82,84,122,72,160,124,237,62,53,8,7,197,119,68,246,117,30,68,15,180,72,74,72,136,232,11,81,251,109,223,119,151,117,185,247,208,244,218,46,86,213,34,241,155,243,230,243,78,137,202,198,89,42,27,11,85,51,197,95,219,82,184,141,102,152,173,95,172,107,68,76,238,202,240,163,186,157,108,43,46,4,239,170,198,33,107,204,221,167,33,160,28,251,78,61,239,139,142,201,125,7,254,252,159,176,104,77,160,38,148,51,224,43,0,252,208,109,161,94,77,210,189,88,192,88,221,117,235,48,35,58,188,25,233,254,129,227,127,85,198,252,47,36,119,13,168,0,50,70,255,149,35,37,105,34,94,15,32,252,64,126,121,41,202,133,92,134,36,180,135,50,67,58,5,176,166,72,161,138,21,186,163,187,188,18,47,75,62,35,225,208,132,133,8,28,72,210,252,124,1,201,13,179,56,31,8,104,247,222,187,93,98,191,136,76,23,23,165,136,72,176,122,173,159,29,206,5,242,32,34,236,225,49,254,28,242,104,61,173,216,234,210,61,52,81,177,223,67,2,96,155,229,52,236,255,121,
146,77,214,173,44,192,193,230,177,184,249,202,132,235,133,170,103,161,207,92,150,152,142,95,240,110,37,22,0,220,86,125,215,107,82,241,13,199,239,216,87,193,123,90,187,112,84,166,203,196,184,138,224,131,99,217,179,131,8,71,153,40,92,87,54,206,222,25,73,218,70,16,76,168,115,245,52,186,62,143,23,189,189,51,243,70,127,153,249,171,72,210,215,125,120,122,154,99,194,96,250,148,226,112,40,126,135,62,239,7,72,91,241,102,238,244,14,0,213,42,98,252,92,161,88,111,12,87,156,229,102,53,47,216,46,149,75,105,222,84,185,216,209,127,181,145,108,46,208,189,63,137,198,178,115,252,118,45,82,187,70,90,235,74,115,133,110,197,155,175,83,60,165,174,175,91,244,120,135,106,102,129,150,97,2,74,250,115,81,65,112,222,105,138,51,125,15,112,187,150,185,71,115,126,187,54,239,238,220,240,28,62,205,84,207,26,230,208,69,88,129,143,112,205,230,111,179,2,64,64,132,77,69,200,17,241,35,29,237,74,100,185,219,248,136,222,127,169,150,209,238,55,35,212,66,123,
230,221,100,24,13,169,65,92,35,51,57,58,94,84,255,165,189,203,145,86,113,78,97,22,221,45,133,75,122,55,229,175,15,250,223,172,203,31,35,162,192,184,12,77,174,124,187,233,150,237,15,191,159,22,53,239,235,175,126,14,150,96,218,213,156,100,155,211,77,220,36,223,208,186,76,189,5,106,235,24,99,140,110,191,251,174,161,61,222,213,133,201,183,69,98,234,64,32,159,220,29,84,102,226,137,216,244,160,117,252,109,88,102,13,189,151,31,197,5,150,109,186,149,195,103,71,220,60,45,24,110,22,124,188,157,162,9,35,103,107,127,214,220,92,21,241,187,189,4,229,178,13,154,224,202,165,173,154,132,236,133,3,134,76,114,200,188,171,76,80,121,254,250,148,131,192,225,214,147,70,221,51,107,135,95,136,229,154,193,178,23,112,49,222,22,248,152,255,249,147,117,159,167,57,53,192,239,90,40,131,101,147,176,3,184,38,246,239,79,211,60,100,214,185,233,106,98,242,167,114,160,24,146,43,56,217,102,58,213,187,64,157,86,227,84,68,33,151,51,221,18,119,162,186,77,247,
24,226,156,84,174,47,37,232,37,102,108,123,153,104,246,73,180,240,30,34,191,227,107,82,182,225,152,198,78,243,165,209,247,191,179,136,127,84,88,85,164,109,51,76,67,91,35,92,0,117,211,143,108,150,25,174,136,55,148,161,107,63,88,231,198,170,185,220,252,81,251,179,221,146,49,29,201,64,208,147,201,246,78,228,50,46,163,42,38,11,123,68,172,97,16,9,225,3,24,79,100,225,184,254,191,164,59,121,238,49,0,59,99,12,204,79,51,71,234,170,66,0,130,157,112,89,4,248,6,49,149,48,15,86,22,98,247,132,3,237,240,214,73,180,126,55,217,19,98,162,74,143,102,43,82,5,99,51,210,233,255,1,215,146,167,106,106,128,236,127,72,115,220,90,113,151,124,133,36,33,232,179,241,218,121,111,93,207,159,195,14,90,51,88,244,100,61,63,216,205,135,171,241,116,66,93,15,44,49,108,102,25,93,11,16,209,57,73,252,34,69,0,105,125,30,75,214,184,49,87,96,207,129,171,141,78,115,48,147,167,88,43,29,211,92,209,217,177,86,245,165,146,58,223,202,25,
78,98,130,165,145,146,68,47,214,182,202,100,88,214,233,243,90,137,186,215,156,227,197,179,14,85,101,203,26,31,113,157,252,216,15,120,123,233,118,80,93,238,136,190,26,45,55,0,104,12,23,110,201,193,226,251,181,160,235,205,37,71,57,37,124,12,83,147,213,225,163,54,37,14,8,227,254,86,188,51,10,229,224,146,5,210,11,69,70,76,203,220,127,61,240,161,183,251,172,190,5,122,73,121,96,125,33,10,224,31,171,223,32,206,242,45,222,72,224,107,203,56,57,102,105,22,192,227,138,155,21,16,62,166,20,114,24,21,202,192,38,59,253,163,127,55,177,129,79,53,171,90,44,160,175,247,197,61,122,240,150,27,94,196,230,179,69,208,214,197,203,24,108,127,102,91,224,54,142,192,136,248,119,125,27,12,79,248,144,37,163,136,81,124,129,49,191,3,112,38,232,90,154,132,212,90,175,126,167,57,161,246,254,217,47,71,105,177,205,91,74,16,152,17,65,36,48,199,17,226,62,171,199,69,29,76,16,48,255,133,1,74,155,143,225,81,249,12,94,223,112,213,0,169,159,150,
22,31,226,187,103,132,226,110,40,250,217,153,36,102,24,47,119,125,21,246,21,198,42,117,82,177,136,126,111,136,92,117,246,98,155,235,166,80,189,42,84,174,101,245,69,180,88,144,224,112,34,252,10,162,248,122,102,45,117,18,112,255,145,188,75,207,182,242,177,228,64,63,179,228,200,96,131,154,184,202,238,243,232,209,39,148,41,98,219,71,209,94,194,237,160,210,239,61,185,168,103,248,131,129,219,11,223,173,166,158,52,94,179,1,71,83,230,230,248,63,46,81,240,152,235,72,241,183,125,41,161,123,226,92,4,74,94,32,40,128,66,157,254,47,255,21,239,43,38,146,11,196,15,21,231,69,144,237,2,134,249,151,94,72,149,154,253,211,95,153,171,222,188,89,202,187,8,232,253,177,213,88,115,74,247,109,30,237,32,0,185,64,229,169,53,213,87,25,140,77,217,159,73,28,113,111,174,154,26,33,218,159,86,17,209,232,25,110,191,188,99,38,175,39,255,238,86,186,245,78,78,210,217,194,229,66,95,172,74,232,138,183,219,8,72,10,115,226,210,0,50,180,172,226,188,146,
68,181,84,159,231,107,160,47,155,173,58,57,155,42,108,154,246,248,70,15,120,103,33,3,255,254,203,32,137,249,134,253,61,247,163,227,79,3,246,229,45,234,153,3,108,83,85,150,65,240,99,173,73,185,96,247,83,239,246,58,153,199,173,206,143,222,84,239,239,156,173,128,157,139,248,248,127,124,92,20,233,14,235,237,134,189,84,0,164,226,199,242,49,193,111,16,233,61,191,112,73,212,15,108,103,170,83,22,70,148,209,79,123,33,115,126,162,246,215,209,177,247,228,88,168,137,241,99,71,123,255,100,96,255,207,159,255,133,211,226,236,128,106,209,200,248,174,234,251,62,110,56,57,204,94,22,171,27,218,222,131,33,122,111,74,102,48,132,57,40,251,163,102,188,193,182,111,155,16,72,134,127,52,206,7,51,54,64,14,4,25,79,87,31,107,161,66,196,185,179,15,130,155,80,1,168,127,218,123,153,176,76,99,129,210,96,231,29,144,34,254,18,48,202,83,126,249,10,90,131,91,103,90,28,235,39,231,211,75,124,195,168,32,222,55,25,173,44,150,140,254,237,31,144,8,50,
29,225,126,19,141,20,4,15,33,228,67,67,71,235,205,193,100,123,188,9,46,78,92,34,58,204,147,200,109,7,2,255,220,20,59,163,92,152,34,254,237,36,189,53,122,26,200,108,68,212,77,35,230,97,12,24,159,199,26,108,28,249,97,169,236,185,93,79,115,121,183,63,207,19,24,111,242,58,210,93,232,133,65,171,176,4,244,108,132,221,16,166,160,54,160,150,188,102,212,35,150,60,32,51,119,35,129,65,216,8,169,134,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,79,234,159,139,93,120,239,168,236,217,63,127,138,174,65,250,159,238,215,72,163,125,71,4,16,109,96,60,190,122,69,155,73,80,63,8,204,107,213,149,67,38,12,26,94,253,216,44,146,53,194,216,216,234,86,185,175,135,242,252,217,237,79,88,91,50,208,18,46,58,254,217,202,112,40,111,241,234,178,160,255,78,110,228,79,114,115,99,135,98,117,21,10,178,204,178,58,71,65,169,235,122,142,57,194,51,15,179,97,37,224,220,217,235,
245,98,181,88,125,102,75,201,98,171,156,197,230,10,203,201,118,97,17,26,79,155,11,121,195,193,37,29,15,74,130,174,193,125,229,28,97,54,87,53,243,166,18,68,229,174,63,150,168,149,173,181,46,88,25,58,20,170,229,129,152,1,82,56,157,232,121,110,17,98,185,8,63,220,125,27,182,165,63,73,43,154,239,206,96,187,121,109,207,151,150,238,44,141,89,235,134,221,204,198,189,65,174,188,26,75,198,59,6,145,15,239,121,158,110,223,38,113,217,31,102,55,209,130,161,27,49,216,17,48,108,168,95,121,187,53,170,240,168,212,185,94,40,55,4,248,100,124,9,196,176,71,6,234,28,208,202,13,54,224,27,86,175,168,212,53,229,36,26,56,84,243,229,156,227,127,61,95,214,79,167,33,247,253,118,115,80,39,20,158,59,14,158,190,16,71,136,74,239,250,165,11,212,253,221,178,53,190,119,167,104,92,222,111,112,162,73,182,83,101,160,146,110,151,109,28,92,152,54,48,18,168,245,17,250,24,97,72,200,138,1,134,37,29,230,222,20,38,179,250,223,27,239,231,146,90,
24,237,129,166,38,233,95,2,51,146,66,58,242,46,124,11,140,221,69,131,223,81,171,88,204,25,196,98,168,245,204,62,195,204,9,192,183,144,46,69,177,248,250,1,200,25,199,39,183,9,107,251,17,212,17,226,162,43,143,164,244,198,88,117,255,151,168,119,21,199,187,69,63,226,12,238,224,107,39,96,33,220,172,155,154,88,74,147,44,235,219,243,59,178,102,44,142,221,221,249,241,89,226,222,137,231,219,47,226,111,189,149,151,71,76,23,239,250,217,67,63,201,1,68,124,253,128,92,151,98,247,172,1,69,182,223,247,112,104,69,9,76,185,8,182,106,89,98,131,105,219,236,38,114,17,74,235,100,164,243,97,20,183,87,118,78,234,67,82,105,84,29,35,126,214,154,63,120,74,143,137,22,46,191,238,189,162,167,98,171,162,15,114,117,168,238,63,191,4,137,225,213,248,208,159,67,43,146,195,16,84,107,198,217,102,223,31,178,117,236,114,67,58,104,68,161,170,181,131,193,19,86,0,16,68,253,139,39,131,146,121,130,94,102,166,113,172,199,209,241,83,106,195,188,11,62,
16,206,177,84,148,9,232,77,83,92,72,9,57,255,174,188,13,60,19,239,86,89,175,148,133,246,120,126,222,96,237,172,125,149,209,173,51,112,53,43,58,165,195,99,202,168,243,233,60,173,211,33,39,62,26,138,21,101,58,173,34,153,3,239,193,99,40,1,18,70,216,115,201,106,123,83,178,93,204,235,146,185,202,176,149,233,127,22,75,101,209,92,58,241,167,115,20,239,4,160,216,48,241,49,65,115,35,31,226,227,81,240,210,15,163,124,187,220,186,174,177,18,195,162,144,51,84,242,35,43,6,96,206,219,172,252,210,217,226,182,218,51,148,37,195,170,70,157,106,45,102,232,226,112,16,120,197,244,79,48,65,203,50,200,225,20,138,76,18,208,37,80,0,235,119,228,160,191,144,211,249,134,251,86,60,245,49,244,58,240,74,54,175,186,234,149,40,43,20,70,254,159,36,68,4,80,129,186,88,16,50,87,109,130,218,93,220,14,235,30,57,84,146,106,238,202,140,150,244,173,49,113,115,227,24,111,45,69,17,128,129,16,39,208,42,109,99,216,201,69,36,200,99,244,76,17,
128,249,92,238,200,184,196,157,46,6,119,14,235,189,82,116,78,243,26,226,77,40,98,182,144,169,196,26,193,184,14,57,248,210,47,56,168,99,187,67,69,31,2,76,177,67,186,158,81,60,181,142,248,219,126,8,9,137,166,98,4,170,43,62,179,9,203,46,192,160,232,186,129,62,163,23,9,47,186,119,55,209,156,20,73,196,146,246,99,61,92,169,168,13,108,55,39,4,8,82,5,0,238,189,164,175,13,227,208,109,207,54,66,143,49,10,156,91,133,243,210,140,92,108,243,219,69,107,241,165,187,19,65,24,131,190,178,188,42,222,48,48,186,180,249,55,46,223,222,182,239,234,119,11,96,143,77,68,202,112,126,195,175,13,247,226,140,254,211,228,48,84,93,47,136,62,139,41,52,165,163,44,38,219,101,167,90,150,21,252,83,200,164,48,0,140,49,168,100,62,74,78,232,163,11,105,140,45,228,120,18,8,4,162,29,188,247,148,98,206,165,31,134,181,157,9,212,36,86,141,184,96,97,219,238,84,48,0,166,8,228,78,213,48,150,54,188,74,191,82,57,27,10,26,68,185,
5,6,142,9,44,123,213,22,228,23,126,11,160,68,135,179,18,31,106,9,51,135,196,113,189,156,19,11,115,242,238,130,196,53,204,152,24,104,210,34,81,14,5,174,73,48,1,207,61,91,244,43,73,235,216,161,102,195,143,122,205,205,176,86,187,227,178,121,76,78,234,223,136,133,229,144,40,88,223,59,234,111,78,202,231,125,32,144,151,199,203,100,62,111,76,62,87,40,215,235,141,245,10,82,3,9,38,250,156,76,230,159,61,84,174,230,211,213,56,175,103,103,13,142,118,166,69,170,22,26,191,185,80,157,62,107,139,135,155,110,251,67,200,11,251,157,148,20,206,66,80,146,232,116,146,125,60,169,81,104,69,255,109,222,101,166,118,240,235,177,190,228,150,147,82,117,241,174,213,109,107,105,106,206,19,192,2,107,244,124,28,120,112,42,202,123,82,126,194,218,158,102,94,209,133,179,144,78,241,28,39,136,107,61,127,37,69,162,23,233,81,197,64,0,26,206,5,216,24,132,28,91,129,81,3,47,113,171,11,76,48,184,155,54,140,80,137,5,113,54,202,25,70,18,209,123,
112,0,28,81,83,227,232,182,84,183,41,70,4,203,255,141,184,208,189,221,32,202,54,224,140,91,42,43,18,137,19,208,253,173,227,34,143,247,34,163,246,130,32,181,85,246,12,92,27,33,0,117,57,57,116,80,50,22,78,199,214,183,75,53,3,76,116,180,69,21,58,34,45,12,214,88,58,126,174,155,123,80,90,85,66,242,144,171,179,92,135,140,199,67,208,244,93,203,236,202,81,244,251,137,72,115,207,67,216,32,107,194,61,212,90,115,156,180,206,239,31,151,153,107,65,188,221,63,174,176,16,37,9,110,166,63,17,10,130,100,245,224,0,76,56,65,26,198,137,148,125,136,4,77,12,62,41,242,243,100,109,98,122,139,197,12,70,82,40,136,225,138,88,200,160,16,242,200,62,0,176,45,58,218,31,153,83,138,164,39,7,235,83,2,169,139,85,108,204,171,32,115,166,190,195,91,127,184,105,218,120,101,8,232,47,228,225,173,96,114,191,245,10,58,228,111,235,91,61,77,48,168,205,250,72,54,194,49,118,203,102,151,44,10,62,75,166,63,110,196,12,20,249,179,49,248,
66,170,96,164,87,227,131,175,159,174,188,249,19,238,220,74,133,168,230,56,81,49,204,9,248,221,78,118,15,244,45,198,143,151,193,20,139,235,75,101,180,21,100,170,233,62,31,172,10,158,243,124,124,183,188,137,243,249,61,252,131,30,30,204,7,6,150,56,41,78,30,55,12,92,212,168,200,28,58,154,8,164,188,71,146,245,9,17,79,131,26,82,67,16,25,3,196,121,221,105,11,199,14,114,209,67,94,96,184,75,46,96,57,88,9,112,201,30,239,104,94,107,119,33,48,240,67,188,171,189,252,77,77,21,215,220,168,149,240,150,98,222,148,136,234,125,89,3,203,193,126,120,91,236,129,209,235,50,58,13,70,254,217,232,182,219,221,4,225,239,77,64,200,58,79,236,203,229,188,4,97,60,228,18,54,106,62,25,185,156,19,36,142,176,118,134,159,164,77,104,240,56,148,124,175,243,87,52,10,141,9,243,152,212,121,8,61,247,109,127,182,73,16,26,150,38,79,165,218,202,87,200,185,70,163,90,8,114,206,44,236,89,210,198,73,28,16,205,248,157,150,188,19,105,137,7,
39,25,194,171,108,90,254,210,60,240,45,69,163,211,83,181,24,35,37,99,62,239,112,9,18,77,22,215,214,176,94,154,4,110,140,7,168,126,166,39,137,174,67,116,188,125,102,231,109,42,242,91,84,174,107,124,227,76,57,3,46,124,95,28,62,125,236,173,0,82,190,18,124,153,44,180,80,66,37,146,76,129,32,14,137,244,11,74,0,250,55,80,21,168,3,185,49,117,188,141,219,186,87,193,255,58,64,236,247,101,115,7,106,48,246,47,46,230,19,34,251,110,24,22,137,93,67,3,120,198,88,65,162,79,209,104,189,97,68,8,153,13,42,112,62,172,63,254,17,74,185,89,236,121,63,97,26,181,41,76,141,221,194,164,125,154,247,36,136,15,220,123,169,33,184,132,73,194,15,122,51,22,155,249,209,6,135,98,151,188,124,147,149,65,66,195,149,245,185,23,204,229,214,250,252,44,221,143,95,113,96,255,133,133,42,37,100,12,218,244,198,65,40,46,19,169,72,197,237,31,248,78,111,203,48,248,93,130,142,23,198,48,28,247,121,127,128,90,117,244,51,0,86,245,219,116,
131,93,85,93,88,182,76,170,62,36,141,33,221,240,121,53,27,194,96,172,182,63,36,248,120,71,203,204,206,126,201,84,146,252,17,158,158,254,49,188,35,174,131,17,67,103,15,68,52,72,244,223,52,129,52,168,148,130,37,9,138,119,81,188,79,198,251,94,144,220,201,96,212,117,198,75,25,193,116,93,153,253,10,194,20,207,212,110,24,205,203,150,239,199,72,221,189,16,175,24,237,223,3,160,16,240,48,118,15,74,233,198,100,212,109,100,48,13,164,250,80,251,145,79,235,171,185,36,175,8,177,222,146,253,18,215,44,75,6,226,123,6,88,228,79,155,88,3,123,28,105,122,73,153,69,131,118,166,149,191,118,50,232,214,58,203,163,17,191,57,216,156,162,20,172,237,165,142,28,20,202,246,241,220,150,208,52,144,163,4,153,193,169,187,107,79,244,204,214,49,106,243,112,63,152,182,197,250,78,219,123,13,86,199,74,56,102,53,248,76,234,74,72,164,206,88,44,235,9,135,97,219,239,232,48,91,125,77,171,4,131,74,39,147,62,245,190,233,76,48,197,232,187,246,220,18,
48,239,79,103,136,160,241,112,18,155,249,182,70,208,25,122,143,12,47,200,106,29,124,14,10,173,210,46,58,81,135,229,186,204,142,173,226,241,103,235,133,201,118,122,154,203,6,39,193,89,182,146,108,21,122,169,68,111,23,61,27,45,178,46,223,249,184,115,4,238,204,126,213,32,43,154,197,131,111,207,123,252,218,49,124,144,103,205,224,54,116,123,198,97,160,65,106,97,173,147,8,220,204,214,207,73,83,96,217,141,200,33,115,134,92,125,118,32,124,158,43,28,156,177,226,139,89,38,158,56,178,0,83,250,249,236,178,104,210,238,0,251,187,173,131,142,55,26,21,0,2,39,16,44,119,117,214,19,20,94,91,116,40,171,93,57,200,204,226,83,254,247,241,244,148,4,73,218,100,229,208,144,11,156,153,0,159,32,12,7,107,159,159,74,21,159,203,132,54,201,70,182,32,48,61,196,142,7,147,217,198,189,113,141,160,103,25,200,132,198,64,95,1,248,231,57,27,136,43,250,151,245,150,172,182,188,133,121,237,238,143,253,255,22,140,66,255,2,36,23,15,41,25,24,245,5,
152,141,54,98,24,135,99,174,93,87,115,164,121,80,35,71,75,181,223,86,255,120,107,36,140,67,137,160,96,101,4,77,152,149,191,36,121,10,169,76,175,123,2,80,31,142,198,121,3,106,160,69,231,228,191,178,248,81,150,158,139,112,109,114,131,134,70,68,171,170,216,159,128,4,184,49,97,45,224,186,129,163,43,123,216,147,188,103,240,82,12,59,111,242,105,75,138,245,188,119,198,204,241,242,212,199,170,174,231,173,220,190,79,125,155,68,145,235,20,34,134,8,216,144,144,3,77,119,23,42,165,153,114,27,157,191,192,139,121,170,75,133,183,255,97,42,204,129,155,139,227,82,50,251,84,206,173,198,238,2,90,251,222,197,189,148,123,69,180,242,128,149,11,252,43,52,36,50,7,111,172,59,255,30,122,75,175,128,44,217,239,111,29,246,34,148,219,193,81,118,224,49,243,112,246,139,78,225,170,158,132,156,79,206,28,106,116,182,177,79,63,162,224,149,169,110,115,136,173,189,219,253,167,181,161,77,64,126,97,226,7,157,146,190,18,32,117,74,221,23,254,115,57,95,67,229,
61,222,126,79,41,192,206,124,161,136,164,85,64,240,117,76,65,196,128,203,153,122,219,109,86,135,213,132,42,249,156,101,143,126,49,159,241,102,213,171,205,242,185,90,173,11,14,167,73,111,178,155,13,118,179,89,231,52,207,235,117,155,251,133,127,188,155,126,160,195,23,130,180,129,79,38,133,151,156,205,231,43,132,97,96,63,92,28,255,241,74,88,46,113,206,198,187,9,156,99,199,241,114,120,39,134,210,127,233,241,20,240,135,207,145,124,50,4,179,231,171,182,86,181,177,196,200,183,43,213,102,169,78,44,229,90,173,70,167,60,168,239,181,252,201,43,189,143,66,239,122,108,130,246,17,52,52,126,67,233,13,88,170,140,128,223,32,34,168,216,75,69,151,187,240,118,102,26,254,92,205,107,45,117,252,245,182,198,221,176,44,236,127,141,159,80,104,123,253,2,82,244,154,250,220,25,238,194,73,65,87,18,0,42,170,237,108,109,224,113,215,30,241,50,49,84,62,117,74,64,15,32,183,89,178,192,238,66,247,167,58,122,118,160,40,73,78,186,78,244,182,235,120,117,255,211,
79,226,221,164,70,156,238,209,146,64,208,235,218,15,113,226,79,195,145,218,189,250,131,157,178,169,61,105,244,144,75,71,144,74,109,98,82,65,110,38,117,98,27,186,16,229,95,236,80,147,120,225,201,117,223,3,54,57,4,88,235,191,249,151,234,227,46,216,123,249,21,56,16,34,57,184,61,90,141,45,228,122,14,107,119,207,64,123,222,26,66,153,250,184,95,160,119,33,144,86,127,126,101,18,248,221,48,176,192,48,203,230,212,65,191,9,251,143,196,167,149,47,54,211,85,149,169,130,217,20,23,32,238,192,20,57,72,8,217,212,211,127,219,135,241,233,253,33,105,86,57,187,159,43,203,226,28,54,203,204,171,132,131,90,62,114,229,118,111,95,52,244,202,13,159,146,114,230,254,225,177,31,48,73,207,209,247,242,131,156,143,220,58,32,6,223,149,254,37,109,93,23,216,20,45,83,123,64,248,23,163,132,169,139,240,61,86,185,76,148,108,15,121,237,84,248,73,170,91,85,183,198,126,220,66,203,85,216,248,231,212,148,212,52,58,3,209,2,211,116,109,167,122,162,145,217,
20,232,139,239,3,6,112,151,6,96,90,241,183,253,184,78,14,180,91,84,50,161,101,234,1,137,219,249,60,14,160,244,10,241,238,73,49,174,211,158,141,80,189,198,17,77,5,98,43,248,39,83,128,212,78,78,136,41,49,144,241,43,130,220,153,7,94,245,115,146,200,80,160,200,116,127,196,202,129,176,65,13,70,118,178,144,62,100,31,198,55,51,223,70,198,150,255,23,48,190,51,243,199,47,52,40,52,86,235,215,160,52,74,221,102,81,14,92,2,43,117,106,141,71,254,111,175,148,47,78,171,89,238,95,75,188,92,152,8,196,19,129,112,190,17,8,108,232,253,8,124,59,214,143,86,234,205,220,31,155,55,206,32,78,68,114,21,197,82,129,152,206,187,173,106,33,247,118,240,173,70,185,243,85,140,124,231,50,118,98,96,149,162,18,155,119,59,222,197,208,129,96,174,82,46,116,123,149,102,190,148,63,24,24,183,161,43,187,253,40,154,159,221,178,46,235,170,14,222,111,163,121,240,122,81,167,80,241,30,107,167,227,249,108,104,191,91,206,155,191,218,149,72,188,114,115,
61,43,181,6,11,24,130,131,118,205,227,246,30,194,80,48,169,228,76,38,239,103,83,67,98,138,175,221,62,228,84,167,29,109,85,180,251,251,218,213,242,216,57,59,110,136,137,18,182,162,164,83,164,203,206,125,253,67,31,180,121,70,130,171,81,110,115,71,57,27,136,49,255,75,234,28,185,79,209,122,170,57,74,98,126,108,78,135,74,1,226,158,113,47,209,27,104,25,144,204,137,40,158,138,160,230,6,10,189,125,92,84,71,205,254,249,227,241,65,221,194,5,177,142,201,2,251,238,191,243,79,151,209,183,196,14,59,81,138,213,53,149,220,144,240,170,48,184,32,86,24,122,240,16,90,22,244,192,222,231,122,167,218,121,46,188,111,231,198,54,56,11,246,144,48,169,0,131,46,91,41,118,186,8,161,112,241,242,48,64,216,121,220,121,56,105,18,195,243,119,218,76,255,69,107,109,65,114,135,106,95,99,64,177,0,188,205,177,185,166,33,158,44,143,48,171,88,46,172,129,54,173,58,179,181,151,25,57,78,205,169,233,4,202,177,255,119,91,28,238,182,200,229,234,243,186,
21,239,92,222,72,235,235,214,109,130,63,177,249,34,183,33,82,99,61,131,61,145,152,148,11,128,194,60,60,26,44,32,146,208,210,176,55,167,76,153,156,44,146,76,148,184,174,44,145,80,193,233,146,42,177,241,17,203,247,175,141,71,155,212,37,19,92,197,82,65,2,48,123,128,160,226,12,147,232,16,138,36,149,236,254,113,192,19,3,65,91,168,131,9,77,243,117,196,214,179,80,242,32,66,73,204,241,9,172,109,185,123,60,67,129,131,20,203,171,208,234,159,76,171,111,67,179,97,149,240,199,158,72,239,169,118,117,80,224,5,244,224,247,52,220,163,103,126,172,38,58,87,231,9,31,90,12,192,223,151,83,189,200,213,239,229,7,116,110,238,133,238,249,244,52,81,76,51,59,117,40,87,236,118,129,86,185,222,204,87,234,183,74,171,242,112,252,186,191,118,179,232,87,173,84,127,69,82,163,82,235,148,126,133,255,228,206,18,169,101,21,203,237,146,205,157,135,185,220,5,143,101,198,79,79,75,196,163,241,116,33,217,79,156,165,205,45,223,185,107,218,131,126,184,8,163,
5,181,214,76,181,54,171,12,107,153,102,173,112,105,150,18,205,98,174,148,252,181,252,80,206,89,224,231,171,74,249,100,174,86,204,21,106,137,241,86,62,228,159,218,97,255,158,86,175,91,180,207,173,122,127,111,218,87,209,149,200,250,182,74,76,183,74,127,225,103,138,91,173,222,52,207,115,37,119,30,15,200,139,204,82,57,189,88,210,179,49,167,70,117,68,60,71,46,158,79,247,67,144,37,14,83,198,181,235,103,76,103,80,69,218,153,206,87,4,134,24,157,99,144,111,210,218,153,244,243,60,31,151,154,198,254,249,88,123,121,39,220,175,227,224,248,199,105,200,77,164,90,236,223,124,175,218,207,104,31,24,99,254,146,63,40,36,164,107,49,8,106,15,242,164,11,95,10,157,128,0,226,95,36,2,84,96,147,44,46,18,155,91,129,185,81,7,161,23,218,173,230,176,136,107,199,88,207,138,3,200,185,81,134,250,217,65,25,232,14,195,152,83,38,186,147,68,36,196,152,178,188,147,238,198,139,204,21,116,106,100,159,189,83,102,122,196,86,94,157,230,250,185,229,141,216,
186,125,192,221,78,220,62,77,252,125,50,184,241,72,118,17,101,100,253,52,252,143,22,200,195,108,61,17,128,239,94,20,119,66,251,107,45,111,125,16,62,136,244,210,10,148,55,239,100,241,190,123,30,169,80,139,48,48,219,207,123,0,211,112,143,141,44,196,129,23,171,58,254,137,141,112,106,80,123,90,156,46,55,172,189,74,120,84,155,235,147,38,164,12,247,140,179,252,23,184,49,74,206,81,12,226,69,11,50,129,252,207,148,221,64,201,214,131,223,71,169,180,203,52,203,28,150,129,52,20,71,229,76,192,47,172,129,137,225,17,72,103,234,177,196,211,234,43,113,38,83,227,97,163,189,47,70,171,224,60,53,183,11,86,42,132,41,202,156,246,39,16,185,180,170,93,145,179,210,20,80,126,1,24,15,218,3,223,123,248,199,189,215,76,112,34,100,88,242,135,33,233,255,10,68,77,97,71,143,162,36,218,97,27,133,89,131,216,132,77,15,153,254,162,12,119,69,145,148,105,190,13,237,120,117,247,190,206,38,17,187,209,108,144,109,23,219,193,122,187,90,173,52,90,140,82,
163,86,169,117,138,131,238,217,106,124,28,230,174,209,236,118,186,201,185,123,174,86,237,22,74,165,107,167,81,152,207,102,235,191,249,15,123,197,227,204,127,185,156,5,155,187,250,49,173,171,184,179,237,196,89,113,158,103,75,123,77,11,193,233,232,118,145,149,251,10,61,255,30,142,66,244,245,56,140,98,137,82,172,179,56,197,150,104,183,227,107,74,84,235,181,154,163,212,87,206,214,178,197,66,161,150,171,111,173,50,50,240,83,105,111,249,253,214,21,158,138,79,99,118,171,73,250,60,58,185,200,75,253,68,182,236,164,151,73,92,0,68,9,133,75,251,20,31,139,121,198,89,255,110,162,184,122,255,157,46,159,139,54,19,59,37,37,101,14,211,106,181,154,248,17,236,142,103,206,133,89,227,63,87,154,67,235,246,145,34,119,187,245,19,226,113,150,183,219,101,147,225,114,39,109,235,245,157,20,186,229,145,244,238,150,150,149,81,128,91,168,86,29,52,0,234,232,60,116,132,135,78,96,133,198,51,93,134,57,84,157,34,204,20,160,244,114,171,14,195,126,220,137,26,195,62,
218,165,0,169,190,146,114,193,192,21,2,121,135,171,254,204,75,115,221,142,54,225,186,208,250,22,232,203,34,92,186,190,35,60,255,212,121,186,253,54,217,225,68,68,144,55,197,45,221,76,23,179,37,5,220,245,187,147,45,208,68,146,75,54,120,146,190,165,217,209,177,189,252,136,250,171,44,167,115,185,192,53,8,217,164,45,9,209,48,235,245,115,151,190,254,154,183,127,3,204,77,184,91,106,111,206,246,108,185,143,246,12,142,247,215,194,178,94,139,164,190,8,154,237,14,229,72,224,1,18,67,160,164,139,227,109,181,224,176,84,214,106,50,176,125,255,249,185,219,188,202,236,74,185,99,147,77,127,142,164,16,38,138,172,60,253,8,50,27,251,204,65,41,12,144,249,132,243,47,0,93,31,71,209,48,125,122,31,206,22,78,196,31,98,46,5,67,39,50,214,5,92,255,167,177,30,50,163,191,178,4,213,80,236,98,224,232,65,233,228,101,169,23,64,49,118,76,165,252,188,114,224,209,50,20,206,229,30,226,241,201,116,187,40,66,129,64,141,161,194,81,133,14,33,228,29,
5,224,27,51,121,243,162,221,46,249,17,82,236,76,48,199,177,19,110,169,216,32,225,219,192,60,50,130,98,173,230,6,87,74,90,83,71,196,38,2,239,238,95,190,211,129,229,95,161,90,41,178,187,127,222,185,220,197,241,43,178,127,205,82,183,209,235,148,62,29,66,80,78,80,181,196,175,44,220,251,29,21,52,67,179,93,54,60,219,182,111,187,106,77,208,55,223,117,16,80,190,158,19,159,85,6,107,101,193,73,50,93,236,68,115,145,116,14,217,137,179,166,12,199,127,156,98,175,208,101,50,124,101,42,133,78,101,200,94,107,185,106,189,170,210,237,243,150,170,185,74,47,173,169,223,224,34,180,143,17,208,89,126,34,16,225,135,255,248,0,105,204,239,190,105,239,155,69,123,243,240,181,74,185,207,112,74,216,171,150,161,154,179,156,203,27,63,179,102,131,117,72,240,86,97,81,223,31,250,222,215,235,242,59,148,14,85,95,200,45,253,181,117,162,79,26,29,98,27,236,42,17,223,199,219,181,249,110,62,107,219,246,171,127,126,150,156,133,77,231,227,231,121,187,45,152,
250,35,216,8,164,191,130,15,82,92,177,145,74,212,133,109,141,128,167,250,129,115,10,116,152,220,86,42,172,87,193,47,68,107,147,163,57,243,216,96,166,211,28,184,15,192,172,53,143,115,23,83,159,156,98,20,163,135,136,110,102,14,117,204,132,55,143,198,100,171,188,19,235,12,229,140,154,181,53,162,112,111,63,160,23,194,230,16,154,32,189,22,80,178,33,145,68,40,193,46,43,77,255,96,46,48,137,26,71,192,97,22,2,88,251,229,213,127,251,248,38,218,189,171,222,22,11,132,49,150,249,242,221,102,153,196,112,31,65,180,41,221,77,155,78,99,47,215,243,11,75,32,48,83,21,143,84,92,37,217,46,179,228,171,78,112,23,49,82,139,181,45,195,57,75,121,42,212,186,103,215,60,164,137,65,138,82,112,18,134,1,197,222,73,164,209,80,234,15,18,225,234,188,212,0,71,66,9,93,104,32,161,59,250,61,16,185,38,142,74,83,162,183,74,66,250,18,141,108,189,113,168,139,38,86,184,9,46,96,26,65,210,9,143,231,45,189,24,44,217,224,10,73,10,252,178,
184,76,138,96,244,51,95,50,51,97,205,31,108,1,225,131,26,125,212,40,64,18,180,136,110,70,138,73,211,176,126,184,41,104,11,177,183,204,194,58,98,148,171,71,104,189,215,34,78,178,8,135,24,13,235,10,43,132,86,212,58,215,230,159,207,247,161,32,97,0,67,158,132,225,193,51,106,182,145,66,133,208,161,145,223,149,148,2,90,201,7,227,146,173,234,87,188,150,105,5,240,206,208,109,187,94,23,167,132,200,52,194,71,39,125,52,170,128,38,100,40,19,9,193,230,34,215,168,23,106,141,125,189,94,148,108,54,246,14,199,245,180,31,31,175,43,35,4,13,227,130,253,225,20,183,91,161,134,208,111,124,251,220,93,147,254,215,116,200,247,106,93,30,153,210,36,105,33,64,33,224,253,183,92,27,160,72,30,55,77,115,90,27,128,55,76,48,40,124,178,241,81,32,99,1,121,177,238,96,177,150,131,200,60,224,233,67,10,66,227,173,184,43,255,229,203,127,211,196,114,32,66,7,195,245,216,243,42,225,119,104,238,39,66,226,156,189,155,145,252,239,54,244,23,142,149,
87,163,170,56,215,95,167,236,175,109,253,224,36,20,235,108,44,28,187,251,232,217,1,47,153,81,66,187,203,189,99,171,103,96,231,62,166,165,239,147,240,141,117,208,175,44,32,126,21,153,222,0,83,80,42,50,182,30,155,8,223,43,209,161,186,240,182,4,183,134,228,108,213,199,229,70,229,152,59,9,136,45,157,181,246,253,198,30,220,210,222,94,175,92,162,254,98,133,222,194,31,119,139,92,249,200,62,253,214,220,140,65,9,208,102,49,84,11,101,252,118,47,252,86,238,135,209,130,192,14,0,6,158,202,40,149,95,77,223,24,166,114,118,30,184,172,159,109,137,157,142,101,46,78,253,117,235,25,163,191,93,78,203,114,251,211,163,176,188,191,59,71,221,105,132,205,217,187,107,221,96,112,207,88,158,38,155,153,33,199,250,165,56,36,231,124,31,4,241,102,232,161,226,184,221,173,199,164,232,172,152,123,73,79,34,138,88,62,112,6,169,244,171,70,197,246,107,205,102,52,67,27,84,246,67,129,229,106,49,199,175,209,142,200,187,156,111,73,95,110,221,49,57,62,31,54,
0,27,15,111,202,89,132,46,146,238,138,114,56,119,1,81,2,36,98,188,109,232,30,67,88,105,124,39,86,77,71,122,141,134,17,3,122,224,123,19,46,92,63,220,130,130,83,211,24,236,97,151,165,2,84,197,180,18,77,222,85,224,246,97,181,93,33,18,173,26,163,210,155,2,162,188,190,158,85,184,132,93,224,248,115,203,130,180,156,135,174,240,107,120,186,174,130,78,14,140,208,198,148,198,15,139,66,209,200,159,17,8,60,35,250,100,19,183,236,244,121,172,216,160,82,192,33,63,6,144,173,236,31,63,179,141,86,50,141,239,190,4,62,182,17,209,107,221,232,50,90,116,100,219,197,98,177,85,203,160,10,237,171,84,40,148,51,141,74,171,146,43,228,31,165,78,169,80,107,85,95,69,196,47,148,212,115,156,124,99,185,18,12,241,39,46,196,243,175,172,147,255,182,255,202,184,173,129,180,211,0,220,255,121,191,183,49,92,46,25,168,53,132,91,109,200,183,19,106,237,142,137,169,4,69,166,207,146,244,121,63,94,107,202,15,124,67,166,205,68,55,67,113,254,86,157,
206,84,27,65,187,171,57,211,248,170,4,16,199,243,85,40,60,22,89,75,208,136,219,46,205,247,125,90,22,69,23,253,240,201,70,27,131,188,53,161,99,105,165,18,161,231,46,118,126,103,79,79,207,161,250,251,25,151,75,100,100,156,207,164,252,198,242,161,152,120,215,175,251,95,95,166,195,239,47,9,162,196,122,151,250,46,231,2,56,169,120,67,179,7,211,246,235,255,70,11,103,155,134,240,230,4,206,10,80,194,253,222,228,222,91,25,49,110,147,160,229,245,242,72,22,0,234,67,42,216,107,54,204,236,221,50,34,220,84,72,24,101,5,226,24,94,17,83,64,169,118,247,152,74,199,43,84,53,195,197,121,207,196,210,183,65,103,164,129,145,118,101,77,148,29,190,54,69,16,232,235,123,223,177,110,202,72,106,78,116,57,177,60,51,72,96,127,203,107,60,173,152,29,71,221,73,131,244,141,97,197,134,82,61,113,176,163,1,64,248,135,98,249,59,104,92,179,106,96,139,197,227,47,103,243,211,90,121,105,223,175,170,167,208,253,120,30,161,175,248,84,98,104,176,214,181,
83,139,211,101,210,151,51,250,90,126,127,198,183,83,63,120,32,155,138,0,224,164,160,231,216,103,193,64,220,5,252,253,143,192,202,142,177,61,254,36,128,23,218,113,17,74,98,14,210,61,5,82,171,229,46,161,52,85,132,254,181,224,117,117,25,165,24,48,185,139,72,133,19,152,240,75,21,136,122,121,230,190,71,234,190,91,225,58,8,28,33,29,243,16,35,184,183,111,43,115,33,77,148,74,237,61,200,111,175,248,14,222,192,184,228,104,91,189,235,37,130,97,149,133,1,171,99,237,69,235,64,5,90,165,106,200,90,96,176,238,135,149,45,38,113,122,99,248,102,170,30,20,140,172,118,142,196,60,26,95,226,137,49,77,127,103,250,119,96,41,199,71,225,79,145,61,139,35,199,37,61,23,160,68,157,55,242,180,98,112,29,31,243,118,205,5,175,117,115,141,118,187,75,236,84,202,96,67,104,15,220,239,243,200,248,126,6,214,231,117,168,29,58,246,138,69,4,28,191,246,248,218,206,62,40,35,244,158,184,123,225,88,160,82,92,187,181,220,84,190,45,187,170,151,83,233,
31,111,128,175,182,50,152,45,184,180,244,102,198,252,159,37,35,57,137,198,210,107,43,19,25,255,248,164,92,166,237,203,37,234,191,35,107,201,90,157,59,23,216,135,255,209,230,92,70,11,69,23,178,19,218,173,63,2,223,14,21,66,44,10,3,40,209,56,56,230,97,224,251,0,2,17,29,134,174,111,180,64,120,44,68,1,223,228,48,215,78,104,36,221,176,18,148,31,179,100,221,129,207,27,31,26,135,111,72,163,100,44,146,93,103,184,13,162,95,9,204,124,32,195,123,127,178,249,88,223,119,104,229,120,125,81,94,17,68,53,15,229,193,170,242,191,9,179,56,183,166,246,223,148,167,122,98,197,131,198,208,179,240,142,197,181,52,29,232,183,142,27,211,104,127,219,254,44,41,220,0,68,33,220,179,64,29,89,123,96,105,16,94,148,75,5,179,218,193,128,87,95,37,212,185,22,51,101,246,115,153,40,117,162,179,134,41,172,208,242,201,196,225,145,7,104,194,152,140,161,180,4,32,228,64,178,244,181,157,12,83,223,255,232,122,55,130,142,242,18,220,217,32,24,188,26,
196,169,161,200,207,143,107,133,214,173,185,148,140,122,139,195,103,152,242,211,122,125,166,89,36,166,45,128,151,248,94,207,236,123,234,59,89,222,188,239,74,205,222,40,243,213,5,189,250,122,44,199,58,208,215,106,118,110,246,18,139,189,60,87,226,150,52,223,63,72,25,38,99,63,65,175,60,161,230,74,0,63,158,56,91,41,235,82,240,122,59,84,132,152,221,232,153,163,50,18,168,47,129,213,185,219,220,99,67,138,24,4,91,140,171,43,54,125,128,147,132,7,139,85,57,111,183,197,154,211,95,71,55,75,59,237,220,249,53,171,121,139,166,75,94,181,221,70,46,112,105,254,14,100,253,23,164,239,18,23,241,109,83,33,241,17,219,97,60,8,10,71,21,57,97,112,76,182,179,114,219,3,224,211,241,216,178,97,191,244,82,131,65,106,97,198,200,71,73,127,133,119,173,61,25,12,147,200,243,199,151,35,11,169,164,194,180,176,215,131,218,248,172,99,216,180,153,61,122,235,229,118,246,114,10,125,10,203,175,93,61,58,162,89,97,188,36,50,166,21,37,180,50,173,108,41,
187,206,56,92,90,163,89,243,156,92,173,203,69,9,54,139,36,225,112,52,171,142,107,189,216,142,159,19,178,180,213,110,187,221,233,235,87,26,147,153,54,227,188,146,39,92,196,9,207,186,185,184,200,250,28,89,127,207,17,0,62,105,136,154,210,69,246,63,101,43,38,59,85,170,79,117,191,159,146,145,122,204,201,254,146,39,210,68,133,190,248,78,224,137,104,195,248,8,38,126,67,231,57,41,135,6,137,224,189,96,122,46,216,167,235,127,150,48,201,79,12,83,223,34,191,187,163,251,156,171,7,194,54,185,192,248,204,229,215,2,251,143,101,22,139,58,183,186,53,104,50,124,222,166,19,6,123,91,119,135,248,219,127,244,57,206,246,105,8,63,191,214,108,137,34,156,254,38,25,2,42,98,252,109,167,45,138,139,28,51,3,108,67,186,57,161,139,244,65,40,241,73,158,214,73,180,190,106,124,31,98,255,111,65,19,247,26,84,172,167,196,151,99,89,237,32,47,99,37,137,254,252,11,16,107,7,167,243,69,231,159,105,125,240,47,116,106,221,3,6,254,237,7,159,145,79,
121,181,204,77,221,163,186,105,173,50,207,102,151,238,226,255,144,238,227,218,242,122,95,223,168,28,170,174,210,16,243,13,216,57,68,54,61,157,203,1,75,102,29,65,20,3,130,24,241,228,119,211,199,196,164,158,201,35,70,12,50,24,115,82,170,41,183,99,92,255,17,194,145,115,105,97,150,156,97,189,104,122,235,221,75,197,99,171,85,40,110,39,155,59,251,189,95,15,215,47,125,174,184,233,115,5,227,95,187,236,233,54,109,53,115,99,35,87,109,228,10,8,139,217,46,152,146,170,70,6,134,151,219,137,164,224,32,2,34,107,82,180,162,28,52,145,200,243,144,0,159,141,131,229,47,133,214,63,72,25,232,225,151,102,218,47,241,60,20,57,168,130,112,102,178,21,31,136,2,10,40,5,225,250,32,32,8,164,136,82,165,206,108,44,35,174,146,195,81,252,11,246,204,201,66,189,166,166,23,252,107,146,80,184,101,190,196,137,209,96,32,96,128,133,137,66,146,50,12,149,111,169,149,60,24,131,119,82,143,117,249,85,100,246,27,79,16,35,146,176,111,79,67,136,198,30,
110,96,196,208,235,191,103,196,233,31,131,161,101,164,152,25,48,171,65,150,113,186,65,66,214,179,55,8,102,57,241,6,242,223,199,99,66,206,74,4,144,66,118,76,244,2,220,240,98,249,95,55,119,99,216,104,224,224,158,130,48,208,181,155,123,76,86,206,12,225,194,31,236,135,179,190,4,112,240,73,1,112,7,159,239,41,157,157,53,124,249,207,109,160,21,207,26,215,207,142,238,178,29,243,12,40,22,58,146,250,96,173,169,84,10,107,28,73,146,116,181,222,226,90,77,39,91,214,59,243,236,85,116,38,76,137,220,30,121,60,219,200,45,139,42,55,105,223,93,220,120,46,165,202,147,173,166,53,106,25,231,92,115,52,170,236,104,160,9,172,98,38,6,145,205,250,2,241,1,19,75,41,28,243,65,147,128,79,74,138,120,107,9,39,230,244,195,74,99,22,248,153,249,189,16,186,113,22,158,67,150,1,32,186,11,0,2,144,192,188,16,247,18,145,121,201,42,142,250,147,11,202,101,240,59,65,214,153,137,141,38,211,194,115,183,29,26,58,171,179,241,189,130,112,165,250,
93,91,81,116,145,73,161,145,249,142,17,252,170,160,112,102,209,223,207,179,187,117,235,65,4,20,20,59,139,6,64,235,36,28,130,201,250,76,253,109,133,249,72,121,12,222,148,171,251,248,198,207,135,225,227,131,209,59,82,19,68,66,112,255,1,233,85,211,69,159,171,151,124,193,235,113,63,85,128,238,36,118,31,15,135,60,245,17,149,35,12,79,191,202,163,104,247,189,53,5,91,254,166,180,11,54,242,128,114,237,237,35,142,201,232,61,191,89,249,202,131,203,208,253,112,63,54,129,1,210,204,100,54,229,91,49,61,131,226,131,54,133,6,131,247,97,31,75,229,138,178,70,112,0,242,87,12,80,211,224,201,244,253,203,0,134,185,154,123,5,204,236,204,110,147,37,252,105,51,121,172,204,164,66,222,235,109,61,163,195,159,234,165,21,216,4,202,85,151,163,27,88,7,224,119,144,76,105,153,122,184,32,29,103,41,11,25,151,205,106,214,234,182,7,40,118,125,39,212,167,194,253,45,46,149,46,95,244,253,241,116,123,19,171,105,72,124,92,49,132,222,151,161,186,197,248,
98,148,123,250,207,112,47,21,254,157,2,187,59,97,20,115,149,90,192,145,39,241,61,26,22,118,99,132,218,186,211,221,230,29,129,94,216,154,246,79,224,42,228,99,111,210,1,55,184,182,209,154,67,17,208,101,216,31,213,123,154,222,214,154,223,133,29,160,34,136,251,117,15,138,160,106,24,232,36,125,248,185,31,206,2,13,162,240,26,28,254,247,15,243,178,62,8,45,132,150,67,132,97,132,112,69,58,147,250,239,71,9,104,197,193,115,147,38,8,58,198,248,193,206,127,46,199,217,107,165,126,120,233,169,154,6,79,154,185,4,126,34,115,172,52,212,127,252,215,29,76,28,36,237,68,164,244,40,54,112,124,106,90,78,34,43,121,59,126,93,92,195,49,250,162,250,33,89,37,249,200,1,49,74,86,178,222,31,8,112,70,208,140,96,146,75,158,18,134,198,175,182,240,23,94,56,106,10,49,113,73,37,91,130,98,17,61,89,58,160,162,108,69,113,73,101,118,210,72,166,229,151,24,8,9,255,2,43,137,7,110,12,230,229,38,177,12,12,131,182,2,177,133,217,30,133,
192,20,101,106,101,109,154,29,220,80,235,36,132,16,127,121,119,97,105,83,40,61,199,251,206,221,186,219,161,94,224,127,187,51,141,55,89,8,248,119,186,129,229,51,148,83,114,123,48,14,96,194,104,223,7,22,30,24,2,60,231,30,219,156,197,199,131,23,12,250,128,91,99,117,223,189,245,243,235,61,181,164,95,148,45,28,147,230,197,38,126,198,128,244,173,203,193,52,213,183,101,145,27,207,75,105,232,115,190,59,42,125,135,18,203,149,244,50,235,204,16,129,113,77,226,129,222,200,220,248,207,249,212,128,254,62,227,216,223,39,125,38,29,161,216,49,2,183,89,167,242,50,36,177,1,136,117,167,207,133,223,94,238,126,28,74,31,207,32,202,27,99,173,91,239,229,71,232,215,182,104,2,16,203,6,121,61,251,230,103,225,96,81,30,244,39,202,118,164,241,140,91,107,237,81,107,182,220,116,70,152,198,18,126,77,251,222,193,56,72,134,223,121,193,198,52,147,182,233,16,46,170,212,216,233,87,231,124,142,225,165,91,8,177,89,221,32,48,80,244,90,66,75,98,173,210,
173,153,195,155,99,35,200,51,170,63,99,118,187,78,175,198,240,244,217,40,156,226,13,33,95,157,69,255,93,245,218,80,179,123,73,231,238,191,145,81,122,228,106,152,228,228,200,240,214,201,217,231,118,123,146,237,7,231,97,10,81,52,9,246,74,130,207,125,87,80,91,212,223,51,95,119,185,124,156,240,51,187,191,101,24,188,241,120,14,53,153,224,155,65,80,255,14,59,3,129,217,132,35,193,231,247,30,90,230,14,5,205,240,203,157,173,103,2,94,3,177,195,24,131,0,196,11,210,110,57,168,78,15,164,5,82,50,205,215,155,31,56,7,189,4,96,51,223,81,19,66,20,181,252,41,124,47,192,169,170,92,50,90,134,222,118,57,136,135,194,120,164,53,48,14,156,216,234,118,8,5,253,238,40,105,202,226,116,123,9,227,230,59,43,53,50,253,9,3,148,210,44,247,146,251,236,12,230,225,20,211,236,125,61,214,129,237,158,88,184,242,82,109,15,99,81,138,230,135,66,74,90,82,69,77,154,185,218,168,106,22,223,205,226,51,151,105,249,159,207,98,254,112,232,100,151,
102,171,42,158,47,105,12,244,227,87,68,106,137,252,149,4,73,65,53,114,5,137,77,78,181,215,160,229,168,178,103,102,81,83,52,32,22,20,16,152,129,28,113,1,32,85,129,97,40,106,33,169,188,212,189,37,133,147,92,25,82,221,19,127,77,218,96,209,226,246,120,212,249,124,239,4,214,74,159,192,156,98,97,174,38,184,232,223,218,219,233,55,68,167,202,233,235,79,53,32,44,110,191,17,171,1,124,20,51,213,191,191,82,210,190,251,202,40,67,74,235,115,252,152,185,57,170,174,221,115,189,250,62,7,207,203,238,253,14,50,79,251,30,176,71,105,5,100,220,56,117,121,108,16,227,59,31,36,21,145,13,192,15,186,124,131,195,137,137,2,34,116,128,182,6,53,47,133,78,249,145,10,30,4,100,144,215,36,171,47,176,90,228,40,224,103,244,196,3,99,39,99,206,17,160,144,192,170,71,242,118,103,203,157,211,197,6,147,57,159,56,14,44,236,128,182,157,210,196,170,184,192,99,112,163,34,14,55,14,224,98,110,126,121,30,215,226,172,131,31,172,22,219,253,249,204,
99,29,172,21,66,41,217,186,168,220,23,195,204,214,226,218,90,167,37,151,202,4,175,201,232,88,164,209,202,108,138,86,136,23,171,132,211,50,225,142,234,134,162,247,163,110,5,3,174,151,169,250,170,152,213,82,254,135,30,235,132,219,165,40,65,206,59,210,154,210,161,31,93,163,118,129,12,83,200,248,130,105,130,193,78,244,135,245,234,33,52,166,212,227,22,70,92,206,197,237,43,75,40,222,2,5,196,77,42,111,86,72,130,87,169,223,64,4,33,144,198,132,1,78,189,142,99,158,213,107,148,172,87,73,218,152,129,211,24,88,248,198,249,151,89,18,180,177,201,62,73,174,146,106,43,37,164,121,36,57,108,38,173,200,254,199,193,137,38,194,58,53,37,57,245,86,220,174,167,194,0,255,153,25,60,122,161,160,254,222,94,108,119,122,72,59,193,64,92,89,13,110,42,155,11,195,19,174,136,195,95,213,108,29,160,239,123,65,8,182,181,42,214,208,16,34,202,146,146,102,52,145,228,253,91,45,52,219,205,179,213,36,8,101,191,79,254,196,247,230,127,79,239,147,253,152,
173,50,228,178,216,179,212,84,109,150,180,83,241,252,7,136,195,34,152,54,172,166,131,248,36,86,188,116,104,137,255,229,224,190,84,40,0,216,106,48,178,40,69,243,140,32,25,22,12,14,138,170,46,195,32,29,95,253,32,157,210,9,98,192,57,14,101,207,107,19,198,121,173,251,36,115,32,116,60,170,16,157,55,100,105,135,62,20,70,186,55,34,171,32,112,21,81,247,214,97,125,245,105,7,22,4,190,53,36,190,182,61,122,77,129,200,20,209,252,133,193,66,12,72,171,223,183,243,188,27,82,207,38,251,197,196,98,177,166,150,193,175,94,187,85,7,24,52,210,119,39,92,71,106,53,45,60,89,117,235,48,133,52,72,77,208,155,169,178,218,99,113,101,40,56,5,188,129,177,234,252,134,211,149,181,197,21,147,239,233,245,129,128,153,38,128,160,95,107,74,47,133,168,253,182,102,250,27,165,69,39,10,152,138,222,187,247,196,39,87,242,152,224,253,153,170,48,240,151,139,6,19,123,120,125,225,190,150,62,186,186,53,167,79,173,225,210,39,214,204,12,17,149,121,58,136,
238,107,136,121,114,83,97,173,224,100,164,226,236,224,217,41,92,13,47,241,247,148,91,136,32,29,136,38,133,153,243,83,101,74,170,177,11,216,85,252,243,35,41,49,241,155,195,94,253,132,173,169,182,51,24,178,54,116,52,171,60,101,253,78,84,63,149,243,144,210,3,159,76,62,12,151,115,46,161,201,69,222,81,188,21,93,138,249,212,143,93,8,180,144,108,221,159,147,150,237,185,213,13,229,117,193,236,112,72,126,252,118,132,231,40,27,134,189,246,246,163,114,127,113,171,95,65,213,236,101,6,244,162,84,85,61,210,131,128,88,165,8,245,163,228,93,116,203,240,107,201,34,94,92,212,144,23,6,169,120,246,247,140,84,206,237,72,211,138,207,178,32,7,99,99,71,228,44,122,6,150,159,119,115,26,77,254,157,239,199,222,236,52,217,227,64,208,242,100,21,114,0,80,20,103,203,220,153,179,124,100,52,40,98,157,86,51,61,10,112,35,1,228,84,186,74,162,159,187,81,96,182,154,66,11,88,69,156,219,154,10,200,202,177,136,37,255,218,116,46,213,116,202,143,131,24,
159,207,63,1,217,190,8,124,215,63,177,178,173,55,240,211,12,118,26,245,0,33,17,66,69,134,45,70,84,71,104,81,38,71,208,104,64,15,46,250,229,32,65,42,202,21,196,32,220,176,64,172,23,71,234,51,160,143,60,37,36,97,32,216,207,61,231,202,119,116,203,143,35,170,110,25,130,96,173,30,170,81,70,57,10,41,146,193,202,134,254,96,98,218,51,95,77,58,251,29,61,15,62,79,18,153,213,100,56,218,239,11,62,233,11,237,251,195,23,146,210,211,242,208,149,48,244,221,255,129,95,72,156,239,243,153,87,109,23,105,108,123,78,250,176,44,143,152,183,106,109,163,35,57,161,165,243,105,147,91,223,134,165,48,173,119,25,168,47,61,1,56,244,65,138,42,220,21,135,213,74,222,205,236,181,0,222,250,183,246,194,22,210,1,1,237,218,121,247,225,132,32,112,189,43,244,61,236,20,224,248,33,137,209,99,176,232,4,100,242,81,22,205,61,6,195,162,154,71,161,109,153,117,151,142,240,61,59,97,212,150,143,170,243,87,101,16,14,38,215,18,81,196,112,40,38,
30,70,60,164,212,87,82,58,249,224,191,227,13,223,147,148,150,248,133,160,228,176,216,90,246,51,81,179,159,250,24,216,74,228,28,178,205,189,156,194,68,23,128,16,232,96,15,111,179,197,216,117,90,52,205,175,215,199,32,245,247,185,40,97,143,91,40,93,10,20,253,165,222,92,227,195,74,254,144,228,246,109,174,168,194,102,239,90,144,127,71,135,82,114,245,135,101,5,60,57,38,149,224,70,173,66,150,120,122,185,128,96,140,216,89,125,103,98,110,191,93,249,59,140,229,91,57,240,32,43,55,180,143,233,195,174,38,164,60,226,15,172,85,191,36,145,84,212,194,242,211,182,199,246,14,38,54,51,218,50,178,2,182,87,27,238,135,136,197,25,30,7,203,237,65,35,102,54,251,81,137,97,201,179,157,199,105,183,114,9,179,19,138,117,202,189,136,196,159,168,199,106,156,232,85,217,151,202,71,87,166,245,240,233,216,222,109,140,91,46,86,189,246,119,249,37,32,32,68,34,148,20,42,128,244,133,223,12,39,156,174,184,112,118,18,15,186,179,51,19,81,248,113,187,39,9,
107,185,10,33,7,4,196,126,63,0,149,112,75,28,131,68,88,76,206,168,5,88,248,119,238,91,207,63,243,169,246,251,213,47,62,10,149,76,245,116,233,16,57,33,65,56,131,16,144,180,176,154,182,251,195,162,21,82,50,5,202,134,133,144,41,220,135,73,131,66,111,50,187,60,208,202,248,163,2,255,236,162,224,210,1,32,39,63,167,157,180,180,238,64,150,53,168,49,35,251,170,171,226,126,175,54,186,54,115,201,38,45,240,170,224,217,171,78,204,16,113,77,180,65,123,178,84,202,161,40,123,64,233,238,130,42,22,167,140,160,139,175,164,148,217,250,190,156,227,207,7,222,203,237,192,31,130,82,235,190,59,63,138,18,5,107,102,8,111,87,239,161,251,127,54,8,7,144,122,10,180,87,77,173,245,55,22,9,20,151,97,236,206,24,206,147,71,204,176,31,179,95,219,5,65,166,15,208,11,253,131,200,238,222,87,185,134,3,160,34,44,165,9,230,130,152,154,30,86,157,224,31,111,102,238,15,28,173,234,35,67,176,78,215,218,143,182,255,89,254,53,152,69,7,70,77,
131,233,212,195,242,239,166,196,49,191,126,83,142,167,201,103,216,59,249,47,18,147,153,149,28,15,6,134,145,136,157,252,93,244,182,239,210,173,27,203,154,91,4,216,79,128,192,170,7,57,106,179,129,68,191,68,33,86,29,247,138,202,193,101,18,66,29,135,38,113,132,115,41,29,209,125,171,66,31,146,192,3,232,13,183,219,227,114,132,117,23,28,66,71,127,68,103,115,241,112,37,249,50,72,89,222,5,36,155,222,199,201,214,191,207,153,239,124,81,70,165,241,39,148,107,79,120,196,32,196,57,91,243,40,63,77,67,51,167,189,217,28,177,53,95,187,172,36,158,108,176,191,16,117,41,53,92,147,179,247,12,17,133,177,134,9,222,97,153,164,116,74,23,200,171,116,12,247,239,79,67,96,87,252,241,93,13,234,73,143,237,149,65,200,58,157,212,133,90,104,227,135,77,66,143,60,142,121,249,120,191,126,18,107,156,252,60,165,37,34,107,233,93,207,39,69,97,193,65,255,156,178,14,212,83,90,122,47,199,136,67,15,16,157,129,20,152,229,42,54,3,241,36,240,251,221,
149,60,191,188,149,5,62,90,84,208,140,182,180,148,140,53,42,220,246,180,191,179,47,248,161,80,61,167,27,62,79,203,243,110,58,36,241,47,36,142,254,5,23,100,200,8,128,103,43,152,205,28,168,148,76,63,36,113,72,177,137,99,83,176,183,226,114,46,238,128,91,2,132,44,13,68,107,2,170,88,31,71,66,120,118,44,137,234,71,224,237,164,85,194,166,69,185,230,194,60,242,169,101,52,235,44,187,203,229,240,106,42,203,56,150,218,195,70,237,87,33,69,2,171,42,131,167,126,112,142,59,191,251,161,17,37,254,154,69,164,59,2,148,107,251,7,22,163,36,184,39,135,97,203,108,241,235,184,124,44,138,219,168,159,192,119,188,231,115,175,184,154,36,44,159,186,74,255,155,149,86,25,78,86,52,7,57,131,181,22,65,223,65,219,225,110,160,32,72,159,231,128,161,69,210,148,181,10,251,49,64,25,67,122,241,0,148,158,175,205,246,239,71,85,245,15,13,227,244,4,186,33,143,209,43,128,17,184,91,87,170,243,189,243,175,119,0,135,10,24,233,220,221,255,163,225,
156,154,165,105,186,110,253,215,171,109,219,214,106,219,182,86,219,198,106,219,238,125,63,239,23,59,162,162,142,234,32,51,38,198,53,34,103,86,98,168,91,10,0,42,244,169,101,230,156,151,116,252,107,199,225,70,203,246,141,194,77,83,12,156,149,20,87,154,176,132,60,219,243,37,230,131,180,180,210,192,116,202,208,8,236,176,111,219,92,6,214,114,47,10,82,110,104,111,46,52,192,29,156,153,56,104,119,125,203,171,149,222,34,92,125,127,203,223,85,28,78,184,188,36,48,35,72,92,177,81,84,16,241,233,206,194,249,98,182,240,204,201,223,251,212,150,254,252,93,115,20,142,246,79,201,168,215,240,239,214,56,191,161,195,193,126,195,107,204,117,67,238,147,132,223,148,148,186,229,128,211,60,247,122,175,156,205,220,240,97,136,142,108,187,88,98,8,24,154,45,187,177,142,145,185,7,118,4,243,55,245,65,132,5,34,75,106,18,137,252,156,170,208,212,195,135,17,147,180,0,212,190,15,226,133,62,84,233,185,128,25,225,77,7,17,57,183,224,14,75,227,229,117,251,196,205,
38,163,219,228,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,77,49,107,72,70,75,69,242,195,194,181,119,205,117,148,1,175,255,10,156,193,120,215,233,132,122,130,120,138,72,95,29,56,208,241,100,178,55,19,250,249,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,195,14,233,134,237,187,210,124,22,74,130,235,153,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,188,31,48,202,168,253,167,250,201,19,106,154,176,29,47,121,14,123,175,221,97,56,79,168,7,98,148,227,192,118,3,202,203,207,14,91,204,128,174,62,91,233,88,53,241,193,26,172,88,200,103,102,44,251,157,54,240,167,45,146,245,137,237,73,203,191,248,217,251,102,148,186,107,208,146,224,188,219,6,83,24,124,131,30,204,75,178,218,23,194,194,168,194,156,51,5,192,193,28,74,111,
199,62,233,178,122,249,247,135,166,31,132,112,194,244,84,155,88,128,64,62,52,95,171,237,125,16,32,109,0,41,218,205,140,60,7,75,177,149,30,94,233,236,241,104,135,25,178,242,69,241,69,221,117,88,173,94,122,44,66,116,54,254,44,59,225,175,159,0,3,43,195,47,40,204,100,252,105,58,204,132,33,198,224,137,104,152,8,23,18,136,46,180,133,74,11,148,76,90,218,7,178,209,85,208,254,39,111,158,164,65,204,210,162,196,179,228,41,248,188,136,175,175,52,99,62,214,125,245,217,25,27,78,150,209,219,125,214,219,43,170,24,114,178,144,60,74,116,223,235,109,203,208,79,80,142,78,135,77,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,3,22,110,92,32,17,118,23,233,161,76,93,55,51,136,97,252,179,158,212,16,29,71,117,157,110,90,163,213,207,220,138,65,40,26,228,55,176,18,76,24,53,251,234,16,150,20,102,161,229,123,223,154,217,1,195,126,11,204,
182,4,236,52,228,132,176,254,37,31,82,198,24,40,66,186,246,210,234,168,163,250,23,245,233,231,14,43,138,41,103,84,84,232,21,211,113,29,111,0,254,238,16,241,228,4,2,132,106,107,10,66,144,43,57,27,147,37,161,97,193,166,122,81,109,243,64,28,2,158,88,110,167,78,85,79,232,76,44,77,238,4,66,41,69,92,128,48,19,133,66,60,134,130,141,93,179,16,29,172,120,159,160,147,67,170,154,90,195,104,58,71,130,120,40,215,252,125,15,178,50,214,72,194,9,135,58,56,1,235,74,84,16,253,81,188,64,20,64,228,34,189,239,8,122,166,139,56,182,87,160,53,253,206,0,100,148,238,212,16,33,173,0,212,26,107,190,222,138,239,8,103,147,250,165,181,22,179,242,19,53,61,214,99,132,254,115,143,251,255,231,228,222,223,33,219,179,199,117,178,80,109,135,73,61,201,95,79,78,169,117,36,47,179,235,123,202,250,158,184,72,22,80,160,93,241,25,245,127,234,140,167,63,49,96,238,151,96,125,142,144,147,34,224,45,21,255,14,182,73,186,190,12,172,208,74,
62,119,187,188,30,195,46,37,8,69,50,235,195,124,155,203,202,187,84,188,68,6,30,154,4,101,150,15,194,0,47,3,157,27,66,77,136,47,39,166,103,100,114,137,115,37,101,224,123,167,120,59,41,180,174,234,242,183,45,51,21,130,149,190,165,120,145,137,118,106,70,160,177,142,42,37,4,120,236,20,24,32,54,33,183,174,80,104,86,50,151,201,63,55,66,135,139,135,118,134,2,203,254,220,113,91,187,54,3,197,33,4,190,38,102,242,13,242,162,201,124,152,69,167,32,161,122,65,251,181,98,208,12,127,134,153,227,198,238,223,86,200,234,113,221,243,9,247,220,230,105,86,66,77,245,135,227,115,72,145,40,29,25,195,153,161,105,34,69,171,224,27,214,179,252,5,77,224,37,33,52,163,118,2,59,106,159,109,223,191,191,133,86,94,196,123,225,3,176,167,162,51,34,96,156,209,202,105,34,196,51,177,14,110,215,188,118,254,129,130,67,42,202,230,108,9,133,220,32,96,143,240,9,167,105,56,236,132,18,193,208,165,112,145,21,220,230,68,204,174,142,173,211,219,233,89,
217,5,43,135,68,244,228,83,58,4,248,251,94,77,80,182,151,168,202,184,116,78,131,168,174,36,158,52,133,42,195,101,164,197,184,152,17,229,101,149,34,67,158,170,171,113,146,224,241,16,243,254,146,174,39,196,123,224,111,245,150,7,247,186,170,224,177,14,121,102,56,227,160,107,169,165,133,9,242,32,177,148,152,40,19,37,97,214,201,114,72,115,82,30,33,86,17,219,76,144,170,195,237,116,57,30,127,253,234,211,87,237,119,60,173,94,35,153,176,39,206,124,247,43,207,200,15,62,101,200,56,22,129,167,192,111,144,132,40,162,6,142,231,231,59,108,83,200,62,44,221,178,140,60,137,179,138,11,159,117,3,131,126,50,198,138,143,56,191,206,159,157,158,113,213,57,233,44,202,204,173,187,165,33,91,120,234,239,79,126,73,125,18,17,142,191,52,173,133,5,134,12,217,2,80,254,249,147,227,205,49,126,58,202,73,28,172,97,182,245,244,243,106,9,50,131,47,192,168,27,17,75,49,251,79,249,142,83,22,112,64,203,222,190,66,182,228,28,249,114,169,43,240,152,130,148,
165,35,106,166,241,57,225,238,20,102,142,200,99,88,250,100,176,151,38,161,241,204,26,203,123,121,191,7,133,115,59,82,51,169,234,210,183,168,135,150,119,130,239,75,57,51,73,117,132,13,103,14,77,125,120,102,93,132,180,80,223,139,62,43,59,157,60,53,163,165,111,54,171,175,86,62,220,198,170,229,127,45,122,203,91,123,193,231,206,210,186,59,133,175,13,71,82,202,78,154,111,64,172,125,60,6,185,177,133,248,166,18,4,98,5,7,226,240,13,60,22,230,196,109,145,200,6,109,250,18,65,119,132,244,50,242,211,104,93,156,15,222,34,138,51,28,128,123,196,163,22,15,114,38,27,93,31,120,123,15,181,142,236,116,145,150,130,29,232,18,93,58,207,230,135,199,205,102,181,255,182,56,23,232,103,39,71,22,68,133,121,86,82,8,18,132,53,21,228,106,46,202,55,190,62,219,70,165,30,196,65,225,112,129,0,118,16,176,212,150,216,155,214,133,15,205,193,235,243,14,166,109,42,202,63,178,195,222,153,64,239,2,37,208,24,4,61,9,31,209,128,194,73,196,72,83,
70,40,31,8,41,137,44,203,1,164,8,146,140,115,132,231,61,30,71,108,220,51,110,165,120,53,12,254,49,36,9,0,31,40,103,23,236,64,221,89,105,56,211,240,104,229,28,150,141,169,204,152,179,44,145,0,196,255,89,104,113,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,120,22,50,21,226,38,126,132,164,251,80,253,125,243,49,255,66,20,144,70,37,184,237,125,104,186,139,205,122,201,19,177,249,133,225,31,216,206,188,21,231,251,111,252,184,255,171,21,216,220,196,42,40,48,213,64,238,137,141,92,6,14,181,211,246,208,239,128,217,140,99,14,68,88,250,252,29,108,221,253,51,28,6,43,51,95,41,187,35,167,223,89,127,101,171,27,6,103,140,29,161,95,57,21,230,90,193,135,102,127,204,182,84,106,68,105,25,64,179,248,65,103,188,223,232,248,137,156,37,71,208,205,217,248,242,24,31,145,2,8,99,48,35,164,217,224,109,6,51,39,191,22,217,24,48,158,195,236,55,157,248,40,135,153,176,164,88,32,246,60,
75,45,149,224,23,168,214,16,44,74,36,235,66,158,196,198,137,170,78,54,106,157,175,91,205,126,95,215,231,189,191,244,223,254,55,68,178,215,67,97,66,133,254,57,184,91,69,76,234,202,189,233,131,56,255,220,255,125,250,157,228,171,72,111,165,222,242,169,124,126,66,253,231,56,160,47,84,245,105,168,62,65,75,88,84,155,70,14,94,64,94,36,188,101,184,159,122,86,99,106,22,255,26,96,244,198,30,165,191,18,241,161,248,240,40,68,135,232,31,71,11,231,38,74,152,183,140,225,8,217,64,53,148,132,222,41,135,122,54,170,27,84,54,84,183,102,221,22,19,60,141,187,137,34,148,238,103,143,81,239,169,129,243,249,106,48,42,175,46,159,153,137,146,183,189,124,127,120,2,6,72,66,34,59,129,133,154,188,36,75,41,82,153,238,97,49,113,119,229,66,2,50,82,250,9,39,235,50,217,8,251,92,252,184,7,17,224,130,4,129,67,122,122,89,37,61,244,37,9,228,83,38,14,192,186,222,252,123,40,135,23,212,100,8,42,162,244,104,69,101,176,201,29,36,9,43,
44,35,98,32,13,228,98,60,172,26,2,218,143,133,156,253,30,241,254,16,74,48,41,16,116,19,133,171,9,41,181,176,53,0,255,8,36,206,90,214,224,95,168,26,5,82,180,127,23,16,168,77,60,176,226,162,188,30,134,2,113,183,56,140,47,172,85,12,43,14,35,194,178,51,154,254,234,60,234,111,145,100,155,68,183,207,195,186,231,154,198,142,24,99,213,135,128,127,182,167,233,247,88,82,175,120,127,37,134,79,145,83,39,73,175,17,39,184,129,250,191,135,255,97,203,123,204,48,119,224,154,239,136,73,182,192,156,116,223,74,106,231,251,180,185,248,96,109,202,107,175,75,65,128,122,128,211,249,181,17,174,239,219,246,89,116,135,25,47,103,90,145,166,232,86,38,90,67,82,189,130,61,44,188,32,219,35,168,238,158,167,121,160,241,123,107,137,114,202,244,118,96,105,50,134,18,78,30,255,54,51,25,45,76,118,18,198,123,142,108,196,82,95,178,28,91,130,63,53,212,120,43,230,111,4,159,71,60,252,253,248,189,29,63,134,251,120,74,149,159,132,86,68,97,150,209,
25,9,24,131,247,163,172,26,3,203,53,120,32,68,160,191,104,27,18,172,85,95,17,35,127,119,132,62,60,198,253,157,24,191,216,10,126,230,211,178,211,251,191,159,52,83,240,53,48,129,1,178,51,81,206,253,31,14,46,29,134,128,220,215,37,248,203,20,188,19,156,155,13,104,245,57,42,102,236,117,19,8,241,247,70,105,253,198,199,166,4,42,191,65,178,212,69,114,135,9,189,64,98,208,63,71,16,214,118,131,253,136,69,31,254,144,177,206,194,238,214,38,6,91,107,217,16,95,62,37,138,208,230,67,197,101,7,9,169,153,220,180,53,157,252,115,91,139,4,78,162,222,90,187,226,227,242,247,20,44,98,166,255,172,160,96,152,103,246,31,216,107,89,24,200,205,213,73,220,248,220,144,136,8,192,32,34,4,71,190,33,26,21,223,10,243,155,75,153,94,3,5,129,17,76,182,22,82,148,145,84,212,225,153,133,229,155,80,80,224,214,103,138,230,115,202,25,132,162,138,145,200,166,36,119,29,254,72,43,238,133,59,172,144,208,97,212,103,64,198,96,231,224,102,18,60,
16,88,94,37,129,91,92,99,137,103,128,64,93,2,140,250,67,125,0,33,164,236,196,74,176,195,5,2,178,31,14,255,88,194,189,131,199,85,253,178,244,141,206,175,135,188,124,35,199,176,51,208,16,199,78,212,209,59,222,249,171,141,91,36,82,241,206,245,83,6,163,80,194,12,107,2,194,52,92,146,200,87,174,154,252,190,255,107,49,151,247,55,170,200,108,247,186,168,163,221,244,143,93,206,151,64,242,36,110,97,17,133,134,60,236,213,234,143,23,77,109,25,55,116,100,55,33,35,91,233,95,122,226,158,205,178,38,47,123,217,76,59,144,87,81,60,253,243,143,159,235,17,184,122,204,168,116,4,136,72,168,166,33,94,85,227,76,3,245,159,47,32,16,158,208,199,136,110,72,207,78,194,138,180,171,35,163,116,15,183,203,245,1,211,44,201,119,199,59,236,250,26,212,128,178,152,146,58,64,108,85,182,210,48,4,144,20,236,75,122,106,22,213,18,27,171,156,180,255,245,231,154,231,125,95,29,19,22,40,224,118,31,191,108,147,219,244,107,252,11,141,95,215,97,239,251,
189,98,167,150,213,97,77,34,94,57,229,183,90,115,187,9,18,28,7,140,29,89,235,195,186,145,230,66,188,28,182,236,246,13,28,140,92,195,79,69,110,171,90,23,221,189,41,116,90,162,206,123,35,104,102,122,43,183,126,210,155,237,104,159,188,92,7,253,83,216,155,224,217,237,167,132,253,133,107,73,47,150,26,254,85,27,13,91,92,69,144,22,97,182,92,134,164,17,32,50,213,224,64,93,139,199,175,136,210,12,210,96,130,60,21,107,186,185,55,66,58,97,36,225,3,242,78,66,183,242,73,6,170,9,138,21,107,27,133,222,14,192,22,39,71,108,153,159,103,45,135,46,138,152,22,58,34,137,55,86,234,125,155,14,164,132,10,126,79,135,232,60,113,98,14,231,142,30,255,168,141,103,205,234,228,109,115,192,139,130,189,200,65,127,110,116,116,157,219,32,134,121,101,131,121,58,116,65,120,104,106,148,53,147,126,128,169,68,75,229,255,236,119,178,31,177,212,231,237,191,32,8,3,165,236,73,73,129,215,57,224,54,123,45,143,215,35,113,105,189,224,24,85,48,235,186,
175,183,75,92,68,196,33,182,100,175,43,213,77,52,125,169,59,236,69,34,241,220,104,226,220,186,206,89,185,95,16,242,171,159,51,12,174,20,211,80,201,73,147,230,68,255,121,153,80,5,110,242,32,231,221,118,155,228,46,73,205,10,94,111,155,68,116,80,60,54,57,90,117,206,81,63,144,36,77,83,22,72,113,76,87,182,128,205,154,238,28,239,76,209,21,37,175,206,15,47,43,51,94,33,53,57,166,108,24,251,225,81,233,165,159,177,184,185,191,250,93,174,239,34,183,89,47,64,58,79,170,46,42,167,163,210,230,6,45,183,252,22,3,163,24,156,131,250,7,28,100,123,128,37,146,104,30,149,136,252,247,247,20,255,37,16,182,48,231,16,27,238,176,31,142,176,85,7,42,225,247,245,170,249,235,121,61,110,110,138,110,112,78,160,91,217,205,132,124,245,29,136,242,77,199,78,36,254,243,70,45,38,200,88,232,107,203,151,71,217,5,9,37,31,54,77,247,234,186,133,28,48,161,116,127,184,42,53,64,164,213,40,113,198,129,0,163,132,68,114,144,205,214,179,142,15,
32,63,204,189,206,65,81,250,15,96,164,24,129,172,116,114,148,130,10,150,151,14,232,151,231,218,54,14,2,233,94,48,65,140,113,19,245,76,209,102,110,252,217,35,176,183,206,225,26,166,240,127,16,22,84,193,218,59,98,239,254,82,206,149,151,66,88,86,146,199,175,45,23,216,5,174,171,170,30,19,212,31,42,138,136,249,151,46,69,245,142,125,155,5,93,137,136,139,21,145,224,197,132,240,102,116,250,34,249,216,122,76,162,163,144,152,126,202,33,250,110,0,120,159,160,197,217,15,239,228,224,245,103,134,110,222,120,93,69,103,98,85,20,44,44,161,18,66,58,199,13,88,56,193,194,106,157,234,74,63,4,237,140,43,153,8,54,39,163,233,233,50,2,174,128,177,245,113,100,143,82,39,188,244,91,59,159,169,7,184,198,61,112,251,169,223,210,79,252,62,8,100,179,16,48,119,104,154,48,220,3,102,145,184,56,24,215,49,98,255,157,22,96,169,77,67,54,110,195,145,115,159,214,152,194,239,201,221,7,187,183,127,171,228,120,40,152,129,133,93,39,85,109,159,199,56,
106,244,75,164,6,236,46,175,40,122,246,23,225,151,162,210,148,54,224,201,33,9,8,95,93,98,206,197,99,47,8,216,96,100,69,178,15,36,160,101,80,254,143,26,183,185,133,129,146,47,67,40,153,50,77,249,154,18,211,29,146,227,33,237,47,8,46,172,247,151,145,14,185,51,105,104,41,212,154,145,241,216,158,81,9,169,190,126,110,20,143,171,173,247,36,247,155,62,161,227,100,151,98,242,212,176,143,142,178,24,182,226,57,135,205,15,179,49,51,133,3,34,196,167,108,65,125,53,216,85,166,4,15,138,43,20,218,198,255,29,45,68,211,218,36,16,42,237,54,77,166,208,161,252,240,40,91,56,197,234,71,35,203,229,106,176,238,111,239,102,247,2,177,203,5,97,214,36,249,97,211,117,144,238,255,132,76,105,205,74,110,24,148,46,52,178,230,99,104,127,0,1,245,12,127,236,181,204,37,23,83,48,36,5,8,181,70,9,24,145,102,97,26,1,129,143,69,74,5,34,58,60,187,66,32,108,78,60,89,230,16,112,180,9,116,106,83,8,78,71,104,99,174,11,214,22,
236,0,12,228,195,129,126,45,129,202,171,250,65,10,51,165,41,161,101,1,37,72,85,193,106,88,66,88,193,208,5,120,82,178,164,216,30,154,126,70,244,206,91,73,16,160,152,177,240,180,42,34,154,41,187,136,192,211,21,182,150,151,71,30,210,237,137,199,2,228,15,2,78,6,141,19,12,200,201,197,179,41,0,40,6,78,105,242,64,109,11,7,213,210,82,123,115,180,220,49,23,98,12,96,110,105,67,208,235,179,60,193,156,79,87,91,139,239,61,100,51,160,8,124,27,119,72,248,48,7,94,235,24,190,55,31,44,23,31,198,65,200,20,85,181,127,185,143,85,121,255,111,212,162,244,248,44,227,68,81,146,196,83,120,46,43,120,28,44,11,222,193,189,180,172,49,211,191,83,124,95,112,85,151,82,52,96,186,217,96,8,70,13,252,207,113,29,87,237,57,84,106,149,191,26,86,214,225,190,114,177,48,187,152,59,17,11,111,115,242,240,101,147,65,192,60,95,227,171,160,2,62,143,5,134,101,144,219,138,243,79,96,62,15,87,229,34,20,221,93,210,254,195,156,254,43,
92,102,79,135,161,115,178,216,140,7,236,206,0,32,157,171,255,132,118,183,81,132,24,223,234,172,113,125,184,57,89,229,135,86,248,46,98,26,48,3,156,118,170,75,115,248,17,207,5,214,109,124,57,57,153,229,191,152,155,90,119,87,17,82,176,69,243,103,197,165,185,56,196,192,210,122,152,108,0,35,42,34,34,67,121,219,255,42,243,133,245,72,29,191,170,50,11,168,213,14,75,174,113,78,30,168,194,95,54,34,53,38,38,248,143,33,254,14,159,191,5,63,143,115,125,33,200,101,125,202,128,20,56,129,192,116,250,35,187,50,69,9,64,183,240,169,12,68,184,194,237,208,119,169,156,229,179,160,160,152,211,198,91,19,52,197,57,214,58,204,124,32,22,242,136,66,44,243,74,147,243,108,234,222,168,135,134,123,146,76,61,199,135,62,41,94,40,164,122,57,52,223,215,114,5,11,98,33,59,214,22,178,75,14,17,85,70,236,126,196,53,3,81,68,20,181,5,92,132,53,127,106,233,191,81,31,84,6,37,153,227,147,172,252,20,34,26,218,54,191,77,51,44,98,30,218,
45,66,228,159,90,69,110,183,149,248,59,185,59,67,62,2,179,251,233,239,241,242,48,72,84,158,105,116,156,57,1,49,20,9,245,154,130,161,190,227,22,103,203,83,147,71,191,85,18,120,0,201,96,25,66,163,173,244,133,55,49,112,22,173,46,195,231,113,169,191,234,171,172,9,1,34,243,183,29,180,255,8,239,255,216,229,55,116,5,192,226,210,179,118,239,65,114,70,209,180,134,187,214,254,255,121,116,243,151,92,103,185,219,129,99,132,163,40,106,47,134,39,20,114,93,189,126,28,11,236,228,32,214,193,224,162,204,177,29,224,147,145,132,1,222,253,11,113,44,241,6,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,86,42,171,177,42,166,5,173,172,155,195,206,134,228,144,10,165,98,250,243,147,104,88,204,192,102,18,152,69,207,192,57,58,159,174,191,52,177,178,52,179,137,57,203,73,160,77,181,188,35,23,147,190,78,215,199,98,184,126,171,94,157,219,15,114,104,156,154,137,60,254,53,94,132,45,135,
89,239,84,245,126,177,250,63,8,36,157,210,242,144,62,84,226,26,59,67,99,89,251,196,15,15,13,62,241,48,179,93,104,126,98,108,84,48,184,244,136,196,32,167,24,37,93,168,155,57,3,134,81,244,160,85,155,229,185,245,195,187,17,17,74,47,8,17,118,25,186,94,231,128,38,54,12,169,4,8,0,188,186,231,45,0,116,12,37,73,30,6,46,8,154,27,161,87,80,47,74,169,167,156,168,83,178,175,158,96,157,2,173,14,29,93,181,67,38,218,86,0,12,174,205,250,32,33,22,32,38,80,138,124,98,156,48,225,50,26,180,65,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,116,234,206,98,96,108,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,170,43,100,199,60,56,145,123,240,205,37,72,232,185,144,103,66,74,164,87,231,186,125,110,247,87,91,77,159,21,169,112,78,45,156,209,146,234,245,42,147,89,83,255,113,151,215,88,250,67,248,
53,110,83,12,172,145,199,240,139,174,204,29,146,116,4,128,250,198,233,106,143,40,59,51,78,124,110,249,158,19,156,218,165,183,226,232,85,227,226,190,38,50,45,120,127,205,82,109,127,201,173,96,245,240,4,246,243,99,70,72,196,54,181,151,62,106,75,129,103,22,38,24,199,163,59,133,4,217,71,86,226,83,151,50,128,130,202,191,157,154,206,148,106,78,7,233,249,251,1,72,253,197,171,164,42,206,199,240,179,226,163,157,18,95,94,15,68,126,86,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,90,161,174,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,30,244,19,248,213,51,214,0,209,32,6,74,246,47,142,184,254,187,92,163,126,48,18,231,29,83,144,72,38,0,237,81,231,103,38,10,109,234,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,99,65,10,19,102,44,204,216,188,5,4,132,72,161,229,1,75,169,107,112,97,146,36,148,88,138,44,85,85,30,165,154,82,120,137,125,78,227,183,121,72,161,181,64,177,45,140,25,168,214,81,251,167,111,54,58,39,57,20,101,229,214,20,246,51,203,143,18,8,88,199,57,238,11,105,140,117,78,106,106,128,190,109,225,216,216,12,152,53,162,202,2,153,217,202,140,16,59,238,36,114,174,199,100,27,165,94,231,250,125,107,191,178,194,190,226,166,199,197,72,93,130,87,171,156,241,43,107,135,94,68,13,60,242,53,72,141,56,209,110,113,196,25,126,164,247,20,50,48,80,105,129,43,94,203,15,251,238,132,240,114,123,223,183,82,136,171,42,185,225,103,228,5,148,73,1,163,75,71,94,154,184,4,83,12,6,96,238,86,44,78,33,115,96,130,217,96,205,96,122,160,95,168,31,202,202,213,108,80,124,72,196,4,67,79,230,203,154,126,76,108,65,119,32,17,107,7,172,246,127,109,76,101,6,206,72,
7,93,50,250,81,145,24,41,66,198,108,174,242,237,140,217,163,51,78,12,96,132,11,179,51,73,68,95,97,136,106,167,33,91,89,107,237,2,23,91,132,64,206,14,76,163,187,223,89,245,254,114,15,175,234,121,52,122,197,205,59,43,38,66,242,136,183,143,21,226,140,110,100,253,210,118,52,17,201,165,41,29,67,213,64,231,55,20,227,10,99,26,46,157,3,224,227,9,164,66,214,37,172,127,194,125,99,62,208,158,205,185,91,81,152,7,224,105,211,164,250,71,65,199,235,67,139,215,252,133,193,104,250,153,99,113,73,37,18,97,22,184,222,87,21,155,5,173,85,13,8,250,239,40,37,96,116,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,80,87,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,169,15,147,207,13,51,96,236,233,40,2,54,151,207,228,48,177,81,10,190,196,72,247,161,64,126,4,143,105,89,22,135,198,193,160,210,12,173,100,70,142,112,26,44,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,203,105,126,214,10,101,143,95,58,103,21,253,233,242,31,27,233,97,32,183,244,57,81,216,222,142,15,159,86,107,113,40,107,209,90,54,145,213,45,208,22,76,186,12,136,241,216,252,172,191,90,35,181,234,253,93,68,182,227,91,105,223,26,130,59,158,136,236,231,150,8,34,225,99,171,137,154,220,254,113,220,62,90,144,81,160,38,193,98,28,202,184,190,177,128,70,116,41,155,20,131,178,104,74,196,63,146,149,235,7,11,189,72,119,161,184,212,55,155,153,44,78,154,198,70,92,79,26,10,135,195,27,253,35,167,45,176,242,38,83,183,133,114,194,238,135,183,125,255,217,31,211,169,16,250,66,237,15,118,112,154,217,4,254,217,106,36,238,235,
233,243,46,45,7,95,216,13,241,193,9,23,219,240,44,96,12,1,176,68,2,22,179,227,222,59,6,243,238,50,216,159,239,128,200,194,220,163,203,240,5,108,10,46,195,202,28,54,89,167,6,187,44,16,49,36,167,230,17,97,80,164,87,201,86,92,11,1,48,1,188,173,237,43,174,215,13,70,172,253,77,38,31,197,252,180,42,154,72,120,226,13,162,227,236,132,9,41,25,0,15,160,248,150,45,107,41,77,246,14,158,41,232,87,147,15,128,162,110,224,95,158,157,139,66,21,141,64,74,176,59,30,201,244,52,138,172,74,51,32,140,32,172,55,57,44,189,129,208,157,4,182,202,17,193,180,142,73,237,3,65,67,228,161,243,53,115,239,32,76,58,245,127,130,82,120,32,68,118,22,142,44,207,4,36,78,205,184,83,95,39,225,188,81,227,185,27,39,190,167,114,100,212,30,166,38,194,233,209,249,220,131,107,203,138,212,174,179,230,225,118,30,114,245,88,27,13,118,30,218,252,155,249,221,110,215,29,33,45,93,9,32,250,190,128,231,77,2,135,2,232,183,31,139,180,75,
103,249,108,107,59,42,228,191,147,244,233,144,134,32,160,250,198,87,13,218,251,161,181,207,247,209,59,104,49,189,97,145,233,29,51,102,46,204,239,150,255,180,227,62,176,56,113,67,235,31,29,117,117,120,239,14,150,166,112,121,32,34,104,40,192,77,221,101,248,44,234,76,243,199,75,45,133,216,161,126,150,132,115,230,73,234,114,203,192,80,79,122,65,30,77,157,211,24,95,93,13,137,40,151,95,26,70,62,169,188,178,164,101,82,175,242,124,28,128,16,85,50,25,217,26,201,168,104,88,80,147,97,97,145,171,8,111,88,105,227,88,46,135,162,0,231,156,196,30,220,90,181,54,76,66,235,194,6,189,41,192,184,21,47,69,28,255,251,43,164,25,96,130,206,231,110,169,30,82,60,8,244,168,236,37,142,190,131,187,0,245,219,181,251,151,250,59,150,128,222,83,47,114,103,95,122,66,150,149,173,215,160,15,217,121,109,108,88,8,72,218,203,45,24,220,125,171,110,192,46,7,228,96,140,96,120,119,186,91,45,25,36,64,154,242,201,183,18,183,141,201,209,153,87,36,200,
103,142,62,220,140,58,116,166,180,205,205,199,182,230,108,185,45,87,155,182,52,131,235,147,215,135,200,149,208,66,76,205,199,162,122,126,178,205,8,46,231,10,73,220,145,32,57,50,15,54,160,179,15,117,90,150,207,240,206,142,209,52,120,115,139,80,112,46,195,155,40,149,167,0,138,198,37,17,66,130,178,191,32,63,166,132,133,17,50,112,236,55,34,24,3,56,193,108,64,13,20,8,69,203,63,239,24,252,147,156,138,5,12,223,163,108,32,132,198,181,29,136,57,246,86,92,67,97,90,86,38,8,73,12,60,127,87,61,238,129,25,27,239,152,195,223,61,76,53,248,139,58,253,214,44,79,84,48,230,95,210,76,1,90,16,202,249,72,109,69,122,117,169,16,1,77,176,189,152,76,110,195,227,115,57,30,138,55,117,21,72,193,46,14,52,172,85,98,11,128,189,160,214,253,211,195,10,23,30,112,160,12,205,249,119,109,17,178,6,14,100,149,236,253,52,113,190,214,226,247,86,106,112,34,45,255,178,219,221,91,191,237,126,239,243,111,103,217,116,186,22,113,112,43,181,241,
217,152,136,83,167,55,61,237,140,37,135,198,130,7,128,153,80,40,97,43,236,89,123,169,53,105,204,7,92,69,94,244,186,237,175,200,197,5,162,22,254,72,166,217,151,87,194,88,74,187,6,246,152,238,246,139,183,183,198,123,2,123,172,169,30,126,157,38,242,1,127,45,78,22,239,88,227,45,183,50,206,198,62,184,86,116,16,33,188,182,231,99,221,182,190,248,35,67,211,186,101,29,53,65,37,171,144,33,77,21,25,73,21,54,2,17,249,174,234,24,34,12,193,117,84,72,13,146,225,63,16,101,34,158,255,117,27,108,143,215,207,84,179,4,4,248,11,117,67,246,47,151,151,137,224,161,237,17,147,160,214,210,69,28,100,207,3,238,70,185,234,105,49,243,237,244,169,131,216,253,128,83,89,241,243,83,103,197,19,145,219,204,162,34,105,213,176,161,51,173,141,144,31,176,70,152,233,249,104,68,220,186,11,160,191,136,14,192,47,158,26,215,124,7,100,130,64,248,55,30,173,198,173,91,208,144,138,18,65,206,71,236,174,221,207,3,83,62,34,245,108,247,169,190,233,124,
23,18,15,112,59,33,26,28,176,64,249,65,174,125,54,107,176,237,110,48,254,187,181,35,104,119,57,197,226,167,146,116,198,45,255,130,207,77,233,147,106,48,76,71,67,219,66,188,2,130,12,233,17,88,48,129,15,19,243,232,35,74,124,78,184,241,6,103,0,195,84,246,37,53,221,220,204,2,20,232,193,170,9,17,66,170,162,234,32,33,162,58,84,194,2,92,204,80,255,153,116,223,64,18,43,35,207,165,6,112,40,190,201,35,102,111,82,113,195,221,141,70,31,248,176,14,145,105,155,254,181,206,160,142,86,181,229,169,156,209,50,254,37,224,127,103,132,182,52,223,46,128,200,99,180,63,60,143,240,245,118,182,26,62,228,10,62,150,163,165,226,231,182,12,181,58,169,62,189,160,83,224,123,218,92,94,176,109,127,42,254,86,148,210,218,79,118,218,87,31,105,8,167,223,248,115,212,19,136,245,247,61,7,42,244,159,255,58,54,218,160,251,9,142,26,51,249,171,169,97,8,133,119,154,149,94,37,21,17,90,250,118,251,206,124,91,203,240,231,43,60,181,61,194,139,158,
184,225,17,47,250,229,243,126,110,130,242,231,245,78,14,253,148,1,151,206,118,123,253,227,50,0,140,117,84,159,158,161,33,8,26,22,238,56,161,195,10,2,191,74,148,159,211,14,61,19,236,208,167,123,95,227,175,251,156,148,221,125,214,110,206,66,70,14,234,208,168,101,250,18,84,28,229,133,23,244,69,192,149,120,194,163,195,77,87,152,204,93,9,26,251,127,23,172,213,12,244,28,183,10,172,67,109,116,233,40,90,213,43,218,116,243,108,102,245,48,131,88,72,117,248,150,222,62,191,219,229,76,244,90,109,234,79,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,212,93,187,32,253,181,42,40,199,229,81,157,13,105,13,41,126,183,174,143,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,184,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,33,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,94,79,175,77,236,8,120,124,84,112,196,115,107,99,209,50,162,212,129,66,76,2,19,175,234,0,17,175,206,253,93,137,79,64,206,13,188,119,139,102,150,78,22,159,152,253,2,196,219,192,105,248,12,248,4,157,10,53,53,65,77,30,6,53,116,136,234,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,53,109,34,95,120,216,230,252,4,170,134,204,102,251,30,204,250,136,237,235,113,89,47,167,202,225,195,69,74,65,37,170,79,93,67,204,64,225,159,35,234,126,87,241,58,107,237,107,224,42,123,245,68,11,127,153,19,192,144,246,155,172,248,114,122,191,58,224,146,203,118,188,167,249,23,240,105,189,190,110,223,238,175,112,244,180,199,139,98,64,252,100,25,139,125,88,113,147,158,111,44,108,48,96,189,63,106,223,146,207,251,213,84,248,193,31,204,78,18,232,130,21,95,
35,22,119,202,208,191,156,114,139,1,206,47,30,56,2,222,191,139,149,151,164,181,231,61,56,25,213,239,63,191,55,251,253,122,187,190,201,151,188,3,63,173,73,157,194,43,125,123,146,101,80,121,77,4,139,247,49,48,216,56,148,214,169,14,152,107,205,13,198,148,22,145,48,69,96,104,144,18,161,252,80,137,1,100,98,206,190,171,132,105,34,161,143,182,212,219,3,133,115,78,107,21,166,112,184,90,209,44,51,221,28,7,129,80,135,166,89,215,32,111,93,51,145,239,49,73,84,43,217,206,244,165,190,32,97,121,154,149,107,127,234,210,79,153,172,178,172,237,181,114,69,54,223,224,171,167,139,50,10,16,155,111,105,138,107,153,203,253,224,58,52,71,180,46,203,226,73,54,18,58,26,104,190,188,214,111,8,26,175,93,236,192,246,242,66,64,148,153,195,100,49,24,136,102,163,207,87,247,155,135,38,131,205,125,49,120,227,70,187,217,236,181,122,213,86,111,75,229,45,11,28,254,125,238,198,136,81,138,212,235,237,11,87,255,227,95,193,139,226,6,237,163,149,95,4,93,
178,224,193,128,0,214,49,134,110,197,39,8,195,130,66,111,241,64,33,137,68,136,36,88,221,157,96,162,80,182,27,208,254,197,0,237,225,33,18,111,18,67,200,63,59,46,49,111,175,196,33,95,243,178,146,237,236,147,251,121,249,135,183,187,131,60,75,192,17,64,198,12,26,117,180,153,181,236,90,168,14,94,253,154,217,221,9,173,92,13,195,210,120,136,130,178,32,10,40,89,167,41,157,254,123,69,145,16,183,226,220,39,188,247,24,2,177,62,215,64,128,14,3,106,90,105,205,200,127,106,240,172,235,195,32,245,129,161,47,148,125,24,193,36,187,110,89,145,105,71,63,204,6,205,166,42,246,55,47,203,162,151,128,213,108,83,56,222,94,253,221,229,114,232,235,121,116,252,190,38,155,207,235,112,248,102,218,171,118,168,29,250,14,95,139,230,161,27,212,127,238,127,127,107,89,147,56,247,252,171,47,251,115,10,4,232,248,207,226,4,249,49,28,119,175,221,139,252,225,235,233,155,197,53,125,142,23,173,251,150,207,163,167,110,209,127,207,34,76,86,245,109,171,236,156,251,
74,228,245,231,111,48,102,37,14,57,63,251,18,234,151,161,134,29,112,47,161,57,144,164,189,173,186,220,170,243,62,240,133,62,126,238,92,61,220,29,129,236,235,173,243,59,25,183,223,229,213,228,66,156,42,92,114,28,241,12,47,165,27,0,201,105,26,21,148,88,104,109,169,35,92,16,30,118,198,101,176,255,47,159,116,142,26,248,102,0,131,196,178,208,155,127,220,127,238,244,65,164,180,150,149,167,39,212,207,116,175,194,158,16,101,232,252,199,210,3,165,172,138,146,249,181,182,181,182,160,176,217,178,163,76,132,22,44,59,163,13,90,155,0,21,89,84,196,59,219,114,179,201,138,20,59,178,173,117,93,69,61,172,228,110,179,93,152,22,144,97,233,204,51,175,194,19,176,116,64,121,100,210,32,162,248,246,114,248,183,242,81,118,33,201,110,206,173,214,179,203,119,119,192,115,21,206,139,205,95,26,22,49,178,174,226,160,90,241,162,200,110,168,25,13,254,252,235,250,0,159,88,202,253,105,235,252,36,150,52,229,229,25,88,82,36,4,15,138,183,133,12,127,120,120,174,
70,194,188,18,73,59,162,142,5,114,103,12,96,99,6,238,160,0,131,136,4,74,33,38,190,171,41,20,181,76,127,56,164,45,160,222,191,166,192,77,237,47,195,34,138,86,234,46,47,232,185,188,110,122,253,0,183,149,62,126,135,106,123,93,8,138,41,227,241,92,28,7,249,196,192,152,191,50,73,49,99,223,206,14,161,218,169,112,0,216,154,104,248,145,161,212,47,5,119,114,0,177,186,137,34,102,102,69,35,204,51,52,91,212,182,120,192,107,215,84,170,211,142,30,15,156,63,209,119,32,25,165,222,200,41,217,153,178,192,170,194,0,96,164,42,24,123,177,116,119,83,188,31,108,18,97,19,80,101,155,162,10,164,251,143,134,218,39,46,118,171,195,242,255,41,65,187,215,1,165,125,145,250,122,188,85,79,239,156,80,242,239,115,50,125,133,151,243,251,222,113,168,106,29,218,207,121,70,10,135,3,167,233,64,195,100,190,223,140,154,108,237,149,124,27,247,168,140,118,238,228,32,35,204,82,188,67,252,108,209,215,64,214,231,160,248,51,144,173,107,215,234,106,58,180,237,
178,210,111,191,129,233,112,112,220,7,117,251,123,199,231,241,241,161,155,227,223,89,187,155,218,211,87,92,130,24,111,213,126,145,33,187,42,0,129,244,27,66,16,99,209,249,162,8,207,127,204,245,242,238,119,151,166,83,67,91,129,173,144,97,39,54,50,48,149,64,172,236,191,134,144,213,6,37,128,34,206,64,96,147,24,206,44,128,12,133,105,212,36,158,119,225,200,8,114,55,143,165,63,151,207,110,22,57,77,108,13,101,6,28,38,146,154,187,161,187,138,0,52,118,178,41,20,95,156,172,15,88,185,91,211,34,169,215,165,212,235,106,240,9,170,133,121,41,251,109,120,153,171,131,131,187,155,133,198,86,37,124,244,17,120,179,52,247,115,2,33,123,197,90,23,144,19,96,253,181,101,110,185,228,108,126,205,73,101,241,39,82,240,54,231,122,25,217,25,199,22,161,89,63,215,210,207,72,189,8,78,58,171,70,76,229,59,33,191,171,5,177,9,30,95,69,112,23,58,116,158,221,35,175,230,212,81,72,27,35,175,154,49,209,81,7,10,76,15,88,60,209,234,128,106,118,
224,20,218,41,105,58,132,170,241,177,182,13,67,218,171,89,177,113,235,17,153,156,178,130,232,225,151,44,63,216,253,251,159,195,109,113,244,244,126,130,152,179,44,140,104,53,7,226,253,161,251,147,223,127,230,211,149,203,243,124,249,60,3,159,215,227,226,19,226,220,206,133,131,2,102,128,217,68,132,66,161,168,3,176,155,1,27,24,54,167,12,216,171,132,229,57,150,197,85,245,197,25,205,224,8,10,0,168,212,158,251,150,43,165,90,165,115,109,155,243,12,165,186,213,134,85,112,237,86,35,71,192,66,144,56,101,78,13,114,98,129,15,52,129,83,209,200,182,78,132,88,255,133,228,211,251,133,44,166,217,196,247,42,96,80,215,134,210,45,171,83,0,65,250,19,155,97,189,17,188,204,141,249,192,71,191,152,137,197,25,210,251,62,34,5,48,229,245,199,229,241,238,218,245,38,12,94,205,127,119,137,87,104,248,187,249,126,146,243,251,96,80,248,118,127,55,151,102,243,243,189,92,10,159,110,35,169,43,124,22,166,188,67,139,235,128,16,226,207,190,49,168,251,29,141,78,
167,189,239,58,29,174,127,79,193,9,235,198,100,248,93,120,143,242,171,22,166,189,240,111,162,242,190,231,249,54,7,214,111,148,57,111,239,212,179,241,39,207,246,107,36,216,90,78,15,120,211,95,228,239,111,251,3,174,130,130,115,33,225,148,133,15,135,51,56,218,73,2,159,225,164,105,20,79,204,34,73,1,20,32,8,22,158,136,218,245,201,136,126,33,71,142,36,61,108,248,178,127,63,109,143,206,231,163,111,4,0,26,91,183,101,12,134,190,7,101,34,231,33,180,64,184,67,105,126,60,186,26,60,30,107,175,38,77,232,92,227,192,85,99,51,141,35,3,187,71,206,6,59,177,184,228,207,189,85,37,89,21,153,119,22,73,198,111,85,139,163,92,11,108,31,65,215,179,206,65,164,170,122,169,90,23,211,143,21,115,82,208,248,247,47,3,130,32,65,1,111,25,113,247,175,97,197,186,58,91,141,62,175,181,233,152,170,136,232,188,156,230,82,175,35,117,88,85,211,111,168,167,247,148,113,114,13,60,35,190,223,108,116,139,171,53,166,129,132,161,140,7,165,114,197,85,
204,249,107,118,138,39,120,81,235,246,45,29,71,216,1,7,17,24,50,118,45,0,176,183,144,82,228,41,128,4,5,141,157,97,59,128,196,216,177,228,0,208,103,237,105,1,133,80,146,176,5,12,211,2,153,43,236,118,157,92,227,203,37,76,121,124,65,36,2,36,12,132,111,119,110,203,235,115,52,124,14,59,139,203,74,43,74,27,142,34,12,157,5,120,171,232,193,52,98,174,45,1,16,63,237,226,65,144,39,80,25,245,92,50,203,6,229,63,83,79,81,69,201,145,70,79,64,117,224,59,120,175,88,224,102,186,128,23,33,212,109,65,218,8,87,87,203,204,139,114,202,21,5,84,138,174,169,241,148,150,61,32,12,92,208,114,14,97,84,249,247,33,146,90,112,90,148,108,231,103,68,154,113,26,6,72,244,219,230,119,88,237,7,142,201,222,112,56,231,151,14,149,224,193,189,208,176,187,237,159,194,64,70,71,69,195,25,29,139,89,169,155,20,126,116,170,80,251,239,157,53,103,161,246,170,107,97,176,111,127,51,179,111,63,52,78,44,86,183,239,37,245,10,86,31,201,
111,240,51,223,239,47,147,111,181,56,44,70,110,17,193,225,208,252,4,247,124,154,131,104,69,236,202,144,208,212,137,35,130,5,47,79,199,82,38,233,59,96,86,240,57,187,249,233,68,210,87,162,3,144,157,95,40,146,72,123,255,106,132,132,67,37,252,170,129,246,226,79,43,112,154,137,37,47,121,2,177,46,13,79,223,102,48,242,90,100,86,215,215,171,136,222,181,115,8,221,246,112,205,194,137,128,70,178,200,129,3,30,53,99,161,181,2,133,91,76,85,225,235,48,87,8,16,14,43,255,194,65,14,178,252,219,220,218,70,182,5,58,94,56,56,185,45,241,38,223,95,0,72,93,139,54,158,106,87,83,111,246,53,197,232,244,145,244,199,11,5,23,83,99,49,154,175,205,140,165,103,243,109,20,102,76,167,180,230,239,104,61,160,57,169,224,201,3,112,33,190,202,162,15,136,145,123,235,232,9,238,146,73,9,165,164,210,174,165,86,211,29,168,135,58,40,224,110,150,37,196,175,59,86,72,197,115,52,172,221,191,122,136,199,143,222,182,252,224,124,7,57,104,243,161,224,
182,160,61,33,128,17,133,57,1,174,229,10,128,11,164,61,151,116,23,82,25,8,178,33,21,154,165,109,16,112,180,161,248,89,3,142,205,49,96,236,221,104,204,189,116,60,3,13,189,177,157,2,65,229,54,129,194,39,23,184,254,51,214,252,46,168,254,119,56,214,28,202,246,140,215,105,231,244,186,19,156,48,246,108,24,105,196,15,58,5,246,160,218,51,89,8,75,13,230,22,231,51,180,138,89,90,28,244,208,0,10,114,144,50,4,180,79,146,210,214,126,206,226,131,179,41,46,32,35,18,83,183,107,68,227,146,139,167,235,207,235,69,251,38,124,154,178,38,217,84,208,201,7,214,228,107,235,232,98,90,32,77,139,102,172,63,31,196,37,34,249,23,214,37,192,126,172,217,78,104,148,39,167,5,28,18,84,19,11,1,165,199,163,166,223,231,61,89,204,129,253,241,141,211,92,240,77,204,75,215,225,71,174,250,73,70,209,188,53,252,62,15,143,207,199,193,37,228,160,192,206,62,41,36,115,209,201,66,197,222,135,145,207,181,60,202,33,184,71,39,114,106,25,112,178,163,
40,67,113,224,28,41,240,86,250,136,41,81,70,242,48,132,53,38,19,199,216,231,116,235,202,195,171,26,162,1,7,4,43,47,194,39,164,134,224,215,237,88,255,84,199,35,171,250,207,246,252,191,65,162,237,187,246,27,229,229,55,68,24,24,170,239,131,3,128,40,211,174,224,65,146,165,78,29,7,72,181,171,244,197,28,26,122,13,159,82,181,226,78,106,87,125,26,52,177,17,226,12,155,239,88,90,38,73,209,0,244,33,38,241,88,44,254,141,205,226,179,88,172,150,186,217,112,123,127,186,229,136,96,43,20,128,42,208,211,48,9,234,7,85,159,8,148,5,58,213,190,62,181,83,45,224,119,46,83,80,105,18,218,230,211,70,132,181,12,158,139,125,241,99,126,41,238,223,127,126,121,240,121,71,26,75,42,51,217,7,10,151,127,104,4,112,34,39,21,245,98,142,146,100,91,60,179,177,164,229,131,42,168,218,183,244,6,218,157,21,50,66,209,151,67,147,226,198,47,254,81,159,251,235,113,184,20,60,46,211,74,162,6,161,56,186,131,89,75,131,34,109,37,115,161,36,
20,70,104,77,199,200,136,94,172,241,119,45,206,161,45,88,218,230,83,89,229,171,195,235,31,52,116,165,21,250,255,49,85,175,31,106,25,2,92,228,233,198,0,64,65,158,22,77,96,178,216,12,242,52,18,229,196,176,72,96,207,156,50,11,153,57,104,40,215,230,43,27,60,242,121,5,10,191,20,100,209,14,218,107,93,59,139,136,205,236,128,4,133,31,47,237,39,251,154,7,62,231,209,191,138,141,32,166,103,38,136,65,228,161,0,43,120,22,224,0,80,140,197,1,71,151,204,65,144,33,128,246,186,166,224,113,104,240,40,98,166,169,194,96,65,11,170,106,161,68,20,77,218,137,93,13,32,252,179,92,79,102,48,33,61,204,100,237,4,76,195,93,32,132,36,181,227,3,75,26,44,242,45,59,165,217,118,46,106,208,238,66,138,168,58,13,14,101,0,207,233,46,236,115,75,145,95,154,181,205,38,143,113,103,176,210,115,61,174,21,90,125,186,31,156,5,76,105,227,95,175,248,133,60,166,128,116,245,97,87,164,145,204,160,151,26,50,156,150,84,40,172,197,222,46,103,
152,71,248,18,169,37,147,50,225,195,59,107,222,69,67,103,38,100,83,24,149,55,205,246,174,207,58,12,113,158,207,217,35,103,200,99,64,158,69,56,28,169,191,227,192,46,153,7,20,113,159,110,32,2,210,191,182,30,11,112,88,51,218,28,157,26,112,8,208,103,238,175,0,43,5,82,22,186,94,253,250,200,237,136,105,246,28,26,169,126,50,40,105,119,248,91,90,54,246,127,153,186,225,32,244,38,93,165,216,237,217,222,226,134,23,166,77,207,77,225,78,215,233,183,24,118,130,238,243,228,182,243,134,164,139,107,23,28,252,66,34,126,67,117,192,67,95,230,177,242,148,157,251,171,223,214,236,151,28,121,143,100,1,112,14,184,172,39,14,154,119,177,133,156,136,137,3,8,195,144,99,225,135,40,86,80,53,10,149,129,229,237,34,213,109,36,55,185,44,95,178,222,80,77,114,53,186,134,46,22,17,171,90,169,207,98,130,114,186,221,250,210,237,222,118,33,79,191,254,30,250,217,131,171,120,223,109,122,209,249,236,223,59,249,119,66,51,236,229,225,186,144,56,74,25,69,
36,18,56,80,199,162,245,29,85,162,73,165,128,214,138,42,48,95,29,23,242,219,119,95,114,120,157,222,133,154,250,19,61,156,47,42,29,252,181,45,202,116,150,60,206,131,58,145,236,221,253,213,148,82,75,254,112,66,137,229,196,151,52,105,36,57,157,180,158,163,186,237,62,170,32,248,183,92,49,142,4,46,195,130,15,48,68,88,89,171,58,105,212,172,12,34,116,140,246,130,154,241,91,185,175,88,136,170,1,51,141,54,106,204,87,158,63,32,79,218,161,50,91,144,82,202,0,138,97,56,154,126,79,153,149,184,127,109,101,169,32,154,124,77,29,72,140,66,204,198,192,58,83,187,232,244,194,2,173,134,103,147,60,27,74,7,131,49,35,152,81,69,145,190,126,132,236,146,234,100,66,165,114,237,120,65,212,82,45,138,5,204,211,66,230,107,211,150,184,16,114,167,82,219,169,113,1,205,131,163,134,12,10,28,213,64,82,89,119,3,171,15,203,170,207,198,133,140,174,45,107,220,180,71,6,78,205,185,58,116,180,230,23,203,221,8,87,93,8,1,44,87,140,172,161,233,
118,183,147,129,100,10,102,27,130,63,8,156,15,131,215,107,183,177,77,147,171,19,80,67,71,83,241,130,26,131,69,80,74,34,235,239,29,187,91,245,201,202,180,134,242,188,98,201,178,230,215,177,43,137,132,103,207,134,133,215,186,16,33,93,57,239,228,186,125,30,183,181,161,201,209,57,4,189,18,184,166,26,74,184,36,94,13,225,44,56,145,160,251,188,201,21,24,73,88,224,236,150,63,237,222,119,221,166,10,47,141,55,140,120,71,35,111,83,86,191,127,223,2,187,201,187,127,176,122,215,54,106,54,11,47,142,16,190,155,193,236,153,225,172,99,77,144,187,206,14,141,120,40,0,221,96,91,71,47,42,175,169,8,178,162,203,212,28,134,188,75,102,9,36,157,78,183,226,132,233,20,150,250,167,175,149,28,48,36,105,74,187,179,241,246,5,60,31,111,79,98,78,206,231,187,188,124,41,57,217,192,154,148,74,245,171,58,187,214,31,179,157,99,98,107,153,54,118,191,248,215,185,181,117,10,147,219,120,58,89,190,192,231,124,63,31,75,154,111,175,211,169,213,170,53,162,
100,0,32,97,176,210,130,16,247,32,158,110,26,233,33,17,130,213,46,170,37,3,214,251,59,237,170,175,86,179,133,131,202,182,79,76,195,60,168,195,46,70,230,136,43,136,160,64,166,110,148,17,170,138,245,149,173,34,126,204,130,38,135,133,250,231,159,244,26,104,86,171,213,173,86,219,253,138,199,231,10,120,130,68,167,219,25,111,117,250,23,134,113,15,221,43,103,253,60,90,105,84,62,158,203,247,40,178,239,77,96,34,56,201,149,127,176,68,242,151,69,130,241,73,223,243,38,238,25,68,70,127,222,127,123,157,8,231,45,45,64,132,234,154,0,145,58,118,91,204,98,137,155,180,241,6,12,78,98,102,231,130,246,35,170,139,3,100,189,90,124,78,30,250,14,235,119,161,40,83,65,8,16,99,234,129,161,31,114,81,10,152,75,13,186,67,5,16,90,49,4,4,15,24,13,116,225,169,73,45,98,184,72,89,87,68,173,164,31,99,111,199,128,124,131,225,137,135,165,24,72,32,120,208,8,65,148,94,73,172,249,211,117,54,148,1,164,13,36,163,66,25,22,17,11,218,
197,152,67,139,145,31,105,192,195,184,178,177,42,255,200,179,226,52,4,2,71,179,213,243,249,124,131,131,186,30,58,9,47,177,215,188,100,145,96,117,193,167,162,29,239,181,219,44,22,251,194,117,241,44,5,96,89,70,187,156,212,155,137,141,194,103,98,249,244,35,249,7,18,52,36,7,166,20,132,77,177,204,33,152,149,219,180,16,34,43,137,177,22,171,23,221,54,247,195,3,179,87,92,90,171,160,151,234,147,225,24,84,21,7,177,65,113,85,46,195,23,221,63,8,72,61,239,225,255,191,255,152,44,205,199,19,125,134,41,52,52,168,217,147,91,96,237,67,58,155,62,181,140,215,220,16,51,39,184,146,170,225,174,25,30,235,8,55,20,41,94,128,87,72,177,212,209,149,17,162,133,59,37,255,12,214,239,115,40,143,109,67,147,220,67,146,228,214,77,157,158,0,198,166,115,19,120,220,37,151,173,255,106,52,250,13,159,15,225,79,182,32,185,46,253,62,123,118,51,146,110,219,19,246,49,169,176,245,181,180,144,244,53,61,186,178,29,169,135,41,249,238,234,64,132,125,
136,150,134,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,216,31,66,71,223,31,232,53,107,232,9,252,225,53,7,210,115,219,12,33,73,194,16,100,155,223,173,196,67,157,209,246,113,249,200,203,110,135,78,247,239,171,72,104,95,129,149,229,196,179,234,161,123,4,92,213,196,83,233,231,181,225,106,143,197,117,90,85,255,218,11,167,129,185,49,142,120,191,119,51,145,181,157,8,169,156,95,45,62,59,145,79,226,19,227,68,49,101,200,167,244,221,116,202,152,200,167,242,187,98,162,80,76,228,138,228,116,250,143,238,76,0,169,111,0,29,139,204,183,6,66,236,37,145,116,234,207,191,36,236,157,171,167,244,126,211,40,213,128,189,3,23,163,66,177,202,51,220,48,116,66,136,188,36,113,191,90,112,139,118,224,26,156,164,173,13,41,210,207,131,148,146,115,103,130,42,93,216,155,171,9,219,4,10,245,101,167,93,93,7,175,177,113,77,74,176,159,14,199,0,250,14,48,245,121,200,148,66,114,18,
54,209,55,22,91,22,4,171,42,137,40,150,87,206,146,55,56,75,75,189,156,131,146,84,211,6,226,233,112,242,103,182,85,236,70,6,135,113,231,133,158,165,11,100,43,107,234,97,57,12,251,155,19,72,219,58,9,25,164,133,170,134,253,42,32,186,36,40,50,209,23,51,251,32,223,240,6,187,142,209,150,234,222,147,186,160,182,89,0,145,114,175,141,249,127,17,92,31,240,127,7,190,27,151,239,47,207,41,231,45,1,130,46,33,159,245,143,177,63,171,234,225,109,150,53,161,16,83,28,198,6,177,72,139,105,23,31,198,192,66,30,179,147,46,6,34,236,126,166,41,12,68,235,154,149,13,143,3,148,236,32,241,90,64,96,217,225,60,90,12,74,225,0,226,33,175,33,119,16,226,87,82,211,253,73,196,18,154,210,221,170,140,164,148,150,117,170,44,62,230,243,191,217,107,178,24,69,24,252,0,140,103,148,104,87,151,120,122,229,83,206,177,35,60,31,57,192,14,241,204,27,161,55,70,181,32,168,156,92,58,192,201,33,251,49,88,202,202,252,153,32,144,251,27,32,58,
65,31,210,55,216,174,239,242,227,200,183,30,26,22,255,229,194,245,178,175,20,62,27,207,189,236,80,131,188,176,198,166,219,199,28,139,239,151,226,242,209,228,157,62,93,107,203,235,232,215,252,223,190,70,7,10,68,222,54,158,176,194,184,12,127,139,118,25,29,101,228,193,45,83,48,76,181,167,44,176,242,146,157,104,224,233,50,6,234,15,142,153,86,250,171,140,101,174,207,0,90,223,196,107,136,206,141,170,37,245,184,139,177,25,216,72,143,195,225,249,177,235,211,233,172,90,9,23,150,175,243,115,199,119,99,112,83,12,188,30,221,122,42,24,172,149,48,166,203,167,249,145,128,131,124,189,204,97,178,183,229,119,163,40,115,55,169,191,144,52,216,94,115,141,168,248,171,89,168,35,73,56,18,8,152,159,143,20,223,191,55,133,203,23,204,47,100,157,94,241,183,35,94,236,127,59,81,233,98,95,31,11,2,226,157,82,248,105,118,48,33,226,122,62,215,8,187,31,138,0,17,144,170,247,88,214,50,228,177,202,205,113,144,26,124,87,240,11,92,48,52,142,196,28,74,239,
89,100,167,15,94,185,27,106,112,235,244,187,116,40,96,10,204,28,61,223,211,233,131,92,135,43,185,229,208,245,32,174,127,232,23,19,75,139,47,23,165,88,246,140,202,173,102,127,110,191,113,175,182,27,110,151,141,94,63,87,181,249,58,97,45,69,93,218,48,209,191,232,74,28,136,72,60,68,98,0,98,32,198,76,102,57,108,102,16,99,95,46,142,14,34,13,156,98,114,9,223,198,76,120,209,164,41,72,100,207,63,148,55,108,116,105,149,86,53,127,229,148,197,68,10,81,202,90,234,85,5,18,142,137,108,166,198,13,17,71,57,197,107,243,44,222,81,219,78,28,185,31,7,18,16,126,237,180,144,17,187,120,241,70,64,19,3,30,50,73,68,191,107,198,114,219,66,192,98,213,59,64,207,231,118,234,168,233,253,14,136,223,18,223,83,207,57,26,251,131,168,213,63,89,126,148,58,214,123,166,163,212,107,55,216,191,33,220,139,71,204,243,75,43,21,221,151,99,220,95,20,93,20,152,141,223,177,144,236,214,26,54,213,198,33,71,214,109,211,197,227,135,74,253,168,35,
114,145,166,70,237,220,6,95,155,215,235,57,184,12,119,62,203,171,165,174,46,207,147,176,153,2,211,7,206,162,59,123,123,124,117,147,167,9,69,254,122,239,170,61,255,127,151,123,231,222,229,91,200,82,114,26,94,142,203,41,124,11,67,175,143,116,48,153,46,94,107,199,195,109,165,39,176,156,119,19,213,230,7,214,159,102,136,102,185,133,228,215,132,118,140,226,120,73,106,61,109,129,140,120,6,55,161,136,141,20,89,34,20,213,64,24,65,11,197,148,228,100,98,106,104,128,104,2,200,111,134,171,219,1,236,118,108,205,20,51,64,105,186,91,113,198,179,246,71,9,115,158,74,7,175,34,38,232,213,207,190,222,39,241,213,29,158,94,199,205,110,52,125,76,118,143,57,202,200,40,160,116,21,17,206,94,221,100,62,183,102,78,101,161,177,17,51,120,151,157,250,41,108,218,64,169,111,157,117,1,228,73,197,8,127,163,42,144,223,30,234,168,140,110,15,223,128,133,227,216,178,218,240,213,102,162,182,219,173,96,199,88,42,236,149,115,199,95,74,178,254,218,249,250,225,135,
245,27,17,67,230,185,114,164,31,168,235,56,66,244,131,23,171,0,69,70,52,179,16,170,176,32,223,181,37,198,135,106,104,158,226,119,149,63,61,206,123,111,33,69,55,255,188,229,85,92,239,15,249,216,233,5,132,221,109,103,71,252,28,93,70,55,198,238,52,25,57,148,87,68,155,135,69,226,221,8,158,248,2,135,216,68,34,77,231,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,227,215,37,115,94,61,231,157,233,13,190,217,158,167,207,238,51,124,147,245,29,234,246,104,187,6,24,47,199,160,24,148,184,89,133,165,113,88,187,224,186,224,225,18,139,115,44,45,5,16,207,24,241,174,183,130,220,111,182,30,17,147,220,209,177,104,181,99,151,72,15,90,114,164,180,245,217,110,145,185,64,121,184,231,134,176,96,30,66,78,177,108,44,83,142,175,166,140,172,26,64,36,90,192,80,89,137,149,168,96,133,46,162,16,216,132,155,50,218,121,14,12,198,157,88,212,174,
157,255,89,89,145,110,104,17,179,128,36,82,155,151,90,100,96,206,7,95,127,19,72,5,144,207,243,193,168,130,145,96,171,147,142,212,116,50,185,206,122,195,227,88,185,213,93,250,146,0,254,65,103,237,198,190,104,113,14,152,255,57,50,117,22,244,202,222,215,235,227,184,59,139,108,47,204,93,27,37,44,168,101,195,185,190,44,172,233,225,197,32,246,79,45,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,135,237,110,52,109,126,83,208,166,233,54,106,218,19,14,128,183,219,23,46,189,45,190,221,190,131,87,255,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,198,153,152,159,14,129,115,32,37,45,45,47,13,251,149,31,90,74,161,45,177,132,153,190,238,11,172,110,187,155,210,110,208,25,136,191,23,2,225,215,251,171,
209,234,55,188,53,134,215,217,72,44,63,55,20,247,252,113,239,79,40,187,195,96,56,27,12,111,136,195,114,244,88,237,126,51,17,53,9,203,81,14,146,211,79,97,226,90,235,18,180,186,70,200,121,90,126,37,17,56,114,247,163,79,90,178,247,242,112,97,227,139,135,96,91,20,52,251,102,90,187,136,247,210,187,188,244,204,194,27,34,193,236,242,251,251,185,15,196,231,167,195,110,25,28,198,183,157,55,168,96,44,78,127,98,76,117,163,176,128,7,24,227,194,24,153,29,43,196,180,31,82,44,84,21,111,120,82,240,169,147,68,201,34,154,80,29,119,75,231,58,213,203,231,69,235,83,234,195,48,15,60,197,168,199,94,72,0,36,216,29,89,71,24,156,12,20,188,212,77,14,103,201,159,113,118,165,8,99,62,148,53,48,203,187,129,76,191,196,254,254,8,127,251,206,253,105,134,6,151,95,26,94,128,176,226,50,58,85,188,110,98,255,149,223,106,215,41,221,62,161,199,107,83,70,149,94,171,142,24,85,91,205,102,179,95,47,132,107,238,168,168,117,255,250,195,63,145,
96,31,205,131,144,33,142,144,239,245,129,145,250,31,8,169,120,5,31,56,112,124,244,187,8,87,55,131,200,152,89,150,114,77,44,21,5,11,34,10,131,150,67,74,164,183,140,22,110,213,81,84,124,48,214,39,150,129,140,192,53,144,88,19,59,137,195,10,79,153,36,62,136,183,205,178,112,156,150,88,26,128,3,74,169,255,95,234,24,16,45,68,105,107,112,99,83,27,138,109,94,27,80,159,42,22,97,73,117,163,156,20,10,167,124,50,25,106,106,169,55,59,228,239,222,111,56,76,1,173,166,194,186,99,62,228,178,121,220,247,131,163,127,61,223,97,203,10,211,225,208,167,158,115,44,172,124,156,183,94,135,139,44,122,169,255,88,0,97,181,85,179,199,17,241,144,143,1,192,196,59,222,255,35,225,28,150,166,107,214,45,122,235,101,87,189,101,219,182,109,219,182,109,227,124,255,62,141,213,205,198,138,103,206,28,35,50,35,179,154,28,45,17,241,44,23,60,68,87,32,45,23,139,34,11,52,209,113,42,42,252,227,105,112,228,41,16,204,11,133,1,159,198,69,172,59,
138,89,51,226,54,134,216,254,16,244,127,111,6,63,130,126,104,145,139,128,94,171,203,107,158,187,213,219,141,183,252,239,105,133,222,191,250,13,68,60,252,159,32,210,17,64,59,129,191,199,166,221,158,78,143,122,135,215,205,201,226,32,132,33,163,39,158,162,32,239,13,151,87,217,152,236,253,207,212,15,175,249,135,16,156,243,51,248,217,153,60,108,12,76,160,235,216,105,40,47,84,184,155,169,252,180,63,10,48,139,73,137,255,44,19,210,21,103,75,126,10,0,158,253,76,193,140,181,95,217,225,109,182,188,52,54,141,201,149,52,217,29,87,195,233,88,215,108,170,53,151,100,125,101,145,74,72,37,241,248,76,146,142,105,226,57,21,246,207,231,87,224,27,252,165,160,137,6,249,226,38,242,216,105,87,155,234,150,141,111,118,142,213,147,68,77,75,169,34,247,253,192,77,239,253,57,226,206,139,187,249,116,221,248,241,154,202,57,153,193,19,219,218,137,121,73,104,181,86,125,204,106,183,33,82,157,177,174,75,42,139,156,159,208,137,169,8,12,10,153,144,200,246,131,165,79,
129,154,18,81,228,134,101,93,134,100,31,216,19,112,45,88,246,217,199,213,201,255,231,215,39,65,207,130,191,39,165,69,36,132,246,212,68,141,7,201,198,129,30,66,237,208,99,33,59,129,127,226,247,3,164,197,25,239,206,218,30,5,64,255,116,163,56,48,19,171,126,98,244,120,4,80,82,186,141,152,64,74,204,66,213,180,227,213,211,99,235,9,59,175,102,155,4,196,249,217,140,202,95,211,76,233,10,111,109,11,139,226,133,119,121,143,178,169,150,44,242,147,112,78,10,202,39,240,99,96,191,7,104,187,254,75,231,235,227,249,124,238,185,67,234,196,127,4,141,154,210,170,85,219,237,15,246,151,59,234,147,151,22,43,213,179,208,203,243,193,2,116,110,225,206,47,7,175,180,169,85,112,72,45,248,143,57,131,36,7,202,111,149,89,155,60,163,215,89,183,126,191,219,199,182,86,49,255,241,155,147,158,101,17,180,26,75,193,197,125,116,222,150,130,107,40,205,139,67,206,101,91,25,140,88,31,199,58,193,184,92,142,198,127,245,141,115,78,58,170,137,200,13,172,105,217,
255,181,201,35,107,219,128,232,142,233,214,134,129,242,105,184,232,4,139,128,232,50,148,9,254,232,227,202,1,174,157,214,224,20,245,147,199,152,246,241,194,166,163,41,165,222,206,41,149,68,40,74,14,171,73,149,176,219,170,107,61,47,175,27,208,134,179,88,222,224,98,251,245,62,190,8,84,62,54,181,230,41,141,183,173,202,138,28,55,185,161,210,238,68,185,17,34,3,95,55,135,230,77,113,250,57,233,72,42,139,85,69,152,142,146,156,86,128,122,3,99,132,195,208,19,68,208,44,28,0,27,200,142,72,27,89,211,91,250,76,235,26,117,203,82,59,199,251,155,220,124,223,59,239,23,113,46,107,44,239,242,131,116,239,16,94,191,143,236,249,159,186,161,159,95,21,151,149,195,144,112,18,88,140,16,37,134,193,33,194,217,138,199,222,95,33,193,95,111,118,181,63,218,222,191,210,234,114,191,127,174,127,189,229,65,213,250,87,115,186,49,22,10,11,21,230,66,194,95,56,50,250,230,205,120,92,4,42,60,236,205,12,52,52,244,204,220,137,32,161,141,2,131,167,253,224,
56,79,42,240,203,20,105,159,56,47,236,240,50,215,216,183,228,88,231,195,251,242,111,88,127,79,207,205,193,239,125,125,12,183,145,163,239,59,73,6,42,201,0,134,59,191,244,151,207,171,126,202,223,242,208,132,212,23,44,21,69,246,103,128,212,214,55,74,135,132,60,208,159,98,89,188,77,71,153,108,212,104,50,108,182,191,171,71,214,246,96,8,221,245,111,200,255,173,101,152,157,251,119,80,16,83,228,162,7,238,17,47,27,187,196,134,10,19,20,3,114,81,138,66,88,49,145,8,239,157,250,34,204,173,38,208,164,71,82,18,192,149,98,137,70,115,194,96,157,87,48,14,51,41,11,206,200,59,166,121,101,134,153,71,136,100,41,34,33,131,81,37,114,199,63,146,103,23,197,234,166,189,52,196,159,251,90,91,54,239,11,108,192,32,250,62,159,206,218,46,4,219,1,78,186,4,157,140,131,150,239,128,68,180,27,140,252,157,246,241,1,59,128,245,119,13,237,193,180,73,199,196,107,113,74,195,107,98,16,90,221,97,115,210,226,99,213,251,140,55,131,254,67,116,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,246,215,159,175,151,234,223,203,218,80,123,209,136,27,99,95,120,149,74,39,169,119,48,229,68,249,105,114,128,254,7,114,146,183,58,84,240,6,40,136,68,162,62,17,104,42,210,161,11,3,84,19,212,145,71,75,5,171,238,89,128,139,1,86,226,141,115,46,111,225,15,76,251,23,66,97,142,162,252,153,199,231,164,97,156,43,165,212,60,104,72,249,182,29,105,201,200,245,11,226,4,18,77,47,196,210,155,40,13,82,173,201,205,231,164,248,84,195,248,36,102,252,169,113,200,79,194,198,136,151,120,62,69,91,158,189,55,48,20,164,233,224,159,117,123,208,245,81,101,4,253,106,21,25,7,254,91,26,251,183,222,169,123,147,83,45,210,58,58,154,69,223,236,250,219,9,63,64,66,157,135,150,52,163,148,181,236,108,176,185,40,228,196,197,165,193,17,145,118,119,19,155,85,128,199,63,208,30,77,129,36,
197,247,40,29,123,100,21,192,219,32,229,139,178,19,72,40,115,198,48,47,167,1,112,108,10,185,52,205,132,62,102,166,187,206,81,55,217,63,85,165,121,241,62,11,158,157,16,251,89,144,55,153,124,47,8,41,69,205,231,192,37,228,211,222,118,62,183,87,151,155,177,145,176,182,128,239,98,159,143,112,240,214,215,155,212,46,206,247,215,230,235,31,14,80,55,215,87,219,156,78,142,183,87,86,219,145,246,160,91,232,155,23,227,233,184,216,144,16,54,78,185,200,8,128,3,0,9,9,253,140,88,120,40,123,205,4,84,184,4,32,4,24,235,107,31,128,2,104,133,140,100,184,196,8,95,157,164,248,120,180,248,182,253,238,21,26,72,115,32,198,83,61,145,153,254,219,228,48,57,109,78,187,142,228,118,188,128,147,221,5,169,119,61,205,150,151,115,102,113,152,104,186,164,104,47,55,97,171,143,206,2,38,161,162,111,14,102,255,42,10,250,24,74,214,134,195,24,230,207,232,50,96,221,198,199,215,154,74,31,200,91,50,232,217,203,97,246,186,30,94,207,13,132,89,149,20,
41,200,186,206,254,99,145,150,60,40,35,84,148,227,37,35,44,25,80,0,127,65,17,109,85,39,31,219,26,51,179,204,247,22,73,16,46,164,16,36,6,197,132,54,51,36,31,35,255,105,138,100,17,109,114,45,242,83,181,34,6,232,229,243,69,86,77,201,53,198,13,19,219,175,23,111,170,127,246,115,2,164,155,30,7,217,63,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,169,145,170,255,30,125,179,240,177,7,120,217,125,32,241,3,172,184,255,185,13,23,175,181,117,112,130,16,238,60,223,192,243,4,160,101,178,42,143,36,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,196,245,120,192,136,93,82,47,60,255,238,37,45,185,67,221,102,181,168,84,81,165,10,133,192,1,94,161,21,100,200,69,176,18,58,121,65,17,2,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,252,105,143,251,11,79,99,197,47,235,20,66,147,28,200,81,224,236,87,50,143,206,244,70,90,228,23,18,79,253,243,252,143,198,41,14,250,190,226,28,115,57,188,88,179,213,248,167,149,146,198,209,163,30,15,8,123,4,12,251,6,254,145,104,96,187,202,219,166,41,103,98,154,173,229,138,141,70,173,82,97,143,129,93,248,201,165,39,41,40,197,129,140,87,31,194,37,36,131,194,165,88,140,70,244,37,232,132,38,234,0,151,238,24,100,164,46,142,55,41,24,48,46,2,233,217,120,173,80,213,116,14,140,231,235,245,231,61,29,207,182,18,109,91,81,86,85,158,174,203,119,19,153,135,122,188,234,231,151,234,190,108,84,27,78,242,98,242,214,196,235,244,90,147,132,137,111,192,96,238,129,222,186,142,66,235,177,243,144,21,78,133,71,81,
170,152,110,219,225,213,180,113,240,139,223,114,135,139,108,118,16,164,246,43,38,224,250,253,207,116,82,18,57,245,225,51,240,201,155,123,231,110,157,84,175,197,235,65,128,113,90,164,75,181,239,171,26,177,194,45,64,42,133,152,184,176,142,6,20,136,85,8,97,54,32,3,112,126,60,35,64,28,71,10,102,115,165,230,238,49,50,178,23,7,183,171,75,151,78,186,113,155,116,74,152,15,235,210,105,220,42,165,246,85,32,226,119,209,133,25,190,226,237,191,185,123,234,253,39,114,156,148,106,4,142,255,20,140,32,45,136,95,255,42,205,254,44,107,250,238,58,117,125,42,59,79,96,185,221,123,171,175,149,163,163,178,12,107,235,43,108,211,161,152,118,146,125,209,53,140,155,21,23,11,197,73,223,63,24,171,78,179,206,216,110,57,47,245,182,171,222,178,53,201,45,15,36,101,201,192,174,138,168,239,214,52,7,6,85,179,220,116,224,138,214,153,210,193,70,202,244,34,114,56,15,10,41,196,114,88,92,98,192,224,168,221,193,141,42,198,231,146,128,71,89,37,5,22,173,35,
193,20,79,167,30,17,20,106,170,46,41,171,5,251,166,119,91,195,235,129,234,191,185,178,37,4,195,240,14,194,201,227,144,239,229,15,42,2,164,58,184,111,16,240,203,248,251,241,152,124,239,37,252,139,226,63,190,91,216,166,154,250,142,206,225,79,130,136,172,125,161,72,8,46,98,213,30,174,153,174,122,213,77,191,174,89,73,83,26,52,245,132,62,192,113,142,185,130,77,59,234,156,39,129,133,168,29,133,33,235,89,19,39,13,105,141,222,152,42,217,6,8,149,21,190,199,91,217,26,178,247,96,224,59,167,39,59,115,50,111,90,93,250,239,122,205,162,116,218,237,174,247,161,194,32,99,22,197,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,82,10,191,118,28,11,89,37,168,115,80,19,191,49,83,153,177,176,88,78,185,131,160,146,44,20,215,4,162,138,92,148,73,206,84,137,85,33,9,32,146,151,162,228,4,235,145,140,148,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,234,64,191,169,54,5,172,0,149,55,33,6,14,75,230,40,53,150,127,78,172,211,161,18,137,148,94,127,190,223,29,146,243,212,127,207,75,239,55,250,135,107,206,235,137,213,253,126,222,151,239,97,51,233,85,208,157,142,40,155,7,192,101,15,134,49,194,79,34,160,210,98,29,84,135,1,195,240,249,147,137,146,130,136,81,37,67,141,155,135,194,68,8,194,193,62,155,151,123,101,9,33,227,86,201,103,28,197,197,249,24,109,173,78,44,213,25,220,118,189,239,253,183,61,131,247,225,220,239,254,219,8,97,125,215,238,193,221,237,104,62,171,207,119,208,184,249,40,144,16,109,44,225,65,234,166,115,45,223,16,213,72,166,80,129,90,139,147,66,97,156,169,181,3,52,8,98,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,169,235,186,112,26,7,59,85,13,190,29,16,241,67,6,244,179,43,160,155,179,206,78,32,237,78,221,172,
88,56,157,195,187,37,131,64,25,44,64,52,190,184,68,173,78,101,195,250,125,253,75,12,103,27,239,173,174,32,255,246,57,132,37,101,30,67,127,22,122,164,170,11,43,147,216,204,66,193,186,122,112,194,231,80,107,237,107,114,172,143,54,26,219,236,205,53,170,100,246,118,234,181,198,241,100,211,151,40,168,50,106,138,57,11,178,56,154,173,240,209,88,16,69,66,36,41,226,104,50,78,3,65,0,199,192,174,174,161,62,22,68,121,47,175,156,4,66,96,199,48,112,84,188,31,4,156,26,90,78,134,227,144,10,137,135,6,55,94,241,71,131,134,190,79,173,18,2,26,67,191,232,122,57,205,50,218,36,82,168,17,80,32,156,28,30,120,197,72,9,193,79,51,70,182,46,244,240,67,211,102,125,131,117,107,235,11,157,246,58,14,65,130,208,196,230,149,55,218,62,246,114,195,6,176,138,246,242,233,201,201,80,182,241,249,132,209,254,234,226,148,81,144,92,247,205,124,119,20,24,47,206,186,107,158,214,222,222,5,170,169,174,111,184,86,81,72,183,65,34,184,25,35,204,178,
72,55,41,2,77,181,33,103,161,12,62,5,73,115,142,106,81,229,78,233,230,2,10,2,184,246,123,30,223,25,235,233,183,151,138,84,248,93,163,205,193,160,208,240,77,50,153,145,107,182,27,123,189,239,3,246,187,75,83,155,95,160,237,215,175,176,40,207,158,76,236,53,227,53,168,199,229,75,195,205,225,172,25,92,54,147,145,26,229,147,6,184,33,91,147,140,37,80,57,75,28,130,168,4,1,137,167,139,228,103,5,51,135,54,158,67,134,74,207,64,166,23,230,182,37,244,76,46,243,142,138,43,151,216,127,116,112,11,21,231,240,200,6,229,101,103,244,213,151,161,70,56,3,199,174,250,43,109,163,205,249,236,36,189,234,93,215,167,249,116,255,60,222,191,247,114,243,91,193,89,42,52,216,3,238,60,214,203,22,53,21,177,161,29,24,226,139,186,148,17,166,220,252,178,193,19,136,182,218,220,110,135,217,122,223,103,21,189,16,29,36,116,189,1,20,96,220,169,128,239,193,74,168,202,35,108,187,159,247,243,247,93,142,207,203,205,134,213,50,124,156,145,188,93,71,192,
196,144,97,76,176,62,92,152,169,1,126,3,50,198,48,65,115,16,202,44,108,228,36,172,135,88,90,10,75,80,219,50,18,168,203,96,160,203,72,70,189,107,53,70,223,213,240,149,241,58,232,221,30,251,229,182,123,124,46,151,247,254,249,222,94,195,72,71,247,9,157,224,49,123,149,119,174,172,98,181,127,13,226,125,220,150,155,151,156,85,246,151,44,64,31,192,205,109,239,151,155,152,78,23,3,236,30,223,199,202,245,58,177,50,40,55,127,13,4,2,204,124,52,145,162,80,248,97,68,132,117,206,199,21,136,226,84,89,24,234,29,216,169,202,197,223,173,66,35,148,138,190,92,75,199,152,184,231,137,68,57,140,173,70,118,76,81,61,223,41,9,155,56,212,161,158,229,136,198,45,88,46,153,214,247,79,194,14,21,249,245,246,33,68,70,203,1,217,131,144,10,149,223,11,90,127,105,93,174,220,198,13,207,22,219,112,246,252,168,232,117,206,73,208,226,128,116,103,39,169,234,214,129,252,36,73,204,91,136,143,216,244,61,22,186,148,87,102,215,209,78,149,210,100,96,162,
199,70,106,235,90,95,42,167,217,87,92,107,85,78,44,32,176,75,194,52,241,118,205,149,172,28,55,71,103,129,40,57,145,9,2,36,213,12,148,237,233,28,57,30,211,221,10,9,119,152,2,13,14,32,34,193,5,115,76,38,6,196,164,12,198,24,37,165,130,82,233,79,74,27,159,137,4,100,140,241,128,116,211,113,199,194,222,12,131,175,206,156,113,42,27,126,123,138,53,221,78,233,164,83,193,64,153,144,98,150,139,18,125,81,151,242,83,123,47,226,238,217,1,149,118,213,8,242,231,163,134,69,16,118,151,215,243,54,124,207,54,7,165,45,105,214,189,236,245,150,141,181,100,163,204,142,84,152,30,246,35,249,199,246,204,51,118,47,210,185,115,179,47,110,181,52,39,219,62,201,140,46,106,97,67,152,97,26,136,104,149,110,53,123,245,33,70,230,134,50,95,196,8,187,136,95,148,155,166,88,83,116,145,160,94,228,136,59,103,134,215,216,111,30,185,4,81,208,153,88,23,155,191,58,117,185,92,240,152,78,38,171,221,106,183,221,143,235,251,222,239,131,154,229,199,71,
252,6,8,223,173,57,104,253,75,138,218,85,250,29,223,211,210,238,252,79,32,193,97,184,202,52,251,243,199,89,174,215,228,19,232,89,45,92,45,204,150,100,68,13,21,29,24,95,81,119,211,17,211,40,27,47,42,82,5,44,71,41,69,75,165,40,53,184,164,174,162,23,118,219,95,39,46,163,11,37,149,69,41,106,90,25,30,222,103,145,245,12,54,253,221,118,131,181,217,169,185,219,235,142,195,102,179,57,60,114,183,203,233,245,218,222,247,239,251,186,223,247,207,81,102,245,199,243,181,59,134,14,135,203,205,206,78,151,150,209,135,16,210,131,155,121,49,41,78,149,242,67,119,189,249,251,222,222,24,176,123,242,149,169,209,192,199,11,253,110,81,251,238,2,163,159,58,172,110,97,95,167,227,102,179,185,241,140,108,5,219,218,86,108,141,17,41,50,212,141,105,174,104,152,26,131,244,126,200,87,132,106,128,182,113,48,12,226,27,73,92,106,60,36,75,70,40,146,100,58,182,184,34,133,4,37,139,112,234,7,217,151,117,107,118,182,124,84,103,155,227,124,179,158,143,238,
242,249,138,215,125,90,127,128,251,243,252,190,30,175,128,199,225,191,155,75,223,28,239,245,138,211,116,187,105,47,120,4,253,233,186,8,192,202,237,253,210,128,48,92,23,20,163,78,224,95,64,191,255,173,176,224,223,90,63,96,235,157,62,187,99,237,58,179,81,225,98,19,22,36,71,11,249,206,212,158,72,146,252,235,7,85,124,83,88,38,143,205,82,109,17,155,110,224,125,155,38,107,162,119,134,249,65,88,239,8,81,223,79,63,47,237,42,53,252,196,3,208,107,174,232,5,127,82,9,211,58,244,199,138,114,24,154,45,104,113,13,147,187,31,181,103,150,242,128,99,152,238,63,4,244,104,23,64,54,175,7,208,181,195,139,75,122,94,91,253,214,96,14,233,216,158,166,253,83,164,175,173,152,87,207,32,183,188,109,156,182,243,4,41,80,41,60,218,74,254,142,210,149,43,213,208,116,174,221,105,128,151,151,72,239,188,52,84,29,25,197,165,97,93,196,1,141,41,24,194,207,255,128,163,38,165,234,40,81,146,248,8,134,145,43,81,26,100,134,84,192,151,179,237,12,160,
63,129,168,75,168,190,236,216,32,10,82,161,25,76,211,223,26,187,220,204,119,213,207,67,54,22,19,133,73,61,166,210,46,107,35,214,24,162,144,72,39,164,0,62,167,20,221,98,211,73,114,239,99,42,182,143,113,52,206,156,69,43,134,163,149,110,118,247,188,26,25,35,150,238,124,51,244,157,183,222,179,194,60,90,56,136,203,19,241,55,30,78,219,3,85,93,233,155,22,206,138,17,58,148,250,42,197,93,47,235,159,139,10,94,12,140,80,235,28,244,21,158,195,63,214,230,66,53,104,169,145,77,98,15,239,97,178,118,148,134,45,252,148,200,113,197,113,7,20,199,109,204,216,178,158,223,2,177,82,155,21,187,66,212,180,187,23,127,15,6,205,29,137,92,8,112,14,251,58,248,172,244,115,144,28,255,236,94,171,213,98,178,245,95,111,32,251,240,217,219,174,131,143,238,183,131,130,15,165,153,229,157,42,235,178,147,75,236,231,119,174,180,58,47,187,211,217,140,185,220,76,181,6,206,79,74,22,228,166,198,162,84,49,247,20,80,70,213,208,133,208,172,38,128,71,165,
96,165,55,106,94,70,149,65,169,20,40,103,102,77,46,71,7,2,74,64,109,80,81,41,249,25,149,94,78,28,175,217,52,223,88,8,47,227,191,130,246,58,92,191,195,109,127,36,92,216,53,223,247,119,200,28,224,185,157,239,123,222,30,74,58,222,247,123,25,125,117,190,207,249,239,247,253,13,7,149,66,98,145,52,37,147,180,0,223,48,211,76,48,217,218,145,91,143,247,88,247,216,171,117,27,234,182,52,203,224,11,53,243,191,143,78,129,190,99,220,125,61,239,227,252,125,60,222,175,153,188,199,99,202,141,93,93,245,160,126,32,213,207,86,132,74,20,24,102,4,223,208,192,179,43,206,140,185,142,30,164,240,249,199,187,201,175,31,79,138,202,66,148,116,44,205,203,249,180,110,222,160,115,92,183,186,130,131,173,58,246,56,87,27,97,123,212,156,43,21,39,225,142,187,58,28,237,58,93,251,216,170,214,155,245,250,231,187,254,101,113,57,157,54,171,211,234,116,219,157,14,190,227,246,220,63,160,10,156,107,251,188,191,59,114,13,128,3,90,180,91,159,123,216,235,240,
51,221,246,218,109,247,162,156,63,175,111,246,154,232,54,185,93,13,148,62,17,115,104,246,145,95,244,195,149,69,189,234,236,92,85,204,22,49,93,229,104,164,146,203,234,185,112,130,85,244,108,33,107,66,102,235,166,176,76,173,165,98,110,51,103,102,203,3,180,50,1,111,254,137,110,133,204,100,155,8,213,108,17,180,96,67,186,67,185,88,82,37,12,106,195,13,164,118,207,75,224,109,158,255,103,20,220,14,120,65,31,196,208,174,99,67,166,194,192,142,123,245,253,10,79,230,75,110,238,110,112,99,243,105,144,79,52,43,155,221,158,215,58,250,2,218,206,175,193,12,132,6,149,170,245,149,12,80,14,75,78,94,252,246,126,251,130,183,62,221,60,98,151,10,114,102,43,183,175,69,190,75,195,21,104,0,86,176,7,182,167,13,174,232,161,103,139,119,129,58,69,49,41,218,76,16,24,4,184,2,250,113,101,5,57,37,198,161,97,114,154,200,45,43,186,38,137,154,118,96,98,106,121,30,140,117,255,27,74,165,179,254,168,169,157,146,169,29,208,252,26,80,13,219,212,249,
192,132,116,5,50,228,83,81,91,106,220,208,220,120,202,161,157,128,220,69,232,69,158,203,49,168,2,233,170,126,123,19,6,236,213,103,231,112,188,110,97,215,41,231,71,190,15,204,93,121,241,121,237,102,198,79,192,112,111,103,74,179,52,223,2,49,121,86,250,149,22,122,74,112,78,213,15,192,246,114,55,70,152,246,54,117,85,185,75,124,123,6,15,71,21,46,194,164,95,176,25,55,163,82,220,0,64,199,67,1,162,154,89,180,128,53,213,69,69,30,29,137,130,202,247,141,74,210,80,131,70,96,208,214,193,111,126,169,16,55,4,33,236,1,161,13,184,52,180,125,59,27,141,118,167,213,235,182,124,142,163,221,245,61,188,238,215,191,239,70,6,191,249,60,60,247,235,113,248,232,248,203,188,187,93,158,62,206,4,74,141,39,208,249,188,113,142,159,74,162,245,238,143,251,223,28,146,3,232,186,167,223,85,54,43,80,126,187,80,9,141,221,112,56,133,241,218,65,149,158,180,109,85,91,59,173,55,87,48,221,236,209,148,18,248,50,20,25,4,33,8,84,164,201,219,90,
209,25,36,26,42,226,175,144,42,136,235,63,81,39,126,152,20,245,194,41,72,171,39,67,84,44,239,30,227,178,191,214,190,207,107,250,145,125,120,222,247,177,37,235,213,190,159,146,239,39,235,127,100,187,199,238,87,59,21,104,187,191,92,214,15,10,3,28,156,133,13,221,192,155,169,191,106,134,112,220,169,234,149,102,139,148,253,45,2,219,207,103,244,250,241,126,175,31,145,247,117,35,239,183,133,205,198,227,253,14,211,144,110,231,235,130,190,135,107,105,119,11,248,159,180,91,30,15,86,41,148,244,203,18,124,23,18,195,68,216,3,166,85,125,16,218,192,208,20,70,129,96,136,61,186,42,154,6,252,75,224,158,203,241,22,87,228,138,216,185,126,47,213,146,154,37,109,69,149,218,200,165,203,115,117,175,196,185,215,145,175,170,189,4,235,219,37,219,227,45,177,238,130,217,213,66,113,52,91,191,113,226,111,83,93,175,150,11,238,10,251,25,175,24,28,30,67,197,224,178,88,159,119,88,216,111,119,253,75,239,27,153,124,112,0,188,31,106,125,70,33,255,237,237,203,189,
45,159,71,198,154,226,160,10,197,179,80,60,147,222,185,253,122,112,140,240,71,196,99,70,237,28,132,236,227,29,105,153,84,35,107,218,38,4,96,73,60,160,128,184,120,73,162,102,243,73,231,148,167,224,177,172,43,161,173,167,180,226,192,59,205,93,62,235,23,180,188,155,199,38,182,155,183,186,41,19,83,90,90,238,63,209,250,230,250,100,253,43,191,252,250,111,9,27,232,198,55,244,215,214,233,113,200,79,81,82,150,238,225,94,147,126,126,67,193,177,62,7,151,111,12,121,133,172,174,225,83,228,48,184,202,96,174,146,97,85,167,202,98,193,130,229,57,47,225,45,94,124,22,101,85,43,129,223,172,164,63,184,50,34,249,242,27,104,32,84,211,188,21,124,34,246,118,207,126,155,138,209,89,84,142,163,183,132,211,76,147,80,76,28,239,87,240,17,236,108,104,236,46,142,45,116,73,170,33,114,48,175,172,178,47,35,204,208,203,121,81,153,77,11,226,83,24,135,120,170,163,86,214,198,10,6,174,182,96,234,129,29,126,234,135,210,78,136,140,102,209,167,172,229,227,154,
229,141,130,132,225,156,60,37,157,32,228,51,145,52,216,134,89,15,3,255,2,246,215,221,246,190,192,144,172,171,247,28,224,141,114,211,217,125,126,161,183,24,186,175,195,6,118,1,17,252,102,222,221,116,221,236,85,11,112,169,224,205,89,100,63,141,170,27,187,21,135,218,5,21,25,57,185,87,133,125,102,10,138,35,85,95,13,122,53,180,230,19,41,169,210,64,245,242,4,148,99,198,67,75,213,20,73,53,164,212,141,73,154,191,130,50,251,21,160,176,146,160,110,170,22,40,167,187,73,244,131,19,67,87,104,237,215,64,217,249,205,185,10,232,89,24,120,103,161,190,155,89,153,42,95,120,199,225,178,217,156,150,247,1,15,222,207,65,38,211,27,185,92,53,189,60,150,66,203,229,49,222,253,29,130,253,219,63,218,236,119,235,121,231,82,31,32,212,201,241,7,232,205,166,7,248,102,130,174,253,67,196,234,63,86,92,177,90,161,80,34,126,202,116,6,143,110,21,169,145,66,157,106,46,64,106,54,110,136,13,88,82,212,79,187,50,125,104,100,237,172,106,45,171,75,165,
169,40,39,102,128,39,127,233,64,33,165,50,232,230,42,85,145,167,205,228,197,38,226,106,158,254,158,231,183,223,202,122,189,213,239,157,179,179,119,182,223,239,0,205,81,162,191,223,108,19,90,125,66,36,65,98,188,156,43,59,203,41,217,168,24,15,21,220,181,172,226,44,219,232,155,107,227,118,222,239,30,232,79,204,198,251,62,116,119,246,6,104,238,186,122,220,87,239,13,17,239,247,207,187,200,126,127,108,103,51,217,223,46,167,237,173,185,7,118,102,198,146,46,172,4,230,6,37,211,215,213,97,70,43,58,74,217,17,176,191,148,143,20,54,16,137,225,81,2,47,206,11,38,98,148,160,122,144,33,17,183,249,48,76,56,73,28,158,37,185,214,121,70,27,241,52,72,186,50,224,84,161,166,118,119,23,178,30,241,111,108,117,78,119,57,121,6,6,60,16,179,241,25,167,159,49,90,236,172,238,213,223,12,124,120,27,237,92,108,204,20,152,223,157,244,236,19,16,176,211,225,64,56,41,176,119,182,33,239,220,45,213,107,177,120,189,59,135,140,41,250,45,137,64,116,161,
173,214,132,180,214,25,51,24,74,49,188,126,37,108,208,27,26,97,168,38,160,68,30,171,200,211,18,68,24,222,55,6,216,213,13,139,231,175,197,19,50,36,219,88,245,19,24,67,71,186,157,66,32,18,153,195,31,47,96,17,253,29,222,1,9,105,83,172,108,228,88,100,117,113,136,39,189,163,43,57,24,254,167,224,116,25,248,78,176,17,180,196,73,2,134,10,163,208,65,26,45,244,73,212,212,222,211,139,236,52,26,220,88,28,205,58,236,44,179,149,243,39,175,76,99,1,186,29,139,61,218,223,52,218,224,72,63,142,81,151,125,151,193,91,199,121,117,155,41,30,57,7,102,158,35,153,190,66,231,113,119,241,39,100,42,203,131,230,36,234,208,96,104,81,234,177,65,192,243,229,66,150,52,101,129,166,77,205,62,75,226,145,52,244,204,6,62,187,205,65,211,210,230,188,196,85,136,16,168,133,221,127,72,137,158,222,45,25,143,251,146,230,150,98,87,148,159,128,63,100,0,159,171,92,72,194,188,140,70,238,107,24,152,85,137,88,172,23,135,189,90,36,66,56,19,161,
80,75,167,148,85,75,236,30,194,109,215,87,123,80,61,178,174,182,158,243,61,210,27,18,220,22,219,121,245,123,248,62,201,249,98,239,237,26,107,54,187,125,176,164,147,62,81,165,127,96,236,114,216,150,10,182,250,236,29,98,191,40,226,69,45,108,64,109,210,251,17,77,175,4,200,15,144,23,126,49,66,14,11,3,192,194,145,223,18,217,75,241,65,82,50,96,95,170,168,154,58,102,89,60,49,53,76,235,58,232,126,170,169,43,199,62,154,154,247,255,64,244,115,168,88,240,185,184,87,217,232,80,56,59,59,189,122,61,212,237,184,236,94,143,55,98,119,120,254,53,251,205,119,60,126,59,151,212,95,203,150,39,248,188,247,159,245,213,253,192,187,191,39,247,239,49,249,118,116,58,89,247,251,6,133,97,182,16,15,192,220,246,62,110,252,243,254,250,222,238,111,236,229,189,27,191,71,55,233,207,235,245,178,255,222,129,154,153,92,93,83,30,128,102,114,59,61,59,103,124,253,99,31,237,100,250,123,63,94,193,206,200,20,254,163,160,166,161,168,160,250,182,98,73,44,196,
11,220,53,146,172,18,199,102,13,88,241,144,81,115,175,63,9,122,147,56,169,76,250,127,49,249,190,74,187,202,238,251,149,185,119,203,74,237,247,3,169,13,175,236,95,252,130,174,185,94,176,88,168,80,175,140,237,174,9,39,49,64,74,162,62,66,177,145,140,79,111,140,233,135,143,104,209,254,220,58,223,251,170,187,183,43,115,226,123,169,243,117,174,30,175,239,251,125,78,123,223,76,103,228,162,233,182,222,118,219,231,113,253,243,105,187,183,217,170,159,114,29,188,160,97,14,12,29,7,59,225,143,112,152,16,141,95,76,239,75,104,53,158,4,4,232,173,70,132,155,98,196,21,137,2,129,84,163,183,66,65,46,196,52,152,166,197,60,231,187,193,48,30,98,225,168,22,235,150,85,72,197,165,131,46,161,249,252,25,50,249,152,204,66,49,99,29,192,12,210,204,191,4,58,16,0,65,208,204,70,246,171,78,227,32,14,227,100,0,185,38,30,219,143,190,200,169,238,222,211,211,253,238,155,223,87,117,66,82,9,16,189,50,154,138,151,172,241,178,163,206,193,218,34,140,48,
39,97,182,139,251,26,209,6,185,56,34,217,74,146,42,111,96,178,106,58,61,146,72,146,155,239,195,137,179,219,55,72,111,120,177,68,172,27,128,208,95,200,144,152,135,11,12,121,96,30,80,151,173,89,60,179,187,120,72,216,80,98,16,183,192,2,113,40,98,128,159,16,58,76,33,230,196,45,90,182,243,193,46,81,249,151,196,86,75,241,129,219,194,156,193,192,167,244,92,98,234,38,188,185,154,177,84,105,207,67,220,29,78,197,39,215,207,86,219,114,46,99,109,53,157,195,46,210,216,173,159,173,70,87,147,155,62,60,5,117,135,135,255,32,19,5,30,9,44,176,48,188,180,167,136,41,173,62,84,214,132,94,115,117,117,71,42,128,237,172,100,9,122,73,137,218,95,190,8,88,130,130,68,195,181,14,254,12,213,178,178,106,71,33,88,33,173,138,154,55,100,88,249,147,188,37,80,111,133,83,114,254,139,94,155,44,165,175,106,85,77,252,121,16,123,198,236,233,152,116,103,9,141,197,37,116,72,46,64,74,24,34,246,203,196,10,1,226,0,123,97,13,65,54,101,216,
211,156,34,109,231,251,195,51,223,193,245,238,222,66,255,27,177,56,43,232,238,22,210,242,80,38,45,183,97,241,190,45,135,175,254,90,121,14,141,183,69,218,74,127,220,218,195,117,59,5,77,89,42,235,146,214,172,153,160,52,229,134,69,19,159,95,178,42,253,82,96,211,76,91,75,32,12,10,97,165,210,65,146,62,223,32,55,234,14,131,214,111,27,98,205,67,131,18,170,58,130,250,117,161,27,178,94,168,168,162,168,196,217,78,203,148,149,139,24,209,150,197,32,250,235,46,63,91,65,192,221,89,125,247,141,50,231,25,41,169,242,171,84,176,25,205,198,243,11,117,68,166,79,105,229,11,169,224,37,87,141,22,186,237,182,221,31,136,217,177,127,78,167,77,203,255,212,225,109,189,227,9,244,114,217,124,61,160,12,120,149,249,158,247,211,241,227,171,140,92,41,184,141,6,188,237,178,91,222,159,86,176,187,230,180,255,124,36,93,179,218,164,42,85,104,116,200,223,176,37,193,4,114,237,226,168,193,103,16,32,192,167,142,34,108,212,145,61,27,185,65,130,90,29,33,27,
23,196,56,14,234,199,49,202,134,136,21,113,20,215,64,146,95,200,111,53,85,146,173,236,231,121,86,119,55,25,94,111,218,246,62,139,154,241,108,239,195,83,88,239,73,15,165,219,114,109,215,191,103,233,35,16,38,52,79,13,9,47,64,140,21,149,228,157,209,190,12,145,46,149,15,76,18,125,86,179,191,215,109,247,245,252,212,238,195,108,247,3,250,178,29,168,42,103,211,5,64,207,239,239,179,223,46,35,172,158,137,5,39,161,93,252,31,88,100,98,149,208,174,222,105,245,58,173,104,177,199,204,6,143,209,88,173,48,60,144,167,212,189,188,105,82,146,15,195,208,51,35,63,181,24,35,81,62,167,136,250,75,243,83,208,186,187,155,16,96,219,70,106,199,207,48,6,42,241,148,149,62,62,206,93,36,82,223,104,184,255,186,131,91,67,17,118,105,198,120,133,72,122,212,170,102,156,168,66,247,79,71,1,232,18,113,242,16,228,34,250,105,144,59,56,97,104,34,79,163,205,2,154,233,237,101,89,170,174,205,103,75,101,110,204,218,188,61,157,150,220,134,178,228,222,185,
215,237,127,7,67,77,111,16,67,25,129,96,123,98,146,93,25,98,80,67,72,176,93,198,23,66,147,37,184,196,73,239,137,206,16,133,140,45,27,243,17,80,82,105,5,212,54,65,137,37,145,17,156,105,102,171,187,120,68,2,22,132,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,202,82,236,241,22,24,197,100,129,28,15,224,129,195,95,136,190,198,28,186,16,236,50,87,236,28,80,242,61,216,152,190,193,27,93,178,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,80,89,149,146,102,210,81,215,144,147,18,253,91,154,161,158,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,248,138,17,157,26,131,103,146,186,161,24,200,119,98,221,173,119,246,54,103,247,248,107,58,106,73,166,121,154,67,65,154,224,106,62,67,241,142,3,165,84,33,
80,223,89,76,108,71,100,128,73,38,83,73,159,255,3,72,184,232,137,250,141,57,160,3,90,187,109,191,185,169,89,141,69,219,81,213,60,160,175,237,250,212,61,95,169,161,227,227,110,121,23,79,13,199,57,80,199,57,66,179,89,31,159,223,169,88,194,54,126,167,148,214,133,24,165,169,213,37,137,134,234,146,213,24,151,12,10,178,111,65,169,42,14,8,39,143,158,35,162,169,181,145,222,24,255,227,119,136,186,96,243,119,243,128,63,170,166,105,157,186,154,97,49,34,116,88,215,101,78,116,54,112,215,11,69,124,241,17,210,182,152,246,98,8,62,60,70,160,1,200,220,180,191,239,54,58,155,94,187,213,110,180,186,170,94,221,215,240,120,221,104,187,221,229,249,184,255,225,219,244,56,248,84,84,241,92,15,69,244,1,87,229,152,230,14,177,63,31,180,195,113,192,193,131,16,81,126,223,244,47,112,184,253,150,139,211,242,118,28,64,103,23,10,176,129,129,111,122,122,250,234,103,224,62,47,191,88,165,187,252,83,9,88,167,47,43,72,120,71,255,0,213,50,20,190,92,
156,251,135,233,229,154,132,174,163,162,37,117,50,221,67,17,29,158,84,216,12,109,111,74,130,90,152,173,162,108,121,79,206,141,73,119,171,109,117,58,187,255,248,184,239,91,188,199,3,241,120,159,115,180,211,63,74,188,190,236,14,208,173,204,203,148,41,93,246,80,57,45,142,103,1,2,166,243,157,73,126,111,130,253,246,185,253,64,212,187,19,214,189,63,174,23,122,142,166,235,114,219,62,41,155,221,221,242,216,27,203,154,173,217,108,51,85,182,77,86,170,20,238,214,62,160,55,55,55,24,153,179,173,90,179,214,170,53,253,191,111,118,90,204,41,99,134,51,109,235,99,53,120,114,53,41,102,180,87,196,148,108,161,110,38,155,124,108,89,200,137,48,136,238,40,237,96,192,232,136,170,68,37,168,197,191,253,132,209,41,174,162,136,68,165,84,251,217,136,171,101,138,7,189,18,240,192,228,92,163,2,158,88,156,139,77,161,73,72,162,56,224,236,248,76,148,33,223,85,2,63,240,14,202,19,204,36,138,1,98,102,188,91,232,68,12,23,183,121,217,197,185,153,39,143,189,
111,185,255,15,28,31,34,145,46,14,145,240,126,44,194,229,215,144,233,148,47,133,55,185,211,187,63,161,139,195,4,92,72,169,255,230,97,118,137,86,44,22,0,210,240,95,122,240,26,34,235,65,244,135,136,3,128,0,68,118,224,116,225,18,47,72,48,206,212,172,17,79,8,82,232,189,133,123,131,22,125,37,143,80,86,139,7,132,44,213,38,121,36,10,137,57,198,187,132,217,177,94,195,66,236,238,147,188,147,91,48,110,75,65,62,202,185,73,198,198,65,191,9,220,84,30,18,164,109,27,200,244,17,74,37,162,210,204,66,198,208,138,86,143,124,68,247,207,112,108,114,70,182,91,61,23,255,105,31,157,55,137,149,218,243,102,154,158,69,125,12,27,87,50,109,194,117,79,10,148,196,111,90,148,173,172,236,72,22,95,74,254,134,224,73,186,92,174,118,21,4,35,142,195,92,69,192,130,245,207,89,187,201,156,17,49,89,121,63,90,28,226,200,140,8,150,50,202,164,249,22,138,94,222,101,20,223,182,248,224,51,142,75,84,194,199,220,89,72,38,156,214,33,194,179,96,
4,39,83,190,17,58,129,241,243,177,77,36,116,252,130,51,170,243,126,121,17,38,94,41,134,160,157,118,117,222,35,189,108,128,106,232,80,53,219,251,13,190,111,178,222,97,103,109,186,23,95,21,199,78,224,186,173,32,133,29,104,161,151,32,118,101,158,130,82,17,114,147,53,92,108,169,243,69,26,150,176,82,199,9,73,41,182,122,172,44,217,168,156,60,132,242,54,75,121,92,75,216,165,158,163,86,161,189,130,55,151,138,25,85,67,79,46,21,53,145,9,182,215,218,3,244,120,188,136,28,46,239,108,199,119,184,140,159,40,246,59,254,48,9,178,11,215,55,231,0,1,0,209,49,176,16,233,48,55,50,114,82,83,41,177,246,114,53,217,123,205,86,179,93,109,87,115,206,207,180,59,157,112,226,98,248,46,40,13,195,110,193,252,30,78,100,126,193,44,242,227,249,219,246,239,231,251,188,79,7,251,207,17,39,134,125,208,45,153,231,212,226,204,225,170,121,157,125,252,221,189,6,163,133,155,121,125,242,183,62,57,182,97,172,187,147,142,17,172,113,47,45,54,133,51,93,
211,40,53,235,169,4,76,49,133,45,248,249,166,156,188,36,29,108,81,110,82,42,75,145,17,151,197,189,151,160,224,237,249,119,105,182,186,130,9,196,114,127,176,63,62,31,241,5,126,66,179,91,3,163,226,133,168,15,191,41,85,102,240,247,179,59,30,163,122,221,197,77,79,157,227,129,113,67,181,67,31,91,53,34,89,7,130,230,102,14,111,219,237,120,238,83,130,4,214,226,187,98,156,191,24,237,214,130,211,114,167,139,39,48,151,172,1,152,142,77,127,46,213,196,150,12,181,82,208,147,177,13,155,153,59,194,121,228,47,60,16,199,65,86,200,45,138,53,126,136,4,73,10,252,212,51,249,247,103,171,28,227,82,220,140,66,47,74,117,127,109,225,23,167,28,243,74,92,13,64,37,160,228,148,148,89,54,28,17,173,37,33,97,114,159,81,25,109,242,14,22,85,130,42,182,182,132,136,219,50,136,83,97,46,78,133,28,130,227,46,179,201,197,228,136,65,142,136,176,190,9,2,52,78,128,42,253,44,133,89,232,45,127,221,95,216,16,180,123,60,191,143,127,27,46,107,
224,230,63,33,3,161,31,29,134,229,193,127,145,254,43,152,40,5,44,166,65,93,36,95,244,249,129,125,242,1,162,16,49,120,254,163,24,102,69,152,155,176,4,70,208,89,136,88,216,70,126,74,84,195,17,104,249,76,46,82,226,200,208,195,104,141,90,10,200,8,229,132,196,83,218,69,34,136,196,29,3,163,68,19,146,28,205,21,153,209,37,253,160,25,102,144,147,179,120,55,196,59,121,70,176,57,50,153,169,249,155,59,57,58,38,17,19,73,103,194,145,128,136,136,108,230,66,136,84,160,50,100,214,61,162,136,148,27,160,119,189,78,45,105,8,98,9,168,95,66,4,68,99,112,217,189,230,147,49,139,49,37,225,137,154,44,65,43,20,48,154,187,185,41,62,242,200,142,25,25,202,138,26,169,36,170,44,169,162,166,39,169,32,113,248,206,105,200,140,153,30,63,33,198,184,129,41,10,138,240,223,245,113,142,81,29,234,73,149,32,99,99,150,99,89,140,178,52,155,6,170,17,192,34,183,17,195,60,4,24,20,168,58,206,202,81,9,136,108,81,149,64,207,93,9,8,
87,72,78,198,213,172,222,41,17,133,131,27,220,127,135,71,99,150,74,10,32,197,49,71,227,100,72,25,147,141,77,223,97,181,233,193,84,177,40,164,95,58,75,53,26,117,197,244,68,86,81,27,197,41,63,70,107,188,245,169,126,32,232,53,229,249,97,13,74,80,98,226,4,189,165,251,2,215,152,32,20,113,142,92,182,138,244,134,98,68,238,32,146,175,104,247,166,11,44,189,248,214,216,184,110,157,215,41,96,4,202,2,146,211,172,110,97,2,3,192,171,165,4,189,39,83,62,86,160,24,34,236,143,1,240,64,136,219,192,185,70,67,221,249,39,207,58,187,246,212,217,120,107,91,159,93,158,175,125,111,132,203,50,43,215,8,238,146,213,224,180,155,91,166,235,114,124,239,179,239,123,95,172,145,57,203,117,61,208,52,246,217,46,171,228,178,193,107,127,47,16,205,198,215,1,68,235,32,151,183,99,7,172,127,116,45,128,79,76,91,173,207,88,41,33,91,189,172,174,177,50,195,202,193,139,219,237,182,124,133,173,19,205,52,211,217,39,12,77,74,127,25,173,152,74,252,
101,219,242,31,13,22,227,121,112,32,63,23,166,5,252,51,174,164,188,251,105,14,105,245,229,210,113,215,83,76,22,119,213,106,181,14,93,247,235,124,50,39,54,97,17,218,255,61,101,156,250,115,145,201,217,118,226,159,195,249,5,244,62,113,123,11,252,99,169,83,3,50,186,129,130,130,248,78,140,213,109,108,108,30,175,219,188,63,91,94,35,168,19,158,195,231,120,219,80,247,221,246,185,59,58,190,206,33,68,16,210,213,200,140,77,105,41,74,193,56,87,67,146,40,162,118,154,169,92,75,46,172,30,31,85,199,72,71,101,170,203,181,118,91,148,136,8,153,146,146,220,137,95,232,158,116,61,157,163,4,203,190,228,31,180,13,72,133,13,98,160,7,246,230,148,184,95,176,89,101,47,250,39,246,180,59,224,86,141,98,185,101,98,102,185,143,154,182,124,24,147,18,135,163,238,228,172,128,163,139,69,136,67,37,184,148,80,162,86,25,42,18,81,39,242,195,4,57,5,170,15,173,80,62,114,56,70,200,252,1,245,252,99,128,182,171,52,223,228,229,237,125,99,205,239,123,
10,84,216,21,243,210,114,111,208,219,200,30,12,4,26,10,84,194,38,129,242,144,200,197,249,82,225,252,80,133,213,18,181,133,183,58,30,89,138,87,117,185,151,173,241,234,19,85,170,177,60,122,227,84,157,21,95,36,105,78,22,125,20,173,170,24,236,73,168,130,50,188,48,3,197,229,80,195,92,29,1,245,82,148,69,108,210,102,6,37,160,114,87,135,253,131,9,78,99,140,91,37,28,185,17,113,215,11,216,164,13,84,72,41,183,142,2,150,177,64,218,51,233,113,51,196,152,36,78,104,48,181,190,44,200,140,73,203,68,90,196,88,72,91,166,205,216,10,157,176,170,117,45,148,210,172,35,173,89,106,179,238,192,86,58,140,49,37,160,218,8,153,197,28,21,213,32,171,195,95,222,15,184,246,125,87,0,126,92,80,230,183,168,23,130,198,68,33,215,208,193,51,172,91,67,179,100,156,107,54,79,111,104,110,94,106,150,100,24,31,53,190,194,193,87,33,250,108,199,5,189,17,12,194,92,108,0,160,17,80,18,17,83,201,130,74,156,30,76,9,157,246,175,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,60,21,218,77,69,205,234,67,119,208,103,32,111,75,49,194,41,179,213,31,208,59,144,90,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,241,97,161,250,61,75,218,246,123,39,73,253,97,45,97,158,185,245,153,95,93,206,47,78,215,86,2,102,74,20,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,165,238,214,25,170,30,253,81,
249,184,44,124,95,243,84,91,37,255,89,0,87,9,170,148,93,88,84,14,105,97,192,112,90,91,219,90,234,223,102,129,144,205,221,105,193,70,204,86,130,79,72,129,121,123,121,112,144,47,167,205,255,252,62,207,135,211,205,92,30,223,87,37,210,238,170,42,254,222,159,233,140,37,98,197,246,29,217,74,215,194,245,6,15,111,17,157,6,67,10,234,162,179,94,226,54,211,83,115,251,213,235,56,93,78,143,155,254,187,189,47,250,219,81,228,241,158,140,116,141,83,190,173,17,45,83,79,5,165,32,31,21,103,84,168,94,154,11,177,209,1,11,32,16,22,114,131,51,174,76,75,146,203,9,185,197,198,174,166,87,23,117,149,158,89,80,130,138,18,7,227,244,12,77,39,197,159,143,142,116,32,214,32,228,130,246,15,24,187,232,163,123,5,185,167,104,70,100,145,25,134,15,21,80,63,139,7,100,7,164,195,224,88,42,152,224,5,240,189,209,1,1,195,39,226,118,66,102,118,170,78,80,10,72,23,127,23,200,201,224,122,12,199,253,154,115,186,120,234,11,121,42,145,221,219,
87,137,192,161,135,214,174,231,121,30,254,1,37,178,151,166,69,225,80,41,10,26,62,230,229,121,177,255,236,18,176,14,5,180,229,148,100,195,69,60,156,184,78,197,210,239,76,72,9,71,169,183,48,150,123,103,162,124,169,243,111,234,65,225,73,213,104,241,228,181,104,116,135,201,52,69,245,136,81,138,229,75,54,65,169,157,41,13,111,75,180,160,22,73,152,154,67,48,78,8,161,48,69,126,160,176,102,101,108,4,165,13,136,199,66,0,114,25,35,206,12,86,11,101,176,58,101,35,41,164,212,165,114,160,176,82,183,35,135,136,153,54,142,169,235,150,118,44,69,202,88,137,115,27,13,255,147,53,19,74,7,180,128,37,43,69,229,48,86,164,146,23,162,136,96,17,164,22,220,5,192,234,152,138,84,51,147,163,176,194,136,20,15,127,63,223,171,247,253,134,122,249,45,91,99,251,215,252,213,173,86,182,98,216,73,127,58,134,102,156,151,107,46,127,115,67,137,220,98,8,25,223,219,250,225,27,164,50,63,139,227,220,67,207,115,61,251,217,216,13,131,230,78,195,92,230,
198,43,10,39,164,132,71,58,229,120,144,117,175,92,252,203,218,78,140,152,134,49,36,174,117,106,11,99,118,169,94,76,201,81,67,115,81,19,34,90,211,155,77,34,177,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,134,49,20,155,138,206,21,113,232,253,186,206,48,196,110,150,126,121,241,77,193,193,112,220,53,0,90,24,41,198,48,153,13,2,165,138,43,217,106,127,156,63,199,27,54,113,6,112,189,211,142,2,37,139,57,88,74,252,4,233,164,110,101,40,29,193,3,23,114,40,3,119,54,208,82,36,68,13,137,91,90,41,188,218,62,4,162,190,65,138,144,159,165,177,249,19,184,130,119,191,178,222,2,251,20,21,22,247,201,201,250,208,75,172,63,239,229,104,59,45,191,190,219,5,213,109,79,209,187,233,231,247,126,255,66,133,211,109,111,237,10,90,54,63,239,69,251,219,186,102,57,91,86,39,24,19,132,214,236,206,154,195,110,175,89,238,142,211,91,104,
214,219,63,105,40,95,41,133,72,200,10,19,33,255,27,121,124,140,106,238,39,125,87,156,206,46,48,252,119,180,168,75,186,99,249,28,26,58,128,35,22,176,130,178,3,19,129,64,80,220,116,132,149,35,160,183,206,125,22,179,238,23,232,107,62,125,15,223,67,244,246,243,81,32,231,240,239,176,73,109,70,170,135,173,234,237,113,16,194,50,68,67,1,240,153,208,34,98,148,252,160,27,60,56,203,213,98,197,102,53,217,169,246,191,247,112,45,130,78,118,183,166,107,249,73,185,31,39,121,19,234,90,1,118,84,120,230,236,96,104,184,136,80,247,122,66,33,161,201,92,205,16,29,171,255,48,49,183,51,178,56,133,92,148,86,136,115,92,246,248,150,86,68,250,146,72,107,26,152,74,8,129,141,118,82,13,183,113,10,127,50,11,78,131,12,105,236,172,108,241,3,222,107,245,132,192,227,14,18,197,4,215,156,42,36,68,175,69,61,29,38,181,6,1,37,239,248,67,228,211,120,164,1,161,168,20,141,115,105,70,42,51,60,14,12,21,226,77,152,9,234,156,175,12,145,115,
87,76,161,89,114,163,61,71,230,216,31,114,232,59,73,219,142,67,5,102,250,83,186,73,54,183,125,16,187,88,117,90,39,50,129,67,231,163,99,184,38,202,74,57,1,129,58,85,99,31,226,68,74,112,82,43,116,46,145,129,228,62,10,170,76,73,102,234,92,113,112,46,233,186,253,193,200,146,7,14,243,142,159,37,12,50,226,137,110,96,96,17,74,25,178,201,56,21,101,209,1,138,198,128,4,133,205,50,22,66,26,157,48,119,10,108,236,100,62,166,18,162,64,134,180,169,195,213,233,110,248,45,193,102,201,213,135,48,18,218,167,72,185,58,212,157,50,70,195,144,58,48,216,219,24,27,244,107,180,198,156,31,134,89,42,107,33,142,86,88,138,119,82,182,144,41,183,36,144,217,191,246,161,220,33,50,189,178,138,143,60,65,181,100,177,98,175,35,252,108,69,197,146,226,100,76,202,210,226,40,197,177,34,95,150,241,252,227,187,114,95,244,115,237,27,87,137,63,77,226,219,167,44,10,130,12,118,145,84,129,36,146,119,90,161,75,124,42,188,197,178,215,172,224,127,163,
229,111,212,252,33,102,77,95,153,233,43,191,89,190,42,51,199,76,239,137,26,53,88,2,194,127,42,67,170,111,134,174,119,58,238,15,181,11,235,39,33,198,111,177,227,90,114,212,28,152,202,143,118,85,182,227,18,87,203,232,60,22,65,20,113,130,134,225,69,115,169,253,55,155,96,161,132,137,149,111,117,116,185,214,223,189,13,20,155,113,31,131,31,164,231,91,189,0,153,2,35,70,1,149,210,149,19,15,68,64,208,201,49,2,47,9,151,47,133,23,231,10,47,112,1,48,9,203,186,240,144,160,136,72,247,46,132,106,94,169,18,94,167,9,249,250,225,176,48,87,30,66,146,67,67,228,138,8,66,249,176,24,122,99,131,184,102,173,109,254,2,144,206,96,166,192,122,228,182,166,108,198,151,245,123,247,60,63,215,225,238,121,249,190,50,173,8,156,16,217,56,92,112,155,238,166,237,29,182,160,64,219,13,232,96,162,84,63,87,164,187,130,180,219,155,142,119,203,138,255,123,220,37,58,10,244,230,113,65,97,59,167,216,184,108,14,227,193,217,110,70,235,104,111,173,100,
85,61,86,149,45,60,5,214,119,21,177,86,163,16,154,213,200,77,84,195,134,195,102,59,131,145,178,155,216,73,69,228,37,146,52,111,202,215,90,140,54,139,17,105,53,27,45,199,27,152,42,231,255,238,31,139,30,4,126,119,195,237,168,129,27,238,13,70,106,20,80,171,9,145,112,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,40,200,129,31,151,184,99,104,127,49,4,100,189,3,33,142,97,43,67,142,143,43,45,80,139,209,206,145,13,238,68,9,21,169,64,200,82,17,113,55,219,172,32,219,59,188,199,106,25,47,138,37,175,75,57,173,249,196,111,39,185,133,63,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,120,2,54,5,45,191,52,253,41,199,216,220,119,168,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,124,164,141,148,
16,10,111,254,10,109,234,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,148,7,120,202,232,130,198,255,175,218,11,239,242,201,16,153,135,196,44,66,154,92,1,224,155,137,61,83,73,247,208,199,193,23,167,239,4,184,208,181,116,219,138,72,36,132,80,52,62,205,78,85,0,106,34,150,160,105,160,231,153,32,192,34,228,175,146,225,138,112,105,196,53,72,113,102,218,90,134,27,37,4,179,95,214,208,144,136,106,242,88,2,116,25,73,197,54,121,89,120,253,179,187,183,121,43,165,142,73,195,50,177,132,32,102,163,13,198,140,220,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,80,16,237,244,156,198,246,154,114,86,210,100,88,52,122,95,33,237,229,166,126,93,108,237,101,47,185,184,248,108,38,95,83,51,126,199,147,127,97,114,174,47,110,154,4,38,3,180,103,154,66,102,155,109,140,218,57,133,88,15,65,228,167,175,239,180,150,86,202,236,165,
141,196,116,126,68,156,53,5,16,41,236,115,145,125,121,17,221,51,171,95,204,217,168,144,82,38,254,133,12,255,106,158,2,19,227,106,26,158,37,17,155,190,236,230,172,64,218,154,47,135,38,166,97,2,225,10,129,205,168,249,183,176,115,139,149,191,96,26,83,92,128,227,97,170,106,3,171,0,18,88,237,49,188,88,24,140,43,69,115,5,162,199,164,204,26,244,28,20,196,65,4,254,24,29,124,20,250,16,107,2,8,248,69,94,145,6,31,203,48,188,93,247,110,132,220,239,13,187,25,226,35,132,11,102,33,253,12,36,30,35,115,255,84,28,181,45,173,231,32,6,144,108,61,115,123,145,182,247,139,93,98,52,53,220,205,134,7,211,243,57,91,110,160,16,1,112,222,45,39,228,221,202,56,216,79,7,253,103,121,240,125,190,208,61,196,12,239,195,61,123,157,63,137,103,181,68,5,155,249,247,192,21,230,171,137,96,195,108,89,208,175,207,148,245,64,237,77,146,13,246,7,241,54,168,11,84,88,108,181,32,109,216,126,228,15,42,98,89,138,90,116,208,245,226,171,233,
50,213,186,30,83,228,94,213,239,239,186,140,84,38,145,205,10,141,166,233,250,23,226,115,238,116,47,171,183,195,236,125,96,193,216,5,248,187,224,104,187,176,224,83,227,59,174,84,48,79,75,192,24,199,251,241,29,240,142,123,85,63,206,118,43,214,0,53,130,121,24,49,49,161,162,170,160,105,235,50,68,20,163,164,163,3,24,81,15,226,239,32,103,5,20,28,21,12,85,241,53,44,180,156,141,148,144,192,1,18,144,247,6,0,35,187,207,91,16,76,73,46,141,67,213,111,173,49,7,159,205,217,215,236,57,13,148,211,34,25,21,47,196,52,43,149,156,158,53,82,226,180,4,85,178,140,177,254,244,14,198,163,39,194,187,37,15,171,132,67,43,41,111,5,210,68,37,130,130,87,208,242,40,249,135,156,197,154,89,250,7,148,144,156,137,173,186,240,5,215,119,232,176,255,198,161,9,68,63,165,97,207,172,45,178,42,10,51,242,23,218,59,125,142,181,235,103,102,203,62,9,38,238,240,48,53,138,116,134,99,220,136,192,9,57,51,44,127,210,124,68,83,57,123,114,130,
172,209,28,27,198,183,192,43,52,255,48,15,40,198,66,189,139,164,205,232,33,129,66,63,211,198,48,17,48,39,216,91,64,116,176,53,169,64,16,28,17,145,155,199,164,203,133,124,33,38,22,9,154,114,236,64,154,1,0,232,93,123,241,118,200,4,2,93,238,133,68,4,39,180,124,100,162,149,40,72,207,250,212,183,165,200,100,28,157,117,90,31,191,198,30,137,134,218,221,81,96,166,146,212,65,109,103,80,98,166,195,112,95,165,167,143,162,243,227,107,44,210,117,228,232,204,148,188,215,113,31,133,122,83,164,38,26,212,217,164,69,94,17,180,224,15,60,160,108,37,174,174,198,163,107,171,45,198,161,62,159,4,89,248,196,65,107,86,89,74,193,193,103,225,140,142,133,55,98,41,49,3,38,88,36,236,82,46,147,47,36,34,16,230,250,80,53,174,101,207,27,249,185,95,192,69,154,86,200,214,73,7,202,230,122,96,39,88,6,23,206,101,104,49,95,1,240,134,252,5,52,33,189,255,33,13,158,228,145,245,210,130,244,98,151,8,0,101,52,115,42,15,175,255,146,217,
92,248,189,243,227,90,55,6,205,218,45,88,57,144,75,119,194,133,196,126,159,140,129,96,66,40,67,21,124,228,191,109,129,129,34,220,201,124,4,147,214,36,104,198,92,8,10,90,68,147,96,52,143,176,126,63,32,161,213,53,217,146,49,157,11,33,115,26,109,133,2,45,30,40,144,35,220,22,138,199,50,47,12,172,43,167,219,85,180,36,83,68,94,17,9,84,63,227,175,246,142,222,110,4,234,72,92,237,57,145,244,129,192,99,188,254,163,64,209,213,181,203,36,206,153,97,104,143,101,240,20,174,156,176,174,221,218,2,3,254,154,217,182,238,42,103,133,169,126,46,17,86,180,184,54,154,239,221,241,178,159,126,38,247,237,8,98,21,54,97,78,180,24,240,42,120,126,22,209,51,29,218,70,184,96,119,216,236,245,50,191,48,65,228,140,121,230,219,242,28,230,237,172,53,173,60,115,182,22,81,105,0,163,21,31,187,142,78,12,43,84,142,133,26,215,37,210,201,92,24,179,173,128,146,162,52,65,59,32,61,236,157,13,33,40,180,155,44,39,220,181,162,213,60,53,154,
237,54,203,245,200,186,246,190,252,248,215,147,185,241,137,64,146,127,107,137,22,88,133,239,1,230,124,45,188,116,217,251,116,101,117,173,88,87,87,38,66,179,20,66,12,199,223,181,128,18,120,137,191,9,90,225,234,140,214,78,203,167,6,42,57,176,3,173,66,180,183,198,115,245,244,146,184,152,64,57,70,9,70,123,147,175,79,42,101,141,184,31,34,32,199,3,117,140,138,8,97,231,74,104,121,35,202,89,22,99,186,1,7,230,152,75,2,0,92,116,179,4,17,139,71,22,8,14,166,86,200,171,34,199,57,168,29,36,54,76,13,168,113,78,14,129,227,120,18,86,241,17,95,10,152,89,183,11,145,207,37,159,130,207,138,174,19,75,81,202,198,196,9,41,246,25,146,162,206,73,218,125,4,143,190,54,65,57,208,253,24,102,216,107,160,193,151,24,254,45,255,176,37,154,72,21,239,191,32,127,89,192,134,62,6,70,37,112,66,26,175,170,81,251,136,89,212,111,199,227,211,120,30,53,60,83,54,244,67,16,129,166,1,132,173,132,2,60,52,68,5,13,248,76,248,66,
154,154,212,226,237,136,137,69,200,167,236,181,102,14,52,98,228,64,140,184,143,36,193,160,11,170,212,149,16,180,114,79,142,112,93,106,13,0,40,24,217,39,214,184,129,147,171,220,20,130,212,129,11,152,66,22,39,62,56,231,25,158,145,13,30,75,141,129,81,129,161,70,29,95,121,139,55,125,62,193,107,27,111,117,54,152,2,58,48,55,207,210,78,224,162,247,156,206,179,92,79,30,125,235,96,28,0,193,113,248,181,105,155,198,115,65,143,172,113,88,36,6,182,214,159,81,240,163,29,220,228,149,204,227,229,111,158,228,154,192,153,16,157,237,105,136,103,207,68,76,158,246,145,196,147,228,221,192,65,44,114,127,10,173,156,219,150,120,183,146,5,245,19,56,121,4,14,90,190,87,127,19,168,30,192,33,35,146,21,158,184,109,253,143,129,114,174,18,183,241,54,112,26,227,204,119,34,126,221,207,19,239,133,245,107,112,185,244,168,170,91,54,245,188,91,20,164,206,252,190,223,6,202,100,140,229,16,252,223,170,98,37,72,29,130,133,121,120,46,141,182,223,151,148,78,64,
58,96,34,132,249,84,243,131,96,23,130,160,45,68,210,172,51,185,65,123,148,83,62,87,205,20,202,99,3,15,128,10,249,97,185,247,93,242,71,81,87,124,241,204,130,164,17,156,106,117,159,78,221,13,234,91,128,198,5,143,191,101,133,14,211,7,13,17,250,64,32,252,8,166,143,125,108,44,78,210,71,174,58,115,72,140,8,49,160,215,124,255,255,72,56,167,182,235,153,117,137,254,245,105,219,182,109,219,182,109,243,153,246,126,191,189,114,158,28,228,170,174,170,113,167,59,23,99,94,107,13,167,247,143,2,49,76,22,248,209,48,117,80,181,240,186,219,76,13,151,140,177,231,102,110,186,186,252,170,175,227,246,162,172,13,80,14,111,127,255,148,163,238,70,29,0,159,131,241,3,202,149,245,90,140,5,214,143,109,175,217,37,182,161,206,175,67,181,66,199,193,44,204,213,229,223,56,221,225,168,192,240,186,249,65,147,253,209,116,207,150,97,213,80,37,78,90,209,202,27,64,86,83,139,161,52,100,179,94,22,89,44,242,231,176,63,142,159,195,235,251,250,93,223,151,110,
179,188,175,67,41,162,199,191,180,216,227,246,61,26,175,235,115,122,30,159,209,225,179,162,47,214,19,217,110,124,120,58,250,160,232,79,190,157,137,227,145,226,242,47,53,79,127,200,246,93,27,180,71,200,68,49,36,167,176,179,168,163,171,17,77,82,190,147,64,179,58,13,32,24,172,213,32,4,36,66,68,69,75,59,6,43,106,244,0,169,76,197,68,139,181,255,65,32,117,129,212,36,165,34,197,74,64,242,17,73,138,43,42,78,149,56,64,184,201,24,39,213,163,32,12,115,212,125,229,176,243,54,97,80,163,40,119,102,1,64,38,13,121,200,197,175,80,142,2,144,0,170,132,71,204,163,122,81,136,134,66,172,25,48,94,41,168,145,144,214,148,16,23,5,183,21,165,156,122,101,106,228,225,57,80,28,192,13,78,205,5,175,62,64,228,209,160,129,207,76,128,160,109,144,99,147,152,185,105,249,248,223,127,27,235,139,129,232,4,91,196,28,66,51,124,236,13,33,64,70,43,217,89,160,124,34,86,198,152,213,14,188,154,216,101,50,151,225,40,124,14,144,97,200,72,20,
128,0,138,2,56,96,47,230,197,180,55,255,224,233,160,15,49,57,192,30,210,106,6,72,200,225,200,217,201,172,6,110,181,18,161,12,149,121,251,122,220,5,90,25,186,217,179,92,25,176,120,244,156,201,155,180,153,65,168,7,16,229,170,0,96,198,182,129,122,45,117,191,158,167,35,133,137,55,115,171,4,72,51,184,59,166,192,129,172,211,14,2,49,84,180,133,179,192,242,24,23,59,183,116,74,234,248,95,222,221,169,99,159,180,55,140,88,206,193,90,40,80,137,46,186,165,98,181,61,149,161,164,99,194,248,136,169,75,153,206,174,101,171,29,224,93,204,63,184,124,202,24,24,228,3,174,152,3,40,178,31,12,233,199,219,203,113,128,108,65,68,15,160,110,113,8,145,67,220,5,108,221,134,254,46,1,123,116,123,72,195,26,20,1,128,182,156,186,188,222,141,158,191,188,150,153,92,31,243,156,36,24,122,130,127,244,148,64,191,171,34,179,64,1,106,4,80,190,11,28,162,5,57,121,85,96,220,148,73,145,144,175,179,23,9,127,29,50,24,222,48,130,8,142,172,0,
153,72,113,172,120,229,132,71,39,124,40,198,230,132,89,80,174,246,72,200,40,148,44,250,129,0,237,42,221,18,198,129,194,238,200,144,125,24,177,156,179,77,28,233,90,37,152,88,51,48,65,200,12,96,163,69,172,78,182,113,40,238,109,67,164,177,27,201,238,181,6,220,215,6,74,85,255,248,123,130,88,64,31,235,52,61,20,133,243,152,254,69,92,225,70,187,237,119,205,44,41,211,59,201,194,237,133,227,95,63,174,221,48,148,58,214,230,62,17,182,6,86,222,126,213,173,224,226,52,177,157,30,198,39,160,28,153,45,115,159,138,254,48,61,47,247,203,234,245,49,174,180,149,163,217,118,191,176,153,98,76,80,222,204,14,171,35,166,75,106,221,91,202,59,109,55,195,32,95,167,226,77,153,213,88,129,235,174,11,4,70,136,198,9,191,112,222,218,141,83,162,70,164,246,96,213,212,114,237,23,199,166,144,211,66,205,157,171,198,211,233,251,218,110,159,215,235,244,59,21,159,7,103,9,184,186,150,158,15,182,205,237,5,190,51,141,33,29,139,142,99,187,10,108,79,158,
112,126,255,234,34,120,29,76,213,113,203,187,166,171,146,197,8,54,150,205,169,64,24,10,219,245,6,171,164,141,211,205,179,15,202,14,90,138,12,211,2,233,0,76,238,195,34,219,8,13,214,80,215,165,132,38,38,53,162,40,189,28,17,163,153,37,39,73,95,66,73,241,254,197,51,39,225,156,56,139,230,34,84,91,37,210,188,43,206,98,86,80,163,241,45,104,68,41,218,21,144,61,223,159,58,169,15,194,224,23,207,134,208,53,201,8,80,28,102,80,95,4,15,129,48,171,165,52,13,187,46,90,205,8,80,248,16,25,34,36,127,211,5,106,10,162,207,32,49,147,151,168,7,59,175,70,4,8,25,31,215,9,250,67,140,210,239,59,45,65,33,230,183,116,255,9,110,143,253,119,12,146,233,66,206,24,201,190,228,2,181,145,163,16,65,124,72,109,8,233,197,13,100,19,150,92,78,36,42,61,203,120,113,132,182,177,11,204,224,232,86,46,198,82,146,237,216,151,79,197,80,4,83,131,255,85,139,39,131,30,146,120,9,39,96,176,36,60,30,221,46,185,157,3,203,212,
131,245,88,67,135,211,169,20,195,192,241,44,131,41,115,6,108,172,244,240,199,97,94,74,91,42,222,36,100,1,130,247,235,177,97,74,64,254,234,218,42,123,123,174,118,242,113,29,156,109,200,186,52,208,126,120,182,35,29,58,95,92,125,252,99,167,50,27,17,97,208,7,13,9,3,252,121,213,110,203,9,252,244,206,17,148,66,0,82,147,165,172,4,25,115,12,94,66,52,0,175,148,250,7,166,159,43,230,0,163,248,147,208,221,18,12,124,5,48,1,140,32,9,64,190,136,199,52,248,178,23,81,185,21,194,145,187,15,156,43,32,147,137,63,141,179,180,241,138,157,12,2,190,42,55,1,4,129,137,4,145,136,191,84,217,57,192,29,48,10,178,128,163,132,240,133,67,222,121,58,250,104,22,220,19,4,206,112,131,87,132,43,128,208,97,73,224,113,192,241,104,124,161,34,65,94,136,63,71,126,24,26,249,145,164,142,71,30,216,1,243,44,38,2,2,220,4,16,166,150,28,56,7,15,0,27,189,0,184,17,44,84,195,39,83,183,134,10,219,203,101,224,235,183,129,73,
32,12,210,34,92,24,178,239,16,21,178,83,194,8,144,25,247,34,130,26,227,200,54,42,16,199,1,162,3,44,159,99,92,120,24,23,31,250,225,114,180,62,176,245,28,45,224,4,140,159,170,98,173,133,191,72,173,142,160,12,145,213,141,157,50,110,118,174,200,215,247,65,24,109,83,116,142,113,7,59,64,246,62,122,3,233,246,96,121,120,154,190,62,119,207,251,167,138,217,247,69,63,125,212,143,30,245,241,190,77,124,31,199,170,219,103,96,95,31,28,185,104,108,133,221,182,83,89,189,254,62,228,245,254,153,125,130,171,87,65,150,218,91,42,187,104,242,163,2,155,93,176,81,123,150,13,21,32,48,160,90,36,30,203,73,78,64,62,56,15,98,28,25,217,227,95,231,182,254,12,38,163,31,246,188,186,157,105,138,193,122,126,118,38,16,132,241,183,157,40,110,107,195,236,47,22,188,180,190,213,148,122,55,61,191,54,158,71,194,212,112,255,193,213,131,144,159,178,180,171,153,152,135,126,138,177,85,170,44,38,175,82,111,77,175,206,67,61,83,118,146,18,131,4,58,24,
64,32,76,43,37,1,1,49,46,240,140,205,37,1,193,41,8,201,67,10,181,159,29,21,205,130,75,73,59,16,4,19,128,135,37,69,84,212,35,194,147,152,179,168,157,17,104,86,114,230,140,104,132,184,27,209,146,50,80,153,179,72,146,162,39,5,180,103,7,2,117,67,26,82,37,164,29,20,200,86,13,189,156,8,153,66,89,144,34,33,81,144,123,88,195,117,61,169,227,242,14,205,135,177,131,136,128,130,115,203,195,150,7,136,212,25,208,166,178,36,218,218,148,138,128,243,211,78,161,125,255,255,83,210,220,110,173,167,92,3,72,37,9,202,70,35,78,161,18,25,108,6,40,240,24,216,129,246,180,82,128,134,144,13,62,236,106,205,252,66,6,115,160,99,27,251,18,72,242,100,112,133,114,28,83,177,15,93,200,118,28,48,98,113,8,23,80,229,8,5,210,73,44,4,78,182,149,177,24,146,145,6,224,183,60,32,138,48,19,129,99,75,48,132,3,8,36,248,66,233,39,111,232,112,24,48,138,216,136,133,108,229,229,129,142,129,211,128,38,221,7,137,75,96,194,72,
176,104,119,208,63,242,12,80,28,123,34,208,51,18,81,76,92,18,230,10,19,240,26,52,100,41,156,143,231,174,153,77,62,41,101,89,154,42,121,235,178,132,236,132,219,43,71,150,29,107,232,4,107,6,13,67,193,20,52,216,23,22,172,38,85,104,77,198,26,4,208,75,61,68,130,85,226,121,34,48,35,137,69,35,206,27,13,51,109,189,179,143,172,169,146,241,158,188,181,198,72,26,137,180,2,158,129,231,56,136,63,168,153,11,201,160,24,138,195,43,68,97,245,178,152,93,36,90,189,155,182,246,143,231,155,64,184,216,79,77,64,209,48,19,160,10,132,109,39,151,170,193,98,2,110,170,76,219,27,128,204,23,37,141,82,13,14,30,123,69,160,184,134,229,77,235,6,67,77,100,238,10,6,100,102,67,94,227,83,167,60,18,4,138,181,84,2,109,28,104,3,23,66,110,12,172,171,108,12,218,249,225,177,43,1,37,28,112,179,1,114,129,136,126,138,208,90,38,18,228,190,138,160,56,196,6,32,115,151,82,232,120,195,80,225,70,184,203,97,86,27,230,234,61,23,51,
94,12,203,24,21,48,220,191,101,28,14,222,93,96,201,96,153,166,29,32,240,235,32,209,56,5,52,136,32,229,94,24,194,219,184,213,69,113,254,45,32,99,181,91,105,126,169,119,131,44,191,183,133,144,179,185,141,91,233,39,89,45,221,54,255,161,225,98,234,87,152,186,223,14,83,47,195,115,9,186,135,119,3,104,237,51,184,176,204,122,91,177,2,188,57,179,220,226,221,13,43,219,229,183,201,56,174,128,105,13,85,1,132,11,93,48,81,106,181,70,24,176,89,109,170,75,250,230,110,227,163,30,68,14,159,239,206,180,10,221,78,155,221,236,249,123,29,119,247,209,119,183,187,110,72,86,114,184,229,135,254,14,212,83,172,119,154,179,228,228,50,190,91,174,29,246,190,12,47,119,247,150,233,125,35,78,22,153,53,49,111,29,135,62,99,3,148,144,83,58,65,80,21,141,5,140,102,122,162,19,164,71,136,29,23,8,132,134,77,102,55,133,203,251,136,94,162,61,151,209,241,193,34,141,140,172,148,19,53,91,61,9,208,51,242,232,155,36,65,128,96,219,66,42,5,2,
40,39,26,209,63,71,77,217,132,115,226,93,238,85,32,88,208,198,216,64,247,149,2,1,184,192,85,104,76,7,104,72,13,143,88,67,29,213,20,96,208,132,4,8,89,79,61,33,131,89,170,235,50,87,32,67,114,136,182,132,111,79,230,33,156,85,109,69,78,70,219,26,4,126,203,126,12,53,87,180,151,198,132,248,174,231,189,60,255,69,243,255,208,61,191,109,231,247,3,131,29,59,32,198,26,112,64,8,28,107,136,6,85,224,56,185,74,131,76,59,67,193,124,8,130,5,87,207,141,41,66,140,121,8,124,13,3,141,3,95,61,20,75,41,128,78,163,27,192,17,92,145,96,14,96,248,18,76,4,89,45,22,67,14,228,216,38,193,208,132,26,84,18,58,104,7,152,168,8,180,193,64,102,241,108,216,168,216,74,118,243,136,18,102,56,30,113,248,244,9,4,49,12,30,25,180,81,236,108,166,23,202,131,71,161,71,116,204,135,1,156,205,149,78,185,84,12,6,14,229,171,231,88,1,206,174,159,58,149,129,108,156,101,109,73,145,46,174,208,129,205,16,12,60,36,0,
226,202,26,57,238,3,50,141,141,93,227,100,46,197,30,25,107,124,152,102,50,42,128,136,248,96,152,233,67,204,104,167,89,188,123,108,132,44,199,176,110,97,43,96,140,70,239,182,162,30,249,107,232,62,5,141,71,169,182,143,49,0,117,229,174,124,150,170,100,20,8,131,40,113,112,53,47,2,85,2,81,233,247,7,147,178,192,125,175,179,91,151,6,63,106,5,147,4,22,150,7,17,238,93,98,134,85,181,92,146,21,73,247,78,29,238,155,10,190,6,47,76,209,116,128,184,130,142,206,141,139,56,130,144,2,58,71,202,56,66,147,49,128,7,65,218,217,20,48,61,54,147,86,139,22,31,58,109,135,130,78,55,194,220,233,226,83,213,115,13,92,55,105,224,122,92,19,253,135,106,16,97,68,15,2,224,0,91,201,128,104,15,22,79,81,121,156,16,193,194,187,142,247,211,85,132,34,109,178,45,36,252,217,205,159,65,251,42,83,65,159,135,31,26,196,62,187,179,176,94,65,35,202,27,61,254,229,228,100,39,7,33,228,56,27,138,91,46,115,124,43,156,37,176,95,64,
196,102,78,219,223,69,150,217,78,48,213,182,119,172,240,243,224,0,66,194,193,134,122,76,88,167,62,83,10,51,248,110,244,207,81,108,110,235,54,241,61,173,19,251,156,5,111,69,118,111,209,248,86,148,212,130,2,195,148,139,83,183,66,88,193,58,150,170,219,24,162,120,253,153,28,13,37,148,25,206,236,212,179,214,231,228,42,22,223,125,60,123,231,237,175,104,121,26,90,93,190,246,181,193,215,175,177,83,215,163,199,200,220,221,100,14,229,104,29,159,236,216,60,87,61,202,65,196,3,104,146,177,175,181,135,80,191,5,0,1,230,195,41,25,166,253,179,110,180,241,41,50,57,129,217,130,17,113,32,24,89,37,70,104,5,178,15,166,103,135,9,150,32,252,231,40,201,138,79,27,74,106,102,208,195,16,149,0,1,146,209,200,173,13,210,158,130,244,98,84,129,71,54,35,107,172,154,208,116,164,162,64,96,32,54,152,149,70,44,25,249,175,54,205,100,208,192,118,159,118,9,133,176,240,105,54,154,244,137,66,154,177,168,135,85,91,18,193,48,59,235,192,36,178,119,241,
15,14,128,113,102,84,156,75,223,150,30,107,39,73,70,180,217,232,236,81,251,218,99,10,16,56,72,249,201,135,26,161,67,124,158,203,224,191,221,18,173,175,246,45,83,33,0,176,66,131,9,131,87,31,168,131,22,4,203,219,129,131,51,140,133,155,11,130,137,127,189,131,132,76,66,110,186,123,242,218,49,13,59,144,14,232,48,220,216,6,145,4,84,44,92,32,115,200,180,29,122,231,102,45,119,65,164,28,89,80,167,22,72,197,34,88,87,188,66,132,226,88,68,38,1,74,248,191,199,67,227,247,12,177,72,218,202,106,147,17,96,75,156,208,26,18,66,231,30,172,12,14,56,245,12,17,154,50,4,21,64,4,0,66,195,65,214,131,96,5,18,172,16,8,24,29,133,74,146,238,203,99,147,160,204,128,41,83,14,136,86,176,5,34,13,232,130,166,133,39,163,118,82,92,6,85,27,226,3,152,29,30,156,126,91,166,65,49,148,188,58,255,57,214,221,126,113,221,71,34,166,130,60,160,25,36,137,108,118,160,46,32,99,99,231,162,212,6,89,156,135,234,112,240,105,166,
44,109,157,234,195,187,218,59,161,235,97,136,51,113,42,160,250,167,79,8,63,116,160,1,81,188,206,12,200,131,246,59,80,36,14,176,79,211,12,1,252,24,171,201,90,16,136,155,48,152,147,70,228,192,217,88,163,48,92,12,32,3,96,103,210,198,96,87,171,73,168,61,214,68,162,86,105,194,68,192,180,2,24,14,222,0,111,63,241,143,102,190,212,248,203,12,164,204,204,193,216,241,121,247,241,49,113,47,165,231,63,128,234,127,193,123,163,129,24,225,113,4,160,31,17,58,209,177,112,154,117,157,36,234,232,17,138,213,198,115,49,244,153,126,113,29,2,67,5,62,9,150,8,3,159,32,179,111,156,155,229,179,216,175,5,75,82,224,6,128,245,151,32,164,103,1,100,134,221,75,213,174,123,27,71,96,7,19,175,201,77,81,213,109,115,133,247,236,248,131,126,15,205,13,214,66,129,26,251,217,241,74,236,116,119,54,227,247,248,8,134,58,252,233,216,63,233,112,33,234,170,231,79,151,56,166,145,82,103,146,115,135,10,214,55,66,80,226,35,205,253,247,16,208,228,145,
231,50,58,174,63,175,199,212,217,210,111,243,52,145,13,126,238,238,42,64,235,237,238,174,54,183,22,45,76,221,13,182,30,12,46,214,185,222,217,117,80,166,185,203,95,237,16,23,25,252,221,156,86,217,194,26,100,70,157,171,148,70,56,175,218,246,39,43,23,184,44,167,140,163,155,37,239,10,132,136,25,243,163,212,0,204,147,85,232,123,0,33,111,119,23,82,88,202,68,84,45,76,65,72,96,49,225,22,67,136,148,80,154,193,10,217,56,119,59,112,69,84,194,8,59,73,103,79,86,119,90,26,226,223,240,116,223,226,17,29,230,163,208,154,33,167,21,165,103,51,27,227,94,137,167,163,149,78,63,25,161,128,22,34,28,175,20,192,126,224,109,185,130,64,88,196,203,124,111,43,127,10,46,43,249,196,126,30,245,1,109,6,251,167,160,189,171,199,162,218,27,56,77,162,64,148,96,213,250,22,165,123,247,166,203,11,58,169,244,255,63,120,37,255,111,51,122,7,67,11,140,208,65,133,77,212,198,32,27,250,124,204,2,54,2,86,54,22,247,36,79,72,196,178,21,33,
135,78,26,1,222,24,35,141,193,31,49,102,26,100,206,148,7,22,233,236,210,137,21,186,163,18,86,71,147,17,198,7,201,131,172,71,160,145,49,52,66,128,14,15,28,1,137,120,246,240,30,152,244,26,244,8,51,183,2,101,129,6,203,226,253,114,36,140,31,219,123,203,12,254,58,41,146,117,14,186,97,151,201,106,18,60,220,7,209,32,200,208,235,182,159,151,169,164,181,133,238,174,118,222,135,121,143,191,193,119,60,244,44,57,240,122,245,54,138,209,72,170,154,173,151,11,20,162,51,49,153,154,208,241,11,115,212,57,224,107,225,74,27,103,161,116,242,48,233,120,50,119,48,198,46,55,35,244,34,8,153,128,151,53,8,222,152,195,40,243,175,80,201,252,70,15,194,227,64,196,163,217,46,195,12,18,32,40,132,226,119,145,114,35,157,23,35,214,225,181,130,42,210,23,146,65,5,16,151,207,129,75,138,248,40,8,35,218,194,56,154,150,237,177,13,192,251,81,44,174,105,154,50,193,34,133,132,179,60,53,97,165,70,33,235,49,76,229,235,174,238,49,246,46,112,29,
171,3,47,175,39,36,220,37,220,170,173,162,42,26,187,200,254,120,186,175,142,124,19,214,151,236,182,92,168,132,169,25,24,170,27,153,54,248,67,225,64,61,22,192,171,19,124,208,227,71,97,197,129,20,144,32,12,121,240,36,130,199,245,239,197,245,128,34,250,223,127,104,152,247,67,139,210,16,226,194,26,52,18,205,145,38,19,37,203,131,2,137,29,64,137,227,44,28,128,38,192,143,241,134,233,135,1,4,235,231,23,230,57,172,170,211,165,125,249,62,220,93,126,127,249,10,199,185,94,142,180,22,198,154,134,39,17,3,56,5,1,4,37,246,32,144,98,15,6,8,196,153,249,146,37,62,154,148,4,137,156,221,166,70,182,19,187,251,11,245,45,132,200,199,178,173,90,6,8,143,232,89,131,112,138,196,144,233,110,10,174,57,38,214,82,123,12,133,179,213,147,226,80,110,236,246,194,200,185,194,229,65,139,188,83,118,215,57,211,255,240,156,189,250,163,132,41,164,224,47,65,182,96,223,75,15,43,254,245,210,54,134,139,141,151,251,89,27,187,55,222,131,216,0,106,25,
235,101,173,115,194,201,30,238,72,116,163,55,79,224,210,20,146,50,214,116,202,83,218,69,231,89,114,237,114,32,66,16,32,244,251,253,251,231,244,126,219,220,63,183,206,251,46,115,250,86,191,188,94,29,42,55,124,48,122,231,219,235,142,151,9,104,238,108,238,229,92,50,213,50,235,176,131,171,91,11,103,45,107,177,19,190,202,36,79,6,107,215,158,77,228,27,192,255,86,122,75,164,52,64,240,98,186,67,254,141,21,16,88,170,2,49,66,11,160,187,1,39,1,226,236,98,64,31,0,34,196,44,6,73,168,100,189,99,154,193,221,251,66,15,99,137,118,38,64,121,123,182,249,35,215,185,28,88,56,65,210,231,36,157,239,228,239,6,52,132,113,209,164,44,191,103,79,4,2,4,98,159,145,27,139,32,53,69,213,253,51,196,211,158,102,169,72,73,227,97,0,217,157,155,155,251,210,180,223,106,160,239,141,172,120,58,210,126,67,114,216,138,31,236,46,204,29,232,194,91,6,224,72,169,251,205,135,77,53,72,127,129,107,199,111,231,119,123,63,125,126,251,103,55,110,195,
189,72,249,15,112,108,7,195,209,194,20,142,14,14,224,245,19,215,110,61,127,14,33,30,164,153,224,136,130,255,120,218,127,182,241,155,64,30,120,208,17,164,199,170,140,203,225,75,234,255,68,137,178,6,141,254,215,72,71,116,142,136,8,16,136,8,16,186,10,31,71,60,64,33,200,107,81,196,199,191,223,225,233,124,63,63,46,171,103,126,182,13,63,254,54,46,152,44,121,234,67,137,126,107,62,2,16,192,64,70,33,212,238,0,65,128,156,50,177,50,108,245,81,116,28,158,229,216,126,24,54,74,28,51,77,180,135,50,14,8,82,188,108,183,56,7,155,83,172,229,133,145,138,113,35,14,83,37,46,173,110,229,54,109,79,48,155,165,40,189,192,175,31,72,101,145,115,69,56,163,149,4,17,174,113,204,87,43,5,156,32,206,77,126,130,31,78,84,136,227,216,175,206,177,25,199,193,191,233,117,226,247,57,111,112,253,193,145,87,185,240,97,124,186,169,181,161,83,125,146,169,22,59,92,30,16,59,232,64,81,53,54,227,219,133,164,204,67,159,186,88,205,223,123,237,245,
211,62,59,158,30,179,111,244,155,92,127,195,247,43,117,223,62,93,118,143,238,174,101,223,63,221,90,149,121,70,241,129,49,229,146,172,128,89,117,241,135,33,76,6,111,166,48,82,183,237,49,108,182,48,183,169,91,39,118,162,20,249,38,246,133,121,167,52,153,121,68,131,35,54,97,2,133,192,240,183,73,145,128,144,35,70,221,45,128,89,216,34,1,9,98,67,128,66,112,132,172,117,116,170,38,40,10,252,8,177,203,53,68,128,253,158,153,203,89,222,34,76,48,74,152,44,151,116,4,41,199,120,191,19,235,241,38,52,160,162,71,129,44,11,143,15,150,28,67,8,131,129,12,211,229,82,158,39,83,155,42,77,104,143,128,23,32,210,160,70,214,115,255,115,223,143,182,176,243,155,214,251,212,175,186,124,194,124,158,2,128,104,179,7,190,17,49,181,18,194,51,29,233,199,152,121,141,104,71,249,209,175,145,255,253,106,124,22,40,121,219,55,137,90,52,52,190,129,32,224,129,17,222,189,237,184,113,216,153,13,56,130,111,186,219,34,205,179,39,191,5,230,11,14,9,184,
53,91,189,112,165,243,251,65,171,85,75,83,123,179,61,185,64,75,164,63,249,131,34,21,190,161,120,250,227,235,193,164,25,82,194,82,0,231,53,38,34,236,73,181,117,253,157,207,49,220,253,242,124,106,47,118,189,14,63,223,233,251,178,60,40,241,205,5,8,193,150,128,84,33,19,91,249,239,49,66,72,29,37,132,27,134,149,88,55,53,1,183,38,221,6,45,235,125,107,17,183,124,202,91,55,33,164,85,175,188,241,253,213,203,214,183,91,182,120,214,66,101,83,130,219,178,69,91,176,118,53,238,191,100,55,94,229,235,43,47,75,115,158,245,45,246,248,64,145,139,222,77,44,136,81,137,159,219,250,135,133,173,251,227,243,217,248,127,175,241,223,138,178,243,136,76,233,100,91,56,170,88,130,131,182,155,74,182,9,130,132,89,236,48,60,63,22,194,96,101,104,159,17,84,248,233,53,11,54,191,190,251,247,15,201,245,63,20,61,159,203,47,244,125,63,207,123,183,167,235,201,225,245,227,141,113,181,214,13,174,71,180,247,200,182,228,202,172,161,224,252,84,46,34,235,84,
237,183,233,93,193,26,250,186,229,237,91,178,173,98,215,184,14,119,147,110,170,34,158,121,68,39,53,178,91,4,8,32,181,89,19,73,153,71,113,84,158,53,216,252,204,221,29,146,201,56,188,67,32,64,98,132,132,13,90,120,134,41,130,47,109,84,134,234,108,198,222,241,32,66,212,36,23,95,218,6,113,152,212,198,111,153,198,192,226,24,206,80,187,66,137,114,12,104,40,208,145,226,72,82,68,82,229,103,139,58,167,148,183,210,29,15,176,71,169,162,161,201,131,156,68,61,19,182,78,221,97,87,163,212,111,18,249,160,135,189,233,94,197,91,143,135,224,139,42,235,245,77,19,126,158,36,234,227,65,13,110,150,74,58,18,161,7,43,39,48,11,90,24,13,25,0,167,0,101,170,247,11,246,125,39,242,233,249,181,61,111,199,119,113,127,243,170,16,234,69,10,32,0,1,3,65,6,207,1,28,128,129,18,116,107,200,66,120,35,179,163,61,94,160,200,72,142,221,72,141,194,98,2,247,15,222,238,137,200,251,10,224,68,162,164,214,228,185,171,75,42,194,126,85,116,53,
7,82,6,249,87,128,194,221,190,234,207,164,124,59,110,226,12,178,83,86,39,187,30,140,202,37,219,225,167,143,150,183,230,227,246,62,159,131,215,226,191,190,100,233,242,144,41,45,147,132,145,79,19,74,1,61,204,11,109,89,71,148,217,167,153,105,182,68,24,254,51,78,241,136,249,35,164,58,215,130,221,245,19,35,39,136,221,195,231,220,108,147,174,237,10,238,120,236,95,142,218,118,208,183,41,138,229,230,230,161,158,245,235,47,25,68,140,80,108,255,34,236,112,237,214,191,68,237,240,84,118,87,184,202,133,111,7,206,146,7,45,130,132,56,251,110,230,252,173,141,94,29,223,244,241,45,92,46,172,94,141,96,118,210,86,11,5,104,176,52,155,90,15,104,205,117,173,75,245,230,179,241,80,156,111,222,254,3,142,126,141,199,207,223,71,61,91,215,229,241,93,29,255,74,127,140,254,254,125,154,204,222,114,53,73,51,156,24,196,160,196,230,204,237,175,122,238,99,8,68,157,46,111,242,23,242,71,75,103,240,208,207,159,1,139,21,103,177,214,174,68,11,177,102,66,27,
20,0,32,152,129,110,39,8,4,49,162,197,49,193,101,100,0,95,205,224,254,16,29,146,201,81,105,125,42,114,98,24,144,168,237,209,230,30,35,163,161,248,20,29,163,38,186,113,109,144,137,140,245,182,136,122,103,85,88,86,103,193,92,102,140,16,188,143,28,4,86,156,232,192,73,143,170,58,246,244,160,108,10,218,37,114,148,141,160,59,100,132,17,61,194,50,121,58,164,178,50,12,18,9,113,58,135,211,44,59,0,193,246,91,88,251,186,234,126,200,178,86,31,245,100,165,1,41,189,20,77,145,156,151,212,236,161,2,71,76,21,147,32,53,59,72,225,191,254,95,23,120,39,240,127,244,252,214,110,199,119,177,248,175,233,191,200,169,91,170,91,111,14,96,98,134,9,50,8,144,27,39,216,238,194,188,70,4,85,102,68,214,82,3,31,114,103,111,118,158,255,8,150,70,241,84,65,73,212,40,100,73,218,244,69,83,79,158,66,250,84,183,183,25,154,66,249,211,128,254,47,141,123,205,232,54,68,68,231,200,35,58,109,214,131,182,162,83,107,247,237,121,81,111,248,15,
219,94,7,166,47,120,238,165,39,113,28,73,88,52,151,212,158,181,234,64,78,162,0,3,33,44,123,29,40,142,185,30,35,125,228,104,134,200,106,22,127,166,224,75,97,80,91,236,71,54,111,1,104,77,224,21,10,40,27,104,227,203,84,46,66,84,94,61,73,151,247,167,87,189,52,237,249,87,216,167,240,211,224,148,169,100,243,198,11,208,166,21,208,197,138,88,166,125,234,167,127,187,194,85,254,218,171,44,26,192,79,55,199,57,49,34,100,135,125,254,181,106,57,246,131,201,186,24,59,237,69,203,1,201,196,61,119,121,185,205,118,179,86,158,231,118,80,80,130,147,187,12,181,174,5,22,212,191,207,22,239,51,229,179,63,203,222,195,237,109,155,105,19,34,86,55,183,12,117,153,199,43,58,165,77,243,151,61,16,9,96,19,32,18,35,88,130,91,19,209,212,141,93,234,163,149,49,123,218,150,243,90,110,110,180,50,125,36,219,169,245,19,152,206,127,26,105,59,156,8,208,96,2,20,177,65,136,216,96,217,103,111,14,235,251,129,15,181,25,197,50,21,188,109,178,83,
53,140,206,80,133,93,246,87,33,229,225,8,66,197,64,131,127,49,83,75,39,220,208,239,40,236,101,86,152,18,196,237,202,96,195,75,14,18,65,64,98,61,40,122,217,20,181,127,219,38,82,66,146,116,48,205,29,210,17,14,243,106,156,64,28,162,122,227,86,145,255,197,205,226,145,77,250,96,193,55,20,82,244,235,116,85,77,46,234,17,209,81,33,13,74,169,17,237,17,85,101,69,218,32,137,36,30,58,57,130,160,137,115,183,230,32,252,229,244,124,246,126,207,119,197,249,159,73,27,254,65,252,235,246,227,236,94,65,214,90,228,255,10,3,226,243,147,15,55,239,161,2,130,41,234,146,246,127,21,189,202,236,213,253,99,222,93,144,116,231,66,208,126,70,252,53,204,224,167,126,18,181,104,228,64,135,154,220,153,182,180,105,82,213,0,133,165,80,103,171,139,44,210,189,126,153,119,183,234,209,172,93,89,245,21,141,183,51,139,234,20,155,221,151,207,215,87,213,245,120,255,36,5,250,92,138,17,195,130,45,118,8,210,101,145,135,155,216,77,162,60,16,37,210,162,12,
81,203,4,99,7,202,4,44,132,218,180,162,7,136,121,112,225,95,55,77,59,140,28,100,157,96,5,176,112,11,225,118,13,198,20,195,217,12,182,89,151,119,249,183,227,107,241,67,224,229,247,247,59,169,187,53,31,172,30,55,223,252,82,174,112,175,197,59,201,10,21,248,103,21,43,66,219,122,183,219,229,91,224,224,182,195,97,69,24,32,116,253,250,31,60,137,211,65,127,66,30,252,165,234,211,183,232,23,10,29,106,155,107,58,173,243,156,165,174,117,159,198,154,235,86,119,186,182,124,240,207,216,251,252,142,157,223,151,254,123,111,95,92,249,254,185,247,251,124,90,175,203,246,114,101,204,253,234,181,46,115,179,76,118,186,40,197,162,185,143,182,66,66,224,216,181,174,182,26,77,235,176,205,156,43,119,63,72,78,92,107,167,150,86,91,173,209,66,172,212,108,194,163,57,88,27,16,220,16,14,141,230,11,145,159,252,179,131,28,91,40,62,211,71,128,194,70,57,200,215,44,48,116,49,194,151,163,179,119,180,184,63,109,236,198,234,43,97,27,147,192,75,68,134,212,210,
152,122,180,131,125,210,82,130,0,225,150,32,0,194,227,90,145,21,61,254,72,233,177,128,137,69,169,167,150,218,33,39,102,129,169,185,218,196,32,215,100,136,28,96,155,4,139,72,212,44,16,66,130,184,115,47,23,223,247,159,165,24,87,246,254,45,253,138,117,118,107,138,88,176,186,199,93,67,118,109,209,242,213,150,14,215,176,24,147,35,104,129,126,22,37,75,21,148,254,80,91,234,251,183,144,166,167,215,118,59,182,223,196,252,205,139,64,39,17,177,67,240,48,0,248,7,2,253,203,59,122,130,213,0,123,61,248,199,4,65,209,146,206,196,104,96,229,69,77,8,70,0,163,18,25,177,17,3,85,148,169,32,201,0,102,62,26,147,144,75,225,20,250,198,100,156,233,244,163,167,5,158,86,86,14,189,105,93,231,11,71,102,117,45,138,21,219,224,135,227,117,171,227,147,71,210,25,174,247,237,52,38,83,170,165,227,173,237,154,207,13,2,45,20,128,195,30,180,137,140,206,68,133,220,186,16,161,109,51,202,192,122,184,15,185,13,65,238,131,73,11,94,204,85,178,173,
219,160,95,10,191,120,188,124,134,120,98,240,241,221,1,225,191,192,245,125,119,183,255,129,157,45,111,115,139,253,237,12,109,126,102,220,236,184,250,220,114,212,201,225,111,63,201,29,238,250,218,157,91,226,54,199,123,221,49,44,114,131,59,218,5,41,183,249,230,79,37,104,119,26,124,243,199,216,101,240,199,142,107,124,147,240,28,26,86,184,170,89,159,76,235,146,7,1,38,243,172,149,56,39,76,60,23,236,69,117,109,200,250,47,160,210,198,143,219,254,221,252,176,223,63,217,103,253,181,95,248,254,237,247,124,251,28,221,123,92,253,117,82,237,70,118,163,38,97,51,136,185,196,21,128,201,222,111,38,115,9,140,83,212,50,120,59,238,121,14,156,199,42,173,226,12,34,7,206,154,235,52,123,11,174,147,76,116,26,9,117,231,208,76,126,14,82,221,103,58,8,16,63,61,178,28,32,174,5,72,158,48,17,165,147,28,243,124,153,145,230,245,69,154,179,21,228,154,9,62,139,170,190,90,118,120,174,35,119,111,170,232,58,198,35,231,108,130,116,2,230,138,216,154,61,134,
196,123,12,141,10,122,29,130,132,1,28,201,220,24,146,115,178,240,234,9,92,1,7,97,121,209,33,68,124,50,17,116,153,78,65,196,194,231,73,118,48,32,105,17,161,201,187,80,250,32,39,123,114,68,101,191,31,97,239,179,59,206,230,8,26,74,135,224,99,192,147,102,32,71,41,6,128,148,105,152,212,10,87,243,211,100,57,147,27,149,83,14,66,191,158,95,108,239,247,124,55,255,211,155,180,225,30,196,87,196,1,4,69,16,196,133,241,210,130,14,187,135,105,237,66,233,192,7,93,246,101,193,241,29,239,197,177,104,14,192,129,116,8,135,47,53,13,67,49,37,157,194,68,56,230,98,12,182,204,130,225,138,185,152,147,94,162,231,251,169,129,103,30,31,99,240,38,96,142,68,5,229,129,169,196,202,40,87,79,69,109,11,252,242,252,213,114,183,216,80,147,190,197,183,237,117,86,174,183,122,123,87,197,98,81,122,169,129,46,245,110,139,87,89,211,177,127,108,227,215,107,61,255,4,22,26,201,173,85,12,190,92,74,100,254,254,57,229,210,8,78,171,187,77,246,101,
93,178,112,129,126,137,159,97,126,137,31,30,166,220,28,62,255,14,35,78,222,93,13,31,219,252,202,206,79,91,222,214,87,127,136,3,170,125,142,31,199,62,23,162,95,238,69,252,220,218,241,239,92,99,153,87,21,220,22,215,249,22,124,239,252,119,151,110,54,28,21,248,58,221,125,123,248,123,13,29,126,247,203,108,222,195,225,243,193,1,119,43,207,37,110,233,86,168,68,62,29,218,142,192,178,33,173,199,13,118,190,6,78,212,211,96,111,246,54,191,148,238,221,118,159,231,193,241,119,97,126,79,254,243,127,92,239,135,123,247,219,191,135,247,50,62,110,135,237,83,101,105,134,237,213,235,44,138,14,68,10,98,67,168,164,42,251,46,72,131,78,43,174,109,85,196,47,47,61,69,75,156,125,85,3,237,118,155,169,3,39,86,41,144,82,96,181,103,164,23,144,145,16,148,17,222,102,46,3,53,70,246,244,39,105,242,174,136,30,49,141,137,151,92,169,59,13,92,180,27,186,79,233,30,139,44,149,173,91,182,255,224,92,247,246,206,70,7,249,54,69,171,179,246,73,66,
204,3,84,185,78,226,172,171,93,188,99,107,118,18,220,24,125,23,5,167,151,155,146,70,38,172,162,246,246,136,188,164,239,18,232,202,26,51,100,22,146,169,212,76,144,56,32,68,50,216,221,36,155,53,100,132,109,238,239,162,158,200,15,87,27,243,103,104,107,120,127,15,2,18,20,77,73,144,220,120,133,196,33,5,72,196,100,70,43,85,82,133,36,175,34,97,205,246,68,28,235,32,139,208,200,205,248,182,168,123,251,127,91,186,177,255,103,75,198,102,102,42,72,77,37,244,73,217,33,27,49,140,62,65,222,141,219,181,29,211,216,72,6,108,194,102,108,46,99,60,228,97,95,60,232,14,10,225,19,135,169,140,20,202,173,102,106,101,220,18,74,58,226,218,98,32,146,16,196,61,18,132,195,48,6,65,14,163,142,6,123,248,5,193,149,192,232,149,77,163,188,233,41,212,182,125,186,4,23,121,72,233,199,19,230,78,3,203,175,181,203,171,195,73,43,80,247,60,148,174,242,28,22,57,54,108,159,90,251,202,98,130,86,128,217,118,85,25,232,42,167,226,240,164,234,82,
214,146,62,113,38,53,45,106,213,51,124,243,154,254,2,252,115,202,199,163,207,7,160,13,28,112,158,254,123,119,121,244,188,249,147,92,225,66,110,243,28,238,152,5,110,170,56,5,117,63,208,128,204,251,234,71,113,137,83,183,21,14,48,215,157,198,249,207,232,236,240,248,53,183,252,45,33,150,159,174,161,123,17,87,223,254,170,61,220,205,61,246,62,92,127,55,92,189,0,171,115,251,111,215,173,20,66,137,186,220,169,210,166,125,238,102,182,243,197,100,196,83,241,159,138,187,223,47,90,145,39,191,7,230,247,69,223,191,7,253,183,222,183,253,191,139,124,236,255,157,221,207,240,45,186,174,247,80,191,158,37,94,253,116,202,52,248,227,193,168,198,49,205,15,199,63,175,241,203,3,253,250,226,216,229,248,248,231,209,164,94,91,39,184,186,205,103,174,52,159,53,230,150,102,50,65,186,227,141,153,21,68,38,208,163,61,244,200,187,207,104,186,99,42,84,178,163,55,233,174,163,229,41,204,148,201,154,206,54,50,71,21,210,72,177,168,38,255,212,134,0,177,51,76,219,238,
108,87,155,32,196,128,7,98,204,108,18,188,7,164,66,230,42,192,145,241,146,147,163,141,95,81,107,228,109,66,92,123,106,152,120,10,38,44,86,83,181,237,2,149,59,227,145,120,158,4,136,161,216,164,227,8,150,100,45,226,157,230,167,184,251,62,153,23,190,93,50,162,222,88,136,117,66,180,226,48,0,227,13,65,110,198,60,15,166,227,17,31,17,234,23,35,67,123,221,14,137,65,85,244,243,51,248,219,243,222,249,173,222,207,230,123,38,111,65,252,63,209,83,9,135,24,152,244,217,65,157,143,222,149,228,8,101,61,166,117,204,70,109,50,199,89,163,220,144,33,38,59,30,113,154,228,52,179,165,155,133,224,12,58,57,24,139,29,164,208,8,180,229,221,201,229,12,250,96,135,113,162,192,187,215,230,176,130,237,200,97,118,128,152,235,210,22,43,249,157,128,111,30,154,1,29,86,117,38,78,110,155,230,169,154,175,147,94,66,103,98,27,220,237,240,167,157,97,113,75,199,102,130,93,189,106,47,20,67,68,30,8,61,195,115,122,128,74,215,179,152,57,154,74,41,148,
65,29,133,138,232,170,216,230,61,207,127,165,175,132,159,255,227,30,69,124,30,49,87,111,71,142,162,77,94,129,84,236,110,19,192,85,224,254,25,63,72,240,188,72,127,231,56,133,224,49,115,105,208,119,191,41,14,31,154,46,139,30,79,146,30,47,55,167,195,175,175,15,232,44,114,183,244,24,60,186,157,21,28,126,53,45,30,124,191,128,50,227,133,150,22,121,88,16,8,184,209,174,161,172,253,62,60,88,208,227,51,174,147,94,107,252,94,184,223,89,245,249,44,47,207,114,123,147,223,239,77,124,191,246,55,255,237,215,191,75,124,215,255,125,27,239,163,123,209,221,181,215,111,131,171,151,215,222,234,78,127,170,27,197,111,244,249,141,30,60,87,30,207,126,191,79,203,223,246,22,116,248,182,173,10,45,61,215,107,250,228,62,118,150,233,173,185,66,97,3,179,127,102,94,88,1,0,210,8,1,2,130,5,32,60,98,52,231,253,239,109,165,87,169,158,118,230,183,221,150,202,116,161,207,141,184,52,117,233,75,142,186,185,134,144,155,1,154,151,215,221,99,116,62,23,66,
228,217,84,16,226,68,228,9,127,142,43,227,120,77,231,223,67,22,66,65,141,91,54,120,178,63,201,133,159,95,89,123,234,74,233,17,231,221,58,189,185,178,165,237,171,59,206,224,3,151,16,34,24,67,92,205,209,3,10,34,71,15,53,162,198,250,90,132,8,22,145,7,158,105,16,226,6,185,77,200,128,208,205,107,16,194,38,43,86,217,158,7,126,128,197,33,66,18,33,2,77,45,137,68,79,34,45,97,114,168,200,252,127,114,242,178,254,39,39,62,240,79,212,34,98,29,70,236,86,102,225,27,190,33,167,91,184,124,57,150,57,212,237,26,177,203,218,167,173,199,26,115,33,77,140,24,11,128,101,226,102,14,43,131,58,192,165,64,33,173,136,59,90,158,188,242,154,58,130,25,160,108,209,232,171,28,134,235,7,50,62,126,235,81,238,178,214,231,205,21,21,108,183,48,31,94,31,225,66,206,166,91,42,191,16,200,195,160,7,50,109,83,54,52,179,248,31,44,207,22,238,35,47,15,17,54,209,208,78,133,25,12,165,96,63,170,230,156,122,215,187,153,103,11,255,26,
111,198,237,164,61,188,89,70,87,215,82,7,181,48,170,108,62,68,24,90,225,136,203,45,94,25,224,8,242,73,58,56,225,200,184,233,233,125,167,131,3,13,39,0,21,130,110,236,233,39,248,65,131,46,236,235,181,59,4,184,56,254,163,44,62,124,73,35,61,222,116,248,50,184,141,32,25,127,42,23,160,251,213,219,226,240,104,117,63,61,101,93,158,189,5,95,222,190,250,213,212,188,169,90,165,69,90,29,69,49,57,146,40,171,149,29,159,186,239,253,100,189,31,215,237,183,190,79,241,253,63,245,247,114,203,254,222,117,225,183,206,87,253,62,124,225,125,125,75,226,251,95,247,190,183,168,199,167,206,229,240,234,161,95,235,148,225,111,250,27,2,58,155,251,125,62,127,61,158,76,203,251,110,118,122,22,174,173,124,134,28,177,214,162,181,221,118,142,246,85,135,54,182,177,175,90,85,1,77,29,253,208,161,19,13,156,71,252,167,81,24,38,230,66,56,84,170,155,219,92,151,197,42,53,55,116,194,194,188,88,195,89,81,202,62,202,170,59,195,96,63,211,29,158,127,114,
79,57,95,146,166,7,55,143,77,82,128,176,4,97,138,4,129,129,189,17,136,58,239,207,0,125,254,124,154,142,183,79,91,143,232,205,165,57,247,214,57,190,30,220,253,69,88,187,175,54,180,136,70,113,192,253,43,44,141,65,47,100,108,114,129,2,133,56,234,189,175,67,236,194,211,198,237,50,227,33,56,232,32,124,151,3,68,129,0,116,144,201,125,232,7,143,118,119,88,7,112,132,32,2,70,204,166,78,12,137,116,39,252,248,255,3,123,118,247,127,96,159,138,116,197,128,110,128,165,31,64,17,38,113,9,37,67,150,227,55,158,204,109,46,107,189,69,45,114,181,200,89,78,46,171,220,149,68,110,181,144,217,208,37,68,179,9,139,136,131,154,31,23,218,108,160,7,114,149,203,89,230,110,192,142,13,216,91,139,206,201,112,170,6,109,255,46,57,100,189,118,217,228,235,241,84,212,56,120,112,254,122,1,161,48,71,58,146,233,44,248,38,153,135,57,159,30,254,130,58,8,165,212,37,179,86,110,166,46,114,64,224,90,224,21,129,5,28,95,250,42,46,47,162,224,92,
176,116,106,198,71,48,74,181,214,109,239,42,89,228,98,103,243,87,120,83,231,255,43,40,67,149,204,1,144,11,17,196,130,34,89,124,8,114,116,239,28,242,226,5,115,5,184,28,99,99,240,99,62,127,46,111,4,215,57,34,189,16,239,113,46,231,33,65,8,103,200,213,191,179,238,14,105,183,159,188,233,231,61,188,126,126,211,211,10,174,11,159,79,143,191,170,146,95,137,245,45,215,88,184,214,147,205,126,204,236,109,233,239,128,240,127,18,207,239,23,86,41,124,95,63,252,63,120,43,15,251,225,95,67,232,126,211,127,191,35,247,212,109,119,219,254,58,251,37,127,12,4,159,227,29,223,11,12,121,5,238,0,87,191,222,135,81,220,124,247,167,239,242,189,51,188,190,78,135,103,171,237,189,233,60,110,170,112,99,21,77,200,114,111,251,114,53,192,215,93,176,153,213,167,147,157,22,33,90,160,138,0,201,241,52,68,193,182,70,243,217,182,25,171,129,10,104,196,221,146,233,133,27,109,49,246,226,7,102,170,234,130,131,34,14,119,168,236,120,209,7,186,95,95,181,39,
79,221,81,34,11,139,157,43,196,23,187,126,136,67,113,131,135,123,108,130,70,133,130,168,119,112,98,246,240,107,227,11,43,2,50,252,43,189,193,253,45,36,71,79,47,53,69,129,16,156,84,214,38,214,216,103,177,217,239,116,31,6,20,216,109,65,247,51,228,70,60,51,194,182,31,10,234,69,24,67,98,48,253,22,36,106,120,37,240,222,15,94,225,80,14,198,56,71,244,105,83,160,57,204,113,16,98,254,117,241,255,170,248,229,95,23,255,175,138,15,17,97,62,206,126,109,128,115,113,108,1,12,178,223,65,111,184,215,11,223,45,31,214,155,200,73,214,146,204,85,110,198,126,28,72,208,141,123,150,112,24,193,14,144,135,6,113,39,33,221,200,209,73,131,216,244,215,35,22,90,173,243,117,142,199,104,172,78,179,213,108,114,20,180,38,176,209,116,206,147,114,28,3,252,237,68,176,120,225,75,192,81,210,47,40,132,56,131,100,74,134,166,149,130,181,111,10,154,32,90,134,193,223,191,136,85,248,2,223,251,150,78,211,20,45,92,180,250,255,186,127,83,80,206,28,170,
241,186,183,27,227,21,26,68,7,200,5,249,84,112,4,234,44,180,9,39,7,8,114,99,24,83,113,128,47,3,20,161,1,247,2,189,24,45,176,33,192,23,252,226,38,240,199,227,51,8,145,37,17,224,15,19,140,7,150,99,230,239,14,244,249,208,133,74,61,252,82,30,120,147,41,24,42,30,103,131,95,215,161,253,35,39,125,141,138,237,81,98,180,38,245,29,33,188,14,235,215,228,145,239,211,127,227,91,86,239,255,24,127,254,223,159,250,105,247,91,127,31,223,239,243,79,56,91,242,213,121,77,62,46,14,207,207,201,233,242,165,105,240,129,23,179,26,29,101,176,219,31,224,236,155,39,170,123,215,191,175,189,231,159,101,194,128,8,67,16,162,236,163,90,43,109,74,38,44,97,67,132,202,240,160,130,187,122,90,57,249,0,193,225,1,95,25,201,247,136,166,83,165,56,27,130,35,210,162,109,74,245,172,38,119,241,176,227,109,101,81,123,159,132,103,172,54,235,244,46,18,249,162,71,187,181,249,116,181,223,163,191,254,114,53,58,158,166,116,111,12,98,14,147,14,84,
131,8,49,96,38,162,78,171,88,101,43,107,87,199,87,122,112,18,243,123,54,70,144,119,179,132,145,29,72,102,29,32,16,34,27,43,107,144,151,36,244,220,67,206,187,208,179,241,219,136,181,178,30,166,70,189,228,251,109,53,31,35,159,234,79,66,198,137,9,79,64,124,222,17,194,48,1,167,185,7,179,184,50,61,236,25,100,182,115,23,38,112,202,109,127,43,56,130,133,127,60,30,157,239,75,255,223,71,11,121,219,167,157,68,61,82,75,231,145,89,56,18,184,67,4,17,139,161,50,131,21,102,195,4,33,57,67,33,84,15,67,28,110,4,93,42,55,73,67,154,6,41,151,120,24,166,96,200,101,20,162,34,11,35,142,43,226,43,164,144,201,187,80,239,240,36,8,0,41,156,178,13,71,212,6,32,24,2,166,17,89,82,17,73,245,37,72,85,222,30,213,66,145,151,135,57,56,180,76,187,40,84,125,134,64,85,56,86,233,181,142,81,190,59,1,184,43,222,246,101,67,36,88,137,210,68,20,93,232,170,42,15,213,98,225,85,205,89,225,211,4,116,82,8,125,134,
41,79,7,193,157,193,50,46,44,91,232,20,14,64,150,163,67,153,241,113,139,235,144,48,141,24,124,231,233,237,118,0,156,238,3,188,66,255,165,1,198,94,64,231,200,179,7,254,189,110,21,198,142,136,171,223,30,62,151,174,63,125,30,77,110,125,149,213,83,170,178,108,181,166,168,149,238,245,106,109,255,9,62,174,194,123,216,206,158,200,247,104,254,239,186,248,190,63,223,176,251,53,96,215,103,106,245,159,227,208,237,234,209,229,42,199,215,149,158,188,247,175,133,160,195,131,76,121,242,4,15,114,249,64,163,139,170,231,249,113,252,158,214,215,239,235,241,246,23,215,173,25,35,174,86,169,29,204,166,177,52,183,54,53,224,2,150,175,163,77,221,136,110,210,160,61,241,196,151,100,103,32,215,82,13,82,157,126,217,113,91,171,255,98,67,106,35,49,81,181,149,50,202,36,44,254,97,185,193,94,15,19,248,234,254,184,72,191,245,21,236,215,96,255,92,238,62,173,254,76,246,39,42,59,84,83,142,106,190,171,63,45,185,16,59,73,171,91,41,227,27,182,172,85,157,179,
15,45,42,47,193,57,2,239,154,32,120,133,226,72,124,3,109,77,211,208,102,170,126,119,49,98,230,89,209,198,169,176,53,237,11,137,206,126,108,79,253,95,116,196,255,107,182,41,33,127,60,195,36,36,1,193,184,144,23,191,51,128,32,49,65,208,33,64,64,152,156,33,31,247,18,226,104,200,203,56,10,127,123,184,255,141,29,253,240,255,141,29,177,138,61,166,241,221,62,25,175,170,63,176,44,132,149,119,110,142,80,140,224,228,128,156,233,66,182,0,185,19,201,157,0,138,48,186,19,154,152,200,84,253,32,127,127,43,26,149,43,246,212,167,123,186,89,136,26,3,42,165,210,50,42,94,81,92,97,67,51,60,197,58,252,0,249,129,144,45,90,149,59,219,162,248,249,161,155,194,156,47,36,5,81,136,80,21,38,58,73,144,104,9,220,98,88,14,27,240,65,96,89,92,122,61,192,116,215,149,201,211,186,111,96,49,75,56,89,167,113,50,125,144,248,192,10,81,25,235,139,6,101,23,230,188,76,241,122,110,41,72,143,60,237,165,242,165,75,91,131,192,178,24,57,108,
106,32,104,192,135,190,141,14,145,223,240,129,118,151,186,243,55,196,211,41,59,89,200,75,221,239,131,239,187,253,92,157,123,79,110,172,90,144,27,253,246,36,251,188,57,60,45,158,184,133,204,179,42,180,118,170,69,211,31,168,58,120,233,209,149,173,122,59,86,6,239,175,253,247,166,250,189,143,236,243,109,31,250,222,244,27,249,107,251,184,88,92,92,26,188,172,217,248,83,112,243,217,133,194,210,225,199,111,242,125,223,72,189,62,26,175,159,216,227,245,83,120,253,47,252,43,111,134,213,213,208,58,191,222,91,158,174,214,212,44,129,127,230,174,166,234,188,132,154,57,58,154,89,3,0,195,79,111,71,31,163,157,156,146,180,39,127,42,230,203,248,84,167,83,212,117,194,200,109,118,165,87,24,157,168,171,185,208,161,142,176,105,91,71,248,50,123,197,189,120,218,254,163,94,225,226,203,184,201,255,148,171,191,165,240,73,174,51,226,63,234,198,97,42,7,48,95,215,88,182,112,95,57,137,187,81,212,192,177,94,149,70,78,72,84,75,139,154,195,42,154,181,177,85,125,211,
139,123,6,7,55,88,103,63,121,220,214,22,22,93,171,112,83,196,58,168,52,109,60,248,243,46,171,27,61,249,115,179,125,106,115,31,254,5,229,255,61,214,24,191,64,150,33,19,31,144,185,201,200,147,69,56,0,177,198,224,7,28,134,163,71,177,97,0,6,33,70,86,235,137,40,253,209,108,191,195,63,45,253,39,37,199,63,45,253,39,165,192,131,184,253,97,28,193,121,4,45,251,190,213,29,157,241,34,66,178,177,69,55,233,122,30,205,21,79,195,166,50,58,34,165,212,15,15,123,225,161,96,154,156,91,181,92,238,242,251,30,62,243,13,236,240,157,191,111,254,242,178,109,133,214,91,76,236,202,242,150,79,124,65,43,62,254,62,20,36,150,141,7,59,15,140,186,199,223,205,227,234,141,229,143,40,192,71,195,52,135,63,132,53,3,52,236,2,191,0,221,193,222,250,162,41,76,32,70,64,177,74,145,4,85,249,16,22,212,15,76,81,209,130,13,23,0,106,57,176,153,130,153,34,130,206,207,164,96,174,168,170,171,180,10,134,176,48,4,139,20,121,142,34,188,183,
99,90,164,67,240,138,101,109,148,134,253,7,79,131,219,135,145,57,50,43,215,227,239,15,124,59,115,253,205,92,229,85,89,84,15,164,26,14,216,131,193,51,231,65,197,145,206,233,78,69,172,84,23,28,127,230,139,200,232,115,119,216,227,215,182,194,114,207,110,30,117,163,79,200,38,90,90,38,102,211,38,212,187,201,202,183,71,223,203,206,18,39,31,119,213,226,231,180,232,246,47,203,112,113,249,124,148,243,151,85,79,247,178,132,174,182,59,81,135,47,141,213,191,199,242,178,185,180,31,91,246,45,93,223,211,245,217,158,142,223,211,240,251,109,5,126,143,137,219,123,254,227,104,10,29,182,216,42,168,199,64,158,145,4,232,35,71,242,103,110,182,178,153,57,58,186,145,161,235,162,4,80,48,51,233,243,154,9,215,118,198,68,101,118,106,162,180,3,167,133,66,25,12,69,86,103,126,58,179,53,201,5,53,183,236,210,103,184,248,188,191,174,239,122,125,214,235,111,102,191,71,215,187,244,104,190,6,4,165,63,150,61,219,68,77,94,20,7,78,33,21,245,82,116,174,169,
56,183,226,108,150,193,41,65,130,53,100,83,57,206,32,228,104,144,185,198,232,154,122,180,54,102,35,8,150,66,112,229,41,202,140,92,151,119,115,36,7,61,30,215,217,13,248,124,78,153,159,147,238,207,58,247,113,76,79,30,161,142,108,83,212,156,73,148,68,0,144,97,200,112,9,16,22,62,90,76,128,113,152,12,11,50,4,130,12,31,70,162,211,127,99,202,182,226,127,99,202,9,254,255,199,148,158,96,75,82,22,68,67,24,52,192,116,198,152,239,14,172,158,95,5,196,165,188,138,33,210,34,54,177,171,29,84,252,212,99,155,184,138,110,128,130,169,218,174,101,152,41,27,171,42,121,142,49,85,248,71,122,77,32,112,123,99,4,46,51,53,23,97,26,140,51,84,107,145,95,237,180,76,199,32,38,178,216,32,114,40,87,21,202,16,70,130,33,152,60,70,228,1,245,19,169,147,77,223,208,204,5,57,86,194,228,74,40,34,32,103,33,240,18,69,119,160,19,171,196,246,169,180,51,145,83,30,134,160,74,42,100,90,161,148,143,73,57,141,128,180,108,106,199,163,35,
11,151,46,103,140,58,112,16,76,70,172,76,251,185,82,18,211,37,7,214,114,246,113,148,143,85,30,84,141,207,87,194,155,210,73,236,37,113,16,50,39,133,26,222,59,206,230,189,231,88,8,203,170,134,57,139,160,165,205,200,164,173,12,156,97,53,75,169,225,76,247,80,46,224,161,220,118,106,37,215,49,61,203,14,90,167,143,26,185,211,97,218,85,126,228,214,174,80,182,170,53,173,232,244,196,168,132,2,125,250,199,197,68,101,245,22,184,81,242,43,225,22,64,221,7,232,206,229,234,79,131,31,174,246,44,219,220,173,40,111,250,240,217,218,58,58,243,159,116,56,1,147,70,149,53,98,178,71,141,0,119,16,37,194,69,66,3,10,156,211,22,187,231,210,196,84,205,151,62,39,146,154,185,56,218,144,182,82,93,129,28,194,129,123,225,195,124,239,81,183,229,223,183,171,254,13,71,239,183,77,246,88,42,191,71,95,248,251,229,116,255,196,118,27,109,198,233,149,198,212,131,181,85,22,67,93,230,7,52,233,129,247,120,171,179,253,172,46,92,88,160,245,65,248,47,178,
165,238,154,182,189,126,255,124,160,238,226,108,44,222,159,225,95,37,15,98,92,87,231,155,35,154,119,143,138,50,125,207,113,182,3,79,225,87,198,151,101,188,40,171,92,217,148,66,136,196,166,3,38,95,242,128,94,52,20,1,171,127,0,73,145,6,164,238,23,151,219,16,71,67,228,155,204,167,167,219,255,79,33,197,252,216,255,79,33,89,146,18,97,202,80,253,234,239,5,86,0,157,64,37,176,168,68,86,98,85,107,89,232,144,247,141,97,185,190,188,138,75,167,222,109,149,87,8,60,79,177,114,176,0,247,180,56,117,82,119,29,114,24,135,208,133,93,214,5,193,192,73,232,197,64,47,225,6,78,31,146,207,146,4,3,135,139,127,41,68,91,62,76,218,37,241,14,226,58,118,37,24,28,195,80,68,193,150,109,141,36,64,135,107,40,36,160,48,31,229,81,29,148,198,190,240,195,230,66,120,1,46,244,204,49,30,51,195,136,146,60,63,83,74,150,96,234,129,156,202,193,58,230,116,110,233,3,232,49,70,32,189,148,139,179,99,138,161,12,202,117,56,216,243,95,42,
171,144,71,5,119,38,151,98,97,161,252,202,166,102,250,135,211,207,158,190,5,172,229,219,48,8,212,39,44,253,175,83,98,217,180,13,132,34,136,184,109,153,134,127,216,133,33,6,158,6,64,9,193,51,55,49,17,21,229,22,227,203,155,235,216,180,206,113,133,44,206,238,68,203,201,29,194,73,252,143,161,206,133,207,51,57,137,173,65,231,50,78,227,92,122,227,240,67,248,137,136,83,72,167,112,111,150,253,48,87,67,85,116,161,73,33,115,59,119,179,169,89,53,41,164,212,93,194,82,54,119,246,52,115,82,254,79,132,201,22,36,201,1,160,254,230,139,148,6,104,92,98,244,228,67,4,99,175,159,61,107,71,173,231,0,191,2,90,143,183,116,159,75,6,27,192,169,40,59,45,107,28,181,98,30,152,218,44,11,223,110,251,247,228,185,125,191,236,239,157,64,248,220,80,189,243,14,70,87,9,72,85,137,116,57,218,197,58,218,4,61,167,254,155,226,216,175,146,195,210,37,76,81,144,194,25,4,41,42,206,218,12,234,252,175,0,230,0,193,230,217,141,220,20,118,80,
6,11,107,252,120,5,186,137,0,129,126,111,201,123,84,103,213,230,63,169,165,27,29,178,50,169,82,73,137,72,110,226,228,7,124,192,220,3,13,222,125,136,12,40,14,66,20,159,88,73,159,115,124,240,35,191,126,243,106,124,21,243,54,220,39,129,102,4,229,126,72,4,30,200,194,151,217,174,224,40,129,101,190,208,68,104,181,40,38,114,69,100,193,30,4,208,73,21,75,254,138,74,65,230,247,64,139,64,176,70,156,138,13,112,203,178,129,51,103,95,161,184,229,66,11,240,176,109,86,49,27,170,113,10,101,235,42,253,195,197,134,169,46,75,103,33,57,101,189,157,41,30,171,2,154,133,92,217,182,14,11,104,122,218,17,214,231,140,204,225,24,128,242,216,13,45,102,94,194,229,154,44,221,82,9,113,10,55,90,225,146,69,241,240,29,153,232,192,232,203,191,128,219,144,48,93,88,132,60,66,242,230,214,64,180,50,139,146,88,118,53,74,227,19,137,78,132,101,11,149,240,23,100,70,84,193,195,72,16,19,172,12,40,50,13,45,16,116,183,80,75,177,118,6,192,194,
133,0,124,97,165,211,248,235,229,92,61,229,90,166,161,11,56,107,130,245,29,59,48,184,198,48,131,55,191,131,136,90,68,155,222,111,108,254,50,113,189,237,252,78,231,83,150,72,72,94,135,105,175,141,115,108,52,80,171,80,222,129,65,21,94,235,62,210,215,57,39,207,2,166,54,80,11,199,12,96,175,204,251,35,8,171,125,86,49,39,97,62,34,165,109,67,211,65,28,189,88,145,225,138,61,53,210,161,35,158,108,17,18,28,52,52,103,147,101,57,65,101,45,71,144,124,73,26,51,25,77,154,141,45,93,46,146,192,125,212,199,108,168,136,114,125,39,122,176,119,152,142,225,152,170,204,12,111,251,100,125,242,176,53,59,223,159,233,119,102,188,179,111,221,107,232,123,183,141,110,130,111,82,43,117,8,71,52,109,44,215,67,242,27,40,196,15,136,43,250,153,196,32,166,115,96,43,243,187,77,162,182,118,181,202,141,125,90,216,12,94,157,141,160,183,41,8,148,90,194,66,186,182,2,111,200,129,214,212,85,151,179,101,154,31,36,200,140,136,73,73,175,121,103,179,225,
238,27,178,28,185,50,35,93,106,69,128,208,228,14,178,162,9,43,86,238,83,227,160,0,49,4,141,136,51,4,138,67,252,230,212,214,99,223,250,217,124,203,255,13,19,255,68,51,112,152,3,98,12,15,144,145,15,35,22,186,5,197,193,151,98,18,4,61,120,20,151,192,253,27,66,144,192,13,160,132,40,91,134,22,32,38,92,190,155,185,158,93,91,254,81,14,115,210,222,222,26,94,204,38,109,51,91,209,78,182,216,25,141,109,252,120,74,244,163,88,233,111,96,165,213,215,100,166,137,187,55,64,127,48,189,13,34,34,179,91,92,167,85,201,77,178,55,180,109,27,51,45,200,254,114,123,75,170,79,104,41,89,133,250,125,134,220,114,168,111,57,137,150,107,102,96,83,38,101,89,148,13,178,76,222,20,162,152,87,224,208,77,8,194,35,200,219,128,10,40,117,33,194,216,252,206,29,172,11,225,142,8,42,86,175,217,56,118,163,131,200,1,161,217,3,183,210,44,211,80,98,231,19,15,27,217,147,201,239,139,4,254,48,128,150,239,43,221,200,38,20,143,224,25,221,0,
203,175,30,186,181,19,163,50,103,255,20,237,126,163,19,155,101,234,48,119,129,217,148,142,36,84,210,126,65,177,112,165,19,46,107,155,96,22,11,201,71,58,119,142,4,222,113,29,246,111,74,2,162,162,219,205,106,92,28,175,0,179,114,27,94,106,116,9,112,5,28,250,242,50,116,126,179,84,235,156,215,207,213,86,51,55,31,146,36,7,77,146,0,22,112,99,183,155,126,232,207,45,196,238,228,57,83,108,72,244,7,244,180,83,166,81,202,149,119,30,195,225,119,219,218,13,118,161,77,44,111,89,56,219,85,116,47,98,52,220,240,45,108,213,123,23,247,62,119,181,241,119,31,62,95,100,255,120,63,41,27,212,108,34,80,123,196,36,144,83,236,142,245,205,36,221,115,101,83,33,63,171,168,183,242,103,18,147,184,15,34,85,16,226,24,16,67,198,11,67,192,192,43,161,245,33,212,173,20,20,87,93,41,27,97,7,176,186,54,254,171,49,5,241,69,163,26,14,232,101,215,125,110,255,211,38,147,97,23,65,49,40,153,210,72,139,131,146,202,128,23,27,40,185,238,229,
59,118,231,207,83,74,17,221,107,144,135,179,249,233,255,166,255,57,140,43,111,251,231,48,119,141,26,17,196,37,13,154,51,229,4,49,129,89,187,0,118,14,206,155,241,4,89,76,18,53,115,65,21,30,234,133,154,217,201,24,14,134,56,113,208,71,59,15,39,186,230,135,144,220,204,66,251,91,57,203,101,238,138,145,155,204,51,182,218,36,98,37,200,106,237,163,165,196,206,218,197,204,63,129,92,45,94,98,49,210,198,84,4,102,47,51,81,234,140,5,208,219,236,77,8,65,117,31,165,119,150,90,169,73,88,67,27,218,241,113,138,106,107,228,234,150,85,166,112,200,72,45,51,173,112,254,67,115,66,156,149,77,233,20,128,67,204,19,146,122,64,96,1,26,209,33,105,13,235,96,67,154,45,160,209,70,66,4,201,12,166,219,27,150,104,120,22,83,128,224,250,69,80,93,165,147,62,49,236,153,185,189,120,131,119,20,64,174,177,13,44,128,125,237,211,50,42,174,233,139,90,103,54,54,169,210,247,29,167,102,108,82,163,85,77,6,208,101,114,12,241,134,209,172,213,46,
243,128,85,96,163,44,198,19,20,119,169,2,183,33,150,143,23,63,99,116,8,201,31,180,214,88,64,78,113,148,14,179,194,106,20,213,11,192,136,128,237,254,95,179,238,253,220,104,126,222,9,254,43,44,95,173,111,164,146,116,178,119,93,181,37,237,185,28,119,75,117,62,217,101,187,246,126,80,181,102,90,51,28,77,159,123,186,103,155,61,26,233,118,183,10,0,145,65,128,0,145,19,145,8,34,16,32,114,14,68,36,50,136,28,73,144,0,65,34,131,32,18,9,16,4,238,5,217,61,26,77,146,239,202,190,219,174,174,23,223,247,27,158,231,249,126,158,252,118,75,92,187,9,66,45,148,167,64,27,224,26,13,237,41,187,89,183,179,155,254,5,166,206,82,16,4,1,100,69,108,141,83,200,88,245,73,55,27,102,55,11,12,75,117,3,110,160,180,187,135,70,113,72,29,19,167,4,197,156,207,234,197,136,250,3,205,254,233,253,189,210,110,219,55,157,178,142,7,118,249,230,137,80,83,54,108,153,104,231,187,172,249,22,99,1,115,134,237,103,162,83,100,35,169,160,86,
49,100,59,95,99,114,226,7,252,220,101,92,30,228,58,235,179,25,1,202,27,96,225,91,142,118,181,101,46,198,243,113,116,56,62,50,53,204,56,154,104,96,169,232,154,35,210,181,34,130,179,52,22,1,214,182,44,144,167,103,135,37,45,90,41,115,93,8,144,17,203,173,51,119,49,62,164,104,244,157,235,69,148,69,27,227,27,94,157,155,21,243,128,238,8,104,130,103,103,249,15,244,2,206,155,127,160,127,248,42,136,188,162,192,192,169,30,243,222,223,13,85,49,21,189,183,119,203,202,108,100,64,131,45,168,31,141,36,41,73,22,229,78,82,113,136,34,227,141,170,2,20,211,6,81,116,158,40,235,182,237,33,218,169,114,56,195,92,38,37,228,12,236,46,229,32,175,51,17,79,14,121,208,138,98,35,107,137,7,15,138,245,250,141,102,20,45,0,205,103,203,82,182,109,145,48,215,14,232,25,194,115,33,147,74,146,121,56,83,130,50,206,206,177,161,86,120,227,56,226,77,123,74,17,196,101,171,81,177,157,116,142,122,100,180,66,87,145,123,137,45,98,172,237,186,22,
245,116,152,156,233,22,237,58,6,13,29,144,1,81,196,162,67,219,220,29,118,8,132,49,131,80,197,13,197,41,95,192,61,239,109,32,103,40,160,33,135,235,74,134,134,215,145,168,80,250,20,155,35,54,0,231,193,14,150,109,253,180,66,21,175,15,6,14,71,120,204,148,201,52,9,10,92,193,66,26,244,90,238,58,73,224,184,242,151,68,19,57,44,208,242,96,193,177,0,52,126,183,25,68,50,93,254,88,207,113,140,223,130,40,73,100,87,174,60,219,210,213,168,59,70,145,208,68,17,5,172,92,37,43,148,217,132,208,162,135,2,188,192,77,61,189,159,156,119,197,51,159,74,107,229,52,134,150,147,211,6,220,174,26,13,117,210,176,185,170,223,82,171,200,162,49,11,131,205,120,244,66,115,214,106,22,133,178,186,241,190,129,83,26,95,50,75,179,246,221,70,225,116,194,224,34,201,70,15,246,118,38,180,21,239,183,88,11,28,99,33,199,209,23,56,246,162,139,197,45,116,188,83,134,191,128,79,222,226,106,123,234,163,124,140,125,184,61,156,3,93,197,25,122,186,158,
128,180,60,152,84,124,191,212,63,187,158,49,34,135,241,139,246,62,233,116,7,67,229,120,155,251,165,13,243,189,226,152,121,110,179,229,239,168,196,2,167,58,223,65,79,119,183,15,244,39,170,6,123,99,156,57,201,208,26,87,22,130,116,83,75,234,223,94,108,148,37,141,185,212,133,58,123,232,188,17,71,157,131,244,186,14,68,110,156,33,202,82,70,8,139,23,244,156,184,91,184,22,236,69,9,175,80,152,208,16,194,101,78,185,16,182,19,23,141,45,44,189,148,186,77,237,57,112,129,20,205,209,58,79,54,240,128,11,113,193,60,184,181,178,13,35,95,42,243,147,59,162,220,146,97,169,154,194,13,82,171,123,113,44,223,28,18,100,216,29,7,251,14,213,244,231,54,140,145,6,50,125,24,158,122,246,109,62,144,97,187,215,146,56,21,97,24,140,168,119,20,73,167,97,104,36,119,140,225,114,207,119,195,84,102,166,205,171,132,176,185,6,186,39,138,200,100,21,29,86,92,110,156,97,180,51,168,71,6,247,151,187,142,27,206,166,149,219,132,114,91,231,51,74,77,199,
74,166,149,204,54,118,4,143,6,36,80,215,58,142,101,206,92,215,139,4,113,104,49,129,177,93,185,56,223,25,243,195,247,152,178,170,189,138,216,238,230,80,109,46,72,195,71,86,238,48,44,104,157,96,163,241,104,36,75,229,18,201,62,51,24,50,62,188,53,216,103,110,145,139,120,150,75,217,2,25,107,89,154,197,147,35,171,162,88,37,102,131,17,65,6,38,174,16,109,143,120,97,221,136,131,5,104,173,219,145,180,134,226,245,141,97,195,106,190,187,238,119,163,123,158,250,158,196,126,185,227,237,74,100,145,172,90,36,151,155,138,204,102,27,97,168,232,7,9,178,168,204,232,213,228,187,96,200,73,205,98,30,8,7,102,235,180,169,87,88,78,220,22,57,7,35,199,144,28,104,106,138,238,36,42,184,180,30,72,135,23,44,120,149,195,5,196,215,28,30,21,65,208,123,213,110,169,77,55,90,142,24,158,129,204,127,74,224,34,75,231,155,14,243,13,216,89,111,75,96,177,51,196,153,30,123,9,38,246,244,184,154,96,81,27,39,136,167,198,4,149,58,159,237,213,39,
252,52,171,68,41,90,18,180,52,103,44,238,31,74,44,232,171,19,194,249,49,61,195,230,119,75,157,155,27,233,252,198,144,47,73,138,22,93,116,108,136,95,105,207,181,2,128,59,119,215,214,152,67,110,115,28,222,81,231,228,192,123,135,224,221,183,225,55,215,188,98,161,236,200,29,87,226,96,222,72,78,207,147,100,120,174,124,19,180,174,83,70,64,183,145,6,108,236,134,194,46,107,64,56,129,249,203,120,87,121,120,51,190,165,64,153,110,156,173,13,145,162,8,252,216,182,147,119,136,54,157,73,46,133,201,189,109,70,57,94,165,70,135,61,216,134,33,126,18,128,247,118,77,104,77,62,79,20,234,186,121,26,209,164,162,119,184,187,154,123,254,85,217,72,101,183,114,21,132,2,235,169,52,28,132,34,35,121,174,67,117,194,199,26,36,79,238,229,183,209,229,4,188,184,153,154,37,238,15,246,178,220,141,243,16,218,61,145,179,209,16,36,108,20,151,161,80,21,68,49,5,7,237,198,8,144,45,196,85,2,33,38,66,32,102,39,216,60,134,142,220,57,116,252,200,102,
117,58,175,118,20,116,109,91,13,170,194,18,134,179,217,165,122,96,115,128,234,121,28,92,112,139,62,228,30,43,57,116,138,37,229,154,111,122,229,195,240,214,164,69,35,227,35,122,49,3,132,132,224,145,115,167,27,201,60,134,50,66,251,60,165,171,134,222,51,229,148,123,88,75,105,79,211,34,91,74,74,141,5,85,49,177,118,125,36,164,173,108,220,32,34,39,242,168,88,106,213,100,157,199,245,219,238,161,142,50,246,71,149,233,66,142,56,181,87,164,71,190,125,136,247,204,156,54,183,169,1,95,187,61,145,167,66,194,81,54,96,30,82,121,188,46,46,147,218,226,40,141,208,91,156,31,235,169,115,80,98,11,116,114,115,4,50,30,221,159,108,221,38,206,225,173,148,12,35,75,249,239,187,148,182,99,251,230,56,13,59,187,195,74,200,72,78,184,87,69,76,140,199,27,10,193,5,251,96,214,144,9,15,212,212,211,194,158,226,148,61,162,110,247,211,92,157,13,57,162,18,174,213,18,245,233,52,19,42,206,174,77,154,82,211,66,101,68,230,137,19,59,212,2,226,82,
83,74,88,194,93,119,213,54,177,55,149,41,177,86,52,10,203,71,224,205,206,61,125,122,108,191,31,227,54,175,138,190,185,128,147,53,123,47,72,72,180,246,162,5,158,14,64,209,50,154,142,135,136,121,29,60,58,176,190,13,220,51,227,200,197,42,115,213,72,227,150,48,113,137,91,138,39,201,133,15,103,238,40,135,4,187,46,86,17,250,164,195,113,155,216,226,197,202,20,39,236,206,129,154,192,142,46,47,105,204,114,20,110,180,72,186,34,35,249,108,251,18,210,169,72,182,163,76,131,51,53,218,101,222,212,204,122,81,8,131,163,25,42,103,210,16,119,2,171,111,202,205,133,233,109,148,33,146,131,228,27,35,1,225,16,69,24,59,114,224,88,1,82,133,167,246,119,68,35,124,9,2,150,131,205,118,249,148,84,129,236,222,227,5,151,238,212,58,116,14,39,197,104,91,70,119,198,171,132,59,131,226,224,132,11,162,155,239,121,131,185,143,166,189,181,15,14,88,54,1,227,200,106,128,128,28,1,228,86,244,210,127,9,13,55,225,12,16,196,74,156,118,98,104,204,229,
124,31,132,93,108,52,79,133,37,154,237,90,178,163,188,192,28,67,36,99,168,108,70,212,176,65,68,47,46,115,204,15,180,98,124,85,15,52,94,55,219,11,132,52,218,185,183,107,209,153,66,108,39,211,124,214,132,148,205,151,89,76,144,114,141,201,179,142,247,233,94,98,110,56,184,180,236,113,143,5,59,13,61,58,11,22,77,44,148,86,107,71,88,65,193,213,186,44,241,84,68,217,98,74,128,30,238,146,112,215,158,200,200,251,197,171,90,233,248,20,53,221,66,23,80,73,194,36,80,78,157,226,207,23,135,190,197,230,198,233,125,18,91,193,183,161,7,19,170,105,14,3,185,238,47,48,2,188,231,90,144,168,173,3,105,158,70,51,56,99,220,141,91,165,29,100,145,249,226,77,35,73,114,179,221,119,101,52,246,130,228,180,30,164,14,123,90,146,34,18,161,30,81,198,66,249,226,226,106,100,87,15,169,197,14,198,141,29,187,226,167,124,109,131,138,183,128,216,250,203,160,223,224,131,91,218,19,6,167,175,160,27,132,248,219,93,198,112,10,68,12,205,81,39,217,93,
244,56,2,192,58,44,28,179,247,250,2,138,196,24,139,156,131,219,134,7,81,156,87,182,183,40,68,35,125,199,145,178,4,44,129,68,164,114,59,102,232,146,220,195,89,9,61,8,74,152,71,236,113,187,185,227,110,247,56,166,54,200,152,207,69,68,124,251,52,158,75,149,3,193,200,46,150,60,78,21,146,196,6,152,187,101,35,120,135,158,4,120,103,106,183,8,206,118,186,126,177,0,229,130,7,60,123,61,188,2,65,63,179,32,147,179,106,155,233,64,149,15,171,52,197,94,150,77,66,247,135,230,253,252,70,199,122,142,37,110,145,85,24,141,158,239,143,207,161,155,36,2,76,51,14,23,80,173,221,237,122,156,0,206,176,121,211,252,177,86,165,69,193,66,168,163,49,109,131,102,140,181,241,26,98,68,230,104,71,236,195,102,136,9,62,219,158,119,85,26,12,129,223,129,106,89,23,45,122,160,65,103,224,229,77,16,143,20,118,105,175,243,252,209,165,222,212,111,96,17,131,75,5,1,39,48,111,68,128,250,22,4,174,57,177,69,208,6,77,79,132,95,149,182,217,234,
76,152,166,235,85,65,21,14,214,173,217,63,19,209,60,193,29,23,9,147,234,4,71,160,64,77,151,149,90,194,206,249,93,53,42,194,130,116,112,126,20,11,61,192,187,25,167,232,147,250,12,118,222,242,73,24,114,166,181,67,140,66,114,1,76,167,52,108,94,72,116,100,134,136,48,216,33,65,168,253,200,94,56,95,30,143,155,109,142,42,182,171,6,181,212,89,73,164,214,177,183,7,226,209,246,254,49,91,33,183,7,8,166,115,177,162,222,152,97,42,125,69,238,54,203,81,90,22,174,210,28,123,142,157,93,28,108,221,180,22,254,200,60,239,154,59,46,2,179,50,250,38,80,218,106,233,135,235,242,227,221,226,204,134,234,217,14,85,100,52,65,177,59,159,221,146,112,99,164,150,218,189,26,195,76,247,137,228,129,41,215,94,136,196,7,197,157,171,185,33,51,23,181,183,230,134,248,66,212,60,221,18,51,21,217,150,130,218,218,83,80,246,168,161,209,32,148,134,179,192,112,242,133,3,71,57,24,187,80,52,102,36,30,33,212,209,65,39,180,139,77,179,35,64,163,222,
62,138,213,198,87,1,253,226,114,12,186,228,82,5,30,156,97,182,126,208,24,160,56,216,245,10,148,149,246,147,226,26,20,184,213,136,69,16,186,176,147,213,174,8,207,45,116,122,78,21,204,64,161,4,130,160,44,172,34,170,80,80,174,23,246,69,245,125,102,217,71,225,162,26,57,103,37,238,245,232,8,6,181,231,24,124,11,228,48,231,186,79,183,109,240,36,80,248,64,200,133,178,110,84,164,97,159,19,221,173,105,140,84,66,20,194,84,169,236,24,149,192,19,70,162,12,231,183,240,94,178,15,19,187,193,80,2,121,152,72,240,171,17,195,125,222,83,214,3,129,14,204,13,113,52,37,112,111,112,104,138,212,69,194,14,84,223,19,32,247,197,218,113,154,34,66,116,54,221,65,17,155,3,77,129,32,185,245,134,151,13,22,192,195,135,142,26,137,195,54,128,247,64,184,246,12,106,222,204,143,229,21,189,74,228,107,179,246,47,177,76,120,2,23,81,170,163,129,137,161,134,186,119,57,170,46,16,105,199,21,235,243,98,215,241,200,125,248,184,23,24,20,89,77,222,142,
14,159,154,161,143,251,78,92,208,104,2,17,90,235,238,112,21,145,215,218,218,24,165,43,120,139,107,136,160,72,212,184,84,57,220,164,159,101,110,161,58,178,218,35,219,146,8,176,30,49,126,198,193,156,185,85,129,218,196,36,149,50,132,221,76,196,214,109,180,210,105,255,228,80,84,85,177,17,85,18,158,80,56,58,180,211,189,97,186,106,208,145,143,34,178,86,250,178,163,17,15,242,245,243,1,197,217,201,36,71,246,138,149,117,18,17,82,19,154,235,189,252,109,240,210,11,86,128,233,220,153,169,73,178,39,60,84,233,45,33,145,143,38,128,190,250,98,188,133,164,158,26,111,13,179,252,249,148,41,137,80,164,73,84,206,87,57,239,48,114,68,15,29,17,13,228,6,62,202,77,205,120,172,192,222,93,68,167,188,9,83,49,70,82,225,35,124,194,80,194,13,112,2,86,132,115,34,197,211,234,158,32,67,222,115,140,145,126,81,73,61,74,106,23,235,176,140,213,120,222,67,104,122,170,3,55,167,40,186,201,205,203,7,186,205,251,107,156,61,58,24,88,192,24,2,211,
73,181,123,192,123,177,180,27,193,193,58,88,20,49,67,140,103,207,112,85,4,138,120,196,53,27,148,21,21,29,23,174,227,171,222,115,11,36,139,35,40,56,172,178,79,176,103,223,166,95,179,201,199,249,131,134,31,206,161,11,98,55,174,144,104,142,131,139,214,185,139,205,150,149,229,161,131,182,41,185,51,156,85,178,143,50,94,99,194,76,160,197,176,146,6,73,22,47,205,11,58,208,70,122,184,146,129,42,207,55,182,201,215,91,174,35,20,8,26,83,225,237,238,185,139,196,77,18,250,8,34,57,204,72,105,226,17,40,153,88,166,12,99,177,57,78,191,21,178,72,238,139,1,3,163,189,43,144,67,181,68,84,194,225,11,6,37,22,159,80,78,210,111,21,54,241,4,252,212,81,187,18,229,89,186,179,67,214,168,88,229,196,123,78,33,148,12,197,59,79,75,152,198,94,235,146,157,26,246,77,28,24,249,110,114,168,139,109,106,83,119,18,243,12,146,59,100,123,167,98,189,72,18,243,10,35,23,30,66,154,116,192,64,115,2,94,249,238,5,140,86,157,145,122,133,114,
24,126,6,1,107,243,78,107,153,56,132,19,219,213,48,69,53,137,146,133,176,24,181,146,70,94,244,120,20,19,75,40,101,32,210,17,107,131,42,175,184,128,38,37,25,74,7,218,84,152,117,219,233,101,59,52,177,245,100,250,56,89,238,157,40,198,119,146,162,226,200,124,111,237,86,101,187,68,23,126,36,75,168,89,215,3,68,71,79,60,241,50,219,105,85,101,221,231,34,112,91,130,123,77,1,47,57,63,183,141,181,50,187,78,114,88,195,169,110,139,27,176,243,48,167,98,175,108,230,119,207,208,155,209,182,85,61,64,201,28,201,62,18,35,144,109,136,12,72,97,79,124,145,53,142,17,235,170,214,193,249,29,209,23,98,211,112,5,246,125,217,26,69,165,103,14,56,155,220,39,214,170,103,116,110,65,82,131,157,187,217,172,78,196,227,155,111,220,75,187,156,194,93,27,113,106,96,176,15,88,70,141,38,122,6,157,46,234,213,233,84,144,100,231,123,101,24,225,232,220,4,179,86,208,221,177,50,161,162,111,110,200,123,221,154,77,59,179,204,53,70,141,155,48,40,157,
17,198,214,195,49,178,155,221,168,11,9,7,90,34,203,162,177,105,212,4,245,28,214,143,122,34,187,254,20,169,206,96,162,64,145,173,225,58,70,93,197,85,177,136,13,249,150,247,78,44,226,158,34,85,138,195,123,92,42,60,53,101,216,61,11,179,221,59,47,234,49,72,136,144,134,48,242,157,20,69,15,175,115,72,220,56,179,132,133,196,108,9,169,91,182,180,166,131,111,64,48,181,97,34,25,240,146,121,158,138,152,3,103,35,179,195,4,239,60,23,175,58,3,83,33,202,199,221,231,187,25,253,189,160,220,33,182,32,234,138,154,75,5,137,4,237,144,187,133,23,239,114,122,201,155,55,215,51,239,166,205,154,226,15,248,105,241,77,171,97,246,26,173,178,237,146,196,209,186,79,54,197,116,173,113,102,221,223,223,196,220,149,29,183,116,227,129,61,203,221,113,123,235,219,53,170,104,225,185,223,155,184,247,46,22,201,189,116,50,57,189,78,148,177,234,57,39,235,19,111,79,71,18,233,45,127,243,188,191,17,130,163,123,20,103,52,13,115,100,76,201,97,111,152,143,141,
188,54,45,54,123,227,178,83,79,110,238,26,74,234,149,67,61,57,13,221,35,234,5,182,170,3,219,189,32,176,85,217,49,23,102,63,197,96,239,157,117,156,235,102,235,96,170,201,113,132,115,8,98,123,171,89,146,181,182,215,133,14,8,66,56,100,129,146,113,207,33,143,14,103,173,243,164,115,212,214,181,253,206,88,59,219,71,33,194,122,49,72,226,68,155,36,70,4,186,28,115,152,4,167,174,162,247,138,38,47,245,205,126,137,149,171,161,241,214,123,104,80,203,115,116,60,78,121,232,219,188,92,231,250,150,118,230,220,24,168,213,80,20,120,75,151,187,76,65,246,143,144,70,175,172,62,27,208,32,163,163,1,138,201,183,16,111,119,179,102,13,129,115,167,73,14,77,247,230,14,208,46,148,15,52,108,110,62,70,68,8,186,51,165,91,127,187,13,85,233,103,170,198,58,142,192,221,210,58,134,20,34,148,121,212,41,247,184,40,9,247,182,1,187,65,142,181,253,115,21,223,169,227,34,43,122,207,144,21,118,110,36,2,62,195,85,57,87,223,104,246,147,96,222,102,70,
27,185,98,238,242,206,160,219,112,211,248,216,150,96,116,172,238,25,109,52,69,167,188,208,6,94,149,145,120,97,138,120,7,93,131,100,142,92,55,132,76,205,19,27,129,4,72,99,205,178,193,28,185,72,5,33,57,8,183,114,98,126,204,133,142,172,27,102,210,9,19,68,90,40,186,184,248,75,177,84,181,67,17,158,10,130,182,228,112,120,147,73,78,238,18,56,92,189,104,110,215,123,254,115,20,21,43,108,162,83,152,59,242,81,147,196,144,148,250,110,145,116,123,63,209,40,149,236,199,71,93,78,141,116,116,20,202,42,50,87,199,37,160,246,151,157,218,82,37,155,189,112,124,16,217,4,35,110,28,45,120,228,46,140,112,9,53,201,245,225,140,232,33,95,116,183,165,7,246,130,235,198,54,239,232,230,35,227,124,164,84,78,33,62,86,77,20,29,117,91,42,249,100,183,10,107,65,226,164,89,17,221,103,67,90,152,221,104,227,200,204,101,160,187,204,93,223,85,206,93,50,178,61,186,80,192,206,186,24,56,47,205,93,239,189,104,200,102,198,116,179,98,79,206,26,33,
212,50,185,117,2,70,204,29,55,126,172,107,129,50,241,32,39,249,246,166,222,149,28,140,220,105,44,164,152,222,136,101,134,121,180,234,32,33,40,48,243,78,220,150,232,16,76,70,216,135,20,144,242,86,79,217,50,115,9,83,100,144,193,30,134,90,140,61,188,27,205,24,195,133,61,223,80,96,32,242,6,33,172,154,122,88,75,203,21,2,160,188,247,77,216,229,98,87,110,2,154,30,254,57,207,198,233,65,119,181,187,188,193,140,233,105,201,227,198,75,226,99,226,96,136,18,246,98,249,192,96,103,142,154,110,109,95,35,112,179,128,250,13,82,54,249,169,221,92,16,117,106,142,32,140,21,125,183,206,48,135,117,199,38,20,195,182,62,181,75,66,177,61,161,173,221,230,119,53,155,91,2,3,109,114,65,235,137,7,183,253,126,27,177,65,195,12,88,70,249,148,125,4,39,169,152,220,152,218,139,219,216,76,242,163,1,235,142,123,39,182,168,86,227,144,96,8,31,239,172,107,74,202,238,56,23,65,64,12,252,97,33,161,146,66,15,156,112,147,52,78,112,239,214,15,135,
61,4,129,65,49,92,205,132,50,216,162,9,11,82,204,233,45,124,61,158,200,236,219,176,156,244,69,180,190,99,186,158,140,20,44,83,223,113,233,191,211,123,121,136,65,136,119,85,208,89,123,73,79,62,141,194,14,247,185,72,53,207,45,69,86,202,215,201,113,79,185,48,250,142,101,167,53,234,222,204,238,23,137,111,71,249,233,229,14,137,205,141,129,112,253,5,220,35,177,90,82,122,136,190,91,240,218,172,109,179,98,198,106,181,167,244,83,95,116,16,106,192,109,179,179,134,130,99,105,156,34,65,247,194,49,185,238,106,103,130,188,123,24,222,27,165,102,38,26,65,115,75,219,119,142,176,119,245,219,65,181,100,189,217,154,93,241,90,228,233,33,116,219,34,241,77,164,112,28,7,223,108,102,100,69,94,179,188,201,118,59,111,138,237,248,220,93,96,114,29,216,51,219,70,205,162,21,103,125,205,83,113,67,189,43,133,115,235,45,104,210,16,78,39,162,105,4,26,232,194,217,194,29,49,208,244,150,195,94,212,225,158,195,125,226,235,220,216,88,14,247,62,156,49,159,31,
174,27,81,252,196,21,39,18,47,109,233,93,7,89,48,52,175,52,156,83,157,87,87,102,123,103,72,16,43,44,179,125,10,42,92,132,248,11,252,206,118,172,4,116,205,139,173,27,228,230,178,99,157,239,47,78,231,134,230,173,44,133,172,187,213,59,229,250,120,23,236,103,99,175,93,86,185,173,105,40,111,179,4,211,1,4,197,7,221,185,245,83,253,141,99,131,24,247,227,99,27,73,162,87,187,35,133,11,213,94,109,212,65,140,159,159,34,131,144,107,208,174,2,239,52,109,94,195,201,170,186,24,69,188,216,240,154,238,29,136,62,152,81,167,181,65,178,61,176,215,173,40,145,134,153,124,194,123,7,183,150,247,82,120,16,154,54,158,186,206,13,85,174,251,234,104,123,195,196,171,107,225,48,210,134,217,239,175,82,241,67,207,225,14,29,9,7,133,149,59,200,248,25,9,121,6,159,227,134,173,200,246,122,3,199,146,250,239,9,70,92,118,27,220,116,162,90,142,57,208,240,121,231,126,233,152,170,178,97,70,73,130,34,54,226,241,98,71,117,163,249,98,1,22,118,206,
236,92,151,3,129,65,223,218,131,217,59,58,212,120,13,147,176,132,73,103,198,56,156,205,143,110,12,103,205,27,119,90,80,111,237,51,134,88,241,96,159,97,116,208,60,110,114,12,213,115,35,110,29,19,55,66,110,153,170,174,174,28,157,220,193,166,97,129,200,64,225,209,121,204,127,47,31,97,200,41,28,195,65,114,133,136,235,92,163,249,188,181,183,177,175,150,134,81,234,43,47,19,210,220,27,231,6,61,223,161,53,85,177,175,111,153,19,205,32,33,178,101,35,29,199,175,47,228,48,7,19,116,94,186,206,103,157,14,155,121,166,131,72,5,120,110,180,46,67,157,148,224,214,34,147,125,150,112,145,200,233,76,53,207,197,167,67,122,118,122,220,77,101,147,157,88,91,144,45,9,186,108,243,144,164,174,219,28,64,158,135,160,252,70,246,52,233,110,95,66,124,102,54,105,221,238,245,108,148,65,89,110,145,166,54,29,27,47,119,145,233,161,252,64,153,194,31,240,238,211,142,161,160,139,136,159,249,70,220,225,186,213,126,100,46,37,211,219,82,223,29,184,75,217,154,71,
79,189,64,224,63,104,114,56,157,222,34,102,69,250,178,158,156,188,16,235,144,140,240,233,85,10,92,203,249,64,135,212,88,150,147,118,208,10,221,97,177,149,58,1,201,118,227,74,77,37,54,89,103,211,118,32,155,102,174,11,60,76,23,225,29,52,124,253,10,139,152,68,234,72,97,159,155,52,218,132,10,241,237,68,207,41,31,192,72,61,14,141,172,173,230,227,145,136,30,59,40,58,108,213,72,106,132,235,133,10,137,17,194,124,200,197,92,154,84,36,41,254,80,149,66,66,122,32,24,104,16,243,192,203,46,82,212,57,36,8,212,213,148,135,37,104,146,231,160,134,197,30,44,172,119,253,236,242,182,69,96,89,191,59,52,14,106,8,2,13,125,142,232,187,27,141,235,153,125,135,205,169,38,5,179,194,12,191,121,211,87,38,230,124,174,191,226,40,77,175,39,148,110,253,52,57,130,212,235,243,5,9,87,187,190,30,18,20,55,137,123,201,250,204,14,102,24,41,224,210,56,144,37,47,255,43,129,19,54,14,242,246,212,163,104,213,196,188,176,22,241,151,199,12,77,32,
122,182,227,102,167,83,8,254,229,229,128,33,151,214,137,150,188,186,178,135,150,236,33,118,247,76,247,2,86,241,170,145,10,34,14,75,217,67,245,112,220,225,233,77,133,156,208,69,238,167,93,254,52,170,120,56,220,38,76,27,32,225,124,7,217,43,153,133,102,72,7,99,39,134,96,122,42,51,44,53,14,120,190,3,82,4,221,222,87,192,248,91,101,154,188,218,134,102,166,60,199,145,172,153,187,25,59,166,186,189,230,190,231,10,42,217,15,74,129,50,61,72,97,43,204,252,70,160,123,164,27,33,110,45,59,197,245,227,19,14,173,86,88,184,1,229,29,67,106,211,123,174,123,178,155,114,74,220,146,184,47,131,167,231,232,68,211,54,76,228,226,104,248,110,161,33,118,237,128,36,33,48,74,105,140,89,228,110,238,106,252,84,14,55,29,150,231,186,131,189,235,253,19,155,218,51,84,77,57,7,119,246,220,33,137,76,30,84,7,117,162,79,221,152,233,58,220,176,111,232,138,165,237,167,85,60,232,10,107,178,83,134,36,73,158,212,231,206,33,126,183,61,67,186,9,153,
114,84,235,197,102,69,18,176,221,59,82,163,179,52,93,66,162,145,124,233,107,246,253,240,140,195,63,80,165,16,6,110,32,225,147,69,216,178,210,160,127,28,73,131,152,39,59,99,40,228,64,218,246,41,208,193,242,237,21,235,90,235,221,109,30,251,65,174,43,180,208,188,123,124,142,244,93,19,207,186,169,156,216,77,34,114,248,206,46,200,178,119,21,79,241,59,174,33,24,37,195,146,164,247,120,252,229,76,71,148,238,52,61,71,53,71,160,103,73,105,79,234,16,10,124,34,118,103,83,188,19,35,49,114,152,102,148,51,98,100,118,103,26,119,155,76,200,17,100,98,75,16,218,136,56,219,21,73,24,162,54,150,88,189,30,115,57,225,54,149,159,99,69,198,181,66,250,126,246,166,112,111,165,221,79,106,121,247,65,164,236,228,54,181,109,173,192,187,105,134,44,204,83,188,245,228,158,46,73,56,53,235,105,10,68,149,175,244,108,217,97,89,51,89,76,241,193,12,11,230,75,54,21,155,181,205,211,35,251,237,220,118,135,175,249,103,3,83,215,144,86,72,70,116,237,36,
38,201,143,242,61,62,36,153,238,159,43,27,135,213,18,115,35,235,110,240,233,213,8,200,187,53,26,90,173,140,84,154,107,144,192,247,166,70,201,145,207,16,201,159,15,120,227,115,161,253,86,172,232,14,202,131,244,180,224,21,28,227,57,213,249,193,232,174,114,132,186,58,220,102,203,229,198,94,99,199,238,135,38,155,187,39,210,78,54,207,69,4,17,254,150,28,158,191,143,31,41,207,138,71,60,25,65,160,178,50,118,46,240,7,242,59,239,122,195,26,14,114,79,54,155,116,71,157,73,106,64,82,58,119,108,172,107,103,144,187,129,8,251,42,131,155,161,131,69,115,228,48,82,50,156,36,250,182,162,221,31,186,78,158,28,139,175,93,180,209,46,67,109,205,102,214,101,176,171,96,18,45,8,217,109,24,165,94,144,34,183,72,126,175,103,111,7,77,42,118,52,142,13,173,89,235,110,217,111,89,200,253,6,153,60,180,85,212,24,237,4,101,209,199,244,133,166,118,243,66,57,207,229,125,176,27,94,127,224,30,221,78,214,173,35,79,48,44,55,13,186,201,97,211,154,37,
238,0,150,144,2,181,26,19,66,180,232,246,72,206,149,21,244,29,189,82,8,102,186,32,87,112,74,205,107,105,44,108,98,99,168,13,66,33,41,182,216,113,63,12,32,214,181,18,23,148,216,189,78,157,227,210,233,90,12,225,103,243,247,192,85,55,7,148,54,68,49,73,116,184,238,26,89,166,163,24,36,46,83,33,145,220,126,76,1,148,77,167,4,248,246,84,85,76,91,104,187,151,38,166,159,86,21,150,214,175,228,148,93,36,53,55,223,72,137,233,23,164,234,182,76,83,28,65,50,100,199,61,233,196,24,178,44,204,46,8,116,151,44,184,31,141,180,123,100,249,141,82,166,95,87,21,180,86,82,42,74,62,96,108,162,15,122,189,222,124,81,88,232,243,156,253,162,44,96,227,67,181,108,219,153,237,198,98,57,69,222,113,145,231,119,155,116,47,159,200,237,65,61,56,56,25,25,245,196,247,130,246,195,185,254,50,167,23,228,154,41,172,44,227,29,169,233,161,133,151,12,194,128,219,73,36,99,15,35,24,77,166,253,83,182,45,85,219,76,47,188,217,126,69,101,188,
165,111,157,182,137,3,61,109,139,28,114,106,59,112,162,221,64,115,205,36,235,39,103,87,201,129,74,103,53,201,232,178,118,110,176,21,155,218,61,37,198,152,104,133,112,174,164,98,83,65,176,27,219,81,208,41,35,238,197,186,164,118,97,147,93,121,17,98,116,214,173,78,129,6,30,70,181,103,119,203,141,129,99,237,200,144,119,94,53,145,118,54,68,33,15,250,37,3,38,6,125,68,22,184,99,133,253,200,85,62,60,164,140,207,44,91,129,212,230,122,182,88,224,105,242,53,179,197,233,84,200,236,13,84,73,20,213,238,152,113,9,101,197,179,191,209,140,16,29,178,244,45,56,79,222,148,86,119,161,141,214,217,17,175,15,187,98,55,13,133,148,46,223,37,163,183,174,118,206,5,39,119,248,137,137,103,182,142,157,68,83,101,207,106,24,74,224,197,190,54,128,216,74,39,66,235,217,211,92,49,97,177,29,121,76,51,164,26,21,78,7,157,23,38,204,30,65,50,152,158,237,9,129,118,78,75,107,82,23,144,66,2,107,35,53,216,64,210,129,212,230,151,182,52,115,208,
162,79,84,45,24,236,4,172,29,49,71,234,115,176,131,160,157,241,175,100,124,125,176,0,180,232,150,46,97,56,199,48,212,230,160,242,166,179,208,157,131,82,212,109,105,162,44,173,112,251,9,114,174,72,234,82,76,215,213,193,173,221,118,74,59,151,36,84,55,50,197,97,143,212,8,85,71,182,34,179,116,36,14,166,110,78,143,200,92,214,134,7,50,132,181,98,59,58,158,171,164,200,200,239,219,233,72,246,196,133,240,26,152,145,35,168,107,1,56,191,15,131,232,172,231,109,72,143,192,165,180,28,203,124,197,59,194,173,20,219,79,239,148,53,12,193,62,195,89,20,92,13,35,34,216,72,220,136,182,144,65,225,228,50,134,157,136,83,164,170,102,187,36,56,208,212,219,243,57,255,4,193,38,71,196,114,68,35,14,102,99,39,241,61,12,109,126,178,81,172,12,147,94,214,21,89,60,35,135,46,247,237,187,212,211,115,204,21,162,39,219,222,36,90,178,165,190,198,118,215,142,116,247,229,13,178,206,164,95,28,102,47,111,11,70,75,88,181,107,56,28,182,163,21,81,166,
95,190,3,159,219,69,56,142,201,30,132,142,198,137,42,92,36,220,219,29,64,61,3,73,161,60,42,225,46,90,42,8,10,146,243,120,21,36,170,44,69,132,81,9,119,179,187,206,5,135,217,49,81,80,68,50,115,151,195,151,238,66,48,7,138,184,156,231,164,57,57,123,33,185,88,61,163,14,206,187,227,106,243,106,16,56,209,153,44,154,107,91,254,70,175,247,25,178,236,214,222,17,53,187,216,184,185,191,107,140,251,106,86,158,49,136,245,137,22,33,101,179,149,231,14,213,73,237,60,119,113,25,227,147,165,109,134,164,152,134,109,54,155,77,62,25,114,51,197,19,224,123,57,101,122,12,31,199,239,145,51,143,44,198,46,237,74,44,21,115,39,222,194,204,165,180,148,54,127,224,55,7,170,80,168,56,10,17,185,100,230,112,91,105,16,36,40,231,224,88,8,158,227,129,224,13,176,195,165,9,95,100,249,112,9,125,231,144,52,161,95,239,11,16,108,42,90,237,30,134,24,186,0,239,128,128,188,201,18,235,123,29,210,158,37,151,55,114,201,49,168,43,159,206,93,141,
130,251,89,156,21,142,197,38,221,61,1,132,237,216,35,233,239,209,98,201,46,75,148,240,206,4,14,205,132,38,190,94,247,231,251,240,113,187,129,173,93,154,173,202,11,232,198,133,9,220,159,165,9,155,46,144,238,224,44,86,57,49,157,166,4,174,138,61,27,34,135,8,162,20,61,30,232,92,238,248,143,110,198,173,75,117,68,209,64,180,70,117,185,142,33,47,148,139,27,41,15,102,88,8,92,202,65,153,112,65,70,63,235,8,108,77,178,151,186,187,75,111,230,168,251,103,206,212,254,133,34,223,201,128,28,196,58,117,107,147,159,208,52,39,208,41,186,180,43,27,226,79,5,177,9,255,194,146,223,181,158,82,106,155,156,139,9,181,50,11,77,27,115,161,253,96,51,26,100,79,184,230,86,116,191,115,69,128,55,176,58,155,6,44,58,15,181,213,122,17,146,120,110,246,178,230,246,107,131,245,148,156,9,40,185,53,229,60,8,199,97,104,72,104,19,214,194,114,115,35,197,68,191,43,210,108,77,77,217,56,206,17,219,40,109,54,211,245,251,69,210,110,62,240,246,106,
2,88,229,86,158,64,144,55,161,158,4,157,130,172,67,19,65,200,52,20,223,61,111,117,205,26,120,148,174,145,171,132,167,199,199,236,217,233,252,62,123,196,89,216,214,205,147,161,198,78,87,196,55,38,103,19,148,124,193,21,146,69,144,11,15,162,78,166,156,78,115,59,98,4,222,76,169,70,73,123,235,196,163,253,235,116,153,187,143,160,20,253,54,71,52,133,62,57,101,17,161,35,131,68,197,103,77,136,49,8,201,30,58,185,41,95,220,24,182,26,173,76,40,233,232,74,7,254,118,70,237,231,203,138,197,202,245,190,204,227,76,241,198,149,96,0,126,236,235,156,244,249,48,118,56,55,141,91,36,180,152,87,28,149,25,211,200,83,141,37,110,242,170,15,91,242,227,19,251,86,16,30,22,23,220,123,8,56,100,211,69,217,116,65,93,215,123,110,9,36,94,32,159,109,33,133,216,168,78,37,8,233,228,137,132,156,181,73,247,160,51,214,61,151,78,22,134,59,233,55,240,77,84,203,215,85,247,169,108,158,102,192,70,213,20,98,126,113,247,168,175,107,28,203,25,229,
75,108,177,222,34,221,157,84,108,205,202,152,92,57,79,225,172,187,116,243,102,115,35,65,207,96,233,211,59,20,89,52,190,97,4,28,194,173,148,162,225,113,58,218,126,153,104,33,219,147,101,197,225,61,167,218,37,46,193,85,38,142,94,214,190,244,19,24,87,36,221,116,47,184,125,28,204,50,248,77,101,187,152,43,11,137,183,82,197,17,49,32,45,21,198,169,51,10,130,233,66,203,50,27,187,205,246,186,229,36,91,227,48,167,109,59,60,12,228,4,77,167,175,199,69,91,24,47,151,53,20,101,21,227,106,134,34,153,206,80,151,50,74,116,198,139,210,137,186,34,109,32,108,95,151,243,243,106,136,29,8,134,110,243,166,40,202,111,97,239,120,74,10,255,197,94,193,200,135,196,47,160,23,66,54,37,154,67,153,230,241,139,67,50,83,236,145,158,121,22,5,167,109,91,202,51,33,165,210,190,244,240,230,40,144,18,58,229,14,2,61,140,242,52,14,105,234,61,100,248,194,53,132,57,103,165,241,253,224,94,214,31,77,152,91,200,163,141,172,225,224,36,106,38,74,76,
46,2,50,119,201,164,197,246,39,89,99,8,185,167,24,245,77,13,19,81,37,26,211,4,10,135,15,38,71,200,234,103,39,238,242,165,8,21,76,6,16,102,8,93,172,226,67,177,237,155,163,135,0,112,77,138,177,113,188,195,42,221,84,180,203,123,193,5,234,88,226,18,82,216,202,48,201,152,131,199,14,232,163,194,13,158,146,219,217,237,106,93,249,206,41,62,48,30,163,102,137,198,165,196,238,95,103,140,188,205,150,74,58,214,146,70,68,71,92,188,229,181,128,99,205,122,236,76,94,148,2,245,172,92,216,140,161,248,237,150,135,149,144,184,85,250,154,14,199,29,122,133,125,74,86,53,149,204,33,158,27,103,210,140,55,13,252,40,182,173,88,151,17,69,101,124,205,142,173,79,177,144,250,1,119,239,194,44,13,193,123,254,237,226,69,121,158,18,22,253,202,245,106,56,103,217,42,239,235,239,165,248,178,238,40,73,222,215,10,138,221,48,195,226,53,229,211,197,67,101,51,126,128,82,147,10,199,234,212,24,163,107,118,197,205,61,124,87,186,62,135,217,78,249,254,227,
206,180,83,60,141,203,225,211,22,40,76,243,92,248,55,84,217,236,249,201,78,176,5,41,123,205,234,156,244,112,63,41,238,132,163,217,78,99,10,163,155,114,164,26,115,168,197,118,15,243,252,171,35,203,57,178,120,167,86,213,6,181,86,217,82,170,239,95,68,146,240,140,90,123,173,131,36,188,146,25,235,228,112,94,110,48,76,241,139,116,17,106,58,214,97,70,117,15,137,32,59,80,166,41,180,254,122,109,159,162,247,67,197,97,80,66,134,53,53,227,34,13,165,27,76,43,116,165,33,179,99,40,156,197,79,156,29,91,76,232,159,243,100,166,12,50,136,220,25,36,61,90,18,53,66,216,105,54,195,135,34,67,194,112,80,58,185,159,78,22,147,236,233,226,186,49,168,213,78,247,175,204,134,138,247,76,38,247,158,221,169,160,196,75,63,203,31,83,94,107,69,187,5,206,78,37,168,112,156,140,92,173,242,34,148,172,118,114,118,105,16,81,245,237,82,25,152,108,207,179,137,189,62,18,86,174,155,155,132,132,176,109,17,0,133,1,16,195,148,44,228,152,21,226,198,227,
149,222,250,125,23,171,175,236,80,141,28,73,60,143,243,97,5,157,60,55,113,190,35,27,18,117,118,239,122,144,28,115,239,67,249,72,197,152,113,61,108,67,72,27,131,172,43,114,178,119,27,118,142,80,102,153,10,108,87,37,153,56,218,85,111,68,64,239,173,231,37,109,245,241,134,52,7,182,129,250,116,87,169,84,87,12,103,181,174,69,227,160,251,208,176,160,135,90,201,113,173,215,84,84,229,170,44,42,215,109,169,107,240,70,179,100,213,25,225,180,107,186,107,43,199,160,77,46,201,152,195,84,206,239,144,236,86,195,8,193,121,131,174,26,76,106,230,86,152,66,110,14,185,160,69,246,184,35,114,5,88,27,155,252,91,117,163,139,226,138,35,218,251,152,59,214,105,100,58,136,121,14,31,109,247,47,214,213,77,124,70,0,105,213,42,22,100,207,223,35,214,67,183,98,131,216,23,175,34,130,113,135,220,5,85,150,134,30,251,216,137,146,30,118,98,173,195,8,212,212,84,199,217,88,162,229,224,74,14,120,147,70,66,183,104,142,242,72,179,28,105,63,196,133,67,54,
29,235,16,2,194,33,238,238,113,13,253,204,55,106,134,3,220,62,219,81,149,167,152,134,138,145,86,202,120,242,59,7,242,196,168,11,170,116,225,70,25,134,211,188,129,119,66,253,211,51,143,232,18,123,59,233,222,219,176,142,29,50,57,155,179,23,164,101,8,111,59,117,89,8,112,229,55,9,180,150,47,194,135,24,116,190,20,15,56,114,9,237,152,29,207,167,179,59,81,40,20,34,50,175,37,151,151,204,99,195,69,238,102,11,201,240,64,59,253,24,82,117,121,11,145,16,3,69,12,84,222,0,151,160,10,129,5,111,10,242,89,121,143,120,222,184,141,7,240,92,215,80,82,19,4,25,90,234,194,5,113,86,239,99,74,54,206,135,32,184,72,39,22,222,204,63,221,4,91,196,55,145,200,177,146,147,192,194,29,73,201,225,150,73,212,152,160,229,177,49,143,15,137,168,73,136,102,248,206,43,134,59,161,130,145,114,206,35,114,134,37,174,57,201,145,239,83,180,138,75,3,220,154,39,211,131,228,166,14,151,184,178,164,50,48,133,0,42,217,205,111,235,74,232,252,249,
209,120,251,110,188,163,20,17,40,26,12,123,82,145,37,142,125,236,105,19,110,242,4,247,220,176,98,48,115,134,163,34,97,170,240,13,1,164,223,20,228,88,197,6,164,137,209,166,200,56,76,59,49,199,223,98,40,198,202,166,102,82,179,122,233,53,126,82,104,194,40,205,37,169,219,94,160,98,85,141,36,79,55,210,167,79,118,147,231,3,181,138,106,36,105,208,8,116,19,131,159,93,120,166,20,6,30,163,116,178,209,217,46,202,12,57,9,78,205,163,160,93,13,35,208,178,17,225,201,192,83,58,55,68,60,188,92,44,224,27,41,101,8,255,133,94,182,229,100,141,66,51,238,94,66,73,30,236,151,53,177,109,223,152,95,76,248,210,129,94,235,46,35,129,159,110,68,145,253,61,73,112,171,137,23,5,9,32,169,17,9,68,106,165,36,11,132,37,162,16,26,205,67,137,4,82,159,202,233,136,238,187,185,209,98,139,130,71,50,99,230,77,203,78,134,188,127,220,149,160,56,89,137,12,130,206,229,195,52,241,121,42,69,45,231,215,241,96,101,55,220,141,238,239,47,136,
150,154,21,114,215,51,192,238,48,202,13,143,127,92,171,129,26,224,136,212,24,83,47,46,240,122,232,57,173,143,22,201,83,243,108,169,172,197,4,112,38,212,108,123,94,192,55,182,140,126,234,38,124,177,133,41,164,73,82,100,31,39,198,93,185,38,94,33,158,209,35,117,172,80,23,220,62,13,12,9,178,0,198,35,220,189,90,192,10,40,184,93,150,206,129,147,195,78,91,100,150,28,214,187,77,181,192,216,80,105,210,163,128,238,98,79,154,192,135,99,153,120,171,6,190,113,161,45,114,54,71,46,238,213,213,6,56,69,162,34,121,253,114,63,253,234,98,88,244,92,250,101,90,145,93,85,98,192,12,152,193,244,178,164,160,134,153,194,81,43,127,131,5,219,80,237,124,69,65,74,220,209,77,21,11,84,57,237,101,138,210,50,169,199,157,149,167,224,50,130,174,4,165,55,201,176,67,16,45,31,104,214,154,162,123,182,26,170,243,222,95,211,32,3,245,213,113,212,236,191,209,156,91,149,187,246,250,241,58,142,22,105,237,27,104,27,172,62,149,116,169,11,12,179,5,104,
198,218,212,214,250,48,66,80,106,220,175,12,8,103,234,117,156,236,212,207,57,99,87,197,55,82,127,25,78,23,48,54,203,38,149,41,181,43,55,156,28,27,148,78,179,250,14,185,1,46,222,200,58,19,184,192,140,78,97,182,19,103,199,86,45,71,8,179,113,187,251,169,141,14,189,178,119,63,148,5,206,36,17,254,168,32,63,70,236,32,32,132,114,31,71,34,115,33,13,71,223,92,230,110,112,16,249,176,28,41,97,205,154,252,214,46,53,124,51,179,161,74,40,104,55,83,62,97,38,132,220,147,170,13,157,228,225,148,233,38,223,66,190,118,88,108,9,230,222,149,42,80,32,31,54,175,233,42,145,138,224,209,41,106,153,54,255,24,82,46,149,24,6,195,221,225,168,83,107,94,86,249,151,178,44,199,99,58,182,153,244,44,182,46,52,25,227,37,77,59,155,139,76,173,167,251,140,59,65,176,72,46,149,109,69,135,161,30,234,21,58,99,103,106,44,239,75,60,188,224,225,254,126,154,159,246,221,240,220,253,164,99,116,171,32,162,132,60,125,154,60,119,55,54,82,185,
237,253,212,214,181,54,218,76,239,74,93,141,50,126,167,35,216,161,219,228,155,186,28,123,43,197,183,193,174,209,201,20,143,19,78,7,194,193,89,202,134,113,92,32,97,250,141,130,254,200,50,152,85,183,15,206,141,217,19,194,89,58,228,83,220,232,101,230,129,78,166,193,90,206,149,154,45,20,182,33,54,159,69,194,235,173,54,253,38,116,110,156,118,143,163,27,71,73,211,57,135,120,126,67,191,158,153,124,1,83,209,193,224,123,50,225,225,142,225,190,72,159,82,198,26,51,105,135,143,151,200,187,16,206,49,13,163,208,12,45,219,154,211,235,117,149,123,128,101,31,105,102,14,244,214,164,127,154,75,30,75,59,71,199,106,86,224,20,125,140,91,212,216,123,215,129,145,22,61,208,40,187,179,22,37,91,220,174,71,79,200,24,174,212,32,110,43,136,215,186,82,66,13,187,40,228,179,32,115,49,134,166,237,119,61,220,228,122,200,99,201,111,227,148,84,231,113,234,192,67,67,4,171,46,72,36,233,246,159,160,92,217,155,65,91,184,33,74,70,239,19,26,213,24,60,58,
182,110,135,211,38,100,191,36,199,223,220,91,45,155,241,126,242,234,18,69,182,14,80,225,134,88,33,41,161,174,83,60,188,201,111,38,32,234,46,162,22,218,244,37,38,36,23,23,191,158,193,34,13,60,74,193,35,86,18,73,249,24,162,213,68,159,224,39,118,73,65,214,163,234,137,224,136,114,178,105,115,33,79,146,22,110,92,217,78,93,177,198,173,200,62,199,28,97,76,25,231,23,254,125,220,172,200,188,98,14,80,146,132,84,102,179,88,238,198,81,51,125,193,204,158,71,59,97,154,15,109,61,236,35,142,143,65,80,66,166,33,109,22,167,17,125,230,130,159,241,55,247,162,69,114,67,239,229,108,147,238,20,34,35,110,113,209,202,187,207,243,227,163,235,225,60,132,103,138,107,134,251,244,253,149,206,153,30,7,116,10,183,83,159,44,162,91,248,42,87,236,192,45,32,104,40,12,178,1,113,206,199,49,54,242,144,7,109,187,71,92,40,3,175,222,76,131,89,204,203,118,15,202,130,164,193,52,22,179,61,128,178,144,220,59,180,105,251,86,74,219,229,33,220,93,23,
14,97,146,174,3,163,109,151,5,7,61,29,223,214,247,246,249,85,4,220,6,99,225,81,41,132,171,4,187,51,162,77,240,177,16,220,241,109,227,13,229,35,158,111,14,74,131,241,55,174,109,156,107,62,182,138,177,237,236,24,106,197,90,80,147,120,17,224,90,61,114,108,116,93,15,114,156,76,136,74,38,94,0,198,54,29,126,203,153,129,103,243,173,3,7,221,229,161,129,247,48,34,184,203,203,81,241,216,2,176,159,187,112,21,132,126,12,136,115,175,130,177,54,219,29,40,171,130,187,195,152,182,115,5,36,202,196,26,83,251,86,129,82,71,236,27,219,10,94,245,246,172,37,170,246,108,185,83,255,181,35,19,93,248,203,202,3,252,57,120,83,206,6,168,47,120,101,128,230,146,36,25,160,249,64,18,160,185,36,73,4,104,46,73,30,74,115,5,148,9,47,165,173,155,30,70,21,188,116,57,58,3,45,249,80,250,86,16,32,251,114,4,234,91,31,70,170,37,115,128,55,105,201,28,224,157,90,50,7,120,223,44,153,3,188,23,75,230,0,111,194,146,249,191,192,125,
240,72,94,149,3,232,100,15,138,191,23,227,160,120,184,107,204,51,227,93,72,67,30,209,116,224,176,167,246,82,89,160,192,224,57,61,204,24,219,135,42,35,82,98,255,68,140,171,26,165,101,141,168,218,17,227,232,213,250,68,112,113,112,144,212,158,58,75,27,62,27,102,60,163,222,81,5,5,106,85,4,138,144,88,154,209,41,25,73,133,157,121,207,178,183,69,106,233,110,46,233,180,184,213,117,158,153,135,23,212,78,97,115,165,238,140,115,139,190,59,90,108,118,124,247,212,11,206,206,217,1,119,105,8,245,62,68,97,27,114,185,86,164,28,175,176,67,120,7,44,92,155,2,181,102,185,71,37,218,98,209,216,132,4,240,28,172,62,225,154,187,188,96,110,117,115,170,235,64,235,243,27,200,117,225,10,99,93,20,80,147,43,227,210,60,232,55,104,129,231,160,148,247,228,22,146,57,239,64,173,217,226,56,208,122,191,11,201,187,83,2,104,47,77,55,5,216,238,210,116,81,96,188,203,111,79,33,144,203,197,175,216,53,222,5,94,46,2,107,60,40,0,14,240,88,18,
129,206,168,251,245,93,224,156,106,112,136,104,224,128,155,74,145,25,96,86,158,167,194,162,7,179,75,5,5,217,180,98,128,9,154,213,168,182,31,132,184,115,52,198,12,176,235,171,172,42,154,241,224,96,136,184,42,77,134,186,210,221,5,38,62,146,222,143,38,215,1,104,14,239,178,227,221,176,202,62,22,81,193,250,78,231,190,186,37,235,0,116,164,19,220,82,17,215,133,83,10,187,31,118,207,9,60,38,20,207,65,28,184,184,176,177,169,199,33,184,144,242,201,245,237,158,13,121,3,190,23,0,146,29,144,236,10,220,209,233,124,11,114,235,68,242,124,1,3,56,207,165,46,6,12,150,85,112,203,164,114,238,59,35,72,233,142,184,220,120,136,59,152,137,174,172,195,150,222,114,125,27,178,221,138,238,22,37,38,31,138,23,244,175,123,109,17,20,15,238,243,73,75,76,152,167,253,195,24,10,239,130,34,31,17,120,139,3,210,245,56,225,122,59,241,248,252,189,251,122,143,211,11,134,112,1,223,233,26,170,127,248,228,103,107,255,246,199,43,203,159,127,247,227,127,243,
253,135,193,159,252,248,71,255,240,244,87,171,63,249,248,233,47,87,223,123,231,253,151,47,214,94,175,60,190,252,225,123,223,123,246,226,245,123,223,123,156,251,135,215,175,158,189,248,229,114,242,205,232,59,63,2,40,252,236,207,222,249,225,15,126,248,131,63,254,147,63,249,206,202,47,94,190,124,254,228,221,159,125,119,229,115,122,79,222,249,226,250,3,29,96,195,187,63,127,88,252,249,35,155,39,239,190,247,135,63,251,238,159,253,219,149,103,31,255,242,201,247,126,135,32,192,125,73,15,88,251,47,159,62,125,254,236,245,111,254,226,147,79,190,180,229,183,52,31,165,250,249,27,57,63,167,250,225,179,231,171,63,125,250,241,234,242,220,87,55,61,108,89,253,53,64,225,189,255,245,221,247,254,224,189,63,248,206,18,146,63,254,241,195,21,214,30,5,92,249,217,191,249,254,91,249,0,145,30,40,190,157,251,156,250,202,103,207,94,127,180,242,225,203,87,31,63,125,253,118,113,73,247,7,43,63,249,112,57,88,121,182,182,178,164,255,189,149,215,31,173,190,221,7,204,189,
126,250,79,171,0,201,87,47,63,254,42,73,224,216,234,139,181,103,47,95,252,224,141,80,111,118,124,1,140,7,18,0,193,55,83,43,239,0,148,87,254,207,79,126,249,157,21,224,119,185,240,139,103,175,215,86,62,89,125,181,242,201,179,95,175,62,127,92,127,9,44,188,122,35,195,218,119,126,244,13,70,241,119,0,66,175,191,197,42,126,247,241,205,198,240,91,58,255,98,214,240,235,7,117,253,12,24,253,240,27,247,252,230,159,177,231,179,103,31,188,254,232,97,223,79,63,125,254,252,155,118,125,180,250,236,151,31,189,254,124,219,91,11,121,184,215,26,32,231,215,152,200,251,47,95,190,250,96,237,7,111,167,127,253,189,39,111,135,191,249,237,240,129,251,111,95,223,176,249,193,55,168,227,175,94,61,253,236,239,87,223,127,253,55,207,94,0,10,89,190,125,131,38,190,232,179,127,249,242,249,203,87,192,190,175,104,231,87,47,159,125,240,160,157,47,146,5,244,243,238,207,151,19,63,127,152,126,242,197,3,239,253,225,91,204,190,69,43,223,172,139,111,215,192,239,65,
254,155,150,159,3,50,255,31,95,67,224,183,150,245,112,255,159,63,194,240,185,101,189,255,240,246,157,111,197,245,239,94,46,81,92,198,186,103,255,215,151,3,225,191,22,168,239,254,252,129,235,207,87,30,126,62,23,247,147,151,107,111,98,23,32,10,16,185,128,231,231,107,107,255,127,96,179,156,249,255,12,146,229,153,159,175,44,159,159,203,248,234,95,241,210,128,95,47,69,90,91,121,186,242,10,224,249,244,197,47,129,88,15,56,244,114,242,115,191,125,178,242,193,234,135,0,171,15,86,126,241,155,149,213,103,15,209,244,255,133,167,3,111,43,223,91,198,233,7,125,175,60,121,179,186,212,247,114,105,229,233,139,15,158,60,168,251,237,185,55,243,192,137,37,30,159,31,120,245,134,210,67,6,90,66,240,198,171,222,30,251,45,42,75,146,143,119,127,187,246,120,245,223,141,57,43,143,64,60,255,225,143,127,244,247,192,129,151,31,63,106,247,157,55,218,253,50,136,128,114,191,176,237,201,59,111,113,252,251,213,215,159,190,122,241,128,228,195,242,35,175,111,10,111,255,105,
245,245,131,93,125,57,213,60,190,190,49,185,183,2,252,110,194,0,4,120,115,250,159,149,96,190,214,218,94,190,122,246,229,116,243,219,227,95,107,131,95,189,230,218,167,191,120,76,6,31,172,62,127,246,241,179,215,143,246,241,160,170,207,53,245,53,249,254,129,245,183,192,242,119,203,196,253,205,41,248,43,46,247,5,185,255,211,95,252,57,32,55,240,4,228,254,238,35,76,15,212,158,124,145,218,63,47,225,126,115,104,127,11,4,64,252,177,22,121,208,243,202,203,15,1,72,30,139,14,192,127,190,57,75,62,123,241,244,53,80,105,189,245,159,37,163,55,254,243,228,109,217,243,143,31,1,85,206,27,82,107,128,95,62,253,224,189,239,191,124,241,252,55,111,64,123,131,214,215,195,246,112,197,191,248,244,195,15,87,95,125,13,108,223,138,209,23,142,254,15,140,209,202,215,130,244,241,203,15,158,125,248,236,233,47,158,175,126,141,111,3,0,253,100,237,63,3,5,227,7,255,15,204,234,243,122,238,205,209,127,193,98,238,247,227,246,214,201,94,191,250,20,8,199,31,126,
61,42,15,209,237,115,96,86,158,190,90,70,238,181,103,31,172,126,181,140,255,61,160,124,187,209,124,59,40,111,16,120,60,253,6,135,199,151,255,161,208,120,20,233,155,49,249,173,47,125,147,169,252,227,215,229,251,215,171,31,127,242,28,16,228,201,187,255,225,119,204,227,249,211,181,181,135,123,252,187,149,127,124,242,167,239,254,75,27,214,35,221,183,147,175,191,17,169,79,30,50,237,155,75,191,126,232,158,254,121,38,242,53,112,124,201,72,254,21,225,248,231,155,212,191,16,14,223,106,28,43,255,245,191,254,209,15,129,63,127,246,71,43,63,91,251,33,208,148,126,119,229,111,31,27,202,79,95,188,255,26,232,86,215,158,60,249,239,255,253,11,232,61,198,227,191,254,53,240,119,245,253,79,95,47,131,210,123,239,252,206,55,132,175,235,203,87,190,124,230,1,136,111,236,223,191,18,97,63,121,245,242,151,175,158,126,12,140,129,70,251,179,103,207,159,175,188,252,4,200,188,64,70,6,138,183,167,159,62,127,253,216,136,3,205,246,218,99,229,244,121,183,253,59,237,251,
146,236,15,31,239,1,252,124,255,191,253,236,127,89,249,235,95,63,5,180,186,250,163,39,111,38,129,169,239,255,183,47,75,251,206,123,127,240,209,235,143,159,191,247,7,64,145,241,253,63,5,90,255,255,248,236,213,234,135,47,127,253,131,213,95,175,190,247,7,79,190,57,221,255,213,171,103,191,90,253,155,103,107,175,191,80,112,253,249,171,87,79,127,243,243,149,135,159,39,255,225,171,48,252,233,27,188,62,63,251,53,85,216,11,32,4,0,199,31,239,250,0,208,211,215,31,1,80,189,92,121,10,96,243,193,242,228,218,247,150,225,102,245,213,139,167,207,151,69,230,18,144,229,24,152,253,96,245,197,107,32,159,0,21,13,144,146,150,135,215,126,179,6,216,246,183,84,45,239,127,246,193,23,46,240,245,234,5,246,124,189,160,191,88,123,249,252,211,215,143,218,89,121,241,244,227,85,32,233,127,242,106,117,109,41,197,139,95,62,38,208,79,95,189,2,94,151,106,126,127,117,13,80,225,203,87,255,180,92,251,224,217,178,110,127,249,234,91,138,131,191,252,8,216,244,54,
156,125,254,85,235,155,99,251,195,254,39,239,126,67,88,250,166,207,78,47,159,127,176,250,219,42,241,31,190,96,150,75,121,223,251,159,191,70,228,165,50,222,126,4,122,60,254,198,252,158,255,241,191,255,247,95,117,226,181,79,223,95,146,250,240,211,231,223,162,135,191,90,93,251,167,215,47,63,249,223,159,190,0,252,250,213,79,87,63,251,189,90,249,202,137,223,234,232,207,129,186,226,213,178,120,89,218,63,160,159,95,173,190,122,112,24,160,142,249,202,193,119,0,4,159,174,1,22,3,172,3,139,127,187,246,147,23,31,190,124,231,59,223,36,234,79,255,246,167,239,189,251,247,127,253,215,63,253,199,191,255,243,159,254,227,123,239,254,231,7,25,191,187,242,149,249,39,95,127,224,157,95,189,185,214,151,143,0,97,99,9,232,175,62,87,197,79,94,3,214,244,136,228,27,176,127,245,100,9,231,67,56,120,19,194,86,62,122,186,182,242,139,85,32,94,188,15,120,199,23,204,126,105,139,175,63,90,150,160,15,249,245,217,235,135,157,47,94,190,165,9,108,253,205,234,235,
223,81,219,79,30,190,243,125,186,182,10,40,234,193,221,150,61,49,80,247,125,206,11,152,251,197,234,91,70,175,63,123,246,254,67,199,9,212,111,64,12,94,154,248,218,179,215,159,62,125,8,172,223,91,126,180,3,252,242,49,254,60,50,249,159,30,184,60,251,163,63,249,225,143,255,246,135,203,50,240,11,183,88,210,92,91,249,203,215,175,158,191,247,163,31,253,221,163,229,253,245,175,0,154,107,239,124,231,199,203,15,147,223,122,231,207,62,2,198,79,87,126,241,233,235,215,95,92,93,58,34,160,215,229,135,76,224,94,111,86,223,7,220,246,23,171,111,215,86,158,254,242,41,112,133,181,151,191,203,224,205,166,47,222,244,7,191,255,18,0,147,55,39,128,216,253,151,31,61,123,254,193,223,188,92,123,253,31,95,190,255,41,112,139,183,90,88,198,246,101,15,246,98,245,51,32,194,1,237,230,103,0,226,128,81,127,111,229,249,210,243,214,158,254,230,123,43,0,0,31,127,242,250,111,255,55,192,8,31,171,229,207,158,126,153,224,99,162,248,146,140,63,122,84,253,42,
224,243,75,107,94,5,214,223,127,10,232,243,11,4,87,62,6,218,186,181,55,25,101,245,249,7,75,157,62,127,249,114,109,245,205,215,94,128,244,219,76,242,228,255,6,26,155,56,227,
120,156,236,188,249,87,98,89,150,40,252,175,184,170,95,215,151,217,29,21,29,99,142,253,222,170,234,26,186,107,189,234,174,94,149,217,235,251,33,59,170,194,140,32,51,237,138,8,163,213,168,204,236,126,221,139,81,230,73,16,16,69,64,38,113,4,69,65,64,153,65,112,0,103,68,101,82,25,28,24,68,145,153,239,94,112,140,208,200,140,172,236,225,91,235,197,138,37,151,123,247,222,103,79,103,159,189,247,57,151,79,238,212,252,143,255,113,235,198,173,63,185,245,13,255,62,248,25,228,179,218,23,79,154,30,124,82,119,239,222,123,31,214,222,185,255,225,239,255,247,175,223,255,16,196,191,13,224,223,125,247,246,221,247,238,223,189,125,239,206,59,192,159,219,119,111,223,185,127,231,238,189,219,239,221,121,255,222,123,119,239,190,119,235,131,71,79,106,27,27,31,124,242,228,206,123,239,85,144,238,0,72,119,222,189,127,231,246,187,247,222,187,247,222,237,187,239,190,119,7,192,189,115,235,214,157,91,239,222,185,127,251,222,221,247,238,220,255,224,49,164,241,209,131,79,110,
1,224,119,1,240,247,223,185,251,254,173,219,183,110,189,123,251,246,173,187,119,222,189,117,247,254,189,219,183,239,222,1,72,220,121,247,206,237,91,247,63,128,60,123,252,224,147,191,121,231,67,16,225,30,40,212,253,119,0,214,223,1,168,221,187,119,11,160,14,162,221,187,123,251,238,173,59,119,239,223,126,255,254,59,31,124,10,249,188,238,217,85,34,221,255,70,145,222,189,245,65,93,19,228,233,137,68,181,247,62,252,179,31,223,255,240,54,128,250,206,141,119,254,228,93,96,216,123,247,129,193,222,7,37,186,11,160,221,185,243,206,253,247,111,223,191,7,176,116,239,214,157,15,26,32,255,252,162,174,1,242,20,242,172,233,132,66,221,237,219,119,110,127,248,233,237,119,63,4,88,248,247,127,255,247,155,183,239,221,170,106,234,93,128,151,219,183,0,190,239,220,6,238,1,114,188,123,251,254,251,183,222,191,255,222,237,247,110,221,125,247,222,157,251,239,2,162,63,175,109,168,125,122,34,201,167,247,238,124,120,34,199,123,55,222,251,147,119,110,191,3,104,244,214,123,0,
255,247,223,7,8,220,2,132,0,62,1,69,222,7,254,223,125,239,131,166,19,100,16,15,68,122,255,198,251,127,2,40,233,238,253,91,239,190,127,235,221,123,239,222,191,7,72,114,231,246,59,183,1,69,222,2,229,7,204,240,193,179,250,134,167,181,79,30,124,242,175,191,251,183,63,253,249,223,253,232,31,62,170,249,164,230,95,255,245,54,232,43,63,126,11,48,203,205,123,119,110,222,122,187,230,147,198,91,31,214,124,242,103,63,126,247,195,123,53,191,120,241,236,81,83,93,253,179,198,123,255,112,179,230,55,144,207,32,13,144,103,143,32,15,30,252,219,191,253,240,1,8,247,103,63,190,11,64,85,175,107,126,85,215,216,84,83,255,89,205,103,167,72,53,117,207,106,158,215,62,250,125,237,231,144,155,39,48,192,199,217,152,183,79,135,170,249,205,139,103,207,234,158,125,94,243,89,221,19,72,99,77,237,179,199,53,143,234,159,62,5,62,27,79,135,186,247,225,159,254,168,50,206,253,15,63,248,85,45,48,192,23,191,0,96,31,190,245,8,24,166,169,230,209,23,181,
13,15,255,236,225,219,31,0,64,159,252,248,173,91,55,111,221,4,52,247,118,205,167,245,245,79,30,252,14,24,224,28,229,193,91,23,1,42,232,0,196,197,91,0,173,7,191,123,248,103,128,6,238,86,24,122,240,54,56,238,157,15,107,126,253,28,2,200,212,244,5,164,114,187,230,147,63,253,209,41,72,205,131,47,235,154,190,168,60,170,125,12,121,244,162,182,9,242,184,230,121,67,253,231,128,145,106,30,67,62,171,123,6,124,7,148,1,2,252,250,163,154,79,191,6,111,130,115,243,130,90,128,143,138,87,213,124,242,23,53,63,255,170,246,233,243,39,144,15,30,188,116,255,92,140,183,30,254,224,209,7,15,255,241,225,63,254,237,215,53,141,207,27,32,181,143,27,191,128,64,154,110,54,125,213,244,240,7,111,223,172,249,101,83,205,151,117,79,158,212,212,3,60,159,14,118,198,209,91,79,234,126,15,169,249,28,242,184,14,176,87,67,205,179,250,38,200,243,218,199,111,215,84,132,120,92,255,232,5,232,228,53,15,127,112,21,237,155,21,158,238,158,178,124,141,65,
65,22,107,254,6,48,224,19,192,172,231,54,60,181,32,248,248,167,181,77,47,153,239,198,183,52,230,9,246,119,176,228,141,154,55,65,169,125,14,40,239,241,47,46,186,192,79,42,183,0,23,109,170,216,18,184,6,29,254,130,39,60,168,220,7,40,55,1,42,108,172,204,134,11,190,114,129,226,205,203,88,21,99,125,10,169,121,90,255,184,238,179,58,192,91,192,73,240,10,22,232,103,0,28,16,133,106,1,111,2,125,161,246,25,96,198,155,23,221,228,55,144,166,23,13,160,159,54,188,128,128,62,247,168,182,17,2,242,209,248,226,209,35,72,99,227,205,11,230,187,56,169,64,242,31,53,53,84,5,252,35,12,115,70,227,63,220,60,141,77,13,111,106,151,38,200,87,77,167,119,65,244,55,86,220,69,141,253,228,204,44,127,87,251,244,44,20,1,242,3,46,255,240,135,47,41,237,42,21,254,238,183,85,224,223,158,32,85,116,120,153,234,213,74,124,5,241,34,208,195,31,130,116,0,1,159,215,54,125,113,251,13,117,10,226,220,249,14,56,119,207,44,241,43,48,180,
92,22,226,45,192,69,94,52,213,252,83,125,93,37,200,55,125,209,0,129,84,176,26,111,214,92,227,141,127,13,105,250,7,128,70,195,47,234,159,60,134,52,92,25,230,175,212,222,101,188,55,116,193,10,78,69,235,167,194,156,185,4,224,59,207,128,7,160,59,84,226,127,5,180,166,254,15,192,159,83,39,59,199,190,110,138,125,147,68,87,77,169,239,77,154,171,189,188,34,78,3,112,1,76,157,111,146,10,92,83,30,215,3,235,51,176,94,0,99,65,30,253,30,196,127,21,176,6,242,21,144,8,188,54,208,252,6,82,251,228,226,164,249,102,195,94,196,122,51,69,128,142,118,165,65,129,133,237,201,153,85,79,196,168,0,223,124,235,49,144,232,61,106,170,111,248,26,92,30,193,240,113,178,54,86,208,234,62,255,162,169,230,9,164,169,9,80,19,24,35,26,65,160,135,63,120,248,131,11,234,168,210,57,211,86,69,35,215,41,4,240,217,191,3,226,210,149,142,241,173,195,198,37,34,223,197,83,222,112,210,3,165,193,233,96,167,186,253,41,128,82,7,220,0,231,248,
37,175,168,121,80,11,186,23,144,178,130,105,197,169,151,157,233,234,2,169,27,53,64,70,210,112,193,70,39,192,47,158,61,126,217,39,107,30,52,125,1,68,123,208,113,159,52,214,159,18,191,146,234,205,19,6,127,1,216,9,114,146,89,93,86,24,144,77,253,197,23,245,128,63,254,224,70,205,201,229,95,188,104,132,52,252,197,105,50,212,8,36,85,103,140,93,132,0,18,162,107,204,250,83,192,191,154,32,85,250,63,131,64,158,127,235,41,255,50,226,155,89,19,112,221,7,111,131,233,251,59,53,63,251,249,223,255,230,231,63,253,201,199,63,255,217,131,83,19,85,72,55,158,170,240,68,85,32,202,141,154,71,224,51,208,118,117,64,238,210,240,20,72,14,1,208,19,200,70,208,181,159,65,192,101,176,182,225,235,75,171,230,71,47,128,0,213,8,121,12,164,44,64,90,251,211,122,32,152,128,243,180,238,95,32,127,15,204,129,183,222,126,77,20,248,105,253,83,208,108,111,150,108,0,220,157,39,129,85,2,111,30,15,190,219,178,120,238,232,149,97,27,79,202,149,11,
83,254,246,131,139,121,91,21,171,186,198,1,104,191,60,115,237,15,170,119,234,110,223,191,245,225,175,129,132,249,225,143,238,156,135,98,128,50,152,168,127,250,4,242,180,177,146,190,131,54,1,60,23,204,195,43,53,82,67,253,211,179,34,164,241,230,43,164,110,131,164,78,10,41,128,20,144,78,86,170,182,166,151,33,95,130,3,170,219,218,39,215,199,236,103,143,171,193,230,151,207,174,168,187,110,92,74,125,110,0,38,122,231,222,89,176,170,124,251,109,77,229,227,196,114,151,137,125,111,137,226,85,129,17,192,0,147,62,16,227,85,86,64,27,213,55,222,2,104,255,79,96,192,187,53,183,206,76,252,17,164,182,225,209,23,96,22,120,41,135,252,12,176,67,99,211,197,8,87,33,94,181,201,167,95,3,243,5,160,87,7,214,190,103,62,0,210,191,194,5,106,190,23,23,184,200,220,53,158,112,137,207,186,234,114,244,89,61,16,80,95,22,238,101,252,159,60,171,42,170,230,15,181,79,42,9,241,227,186,71,213,0,1,142,92,17,246,203,10,183,47,143,80,161,254,154,
197,238,103,167,139,235,175,32,207,62,111,250,226,154,28,224,196,86,64,254,243,240,131,15,206,157,231,85,252,55,14,143,85,228,107,243,188,70,32,116,129,186,1,37,108,60,77,248,26,95,60,5,47,107,129,226,171,82,207,129,64,141,151,151,165,203,148,95,35,255,119,20,251,187,72,11,242,10,168,235,245,178,94,46,148,78,193,47,6,249,51,159,248,229,103,224,2,93,77,22,1,216,75,203,117,29,80,238,130,244,190,17,177,178,162,188,178,210,127,87,181,191,194,243,221,83,109,95,84,251,153,207,252,180,254,249,215,223,177,186,189,68,227,205,23,229,55,91,113,158,65,190,252,251,39,181,143,32,23,22,157,231,95,95,177,110,3,42,123,244,228,69,37,42,156,106,169,218,64,59,93,184,155,234,79,193,207,72,126,31,237,130,143,32,77,192,50,255,248,215,207,158,188,162,78,80,97,175,81,227,5,204,239,144,200,223,184,146,40,240,180,225,148,230,121,8,111,186,180,54,215,60,120,171,226,67,96,70,95,209,205,219,53,64,90,10,162,213,212,3,120,224,253,47,27,234,
192,16,14,100,63,117,77,96,7,239,49,4,44,99,43,193,183,218,187,171,134,194,250,207,78,200,158,15,122,73,165,191,124,6,84,193,207,94,124,85,65,169,80,107,108,172,180,67,193,184,222,8,105,170,44,35,96,242,120,163,230,243,134,250,23,207,43,246,170,7,67,255,233,114,94,243,163,255,243,31,100,151,139,127,255,211,109,4,202,124,253,211,138,46,174,127,92,85,208,181,230,125,112,250,229,59,216,25,176,199,41,242,41,139,213,175,85,243,60,184,144,211,157,112,113,218,183,125,67,59,157,133,35,8,80,63,94,72,241,255,223,186,39,143,31,213,54,60,110,252,214,69,194,181,20,190,67,181,80,213,40,56,210,159,254,233,9,225,11,193,164,26,109,31,156,130,3,87,0,212,73,32,170,148,96,143,128,116,24,208,235,73,223,243,113,53,253,1,52,241,229,41,75,39,49,170,218,2,63,35,116,243,193,119,14,67,231,206,14,102,105,213,132,244,52,249,124,249,243,39,13,13,181,95,63,252,203,147,175,255,235,225,15,207,150,218,202,147,223,214,84,62,30,252,229,171,
217,227,255,170,206,132,211,33,0,197,94,147,96,158,68,247,107,158,130,58,249,197,73,210,250,141,25,234,55,243,244,240,135,21,20,72,67,67,125,3,184,225,242,202,186,94,251,172,138,14,106,175,138,213,88,233,71,215,158,118,223,78,182,47,192,206,71,99,181,173,241,217,11,192,218,149,24,121,218,223,186,96,249,43,214,156,139,102,175,16,56,183,251,91,149,239,103,166,127,251,20,239,76,11,149,96,119,66,160,194,20,96,109,176,109,240,74,127,182,162,148,211,120,120,114,239,92,234,83,236,106,242,80,185,255,154,152,248,141,110,242,223,212,39,192,194,4,236,44,253,255,203,198,213,128,249,102,54,126,217,108,183,62,252,224,87,245,181,21,114,15,127,247,81,237,103,231,166,123,77,19,236,50,198,245,198,249,236,180,187,126,182,152,128,93,64,96,149,56,37,240,214,133,228,178,10,88,233,96,3,41,235,151,245,13,191,175,236,107,254,61,80,232,125,85,89,201,79,114,174,23,77,245,79,129,250,232,17,16,57,191,174,249,28,242,12,210,80,217,5,252,244,235,147,93,191,
171,182,250,254,225,225,159,63,252,243,243,81,223,190,176,117,250,188,161,14,160,13,100,111,79,234,171,69,223,153,81,129,170,160,30,200,163,171,18,1,41,4,164,186,231,241,164,82,31,92,180,46,136,253,184,238,41,228,25,152,125,84,238,86,113,170,166,169,236,36,157,34,131,224,55,107,62,254,2,200,208,79,106,68,32,213,169,171,172,140,224,134,229,185,56,127,168,107,104,122,81,123,186,54,84,11,192,179,241,78,88,168,166,245,23,101,7,137,222,170,121,235,179,243,6,220,85,238,247,23,64,205,251,8,212,109,37,123,186,212,181,190,108,89,64,81,255,244,2,88,37,47,114,127,82,56,92,49,246,139,103,77,117,79,206,225,32,103,197,233,89,157,112,177,41,245,113,253,199,13,181,141,95,252,85,221,179,111,90,139,255,80,95,247,248,172,21,117,142,246,71,116,167,171,107,111,227,165,45,195,106,39,25,144,166,241,36,21,5,156,16,176,43,40,78,101,196,26,96,200,235,2,223,41,75,64,245,248,83,160,40,111,122,248,214,245,93,153,151,97,31,188,117,229,38,200,
139,167,159,86,155,183,224,73,138,198,154,183,206,11,142,211,250,183,14,2,68,132,39,245,143,42,238,114,178,231,253,50,167,87,84,104,167,227,255,244,9,16,93,207,24,189,74,221,151,32,79,216,188,5,178,249,180,254,15,32,47,79,170,198,254,142,12,154,36,223,102,127,251,100,34,157,77,215,87,183,184,63,110,168,123,250,202,158,224,107,98,23,8,255,199,236,246,53,94,222,129,3,201,253,85,61,216,128,61,169,180,171,202,121,2,249,172,169,162,140,234,46,70,227,115,160,30,108,188,208,9,2,50,219,154,143,170,55,193,98,5,116,85,0,9,32,120,163,230,225,255,3,252,7,63,30,254,99,211,233,197,51,240,226,230,205,107,253,175,254,247,144,103,64,201,126,221,222,232,249,119,192,15,191,65,61,39,164,190,165,138,78,211,36,112,147,247,219,54,11,79,80,154,192,145,94,66,170,52,157,79,158,63,175,63,87,53,216,202,60,153,24,224,170,86,65,189,168,77,96,244,154,202,129,165,103,103,109,187,243,190,224,249,17,128,234,144,213,246,200,197,16,125,158,227,84,
9,63,134,0,161,236,179,58,112,223,9,52,204,213,117,252,121,152,175,140,7,248,59,48,62,16,177,47,12,124,26,64,64,42,53,181,159,53,85,66,48,216,18,172,142,3,86,167,103,49,243,100,43,253,2,89,112,43,160,254,21,89,207,101,168,246,255,46,141,7,220,125,241,252,113,101,194,157,12,93,209,215,133,241,207,226,118,117,144,235,60,234,55,144,63,128,187,13,160,222,191,157,83,93,187,127,112,129,210,31,55,237,190,165,123,93,137,221,84,95,25,255,10,103,171,230,41,128,1,175,104,78,131,56,151,230,236,69,235,156,153,163,66,249,130,247,93,104,247,130,126,241,0,248,222,80,213,1,96,112,96,249,61,77,181,63,170,123,90,247,164,182,146,122,128,36,78,54,239,27,43,57,239,165,230,243,43,158,113,237,238,1,120,238,172,233,87,245,128,85,222,122,82,255,250,20,238,28,246,178,85,64,188,19,173,212,94,217,202,4,1,78,151,167,211,115,51,53,15,0,115,0,34,86,3,253,133,172,233,250,74,1,204,97,27,63,174,63,113,162,183,30,215,191,248,20,
200,58,46,246,75,174,100,251,37,196,203,188,87,137,156,58,76,21,242,250,62,199,99,200,163,186,167,181,79,26,79,12,127,14,243,25,112,243,98,63,176,34,89,165,22,168,125,10,174,216,23,26,185,167,131,212,92,144,25,204,229,0,213,130,186,0,50,221,191,249,155,15,254,246,111,63,248,232,163,243,70,198,47,207,176,79,57,0,124,164,233,180,118,111,60,191,11,56,206,9,253,115,220,74,111,183,254,121,101,247,163,146,119,86,199,4,244,81,133,188,118,31,240,37,184,151,178,252,43,149,248,50,237,235,243,252,139,39,132,206,245,245,210,76,1,128,106,30,92,169,155,170,246,206,34,211,185,150,79,196,191,249,58,249,47,59,196,181,242,255,205,223,126,116,238,109,96,192,170,68,173,27,223,214,239,46,160,95,246,185,243,32,242,69,253,139,151,215,192,243,135,79,235,94,94,234,222,204,89,95,60,3,219,254,15,94,235,169,103,69,235,169,226,47,84,170,39,54,56,229,177,250,237,41,216,38,186,208,115,59,225,226,26,43,93,110,189,158,57,241,9,103,117,39,45,37,
48,68,84,111,189,5,14,214,120,3,28,5,248,123,66,251,237,179,3,120,207,107,27,154,78,195,26,88,158,190,214,200,39,142,8,88,225,173,183,47,214,119,87,121,56,0,116,222,126,168,230,59,167,31,39,214,254,225,107,146,222,11,84,94,211,116,120,1,20,105,175,73,93,174,115,133,147,199,215,59,195,105,54,117,226,14,167,150,253,101,37,69,185,122,90,85,120,121,205,196,2,107,183,55,177,254,131,215,25,226,194,52,120,105,166,157,90,225,175,192,234,240,124,166,189,168,238,81,127,227,252,186,132,86,81,252,139,147,202,233,197,197,93,228,74,237,121,163,230,193,133,231,47,79,146,111,23,184,171,69,236,131,74,224,105,252,162,190,225,52,157,185,249,178,103,87,114,42,208,179,111,128,158,250,117,213,125,193,131,162,192,202,93,57,221,11,104,241,246,157,187,55,239,213,252,239,79,175,15,189,64,213,90,119,237,41,44,240,209,111,107,30,126,240,1,120,113,234,132,85,140,55,171,113,27,95,106,49,87,10,148,7,223,154,194,117,195,2,129,251,197,163,106,174,85,101,
181,186,105,90,1,188,50,219,122,57,209,250,22,124,223,168,36,63,213,37,0,116,238,106,13,249,228,107,192,60,224,56,215,230,17,32,199,63,3,242,221,107,84,11,62,170,168,22,188,56,87,109,229,219,127,190,106,95,29,246,26,213,86,0,255,19,84,11,142,243,250,100,242,103,149,192,244,147,199,96,27,232,60,75,59,249,252,198,244,242,34,246,107,82,181,151,133,186,244,176,1,60,121,253,202,26,119,57,1,125,252,224,66,214,93,65,184,152,145,94,234,226,53,214,87,75,62,32,227,250,162,182,241,194,65,195,243,142,203,99,160,144,107,186,92,244,85,26,118,167,77,8,32,82,54,128,53,62,64,23,8,29,95,158,96,86,242,181,207,27,106,159,127,81,83,251,85,93,227,249,94,99,13,228,73,229,101,150,198,234,192,39,175,183,156,97,131,28,0,161,184,238,233,139,167,39,156,252,243,139,90,160,42,108,250,250,156,151,106,45,80,123,162,152,235,107,54,176,247,240,147,71,143,42,231,232,190,69,27,247,18,194,183,203,238,78,245,127,49,167,59,127,37,163,66,9,
208,56,232,130,181,143,154,64,165,52,190,248,180,17,16,230,5,120,251,12,240,105,61,48,85,129,32,218,80,255,21,144,234,86,23,173,71,117,117,23,240,94,78,54,64,172,179,10,251,228,76,104,165,216,125,14,105,0,183,176,110,84,11,48,112,121,252,18,168,178,78,54,63,32,39,139,218,5,140,39,245,95,158,98,84,15,62,156,179,247,89,93,67,227,217,129,211,211,52,229,108,132,151,73,158,2,156,17,188,196,242,79,158,157,107,227,236,8,235,51,16,254,21,133,212,63,171,236,161,54,214,63,133,92,167,128,11,7,42,107,30,254,192,132,106,248,226,69,99,141,137,5,176,11,16,49,81,1,206,76,234,154,71,13,166,110,128,196,167,13,38,205,19,147,20,2,30,147,109,172,185,88,151,1,168,63,169,173,160,254,26,82,69,253,59,0,243,5,120,32,177,130,247,226,9,4,192,186,166,101,251,203,198,191,7,221,255,69,45,56,3,30,190,245,101,37,208,94,191,109,122,9,188,226,90,21,140,223,214,124,89,13,79,213,221,153,87,11,204,147,195,210,167,27,29,149,
188,178,182,230,249,57,173,115,21,93,223,226,252,13,228,57,120,254,226,27,55,161,174,156,18,21,212,215,79,134,235,55,147,62,59,233,50,92,243,184,225,132,250,75,7,197,43,55,27,95,238,103,85,28,229,210,33,223,74,163,161,226,51,167,161,238,132,222,233,89,57,176,239,95,105,203,214,61,61,63,47,89,69,59,129,168,102,46,215,238,224,189,162,185,138,153,111,92,48,246,31,165,181,87,86,169,75,74,187,250,233,37,157,221,185,94,93,149,30,215,55,107,170,2,246,26,61,85,91,101,175,106,233,250,14,245,115,160,94,7,55,106,170,231,128,174,122,143,238,175,33,77,31,67,158,62,63,61,120,254,13,199,203,207,65,207,183,6,254,26,210,84,93,171,78,223,48,107,2,128,78,182,118,78,54,117,192,253,139,203,83,226,90,150,255,182,182,178,79,121,109,75,253,163,186,207,129,41,254,241,171,211,27,28,245,73,37,147,250,203,75,214,170,188,191,10,154,235,94,205,199,224,214,237,21,109,64,144,38,224,31,85,144,151,250,75,39,57,213,229,3,115,159,63,3,215,
191,234,41,134,218,15,78,14,86,159,31,186,252,243,139,135,46,107,31,220,4,131,93,245,76,232,31,32,47,193,222,186,4,89,217,34,123,153,218,143,110,191,2,243,12,242,121,45,72,236,186,169,242,19,32,174,214,126,14,1,245,116,227,143,80,213,153,66,106,78,8,190,162,164,27,53,151,110,124,122,101,87,174,182,138,124,161,194,169,189,116,68,250,211,107,15,74,94,150,227,63,89,148,151,110,92,177,32,92,35,219,141,115,193,46,138,249,232,219,139,249,95,45,233,75,55,30,127,23,209,111,156,203,125,81,11,143,175,213,194,243,250,47,239,252,81,51,251,92,114,144,212,117,19,186,230,55,181,117,141,231,145,181,182,210,31,189,115,243,98,203,187,241,159,27,78,90,57,87,179,121,247,251,99,243,238,27,177,121,247,53,76,221,251,254,152,186,247,70,76,221,187,142,169,167,231,219,231,31,159,111,205,188,116,249,125,196,241,211,66,179,250,236,213,218,180,210,212,186,178,164,190,14,227,212,153,223,12,229,211,55,71,185,58,170,128,237,175,211,99,166,127,68,92,249,86,
6,248,191,182,248,225,197,184,247,102,40,87,71,198,111,52,223,27,199,198,167,181,95,253,119,153,74,181,95,253,183,53,223,149,182,168,253,234,123,153,74,223,198,0,255,215,22,223,255,84,250,38,243,189,241,84,250,201,179,207,193,182,223,227,187,239,220,250,30,243,227,115,162,47,175,157,64,241,244,82,58,5,200,115,254,155,5,143,31,159,45,167,224,253,11,175,106,128,152,53,77,181,191,175,236,150,213,86,142,216,85,90,116,141,96,141,5,20,1,159,66,154,190,132,64,158,1,37,4,40,247,221,119,238,27,213,215,201,252,179,186,198,166,218,103,143,32,255,197,46,252,187,202,11,52,85,86,222,216,113,191,186,238,125,205,215,224,124,253,29,112,190,186,238,167,15,94,55,206,157,43,157,23,242,226,209,147,186,199,144,218,103,53,143,79,164,62,51,218,233,225,210,170,84,213,107,128,219,183,43,182,60,123,120,231,194,67,96,136,239,213,188,255,215,232,23,112,254,229,63,207,81,222,156,183,239,203,185,78,47,1,97,223,190,241,58,71,59,187,254,151,215,56,93,37,228,
253,151,5,148,171,15,133,84,120,250,111,235,100,223,99,100,169,5,5,253,143,9,38,191,126,252,184,122,8,229,250,6,58,0,114,221,65,147,139,107,219,53,141,115,0,164,210,58,175,127,124,237,11,194,63,255,3,228,217,55,49,1,194,124,15,92,64,0,50,215,118,156,193,67,140,175,225,229,236,24,225,41,220,155,240,115,145,143,6,144,192,249,185,200,202,190,78,133,179,179,157,191,6,240,213,90,200,147,207,64,9,170,47,209,190,142,241,143,235,127,83,251,248,108,75,244,117,199,168,42,144,175,217,254,172,56,218,117,188,87,189,16,60,68,248,24,242,121,3,4,114,113,75,7,16,165,161,246,113,93,237,179,107,94,219,250,184,254,103,144,207,191,37,139,0,228,183,99,241,229,115,176,175,240,121,194,210,101,62,79,152,191,192,231,21,125,233,191,6,119,79,193,23,59,174,106,78,95,252,145,132,166,95,62,251,69,195,197,223,130,2,207,62,255,238,225,95,126,92,121,239,236,198,85,55,191,115,96,252,221,111,127,3,121,212,244,240,119,191,173,169,126,62,248,203,11,
201,105,205,57,47,215,30,110,173,176,241,219,19,118,46,96,159,156,245,249,172,130,124,237,225,214,111,192,174,255,244,159,0,174,174,249,217,157,71,77,85,171,0,70,169,173,112,15,90,226,179,202,89,195,202,91,66,103,199,84,43,191,38,116,225,119,14,170,84,107,30,128,191,126,118,241,93,167,218,198,231,224,253,6,112,39,238,242,107,54,255,179,230,199,63,174,123,90,251,57,228,131,187,119,222,121,239,135,119,110,221,125,23,138,192,195,173,48,232,233,191,12,186,99,111,28,125,28,92,205,183,12,20,203,107,235,81,114,52,26,235,57,116,100,199,226,68,222,214,248,49,131,5,59,152,156,132,234,51,161,56,74,107,95,72,73,218,98,204,16,215,100,16,43,52,249,137,168,180,39,60,103,203,173,12,32,19,112,163,176,147,67,205,219,214,69,235,147,52,241,12,91,193,136,206,11,237,192,213,42,91,81,185,218,2,111,2,87,45,246,202,227,232,84,245,49,187,175,250,88,60,84,125,108,63,121,60,47,170,62,254,15,167,227,181,231,17,171,229,172,161,172,208,21,179,249,
82,217,157,29,168,60,143,167,53,67,92,131,158,44,142,23,82,179,222,160,190,130,87,210,167,245,228,177,125,44,38,58,79,20,218,243,190,77,29,55,100,208,210,153,185,168,109,70,162,44,25,82,227,227,107,43,2,223,248,161,203,105,245,150,35,171,222,220,118,111,101,216,125,180,50,157,130,102,162,214,193,227,108,74,162,204,104,160,145,12,3,233,156,88,33,151,199,18,243,219,186,252,241,188,163,194,230,210,81,103,46,84,94,212,148,214,54,214,180,71,59,78,110,255,174,164,152,158,82,150,167,162,54,174,150,21,157,223,7,200,165,55,243,114,154,169,16,134,6,185,185,201,54,29,150,206,69,4,69,171,54,10,72,128,16,213,141,250,134,121,165,133,18,191,68,192,132,185,7,115,21,49,139,82,183,144,7,114,226,157,241,12,167,7,137,24,14,179,115,107,117,133,55,51,6,62,86,164,201,135,48,227,184,117,87,52,162,75,35,52,133,204,152,151,155,91,90,144,100,108,176,133,228,161,193,155,219,20,125,91,125,47,129,55,137,51,177,150,145,150,202,13,167,147,189,78,
238,153,97,11,129,103,222,33,59,38,93,65,75,183,76,218,173,21,71,17,40,152,211,67,70,182,2,212,250,248,86,11,245,68,95,34,9,141,80,145,135,30,29,108,219,66,42,162,52,224,126,222,46,20,84,237,233,153,162,136,219,248,32,125,123,133,106,116,158,83,161,106,183,30,84,221,143,57,89,161,26,157,223,173,80,157,23,238,84,168,210,8,216,10,213,232,224,118,133,234,188,176,74,85,104,199,86,168,138,219,132,21,170,0,209,10,85,161,221,86,161,58,73,235,168,80,157,30,58,168,80,21,142,123,42,84,237,52,117,133,42,69,220,85,161,218,182,213,86,161,106,207,175,2,84,189,235,158,112,88,219,55,154,93,180,193,67,43,186,200,72,95,86,157,91,46,140,247,150,38,70,104,122,168,84,166,162,110,249,137,107,198,5,13,21,85,46,178,236,212,142,85,162,131,196,134,171,179,206,133,53,122,111,242,64,24,48,42,86,117,49,189,1,133,77,135,77,91,246,77,122,111,115,212,179,161,77,225,118,218,218,198,247,57,11,145,229,253,238,98,76,145,178,175,225,53,
59,92,15,102,122,47,133,10,200,153,251,242,109,37,34,211,50,62,161,226,30,110,246,83,151,247,146,75,18,68,198,19,40,108,243,60,163,58,38,199,139,37,55,175,34,120,115,248,157,3,97,175,66,211,190,170,176,165,87,200,65,35,58,137,66,23,35,211,177,76,97,56,166,146,5,226,222,163,104,47,211,79,62,140,44,77,248,226,81,214,113,132,161,205,170,45,131,133,101,89,7,105,37,140,35,111,47,34,101,113,204,78,235,210,56,67,237,63,138,44,106,6,122,134,48,59,107,228,116,187,11,137,104,239,54,12,119,35,71,217,67,200,85,211,114,152,102,214,177,21,130,230,81,153,177,224,91,42,138,245,36,46,166,83,100,203,18,15,157,62,236,178,103,77,223,215,171,28,224,169,153,197,30,158,105,72,43,17,90,226,244,24,214,239,200,112,11,254,245,102,221,198,202,176,45,132,14,115,100,40,52,98,154,79,221,141,236,13,171,181,114,78,219,58,105,250,120,95,223,222,193,89,195,151,13,101,220,54,194,237,209,206,21,76,84,89,167,48,172,220,144,110,56,61,33,219,
204,94,126,40,93,78,111,234,185,227,132,45,50,60,20,238,33,153,140,164,68,160,109,248,32,221,50,51,54,187,25,150,36,83,241,32,211,200,213,98,196,3,38,124,116,106,50,221,147,78,219,136,14,126,11,83,105,71,79,173,45,182,226,6,132,218,129,216,166,80,89,34,237,216,243,18,54,210,188,182,196,70,86,254,133,21,190,97,187,85,203,239,29,113,230,81,12,10,201,178,213,51,151,199,232,41,80,167,95,77,216,71,218,134,251,249,81,184,57,151,132,30,164,149,234,61,18,123,208,176,59,171,94,19,111,16,102,22,38,49,205,70,68,239,2,63,233,32,66,35,124,246,196,82,219,28,175,45,182,184,182,46,13,204,173,181,143,7,17,203,132,85,211,208,194,26,53,81,210,99,2,174,150,41,4,134,103,138,230,230,224,138,3,104,102,147,53,108,129,226,120,109,124,142,108,189,89,221,215,65,182,46,147,54,187,131,72,212,122,104,185,121,182,79,209,183,215,76,198,121,229,155,104,195,194,0,102,0,175,160,240,40,48,92,102,69,39,135,195,147,6,30,63,191,208,122,
216,65,245,111,236,116,15,243,169,200,233,110,137,255,16,67,90,53,10,19,106,217,92,96,11,219,41,219,234,82,100,8,130,72,82,208,42,97,12,138,157,98,132,182,208,37,94,70,16,6,84,86,36,149,63,89,166,101,90,14,2,171,241,117,157,213,119,192,37,148,97,138,68,0,202,45,102,150,119,88,24,217,120,59,103,164,143,74,245,47,140,97,6,113,92,227,26,199,173,155,45,236,169,90,66,64,212,101,104,70,54,237,241,236,176,222,140,132,193,109,170,48,20,105,57,144,8,153,221,115,184,131,97,58,6,223,185,138,212,155,160,46,202,236,162,215,130,37,97,83,46,18,177,43,16,28,61,202,134,219,39,212,51,62,31,44,50,191,210,173,71,70,250,57,58,211,124,105,76,76,139,204,196,35,142,131,185,169,176,17,165,112,43,114,75,4,139,96,222,64,136,141,82,20,33,162,51,110,134,45,82,118,109,216,68,139,159,162,200,45,23,213,40,242,74,38,27,138,18,4,24,49,126,192,26,61,222,84,68,23,96,48,254,80,80,26,226,97,92,131,25,13,99,182,88,220,
45,81,167,40,104,4,6,53,142,235,224,13,210,101,182,54,106,66,160,213,7,246,49,90,202,240,36,118,119,113,33,25,36,82,141,72,76,55,3,74,116,163,229,60,99,46,185,222,186,53,217,167,113,249,248,37,222,158,124,108,60,178,72,152,205,44,226,118,227,9,226,81,110,219,73,47,247,161,44,142,61,22,22,93,242,238,179,92,35,61,122,216,172,144,39,99,144,41,44,23,10,135,49,22,197,196,176,75,46,80,237,240,244,12,3,31,177,228,10,44,246,47,137,75,237,97,164,5,183,141,60,56,38,242,75,221,211,37,171,149,162,99,153,146,45,184,242,214,184,213,110,238,233,45,43,113,253,18,140,78,25,110,45,91,37,153,245,188,244,0,233,95,135,77,208,163,27,24,45,135,134,207,240,205,43,164,112,128,99,83,102,77,109,121,69,135,176,127,96,81,188,163,25,47,178,25,73,56,70,151,98,77,195,233,179,222,174,240,64,100,172,93,56,217,197,43,5,80,34,100,174,192,19,70,230,185,106,47,129,2,143,78,185,66,3,56,23,20,102,138,169,97,157,38,133,112,
48,134,76,51,7,98,67,43,221,123,17,98,143,137,229,31,63,162,31,79,122,116,27,66,129,196,235,208,155,118,144,187,205,209,52,195,163,39,236,39,120,28,107,95,32,57,67,193,168,19,80,243,28,60,173,181,102,24,153,94,104,103,210,130,39,176,198,247,231,231,249,178,148,99,61,35,208,192,121,70,101,92,62,134,235,91,160,32,48,99,184,246,124,23,18,62,20,236,208,53,79,66,167,40,26,171,187,195,62,179,178,51,37,238,87,68,29,30,12,211,200,27,30,134,245,186,93,150,102,218,6,19,26,140,30,242,70,201,171,226,201,204,98,40,50,217,177,183,145,130,30,247,148,197,41,87,223,28,43,58,54,19,155,59,234,231,194,18,180,113,231,22,159,194,194,57,187,161,60,30,134,28,75,204,71,68,70,5,114,81,33,227,64,71,70,55,219,141,130,246,172,98,58,18,196,168,5,171,52,12,215,88,100,148,80,139,246,34,185,117,111,73,52,26,236,162,208,157,56,19,130,95,58,242,146,145,54,99,31,203,6,7,102,23,197,20,97,172,96,120,137,117,104,0,62,131,
86,201,122,208,67,104,186,38,184,197,163,34,49,122,36,14,69,67,174,145,35,5,93,23,82,223,42,131,38,19,68,27,142,210,229,24,149,206,90,249,38,145,30,97,12,56,115,177,189,80,231,81,187,122,37,109,141,244,235,76,219,243,94,19,176,98,152,221,56,24,127,121,126,67,197,240,167,83,142,150,46,12,165,149,66,49,240,16,232,54,29,145,106,222,74,179,240,12,208,65,5,219,172,184,71,193,55,56,135,20,240,216,234,68,216,208,231,162,53,83,97,40,106,0,186,26,68,182,10,100,133,110,168,94,47,131,6,16,40,151,193,190,183,233,201,199,125,76,216,148,70,226,159,25,154,95,67,18,220,46,163,135,66,181,99,186,244,210,126,152,192,159,244,143,32,76,38,210,30,82,206,8,240,88,124,238,96,95,143,17,91,240,27,34,46,86,151,116,135,217,214,137,66,173,133,18,20,124,202,194,160,77,98,68,67,4,28,153,16,85,244,97,153,214,81,164,129,234,234,142,238,209,16,50,81,4,95,238,88,48,150,68,68,145,219,228,144,47,16,119,20,178,164,27,91,236,
134,163,199,20,126,22,41,26,21,209,135,23,69,29,212,49,140,215,212,151,216,197,96,80,220,248,86,97,25,233,29,88,221,136,96,11,94,186,183,144,105,103,247,15,8,253,208,213,132,16,195,243,111,81,145,205,122,22,157,135,231,81,18,45,189,48,189,140,56,161,163,231,210,52,149,110,233,144,35,232,145,46,89,246,113,209,97,235,113,159,66,6,213,208,97,147,1,28,54,17,102,106,198,117,232,13,216,98,231,64,172,115,182,117,123,222,173,52,198,139,156,150,100,218,33,110,75,230,150,173,6,17,154,52,210,62,136,19,51,167,89,91,60,20,220,194,136,10,20,59,88,138,19,42,136,80,201,49,217,86,16,207,24,231,195,114,52,113,159,222,174,156,217,202,122,194,218,254,225,206,153,208,170,211,137,128,199,198,69,107,9,163,103,34,204,181,248,116,164,165,157,4,51,68,99,237,226,250,92,49,15,98,119,145,50,204,74,113,236,251,202,144,82,94,140,216,179,251,38,125,155,28,135,133,162,41,65,106,143,192,239,133,98,19,71,78,218,154,223,36,31,67,236,175,230,103,
21,17,21,111,204,138,66,136,225,71,101,147,215,201,164,147,186,122,38,173,35,36,110,33,191,197,137,198,109,163,157,147,248,44,166,159,95,90,26,38,204,179,134,180,8,76,248,104,172,27,62,209,37,150,169,216,139,171,56,178,160,203,1,45,182,225,113,195,59,51,254,0,119,23,215,139,198,218,143,54,49,14,153,219,189,117,32,192,243,245,80,215,156,190,117,92,39,66,82,245,186,35,20,29,179,61,48,45,8,171,66,104,134,25,122,160,76,50,230,161,197,233,137,108,38,63,108,25,3,150,108,83,22,22,75,174,249,214,140,27,235,190,117,199,4,116,32,222,57,16,111,213,173,111,148,199,74,148,126,117,151,161,149,121,236,211,29,16,40,208,140,47,124,212,66,29,220,235,223,90,162,173,209,187,70,98,62,143,242,232,120,96,179,212,54,181,210,85,100,165,121,42,163,139,222,97,181,34,253,28,232,24,170,51,132,15,200,233,49,148,173,117,111,13,95,240,83,96,121,94,98,46,81,98,80,214,155,89,166,163,13,179,30,179,217,50,56,145,183,172,40,155,9,44,194,18,
203,16,21,99,220,142,105,155,125,215,190,99,51,32,14,161,3,29,104,185,38,22,197,108,147,16,97,168,141,61,189,71,19,140,98,169,84,105,207,178,112,134,74,66,154,187,252,8,152,42,108,10,81,77,43,244,32,21,131,135,227,178,60,186,94,8,87,196,138,90,226,96,4,54,218,186,111,25,183,233,219,113,116,223,172,108,207,38,57,78,248,176,219,219,161,96,114,116,132,220,158,101,81,5,100,71,203,225,32,52,56,167,55,242,187,112,186,189,126,140,56,77,235,154,132,183,15,243,212,52,29,89,229,86,224,187,14,252,173,109,83,211,137,137,105,254,214,177,118,181,68,19,4,246,81,3,153,32,52,136,154,198,88,100,101,19,218,18,212,40,248,250,41,63,108,22,6,195,235,151,24,190,117,88,190,156,35,206,231,50,57,147,186,152,105,110,86,11,202,118,95,156,169,131,78,96,3,68,122,174,152,205,29,111,175,109,180,174,196,1,165,142,23,54,138,36,248,148,210,167,27,217,40,100,115,71,137,37,207,54,18,105,46,123,104,84,66,102,102,151,13,11,139,72,3,227,
71,164,227,33,23,140,231,63,218,8,27,151,57,253,136,16,129,147,163,152,119,212,50,217,0,139,6,91,141,246,138,5,226,76,183,0,198,12,228,188,19,75,211,9,4,23,141,206,68,97,214,105,30,91,28,243,49,14,0,63,134,251,93,9,31,198,68,152,106,247,122,71,202,60,169,140,18,196,206,198,208,97,249,48,73,15,71,170,114,253,122,230,96,4,197,89,167,6,82,52,23,11,181,2,13,153,214,142,183,229,155,91,44,32,127,158,111,55,227,182,48,221,203,28,108,2,121,228,239,52,132,73,148,41,207,210,194,80,79,187,40,158,193,197,198,186,146,3,145,148,91,146,14,226,186,250,108,118,166,133,238,26,177,143,30,175,19,103,104,254,33,207,186,192,15,135,99,90,187,73,184,109,5,223,218,61,142,226,155,150,49,12,106,179,41,36,145,246,225,220,1,122,100,187,208,62,166,111,54,251,93,208,164,190,125,211,196,160,162,147,61,33,161,100,26,53,130,34,209,13,36,211,88,102,106,92,174,192,251,130,67,20,45,97,57,60,208,181,138,52,6,97,65,113,241,40,
159,78,97,142,75,121,39,62,159,40,175,236,41,237,166,97,165,161,156,51,77,112,139,249,53,101,156,236,155,40,103,125,165,181,149,184,174,152,247,237,43,129,15,102,4,163,108,241,53,247,114,241,233,88,97,95,83,200,239,243,52,62,65,12,11,71,115,96,54,68,88,45,182,82,128,28,142,205,114,196,57,64,236,72,123,196,109,227,201,29,43,137,173,85,72,58,17,174,254,224,6,195,203,154,27,20,251,164,186,140,98,143,33,71,176,5,230,101,212,28,82,22,116,91,8,221,209,85,226,97,63,63,67,156,196,113,91,130,232,229,133,66,7,155,197,141,100,213,148,246,67,60,43,23,217,241,164,143,250,243,221,252,158,54,65,255,8,197,97,128,134,55,1,205,251,115,137,237,252,132,124,66,143,138,55,79,173,243,44,235,118,85,88,56,101,51,204,15,39,14,210,4,241,80,48,207,58,12,186,133,211,94,137,125,68,96,110,89,234,153,209,167,224,166,217,112,54,35,221,22,134,224,86,37,10,65,156,221,218,40,25,167,169,70,24,17,99,133,41,241,93,152,37,2,19,88,
63,120,37,36,150,218,21,193,76,242,185,237,218,217,82,7,156,101,180,52,143,83,70,187,86,73,4,166,153,39,237,193,50,130,112,63,137,222,23,129,201,25,25,52,146,89,148,71,180,216,240,166,181,3,150,117,10,164,174,105,205,236,96,215,226,170,26,145,32,137,54,117,211,75,27,171,71,156,22,182,152,55,128,154,72,204,19,48,29,153,163,205,105,140,123,190,32,10,59,153,19,120,222,4,51,178,230,37,247,176,55,202,69,18,185,25,70,197,104,81,52,126,106,186,72,78,226,151,227,69,43,160,206,102,32,18,195,213,203,218,222,142,35,124,154,195,220,117,39,162,76,127,66,162,141,239,6,56,206,130,73,193,223,62,104,15,238,50,221,116,119,168,56,105,89,52,132,114,72,89,7,162,11,207,39,82,80,50,142,33,131,44,118,145,59,180,101,60,28,33,182,36,122,216,158,208,120,255,176,240,208,74,134,194,148,54,156,190,207,63,194,78,12,79,206,174,121,195,114,249,236,138,109,16,169,92,155,195,49,23,181,51,157,170,68,75,96,22,63,9,27,32,77,57,104,249,
146,213,204,142,201,182,211,56,43,212,137,60,96,58,6,86,76,168,110,10,3,199,146,238,225,162,45,48,254,12,141,184,111,153,177,225,240,83,135,109,52,204,84,15,143,130,135,19,51,242,76,98,155,148,117,24,45,157,84,28,71,220,57,179,99,239,232,42,102,121,226,40,17,138,31,30,101,173,242,2,105,114,68,223,26,69,113,161,198,190,180,148,40,86,97,120,199,35,248,169,56,191,183,5,97,205,216,14,8,122,1,22,149,199,204,14,198,135,87,142,87,229,65,212,74,155,12,3,69,76,170,108,243,254,16,214,42,75,182,202,249,147,201,113,94,178,116,44,68,195,205,129,89,236,145,4,78,75,196,149,100,223,96,76,215,227,93,47,194,208,232,48,1,166,21,101,10,29,43,227,227,131,72,97,49,174,48,217,49,43,50,20,197,171,101,36,59,61,104,130,107,56,136,153,160,117,150,81,72,245,180,33,88,34,143,83,167,123,24,114,185,119,111,72,109,29,222,149,141,162,149,131,26,25,211,100,25,235,200,12,31,182,5,230,166,230,84,229,113,12,31,105,78,83,251,135,
119,86,61,38,142,83,212,57,64,33,17,6,48,155,67,131,121,11,249,8,3,91,134,146,67,145,65,215,250,1,95,229,247,119,44,47,107,181,187,222,13,93,50,184,236,136,100,165,216,29,56,146,25,32,18,96,84,20,154,158,24,30,216,241,154,138,129,17,19,151,0,45,79,10,14,41,99,237,169,136,130,50,203,64,232,102,92,186,133,108,171,142,168,58,182,152,54,25,221,107,61,116,236,193,81,100,118,38,149,104,222,145,242,252,242,88,193,54,55,181,28,97,29,226,71,196,124,83,231,40,82,19,92,146,175,217,86,246,249,225,112,88,167,148,148,9,161,17,143,123,112,152,103,18,232,93,163,75,129,117,214,116,184,45,2,237,104,151,27,99,83,29,40,212,16,137,32,56,232,12,185,204,45,109,84,241,134,148,66,157,86,111,36,75,139,40,3,30,211,55,16,27,182,49,85,241,238,124,138,139,89,144,37,143,120,67,115,84,165,15,37,61,152,119,48,200,65,91,60,235,75,42,59,113,99,9,172,84,104,33,176,135,232,67,80,86,63,20,159,208,82,215,219,68,248,36,
113,94,164,43,57,119,227,20,133,114,216,206,193,148,71,71,102,243,173,109,89,61,20,147,70,249,189,200,190,114,209,218,186,222,186,131,32,176,140,24,56,122,193,35,235,66,145,55,87,141,7,80,209,177,83,230,103,16,118,243,238,14,68,50,5,243,41,200,66,140,192,224,224,194,113,24,177,35,39,207,236,43,251,178,165,35,124,70,182,127,152,41,247,167,214,151,17,157,120,100,6,57,207,231,96,236,29,172,137,45,170,57,182,79,152,153,105,95,48,140,245,134,56,40,222,65,79,167,91,56,78,234,28,147,146,160,193,1,149,224,80,133,159,237,12,143,117,133,245,36,158,2,165,223,146,97,80,123,54,85,145,161,33,246,134,183,91,5,125,142,62,247,166,46,149,215,227,85,59,113,87,184,149,172,21,64,225,46,154,163,135,205,34,25,71,198,83,48,61,85,157,82,71,9,187,11,254,173,99,235,146,202,140,115,16,122,214,50,212,99,51,209,50,34,130,175,234,231,160,154,156,34,191,222,107,89,134,117,97,243,41,53,102,80,234,201,132,228,236,200,226,176,116,193,207,90,
219,217,165,179,218,219,135,178,11,249,137,194,128,142,156,40,106,55,121,68,99,187,46,177,208,65,237,217,154,163,54,203,146,93,169,22,17,14,213,2,31,29,151,29,36,115,236,244,96,31,95,106,246,46,206,78,204,182,70,98,120,177,72,164,160,110,152,148,42,85,158,5,48,150,144,81,70,54,204,7,200,230,233,86,237,113,51,180,139,87,96,141,77,228,42,138,87,172,217,49,229,158,145,254,12,86,177,227,75,32,56,234,1,134,65,36,216,140,175,239,97,15,251,131,48,57,108,133,232,146,161,134,167,23,23,195,2,152,77,52,169,73,73,34,7,253,179,244,232,161,10,187,71,145,74,138,173,42,79,59,107,29,99,96,40,230,134,113,66,12,197,42,245,39,177,12,60,156,110,78,16,75,246,56,229,224,80,63,204,20,44,39,160,200,101,181,34,63,216,26,112,90,251,57,50,186,172,181,83,136,165,226,214,240,29,91,129,13,188,208,63,157,54,59,151,76,154,137,173,152,168,176,139,245,117,88,187,7,102,1,253,227,198,145,190,244,174,130,24,25,246,242,61,45,83,104,
12,62,97,33,14,134,142,131,254,49,174,180,224,10,209,35,225,145,65,87,32,51,76,129,147,60,195,36,71,91,112,212,200,55,33,151,196,92,216,82,159,24,201,84,77,111,81,214,89,22,79,96,74,236,118,101,178,25,148,115,123,4,41,111,239,117,194,91,145,20,47,111,214,51,134,223,234,230,243,13,38,227,70,251,170,39,41,60,30,111,11,82,20,227,196,48,165,123,2,186,191,49,71,224,89,252,251,91,188,174,178,151,221,223,170,139,167,225,226,92,108,33,40,233,133,90,22,134,29,84,179,217,142,70,172,217,214,188,41,229,36,20,77,213,172,7,103,177,128,147,98,58,224,209,222,88,121,167,133,228,23,104,209,96,147,195,158,223,140,211,8,153,240,106,190,203,203,93,76,118,184,143,16,112,53,147,74,27,223,101,5,29,80,26,34,62,188,57,104,223,195,46,236,168,142,121,152,73,24,12,21,147,170,198,103,19,59,88,143,72,103,9,235,103,140,67,109,92,165,177,89,159,69,192,205,188,158,57,154,120,113,142,182,185,185,26,242,172,245,38,35,50,81,174,228,207,
77,180,21,182,14,248,45,237,124,126,137,93,136,121,14,76,45,238,195,192,130,202,49,78,244,91,237,49,103,71,8,53,172,199,184,115,57,61,237,48,210,107,106,63,178,56,99,93,135,203,74,58,108,2,238,214,111,193,228,195,150,9,29,126,98,206,1,31,108,247,164,40,98,122,194,42,227,169,250,133,203,83,244,84,196,5,15,14,71,161,36,2,70,46,47,54,183,170,120,17,137,19,217,211,98,193,79,163,102,217,58,67,42,102,11,99,241,52,255,22,12,166,133,29,181,238,171,164,59,173,168,184,126,48,218,214,106,139,234,75,176,227,160,111,160,43,193,226,208,34,188,5,98,72,40,74,184,187,212,123,185,204,112,126,2,214,108,226,33,85,148,126,227,50,10,153,239,68,44,8,141,240,252,81,52,153,150,194,133,188,178,192,181,3,195,224,215,160,66,251,24,238,120,173,123,107,206,55,235,66,16,251,52,148,161,56,195,69,105,245,91,208,36,110,44,177,25,157,90,71,97,72,157,230,17,139,212,206,177,165,114,106,176,56,73,167,197,45,109,73,231,208,198,1,116,124,
68,184,40,239,198,25,67,216,22,210,208,172,172,180,133,182,18,226,22,61,66,7,67,27,136,212,210,112,73,141,165,12,231,135,52,34,73,116,215,238,104,109,219,10,24,164,146,196,152,223,218,108,88,240,8,76,33,79,66,39,93,28,103,35,81,122,36,111,147,215,182,18,101,77,76,162,169,98,19,102,246,208,51,60,149,130,53,115,196,106,221,112,108,222,207,222,117,99,41,91,17,67,38,51,50,4,223,237,131,35,49,126,220,6,67,53,221,235,5,74,68,166,210,159,32,170,20,110,148,218,223,70,155,208,170,97,44,20,175,39,141,179,208,240,130,73,12,75,110,220,91,29,115,112,231,221,56,66,4,42,236,1,234,221,253,8,176,218,117,195,118,153,59,150,224,164,5,70,133,109,250,233,98,120,196,176,133,215,183,192,137,54,56,113,119,219,102,167,153,34,28,5,44,228,159,23,186,123,251,164,48,130,31,173,183,171,7,122,248,51,83,6,243,150,82,100,246,51,142,22,54,151,21,238,86,113,47,41,168,135,199,176,11,185,110,3,35,31,193,206,29,11,103,20,8,81,
60,85,164,227,108,221,212,208,230,225,202,162,213,190,201,214,68,187,213,42,156,116,126,144,208,129,101,37,71,248,108,211,230,49,190,199,111,203,180,30,240,141,197,237,169,141,46,102,144,28,30,112,103,237,116,167,42,165,233,26,219,76,180,49,193,98,123,190,196,236,3,114,16,167,172,120,192,132,30,33,169,37,184,213,224,154,231,106,199,84,89,132,157,211,157,153,75,168,68,122,204,122,132,237,224,132,51,195,218,213,201,214,163,121,161,116,40,184,13,85,198,200,51,113,11,159,13,117,65,3,126,193,34,126,174,223,236,145,1,5,71,44,177,83,86,250,29,241,214,82,11,212,117,72,109,150,136,17,104,251,209,14,20,62,157,228,143,33,214,39,87,141,218,104,81,187,214,191,60,166,119,111,136,10,45,184,89,140,183,195,142,95,108,13,82,19,189,190,33,39,102,145,147,75,30,102,216,43,204,176,31,224,19,73,58,212,250,100,203,105,21,137,28,199,244,192,196,182,197,69,61,172,135,167,231,108,202,59,6,141,56,25,11,53,231,217,129,155,248,137,100,187,174,167,59,190,
179,164,176,210,231,249,46,28,27,147,17,67,81,235,194,45,51,207,187,180,172,134,161,243,19,171,114,21,55,176,225,216,214,46,101,38,163,35,56,194,204,178,160,171,144,98,99,53,254,44,29,47,236,59,222,85,9,156,230,241,204,46,157,84,144,36,167,67,171,252,22,20,124,215,160,138,251,201,124,244,202,246,178,120,50,181,137,194,10,16,120,24,162,27,172,203,121,44,181,6,19,218,135,217,23,75,60,141,45,183,203,5,162,178,15,111,183,14,23,200,237,131,155,220,77,9,82,7,165,174,183,186,93,214,240,132,217,130,73,196,252,178,116,104,67,44,99,227,70,164,80,119,151,124,64,208,77,235,164,232,131,188,164,142,20,43,211,241,56,154,152,103,22,184,145,75,97,56,186,141,54,181,41,103,173,27,21,46,170,98,75,157,224,43,182,131,253,132,133,245,118,107,6,150,15,57,36,251,235,139,162,29,49,98,16,182,49,39,215,81,83,88,158,217,187,182,215,218,170,181,169,224,109,176,253,221,240,116,203,156,218,62,95,104,25,26,155,35,15,66,41,98,255,248,32,142,
150,205,39,231,198,154,101,240,25,100,159,123,97,175,215,179,55,8,53,192,57,49,22,221,189,136,131,103,233,20,68,24,101,166,26,144,120,5,6,229,224,244,23,199,179,253,19,54,244,200,38,50,233,160,210,146,176,227,193,67,79,55,125,193,5,149,44,27,211,218,85,88,179,136,129,87,58,80,36,166,54,218,147,31,68,194,25,249,205,86,156,174,211,95,134,81,186,216,210,21,248,38,186,165,133,26,103,198,138,62,85,175,174,123,216,118,16,29,220,114,78,133,16,162,227,76,209,61,176,154,20,43,85,227,198,181,147,62,50,167,109,203,92,110,237,11,140,134,183,219,172,3,116,113,59,242,16,15,35,14,216,14,7,208,161,253,117,121,66,98,83,133,75,214,142,229,174,81,167,213,181,102,32,22,83,178,163,78,132,17,191,175,236,95,31,159,111,27,30,70,13,116,6,141,112,12,157,231,101,185,163,250,88,6,177,88,178,178,96,138,53,170,125,159,10,215,248,15,138,237,189,212,76,15,111,122,81,234,12,89,231,196,78,10,179,67,107,241,137,59,82,182,72,251,214,46,
33,111,76,204,118,136,97,134,126,254,208,34,62,79,119,166,57,62,220,78,115,56,88,96,196,40,46,108,16,163,97,8,135,214,128,56,211,171,217,110,142,68,131,66,172,16,202,212,100,114,66,191,124,82,6,37,203,224,200,0,212,220,22,66,99,45,70,100,183,52,214,233,72,11,245,187,164,109,58,118,139,222,18,128,198,66,6,50,105,35,219,15,157,20,69,123,73,168,92,25,215,108,86,183,32,60,233,132,216,207,25,117,45,79,15,77,148,70,103,34,50,161,52,194,107,94,30,219,196,104,55,50,179,75,205,165,109,155,121,168,59,105,63,232,19,15,140,137,7,93,148,201,49,155,132,171,243,195,151,246,215,178,250,160,64,238,236,245,173,168,114,7,123,222,182,195,29,191,221,153,236,219,211,104,199,25,204,12,21,189,42,14,27,205,68,76,198,176,107,99,143,185,164,187,179,244,117,255,166,121,161,87,184,12,134,88,77,58,63,4,164,14,6,250,2,216,238,165,138,29,46,188,49,39,66,34,147,84,71,51,109,141,186,29,64,32,51,124,237,232,94,217,196,30,33,122,
182,183,241,115,254,146,162,109,4,173,143,225,214,25,72,120,80,45,51,166,145,237,147,129,69,31,126,36,233,26,237,220,149,176,22,217,24,41,52,0,93,146,35,251,252,168,169,110,156,99,109,175,107,140,190,208,35,60,232,233,208,206,182,43,89,214,142,76,110,182,167,101,140,52,231,156,43,40,98,115,182,98,118,209,195,195,176,39,54,138,99,35,170,226,164,119,67,50,176,19,11,140,66,91,84,154,0,222,136,213,112,6,215,22,44,194,133,80,123,70,206,143,206,174,173,71,113,125,164,121,2,97,68,226,89,153,55,147,216,241,49,3,156,144,31,159,183,98,189,228,97,50,226,64,152,53,54,167,55,184,58,162,87,201,27,140,201,74,17,105,198,171,202,216,246,120,102,11,202,222,139,247,237,48,162,121,42,93,115,176,185,168,31,35,138,250,180,169,252,4,169,133,59,11,165,121,230,38,176,59,10,174,68,172,87,245,139,55,163,110,60,85,239,147,133,157,45,92,219,190,36,177,83,164,115,74,180,184,168,115,41,20,197,205,193,160,69,250,6,156,18,66,244,211,142,91,
196,29,216,78,249,44,194,236,151,73,15,93,50,196,58,79,136,138,110,207,122,178,242,13,105,170,146,54,108,180,205,2,62,77,143,194,146,46,12,205,51,31,89,157,114,33,49,61,189,100,183,188,89,122,188,51,7,119,42,183,122,233,254,116,118,107,80,101,238,14,164,196,114,142,54,130,113,14,37,3,35,218,132,202,111,214,207,245,115,60,114,54,203,186,124,64,167,138,141,130,109,88,82,198,66,59,49,19,49,153,49,99,181,11,157,29,41,232,100,137,145,226,31,89,38,53,59,145,33,104,76,187,161,181,119,250,196,3,178,209,81,142,96,148,191,104,230,70,122,93,197,21,252,4,191,35,159,181,109,239,238,186,51,20,229,62,2,117,140,192,160,197,112,96,190,182,187,125,82,205,230,82,134,100,152,148,193,215,49,36,38,62,152,76,108,204,50,103,252,185,101,177,102,112,194,104,205,88,13,184,116,156,27,9,204,236,32,186,201,211,34,63,31,42,30,220,198,173,28,154,35,237,84,28,30,137,216,223,235,237,42,248,85,24,239,240,110,156,154,43,192,233,10,143,164,213,
160,107,161,118,184,130,220,14,4,44,215,187,228,21,113,50,43,155,14,110,176,119,34,49,231,112,148,165,145,176,148,139,94,25,138,59,119,54,84,121,71,87,105,43,105,155,151,207,241,104,5,52,130,149,114,233,7,246,14,91,14,71,183,112,209,99,235,126,57,62,51,179,109,62,94,155,32,148,155,199,67,38,116,134,78,113,202,249,99,43,235,100,40,116,13,193,2,247,208,196,132,78,78,103,155,60,62,165,82,13,205,33,108,132,200,228,48,113,127,48,184,155,93,155,155,230,101,163,18,66,115,194,1,47,144,145,45,138,133,67,201,168,134,201,241,16,131,211,49,63,69,206,87,48,248,219,164,212,240,232,30,93,129,134,66,153,152,100,22,39,40,132,136,220,20,118,58,56,177,134,111,209,28,246,71,219,69,199,156,230,172,158,159,229,199,172,54,230,214,252,54,103,222,208,209,235,23,13,107,149,24,108,143,150,134,98,65,129,186,195,229,79,66,105,157,153,25,145,6,39,132,142,97,253,76,27,191,181,205,56,136,138,37,17,201,245,217,84,182,143,207,216,95,147,180,37,
57,11,73,209,160,55,57,165,148,180,137,178,60,154,203,184,109,104,41,47,49,226,134,173,253,84,239,62,211,103,54,175,206,155,49,137,62,199,30,203,73,29,220,31,247,149,197,212,68,58,127,136,196,111,139,68,220,86,63,155,185,215,51,168,239,146,66,253,156,221,33,236,82,8,29,99,121,38,72,41,167,215,35,50,177,118,147,12,232,136,89,109,38,239,162,182,187,39,14,58,124,169,168,121,204,38,68,217,134,169,208,140,23,101,128,59,228,1,35,206,187,67,82,198,136,48,239,0,247,136,109,240,49,163,186,120,124,127,200,86,222,110,75,178,185,241,46,170,118,124,153,211,155,37,111,47,46,138,48,26,67,150,184,150,152,149,247,73,18,1,188,83,195,150,173,11,2,166,5,71,112,119,51,218,169,44,178,38,59,251,145,41,111,198,130,89,118,102,246,166,3,182,132,22,165,39,37,140,226,132,198,104,75,162,216,100,92,82,105,20,204,26,83,14,70,167,56,129,243,239,206,118,21,198,184,46,152,117,213,150,73,193,209,65,204,242,24,209,125,52,24,219,93,202,187,145,
124,78,140,74,58,238,244,201,179,237,243,168,217,153,195,52,116,178,235,56,101,210,243,145,174,102,125,104,123,65,24,112,242,18,134,240,62,125,76,48,65,234,15,6,141,18,89,32,21,114,174,236,123,68,26,169,96,184,207,52,60,77,233,47,120,220,124,10,76,208,210,34,97,247,206,89,185,112,76,87,31,10,223,209,231,46,68,58,168,91,254,162,55,197,17,239,117,34,247,21,49,74,202,118,188,65,229,132,113,145,53,234,186,150,180,215,209,137,86,114,168,156,149,181,233,102,205,68,194,180,202,95,50,194,124,243,243,57,71,139,82,213,197,8,79,119,230,90,100,234,150,157,129,237,201,190,22,29,20,131,148,65,145,67,93,179,4,119,90,141,11,147,119,169,230,246,57,173,96,177,135,65,25,114,44,65,167,194,72,11,133,84,238,140,166,176,189,57,229,146,31,166,232,239,234,133,69,252,169,240,214,0,87,236,27,30,31,225,90,166,242,204,45,243,110,9,179,181,177,11,51,162,184,61,235,121,206,146,0,35,25,196,17,89,38,173,252,40,54,68,118,46,155,252,250,214,
204,180,166,95,118,28,117,155,60,48,93,170,195,60,200,140,97,57,232,150,29,134,25,195,220,161,44,168,76,178,177,30,226,166,89,46,30,106,214,243,165,170,86,74,203,113,155,107,84,21,132,117,193,35,8,50,42,128,208,107,49,72,124,80,184,234,64,17,249,155,126,3,231,96,129,198,157,78,232,199,157,155,170,148,211,20,152,218,118,229,217,35,80,221,56,222,101,166,118,196,130,122,129,10,67,162,155,93,36,71,7,138,212,5,95,195,140,53,75,14,39,67,73,195,226,64,49,188,136,21,151,40,201,125,157,17,177,66,212,182,37,218,7,102,104,72,23,114,111,204,216,110,155,240,205,32,22,102,138,180,84,57,150,204,165,3,59,226,66,241,104,87,175,13,123,38,212,7,113,142,53,173,157,195,142,59,119,200,36,66,34,129,106,243,203,183,113,177,85,146,73,140,240,89,103,231,92,59,4,248,224,40,114,188,71,66,159,119,121,2,118,179,71,103,224,234,146,33,186,101,171,127,185,21,193,30,242,172,50,90,145,22,170,192,161,41,31,100,54,80,101,94,56,190,107,59,
238,229,35,144,230,184,87,233,245,144,113,249,149,205,44,168,76,64,151,110,35,106,233,136,229,230,155,189,219,94,57,57,24,210,241,25,8,71,135,163,173,191,199,172,207,49,34,137,238,201,5,41,121,210,38,68,140,244,146,143,247,160,86,189,75,195,81,3,149,169,142,29,72,251,99,125,90,61,130,20,182,11,164,12,88,43,169,101,26,141,103,234,121,240,85,38,28,78,99,79,237,96,85,125,44,55,46,77,54,57,20,51,237,10,22,113,113,104,0,74,34,249,116,219,249,217,97,177,210,175,116,15,29,166,241,139,90,58,146,63,215,215,26,232,167,193,41,36,81,171,156,214,109,119,141,165,165,36,118,167,0,1,69,162,233,212,29,171,221,238,144,110,169,151,22,22,116,7,140,66,87,88,196,131,69,160,184,193,40,84,226,223,74,111,108,232,209,188,213,146,186,16,208,120,221,163,237,125,42,77,175,120,202,136,139,234,67,201,163,80,180,104,25,13,14,239,105,142,55,2,81,141,36,116,44,222,159,144,40,212,113,140,95,126,132,105,145,115,115,43,105,103,223,116,122,112,
137,234,29,195,204,28,140,179,23,194,235,158,92,243,136,182,213,210,58,128,193,183,239,192,217,61,130,225,209,105,160,194,231,90,151,176,240,161,9,18,227,128,48,202,221,86,186,195,97,147,102,75,48,126,236,229,246,232,70,164,7,83,122,95,193,187,223,95,140,120,247,58,229,65,50,9,191,34,45,80,242,35,195,177,213,129,246,238,9,162,139,219,214,101,112,197,73,100,10,78,108,101,37,205,83,236,109,28,22,8,159,164,169,153,33,205,81,54,133,4,38,215,192,250,98,120,73,144,198,20,22,160,124,156,12,54,183,7,37,19,58,29,251,136,49,71,62,147,24,203,109,18,176,187,189,251,244,13,196,113,32,128,206,40,50,71,148,201,144,154,170,9,248,133,45,122,195,112,43,116,78,178,132,147,110,152,97,112,146,175,85,93,8,171,183,10,11,146,150,66,126,86,112,132,153,114,40,68,3,235,22,185,145,169,103,134,68,56,99,38,145,22,162,226,72,43,98,159,190,140,98,31,115,129,204,165,85,188,149,238,92,8,224,123,189,248,62,99,134,15,37,102,96,83,156,56,
159,173,74,175,234,101,253,227,241,153,253,184,186,171,29,61,65,155,25,25,219,27,237,239,111,99,142,49,87,24,161,176,88,12,149,88,109,182,230,230,102,82,51,186,89,18,102,46,231,102,24,27,249,100,167,137,183,121,140,34,143,203,5,3,229,3,23,87,125,24,110,79,143,219,119,249,241,35,126,62,146,222,79,217,119,240,62,183,110,35,109,177,176,19,134,178,128,217,211,71,234,156,46,32,70,199,113,152,62,164,148,158,195,109,108,47,235,133,20,90,66,192,107,166,100,173,25,46,18,137,210,45,118,194,212,131,211,89,87,236,120,63,190,191,103,195,239,149,181,114,165,176,100,41,23,243,51,100,190,220,231,226,13,118,28,11,227,1,20,218,14,69,228,196,112,150,67,139,13,170,97,54,32,61,91,29,79,98,120,20,138,127,136,20,232,222,232,164,193,148,157,155,161,49,125,191,126,161,235,128,192,199,65,3,216,205,81,108,159,192,191,60,59,220,108,218,136,206,204,241,45,88,167,32,180,154,225,23,224,170,205,78,118,130,9,68,48,27,101,181,183,211,155,72,149,147,
83,155,132,145,67,193,94,140,171,8,152,86,198,141,152,65,51,70,204,67,144,197,20,170,153,179,110,161,40,146,173,176,128,147,63,62,232,38,44,75,19,11,195,130,61,20,212,45,228,163,103,131,211,91,216,120,112,166,251,200,71,85,184,231,148,134,177,5,198,118,43,124,57,27,52,47,232,3,221,173,104,31,91,177,171,36,197,59,204,163,36,196,113,104,156,182,180,235,13,26,216,217,80,172,132,211,187,100,163,218,209,69,141,43,183,25,25,85,236,122,216,35,71,251,253,136,241,141,5,205,166,96,119,10,223,190,172,217,29,216,47,251,221,71,246,45,82,71,167,149,164,237,113,203,220,190,49,246,198,152,151,197,110,99,117,248,70,87,135,246,86,73,5,77,170,115,139,180,157,87,154,103,172,253,135,251,93,9,30,199,29,48,181,58,71,146,251,106,187,176,117,22,185,188,212,97,236,157,237,91,239,75,30,236,119,155,70,248,196,105,169,106,211,44,106,38,187,186,229,244,16,13,215,133,109,182,69,244,166,180,33,185,184,91,242,9,139,90,1,16,156,139,123,229,33,17,
33,51,67,78,186,216,152,82,143,208,40,222,113,99,168,166,0,29,25,209,23,212,123,155,19,2,233,70,126,178,48,49,26,71,180,74,203,157,48,99,171,93,106,91,21,78,81,146,252,22,21,149,168,19,44,14,180,181,174,15,154,169,235,19,236,229,88,200,178,87,30,91,167,237,178,212,7,107,178,149,30,103,88,26,241,197,240,147,73,10,5,134,85,237,31,234,113,78,149,217,105,214,179,224,236,68,250,120,224,80,129,90,10,6,119,230,184,91,236,193,108,82,209,131,228,152,51,250,20,154,231,22,218,253,184,168,90,24,94,148,110,56,136,240,227,173,33,142,171,115,35,49,79,232,225,29,180,117,197,59,215,105,154,44,74,121,224,9,174,236,209,45,221,172,44,17,136,129,25,7,126,1,110,234,95,221,133,6,104,178,168,104,192,46,73,107,165,246,253,176,251,192,63,178,189,175,102,40,211,33,70,108,89,34,150,216,208,57,52,58,71,64,108,112,138,176,92,200,52,53,179,187,161,183,20,45,73,211,54,182,157,63,150,150,13,31,165,97,170,124,177,116,176,187,57,182,
237,143,31,187,3,90,143,54,217,169,50,105,102,77,174,161,104,190,16,244,8,186,119,89,29,108,206,106,105,168,63,62,54,186,158,60,236,63,134,227,35,142,88,102,25,134,10,25,217,52,28,126,121,177,191,52,59,21,239,19,100,130,115,4,212,97,235,126,161,213,75,133,33,187,122,86,6,227,129,126,106,183,109,23,102,56,228,229,20,110,83,247,74,97,194,56,153,207,230,119,117,185,93,119,39,60,72,118,96,52,43,5,10,90,105,244,96,137,17,69,79,100,111,202,142,130,239,192,145,17,150,97,212,194,47,184,181,24,67,63,71,192,219,243,246,193,23,16,11,68,241,160,96,43,10,67,153,103,167,233,235,118,159,215,184,221,61,2,93,36,38,242,202,24,5,227,8,183,65,165,9,155,7,61,114,212,181,133,101,46,141,101,21,221,86,82,140,212,205,109,177,166,18,5,10,102,32,91,106,111,182,50,214,55,58,55,124,112,193,228,129,35,192,150,27,160,3,25,213,68,249,64,128,116,81,181,200,5,206,182,213,113,168,79,50,10,226,32,53,52,113,148,205,71,4,28,
154,166,121,110,6,203,49,119,165,48,88,115,56,40,32,64,87,76,104,20,149,210,119,84,158,200,103,123,105,246,61,43,133,53,59,127,188,59,187,232,225,251,217,131,71,52,58,214,206,183,182,48,224,84,2,166,15,14,55,238,173,206,32,56,123,51,146,228,46,255,120,63,15,141,36,139,249,157,116,50,179,119,136,116,185,4,189,14,229,232,98,180,221,177,230,222,157,24,161,151,230,143,152,73,39,16,40,148,174,131,226,156,239,176,53,142,62,98,79,133,209,158,153,97,173,41,61,213,98,154,200,183,28,110,169,84,201,125,78,34,7,6,49,181,102,185,125,10,71,216,223,23,12,208,22,166,218,211,248,97,122,112,12,187,154,88,100,31,233,66,80,99,139,9,182,215,106,131,23,117,153,130,19,37,112,23,2,123,37,12,111,116,165,123,213,50,44,73,119,247,172,182,20,210,195,1,74,150,138,176,193,122,205,125,234,224,46,42,12,19,141,245,138,186,240,78,134,99,10,19,142,242,96,229,164,102,68,153,22,144,251,102,224,65,93,96,83,51,76,101,42,96,30,226,180,164,
203,236,134,203,253,45,112,116,71,32,20,141,233,102,212,126,114,127,71,0,93,90,218,137,59,160,147,1,185,54,15,55,23,246,212,130,54,205,156,146,13,155,90,67,183,234,84,199,133,1,158,29,43,210,103,58,198,112,7,49,76,39,7,53,25,49,200,231,232,107,4,53,210,210,78,156,234,76,136,11,36,135,9,193,245,249,143,16,190,13,6,65,39,68,209,146,89,158,113,28,214,101,56,194,132,144,200,214,1,165,194,118,180,222,182,42,97,232,97,219,202,245,214,222,14,143,99,147,135,93,216,245,198,217,26,21,182,83,205,69,203,49,110,9,134,12,55,161,11,226,37,103,168,164,236,89,154,180,207,99,77,184,117,17,34,231,49,44,246,68,103,168,112,248,188,153,48,185,74,63,92,192,44,7,136,198,102,18,77,199,56,158,149,29,77,146,245,135,110,217,190,179,191,47,69,34,204,16,14,143,211,142,244,232,241,232,226,209,226,38,115,116,153,57,210,170,27,233,149,230,166,44,26,93,4,198,113,148,154,161,128,98,55,182,53,134,80,75,188,173,211,186,36,223,92,230,
6,35,233,92,71,118,95,145,221,159,81,104,100,106,137,219,55,24,143,117,247,19,115,22,159,71,49,52,33,24,81,100,253,99,88,15,110,54,24,90,47,10,189,205,195,157,8,202,156,201,168,32,82,88,84,127,162,45,70,235,147,176,252,201,214,145,212,36,90,37,8,68,41,29,129,180,72,150,153,211,82,108,194,81,238,222,250,112,151,71,33,101,81,165,39,249,102,49,183,231,4,230,209,36,166,23,152,71,146,189,57,238,196,228,180,102,29,223,179,49,23,13,37,17,61,122,147,182,139,67,128,39,12,211,54,91,48,93,104,115,239,119,32,120,5,59,94,203,83,210,19,48,141,20,62,181,22,142,18,230,166,143,144,120,243,8,150,194,85,146,86,56,92,100,106,157,191,220,215,54,175,38,236,104,154,185,150,49,103,139,3,67,221,228,11,91,155,183,7,99,169,165,77,178,118,182,15,170,165,6,21,219,199,154,248,140,47,222,125,152,40,73,152,46,24,154,228,95,100,103,247,6,103,242,125,3,5,142,180,215,104,22,73,146,130,40,201,167,138,120,41,220,116,208,143,88,
234,236,143,145,230,25,11,138,109,12,139,222,221,141,21,16,87,40,48,206,50,94,36,235,106,31,25,128,27,69,112,120,12,191,186,198,246,88,73,12,141,60,138,105,39,3,217,102,126,0,149,138,29,150,231,115,145,173,61,189,190,224,119,50,13,238,57,161,106,183,47,222,159,93,95,36,151,248,3,153,248,18,119,187,180,94,234,133,119,237,249,152,229,181,68,118,48,103,234,57,54,245,139,22,172,43,106,139,97,116,97,107,165,232,57,44,23,50,122,115,113,146,7,181,184,60,139,153,249,13,79,49,224,84,147,25,205,1,185,29,110,38,79,19,160,250,78,158,152,100,64,111,245,52,83,60,93,86,30,137,74,235,203,66,45,169,62,34,155,65,146,108,226,209,25,223,236,208,80,116,135,186,78,224,209,55,22,164,43,67,114,246,172,123,59,9,53,143,122,166,2,161,82,177,68,167,25,215,25,250,241,208,177,197,179,230,92,91,203,207,133,247,60,62,4,117,48,203,135,75,77,43,34,107,172,37,180,68,223,77,44,194,199,25,173,241,5,34,167,7,197,22,48,200,9,43,
2,73,70,50,86,90,200,51,220,205,128,114,63,185,8,107,151,10,122,176,188,158,110,201,32,18,37,0,42,246,62,60,95,45,246,250,187,3,136,22,171,203,28,85,134,50,248,110,207,12,27,102,224,12,141,30,36,205,116,174,104,205,70,28,57,32,184,118,51,84,103,27,140,149,73,183,23,119,96,145,132,40,223,146,26,228,216,77,38,32,155,234,48,116,35,152,3,8,68,219,46,219,154,64,237,18,160,188,96,55,221,4,181,155,188,212,9,55,10,78,159,15,45,6,146,6,25,22,135,33,58,23,12,81,19,70,52,39,132,99,252,112,253,94,202,98,226,108,175,107,177,251,29,185,149,210,222,128,101,6,17,221,46,19,231,162,89,88,96,110,117,96,96,83,50,176,180,50,63,191,178,188,54,239,78,150,229,163,91,43,14,114,89,133,61,236,46,110,251,166,242,165,116,121,202,87,148,114,229,91,131,205,59,100,83,182,95,68,107,238,105,139,149,213,22,88,168,205,27,130,6,76,166,149,169,253,169,204,140,197,180,42,241,116,17,117,203,165,92,156,51,179,117,100,18,208,
166,218,209,102,6,19,69,118,39,161,142,21,17,212,56,7,197,160,224,7,136,249,136,187,48,72,192,170,122,80,125,54,183,127,41,216,58,235,208,75,17,107,102,148,186,127,171,127,107,222,137,131,241,113,57,123,32,223,119,97,189,81,118,21,231,192,58,248,176,75,201,243,206,97,6,39,86,29,74,73,104,25,215,137,37,38,216,173,155,234,72,127,190,195,151,8,38,101,107,80,36,83,154,116,239,117,164,77,147,18,120,144,231,104,131,23,50,112,82,243,132,109,150,30,133,82,35,142,128,29,190,179,140,17,98,143,15,169,60,25,122,123,68,109,180,70,87,29,100,167,113,206,65,180,208,166,186,76,205,54,170,98,142,49,111,194,12,250,22,97,29,156,161,149,99,104,115,71,208,78,219,198,173,195,11,116,163,74,216,188,229,244,197,178,52,166,68,143,118,99,45,115,42,37,87,133,208,171,187,35,153,245,93,175,198,101,198,147,205,132,204,112,87,129,56,74,79,24,248,116,254,236,240,142,52,39,192,187,252,71,230,105,116,123,105,105,35,220,181,93,6,60,73,61,58,44,
83,13,169,189,8,62,116,128,56,196,40,239,19,91,103,150,166,184,187,14,223,74,41,23,219,141,14,150,231,14,166,116,58,102,233,64,50,239,155,41,47,30,37,117,107,142,129,242,126,95,81,181,190,60,171,30,24,100,141,46,59,105,71,203,179,236,94,180,7,59,69,60,178,204,108,115,51,108,71,169,191,92,88,153,243,56,203,163,138,17,50,111,122,122,112,159,219,190,225,193,202,157,118,169,216,28,136,16,70,16,198,165,84,207,82,52,172,56,236,112,243,141,157,156,204,49,137,147,81,44,53,207,116,122,37,254,190,140,17,57,2,119,45,237,140,232,6,231,75,222,50,80,199,149,38,75,174,163,74,222,181,58,74,136,238,228,71,142,36,74,47,85,36,24,98,91,23,198,225,36,82,70,45,128,134,40,110,230,96,193,186,198,39,22,236,29,233,193,209,46,71,112,99,90,155,91,48,181,182,68,140,18,110,151,127,102,102,130,109,245,139,35,170,46,157,69,44,110,155,14,210,156,248,169,150,117,39,19,219,9,15,152,249,126,36,17,27,156,238,14,143,72,227,19,126,201,
68,111,179,246,40,49,50,117,136,161,114,55,122,49,42,138,128,190,151,192,137,24,157,17,193,60,81,143,16,51,141,252,177,241,50,131,145,114,179,147,179,97,34,114,122,64,194,103,82,230,120,61,14,44,197,12,237,114,216,221,238,109,36,47,177,158,156,111,223,33,120,72,136,118,116,187,247,104,35,220,178,29,103,199,102,212,35,50,237,80,98,98,76,166,114,111,44,241,165,241,120,44,62,176,223,214,223,27,239,43,44,46,108,20,118,179,104,93,161,148,95,227,234,69,186,210,216,110,161,88,94,46,149,68,130,254,131,226,74,113,46,17,203,71,145,252,3,117,239,104,110,98,48,38,238,13,113,133,130,33,165,116,113,37,183,177,232,61,146,246,31,172,47,76,89,108,157,179,69,95,102,58,56,79,162,69,147,126,199,142,177,211,140,195,166,176,156,78,162,8,183,214,90,238,223,96,42,53,244,131,144,221,184,42,116,4,69,82,170,217,64,144,245,246,58,6,119,72,29,174,85,79,126,118,48,91,164,198,211,169,244,114,233,48,62,226,230,50,193,0,180,141,179,176,67,124,
201,104,9,49,212,179,145,95,18,155,247,131,138,85,195,49,170,143,184,227,31,62,194,33,242,161,189,195,22,143,157,164,216,24,230,240,121,211,131,242,229,158,245,110,239,17,46,170,12,235,93,25,246,176,151,182,205,95,39,91,219,209,22,243,102,158,198,110,73,75,139,185,22,182,209,182,217,38,94,229,46,139,162,165,233,245,236,62,115,113,219,186,177,181,215,220,133,210,247,27,236,123,235,84,59,167,140,114,146,34,139,8,132,124,205,151,18,136,35,99,170,245,40,185,115,63,55,180,219,222,73,200,36,252,240,240,168,139,48,214,149,16,133,36,89,206,100,48,220,67,55,194,240,203,146,110,115,22,42,33,146,71,237,182,153,109,133,103,17,23,139,102,141,86,123,104,211,213,44,223,64,28,186,229,177,254,64,223,106,136,177,108,149,248,196,232,102,116,46,167,41,106,8,251,234,229,220,104,217,218,19,242,204,231,14,114,228,86,139,142,62,81,214,77,217,116,5,105,36,78,44,207,229,98,186,94,157,179,216,207,223,43,218,102,202,146,152,53,72,37,13,149,237,179,142,182,
24,27,197,45,229,198,58,61,88,19,108,201,181,150,117,110,218,11,43,166,54,57,127,221,181,231,26,115,173,40,199,100,109,163,123,41,19,222,119,220,31,224,138,230,3,171,171,51,152,102,126,102,202,51,135,137,180,10,103,13,46,59,198,51,142,166,14,42,233,61,112,163,36,215,183,154,73,13,32,141,176,253,89,209,6,194,88,89,15,242,149,245,128,59,68,209,117,9,188,41,147,54,65,216,158,51,0,147,7,239,84,165,154,209,153,57,130,100,126,14,235,161,5,215,252,49,179,30,221,170,177,165,230,218,80,186,9,56,139,181,213,102,231,152,83,37,109,75,11,105,150,211,219,138,136,46,74,173,135,203,45,70,61,188,11,227,159,231,118,16,120,94,191,150,146,77,77,115,232,211,66,30,163,141,30,214,234,160,157,71,62,11,109,32,64,45,70,20,88,35,113,57,24,206,41,237,248,117,191,25,109,137,14,208,57,51,204,160,105,210,84,84,28,35,228,2,4,190,197,134,230,15,119,228,93,29,227,70,29,183,25,205,13,32,21,90,110,7,83,189,169,135,209,28,2,217,
128,55,41,102,114,140,217,126,21,82,44,163,91,93,8,140,81,221,77,52,138,35,194,33,149,233,80,138,92,44,2,190,32,10,78,38,4,203,74,45,203,68,241,105,81,10,189,95,77,249,255,152,58,171,101,103,153,182,91,159,58,113,119,79,102,220,221,221,61,51,238,238,153,113,119,79,214,243,126,255,206,170,2,138,162,216,129,110,198,24,215,77,55,52,29,39,125,43,59,171,218,9,116,155,109,170,103,212,228,83,122,76,126,147,199,99,240,199,211,53,124,96,185,177,14,69,247,117,202,172,62,143,210,37,119,232,86,239,104,65,127,144,110,145,68,255,203,105,95,133,123,11,116,207,94,175,209,88,11,204,147,51,75,197,207,227,82,76,69,108,0,145,94,231,165,127,193,73,148,135,170,128,119,38,73,157,14,81,56,135,24,204,239,215,240,176,73,172,143,231,222,242,48,162,243,77,147,164,14,44,38,102,21,175,252,88,65,213,241,97,165,133,196,24,11,14,41,71,25,8,54,100,131,215,121,211,143,106,134,219,41,182,240,91,56,15,16,77,59,8,238,15,4,66,145,118,
76,31,132,123,138,230,227,185,19,187,39,248,191,50,106,60,244,173,74,4,159,190,14,174,192,207,61,3,37,135,246,177,102,82,230,197,119,134,218,252,38,205,53,106,113,83,81,168,207,221,48,228,152,245,193,136,193,31,52,95,147,181,148,223,238,124,170,181,161,103,236,138,88,19,148,177,35,41,67,100,58,194,140,151,134,211,151,252,80,118,24,228,31,76,235,78,111,11,31,116,110,44,255,106,135,43,40,46,86,108,160,241,233,196,254,34,142,39,214,164,163,222,212,14,58,85,230,67,233,208,17,58,57,204,24,41,225,20,59,229,173,124,55,80,23,186,163,64,159,150,187,31,66,90,150,104,133,25,70,92,182,142,68,74,14,69,240,74,52,183,16,144,78,2,45,95,112,130,180,250,137,183,196,26,81,186,209,213,195,51,212,103,91,233,206,220,48,141,176,220,12,217,247,205,28,56,63,54,159,225,240,0,156,78,127,183,91,127,119,21,200,237,173,94,167,209,156,172,102,101,107,217,142,182,82,237,53,106,24,234,41,116,94,186,97,73,111,147,110,191,205,203,126,203,171,240,
123,21,218,123,86,208,234,76,54,58,214,18,164,101,78,213,44,71,237,155,184,84,19,151,58,120,54,119,42,230,216,98,238,215,185,230,62,27,43,248,29,165,235,253,80,49,73,72,78,124,115,69,223,119,202,108,243,124,12,74,118,158,254,21,103,97,46,3,199,58,171,238,35,26,209,215,143,54,56,205,139,74,20,157,190,26,65,161,36,3,195,62,65,216,48,8,37,114,238,62,78,4,110,44,137,69,15,196,25,247,24,201,117,254,255,246,145,126,141,79,136,113,104,221,249,35,245,167,58,164,9,185,249,75,221,234,136,35,203,145,152,4,137,207,87,193,213,195,133,41,25,7,241,230,60,5,36,132,211,136,102,6,112,204,73,113,172,193,201,121,54,66,99,163,99,208,204,198,137,232,77,115,230,249,218,226,254,69,36,132,253,115,2,1,99,15,172,4,168,83,164,72,27,196,253,92,160,61,163,192,72,4,32,24,55,207,110,150,246,234,37,99,80,157,112,127,149,229,69,34,92,138,101,69,20,74,36,144,159,182,220,85,71,42,94,0,99,67,247,157,41,68,64,35,72,147,
181,19,13,196,17,35,177,135,121,102,57,141,204,177,12,85,150,16,24,228,166,237,242,202,247,135,87,123,212,227,93,99,37,95,182,96,54,26,229,62,152,207,129,201,100,49,124,157,78,171,91,95,225,127,10,244,95,181,223,110,214,199,243,208,209,106,107,178,92,47,2,139,65,208,92,96,56,26,149,175,74,127,43,116,183,123,175,113,210,169,110,60,111,94,104,28,150,158,223,245,116,51,41,10,241,114,244,92,183,0,34,22,91,95,100,30,202,204,228,19,96,236,117,220,245,30,201,98,89,180,89,188,174,169,197,54,55,236,233,167,8,143,49,99,245,255,88,226,187,157,171,244,131,251,79,129,174,253,94,145,107,195,163,64,68,26,44,200,114,62,249,11,147,66,181,171,8,28,21,153,1,130,3,128,220,145,83,40,114,55,63,28,82,255,126,69,111,143,18,71,254,7,248,48,223,255,5,174,202,131,208,226,195,72,122,220,93,136,102,185,89,5,5,3,73,231,145,70,47,58,222,61,30,109,226,18,176,33,200,117,144,112,73,3,223,105,212,62,128,199,175,139,44,118,252,194,
218,50,174,231,237,244,135,10,122,36,193,143,114,193,16,175,142,11,15,194,96,58,232,12,147,11,102,0,155,25,232,7,102,203,70,55,35,101,163,227,138,99,153,226,64,64,136,96,92,102,81,189,82,235,36,81,210,100,228,138,149,42,137,4,97,100,30,44,122,106,169,95,159,11,55,214,65,88,108,245,206,220,7,3,80,148,45,112,97,28,216,23,109,82,169,4,243,175,2,228,133,120,74,212,105,129,183,98,152,203,113,72,204,11,146,74,252,213,17,111,78,19,187,212,199,253,211,97,246,60,2,53,129,193,14,36,141,168,162,156,164,145,75,238,213,66,100,143,32,252,122,188,62,15,62,150,197,195,243,213,244,12,211,114,167,59,157,109,54,147,217,172,106,61,47,57,78,183,187,229,62,101,98,187,206,104,250,228,250,164,37,149,151,4,42,212,239,83,163,112,88,122,71,229,95,215,65,244,64,139,100,132,164,136,190,16,117,222,142,125,111,217,80,248,14,45,159,253,98,83,47,146,146,188,175,80,112,73,213,118,206,82,213,92,168,91,105,254,218,158,198,109,180,163,92,227,
98,91,35,226,10,119,150,31,211,239,228,91,113,49,116,87,55,15,57,83,254,62,13,3,149,248,119,234,125,95,244,76,238,59,248,27,248,68,68,107,2,53,169,154,1,95,1,16,128,110,139,141,90,138,238,195,2,166,218,174,215,128,153,208,145,205,159,254,31,56,254,215,100,204,255,66,114,207,136,10,34,227,116,137,2,41,205,16,241,6,0,17,0,10,203,75,73,33,228,50,164,225,61,148,25,214,43,129,53,69,6,85,174,208,93,253,229,149,124,89,11,89,41,135,38,44,70,225,64,138,22,224,11,72,30,152,213,245,64,64,123,247,254,237,18,151,32,178,61,92,140,34,34,193,26,245,65,110,52,23,40,66,136,136,151,199,248,117,42,98,141,140,114,171,207,244,209,68,229,126,15,9,130,237,214,211,104,240,235,77,181,88,183,138,0,7,155,199,19,150,43,19,110,16,170,159,197,1,115,89,102,58,37,224,221,74,44,0,184,237,198,174,223,162,226,155,78,201,216,95,197,123,219,187,72,76,174,207,198,185,202,208,131,99,221,179,67,8,103,133,40,92,87,55,174,254,
25,73,218,70,17,76,168,107,245,52,185,63,143,23,189,179,179,240,254,126,179,243,87,137,100,104,248,241,244,12,199,140,193,12,40,165,209,72,252,14,127,222,15,144,174,234,203,222,233,93,0,170,83,198,249,249,98,169,209,28,173,56,203,205,106,94,180,95,170,151,242,188,165,118,179,99,255,90,35,213,90,160,251,191,82,173,117,231,148,244,172,50,135,86,86,239,201,242,197,94,213,87,104,80,188,229,158,191,87,242,250,70,26,102,145,150,101,2,42,250,115,81,69,112,222,25,138,43,115,15,114,123,214,185,87,123,126,187,55,239,222,220,248,28,61,45,84,239,26,230,212,71,89,193,143,112,205,230,111,115,2,64,64,132,77,69,200,63,226,71,246,183,43,147,21,30,211,35,118,151,80,173,127,59,73,86,168,131,246,45,187,201,40,22,214,128,184,38,102,234,239,120,81,255,151,246,46,71,90,213,53,133,89,245,183,52,46,229,219,84,190,126,232,127,179,46,127,76,136,34,227,50,50,187,11,157,150,71,190,63,72,62,109,106,193,63,88,253,28,172,161,140,187,53,201,181,
166,155,132,89,177,161,245,152,6,43,212,222,53,197,25,189,65,239,93,71,123,125,171,11,147,111,143,198,53,193,96,33,181,59,168,45,196,19,177,229,69,235,249,219,136,220,22,126,47,63,202,11,44,215,242,168,70,207,174,184,117,90,48,60,44,248,120,59,69,19,254,92,237,253,89,123,115,87,197,239,206,18,148,207,53,105,130,43,151,182,106,17,114,23,14,24,50,201,35,11,238,10,65,237,253,29,80,14,2,167,199,64,250,235,157,89,59,252,66,172,208,14,151,253,160,155,241,182,194,199,252,207,175,188,247,60,205,169,65,126,207,74,25,46,91,132,29,192,53,179,37,63,45,203,136,217,224,102,106,201,201,175,218,137,98,72,175,224,84,135,233,210,236,130,13,90,157,83,21,133,221,174,76,91,220,141,233,55,189,99,152,115,82,187,191,148,144,143,152,181,239,229,162,217,39,217,198,123,137,252,174,191,69,217,70,226,90,7,205,159,65,223,127,207,34,254,81,105,83,147,182,173,8,13,109,139,114,1,212,205,240,103,183,206,112,37,188,177,2,93,7,192,122,15,86,195,
229,22,142,186,159,237,150,140,233,74,135,130,190,92,190,119,33,151,9,57,85,57,89,56,162,98,45,131,72,136,28,192,120,34,11,199,13,252,166,60,169,115,159,1,56,24,99,96,126,154,57,211,87,53,2,16,236,132,203,18,192,55,138,169,132,121,168,186,16,123,38,28,104,151,183,78,161,13,187,201,158,16,23,85,251,52,123,137,42,24,91,144,174,192,15,184,158,58,213,210,67,228,224,67,154,227,214,202,187,244,43,36,9,65,159,141,207,193,123,235,251,129,60,118,216,158,193,98,39,219,249,193,110,61,220,205,167,11,234,126,96,137,17,11,203,228,94,128,136,174,73,82,130,20,1,164,245,121,44,93,227,198,92,129,35,15,174,53,187,173,225,76,145,102,173,244,76,75,85,239,192,218,52,151,106,250,124,171,100,57,201,9,150,70,74,17,125,88,251,42,155,101,217,166,207,107,53,230,89,115,142,23,239,58,92,147,47,235,124,196,117,242,227,56,224,29,229,219,65,125,185,35,6,26,180,194,8,160,49,92,184,53,15,75,236,215,130,158,47,159,250,203,171,224,99,152,
134,172,137,28,117,105,113,80,152,8,180,19,221,191,112,30,46,93,32,125,80,100,212,188,204,255,87,129,15,191,61,103,205,45,216,79,41,130,235,11,81,0,255,216,2,70,113,142,111,245,69,131,95,123,214,197,177,200,114,0,30,87,218,172,128,200,49,173,84,192,168,80,6,54,213,29,28,3,187,137,29,124,170,219,52,98,1,125,189,47,237,209,195,183,194,248,34,182,158,109,130,174,33,94,198,97,251,51,219,10,183,115,4,38,196,191,243,59,96,120,210,143,44,155,68,140,210,11,140,145,12,193,217,144,123,105,22,82,235,253,198,157,230,130,58,6,231,128,2,165,195,182,110,105,65,112,70,4,145,192,28,103,152,251,172,29,23,13,48,65,192,252,23,6,40,29,62,134,71,229,51,120,3,227,85,11,164,127,218,58,124,152,239,153,17,74,187,145,232,103,103,150,90,96,188,252,245,85,220,87,25,171,244,73,205,34,6,124,97,114,205,213,143,111,174,155,98,237,170,84,187,151,181,23,209,106,69,130,35,201,200,43,132,226,27,152,245,244,73,192,253,71,242,110,3,219,
198,199,146,131,131,236,146,35,135,13,235,226,26,123,192,163,199,158,80,166,136,237,248,139,245,147,30,39,149,126,239,43,68,125,227,47,12,220,89,248,111,117,205,164,249,154,13,57,218,10,55,207,255,113,139,66,199,124,87,134,191,237,203,73,253,19,231,38,80,10,2,65,17,20,238,14,36,252,87,98,160,156,72,47,144,0,84,92,16,65,182,11,24,230,95,122,33,85,235,142,207,96,101,169,249,10,22,25,239,34,160,15,198,54,83,221,37,219,119,120,180,131,0,228,6,85,166,182,244,64,109,52,181,228,191,102,113,212,179,185,106,235,132,216,96,90,67,196,98,103,184,227,242,142,155,125,222,194,187,87,237,53,186,121,105,119,11,87,8,253,241,26,161,39,222,110,163,32,25,204,133,203,0,200,240,178,134,243,73,147,181,114,99,94,168,131,190,108,182,250,228,106,169,177,25,218,227,27,59,224,93,197,44,252,251,47,131,36,231,27,246,247,60,136,141,63,77,216,151,183,104,100,15,176,77,77,85,1,193,143,245,22,229,130,221,79,125,219,235,100,158,176,185,62,6,115,
99,176,115,181,131,14,46,226,19,248,241,115,81,164,59,172,191,27,245,211,65,144,154,31,47,196,5,146,16,210,119,126,225,82,168,31,216,206,220,160,44,76,40,83,128,246,66,230,3,68,157,196,217,117,244,21,88,168,153,241,227,64,251,126,229,224,192,207,111,224,133,211,225,28,128,122,209,204,250,175,154,251,62,97,60,57,45,62,22,171,23,222,222,67,97,122,127,74,102,48,132,121,40,251,163,97,188,193,246,111,135,16,76,69,126,180,174,7,51,62,68,14,5,89,111,207,16,111,163,194,196,185,107,0,130,155,81,65,104,96,218,127,153,177,76,83,145,210,100,23,156,144,18,254,18,52,41,210,1,197,10,90,135,219,102,58,28,235,39,239,55,72,253,163,152,32,49,48,155,108,44,150,156,254,29,28,144,8,50,29,225,121,19,77,20,4,15,33,228,67,195,71,219,205,201,100,123,125,73,46,78,92,38,58,45,147,232,109,7,2,255,220,148,59,147,66,152,38,254,238,164,253,53,122,26,204,110,68,212,77,51,238,101,12,25,159,199,26,108,250,11,192,210,185,115,167,
145,225,242,110,191,222,39,48,222,20,244,164,187,208,7,131,214,96,73,232,217,4,187,33,204,33,93,80,35,125,205,168,71,44,121,72,102,238,254,4,70,97,51,172,30,41,207,78,146,194,65,92,38,184,4,148,192,108,185,233,153,28,35,149,135,17,43,23,190,9,124,249,221,29,237,125,89,96,46,118,227,125,127,21,239,254,249,83,114,15,51,255,116,191,78,250,219,119,69,0,209,14,198,227,107,87,180,133,4,13,128,192,188,118,67,53,98,194,160,145,213,143,221,42,93,35,76,205,173,126,149,255,122,41,207,159,221,254,132,181,167,130,109,225,162,27,152,173,140,135,202,22,175,169,8,6,239,212,70,241,36,183,54,14,40,86,95,165,32,43,44,155,235,47,36,115,95,207,113,103,100,230,101,54,109,4,156,39,119,189,94,108,86,155,223,98,45,91,237,213,179,216,82,101,185,216,110,44,66,235,237,112,33,111,56,184,172,231,65,73,208,53,120,160,154,35,44,150,154,118,222,82,129,168,220,245,199,26,179,177,117,182,5,43,75,135,66,117,60,16,51,72,138,100,146,125,
239,45,74,172,148,224,135,187,127,195,182,14,38,25,101,235,221,29,110,55,175,237,249,210,214,159,101,113,91,195,184,155,217,185,55,200,149,87,103,201,121,199,16,242,225,59,207,51,157,219,36,33,255,197,236,38,58,48,116,35,6,59,131,198,13,245,171,232,180,255,170,60,42,117,110,16,42,140,65,62,25,95,6,49,28,209,161,38,15,180,243,195,13,248,134,53,40,171,13,109,37,133,6,14,181,66,37,239,252,95,229,203,246,233,54,21,126,73,47,15,117,65,225,249,227,240,233,15,115,132,168,204,110,80,190,64,61,223,45,91,235,127,119,75,166,229,253,6,39,154,229,59,117,22,42,237,245,216,166,225,133,105,7,35,129,250,0,97,136,19,70,132,156,24,96,88,51,17,238,77,105,182,104,254,61,241,1,46,169,141,209,29,104,26,146,225,37,176,32,41,164,35,239,194,183,194,216,61,52,248,29,179,137,197,156,97,60,142,90,207,28,51,204,156,0,124,139,153,114,12,139,111,28,128,188,105,124,242,152,177,246,31,65,3,33,46,185,11,72,74,127,140,213,12,36,68,
131,187,52,222,45,6,81,87,104,7,95,187,0,43,225,102,219,212,197,50,154,116,217,216,158,223,209,53,99,113,236,237,206,143,207,18,247,78,62,223,1,17,127,235,171,190,188,98,186,120,55,200,29,6,41,14,32,226,27,134,228,134,12,187,103,13,41,242,253,190,143,67,43,203,96,202,69,176,213,200,147,27,76,199,238,48,147,75,80,90,55,43,155,143,98,184,189,170,123,210,28,82,42,147,250,24,13,176,214,252,225,83,118,76,182,113,133,117,255,21,59,149,218,85,67,136,171,71,245,254,249,37,72,12,175,37,70,129,60,90,153,26,133,161,58,11,206,62,251,254,144,109,99,183,7,210,69,35,138,53,157,3,12,158,176,130,128,32,22,88,60,25,148,236,19,244,178,48,77,99,3,142,142,159,82,155,150,93,232,129,112,141,101,162,108,208,96,158,226,194,42,200,89,178,242,53,241,76,188,71,109,187,82,22,186,227,249,121,131,117,114,142,85,86,191,206,194,53,172,216,148,14,143,171,98,174,167,235,180,206,132,93,248,88,56,94,146,235,117,202,84,30,188,7,143,161,
4,72,4,225,200,167,106,157,77,217,126,177,172,203,150,26,195,94,161,255,90,173,213,69,107,233,194,159,206,49,188,11,128,98,35,196,199,4,205,141,126,136,143,71,209,71,63,252,21,58,149,246,117,141,149,26,23,197,188,177,90,248,179,97,0,230,188,195,42,44,93,109,110,187,51,67,89,179,172,90,204,165,209,97,70,110,14,7,129,87,78,127,5,19,180,60,139,28,77,161,200,20,1,93,6,5,177,1,103,30,42,129,156,206,55,220,183,234,109,140,161,215,161,79,186,121,53,212,175,100,69,169,52,241,127,165,97,34,128,10,54,196,130,176,165,102,23,212,239,226,78,68,255,200,163,82,84,75,79,110,178,102,110,205,137,135,155,192,248,234,105,138,0,12,132,57,193,118,121,27,199,78,46,34,65,1,99,96,138,0,204,231,114,71,38,164,158,76,41,180,115,218,238,213,146,107,90,208,18,111,66,17,179,141,76,39,215,8,198,117,196,193,151,37,224,144,158,237,9,151,252,8,48,197,1,233,121,255,18,233,117,52,208,9,64,72,72,52,21,35,80,95,241,217,77,68,
126,1,134,37,247,13,244,249,123,145,240,162,123,111,19,203,203,144,68,44,105,63,54,192,85,202,250,208,126,115,65,128,16,85,0,224,222,75,250,218,56,14,223,246,108,19,244,24,167,192,185,53,56,47,195,200,199,55,146,30,90,135,47,223,93,8,194,24,244,149,23,212,137,166,145,209,163,205,191,9,197,246,182,125,215,190,91,0,123,108,33,210,198,243,27,126,109,122,22,103,244,175,54,143,161,234,251,33,244,89,76,161,169,156,21,49,217,33,63,213,115,172,208,175,82,46,131,1,96,140,81,45,247,83,242,66,63,93,72,99,108,33,199,147,64,32,16,237,224,253,167,12,115,46,255,48,108,157,108,176,46,181,105,197,69,43,219,126,167,130,1,48,69,160,112,169,71,241,140,241,85,150,200,20,108,40,104,24,227,22,25,56,38,176,236,215,218,16,9,252,22,68,137,14,103,21,62,220,22,102,15,201,227,122,57,39,22,231,228,221,5,137,107,90,48,113,208,164,77,162,28,138,92,179,96,2,158,123,183,232,87,138,214,117,64,45,198,31,205,154,155,101,173,118,199,101,
235,152,154,52,190,81,43,203,41,85,178,190,119,212,239,156,84,40,248,65,32,31,143,151,205,126,222,152,66,190,88,105,52,154,235,21,164,14,18,76,12,121,185,60,48,123,168,221,173,167,187,121,94,207,206,90,28,237,76,139,214,172,52,126,107,161,62,125,214,86,47,55,211,9,132,145,23,246,59,37,45,158,133,160,20,209,229,34,251,121,50,147,208,134,254,221,188,43,76,221,80,226,181,189,20,214,147,74,125,241,173,53,29,91,121,106,41,16,192,2,91,236,124,28,122,113,106,202,123,82,121,194,58,222,86,65,217,131,179,144,46,241,28,39,72,232,188,191,101,101,178,31,237,83,197,64,16,26,201,7,217,24,132,2,91,133,81,131,47,113,187,7,76,48,184,155,46,130,80,139,5,9,54,202,21,65,18,209,123,112,16,28,213,80,19,232,142,76,191,41,69,5,203,255,141,184,208,191,61,32,202,54,232,74,88,171,43,18,137,19,212,255,174,19,34,175,239,34,167,246,67,32,141,77,254,12,94,155,97,0,117,57,57,245,80,50,22,78,199,54,182,75,13,3,76,116,
118,68,85,58,34,35,12,213,89,122,126,190,151,127,80,218,53,66,234,144,111,176,220,135,172,215,75,208,14,220,203,220,202,89,10,4,136,72,75,223,75,216,32,235,194,61,212,86,119,158,116,174,239,47,151,153,111,67,124,189,95,174,176,24,35,9,110,230,95,17,10,130,100,245,225,0,76,56,65,26,199,201,180,99,132,4,77,140,126,25,242,243,100,109,226,6,171,213,2,70,82,40,136,209,138,88,204,162,16,138,232,62,8,176,173,122,218,47,153,83,142,102,38,7,219,83,10,105,136,213,108,204,171,40,119,165,191,163,219,96,180,105,217,121,21,8,232,55,236,229,173,96,138,128,237,10,58,20,110,235,91,35,67,48,106,44,134,104,46,202,49,245,42,22,183,60,6,62,75,167,63,30,196,12,20,253,181,51,248,66,170,224,207,160,193,135,94,63,61,69,235,39,210,189,149,139,49,237,113,162,102,88,146,240,187,131,236,25,26,218,140,31,31,131,41,22,55,150,170,88,59,196,212,208,253,126,88,13,60,231,249,249,30,69,11,231,15,120,249,7,3,60,84,8,14,173,
9,82,130,60,110,26,185,168,191,18,115,228,108,33,144,138,62,73,62,32,68,189,77,106,88,3,65,100,141,16,215,117,167,43,30,187,200,69,31,121,129,225,46,249,160,245,96,35,192,165,123,188,179,117,173,223,133,192,48,0,241,173,246,138,55,53,93,90,115,99,54,194,91,134,121,83,162,234,247,101,13,44,135,251,209,109,177,7,254,94,151,191,211,240,47,48,251,187,237,118,55,65,228,123,19,16,114,174,19,251,114,57,47,65,24,47,185,140,141,89,78,38,46,231,4,73,32,108,221,209,39,101,23,26,189,78,21,223,231,146,136,254,194,99,194,60,46,115,29,194,207,125,39,144,107,17,132,198,165,217,91,173,181,11,85,114,190,217,172,21,67,156,51,11,123,150,118,112,82,39,68,59,126,103,164,239,100,70,234,197,73,71,240,26,155,86,184,180,14,124,107,201,228,242,214,172,166,104,217,84,40,56,221,130,100,139,197,181,55,109,151,22,129,27,231,1,234,159,233,73,170,239,18,157,111,191,197,117,155,138,2,86,181,251,154,216,184,210,174,160,27,63,16,71,78,31,
71,59,136,84,172,4,95,38,11,45,148,82,137,36,115,48,132,67,34,3,130,50,128,150,4,107,2,77,48,63,166,142,183,9,123,239,42,248,95,1,196,113,95,182,118,160,38,99,255,226,98,62,97,178,255,134,97,145,216,117,52,128,103,140,149,36,250,20,141,54,24,255,8,97,139,81,13,46,68,12,199,95,66,57,63,139,63,239,39,76,179,62,133,105,176,91,152,108,64,243,157,4,137,161,103,47,51,134,150,48,105,228,65,111,197,227,179,0,218,232,84,238,82,151,111,170,58,76,106,185,242,1,247,130,185,220,218,159,159,165,231,33,17,7,247,95,88,184,90,70,198,161,45,95,2,132,226,50,145,202,116,194,241,129,239,12,246,44,131,223,35,232,121,17,12,195,121,159,15,134,168,85,215,48,3,96,181,128,93,63,220,213,52,197,101,219,172,30,64,50,24,210,13,95,208,176,33,12,198,106,251,67,130,143,119,180,236,236,28,144,78,165,169,31,225,233,25,24,195,187,226,6,24,49,114,245,65,68,163,212,240,205,16,72,195,106,57,84,150,162,120,23,229,251,100,186,
239,5,169,157,28,70,93,103,125,148,63,152,190,39,119,92,65,152,210,153,218,139,160,121,185,202,253,24,109,120,22,226,21,163,35,57,0,74,1,15,227,240,162,84,30,76,86,211,65,134,50,64,122,0,117,28,249,180,129,134,75,242,137,16,235,45,57,32,117,207,114,100,32,177,103,128,69,129,140,153,53,116,36,144,230,151,140,89,50,234,102,58,197,107,39,135,110,109,179,2,26,33,201,195,230,20,149,96,237,40,119,21,160,112,110,128,231,182,133,230,161,2,37,200,14,79,189,93,103,98,96,182,143,49,187,151,251,193,116,172,182,119,198,209,111,178,186,54,194,49,167,197,103,211,87,66,50,125,198,98,89,79,56,12,219,121,199,70,185,218,107,90,35,24,213,122,185,236,105,240,79,103,130,41,198,208,115,228,151,128,101,127,58,67,4,205,135,139,216,42,116,180,130,238,200,119,100,248,64,54,219,240,115,80,234,84,14,209,137,58,170,52,228,14,108,13,143,63,219,46,76,182,203,219,90,54,57,73,206,178,157,98,171,209,75,21,122,187,232,219,105,209,117,229,206,199,
157,163,112,87,238,171,1,217,208,44,30,124,123,222,227,215,206,209,131,60,107,133,182,225,219,51,1,3,13,211,11,91,131,68,224,102,183,1,78,134,2,203,109,68,78,185,43,236,30,176,131,145,243,92,233,228,140,149,95,204,50,249,196,145,5,152,242,207,103,151,67,147,118,7,216,239,109,29,114,190,209,168,32,16,60,129,96,249,171,171,145,164,240,58,162,67,69,227,206,67,102,86,191,234,191,151,167,167,20,72,218,33,171,70,198,124,240,204,4,248,4,97,36,84,255,252,84,107,248,124,54,188,73,53,115,69,129,249,33,118,62,152,204,14,238,141,107,134,188,203,96,54,60,6,6,74,32,48,207,219,65,92,209,191,172,183,100,117,20,109,204,107,119,127,236,255,247,193,40,180,4,32,185,121,72,233,208,100,40,194,236,180,63,134,105,52,230,58,244,117,103,134,7,53,113,116,84,199,109,245,143,183,254,132,9,40,17,20,170,254,65,147,22,149,132,164,72,35,85,153,117,95,0,26,192,209,56,95,80,3,180,233,156,194,87,158,56,202,51,115,17,174,67,110,210,208,
136,88,77,29,255,21,144,0,15,38,162,3,220,55,112,108,229,136,120,83,247,44,94,134,97,23,204,126,93,89,185,158,247,207,152,57,94,145,254,216,52,141,130,141,59,240,107,110,147,24,114,157,70,196,17,65,59,18,114,160,233,239,66,149,44,91,233,160,11,23,120,169,64,117,171,241,142,95,76,149,57,244,112,113,92,74,118,159,206,123,52,216,93,80,231,216,187,185,151,74,191,132,86,29,176,10,65,96,133,134,68,231,224,141,109,23,216,67,111,153,21,144,35,7,2,237,195,94,132,242,56,57,170,46,60,110,25,205,36,232,52,174,230,77,42,248,228,236,161,78,103,155,6,244,35,10,94,157,234,55,135,248,218,183,221,127,218,27,218,4,20,16,38,127,208,105,217,43,9,210,164,53,3,225,63,151,243,55,213,190,227,77,114,74,3,14,230,11,69,36,173,130,130,175,115,10,34,6,221,174,244,219,97,183,57,109,102,84,217,239,170,120,13,139,249,140,55,171,93,237,214,207,213,102,91,112,56,45,122,139,221,106,178,91,173,6,167,117,94,175,59,220,47,252,227,219,
12,130,93,190,16,164,11,126,178,105,188,244,108,57,95,33,12,35,251,225,230,4,142,87,194,114,137,115,53,223,45,224,28,63,142,151,163,59,49,156,249,205,140,167,64,32,114,142,22,82,97,152,163,80,179,183,107,205,37,70,177,93,169,55,75,77,114,169,208,233,180,122,213,65,115,175,23,78,62,217,253,47,252,110,196,39,104,63,65,75,227,55,85,190,160,181,198,8,6,140,34,130,154,189,84,246,184,11,95,119,166,229,207,53,188,246,82,207,95,111,235,220,13,203,202,254,215,249,9,197,142,47,32,32,197,174,233,207,157,225,41,158,148,116,21,1,160,162,58,174,246,6,158,112,239,17,47,51,67,237,215,164,5,244,32,114,155,35,11,28,110,244,96,170,167,231,134,202,178,244,164,239,198,110,187,174,79,255,63,253,36,222,205,26,196,233,30,43,11,4,253,158,227,144,32,254,52,157,233,221,107,48,220,169,90,186,147,214,0,185,116,5,233,244,38,46,19,228,103,50,23,182,169,15,83,254,197,14,13,137,23,153,92,247,125,96,147,71,128,117,129,91,96,169,57,238,
66,253,87,64,137,3,33,82,195,219,163,221,220,66,174,231,136,110,247,12,118,230,237,17,148,105,72,4,4,6,55,2,105,11,20,86,102,65,192,3,3,11,140,179,92,94,19,10,152,177,255,72,124,90,253,98,179,61,117,133,42,152,77,113,65,226,14,76,81,128,132,144,77,35,243,187,125,152,158,190,31,146,118,149,119,4,184,242,28,206,105,183,206,124,42,56,168,237,39,87,111,247,206,69,75,175,222,240,105,25,103,30,24,29,7,65,179,236,28,123,47,63,200,249,159,71,15,196,225,187,242,191,164,173,239,1,155,146,117,234,8,10,127,227,148,8,117,17,185,199,171,151,137,138,237,37,175,93,202,0,73,125,171,233,215,216,143,71,104,189,10,155,255,156,154,146,158,198,102,32,90,112,154,169,239,212,79,52,50,151,6,125,241,3,192,8,238,209,0,76,59,241,118,28,215,169,161,110,139,74,37,117,76,3,32,245,184,158,199,33,148,94,37,222,189,105,198,117,218,183,19,106,215,4,162,165,68,108,5,255,100,10,144,57,200,73,49,37,14,50,125,69,144,59,243,192,
171,125,78,82,57,10,20,157,238,143,88,5,16,49,106,192,200,110,14,50,128,236,35,248,86,246,219,204,218,11,255,2,198,119,102,249,4,132,70,165,214,102,251,26,85,38,153,199,34,202,131,203,96,149,94,163,245,42,254,109,85,138,197,105,53,203,255,235,137,151,11,19,129,120,34,16,174,55,2,129,13,191,31,193,111,215,246,209,201,124,217,251,99,243,198,25,197,201,104,190,170,92,42,17,211,121,175,93,43,230,223,78,190,205,164,112,189,74,209,239,92,206,78,14,109,50,84,114,243,238,36,122,24,58,16,202,87,43,197,94,191,218,42,148,11,7,35,227,54,114,231,182,31,101,235,179,91,54,228,61,245,193,247,109,182,14,62,31,234,20,46,221,227,157,76,162,144,11,239,119,203,121,75,162,91,137,196,43,15,215,187,210,104,177,128,49,52,236,212,189,30,223,33,2,5,147,202,174,84,234,126,54,55,165,230,196,218,227,71,78,245,186,191,173,154,118,127,95,123,58,30,59,239,192,141,48,49,194,86,148,114,137,244,185,185,127,112,24,128,54,207,104,104,245,151,223,
220,81,174,38,98,204,255,146,186,71,238,83,180,158,106,143,210,120,0,155,215,163,210,128,184,111,218,75,13,70,90,22,36,119,33,74,167,18,168,181,129,66,111,31,55,213,89,119,124,126,121,124,80,175,120,65,172,227,242,224,190,247,239,248,211,109,242,47,177,163,110,140,98,115,79,165,55,36,188,38,12,45,136,85,134,1,60,130,86,4,125,176,239,185,222,169,119,222,11,239,219,189,177,141,174,162,35,44,76,41,193,160,203,86,134,157,46,194,40,92,162,50,10,18,118,94,79,1,78,154,196,241,252,157,46,59,120,209,218,91,144,194,169,222,215,25,80,44,0,239,112,236,238,105,152,39,47,32,44,106,150,27,107,164,77,107,174,92,253,101,65,142,211,115,106,38,137,114,238,255,93,22,135,187,45,113,185,134,130,126,197,59,87,54,178,198,186,125,155,224,79,108,190,200,99,140,214,89,207,80,95,36,38,229,131,160,8,15,143,6,11,136,36,180,44,226,203,171,210,102,23,139,36,23,37,175,43,107,52,92,116,185,101,42,108,226,143,229,255,215,199,99,45,234,146,9,
174,97,169,32,1,152,61,68,80,113,198,73,108,4,69,146,202,142,192,56,232,141,131,160,109,212,193,140,166,249,187,98,219,89,40,125,16,161,36,230,248,4,214,181,61,125,158,177,200,65,138,21,53,104,237,87,174,51,116,160,185,136,90,248,227,72,102,246,84,135,38,36,240,1,6,240,123,26,233,211,179,63,54,51,157,171,247,70,14,109,6,16,24,40,168,62,228,74,114,249,1,157,91,123,161,103,62,61,77,148,211,236,78,19,206,151,122,61,160,93,105,180,10,213,198,173,218,174,62,156,18,207,215,97,17,73,52,42,205,87,36,51,169,116,46,217,87,248,79,238,172,209,122,78,185,220,46,217,220,121,132,203,93,240,88,22,252,244,180,68,60,154,79,55,146,253,196,89,59,220,202,157,187,166,61,232,135,139,48,86,212,232,44,84,91,171,198,176,85,104,182,42,151,102,45,211,172,150,106,57,80,47,140,20,156,5,126,190,170,86,78,150,90,213,82,165,150,25,111,213,67,241,169,31,246,239,105,237,186,69,251,61,234,247,247,166,123,149,220,201,156,127,171,194,244,106,
244,23,126,166,188,213,27,45,203,60,95,246,20,240,128,162,196,44,87,50,139,37,61,23,119,105,213,71,196,243,207,205,243,235,127,8,242,228,97,202,184,246,2,140,233,12,170,204,184,50,133,170,192,24,167,115,140,138,77,70,55,147,125,158,231,227,82,219,220,63,31,107,31,239,132,147,56,15,206,127,156,134,220,68,107,165,193,205,255,170,255,252,237,131,99,204,111,234,7,133,132,244,172,70,65,253,65,158,244,224,75,161,11,16,64,2,139,100,144,10,108,82,165,69,114,115,43,50,55,154,16,244,66,187,213,157,86,113,253,24,239,219,112,0,57,255,151,165,126,118,80,6,186,203,48,229,85,201,222,36,25,13,51,166,44,223,164,183,241,33,243,69,189,6,57,96,239,84,217,62,177,93,208,100,184,1,110,101,35,182,109,31,112,143,11,183,207,16,37,79,6,55,17,205,45,98,140,92,128,134,255,209,1,5,152,189,47,2,240,189,139,242,78,232,124,109,149,173,31,194,7,145,94,58,129,234,230,155,44,222,119,239,35,29,110,19,134,22,199,121,15,96,154,158,177,137,
133,56,240,226,53,231,63,177,17,78,141,26,111,155,211,227,70,116,87,41,143,106,119,127,50,132,180,241,158,117,85,126,131,55,70,217,245,23,135,248,208,130,108,176,240,51,101,55,81,242,245,80,242,40,151,119,217,86,133,195,50,146,70,226,152,130,9,4,132,117,48,49,242,7,210,155,251,44,241,180,246,74,158,201,212,68,196,228,24,136,209,106,56,79,195,237,129,85,74,97,154,50,167,253,10,68,110,157,122,87,226,172,180,69,84,64,0,198,131,246,192,247,30,249,241,236,181,19,156,8,25,145,254,98,72,134,223,34,81,91,220,209,99,40,169,110,212,65,97,214,32,54,97,211,71,102,190,40,227,93,89,34,101,91,111,99,39,81,219,189,175,179,73,212,97,178,24,229,219,197,118,184,222,174,86,43,173,14,163,210,106,212,26,189,242,160,127,182,155,31,167,165,103,178,120,92,30,114,254,158,175,215,122,197,114,249,218,109,22,231,179,217,250,119,254,195,94,241,56,115,9,151,179,96,115,87,63,230,117,13,119,182,159,56,43,206,243,108,237,172,105,97,56,29,221,41,
177,242,95,161,247,223,205,81,138,190,94,167,73,44,85,137,245,86,151,216,26,235,117,253,45,169,122,189,214,112,84,134,234,217,86,177,90,41,212,74,237,173,83,69,135,1,42,237,173,184,223,122,194,83,233,105,202,109,181,41,191,87,175,16,249,168,159,232,150,157,242,49,137,11,128,40,165,112,105,159,210,99,49,207,186,26,223,77,12,215,24,188,51,149,115,201,110,102,167,101,164,236,97,90,171,213,146,63,130,221,241,204,185,48,235,252,231,74,123,104,223,62,50,228,110,183,126,66,188,174,202,118,187,108,49,220,158,148,125,189,190,147,194,183,2,146,222,219,210,114,114,10,112,11,215,107,195,38,64,253,59,143,156,145,145,11,88,161,241,76,183,113,14,213,164,9,51,37,40,179,220,106,34,176,31,79,178,206,112,252,237,210,128,204,80,77,187,97,224,42,129,188,195,213,126,230,229,185,126,71,155,112,221,104,67,27,244,101,17,46,61,255,17,94,120,234,189,189,65,135,236,116,33,162,200,155,242,150,105,101,74,185,178,18,238,150,236,228,11,52,145,228,150,15,159,164,
111,121,118,116,110,47,63,162,193,42,199,233,94,46,112,45,66,62,233,72,195,52,204,122,253,220,101,174,18,203,246,119,136,185,9,119,75,221,205,213,153,45,247,177,190,209,249,254,90,89,182,107,137,52,16,65,115,189,145,2,9,60,64,98,8,148,116,113,190,109,86,28,150,202,90,77,134,246,239,63,63,247,88,86,217,93,57,127,108,177,233,207,63,25,132,137,34,171,78,63,130,236,198,49,115,82,138,67,100,33,233,250,13,66,215,199,191,88,132,62,189,143,102,11,23,226,23,49,151,129,161,19,57,235,2,110,252,211,88,47,153,49,88,89,67,26,40,118,49,116,246,161,116,242,178,220,15,162,24,59,166,74,113,94,57,241,104,57,10,231,246,140,240,248,84,166,83,18,161,64,160,230,72,233,172,65,71,16,242,142,2,240,77,217,130,101,209,233,148,3,8,25,118,38,152,227,216,73,143,76,108,148,242,237,96,30,25,65,177,213,242,195,43,37,163,109,32,226,19,129,111,247,47,223,233,193,138,175,80,163,18,57,60,63,239,124,254,226,148,136,28,95,139,204,99,242,
185,100,79,167,16,148,23,212,172,137,43,11,247,126,199,4,173,240,108,151,139,204,182,157,219,174,86,23,12,44,119,61,4,84,104,228,197,103,181,209,86,93,112,82,76,55,59,217,90,164,92,35,118,242,172,173,192,241,31,151,216,39,116,155,141,95,185,90,169,87,27,115,215,122,190,214,168,169,245,251,130,181,102,169,209,203,107,234,55,180,8,239,227,4,116,142,159,12,70,249,145,95,62,64,26,243,123,111,218,251,102,213,221,188,124,157,74,225,55,158,146,142,154,117,164,225,44,231,138,230,207,172,213,100,29,146,188,85,68,52,8,132,191,247,245,186,242,14,103,194,181,23,114,75,127,109,93,232,147,86,143,216,134,122,42,196,247,241,118,111,190,155,207,218,190,253,26,158,159,37,103,97,215,251,249,5,222,110,11,166,254,8,54,2,153,68,240,65,138,171,118,82,153,186,176,175,17,240,244,32,120,78,131,14,147,219,74,141,245,41,249,197,88,125,114,180,100,31,27,204,116,154,7,15,0,152,173,238,117,237,226,154,147,75,140,98,244,17,177,205,204,169,137,155,241,150,
191,49,217,166,232,198,187,35,5,163,110,107,255,81,184,183,31,208,11,97,119,10,205,144,126,27,40,219,145,72,34,148,224,144,151,167,191,48,55,152,68,77,32,224,48,43,1,172,251,242,26,146,1,190,133,246,236,106,183,197,2,97,138,103,191,124,143,69,46,53,222,255,32,186,180,254,166,203,100,176,151,235,249,133,37,16,152,233,170,87,38,174,145,236,151,89,234,213,32,120,74,24,153,213,214,145,227,92,229,2,21,106,219,179,235,94,210,196,40,67,41,57,73,227,144,226,232,38,51,104,40,245,7,137,112,119,95,26,128,35,165,132,47,52,144,208,19,251,30,136,92,51,71,173,45,211,219,101,33,125,137,70,182,223,56,212,69,27,47,222,4,23,48,141,32,237,70,198,243,182,65,12,150,110,112,197,20,5,126,89,92,38,37,48,250,89,40,91,152,176,214,15,182,136,240,67,77,126,106,12,32,9,218,68,15,35,205,164,105,89,63,220,52,180,141,216,91,103,17,61,49,198,53,32,116,190,107,9,39,93,68,194,140,166,109,133,21,66,171,26,189,123,243,207,231,7,
80,144,48,136,33,79,34,240,208,25,53,219,200,160,66,232,200,196,239,73,203,65,157,244,131,113,203,87,141,43,94,199,180,1,120,87,248,182,93,175,75,83,66,116,26,229,163,83,126,26,85,64,19,50,84,201,164,96,115,81,104,53,11,141,214,177,94,47,202,118,59,123,135,227,122,59,143,143,207,157,21,130,70,9,193,254,112,74,56,108,80,99,88,146,216,62,119,215,84,224,53,29,241,125,58,183,87,174,50,75,219,8,80,24,120,255,46,215,70,40,146,199,205,208,92,182,38,224,139,16,140,74,191,124,124,20,200,89,64,65,172,63,88,109,149,16,178,0,120,7,144,162,208,116,43,237,42,191,133,202,239,52,185,28,138,208,161,72,35,254,188,74,249,93,154,231,137,144,186,102,239,86,180,32,217,134,127,35,241,202,234,175,38,206,15,214,105,199,107,219,56,184,8,165,6,27,11,199,238,62,6,118,208,71,102,148,209,158,74,255,216,238,27,217,249,143,121,233,255,36,253,99,61,244,43,15,138,95,37,166,47,200,20,148,75,140,173,215,46,194,247,203,116,168,62,178,
45,195,109,97,5,91,253,113,123,80,121,230,78,10,98,203,102,237,253,160,185,7,183,117,183,215,43,159,108,188,88,225,183,240,199,211,38,87,63,242,207,160,61,183,96,80,2,180,69,12,213,65,25,146,222,133,223,206,255,48,218,16,216,1,192,192,211,89,149,234,171,29,152,34,84,206,206,11,151,15,114,109,177,203,185,204,39,168,18,143,129,241,247,187,203,235,88,158,64,230,47,162,24,236,206,49,79,6,97,119,245,239,58,15,24,220,55,85,166,169,86,118,196,177,125,41,78,233,185,48,0,65,124,89,122,184,52,238,244,26,113,25,58,39,230,94,50,147,168,50,94,8,158,65,106,195,170,89,181,75,108,185,172,118,100,135,202,127,40,176,124,61,238,148,152,28,136,130,219,245,150,14,20,182,29,147,227,247,99,131,176,241,232,166,154,69,233,34,217,174,164,128,115,23,16,21,64,34,38,58,198,222,49,140,149,37,118,98,245,244,207,160,213,50,226,64,31,124,111,193,133,235,135,71,80,116,105,155,195,61,236,178,84,130,106,152,118,178,197,187,10,60,126,172,174,39,
68,162,213,99,84,102,83,68,84,214,215,179,26,151,116,8,156,191,30,121,136,150,247,210,149,1,45,79,223,83,210,201,193,63,180,41,173,13,192,98,80,52,242,231,15,4,158,17,253,242,137,71,126,250,60,86,108,80,57,232,84,28,131,200,118,238,151,159,221,198,170,217,230,119,95,6,31,59,136,216,181,97,114,155,172,122,178,253,98,181,218,107,21,80,149,246,85,41,149,170,153,86,173,83,43,148,138,143,74,175,82,106,116,234,175,50,26,16,74,27,121,78,161,185,92,9,70,248,19,23,226,253,183,172,83,255,214,255,150,113,71,11,233,100,0,120,224,243,126,111,227,184,124,42,88,111,10,183,186,176,127,39,212,57,156,19,115,25,138,204,156,165,153,243,126,188,214,86,30,248,166,92,151,141,109,70,226,194,173,54,157,169,55,130,78,79,123,166,241,213,73,32,129,231,171,81,120,44,178,158,164,17,183,61,154,255,251,180,46,74,110,250,225,147,139,53,135,5,91,82,207,210,201,164,66,239,93,236,250,206,158,222,190,83,253,251,51,174,148,201,200,4,159,73,145,196,
11,225,184,120,55,104,4,94,95,166,51,16,40,11,98,196,70,143,250,174,228,131,56,153,120,67,115,132,50,142,235,255,70,11,231,90,198,200,230,4,206,9,80,194,253,222,236,217,219,24,113,110,139,160,227,245,11,72,22,0,26,64,170,216,107,46,194,236,223,178,34,220,84,72,248,203,9,196,113,188,50,174,132,82,29,158,49,149,142,87,170,235,198,139,235,158,141,103,110,195,238,159,22,70,218,85,180,49,118,228,218,18,65,160,175,239,125,199,186,169,162,233,57,209,237,194,242,44,32,129,227,173,168,243,116,98,118,2,117,39,13,51,55,134,13,27,78,247,197,161,174,22,0,225,31,202,165,100,216,188,230,52,192,22,139,199,95,206,150,167,173,250,210,189,95,53,111,177,247,241,62,194,95,241,169,204,208,98,109,107,151,14,167,207,102,46,103,244,181,242,254,140,111,167,65,232,64,54,151,0,192,69,65,207,177,207,162,145,184,11,6,6,31,129,141,29,103,123,3,41,0,47,116,224,162,148,228,28,164,127,10,100,54,235,93,74,105,169,9,131,107,209,231,238,49,202,
113,96,114,23,145,138,39,48,65,66,21,136,250,5,230,190,79,234,189,219,145,6,8,28,37,29,11,16,19,184,191,239,168,242,97,109,140,74,237,63,200,111,159,248,14,222,192,184,228,88,71,179,235,39,67,17,181,149,1,107,96,29,37,219,80,13,90,165,235,200,122,112,184,30,68,84,109,38,113,122,99,248,103,234,62,20,140,172,117,143,196,2,26,95,230,137,49,173,64,119,250,123,96,169,198,71,225,79,137,61,75,32,199,101,3,23,160,196,92,55,242,180,106,116,31,31,243,78,221,13,175,247,242,205,78,167,71,236,86,43,96,99,120,15,220,239,243,232,248,126,6,214,231,117,184,19,62,246,75,37,4,28,191,246,250,59,174,1,40,43,244,157,184,123,225,88,160,86,94,123,245,252,84,177,173,184,107,151,83,249,31,111,128,175,246,10,152,45,184,180,13,22,198,252,159,37,35,57,201,230,210,103,175,16,25,255,248,164,82,161,237,43,101,234,191,61,91,217,86,155,187,22,216,71,224,209,225,92,254,22,202,30,100,39,116,216,126,4,254,29,42,140,88,20,135,80,
162,105,120,44,192,192,247,33,4,34,58,140,220,223,88,145,240,88,136,130,254,201,97,174,155,208,72,250,81,53,164,56,230,200,250,3,159,55,62,52,15,223,176,86,197,88,164,122,174,72,7,68,191,18,152,133,96,150,247,254,228,10,241,129,255,208,206,243,6,162,130,50,132,106,29,42,195,85,245,127,19,102,113,30,109,253,191,41,79,141,228,138,7,141,163,103,145,29,139,107,109,57,209,111,61,55,174,213,73,58,129,28,41,210,4,68,97,220,179,72,253,179,245,193,178,16,188,164,144,9,102,245,131,17,175,185,74,169,115,29,102,202,28,228,179,49,234,68,111,139,80,88,225,229,147,137,195,35,15,208,164,41,21,71,233,8,64,216,137,100,25,234,59,57,166,177,255,209,247,111,4,61,229,37,184,179,65,48,120,45,132,211,64,145,159,31,247,10,173,95,115,41,89,205,22,135,207,50,21,167,245,250,76,179,74,205,91,0,47,245,191,158,185,247,212,127,178,190,121,223,149,134,189,81,21,106,11,122,237,245,88,142,245,160,175,205,226,218,236,165,86,71,101,174,194,45,
105,254,127,144,50,74,197,127,66,62,69,82,195,149,2,1,60,113,182,82,53,100,224,245,118,164,12,51,123,177,51,71,109,34,80,95,2,155,107,183,185,199,71,20,49,8,182,24,215,86,108,250,16,39,141,12,23,171,74,193,97,143,183,166,18,103,47,71,59,237,60,133,53,171,117,139,101,202,62,141,195,78,46,114,105,129,46,100,253,27,162,239,146,23,241,109,83,37,241,17,219,81,34,4,138,196,148,121,97,104,76,118,176,242,219,3,224,215,243,216,242,209,160,252,210,128,65,26,97,214,196,71,201,36,194,187,206,145,10,69,72,228,249,227,203,145,135,213,50,97,70,216,239,67,237,124,214,49,98,222,204,30,253,245,114,59,123,185,132,126,165,85,226,208,252,29,209,172,8,94,26,29,211,74,82,90,133,86,177,86,220,103,28,46,163,213,174,121,46,174,206,237,166,132,90,37,146,112,244,55,171,141,235,253,248,142,159,23,178,116,181,94,167,211,29,24,86,90,179,133,54,227,188,82,39,92,212,5,207,121,184,184,232,250,28,93,127,207,81,0,62,105,138,90,178,69,
238,63,101,43,165,186,53,170,95,125,191,159,82,209,70,220,197,254,146,39,178,100,149,190,248,78,224,201,88,211,244,8,37,37,225,243,156,148,71,131,68,240,126,40,51,23,236,51,141,95,107,132,20,32,70,168,111,81,192,211,213,127,206,181,3,97,155,90,96,252,150,202,107,129,253,199,50,139,69,131,91,219,26,181,89,62,111,211,141,128,125,237,187,83,252,29,60,6,28,87,231,52,130,159,95,107,182,84,25,201,124,83,12,1,21,49,254,118,50,86,229,69,129,153,1,246,17,221,146,212,71,7,32,148,248,164,200,232,165,58,127,45,177,15,179,255,247,65,19,207,26,84,106,164,197,151,99,69,227,36,47,227,101,169,225,44,1,136,245,131,203,245,162,243,207,180,1,88,2,157,218,246,128,145,127,251,193,103,21,83,94,61,123,211,244,169,30,90,187,194,179,59,100,187,196,63,164,251,184,183,188,254,215,255,87,9,215,86,25,136,229,6,236,156,34,187,129,206,229,128,165,179,174,32,134,1,65,76,120,242,187,229,103,98,210,207,212,17,35,6,25,77,121,25,213,156,
223,49,174,255,8,225,200,185,180,49,75,206,168,81,50,191,13,158,165,242,177,213,41,149,183,147,221,147,251,222,175,135,235,151,62,87,222,12,249,162,233,183,83,241,246,90,246,186,165,185,81,168,55,10,37,132,197,236,20,205,41,117,51,11,195,43,28,68,82,104,24,5,145,181,105,90,73,1,154,72,21,5,72,144,207,198,193,10,151,98,251,31,164,12,13,240,75,43,19,144,122,31,202,60,84,73,56,51,217,202,15,68,9,5,84,130,72,99,24,20,4,211,68,153,74,111,49,85,16,87,233,225,40,150,128,189,115,178,208,160,173,27,4,255,186,36,20,110,157,47,113,98,52,24,8,26,97,17,162,144,164,138,64,21,91,106,181,0,198,224,93,212,99,67,113,21,89,2,166,19,196,132,36,236,59,211,48,162,185,135,27,25,113,244,250,247,25,117,5,198,96,104,5,41,102,6,45,26,144,117,156,105,146,144,141,220,13,130,89,78,124,193,194,247,241,152,144,115,82,1,164,152,27,19,125,0,55,178,88,254,87,230,110,142,154,77,28,220,91,20,6,123,14,75,159,201,
202,91,32,92,248,131,253,112,53,150,0,14,62,41,2,158,208,243,61,165,179,115,198,47,255,185,13,182,19,57,211,250,217,213,95,182,99,158,17,197,66,71,211,31,172,45,157,78,99,77,127,210,20,93,99,176,186,87,211,201,150,245,206,62,251,85,189,25,83,38,119,254,188,222,109,244,150,67,85,90,180,239,46,97,58,151,211,149,201,86,219,254,107,155,230,92,75,44,166,234,106,161,73,172,114,38,6,145,45,134,34,241,1,19,203,40,28,203,65,155,132,79,202,202,68,123,9,39,230,13,163,106,115,22,252,153,5,124,16,186,105,22,153,67,150,65,32,182,11,2,2,144,192,178,16,247,147,209,121,217,38,142,5,82,11,202,101,40,153,32,27,204,228,70,155,109,227,185,219,46,13,157,211,219,249,62,65,164,90,251,174,109,40,186,200,172,212,202,253,199,40,126,85,84,186,114,232,239,231,217,219,122,12,32,2,10,138,157,197,130,160,117,10,14,193,228,252,230,193,182,202,124,164,189,70,95,218,221,123,124,19,231,195,232,241,193,24,156,233,9,34,41,184,255,128,12,
234,233,98,192,53,72,191,224,245,120,144,46,66,119,82,135,159,135,67,158,6,136,234,17,134,167,95,21,49,180,231,222,158,130,173,191,83,218,5,27,125,64,185,142,206,17,199,100,244,159,223,156,98,229,197,101,233,1,120,0,155,196,0,25,102,42,151,246,175,152,222,97,233,65,155,66,67,161,251,104,128,165,114,69,57,19,56,8,249,45,5,169,25,240,100,250,150,48,128,81,190,238,89,1,51,7,179,215,98,9,127,58,76,30,43,59,169,146,247,6,123,223,228,12,164,251,25,37,54,137,114,55,20,232,38,214,9,4,156,36,115,70,174,25,45,72,199,89,218,74,198,229,114,218,181,166,227,5,74,61,255,9,245,169,114,37,165,165,202,237,143,189,63,222,94,127,98,51,143,136,143,43,134,208,255,50,212,183,56,95,140,242,76,255,25,238,165,202,191,83,96,119,23,140,98,169,81,139,56,242,36,177,71,195,34,30,140,80,215,112,121,58,188,35,208,143,216,50,129,9,92,141,124,236,205,122,224,6,215,53,219,115,40,2,186,140,4,98,6,111,203,215,94,243,123,176,
3,84,4,241,188,238,33,17,84,3,3,157,100,143,0,247,195,89,160,65,20,94,147,195,255,254,98,94,182,7,161,141,208,113,136,48,140,16,174,204,100,211,255,253,40,1,173,60,120,111,178,36,65,207,24,63,216,133,207,229,56,123,173,52,15,31,61,93,215,226,73,51,183,32,64,100,142,85,198,198,79,224,186,131,137,67,164,157,136,148,249,139,15,157,159,186,142,147,204,73,223,78,137,155,107,60,198,94,212,0,36,167,34,31,57,32,70,217,70,54,4,130,65,206,31,52,43,152,228,83,167,164,177,41,209,21,127,35,11,103,93,41,38,46,169,100,107,72,44,162,167,202,7,84,140,173,44,45,169,204,110,6,201,180,74,136,193,176,240,55,184,146,122,225,166,80,65,97,22,203,193,48,104,59,24,95,88,28,49,8,76,89,161,86,215,230,217,193,3,181,77,194,8,241,151,119,23,150,55,197,242,115,188,239,222,109,187,29,234,5,254,183,57,211,120,147,133,128,127,167,27,89,126,99,37,173,112,132,18,0,38,130,246,127,96,145,161,49,200,115,237,177,173,89,98,60,
124,193,160,15,184,45,222,240,223,219,63,18,223,169,45,251,162,236,145,184,172,32,54,243,179,70,164,127,93,9,101,168,254,45,139,220,124,94,202,35,191,235,221,85,27,186,148,120,190,108,144,219,102,198,40,140,107,22,15,13,38,230,38,112,46,164,135,244,247,25,199,254,62,233,51,217,31,138,29,39,112,91,13,42,47,75,18,27,129,120,111,250,92,4,28,149,222,199,169,242,243,140,162,130,41,222,190,245,95,1,132,97,109,143,37,1,177,124,88,48,176,111,1,22,14,22,227,65,127,98,108,103,6,207,184,181,215,94,141,118,203,205,100,133,25,44,65,98,222,247,15,166,97,42,242,46,8,54,230,153,172,67,135,112,81,229,230,206,176,58,23,242,12,31,221,74,136,207,26,70,129,145,98,208,17,218,82,91,141,110,203,30,222,28,59,65,145,85,255,154,114,219,117,102,53,134,103,206,38,225,20,111,12,251,27,44,186,100,213,239,64,45,158,37,157,187,255,70,255,50,127,238,166,89,65,142,142,110,221,188,99,238,112,164,216,1,112,1,166,20,197,82,96,159,52,244,
220,247,4,245,69,227,61,243,247,150,203,199,9,63,115,4,218,198,225,27,143,231,80,83,73,190,5,4,13,236,176,51,16,152,77,56,18,252,1,223,161,109,233,82,208,140,128,194,213,126,38,225,117,16,59,130,49,10,64,188,16,237,150,135,234,13,64,70,32,35,211,252,253,249,129,115,48,72,1,54,243,29,51,35,68,49,235,175,210,255,2,92,234,234,37,171,99,24,236,151,131,120,36,76,68,219,67,211,208,133,173,109,71,80,144,100,71,201,80,22,167,219,75,152,176,220,89,233,63,243,175,48,72,41,207,242,47,133,223,193,96,30,78,113,237,222,223,103,29,216,158,137,149,171,40,215,247,48,22,165,100,121,40,101,164,37,85,212,162,89,106,205,154,118,241,221,44,62,115,185,142,255,249,44,230,15,167,94,126,105,181,107,226,249,146,198,64,63,36,34,82,91,20,168,38,73,74,170,137,43,72,110,242,234,189,22,173,64,85,188,51,171,134,162,5,177,160,128,192,2,228,137,11,0,169,14,142,194,49,43,73,237,163,238,173,105,156,244,202,144,233,159,248,107,202,14,
139,149,182,199,163,222,239,127,39,177,54,250,4,230,18,11,243,117,193,197,240,214,221,78,146,48,157,170,160,175,63,181,160,176,180,253,70,109,70,240,81,204,212,72,36,50,210,190,247,202,170,194,42,219,115,252,152,121,56,234,158,195,123,189,250,63,7,239,203,225,251,14,179,79,199,30,112,196,104,69,100,194,52,117,123,237,16,211,187,16,34,149,144,77,32,0,186,124,67,163,137,153,2,34,116,129,142,22,53,47,135,79,133,63,53,60,4,200,33,175,73,206,80,100,181,201,49,32,192,232,139,135,166,110,214,146,39,64,33,193,85,159,228,235,205,150,59,151,155,13,38,115,62,9,28,88,216,5,109,187,229,137,77,121,129,199,225,38,101,2,110,26,194,197,220,194,242,60,174,39,88,135,0,88,35,118,4,10,217,199,58,84,47,134,211,242,117,73,181,47,69,152,237,197,181,189,206,72,47,213,9,94,155,213,179,72,127,43,139,57,86,37,94,108,82,78,219,140,59,106,154,202,254,143,166,29,10,186,95,230,218,171,106,209,200,248,31,122,188,27,233,148,99,4,5,239,
72,107,201,70,1,116,157,218,3,178,76,33,227,11,166,9,134,59,209,47,214,103,128,208,152,50,175,71,24,117,187,22,183,175,60,169,124,11,148,16,15,169,178,89,33,9,62,149,97,3,17,132,65,90,51,6,56,245,187,206,121,206,160,85,177,94,101,89,115,6,206,96,96,145,27,231,95,102,73,210,198,102,199,36,181,74,105,108,148,176,246,145,226,176,153,180,18,251,31,7,39,91,8,219,212,156,226,52,218,9,135,129,10,3,2,103,102,232,232,131,130,6,123,71,169,211,237,35,29,4,35,113,101,51,122,168,108,46,12,79,184,34,14,191,53,139,109,136,190,239,5,97,216,214,166,92,67,195,136,24,75,70,154,209,68,210,183,164,86,108,117,90,103,155,89,16,206,125,159,252,137,255,205,255,158,222,39,199,49,87,99,40,228,241,103,185,165,222,44,105,167,210,249,23,16,71,68,48,93,68,67,7,241,73,172,68,249,208,22,255,203,193,3,153,80,0,176,53,96,100,73,134,230,153,64,114,44,24,28,18,213,220,198,97,38,177,250,65,186,100,19,196,144,115,28,201,
159,215,22,140,243,90,15,72,150,96,248,120,84,35,186,111,200,210,1,125,40,77,116,95,84,94,69,224,170,162,222,173,203,250,26,50,78,44,8,124,107,74,253,29,71,236,154,6,145,41,162,249,11,131,133,24,145,182,128,127,231,125,55,101,222,77,238,139,137,199,227,45,29,131,95,187,246,106,78,48,232,207,208,155,112,157,233,213,180,248,100,53,108,163,52,210,40,51,67,111,230,234,106,143,197,85,160,224,52,240,6,198,234,243,27,78,87,213,23,87,76,161,111,48,4,131,22,154,0,130,126,173,41,253,52,162,46,105,207,12,55,74,155,78,20,48,149,253,119,255,137,79,173,20,113,193,251,51,85,99,224,47,55,13,38,246,242,6,194,125,61,115,116,247,234,46,191,70,203,165,79,108,217,25,34,38,247,118,17,189,215,8,243,228,166,35,58,193,201,68,197,57,192,179,83,164,22,89,226,239,105,143,16,65,58,16,205,74,11,231,167,198,148,214,226,23,176,187,244,27,64,82,226,226,55,135,189,250,137,216,210,29,87,40,108,107,234,105,54,69,218,246,157,168,127,170,
231,17,165,15,62,153,253,24,46,231,92,70,147,75,188,163,120,43,186,148,10,233,31,135,16,104,35,217,250,95,23,45,215,247,104,154,170,235,130,217,229,144,2,248,237,31,158,163,106,26,247,186,219,143,218,243,197,173,36,130,154,197,199,12,26,68,233,154,230,207,0,2,226,213,18,52,128,82,244,208,109,163,196,154,67,188,184,168,17,47,2,82,243,28,239,25,169,146,223,145,166,85,191,117,65,14,197,199,206,232,89,244,12,46,63,239,214,52,150,250,61,223,143,253,217,105,178,199,129,160,149,201,42,236,4,160,40,206,150,185,179,228,248,200,88,72,196,58,173,102,6,20,224,65,2,200,169,108,149,66,63,119,127,193,217,106,10,45,98,149,9,110,123,42,32,171,198,34,150,226,107,215,187,213,211,41,63,1,98,124,62,255,4,100,251,34,240,221,255,196,202,190,222,192,79,51,216,233,175,15,8,137,16,42,50,98,53,161,186,66,171,42,245,7,141,5,13,224,82,64,1,18,164,99,92,65,28,194,141,8,196,6,113,180,49,3,6,200,83,82,26,1,66,131,252,115,
174,122,199,182,252,4,162,230,145,35,8,182,218,161,22,99,84,98,144,18,25,172,106,26,14,102,166,35,251,213,102,114,223,191,231,193,239,77,33,115,218,44,71,247,125,193,39,3,161,99,127,248,66,210,6,90,1,186,18,134,191,251,95,240,11,137,243,127,62,243,154,253,34,139,111,207,41,63,150,229,21,243,86,237,109,236,79,65,104,235,253,186,212,214,191,97,41,205,235,93,22,234,207,76,0,14,125,152,166,10,119,165,81,173,90,240,48,251,109,128,183,150,212,95,216,98,38,40,160,93,187,239,1,156,16,2,174,119,165,161,143,157,2,156,0,36,249,247,24,46,186,65,185,226,47,135,230,30,67,17,81,221,171,212,181,45,250,75,87,248,158,157,48,26,235,71,221,253,173,49,8,7,179,123,137,40,97,56,20,51,15,35,30,81,26,43,25,157,124,8,220,241,198,239,73,70,75,74,32,40,5,44,190,150,255,76,52,236,167,33,14,182,17,57,135,92,107,175,160,48,209,69,32,12,58,56,34,219,92,41,126,157,150,204,243,235,245,49,76,255,126,46,42,216,227,22,
206,148,131,165,64,185,63,215,250,177,210,95,36,185,115,155,43,107,176,217,187,30,226,223,209,225,180,66,243,97,217,0,111,158,73,37,120,80,171,176,53,145,89,46,32,24,19,118,214,216,153,153,219,111,79,241,142,96,249,54,14,60,196,202,143,28,99,250,168,167,13,171,142,248,3,107,53,40,75,165,85,141,176,242,180,239,177,253,131,153,205,140,181,77,172,160,253,213,129,7,32,98,113,150,199,193,114,251,208,168,133,205,126,84,227,88,242,108,231,117,57,108,92,194,236,132,98,157,242,47,34,241,39,230,181,153,38,6,117,238,165,246,211,85,25,3,124,58,118,244,154,227,182,155,213,168,255,94,36,4,4,132,72,132,146,194,69,144,161,40,201,114,34,153,170,27,231,32,241,160,59,7,51,25,131,31,183,123,146,176,158,175,18,242,64,80,28,8,0,80,41,183,204,49,74,133,165,212,140,90,132,69,36,115,255,122,254,153,79,117,223,175,97,241,81,170,229,234,167,91,143,200,11,9,194,25,132,128,164,69,52,180,221,47,22,173,148,145,41,80,54,44,140,76,227,62,
76,26,20,122,147,59,20,193,118,54,16,19,4,102,23,37,151,14,0,121,197,57,227,162,101,244,7,178,188,73,141,155,216,87,125,13,39,185,218,233,186,236,37,151,178,194,107,130,103,191,54,177,64,196,117,209,6,237,205,81,41,135,146,252,1,165,123,138,234,120,130,242,7,93,124,165,229,236,214,255,229,28,127,62,240,126,126,7,254,16,84,58,207,221,245,81,150,41,88,11,67,120,187,250,14,189,255,179,65,56,128,52,80,160,253,90,122,109,184,177,72,160,132,28,227,112,197,113,222,2,98,134,253,88,2,186,30,8,50,125,128,94,232,31,68,110,247,190,42,180,28,0,21,101,169,204,48,55,196,220,242,178,26,132,192,120,51,243,124,224,104,245,0,25,134,117,123,182,65,172,243,207,242,175,161,28,58,248,215,50,154,79,125,44,255,110,78,30,11,235,55,229,120,154,124,70,253,83,224,34,53,91,88,169,241,112,104,252,19,177,83,146,69,127,251,46,223,122,241,156,165,77,128,253,4,9,172,70,136,163,177,24,73,244,75,12,98,211,115,175,168,60,92,46,37,52,
112,104,18,71,56,151,209,17,189,183,58,252,33,9,188,128,193,120,187,61,46,71,88,111,193,33,116,13,71,116,46,159,136,84,83,47,163,140,229,91,64,114,153,125,130,108,251,253,156,249,174,23,229,175,60,254,132,243,157,9,143,24,130,184,102,107,30,229,167,101,108,229,117,55,187,51,190,230,235,150,213,228,147,13,14,20,99,110,149,150,107,118,245,159,97,162,48,222,52,195,187,44,179,140,78,233,1,5,181,158,225,145,252,52,5,14,229,47,223,221,164,158,12,216,126,5,132,108,208,73,61,168,149,54,126,216,165,244,232,227,88,80,140,247,235,39,177,206,41,204,211,58,34,178,158,217,245,253,50,20,22,28,10,204,41,235,96,35,173,163,247,243,140,4,244,0,209,27,73,193,89,190,106,55,18,79,130,64,192,83,45,240,43,91,121,240,163,67,133,44,104,107,91,197,88,163,34,29,111,231,59,251,130,31,74,245,115,186,225,243,116,60,223,166,75,18,75,32,9,180,4,92,148,35,163,0,158,173,100,182,242,160,114,42,243,144,38,32,165,214,255,163,225,172,122,156,
87,182,110,253,215,29,102,102,102,230,14,51,115,210,97,102,232,48,51,231,188,107,127,58,146,229,43,95,84,105,194,120,134,106,150,113,108,10,246,86,90,206,37,93,112,91,136,80,100,129,88,93,72,149,24,19,72,8,223,129,37,81,3,8,188,131,180,74,217,245,40,247,92,84,64,62,245,140,86,131,229,112,187,157,62,93,117,153,192,82,251,216,152,227,42,162,200,96,53,117,232,52,8,205,113,231,247,32,60,166,36,94,179,168,124,71,128,242,236,255,140,197,56,13,238,43,97,216,10,91,242,58,46,31,139,210,54,22,32,8,156,239,249,220,39,169,165,9,203,167,161,58,248,230,228,53,134,139,21,203,67,206,96,189,85,56,112,210,118,184,27,40,4,50,22,56,96,104,137,52,101,173,34,1,12,80,193,144,94,124,0,101,20,232,115,131,251,81,83,75,162,97,156,190,208,48,226,51,250,69,48,2,119,235,201,13,254,119,225,245,14,226,80,193,31,58,111,151,24,234,151,2,128,10,125,234,152,57,231,37,29,255,218,113,184,209,178,125,163,112,211,20,35,103,37,197,
149,38,44,33,207,246,124,137,249,32,29,173,52,248,57,101,104,4,118,216,183,109,46,3,107,185,23,5,41,55,116,55,23,26,224,14,206,76,28,180,187,190,229,53,74,111,17,174,185,191,229,239,42,14,39,92,94,18,152,17,36,174,216,40,42,136,248,116,103,225,124,49,91,120,230,228,239,125,106,75,127,254,174,61,10,71,251,167,100,212,107,248,119,107,156,223,216,225,96,191,225,53,230,186,33,247,73,194,111,74,74,221,114,192,105,158,123,189,87,206,102,110,248,48,68,71,182,93,44,49,4,12,205,150,221,88,199,200,220,3,59,130,249,155,230,32,194,2,145,37,53,137,68,126,78,85,104,234,225,195,136,73,58,0,106,223,7,241,66,31,170,244,92,192,76,240,166,131,136,156,91,112,135,165,233,242,186,125,226,230,31,147,251,199,71,115,36,198,47,159,48,58,182,141,230,1,72,40,5,98,138,249,220,25,1,79,160,198,224,102,95,63,56,222,72,228,80,1,20,216,129,155,103,91,49,204,41,255,196,172,33,25,45,21,201,15,11,215,222,53,215,81,6,188,254,43,
112,6,227,93,167,19,234,9,226,41,34,125,77,224,64,199,147,201,222,76,72,253,119,193,72,82,185,229,240,226,169,246,131,29,121,40,70,178,85,209,150,2,20,34,135,113,45,198,29,210,13,219,119,165,249,44,148,4,55,48,243,172,19,27,211,149,252,69,44,5,4,13,51,119,79,16,226,86,218,156,86,196,227,209,20,14,6,218,138,120,106,48,202,164,251,167,250,201,19,106,154,176,29,47,121,14,123,175,219,97,56,79,168,7,98,146,227,192,118,35,202,203,207,14,91,204,128,190,62,91,233,89,53,241,193,26,172,88,200,103,102,44,251,157,54,240,167,45,146,245,137,237,73,203,191,248,217,251,102,148,186,107,208,146,224,188,219,6,83,24,124,131,30,204,75,178,218,23,194,194,168,194,156,51,5,192,193,28,74,111,199,62,233,178,122,249,247,135,102,24,132,112,194,244,84,151,88,128,64,62,52,95,167,235,125,16,32,93,0,41,218,205,76,60,7,75,177,149,30,94,233,236,241,104,135,25,179,242,69,241,69,221,117,88,173,94,122,44,66,116,54,254,44,59,225,175,
159,0,35,43,195,47,40,204,100,252,105,58,204,132,33,166,224,137,104,156,8,23,18,136,62,180,133,74,11,148,76,90,218,7,178,209,85,208,254,39,111,158,164,65,204,210,162,196,179,228,41,248,188,136,175,175,180,99,62,214,125,245,217,25,27,78,150,209,219,125,214,219,43,170,24,114,178,144,60,74,116,223,235,109,203,208,79,80,142,78,135,127,132,182,134,172,102,235,78,32,160,66,40,136,0,69,131,207,127,45,76,16,183,227,134,243,29,148,51,223,157,50,133,32,64,69,254,134,152,246,128,22,44,220,184,64,34,236,46,210,67,253,116,221,204,32,134,241,207,122,82,67,116,28,213,117,186,233,76,86,63,115,43,6,161,104,144,223,192,74,48,97,212,236,171,67,88,82,152,133,150,239,125,107,102,7,140,251,45,48,219,18,176,211,144,19,194,250,151,124,72,25,99,160,8,233,219,75,171,163,142,234,95,52,39,245,29,86,20,83,206,168,168,208,43,166,227,58,222,0,252,221,33,226,201,9,4,8,213,214,22,132,32,87,114,54,38,75,66,195,130,77,245,162,218,230,
129,56,4,60,177,220,78,157,170,129,208,153,88,154,220,9,132,82,138,184,0,97,38,10,133,120,140,5,27,187,102,33,58,88,241,62,65,47,135,84,181,181,134,233,231,28,9,226,161,92,243,247,61,200,202,88,35,9,39,28,234,224,4,172,43,81,65,244,71,241,2,81,0,145,139,244,190,35,232,153,46,226,216,94,129,214,244,59,3,144,81,186,83,75,132,180,2,80,107,172,249,122,43,190,35,156,77,234,151,214,90,204,138,58,250,243,88,143,17,134,207,61,238,255,159,147,123,127,135,108,207,30,215,201,66,117,29,38,245,36,127,61,57,165,214,145,188,204,174,239,41,235,123,226,34,89,64,129,118,197,103,50,252,105,50,158,254,196,136,185,95,130,245,57,66,78,138,128,183,84,252,59,216,38,233,251,50,176,66,39,249,220,237,242,122,12,187,148,32,20,201,172,15,243,109,46,43,239,82,241,18,25,120,104,18,148,89,62,8,3,188,12,116,110,12,53,33,190,156,152,158,145,201,37,206,149,148,129,239,157,226,237,164,208,186,170,203,223,182,204,84,8,86,250,150,226,
69,38,218,169,153,128,198,58,170,148,16,224,177,83,96,128,216,132,220,250,66,161,89,201,92,38,255,220,8,29,46,30,218,25,10,44,251,115,199,109,237,186,12,20,135,16,248,154,152,201,55,200,139,38,243,97,22,157,130,132,26,4,237,215,138,65,51,254,25,103,142,27,187,127,91,33,171,199,117,207,39,220,115,155,167,89,9,53,53,28,142,207,33,69,162,116,100,140,103,134,182,137,20,173,130,111,88,207,242,23,252,1,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,131,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,71,45,45,126,32,15,18,75,137,137,50,81,18,102,157,44,135,52,39,229,17,98,21,177,205,4,169,58,220,78,151,227,241,215,175,33,125,213,125,199,211,234,53,146,9,123,226,204,119,191,242,140,168,241,41,99,198,177,8,60,5,126,163,36,68,17,53,112,60,63,223,97,155,66,246,97,233,150,101,226,73,156,85,92,248,172,31,24,13,147,49,86,124,196,249,245,254,236,244,140,171,206,73,103,81,102,110,221,45,141,217,194,211,112,127,242,75,154,147,136,112,252,165,233,44,44,48,100,200,22,128,242,79,117,142,55,199,248,233,40,39,113,176,134,217,214,211,207,171,37,200,12,190,0,163,110,66,44,197,236,63,229,59,78,89,192,1,29,123,251,10,217,146,115,228,203,165,169,192,99,10,82,150,142,168,253,140,207,9,119,167,48,115,68,30,195,210,39,131,189,52,9,141,103,214,84,222,203,251,61,40,156,219,145,154,73,85,151,161,69,61,180,188,19,124,95,202,153,73,170,35,108,56,115,104,26,194,51,235,34,164,131,250,94,244,89,217,233,
228,105,24,45,67,179,89,125,181,242,225,54,86,35,255,107,209,91,222,218,11,62,119,150,214,221,41,124,109,60,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,137,159,70,235,227,124,240,22,81,156,225,0,220,35,30,181,120,144,51,217,232,250,192,219,123,168,117,100,167,143,180,20,236,64,151,232,210,123,54,106,30,55,155,213,253,219,226,92,96,152,157,28,89,16,21,230,89,73,33,72,16,246,167,32,215,112,81,190,241,245,217,54,41,13,32,14,10,135,11,4,176,131,128,165,182,196,222,116,46,124,104,14,94,159,119,48,93,83,81,86,203,14,123,103,2,189,11,148,64,99,16,244,36,124,68,3,10,39,17,35,77,153,160,124,32,164,36,178,44,7,144,34,72,50,205,17,158,247,120,28,177,113,207,184,149,226,213,48,250,199,144,36,0,124,160,156,93,176,3,117,103,165,225,76,195,163,147,115,88,54,166,50,99,206,178,68,2,16,95,189,208,225,106,240,117,4,212,
220,178,210,183,234,196,23,191,94,109,71,251,181,247,23,207,33,177,189,174,233,44,100,42,196,77,252,8,73,247,161,250,251,230,99,254,133,40,32,141,74,112,219,251,208,244,23,155,245,146,39,98,243,11,227,63,176,157,121,43,206,247,223,248,113,255,87,43,176,249,15,171,160,192,84,3,185,39,54,114,25,56,52,78,219,195,176,3,102,51,142,57,16,97,25,242,119,176,117,247,207,112,24,173,204,124,165,236,142,156,126,103,253,149,173,110,28,156,49,118,132,97,229,84,152,107,5,31,154,253,49,219,82,169,17,165,101,4,205,226,7,189,233,126,163,227,39,114,150,28,65,55,103,227,203,99,124,68,10,32,76,193,140,144,102,131,183,25,204,156,252,90,100,99,192,120,14,179,223,116,226,163,28,102,194,146,98,129,216,243,44,181,84,130,95,160,58,99,176,40,145,172,11,121,18,27,39,170,58,217,168,117,190,110,53,251,125,93,159,247,254,50,124,251,223,16,201,94,15,133,9,21,250,231,224,110,21,49,169,43,247,102,8,226,252,115,255,247,233,119,146,175,34,131,149,122,
203,167,242,249,9,245,159,227,128,190,80,213,167,177,250,4,45,97,81,93,26,57,120,1,121,145,240,150,225,126,234,89,237,79,179,248,215,0,163,55,246,40,253,149,136,15,197,135,71,33,58,68,171,29,45,156,155,40,97,222,50,198,35,100,3,213,82,18,6,167,28,234,217,168,110,80,217,80,211,154,117,91,76,240,52,238,38,138,80,122,245,30,163,217,83,3,231,243,213,104,82,94,93,62,51,19,37,111,123,249,254,240,4,12,144,132,68,118,2,11,253,241,146,44,165,72,101,186,135,197,196,221,149,11,9,200,72,233,39,156,172,207,100,35,236,115,241,227,30,68,128,11,18,4,14,25,232,101,149,244,208,151,36,144,79,153,56,0,235,122,243,239,161,28,94,208,144,33,168,136,210,163,19,149,193,63,238,32,73,88,97,153,16,3,105,32,23,227,97,53,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,53,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,239,209,124,139,36,219,36,186,125,30,214,61,215,52,118,196,152,170,62,4,252,179,61,77,191,199,146,102,197,251,43,49,124,138,156,38,73,122,141,56,193,13,212,255,61,252,15,91,222,99,134,185,3,215,126,71,76,178,5,230,164,251,86,82,59,223,167,203,197,7,235,159,188,238,186,20,4,168,7,56,157,95,27,225,250,190,109,159,69,119,152,241,114,166,21,249,19,221,202,68,107,72,170,87,176,135,133,23,100,123,4,213,223,243,52,15,52,126,111,45,81,78,153,193,14,44,127,76,161,132,147,199,191,205,126,76,22,38,59,9,227,61,71,54,98,169,47,89,142,45,65,117,13,53,222,138,249,27,193,231,17,15,127,63,126,111,199,143,225,62,158,82,229,39,161,19,81,152,101,116,70,2,198,224,253,40,171,214,200,114,13,30,8,17,232,47,218,134,4,107,213,87,196,196,223,29,161,15,143,105,127,39,198,47,182,130,159,249,180,236,12,254,239,39,205,20,124,141,76,96,128,236,76,148,115,255,135,131,75,135,33,32,247,117,9,
254,50,5,239,4,231,102,3,90,125,142,138,25,123,221,4,66,252,189,81,90,191,241,177,41,129,202,111,144,44,117,145,220,241,131,94,32,49,104,245,17,132,181,221,96,106,177,232,195,31,50,214,89,216,221,218,196,96,107,45,27,226,203,167,68,17,186,124,168,184,236,32,33,181,31,55,109,77,39,171,111,107,145,192,73,52,88,107,87,124,92,254,158,130,69,204,244,159,21,20,12,243,204,254,3,123,45,11,3,185,185,38,137,27,159,27,18,17,1,24,68,132,224,200,55,68,163,226,91,97,126,115,41,51,104,161,32,48,130,201,214,65,138,50,146,138,58,60,179,176,252,31,20,20,184,245,153,162,249,156,114,6,161,168,98,36,178,41,201,93,135,106,105,197,189,112,135,21,18,58,140,250,12,200,24,236,28,220,76,130,7,2,203,171,36,112,139,107,45,241,12,16,168,75,128,81,127,104,8,32,132,148,157,88,9,118,184,64,64,246,195,225,31,75,184,119,240,184,170,95,150,190,209,249,245,144,151,111,228,24,118,6,26,226,216,137,58,122,199,59,127,117,113,139,68,42,
222,185,212,101,48,10,37,204,176,38,32,76,195,37,137,124,229,170,201,239,251,191,22,115,121,127,163,138,204,118,175,143,58,218,77,255,216,229,124,9,36,79,226,22,22,81,104,201,195,94,173,254,120,209,52,150,113,67,79,118,19,50,178,149,225,101,32,238,217,44,107,242,178,151,205,116,3,121,21,197,51,60,255,248,185,30,129,107,192,140,74,71,128,136,132,106,27,226,85,53,206,52,82,255,249,2,2,225,9,125,140,232,198,244,236,36,172,72,187,122,50,74,255,112,187,92,31,48,205,146,124,119,188,195,174,175,65,13,40,139,41,169,3,196,86,101,43,13,99,0,73,193,190,164,167,102,81,35,177,177,202,73,251,95,127,174,125,222,247,213,49,97,129,2,110,247,241,203,54,185,77,191,166,191,208,248,117,29,246,190,223,43,118,106,89,29,214,36,226,149,83,126,107,180,183,155,32,193,113,192,216,145,181,33,172,31,105,47,196,203,97,203,110,223,192,193,200,53,252,84,228,182,170,117,209,221,155,66,167,37,234,188,55,130,102,166,183,114,75,157,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,38,77,0,145,169,1,7,234,58,60,126,69,148,102,144,198,31,200,83,177,166,155,123,35,164,19,70,18,62,32,239,36,116,43,159,100,160,218,160,88,177,182,81,232,237,0,108,113,114,196,150,249,121,214,114,232,162,136,105,161,35,146,120,99,165,222,247,207,129,148,80,193,239,233,16,157,39,78,204,225,220,209,227,31,181,241,172,89,189,188,109,14,120,81,176,23,57,232,207,141,142,174,115,27,196,48,175,108,48,79,135,46,8,15,127,26,101,237,164,31,96,42,209,82,249,63,251,157,236,71,44,245,121,251,47,8,194,64,41,123,82,82,224,117,14,184,205,94,203,227,245,72,92,58,47,56,70,21,204,186,238,235,237,18,23,17,113,136,45,217,235,74,117,19,77,95,234,14,123,145,72,60,55,154,56,183,174,115,86,238,23,132,252,26,230,12,163,43,197,52,86,114,210,164,57,209,127,94,38,84,129,155,60,200,121,183,221,38,185,75,210,176,130,215,219,38,
17,29,20,143,77,142,78,147,115,212,15,36,73,243,39,11,164,56,63,87,182,128,205,154,238,28,239,76,209,21,37,175,206,15,47,43,51,94,33,181,57,166,108,24,83,243,168,244,146,122,44,110,238,175,126,151,235,187,200,109,214,11,144,222,147,170,139,202,233,168,180,185,65,203,45,191,197,192,40,6,231,160,254,1,7,217,30,96,137,36,218,71,37,34,255,253,61,197,127,9,132,45,204,57,196,134,59,236,135,35,108,213,131,74,248,125,189,106,254,122,94,143,155,155,162,31,156,19,232,86,118,51,33,95,125,7,162,124,211,177,19,137,255,188,81,139,9,50,21,250,186,242,229,81,118,65,66,201,135,77,219,189,186,110,33,7,76,40,221,31,174,74,45,16,105,53,74,156,113,32,192,40,33,145,28,100,179,245,172,227,3,200,15,115,175,119,80,148,254,3,24,41,70,32,43,157,28,165,160,130,229,165,3,250,229,185,182,141,131,64,186,23,76,16,99,220,68,61,83,180,153,27,127,246,8,236,173,119,184,134,41,252,31,132,5,85,176,246,142,216,187,191,148,115,229,165,
16,150,149,228,241,107,203,5,118,129,235,170,170,199,4,85,77,69,17,49,255,210,165,168,217,177,111,179,160,43,17,113,177,34,18,188,152,16,222,140,78,95,36,31,91,143,73,244,20,18,211,79,57,68,223,13,0,239,19,180,56,251,225,157,28,188,170,103,232,230,141,215,85,116,38,86,69,193,194,18,42,33,164,115,220,136,133,19,44,172,214,169,174,244,67,208,206,184,146,137,96,115,50,218,158,62,35,224,10,24,91,31,71,246,40,117,194,75,191,181,243,153,122,128,107,220,3,183,159,250,45,195,196,239,131,64,54,11,1,115,135,166,9,195,61,96,22,137,139,131,113,61,35,246,223,105,1,150,218,52,102,227,54,28,57,247,105,141,41,252,158,220,125,176,123,251,183,74,142,135,130,25,89,216,117,82,213,246,121,76,163,70,191,68,106,192,238,242,138,162,103,127,17,126,41,42,109,105,3,158,28,146,128,240,213,37,230,92,60,246,130,128,13,70,86,36,251,64,2,90,6,229,255,168,113,155,91,24,41,249,50,132,146,41,211,148,175,41,49,221,33,57,30,210,254,130,
224,194,122,127,25,233,144,59,147,134,150,66,173,25,25,143,237,153,148,144,234,75,125,163,120,92,109,131,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,37,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,244,161,145,53,31,67,251,3,8,168,103,168,182,215,50,151,92,76,193,144,20,32,212,26,37,96,66,154,133,105,4,4,62,22,41,21,136,232,240,236,10,129,176,57,241,100,153,67,192,209,63,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,109,9,45,11,40,65,170,10,86,203,18,194,10,198,46,192,147,146,37,197,246,240,71,61,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,213,8,56,25,52,78,48,32,39,23,207,166,0,160,24,56,165,201,3,181,45,28,84,75,71,237,205,209,114,199,92,136,49,130,185,165,13,193,96,200,242,4,115,62,93,99,45,190,247,144,205,128,34,240,109,220,33,225,195,28,120,173,99,248,222,124,176,92,124,24,7,33,83,84,213,253,229,62,86,229,253,191,81,139,210,227,179,140,19,69,73,18,79,225,185,172,224,113,176,44,120,7,247,210,178,198,204,240,78,241,125,193,85,93,74,209,130,233,102,163,49,24,53,242,63,199,117,92,181,231,80,169,85,254,106,88,89,135,251,202,197,194,236,98,238,68,44,188,205,201,195,151,127,140,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,122,12,157,147,197,102,60,96,119,6,0,233,93,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,211,203,201,201,44,255,197,252,167,117,119,21,33,5,91,
52,127,86,92,154,139,67,12,44,173,135,201,70,48,162,34,34,50,148,183,253,175,50,95,88,143,52,241,171,42,179,128,90,237,176,228,26,231,228,129,42,252,101,35,82,99,98,130,255,24,226,239,240,249,91,240,243,56,215,23,130,92,214,167,12,72,129,19,8,76,167,106,217,149,41,74,0,250,133,79,101,36,194,21,110,135,161,75,229,44,159,5,5,197,156,54,221,154,160,41,206,177,214,99,230,3,177,144,71,20,98,153,87,154,156,103,211,244,70,61,52,220,147,100,26,56,62,244,73,241,66,33,53,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,104,44,224,34,172,169,174,165,255,70,125,80,25,148,100,142,79,178,242,83,136,104,232,218,252,54,205,184,136,121,104,183,8,145,127,106,21,185,221,86,226,239,228,238,12,249,8,204,78,221,223,227,229,97,144,168,60,211,234,57,115,2,98,40,18,26,180,5,99,125,199,45,206,150,167,38,143,126,171,36,240,0,146,193,50,134,70,91,233,11,255,195,192,89,116,250,12,
159,199,165,254,106,174,178,38,4,136,204,223,118,208,254,35,188,255,99,151,223,208,21,0,139,75,207,218,189,7,201,153,68,211,26,238,90,251,255,231,209,205,95,114,157,229,110,7,142,17,142,162,168,187,24,159,80,200,117,245,82,59,22,216,201,65,172,135,193,69,153,99,59,192,39,35,9,3,188,251,23,226,88,226,141,78,110,183,222,59,222,58,144,170,153,23,82,21,103,9,32,215,251,179,203,115,195,15,200,226,231,217,216,79,157,84,86,99,85,126,22,180,178,126,14,59,27,147,67,42,148,138,233,207,79,162,97,49,3,155,73,96,22,3,3,231,232,124,186,254,210,196,202,210,206,38,230,44,39,129,254,169,229,29,185,152,244,117,186,62,22,195,245,91,245,234,220,212,200,161,105,106,38,242,248,215,120,17,182,28,102,189,83,213,251,197,234,171,17,72,58,165,229,33,125,168,196,53,118,134,198,178,246,9,53,15,13,62,241,48,179,93,104,126,98,108,84,48,184,244,136,196,32,167,24,37,93,168,159,57,3,198,81,244,160,211,152,229,185,245,195,187,17,17,74,47,
8,17,118,25,186,94,231,128,54,54,12,169,4,8,0,188,186,231,45,0,116,12,37,73,30,70,46,8,154,27,161,87,80,47,74,105,160,156,168,83,178,175,158,96,157,2,173,14,29,93,181,67,38,186,86,0,12,174,205,250,32,33,22,32,38,80,138,124,98,156,248,193,101,180,104,163,136,158,40,23,1,212,110,139,162,101,118,93,24,128,100,90,88,238,146,168,23,149,242,78,245,205,224,210,92,233,53,157,197,192,212,200,218,8,165,5,235,252,124,140,62,131,225,73,233,103,37,163,146,123,97,198,205,67,196,217,7,155,215,213,84,200,142,121,112,34,247,224,155,75,144,208,115,33,207,132,148,72,175,206,117,251,220,238,175,174,154,62,43,82,225,156,70,56,163,37,53,235,85,38,179,166,254,227,46,175,169,244,135,240,107,221,63,49,176,86,30,195,47,186,50,119,72,210,17,0,154,27,167,171,59,162,236,204,56,241,185,229,123,78,112,106,151,222,138,163,87,141,139,251,154,200,180,224,253,53,75,181,253,37,183,130,213,195,19,216,207,143,25,33,17,219,212,93,250,168,
45,5,158,89,252,192,56,30,253,41,36,200,62,178,18,159,166,148,1,20,84,254,237,212,116,166,84,115,58,200,192,223,15,64,154,47,94,37,85,113,62,70,245,138,143,118,74,124,121,3,16,81,175,210,136,56,8,179,145,34,83,138,15,34,141,62,65,206,51,179,156,78,159,98,42,174,210,33,114,47,161,207,222,78,239,108,239,49,51,188,37,208,231,77,9,94,20,125,13,40,183,230,5,82,97,13,207,116,66,125,35,242,223,252,9,159,202,25,123,132,248,141,160,41,220,9,169,165,76,92,2,162,146,160,145,18,6,127,181,120,120,124,3,72,29,248,53,48,214,0,209,40,6,74,246,47,142,184,254,187,92,163,126,48,18,231,29,83,144,72,38,0,237,81,231,103,38,10,253,211,167,83,133,16,146,98,15,22,122,110,0,177,107,55,87,185,187,136,164,123,10,141,24,232,187,228,131,200,177,231,166,130,20,38,204,88,152,177,121,11,8,8,145,66,203,3,150,210,212,224,194,36,73,40,177,20,89,170,170,60,74,253,73,225,37,246,57,141,223,230,33,133,214,2,197,182,
48,101,160,58,71,237,159,190,217,232,156,228,80,148,149,91,83,216,207,44,63,74,32,96,29,231,184,47,164,49,214,57,233,79,3,244,109,11,199,166,102,192,172,21,85,22,200,204,86,102,130,216,113,39,145,115,61,38,219,40,245,58,215,239,91,251,149,21,246,21,55,61,46,70,154,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,7,92,241,58,126,216,119,39,132,151,219,251,190,149,66,92,85,201,13,63,35,47,160,126,20,48,186,116,228,165,137,75,48,197,96,0,230,110,197,226,20,50,7,38,152,141,214,12,166,7,250,133,250,161,172,92,205,6,197,135,68,76,48,244,100,190,172,233,199,196,22,116,7,18,177,118,192,106,255,215,198,84,102,224,140,116,208,37,35,181,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,45,217,202,90,235,22,184,216,34,4,114,118,96,90,253,253,206,170,247,151,123,120,213,192,163,209,43,110,222,89,49,17,146,71,
188,125,172,16,103,116,35,235,151,174,163,141,72,46,77,233,24,170,1,58,191,161,24,87,24,211,114,233,28,0,31,79,32,21,178,46,97,173,14,247,77,249,64,123,54,231,110,69,97,30,128,167,77,147,26,181,130,142,55,132,22,175,249,11,131,209,246,51,199,226,146,74,36,194,44,112,131,175,42,54,11,90,171,26,16,244,223,81,74,192,228,52,51,9,178,204,155,47,40,45,16,114,48,98,135,4,132,51,236,175,157,36,205,174,46,205,136,72,8,6,93,45,171,110,50,230,65,33,21,51,31,72,238,107,64,7,22,72,31,201,151,156,99,33,49,70,16,131,34,121,65,137,172,160,169,184,96,69,154,34,63,107,36,207,7,58,75,8,193,59,8,11,154,51,170,56,13,22,132,45,53,5,81,181,153,177,40,158,19,144,100,33,211,52,76,152,0,75,133,204,139,210,16,38,159,27,102,192,212,211,83,4,108,46,159,201,97,98,163,20,124,137,145,238,67,129,252,8,30,211,177,44,14,173,131,65,165,25,91,201,140,28,225,52,90,110,135,251,249,93,3,54,225,244,187,132,
155,186,216,224,194,116,90,31,236,134,182,217,165,114,113,86,250,252,95,214,85,159,211,170,215,10,101,143,95,58,103,21,253,233,242,31,27,25,96,32,183,244,57,81,216,222,142,15,159,86,107,113,40,107,209,90,54,145,213,45,208,22,76,186,12,136,241,216,252,172,191,90,35,117,154,253,93,68,182,227,91,105,223,26,130,59,158,136,236,231,150,8,34,225,99,171,137,134,220,86,59,110,31,29,200,36,208,144,96,49,14,101,92,223,88,64,35,186,148,77,138,65,89,52,37,226,31,201,202,13,131,133,65,164,191,80,92,154,155,205,76,22,39,127,198,38,92,79,26,10,135,195,27,195,35,167,43,176,242,63,63,221,22,202,9,187,31,222,246,253,103,127,76,167,66,232,11,181,63,216,193,105,230,31,176,122,171,149,184,175,167,207,187,180,28,124,97,55,196,7,39,92,108,195,179,128,41,4,192,18,9,88,204,142,123,239,24,204,187,203,104,127,190,3,34,11,115,143,46,195,23,176,41,184,12,43,115,216,100,189,6,236,178,64,196,144,156,134,71,132,65,145,94,37,91,113,
45,4,192,4,240,182,182,175,184,94,55,24,177,246,55,153,124,20,243,211,170,248,67,194,19,111,16,61,103,39,76,72,201,0,120,0,197,183,108,89,75,105,178,119,240,126,130,126,13,249,0,40,234,70,254,229,217,185,40,84,209,8,164,4,187,227,145,76,79,163,200,170,52,3,194,8,194,122,147,195,210,27,8,221,73,96,171,28,17,76,235,152,212,61,16,52,68,30,58,95,51,247,14,194,164,83,255,39,40,133,7,66,100,103,225,200,242,76,64,226,212,142,59,245,117,18,206,27,53,158,187,113,226,123,42,71,70,237,97,106,34,156,30,157,207,61,184,182,172,72,237,122,107,30,110,231,33,87,143,181,201,104,231,161,205,191,153,223,237,118,221,17,210,210,149,0,162,239,11,120,222,36,112,40,128,126,251,177,72,187,116,150,207,182,182,163,66,254,59,73,159,14,105,8,2,106,104,124,53,160,189,31,90,251,124,31,189,131,14,211,27,22,153,222,49,99,230,194,252,110,249,79,59,238,3,139,19,55,180,254,209,81,215,132,247,238,96,105,10,151,7,34,130,134,2,220,
212,95,134,207,162,254,103,254,120,105,164,16,59,212,207,146,112,206,60,73,93,110,25,24,235,73,47,200,163,173,115,26,227,171,171,33,17,229,242,75,227,200,39,149,87,150,180,76,234,85,158,143,3,16,162,74,38,35,91,35,25,21,13,11,106,50,44,44,114,21,225,13,43,109,28,203,229,80,20,224,156,147,216,131,91,171,214,134,73,104,93,216,160,55,5,24,183,226,165,136,227,127,127,133,52,35,76,208,249,220,45,213,67,138,7,129,30,149,189,196,209,119,112,23,160,126,187,110,255,210,124,199,18,208,123,234,69,238,236,75,79,200,178,178,245,26,244,33,59,175,139,13,11,1,73,123,185,5,131,187,111,213,13,216,229,128,28,140,17,12,239,78,119,171,37,131,4,72,83,62,249,86,226,182,49,57,58,243,138,4,249,204,209,135,155,81,135,206,148,182,185,249,216,214,158,45,183,229,106,211,150,102,112,125,242,250,16,185,18,90,136,169,249,88,212,204,79,182,25,193,229,92,33,137,59,18,36,71,230,193,6,116,246,161,78,203,242,25,222,217,49,154,6,111,110,17,
10,206,101,124,19,165,242,20,64,209,186,36,66,72,80,246,23,228,199,148,176,48,66,6,142,253,70,4,99,0,39,152,13,168,129,2,161,104,249,231,29,131,127,146,83,177,128,225,123,148,13,132,208,180,182,3,49,199,222,138,107,40,126,150,149,9,66,18,3,207,223,85,143,123,96,198,198,59,230,240,119,15,83,13,254,162,78,191,53,203,19,21,76,249,151,52,83,128,22,132,114,62,82,87,145,94,93,42,68,64,27,108,47,38,147,219,240,248,92,142,135,226,77,93,5,82,176,139,3,45,107,149,216,2,96,47,168,117,255,244,176,194,133,7,28,40,67,115,254,93,91,132,172,129,3,89,37,123,63,77,156,175,181,248,189,149,26,156,72,203,191,236,118,247,54,108,187,223,251,252,219,89,54,157,174,69,28,220,74,109,124,54,38,226,212,233,77,79,59,83,201,161,181,224,1,96,38,20,74,216,10,123,214,94,106,77,26,243,1,87,145,23,189,110,251,43,114,113,129,104,132,106,201,52,251,242,74,24,75,105,215,200,30,211,221,126,241,246,214,120,79,96,143,53,213,195,
175,211,68,62,224,175,197,201,226,29,107,188,229,86,198,217,216,7,215,138,14,34,132,215,246,124,172,219,54,20,213,50,52,173,91,214,83,19,84,178,10,25,210,86,145,145,84,97,35,16,145,239,170,142,49,194,16,92,71,133,212,32,25,254,3,81,38,226,249,95,183,193,246,120,253,76,13,75,64,128,191,80,55,100,255,114,121,253,16,60,180,61,98,18,212,89,186,136,131,236,121,192,221,40,87,3,45,102,190,157,62,117,16,187,31,112,42,43,126,126,234,172,120,34,114,155,89,84,36,173,26,55,116,166,181,17,242,3,214,8,51,61,31,141,136,91,119,1,244,23,209,3,248,197,83,235,154,239,128,76,16,8,255,198,163,213,184,117,11,26,82,81,34,200,249,136,221,181,251,121,96,202,71,164,158,237,62,213,55,157,239,66,226,1,110,39,68,131,3,22,40,63,200,181,207,102,13,182,221,13,198,127,183,118,4,237,46,167,88,252,84,146,222,180,229,95,240,185,41,125,82,13,134,233,104,104,91,136,87,64,144,33,3,2,11,38,240,97,98,30,125,68,137,207,9,55,
222,224,12,96,152,202,190,164,166,159,155,89,128,2,61,88,53,33,66,72,85,84,29,36,68,84,135,74,88,128,139,25,154,191,31,253,55,144,196,202,200,115,169,17,28,138,111,242,136,217,155,84,220,112,119,163,209,7,62,172,67,100,186,166,127,173,55,106,162,85,93,121,42,103,180,76,127,9,248,223,25,161,43,205,183,11,32,242,24,237,15,207,35,124,189,157,173,134,15,185,130,143,229,232,168,248,185,45,67,173,78,170,79,47,232,20,248,158,54,151,23,108,219,159,138,191,21,165,180,166,206,78,251,154,35,13,225,244,155,212,71,3,129,88,127,223,115,160,66,255,249,175,99,163,141,122,117,112,212,152,201,95,77,45,67,40,188,211,172,244,42,169,136,208,209,183,219,119,230,219,90,134,63,95,225,169,237,17,94,12,196,13,143,120,49,44,159,247,115,19,148,63,175,119,114,232,167,12,184,244,182,219,235,31,151,1,96,172,163,250,244,12,141,65,208,176,112,199,9,29,86,16,248,85,162,168,79,59,244,76,176,67,159,238,125,173,191,238,115,82,118,247,89,187,57,11,
153,56,168,67,163,150,233,75,80,113,148,23,94,48,20,1,87,226,9,143,14,55,93,97,50,119,37,104,237,255,93,176,214,48,208,115,220,42,176,14,181,209,165,163,104,85,175,232,210,205,179,153,213,195,12,98,33,213,225,91,122,251,252,110,151,51,209,107,181,169,234,202,228,184,166,221,49,71,166,160,67,107,42,20,211,43,225,23,179,253,91,84,42,217,143,107,147,119,105,186,118,65,250,107,85,80,142,203,163,38,27,210,25,83,252,110,221,16,247,189,27,19,100,62,241,141,61,30,197,240,67,158,107,71,158,162,13,139,48,220,218,28,189,17,64,248,167,219,16,206,24,14,21,166,1,51,156,173,117,9,137,201,64,251,68,129,124,170,97,151,103,119,69,124,73,118,10,19,5,64,130,45,108,14,172,71,150,206,161,22,41,20,255,147,76,114,128,168,252,44,45,79,206,82,246,55,44,121,119,192,247,204,120,220,227,150,249,87,188,129,94,155,216,17,240,248,168,224,136,231,214,166,162,101,68,169,3,133,152,4,38,94,213,1,34,94,147,251,187,18,159,128,156,27,120,239,
22,205,44,157,44,62,49,251,5,136,183,129,211,242,25,240,9,58,21,106,106,131,218,60,12,106,236,16,53,15,0,36,161,99,118,8,89,70,92,122,32,179,222,246,34,225,220,171,136,51,39,79,10,111,63,164,195,198,159,61,245,98,102,182,136,180,23,250,179,137,124,225,97,155,243,19,168,26,51,155,237,123,48,235,35,182,175,199,101,189,156,42,135,15,23,41,5,149,168,62,117,45,49,3,133,127,142,168,251,93,197,235,172,117,175,129,171,236,53,16,45,252,101,78,0,67,218,111,178,226,203,233,253,234,129,75,46,219,241,158,230,95,192,167,243,250,186,125,187,191,194,49,208,30,47,138,17,161,206,50,22,251,176,226,38,61,223,88,216,96,192,122,127,212,190,37,159,247,171,173,240,131,106,204,78,18,232,130,21,95,19,22,119,202,208,191,156,114,139,1,206,47,30,56,2,222,191,139,149,151,164,181,231,61,56,153,52,239,63,191,55,251,253,122,187,190,201,151,188,3,63,173,73,189,194,43,125,123,146,101,80,121,77,4,139,247,49,48,216,52,148,214,169,14,152,107,
205,13,198,148,22,145,48,69,96,104,145,18,161,252,80,137,1,100,98,206,190,171,132,105,34,161,143,182,52,216,3,133,115,78,103,21,166,112,184,90,209,44,251,185,57,14,2,161,30,77,179,174,65,222,186,118,34,223,99,146,168,86,178,157,233,75,125,65,194,242,52,43,215,254,52,37,117,153,172,178,172,237,181,114,69,54,223,224,171,167,139,50,10,16,155,111,105,138,107,153,203,253,224,58,52,71,180,46,203,226,73,54,18,58,26,105,190,188,206,111,12,154,174,93,236,192,246,242,66,64,148,153,227,199,98,52,18,205,38,159,175,238,55,15,127,140,54,247,197,232,141,155,236,102,179,215,234,213,88,189,45,149,183,44,112,248,247,185,27,35,70,41,82,175,183,47,92,243,143,127,5,47,138,27,180,143,86,126,17,116,201,130,7,3,2,88,199,24,186,21,159,32,12,11,10,189,197,3,133,36,18,33,146,96,245,119,194,15,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,106,222,238,14,242,
44,1,71,0,25,51,106,53,209,102,214,178,107,161,58,120,205,107,102,119,39,116,114,13,12,75,227,33,10,202,130,40,160,100,157,166,116,250,239,21,69,66,220,138,115,159,240,222,99,8,196,134,92,3,1,58,12,168,105,165,53,35,87,215,224,89,215,135,65,234,3,67,95,40,251,48,129,73,118,253,178,34,211,141,212,204,6,205,166,42,246,55,47,203,162,151,128,213,108,83,56,222,94,253,221,229,114,232,235,121,116,252,190,38,155,207,235,112,248,102,218,171,118,168,29,250,14,95,139,230,161,27,52,124,238,127,127,107,89,147,56,247,252,171,47,251,115,10,4,232,248,207,226,4,81,27,143,187,215,238,69,254,240,13,244,205,226,154,62,199,139,214,125,203,231,49,80,183,232,191,103,17,38,171,250,182,85,118,206,125,37,242,250,243,55,24,179,18,135,156,159,125,9,245,203,208,192,14,184,151,208,28,72,210,222,86,125,110,213,121,31,248,66,31,63,119,174,30,238,142,64,246,245,214,251,157,140,219,239,242,250,227,66,156,42,92,114,28,241,12,47,165,27,0,201,105,
154,20,148,88,104,109,169,35,92,16,30,118,198,101,176,255,47,159,244,142,26,248,102,4,131,196,178,208,155,127,220,127,238,244,65,164,180,150,149,167,39,148,122,186,87,97,79,136,50,116,174,182,244,64,41,171,162,100,126,173,109,173,45,40,108,182,236,40,19,161,5,203,206,232,130,214,38,64,69,22,21,241,206,182,220,108,178,34,197,142,108,107,93,87,81,15,43,185,219,108,23,166,5,100,88,58,243,204,171,240,4,44,29,80,30,153,52,136,40,190,189,28,254,173,124,148,93,72,178,155,115,171,245,236,242,221,29,240,92,133,243,98,243,151,134,69,140,172,171,56,168,86,188,40,178,27,107,38,163,63,255,186,62,192,39,150,114,127,218,58,63,137,37,77,121,121,6,150,20,9,193,131,226,109,33,67,53,15,207,213,74,152,87,34,105,71,212,179,64,238,140,17,108,202,192,29,20,96,16,145,64,41,196,196,119,53,133,162,150,233,15,135,180,5,52,251,215,20,184,105,252,101,88,68,209,74,221,229,5,3,151,215,77,175,31,224,182,210,199,239,80,109,175,11,65,49,
101,60,158,139,227,32,159,24,152,242,87,38,41,102,234,219,217,33,84,59,21,14,0,219,31,26,126,100,44,245,75,193,157,28,64,172,110,162,136,153,89,209,10,243,12,237,22,181,45,30,240,186,53,149,234,180,163,199,3,167,58,250,14,36,163,212,27,57,37,59,83,22,88,85,24,0,76,84,5,99,47,150,238,110,138,247,131,77,34,108,2,170,108,83,84,129,116,255,209,80,251,196,197,110,245,88,254,63,37,104,247,58,160,180,47,82,95,143,183,154,233,157,19,74,254,125,78,63,95,225,229,252,190,119,28,170,90,135,166,62,207,72,225,112,224,52,29,104,153,204,247,155,81,147,173,189,146,111,227,30,149,209,206,157,28,100,132,89,138,119,8,245,22,125,13,100,125,14,138,63,3,217,186,118,173,174,182,67,219,46,43,253,246,27,152,14,7,199,125,80,191,191,119,124,30,31,31,186,57,254,157,117,187,169,61,125,197,37,136,241,86,237,23,25,178,171,2,16,72,191,33,4,49,22,157,47,138,240,252,199,92,47,239,126,119,105,58,181,180,21,216,10,25,118,98,35,
35,83,9,196,202,254,107,8,89,109,80,2,40,226,12,4,254,17,195,153,5,144,177,48,141,254,136,231,93,56,50,130,220,205,99,233,207,229,179,155,69,78,19,91,67,153,1,135,137,164,230,110,232,174,34,0,173,157,252,19,138,47,78,214,7,172,220,173,233,144,212,235,82,234,117,53,248,4,213,194,188,148,253,54,188,204,213,193,193,221,205,66,99,171,18,62,250,8,188,89,154,251,57,129,144,189,98,157,11,200,9,176,254,218,50,183,92,114,54,191,230,164,178,168,142,20,188,205,185,65,70,118,198,177,69,104,214,207,181,244,51,82,47,130,147,206,106,16,83,249,78,200,239,234,64,108,130,199,87,17,220,133,14,189,103,247,200,107,56,117,20,210,198,200,171,102,76,116,212,129,2,211,3,22,79,180,58,160,154,29,56,133,110,74,154,14,161,26,124,172,109,195,144,246,26,86,108,220,122,68,38,167,172,32,122,248,37,203,15,118,255,94,125,184,45,142,158,158,58,136,57,203,194,136,86,115,32,222,31,186,234,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,63,68,40,20,138,58,0,187,25,176,129,97,115,202,128,189,74,88,158,99,89,92,213,80,156,209,140,142,160,0,128,74,237,185,111,185,82,170,85,58,215,182,57,207,80,106,90,109,88,5,215,110,53,114,4,44,4,137,83,230,52,32,39,22,248,64,19,56,21,141,108,235,68,136,245,95,72,62,189,95,200,98,218,77,124,175,2,6,117,93,40,221,178,58,5,16,164,63,177,25,214,27,193,203,220,148,15,124,12,139,153,88,156,33,189,239,35,82,0,83,94,127,92,30,239,174,93,111,194,224,213,252,119,151,120,133,134,191,155,239,39,57,191,15,6,133,111,247,119,115,105,54,63,223,203,165,240,233,54,146,250,194,103,241,147,119,232,112,29,16,66,252,217,55,6,117,191,163,209,233,180,247,93,167,195,245,239,41,56,97,221,152,12,191,11,239,81,126,213,226,103,47,252,155,168,188,239,121,190,205,129,245,27,101,206,219,59,245,108,252,201,179,253,26,9,182,150,211,3,254,231,47,242,247,183,85,131,171,160,224,92,72,56,101,225,195,
225,12,142,118,146,192,103,56,105,26,197,19,179,72,82,0,5,8,130,133,39,162,118,125,50,162,95,200,145,35,73,15,27,190,236,159,186,237,209,251,124,244,141,0,64,99,235,182,140,209,216,247,160,126,200,121,8,45,16,238,80,154,31,143,190,6,143,199,218,171,73,19,58,215,58,112,213,216,76,235,200,192,238,145,179,209,78,44,46,249,115,111,85,73,86,69,230,157,69,146,241,91,213,225,40,215,2,219,71,208,247,172,115,16,169,170,89,170,214,197,244,99,197,156,20,180,254,253,203,136,32,72,80,192,91,70,220,253,107,88,177,174,222,86,163,207,107,109,58,166,42,34,58,47,167,185,212,235,72,29,86,213,244,27,234,233,61,101,156,92,3,207,136,239,55,27,253,226,106,141,105,33,97,40,227,65,169,92,113,21,115,254,154,157,226,9,94,212,186,125,75,199,17,118,192,65,4,134,140,93,11,0,236,45,164,20,121,10,32,65,65,83,103,216,14,32,49,118,44,57,0,244,89,123,90,64,33,148,36,108,1,227,180,64,230,10,187,93,39,215,244,114,9,83,30,95,
16,137,0,9,3,225,219,157,219,242,250,28,13,159,195,206,226,178,210,138,210,134,163,8,67,103,1,222,42,122,248,25,49,215,150,0,136,159,118,241,32,200,19,168,140,122,46,153,101,163,242,159,169,167,168,162,228,72,163,39,160,58,240,29,188,87,44,112,51,93,192,139,16,234,182,32,109,132,171,171,99,230,69,57,229,138,2,42,69,215,212,120,74,199,30,16,6,46,104,57,135,48,169,252,251,16,73,35,56,45,74,182,243,51,34,205,56,141,3,36,250,109,243,59,172,246,3,231,199,222,112,56,231,151,14,149,224,193,189,208,176,187,237,159,194,64,70,71,69,195,25,29,139,89,169,155,20,126,116,170,80,251,239,157,53,103,161,246,170,107,97,176,111,127,51,179,111,63,52,78,44,86,183,239,37,245,10,86,31,201,111,240,51,223,239,47,147,111,181,56,44,70,110,17,193,225,208,252,4,247,124,154,131,104,69,236,202,144,208,212,137,35,130,5,47,79,199,82,38,25,58,96,86,240,57,187,249,233,68,210,87,162,7,144,157,95,40,146,72,123,255,106,133,132,67,37,
252,170,129,246,226,79,43,112,154,137,37,47,121,2,177,46,13,79,223,102,48,242,90,100,86,215,215,171,136,222,181,115,8,253,246,112,205,194,137,128,86,178,200,129,3,30,13,99,161,179,2,133,91,76,85,225,235,49,87,8,16,14,43,255,194,65,14,178,252,219,220,218,70,182,5,58,94,56,56,185,45,241,38,223,95,0,72,125,139,54,158,234,86,83,111,246,53,197,232,13,145,244,199,11,5,23,83,99,49,154,175,203,140,165,103,243,109,20,102,76,167,180,230,239,104,61,160,57,169,224,201,3,112,33,190,202,162,15,136,145,123,235,232,9,238,146,73,9,165,164,210,174,163,86,211,29,168,135,58,40,224,110,150,37,196,175,63,86,72,197,115,52,172,219,191,122,136,135,218,96,91,126,112,190,131,28,180,249,80,112,91,208,158,16,192,136,194,156,0,215,114,5,192,5,210,158,75,186,11,169,12,4,217,152,10,205,210,54,8,56,218,80,168,215,128,99,115,12,152,122,55,26,115,47,29,207,64,67,111,108,167,64,80,185,77,160,240,201,5,174,255,140,53,191,11,170,
255,29,142,53,135,178,61,227,117,218,57,131,254,4,39,140,61,27,70,26,161,70,167,192,30,84,123,38,11,97,169,193,220,226,124,134,86,49,75,139,131,30,26,64,65,14,82,134,128,246,73,82,186,154,250,44,62,56,155,226,2,50,34,249,233,118,77,104,92,114,241,116,253,121,189,104,223,132,79,83,214,36,155,10,58,249,192,254,248,218,122,186,152,22,72,211,162,25,171,250,131,184,68,36,255,194,186,4,216,143,53,219,9,141,242,228,180,128,67,130,106,98,33,160,244,120,212,244,251,188,39,139,57,176,63,190,113,218,11,190,137,121,233,59,252,200,213,48,201,40,154,183,134,223,231,225,241,249,56,184,132,28,20,216,217,39,133,100,46,58,89,168,216,251,48,242,185,150,71,57,4,247,232,68,78,45,3,78,118,20,101,40,14,156,35,5,222,74,31,49,37,202,72,30,134,176,198,100,226,24,251,156,110,93,121,120,85,75,52,226,128,96,229,69,248,132,52,16,252,186,29,235,159,234,120,100,213,240,217,158,255,55,72,180,125,215,126,163,188,252,134,8,3,67,13,125,
112,0,16,101,218,21,60,72,178,212,107,226,0,169,118,149,190,152,67,99,175,225,83,170,86,220,73,237,106,72,131,38,54,66,156,97,243,29,75,203,36,41,26,128,62,196,36,30,139,197,191,177,89,124,22,139,213,210,52,27,110,175,186,91,142,8,182,66,1,168,2,61,13,147,160,126,80,245,137,64,89,160,83,237,235,211,56,53,2,126,231,50,5,149,38,161,109,62,109,66,88,203,224,185,216,23,63,230,151,226,254,93,253,203,131,207,59,210,88,82,153,201,62,80,184,252,67,43,128,19,57,169,168,23,115,148,36,219,226,153,141,37,45,31,84,65,213,190,101,48,210,238,172,144,9,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,59,38,70,244,98,141,191,107,113,14,109,193,210,53,159,202,42,95,19,94,171,209,208,149,78,232,255,199,84,189,126,168,101,12,112,145,167,27,3,0,5,121,58,52,129,201,98,51,200,211,72,148,19,195,34,129,61,115,202,44,100,230,160,
161,92,151,175,108,240,200,231,21,40,252,82,144,69,59,104,175,115,237,44,34,54,179,3,18,20,212,94,154,58,251,154,7,62,231,209,191,138,141,32,166,103,38,136,65,228,161,0,43,120,22,224,0,80,140,197,1,71,151,204,65,144,49,128,246,186,166,224,113,104,240,40,98,166,169,194,96,65,11,170,106,161,68,20,77,218,137,93,13,32,172,94,174,39,51,152,144,30,102,178,118,2,166,241,46,16,66,146,186,241,129,37,13,22,249,150,157,210,108,59,23,181,104,119,33,69,84,157,6,135,50,128,231,116,23,246,185,165,200,47,205,218,230,31,143,105,103,180,210,115,61,174,21,90,125,186,31,156,5,76,105,227,95,175,248,133,60,166,128,116,13,97,87,164,145,204,160,151,90,50,156,150,84,40,172,197,222,46,103,156,71,248,18,169,37,147,250,193,135,119,214,188,139,134,206,76,200,63,97,84,254,103,182,119,125,214,97,136,243,124,206,30,57,67,30,3,242,44,194,225,72,195,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,26,214,71,110,71,76,179,231,208,72,205,147,65,73,187,195,223,210,178,177,255,203,212,141,7,161,55,233,42,197,110,207,246,22,55,188,48,109,6,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,195,182,102,191,228,200,123,36,11,128,115,192,101,3,113,208,188,139,45,228,68,76,28,64,24,135,28,11,63,68,177,130,170,81,168,12,44,111,23,169,110,19,185,201,101,249,146,245,134,106,146,171,209,181,116,177,136,88,213,73,125,150,31,40,167,219,173,47,221,238,109,23,242,244,27,238,33,245,30,92,197,251,110,211,139,222,103,255,222,201,191,19,154,113,47,15,215,133,196,81,202,36,34,145,192,129,58,22,109,232,168,18,77,42,5,180,86,84,129,249,234,184,144,223,190,251,146,195,235,244,46,52,84,117,244,112,190,168,244,240,215,182,40,211,91,242,56,15,234,68,178,119,247,215,159,148,70,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,178,23,52,140,223,202,125,197,66,84,141,152,105,180,81,99,190,242,252,1,121,210,14,149,217,130,148,82,6,80,140,195,209,244,123,202,172,196,253,107,43,75,5,209,228,107,234,64,98,18,98,54,70,214,153,218,69,167,23,22,104,53,60,155,228,217,80,58,24,140,25,193,76,42,138,244,165,22,178,75,170,211,15,42,149,107,199,11,162,150,106,81,44,96,158,22,50,95,151,182,196,133,144,59,149,218,78,141,11,104,30,28,53,100,80,224,168,6,146,202,186,27,89,125,88,86,115,54,45,100,116,93,89,235,166,61,50,112,106,206,213,161,163,181,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,189,94,187,141,253,51,185,58,1,13,116,52,21,47,168,49,88,4,165,36,178,254,222,177,187,213,144,172,76,107,40,207,43,150,44,107,127,29,187,146,72,120,246,108,88,120,157,11,17,210,151,243,78,
174,219,231,113,91,27,218,28,157,67,48,40,129,107,170,161,132,75,226,213,16,206,130,19,9,186,207,155,92,129,145,132,5,206,110,249,211,238,125,215,109,170,240,210,120,195,136,119,52,242,54,101,245,251,247,45,176,155,188,251,7,171,119,109,163,102,179,240,226,8,225,187,25,205,158,25,206,58,214,6,185,235,236,208,132,135,2,208,13,182,117,244,162,242,218,138,32,43,186,76,205,97,200,187,100,150,64,210,233,116,43,78,152,78,97,169,127,250,90,201,1,67,146,182,180,59,155,110,95,192,243,241,246,36,230,228,124,190,203,203,151,146,147,13,172,77,169,84,191,170,179,107,253,49,219,57,63,108,29,211,198,238,23,255,58,183,182,94,241,227,54,157,78,150,47,240,57,223,207,199,146,246,219,235,116,106,181,106,141,40,25,0,72,24,172,180,32,196,61,136,167,155,70,122,72,132,96,141,139,106,201,128,13,254,78,187,234,171,213,108,225,160,178,237,19,211,48,15,234,176,139,145,57,226,10,34,40,144,169,155,100,132,170,98,125,101,171,136,31,179,160,201,97,161,254,249,
39,131,22,154,213,233,244,171,213,118,191,226,241,185,2,158,32,209,233,118,198,91,189,225,133,97,220,67,247,202,217,48,143,86,26,149,143,231,242,61,138,236,251,31,48,17,156,228,202,63,88,34,249,203,34,193,248,164,239,121,19,247,12,34,163,63,239,191,189,78,132,243,150,14,32,66,245,77,128,72,29,187,45,102,177,196,77,218,120,3,70,39,49,179,115,65,251,17,213,197,1,178,94,45,62,39,15,125,135,245,187,80,212,79,65,8,16,99,154,129,177,31,114,81,10,152,75,13,186,67,5,16,58,49,4,4,15,152,140,116,225,169,73,45,98,184,72,89,87,68,173,164,31,99,111,199,136,124,131,225,137,135,165,24,72,32,120,208,8,65,148,94,73,172,249,211,117,54,148,1,164,13,36,163,66,25,23,17,11,218,197,152,67,139,17,181,52,224,97,92,217,88,149,127,228,89,113,26,2,129,163,217,234,249,124,190,193,65,83,15,157,132,151,216,107,94,178,72,176,250,224,83,209,142,247,218,109,22,139,125,225,186,120,150,2,176,44,163,93,78,234,237,135,141,194,103,
98,249,244,35,249,7,18,52,36,7,166,20,132,77,177,204,33,152,149,219,180,16,34,43,137,169,22,171,23,221,54,247,195,3,179,87,92,58,171,160,151,234,147,225,24,84,21,7,177,65,113,85,46,195,23,221,63,8,72,3,239,225,255,191,255,152,44,205,199,19,125,134,41,52,180,168,217,147,91,96,237,67,122,155,33,181,140,215,220,16,51,39,184,146,106,224,174,25,30,235,8,55,20,41,94,128,87,72,177,52,209,149,9,162,131,59,37,255,12,214,239,115,40,143,109,67,147,220,67,146,228,214,127,58,61,1,140,77,231,38,240,184,75,46,91,255,213,106,13,27,62,31,194,159,108,65,114,125,250,125,246,236,102,36,253,182,39,236,99,82,97,235,107,105,33,25,106,6,116,101,59,210,12,83,242,221,213,129,8,251,16,45,45,1,211,196,78,32,33,9,227,204,73,212,57,136,242,242,192,117,200,39,37,28,162,55,227,57,7,195,181,74,216,254,246,127,177,106,66,199,208,31,24,180,107,232,9,252,225,53,7,210,115,219,12,33,73,194,16,100,155,223,173,196,67,157,
209,246,113,249,200,203,110,135,94,255,239,171,72,104,95,129,149,229,196,179,234,161,127,4,92,213,196,83,233,231,181,225,26,143,197,117,90,85,255,218,11,167,145,185,49,141,120,191,119,51,145,181,157,8,169,156,95,29,62,59,145,79,226,19,211,68,49,101,200,167,244,221,116,202,152,200,167,242,187,98,162,80,76,228,138,228,116,250,143,238,126,0,82,223,8,58,22,153,111,45,132,216,75,34,233,84,245,191,36,236,157,171,167,244,126,211,40,213,128,189,3,23,163,66,177,202,51,220,56,116,66,136,188,36,113,191,90,112,139,118,224,26,156,164,173,13,41,210,207,131,148,146,115,103,130,42,93,216,155,171,9,251,7,20,234,203,78,187,186,30,94,99,227,154,148,96,63,29,142,1,244,29,240,211,231,33,83,10,201,73,216,68,223,88,108,89,16,172,170,36,162,88,94,57,75,222,224,44,45,205,114,14,74,82,127,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,186,214,73,200,32,45,84,53,236,87,1,209,
39,65,145,137,161,152,217,7,249,198,55,216,117,140,182,84,247,158,212,5,181,205,2,136,148,123,109,202,255,139,224,250,128,255,59,240,221,184,124,127,121,78,57,111,9,16,116,9,249,172,213,166,254,172,106,128,183,89,214,132,66,76,113,152,26,196,34,45,166,91,124,24,3,11,121,204,78,186,24,136,176,251,153,166,48,16,173,107,86,54,60,14,80,178,131,196,107,1,129,101,135,243,104,49,40,133,3,136,135,188,134,220,65,136,95,73,77,255,39,17,75,104,74,119,171,50,146,82,90,214,169,178,248,152,207,255,102,175,201,98,20,97,240,3,48,158,73,162,91,93,226,233,149,79,57,199,142,240,124,228,0,59,196,51,111,132,222,24,213,130,160,114,114,233,0,39,135,236,199,96,41,43,243,247,3,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,6,228,133,53,54,221,62,230,88,124,191,20,151,143,54,239,244,233,91,91,94,199,176,230,255,246,181,122,80,32,242,182,241,132,21,198,101,248,91,
180,203,232,40,19,15,110,153,130,97,170,61,101,129,149,151,236,68,35,79,159,49,82,213,56,102,90,233,175,50,150,185,62,3,104,125,19,175,33,58,55,170,150,52,227,46,198,102,100,35,61,14,135,71,109,55,164,211,89,141,18,46,44,95,231,231,142,239,198,224,166,24,120,3,186,245,84,48,88,43,97,76,159,79,243,35,1,7,249,122,153,195,100,111,203,239,70,81,230,110,82,127,33,105,176,189,230,154,80,241,87,179,80,71,146,112,36,16,48,63,31,41,190,127,111,10,151,47,152,95,200,122,131,226,111,71,188,216,255,118,162,210,197,190,62,22,4,196,59,165,160,110,118,48,33,226,122,62,215,10,187,31,138,0,17,144,106,246,88,214,50,228,177,202,205,113,144,6,124,87,240,11,92,48,52,142,196,28,74,239,89,100,103,8,94,185,27,106,112,235,244,187,244,40,96,10,204,28,61,223,211,233,131,92,135,43,185,229,208,245,32,174,127,232,23,19,75,139,47,23,165,88,246,140,202,173,102,127,110,191,105,175,177,27,111,151,141,193,48,87,181,249,122,97,45,69,
93,218,48,209,191,232,74,28,136,72,60,68,98,0,98,36,198,126,204,114,216,204,40,198,190,92,28,61,68,26,56,197,228,18,190,141,153,240,162,73,83,144,200,158,127,40,111,216,232,210,42,173,106,255,202,41,203,15,41,68,41,235,168,87,21,72,56,38,178,153,90,55,68,28,229,20,175,205,179,120,71,109,59,113,228,126,28,72,64,248,181,211,66,70,236,226,197,27,1,77,12,120,200,36,17,253,174,29,203,109,11,1,139,85,239,0,61,159,219,169,167,166,247,59,32,126,75,124,79,61,231,104,236,15,162,86,255,100,249,81,234,88,239,153,142,210,160,219,96,255,134,112,47,30,49,207,47,173,84,116,95,142,113,127,81,116,81,96,54,126,199,66,178,91,107,216,212,152,134,28,89,183,77,23,143,31,42,205,163,142,200,69,154,90,141,115,27,124,109,94,175,231,224,50,220,249,44,175,150,166,186,60,79,194,102,10,204,16,56,139,238,236,237,241,213,77,158,38,20,249,235,189,171,246,252,255,93,238,157,123,151,111,33,75,201,105,120,57,46,167,240,45,12,189,62,210,
193,100,186,120,173,29,15,183,149,158,192,114,222,77,84,155,31,88,127,154,33,154,229,22,146,95,19,186,49,138,227,37,105,12,180,5,50,226,25,220,132,34,54,82,100,137,80,84,3,97,4,45,20,83,146,147,201,79,67,11,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,193,160,121,246,13,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,70,74,125,235,172,11,32,79,42,70,248,27,85,129,252,246,80,71,101,114,123,248,70,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,106,214,111,68,12,153,231,202,145,126,160,174,231,8,209,15,94,172,2,20,25,209,204,66,168,194,130,124,215,150,24,31,170,161,121,138,223,85,254,244,56,239,189,133,20,221,172,126,203,171,184,222,31,242,177,51,8,8,187,219,206,142,80,31,93,38,55,
198,238,252,49,113,40,175,136,46,15,139,196,187,17,60,241,5,14,177,137,68,154,222,105,94,231,0,208,153,1,74,7,165,46,243,105,246,87,246,96,210,138,1,102,247,235,187,241,195,175,243,149,226,177,220,95,230,203,174,229,244,125,125,166,175,75,230,188,122,206,187,159,55,248,102,123,158,62,187,207,240,77,54,116,168,219,163,237,26,96,188,28,131,98,80,226,102,21,150,166,97,237,130,235,130,135,75,44,206,177,180,20,64,60,83,196,187,222,10,114,191,217,122,68,76,114,71,199,162,213,142,93,34,61,104,201,145,210,214,103,187,69,230,2,229,225,158,27,195,130,121,8,57,197,178,177,76,57,190,154,50,177,106,0,145,104,1,67,101,37,86,162,130,21,186,136,66,96,19,110,202,104,231,57,48,24,119,98,81,187,110,254,103,101,69,186,161,69,204,2,146,72,109,94,106,145,129,57,31,124,253,77,32,21,64,62,207,7,147,10,70,130,173,78,122,82,211,201,228,58,235,13,143,99,229,214,116,233,75,2,88,141,206,218,77,125,209,226,28,48,255,115,100,154,44,232,
149,189,175,215,199,113,119,22,217,94,152,187,54,74,88,208,200,134,115,67,89,88,51,192,139,65,236,159,70,38,141,133,150,82,190,13,146,193,165,193,82,127,166,157,118,158,71,65,229,80,52,104,176,49,220,153,30,219,221,104,219,252,166,160,77,211,111,52,180,39,28,0,111,183,47,92,122,91,124,187,125,7,175,225,191,233,74,118,195,1,230,192,92,2,72,211,15,230,180,28,188,142,155,21,104,120,249,93,31,151,201,107,165,176,191,238,17,100,47,53,7,92,0,106,197,145,241,124,148,244,246,130,69,172,125,68,51,241,18,71,136,187,59,11,17,135,128,141,76,51,49,63,29,2,231,64,74,90,90,94,26,246,43,106,90,74,161,43,177,132,153,190,254,11,172,110,187,155,210,110,212,27,137,191,23,2,225,215,251,171,213,25,54,188,53,134,215,217,72,44,234,27,138,123,254,184,247,39,148,221,97,52,158,141,198,55,196,97,57,122,172,118,191,153,136,154,132,229,40,7,201,233,167,48,113,173,117,9,90,93,35,228,60,29,191,146,8,28,185,251,209,39,45,217,123,121,
184,176,233,197,67,176,45,10,154,125,51,173,93,196,123,233,93,94,122,102,225,13,145,96,118,249,253,253,220,7,226,243,211,97,183,12,14,227,219,206,27,84,48,22,167,63,49,166,186,81,88,192,3,140,105,97,138,204,142,21,98,218,15,41,22,170,138,55,60,41,248,212,73,162,100,17,77,168,142,187,165,115,157,234,229,243,162,245,41,245,97,156,7,158,98,212,99,47,36,0,18,236,142,172,39,12,78,70,10,94,234,38,135,179,228,207,56,187,82,132,49,31,202,26,152,229,221,64,166,95,98,127,213,194,223,190,115,127,154,161,193,229,151,150,23,32,172,184,140,78,21,175,159,216,127,229,183,218,117,74,183,79,232,241,218,148,81,165,215,170,35,70,213,86,179,217,236,215,203,255,35,225,28,154,165,233,186,45,250,215,203,174,58,101,219,182,109,219,182,109,227,62,239,119,27,217,205,70,198,154,115,143,17,185,99,253,221,114,39,89,173,59,233,15,39,2,222,33,146,7,34,130,44,62,215,227,5,33,116,74,48,161,120,3,29,89,48,92,228,183,12,85,183,131,240,152,
94,22,179,141,12,5,9,3,196,243,3,230,99,82,160,51,143,150,46,197,73,80,124,210,54,103,134,158,8,199,54,16,24,35,51,129,197,240,207,233,4,46,128,179,206,51,48,172,6,95,26,128,252,114,177,239,223,232,232,225,45,120,105,167,119,97,146,91,146,117,81,27,144,95,10,198,223,138,236,66,58,72,36,86,249,108,212,215,84,98,79,102,200,221,127,62,48,168,12,82,77,134,180,167,124,208,105,117,187,30,71,123,255,118,121,64,87,21,186,221,174,75,190,22,24,104,249,180,104,189,143,87,73,228,90,87,154,1,252,106,171,102,139,193,99,65,47,13,0,21,238,57,89,77,142,150,136,120,150,11,30,162,43,144,150,139,69,145,5,154,232,56,21,21,254,241,52,56,242,20,8,230,133,194,128,79,227,34,214,29,197,172,25,113,27,67,108,127,8,250,191,55,131,31,65,63,180,200,69,64,175,213,229,53,207,221,234,237,198,91,254,183,90,161,247,175,126,3,17,15,255,39,136,116,4,208,78,224,239,177,105,183,167,211,163,222,225,117,115,178,56,8,97,200,232,137,
167,40,200,123,195,229,85,54,38,123,255,51,245,195,107,254,33,4,231,252,12,126,118,38,15,27,3,19,232,58,118,26,202,11,21,238,102,42,63,237,143,2,204,98,82,226,63,203,132,116,197,217,146,159,2,128,103,63,83,48,99,237,87,118,120,155,45,47,141,77,99,114,37,77,118,199,213,112,58,214,53,155,106,205,37,89,95,89,164,18,82,73,60,62,147,164,99,154,120,78,133,253,243,249,21,248,6,127,41,104,162,65,190,184,137,60,118,218,213,166,186,101,227,155,157,99,245,36,81,211,82,170,200,125,63,112,211,123,127,142,184,243,226,110,62,93,55,126,188,166,114,78,102,240,196,182,118,98,94,18,90,173,85,31,179,218,109,136,84,103,172,235,146,202,34,231,39,116,98,42,2,131,66,38,36,178,253,96,233,83,160,166,68,20,185,97,89,151,33,217,7,246,4,92,11,150,125,246,113,117,242,255,249,245,73,208,179,224,239,73,105,17,9,161,61,53,81,227,65,178,113,160,135,80,59,244,88,200,78,224,159,248,253,0,105,113,198,187,179,182,71,1,208,63,221,40,
14,204,196,170,159,24,61,30,1,148,148,110,35,38,144,18,179,80,53,237,120,245,244,216,122,194,206,171,217,38,1,113,126,54,163,242,215,52,83,186,194,91,219,194,162,120,225,93,222,163,108,170,37,139,252,36,156,147,130,242,9,252,24,216,239,1,218,174,255,210,249,250,120,62,159,123,238,144,58,241,31,65,163,166,180,106,213,118,251,131,253,229,142,250,228,165,197,74,245,44,244,242,124,176,0,157,91,184,243,203,193,43,109,106,21,28,82,11,254,99,206,32,201,129,242,91,101,214,38,207,232,117,214,173,223,239,246,177,173,85,204,127,252,230,164,103,89,4,173,198,82,112,113,31,157,183,165,224,26,74,243,226,144,115,217,86,6,35,214,199,177,78,48,46,151,163,241,95,125,227,156,147,142,106,34,114,3,107,90,246,127,109,242,200,218,54,32,186,99,186,181,97,160,124,26,46,58,193,34,32,186,12,101,130,63,250,184,114,128,107,167,53,56,69,253,228,49,166,125,188,176,233,104,74,169,183,115,74,37,17,138,146,195,106,82,37,236,182,234,90,207,203,235,6,180,225,
44,150,55,184,216,126,189,143,47,2,149,143,77,173,121,74,227,109,171,178,34,199,77,110,168,180,59,81,110,132,200,192,215,205,161,121,83,156,126,78,58,146,202,98,85,17,166,163,36,167,21,160,222,192,24,225,48,244,4,17,52,11,7,192,6,178,35,210,70,214,244,150,62,211,186,70,221,178,212,206,241,254,38,55,223,247,206,251,69,156,203,26,203,187,252,32,221,59,132,215,239,35,123,254,167,110,232,231,87,197,101,229,48,36,156,4,22,35,68,137,97,112,136,112,182,226,177,247,87,72,240,215,155,93,237,143,182,247,175,180,186,220,239,159,235,95,111,121,80,181,254,213,156,110,140,133,194,66,133,185,144,240,23,142,140,190,121,51,30,23,129,10,15,123,51,3,13,13,61,51,119,34,72,104,163,192,224,105,63,56,206,147,10,252,50,69,218,39,206,11,59,188,204,53,246,45,57,214,249,240,190,252,27,214,223,211,115,115,240,123,95,31,195,109,228,232,251,78,146,129,74,50,128,225,206,47,253,229,243,170,159,242,183,60,52,33,245,5,75,69,145,253,25,32,181,245,
141,210,33,33,15,244,167,88,22,111,211,81,38,27,53,154,12,155,237,239,234,145,181,61,24,66,119,253,27,242,127,239,50,204,206,253,59,40,136,41,114,209,3,247,136,151,141,93,98,67,133,9,138,1,185,40,69,33,172,152,72,132,247,78,125,17,230,86,19,104,210,35,41,9,224,74,177,68,163,57,97,176,206,43,24,135,153,148,5,103,228,29,211,188,50,195,204,35,68,178,20,145,144,193,168,18,185,227,31,201,179,139,98,117,211,94,26,226,207,125,173,45,155,247,5,54,96,16,125,159,79,103,109,23,130,237,0,39,93,130,78,198,65,203,119,64,34,218,13,70,254,78,251,248,128,29,192,250,187,134,246,96,218,164,99,226,181,56,165,225,53,49,8,173,238,176,57,105,241,177,234,125,198,155,65,255,33,58,77,95,179,229,169,103,25,220,54,167,222,164,79,89,184,76,168,98,95,0,127,145,229,237,186,191,7,156,199,247,251,121,60,6,156,207,235,245,250,125,245,111,191,147,203,232,117,251,235,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,57,64,255,3,57,201,91,29,42,120,3,20,68,34,81,159,8,52,21,233,208,133,1,170,9,234,200,163,165,130,85,247,44,192,197,0,43,241,198,57,151,183,240,7,166,253,11,161,48,71,81,254,204,227,115,210,48,206,149,82,106,30,52,164,124,219,142,180,100,228,250,5,113,2,137,166,23,98,233,77,148,6,169,214,228,230,115,82,124,170,97,124,18,51,254,212,56,228,39,97,99,196,75,60,159,162,45,207,222,27,24,10,210,116,240,207,186,61,232,250,168,50,130,126,181,138,140,3,255,45,141,253,91,239,212,189,201,169,22,105,29,29,205,162,111,118,253,237,132,31,32,161,206,67,75,154,81,202,90,118,54,216,92,20,114,226,226,210,224,136,72,187,187,137,205,42,192,227,31,104,143,166,64,146,226,123,148,142,61,178,10,224,109,144,242,69,217,9,36,148,57,99,152,151,211,0,56,54,133,92,154,102,66,31,51,211,93,231,168,155,236,159,170,210,188,120,159,5,207,78,136,253,44,200,155,76,190,23,132,148,162,230,115,224,18,242,105,111,59,159,
219,171,203,205,216,72,88,91,192,119,177,207,71,56,120,235,235,77,106,23,231,251,107,243,245,15,7,168,155,235,171,109,78,39,199,219,43,171,237,72,123,208,45,244,205,139,241,116,92,108,72,8,27,167,92,100,4,192,1,128,132,132,126,70,44,60,148,189,102,2,42,92,2,16,2,140,245,181,15,64,1,180,66,70,50,92,98,132,175,78,82,124,60,90,124,219,126,247,10,13,164,57,16,227,169,158,200,76,255,109,114,152,156,54,167,93,71,114,59,94,192,201,238,130,212,187,158,102,203,203,57,179,56,76,52,93,82,180,151,155,176,213,71,103,1,147,80,209,55,7,179,127,21,5,125,12,37,107,195,97,12,243,103,116,25,176,110,227,227,107,77,165,15,228,45,25,244,236,229,48,123,93,15,175,231,6,194,172,74,138,20,100,93,103,255,177,72,75,30,148,17,42,202,241,146,17,150,12,40,128,191,160,136,182,170,147,143,109,141,153,89,230,123,139,36,8,23,82,8,18,131,98,66,155,25,146,143,145,255,52,69,178,136,54,185,22,249,169,90,17,3,244,242,249,34,171,
166,228,26,227,134,137,237,215,139,55,213,63,251,57,1,210,77,143,131,236,31,110,148,239,15,32,241,129,228,2,240,30,165,71,192,220,218,15,215,0,129,153,30,129,78,28,252,212,72,213,127,143,190,89,248,216,3,188,236,62,144,248,1,86,220,255,220,134,139,215,218,58,56,65,8,119,158,111,224,121,2,208,50,89,149,71,18,161,15,130,7,224,1,205,95,155,60,230,30,33,142,118,10,131,29,230,215,185,253,155,250,124,255,147,231,139,4,200,3,242,247,112,60,42,21,75,231,235,241,35,82,167,85,17,148,185,0,19,8,132,85,24,251,215,231,175,103,89,78,226,122,60,96,196,46,169,23,158,127,247,146,150,220,161,110,179,90,84,170,168,82,133,66,224,0,175,208,10,50,228,34,88,9,157,188,160,8,1,137,181,164,4,242,4,150,18,236,7,104,49,81,207,210,193,187,207,175,140,172,76,244,50,246,230,97,156,8,255,120,233,51,109,138,67,145,201,244,37,54,130,114,54,92,28,196,38,217,228,132,111,93,125,174,163,120,166,26,253,76,199,113,47,254,180,199,253,
133,167,177,226,151,117,10,161,73,14,228,40,112,246,43,153,71,103,122,35,45,242,11,137,167,254,121,254,71,227,20,7,125,95,113,142,185,28,94,172,217,106,252,211,74,73,227,232,81,143,7,132,61,2,134,125,3,255,72,52,176,93,229,109,211,148,51,49,205,214,114,197,70,163,86,169,176,199,192,46,252,228,210,147,20,148,226,64,198,171,15,225,18,146,65,225,82,44,70,35,250,18,116,66,19,117,128,75,119,12,50,82,23,199,155,20,12,24,23,129,244,108,188,86,168,106,58,7,198,243,245,250,243,158,142,103,91,137,182,173,40,171,42,79,215,229,187,137,204,67,61,94,245,243,75,117,95,54,170,13,39,121,49,121,107,226,117,122,173,73,194,196,55,96,48,247,64,111,93,71,161,245,216,121,200,10,167,194,163,40,85,76,183,237,240,106,218,56,248,197,111,185,195,69,54,59,8,82,251,21,19,112,253,254,103,58,41,137,156,250,240,25,248,228,205,189,115,183,78,170,215,226,245,32,192,56,45,210,165,218,247,85,141,88,225,22,32,149,66,76,92,88,71,3,10,196,
42,132,48,27,144,1,56,63,158,17,32,142,35,5,179,185,82,115,247,24,25,217,139,131,219,213,165,75,39,221,184,77,58,37,204,135,117,233,52,110,149,82,251,42,16,241,187,232,194,12,95,241,246,223,220,61,245,254,19,57,78,74,53,2,199,127,10,70,144,22,196,175,127,149,102,127,150,53,125,119,157,186,62,149,157,39,176,220,238,189,213,215,202,209,81,89,134,181,245,21,182,233,80,76,59,201,190,232,26,198,205,138,139,133,226,164,239,31,140,85,167,89,103,108,183,156,151,122,219,85,111,217,154,228,150,7,146,178,100,96,87,69,212,119,107,154,3,131,170,89,110,58,112,69,235,76,233,96,35,101,122,17,57,156,7,133,20,98,57,44,46,49,96,112,212,238,224,70,21,227,115,73,192,163,172,146,2,139,214,145,96,138,167,83,143,8,10,53,85,151,148,213,130,125,211,187,173,225,245,64,245,223,92,217,18,130,97,120,7,225,228,113,200,247,242,7,21,1,82,29,220,55,8,248,101,252,253,120,76,190,247,18,254,69,241,31,223,45,108,83,77,125,71,231,240,39,
65,68,214,190,80,36,4,23,177,106,15,215,76,87,189,234,166,95,215,172,164,41,13,154,122,66,31,224,56,199,92,193,166,29,117,206,147,192,66,212,142,194,144,245,172,137,147,134,180,70,111,76,149,108,3,132,202,10,223,227,173,108,13,217,123,48,240,157,211,147,157,57,153,55,173,46,253,119,189,102,81,58,237,118,215,251,80,97,144,49,139,98,238,113,70,135,39,43,160,254,103,9,204,251,228,55,67,216,14,188,239,235,253,90,108,51,7,44,66,184,98,177,28,253,93,101,216,186,20,83,82,182,232,168,48,115,114,24,9,41,133,95,59,142,133,172,18,212,57,168,137,223,152,169,204,88,88,44,167,220,65,80,73,22,138,107,2,81,69,46,202,36,103,170,196,170,144,4,16,201,75,81,114,130,245,72,70,74,180,111,248,244,50,220,51,246,146,216,235,157,22,135,189,233,246,57,58,94,123,183,211,104,115,100,24,24,117,160,223,84,155,2,86,128,202,155,16,3,135,37,115,148,26,203,63,39,214,233,80,137,68,74,175,63,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,196,168,146,161,198,205,67,97,34,4,225,96,159,205,203,189,178,132,144,113,171,228,51,142,226,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,52,159,213,231,59,104,220,124,20,72,136,54,150,240,32,117,211,185,150,111,136,106,36,83,168,64,173,197,73,161,48,206,212,218,1,26,4,49,13,156,113,21,40,161,10,192,63,39,109,85,89,105,225,91,167,238,78,232,26,192,17,56,233,212,117,93,56,141,131,157,170,6,223,14,136,248,33,3,250,217,21,208,205,89,103,39,144,118,167,110,86,44,156,206,225,221,146,65,160,12,22,32,26,95,92,162,86,167,178,97,253,190,254,37,134,179,141,247,86,87,144,127,251,28,194,146,50,143,161,63,11,61,82,213,133,149,73,108,102,161,96,93,61,56,225,115,168,181,246,53,57,214,71,27,141,109,246,
230,26,85,50,123,59,245,90,227,120,178,233,75,20,84,25,53,197,156,5,89,28,205,86,248,104,44,136,34,33,146,20,113,52,25,167,129,32,128,99,96,87,215,80,31,11,162,188,151,87,78,2,33,176,99,24,56,42,222,15,2,78,13,45,39,195,113,72,133,196,67,131,27,175,248,163,65,67,223,167,86,9,1,141,161,95,116,189,156,102,25,109,18,41,212,8,40,16,78,14,15,188,98,164,132,224,167,25,35,91,23,122,248,161,105,179,190,193,186,181,245,133,78,123,29,135,32,65,104,98,243,202,27,109,31,123,185,97,3,88,69,123,249,244,228,100,40,219,248,124,194,104,127,117,113,202,40,72,174,251,102,190,59,10,140,23,103,221,53,79,107,111,239,2,213,84,215,55,92,171,40,164,219,32,17,220,140,17,102,89,164,155,20,129,166,218,144,179,80,6,159,130,164,57,71,181,168,114,167,116,115,1,5,1,92,251,61,143,239,140,245,244,219,75,69,42,252,174,209,230,96,80,104,248,38,153,204,200,53,219,141,189,222,247,1,251,221,165,169,205,47,208,246,235,87,88,
148,103,79,38,246,154,241,26,212,227,242,165,225,230,112,214,12,46,155,201,72,141,242,73,3,220,144,173,73,198,18,168,156,37,14,65,84,130,128,196,211,69,242,179,130,153,67,27,207,33,67,165,103,32,211,11,115,219,18,122,38,151,121,71,197,149,75,236,63,58,184,133,138,115,120,100,131,242,178,51,250,234,203,80,35,156,129,99,87,253,149,182,209,230,124,118,146,94,245,174,235,211,124,186,127,30,239,223,123,185,249,173,224,44,21,26,236,1,119,30,235,101,139,154,138,216,208,14,12,241,69,93,202,8,83,110,126,217,224,9,68,91,109,110,183,195,108,189,239,179,138,94,136,14,18,186,222,0,10,48,238,84,192,247,96,37,84,229,17,182,221,207,251,249,251,46,199,231,229,102,195,106,25,62,206,72,222,174,35,96,98,200,48,38,88,31,46,204,212,0,191,1,25,99,152,160,57,8,101,22,54,114,18,214,67,44,45,133,37,168,109,25,9,212,101,48,208,101,36,163,222,181,26,163,239,106,248,202,120,29,244,110,143,253,114,219,61,62,151,203,123,255,124,111,175,97,
164,163,251,132,78,240,152,189,202,59,87,86,177,218,191,6,241,62,110,203,205,75,206,42,251,75,22,160,15,224,230,182,247,203,77,76,167,139,1,118,143,239,99,229,122,157,88,25,148,155,191,6,2,1,102,62,154,72,81,40,252,48,34,194,58,231,227,10,68,113,170,44,12,245,14,236,84,229,226,239,86,161,17,74,69,95,174,165,99,76,220,243,68,162,28,198,86,35,59,166,168,158,239,148,132,77,28,234,80,207,114,68,227,22,44,151,76,235,251,39,97,135,138,252,122,251,16,34,163,229,128,236,65,72,133,202,239,5,173,191,180,46,87,110,227,134,103,139,109,56,123,126,84,244,58,231,36,104,113,64,186,179,147,84,117,235,64,126,146,36,230,45,196,71,108,250,30,11,93,202,43,179,235,104,167,74,105,50,48,209,99,35,181,117,173,47,149,211,236,43,174,181,42,39,22,16,216,37,97,154,120,187,230,74,86,142,155,163,179,64,148,156,200,4,1,146,106,6,202,246,116,142,28,143,233,110,133,132,59,76,129,6,7,16,145,224,130,57,38,19,3,98,82,6,99,140,
146,82,65,169,244,39,165,141,207,68,2,50,198,120,64,186,233,184,99,97,111,134,193,87,103,206,56,149,13,191,61,197,154,110,167,116,210,169,96,160,76,72,49,203,69,137,190,168,75,249,169,189,23,113,247,236,128,74,187,106,4,249,243,81,195,34,8,187,203,235,121,27,190,103,155,131,210,150,52,235,94,246,122,203,198,90,178,81,102,71,42,76,15,251,145,252,99,123,230,25,187,23,233,220,185,217,23,183,90,154,147,109,159,100,70,23,181,176,33,204,48,13,68,180,74,183,154,189,250,16,35,115,67,153,47,98,132,93,196,47,202,77,83,172,41,186,72,80,47,114,196,157,51,195,107,236,55,143,92,130,40,232,76,172,139,205,95,157,186,92,46,120,76,39,147,213,110,181,219,238,199,245,125,239,247,65,205,242,227,35,126,3,132,239,214,28,180,254,37,69,237,42,253,142,239,105,105,119,254,39,144,224,48,92,101,154,253,249,227,44,215,107,242,9,244,172,22,174,22,102,75,50,162,134,138,14,140,175,168,187,233,136,105,148,141,23,21,169,2,150,163,148,162,165,82,148,
26,92,82,87,209,11,187,237,175,19,151,209,133,146,202,162,20,53,173,12,15,239,179,200,122,6,155,254,110,187,193,218,236,212,220,237,117,199,97,179,217,28,30,185,219,229,244,122,109,239,251,247,125,221,239,251,231,40,179,250,227,249,218,29,67,135,195,229,102,103,167,75,203,232,67,8,233,193,205,188,152,20,167,74,249,161,187,222,252,125,111,111,12,216,61,249,202,212,104,224,227,133,126,183,168,125,119,129,209,79,29,86,183,176,175,211,113,179,217,220,120,70,182,130,109,109,43,182,198,136,20,25,234,198,52,87,52,76,141,65,122,63,228,43,66,53,64,219,56,24,6,241,141,36,46,53,30,146,37,35,20,73,50,29,91,92,145,66,130,146,69,56,245,131,236,203,186,53,59,91,62,170,179,205,113,190,89,207,71,119,249,124,197,235,62,173,63,192,253,121,126,95,143,87,192,227,240,223,205,165,111,142,247,122,197,105,186,221,180,23,60,130,254,116,93,4,96,229,246,126,105,64,24,174,11,138,81,39,240,47,160,223,255,86,88,240,111,173,31,176,245,78,159,221,177,118,
157,217,168,112,177,9,11,146,163,133,124,103,106,79,36,73,254,245,131,42,190,41,44,147,199,102,169,182,136,77,55,240,190,77,147,53,209,59,195,252,32,172,119,132,168,239,167,159,151,118,149,26,126,226,1,232,53,87,244,130,63,169,132,105,29,250,99,69,57,12,205,22,180,184,134,201,221,143,218,51,75,121,192,49,76,247,31,2,122,180,11,32,155,215,3,232,218,225,197,37,61,175,173,126,107,48,135,116,108,79,211,254,41,210,215,86,204,171,103,144,91,222,54,78,219,121,130,20,168,20,30,109,37,127,71,233,202,149,106,104,58,215,238,52,192,203,75,164,119,94,26,170,142,140,226,210,176,46,226,128,198,20,12,225,231,127,192,81,147,82,117,148,40,73,124,4,195,200,149,40,13,50,67,42,224,203,217,118,6,208,159,64,212,37,84,95,118,108,16,5,169,208,12,166,233,111,141,93,110,230,187,234,231,33,27,139,137,194,164,30,83,105,151,181,17,107,12,81,72,164,19,82,0,159,83,138,110,177,233,36,185,247,49,21,219,199,56,26,103,206,162,21,195,209,74,55,
187,123,94,141,140,17,75,119,190,25,250,206,91,239,89,97,30,45,28,196,229,137,248,27,15,167,237,129,170,174,244,77,11,103,197,8,29,74,125,149,226,174,151,245,207,69,5,47,6,70,168,117,14,250,10,207,225,31,107,115,161,26,180,212,200,38,177,135,247,48,89,59,74,195,22,126,74,228,184,226,184,3,138,227,54,102,108,89,207,111,129,88,169,205,138,93,33,106,218,221,139,191,7,131,230,142,68,46,4,56,135,125,29,124,86,250,57,72,142,127,118,175,213,106,49,217,250,175,55,144,125,248,236,109,215,193,71,247,219,65,193,135,210,204,242,78,149,117,217,201,37,246,243,59,87,90,157,151,221,233,108,198,92,110,166,90,3,231,39,37,11,114,83,99,81,170,152,123,10,40,163,106,232,66,104,86,19,192,163,82,176,210,27,53,47,163,202,160,84,10,148,51,179,38,151,163,3,1,37,160,54,168,168,148,252,140,74,47,39,142,215,108,154,111,44,132,151,241,95,65,123,29,174,223,225,182,63,18,46,236,154,239,251,59,100,14,240,220,206,247,61,111,15,37,29,239,
251,189,140,190,58,223,231,252,247,251,254,134,131,74,33,177,72,154,146,73,90,128,111,152,105,38,152,108,237,200,173,199,123,172,123,236,213,186,13,117,91,154,101,240,133,154,249,223,71,167,64,223,49,238,190,158,247,113,254,62,30,239,215,76,222,227,49,229,198,174,174,122,80,63,144,234,103,43,66,37,10,12,51,130,111,104,224,217,21,103,198,92,71,15,82,248,252,227,221,228,215,143,39,69,101,33,74,58,150,230,229,124,90,55,111,208,57,174,91,93,193,193,86,29,123,156,171,141,176,61,106,206,149,138,147,112,199,93,29,142,118,157,174,125,108,85,235,205,122,253,243,93,255,178,184,156,78,155,213,105,117,186,237,78,7,223,113,123,238,31,80,5,206,181,125,222,223,29,185,6,192,1,45,218,173,207,61,236,117,248,153,110,123,237,182,123,81,206,159,215,55,123,77,116,155,220,174,6,74,159,136,57,52,251,200,47,250,225,202,162,94,117,118,174,42,102,139,152,174,114,52,82,201,101,245,92,56,193,42,122,182,144,53,33,179,117,83,88,166,214,82,49,183,153,51,179,
229,1,90,153,128,55,255,68,183,66,102,178,77,132,106,182,8,90,176,33,221,161,92,44,169,18,6,181,225,6,82,187,231,37,240,54,207,255,51,10,110,7,188,160,15,98,104,215,177,33,83,97,96,199,189,250,126,133,39,243,37,55,119,55,184,177,249,52,200,39,154,149,205,110,207,107,29,125,1,109,231,215,96,6,66,131,74,213,250,74,6,40,135,37,39,47,126,123,191,125,193,91,159,110,30,177,75,5,57,179,149,219,215,34,223,165,225,10,52,0,43,216,3,219,211,6,87,244,208,179,197,187,64,157,162,152,20,109,38,8,12,2,92,1,253,184,178,130,156,18,227,208,48,57,77,228,150,21,93,147,68,77,59,48,49,181,60,15,198,186,255,13,165,210,89,127,212,212,78,201,212,14,104,126,13,168,134,109,234,124,96,66,186,2,25,242,169,168,45,53,110,104,110,60,229,208,78,64,238,34,244,34,207,229,24,84,129,116,85,191,189,9,3,246,234,179,115,56,94,183,176,235,148,243,35,223,7,230,174,188,248,188,118,51,227,39,96,184,183,51,165,89,154,111,129,152,
60,43,253,74,11,61,37,56,167,234,7,96,123,185,27,35,76,123,155,186,170,220,37,190,61,131,135,163,10,23,97,210,47,216,140,155,81,41,110,0,160,227,161,0,81,205,44,90,192,154,234,162,34,143,142,68,65,229,251,70,37,105,168,65,35,48,104,235,224,55,191,84,136,27,130,16,246,128,208,6,92,26,218,190,157,141,70,187,211,234,117,91,62,199,209,238,250,30,94,247,235,223,119,35,131,223,124,30,158,251,245,56,124,116,252,101,222,221,46,79,31,103,2,165,198,19,232,124,222,56,199,79,37,209,122,247,199,253,111,14,201,1,116,221,211,239,42,155,21,40,191,93,168,132,198,110,56,156,194,120,237,160,74,79,218,182,170,173,157,214,155,43,152,110,246,104,74,9,124,25,138,12,130,16,4,42,210,228,109,173,232,12,18,13,21,241,87,72,21,196,245,159,168,19,63,76,138,122,225,20,164,213,147,33,42,150,119,143,113,217,95,107,223,231,53,253,200,62,60,239,251,216,146,245,106,223,79,201,247,147,245,63,178,221,99,247,171,157,10,180,221,95,46,235,7,133,
1,14,206,194,134,110,224,205,212,95,53,67,56,238,84,245,74,179,69,202,254,22,129,237,231,51,122,253,120,191,215,143,200,251,186,145,247,219,194,102,227,241,126,135,105,72,183,243,117,65,223,195,181,180,187,5,252,79,218,45,143,7,171,20,74,250,101,9,190,11,137,97,34,236,1,211,170,62,8,109,96,104,10,163,64,48,196,30,93,21,77,3,254,37,112,207,229,120,139,43,114,69,236,92,191,151,106,73,205,146,182,162,74,109,228,210,229,185,186,87,226,220,235,200,87,213,94,130,245,237,146,237,241,150,88,119,193,236,106,161,56,154,173,223,56,241,183,169,174,87,203,5,119,133,253,140,87,12,14,143,161,98,112,89,172,207,59,44,236,183,187,254,165,247,141,76,62,56,0,222,15,181,62,163,144,255,246,246,229,222,150,207,35,99,77,113,80,133,226,89,40,158,73,239,220,126,61,56,70,248,35,226,49,163,118,14,66,246,241,142,180,76,170,145,53,109,19,2,176,36,30,80,64,92,188,36,81,179,249,164,115,202,83,240,88,214,149,208,214,83,90,113,224,157,230,46,
159,245,11,90,222,205,99,19,219,205,91,221,148,137,41,45,45,247,159,104,125,115,125,178,254,149,95,126,253,183,132,13,116,227,27,250,107,235,244,56,228,167,40,41,75,247,112,175,73,63,191,161,224,88,159,131,203,55,134,188,66,86,215,240,41,114,24,92,101,48,87,201,176,170,83,101,177,96,193,242,156,151,240,22,47,62,139,178,170,149,192,111,86,210,31,92,25,145,124,249,13,52,16,170,105,222,10,62,17,123,187,103,191,77,197,232,44,42,199,209,91,194,105,166,73,40,38,142,247,43,248,8,118,54,52,118,23,199,22,186,36,213,16,57,152,87,86,217,151,17,102,232,229,188,168,204,166,5,241,41,140,67,60,213,81,43,107,99,5,3,87,91,48,245,192,14,63,245,67,105,39,68,70,179,232,83,214,242,113,205,242,70,65,194,112,78,158,146,78,16,242,153,72,26,108,195,172,135,129,127,1,251,235,110,123,95,96,72,214,213,123,14,240,70,185,233,236,62,191,208,91,12,221,215,97,3,187,128,8,126,51,239,110,186,110,246,170,5,184,84,240,230,44,178,159,70,
213,141,221,138,67,237,130,138,140,156,220,171,194,62,51,5,197,145,170,175,6,189,26,90,243,137,148,84,105,160,122,121,2,202,49,227,161,165,106,138,164,26,82,234,198,36,205,95,65,153,253,10,80,88,73,80,55,85,11,148,211,221,36,250,193,137,161,43,180,246,107,160,236,252,230,92,5,244,44,12,188,179,80,223,205,172,76,149,47,188,227,112,217,108,78,203,251,128,7,239,231,32,147,233,141,92,174,154,94,30,75,161,229,242,24,239,254,14,193,254,157,31,109,246,187,245,188,115,169,15,16,234,228,248,3,244,102,211,3,124,51,65,215,254,33,98,245,31,43,174,88,173,80,40,17,63,101,58,131,71,183,138,212,72,161,78,53,23,32,53,27,55,196,6,44,41,234,167,93,153,62,52,178,118,86,181,150,213,165,210,84,148,19,51,192,147,191,116,160,144,82,25,116,115,149,170,200,211,102,242,98,19,113,53,79,127,207,243,219,111,101,189,222,234,247,206,217,217,59,219,239,119,128,230,40,209,223,111,182,9,173,62,33,146,32,49,94,206,149,157,229,148,108,84,140,135,
10,238,90,86,113,150,109,244,205,181,113,59,239,119,15,244,39,102,227,125,31,186,59,123,3,52,119,93,61,238,171,247,134,136,247,251,231,93,100,191,63,182,179,153,236,111,151,211,246,214,220,3,59,51,99,73,23,86,2,115,131,146,233,235,234,48,163,21,29,165,236,8,216,95,202,71,10,27,136,196,240,40,129,23,231,5,19,49,74,80,61,200,144,136,219,124,24,38,156,36,14,207,146,92,235,60,163,141,120,26,36,93,25,112,170,80,83,187,187,11,89,143,248,55,182,58,167,187,156,60,3,3,30,136,217,248,140,211,207,24,45,118,86,247,234,111,6,62,188,141,118,46,54,102,10,204,239,78,122,246,9,8,216,233,112,32,156,20,216,59,219,144,119,238,150,234,181,88,188,222,157,67,198,20,253,150,68,32,186,208,86,107,66,90,235,140,25,12,165,24,94,191,18,54,232,13,141,48,84,19,80,34,143,85,228,105,9,34,12,239,27,3,236,234,134,197,243,215,226,9,25,146,109,172,250,9,140,161,35,221,78,33,16,137,204,225,143,23,176,136,254,14,239,128,132,180,
41,86,54,114,44,178,186,56,196,147,222,209,149,28,12,255,83,112,186,12,124,39,216,8,90,226,36,1,67,133,81,232,32,141,22,250,36,106,106,239,233,69,118,26,13,110,44,142,102,29,118,150,217,202,249,147,87,166,177,0,221,142,197,30,237,111,26,109,112,164,31,199,168,203,190,203,224,173,227,188,186,205,20,143,156,3,51,207,145,76,95,161,243,184,187,248,19,50,149,229,65,115,18,117,104,48,180,40,245,216,32,224,249,114,33,75,154,178,64,211,166,102,159,37,241,72,26,122,102,3,159,221,230,160,105,105,115,94,226,42,68,8,212,194,238,63,164,68,79,239,150,140,199,125,73,115,75,177,43,202,79,192,31,50,128,207,85,46,36,97,94,70,35,247,53,12,204,170,68,44,214,139,195,94,45,18,33,156,137,80,168,165,83,202,170,37,118,15,225,182,235,171,61,168,30,89,87,91,207,249,30,233,13,9,110,139,237,188,250,61,124,159,228,124,177,247,118,141,53,155,221,62,88,210,73,159,168,210,63,48,118,57,108,75,5,91,125,246,14,177,95,20,241,162,22,54,
160,54,233,253,136,166,87,2,228,7,200,11,191,24,33,135,133,1,96,225,200,111,137,236,165,248,32,41,25,176,47,85,84,77,29,179,44,158,152,26,166,117,29,116,63,213,212,149,99,31,77,205,251,127,32,250,57,84,44,248,92,220,171,108,116,40,156,157,157,94,189,30,234,118,92,118,175,199,27,177,59,60,255,154,253,230,59,30,191,157,75,234,175,101,203,19,124,222,251,207,250,234,126,224,221,223,147,251,247,152,124,59,58,157,172,251,125,131,194,48,91,136,7,96,110,123,31,55,254,121,127,125,111,247,55,246,242,222,141,223,163,155,244,231,245,122,217,127,239,64,205,76,174,174,41,15,64,51,185,157,158,157,51,190,254,177,143,118,50,253,189,31,175,96,103,100,10,255,81,80,211,80,84,80,125,91,177,36,22,226,5,238,26,73,86,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,246,47,126,65,215,92,47,88,44,84,168,87,198,118,215,132,147,24,32,37,81,31,161,
216,72,198,167,55,198,244,195,71,180,104,127,110,157,239,125,213,221,219,149,57,241,189,212,249,58,87,143,215,247,253,62,167,189,111,166,51,114,209,116,91,111,187,237,243,184,254,249,180,221,219,108,213,79,185,14,94,208,48,7,134,142,131,157,240,71,56,76,136,198,47,166,247,37,180,26,79,2,2,244,86,35,194,77,49,226,138,68,129,64,170,209,91,161,32,23,98,26,76,211,98,158,243,221,96,24,15,177,112,84,139,117,203,42,164,226,210,65,151,208,124,254,12,153,124,76,102,161,152,177,14,96,6,105,230,95,2,29,8,128,32,104,102,35,251,85,167,113,16,135,113,50,128,92,19,143,237,71,95,228,84,119,239,233,233,126,247,205,239,171,58,33,169,4,136,94,25,77,197,75,214,120,217,81,231,96,109,17,70,152,147,48,219,197,125,141,104,131,92,28,145,108,37,73,149,55,48,89,53,157,30,73,36,201,205,247,225,196,217,237,27,164,55,188,88,34,214,13,64,232,47,100,72,204,195,5,134,60,48,15,168,203,214,44,158,217,93,60,36,108,40,49,136,91,96,129,
56,20,49,192,79,8,29,166,16,115,226,22,45,219,249,96,151,168,252,75,98,171,165,248,192,109,97,206,96,224,83,122,46,49,117,19,222,92,205,88,170,180,231,33,238,14,167,226,147,235,103,171,109,57,151,177,182,154,206,97,23,105,236,214,207,86,163,171,201,77,31,158,130,186,195,195,127,144,137,2,143,4,22,88,24,94,218,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,127,134,106,89,89,181,163,16,172,144,86,69,205,27,50,172,252,73,222,18,168,183,194,41,57,255,69,175,77,150,210,87,181,170,38,254,60,136,61,99,246,116,76,186,179,132,198,226,18,58,36,23,32,37,12,17,251,101,98,133,0,113,128,189,176,134,32,155,50,236,105,78,145,182,243,253,225,153,239,224,122,119,111,161,255,141,88,156,21,116,119,11,105,121,40,147,150,219,176,120,223,150,195,87,127,173,60,135,198,219,34,109,165,63,110,237,225,186,157,130,166,44,149,117,73,107,214,76,80,154,114,195,162,137,207,47,
89,149,126,41,176,105,166,173,37,16,6,133,176,82,233,32,73,159,111,144,27,117,135,65,235,183,13,177,230,161,65,9,85,29,65,253,186,208,13,89,47,84,84,81,84,226,108,167,101,202,202,69,140,104,203,98,16,253,117,151,159,173,32,224,238,172,190,251,70,153,243,140,148,84,249,85,42,216,140,102,227,249,133,58,34,211,167,180,242,133,84,240,146,171,70,11,221,118,219,238,15,196,236,216,63,167,211,166,229,127,234,240,182,222,241,4,122,185,108,190,30,80,6,188,202,124,207,251,233,248,241,85,70,174,20,220,70,3,222,118,217,45,239,79,43,216,93,115,218,127,62,146,174,89,109,82,149,42,52,58,228,111,216,146,96,2,185,118,113,212,224,51,8,16,224,83,71,17,54,234,200,158,141,220,32,65,173,142,144,141,11,98,28,7,245,227,24,101,67,196,138,56,138,107,32,201,47,228,183,154,42,201,86,246,243,60,171,187,155,12,175,55,109,123,159,69,205,120,182,247,225,41,172,247,164,135,210,109,185,182,235,223,179,244,17,8,19,154,167,134,132,23,32,198,138,74,
242,206,104,95,134,72,151,202,7,38,137,62,171,217,223,235,182,251,122,126,106,247,97,182,251,1,125,217,14,84,149,179,233,2,160,231,247,247,217,111,151,17,86,207,196,130,147,208,46,254,15,44,50,177,74,104,87,239,180,122,157,86,180,216,99,102,131,199,104,172,86,24,30,200,83,234,94,222,52,41,201,135,97,232,153,145,159,90,140,145,40,159,83,68,253,165,249,41,104,221,221,77,8,176,109,35,181,227,103,24,3,149,120,202,74,31,31,231,46,18,169,111,52,220,127,221,193,173,161,8,187,52,99,188,66,36,61,106,85,51,78,84,161,251,167,163,0,116,137,56,121,8,114,17,253,52,200,29,156,48,52,145,167,209,102,1,205,244,246,178,44,85,215,230,179,165,50,55,102,109,222,158,78,75,110,67,89,114,239,220,235,246,191,31,67,77,111,16,67,25,129,96,123,98,146,93,25,98,80,67,72,176,93,198,23,66,147,37,184,196,73,239,137,206,16,133,140,45,27,243,17,80,82,105,5,212,54,65,137,37,145,17,156,105,102,171,187,120,68,2,22,132,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,202,82,236,241,22,24,197,100,129,28,15,224,129,195,95,136,190,198,28,186,16,236,50,87,236,28,80,242,61,216,152,190,193,27,93,178,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,80,89,149,146,102,210,81,215,144,147,18,253,91,154,161,158,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,248,138,17,157,26,131,103,146,186,161,24,200,119,98,221,173,119,246,54,103,247,248,107,58,106,73,166,121,154,67,65,154,224,106,62,67,241,142,3,165,84,33,80,223,89,76,108,71,100,128,73,38,83,73,159,255,3,72,184,232,137,250,141,57,160,3,90,187,109,191,185,169,89,141,69,219,81,213,60,160,175,237,250,212,61,95,169,161,227,227,110,121,23,79,13,199,57,80,199,57,66,179,89,31,159,223,169,88,
194,54,126,167,148,214,133,24,165,169,213,37,137,134,234,146,213,24,151,12,10,178,111,65,169,42,14,8,39,143,158,35,162,169,181,145,222,24,255,227,119,136,186,96,243,119,243,128,63,170,166,105,157,186,154,97,49,34,116,88,215,101,78,116,54,112,215,11,69,124,241,17,210,182,152,246,98,8,62,60,70,160,1,200,220,180,191,239,54,58,155,94,187,213,110,180,186,170,94,221,215,240,120,221,104,187,221,229,249,184,255,225,219,244,56,248,84,84,241,92,15,69,244,1,87,229,152,230,14,177,63,31,180,195,113,192,193,131,16,81,126,223,244,47,112,184,253,150,139,211,242,118,28,64,103,23,10,176,129,129,111,122,122,250,234,103,224,62,47,191,88,165,187,252,83,9,88,167,47,43,72,120,71,255,0,213,50,20,190,92,156,251,135,233,229,154,132,174,163,162,37,117,50,221,67,17,29,158,84,216,12,109,111,74,130,90,152,173,162,108,121,79,206,141,73,119,171,109,117,58,187,255,248,184,239,91,188,199,3,241,120,159,115,180,211,63,74,188,190,236,14,208,173,204,203,148,
41,93,246,80,57,45,142,103,1,2,166,243,157,73,126,111,130,253,246,185,253,64,212,187,19,214,189,63,174,23,122,142,166,235,114,219,62,41,155,221,221,242,216,27,203,154,173,217,108,51,85,182,77,86,170,20,238,214,62,160,55,55,55,24,153,179,173,90,179,214,170,53,253,191,103,118,90,204,41,99,134,51,109,235,99,53,120,114,53,41,102,180,87,196,148,108,161,110,38,155,124,108,89,200,137,48,136,238,40,237,96,192,232,136,170,68,37,168,197,191,253,132,209,41,174,162,136,68,165,84,251,217,136,171,101,138,7,189,18,240,192,228,92,163,2,158,88,156,139,77,161,73,72,162,56,224,236,248,76,148,33,223,85,2,63,240,14,202,19,204,36,138,1,98,102,188,91,232,68,12,23,183,121,217,197,185,153,39,143,189,111,185,255,15,28,31,34,145,46,14,145,240,126,44,194,229,215,144,233,148,47,133,55,185,211,187,63,161,139,195,4,92,72,169,255,230,97,118,137,86,44,22,0,210,240,95,122,240,26,34,235,65,244,135,136,3,128,0,68,118,224,116,225,18,47,72,
48,206,212,172,17,79,8,82,232,189,133,123,131,22,125,37,143,80,86,139,7,132,44,213,38,121,36,10,137,57,198,187,132,217,177,94,195,66,236,238,147,188,147,91,48,110,75,65,62,202,185,73,198,198,65,191,9,220,84,30,18,164,109,27,200,244,17,74,37,162,210,204,66,198,208,138,86,143,124,68,247,207,112,108,114,70,182,91,61,23,255,105,31,157,55,137,149,218,243,102,154,158,69,125,12,27,87,50,109,194,117,79,10,148,196,111,90,148,173,172,236,72,22,95,74,254,134,224,73,186,92,174,118,21,4,35,142,195,92,69,192,130,245,207,89,187,201,156,17,49,89,121,63,90,28,226,200,140,8,150,50,202,164,249,22,138,94,222,101,20,223,182,248,224,51,142,75,84,194,199,220,89,72,38,156,214,33,194,179,96,4,39,83,190,17,58,129,241,243,177,77,36,116,252,130,51,170,243,126,121,17,38,94,41,134,160,157,118,117,222,35,189,108,128,106,232,80,53,219,251,13,190,111,178,222,97,103,109,186,23,95,21,199,78,224,186,173,32,133,29,104,161,151,32,118,101,
158,130,82,17,114,147,53,92,108,169,243,69,26,150,176,82,199,9,73,41,182,122,172,44,217,168,156,60,132,242,54,75,121,92,75,216,165,158,163,86,161,189,130,55,151,138,25,85,67,79,46,21,53,145,9,182,215,218,3,244,120,188,136,28,46,239,108,199,119,184,140,159,40,246,59,254,48,9,178,11,215,55,231,0,1,0,209,49,176,16,233,48,55,50,114,82,83,41,177,246,114,53,217,123,205,86,179,93,109,87,115,206,207,180,59,157,112,226,98,248,46,40,13,195,110,193,252,30,78,100,126,193,44,242,227,249,219,246,239,231,251,188,79,7,251,207,17,39,134,125,208,45,153,231,212,226,204,225,170,121,157,125,252,221,189,6,163,133,155,121,125,242,183,62,57,182,97,172,187,147,142,17,172,113,47,45,54,133,51,93,211,40,53,235,169,4,76,49,133,45,248,249,166,156,188,36,29,108,81,110,82,42,75,145,17,151,197,189,151,160,224,237,249,119,105,182,186,130,9,196,114,127,176,63,62,31,241,5,126,66,179,91,3,163,226,133,168,15,191,41,85,102,240,247,179,59,
30,163,122,221,197,77,79,157,227,129,113,67,181,67,31,91,53,34,89,7,130,230,102,14,111,219,237,120,238,83,130,4,214,226,187,98,156,191,24,237,214,130,211,114,167,139,39,48,151,172,1,152,142,77,127,46,213,196,150,12,181,82,208,147,177,13,155,153,59,194,121,228,47,60,16,199,65,86,200,45,138,53,126,136,4,73,10,252,212,51,249,247,101,171,28,227,82,220,140,66,47,74,117,127,109,225,23,167,28,243,74,92,13,64,37,160,228,148,148,89,54,28,17,173,37,33,97,114,159,81,25,109,242,14,22,85,130,42,182,182,132,136,219,50,136,83,97,46,78,133,28,130,227,46,179,201,197,228,136,65,142,136,176,190,9,2,52,78,128,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,127,145,254,43,152,40,5,44,166,65,93,36,95,244,249,129,125,242,1,162,16,49,120,254,163,24,102,69,152,155,176,4,70,208,89,136,88,216,70,126,74,84,195,17,104,249,76,46,82,226,200,208,195,104,141,
90,10,200,8,229,132,196,83,218,69,34,136,196,29,3,163,68,19,146,28,205,21,153,209,37,253,160,25,102,144,147,179,120,55,196,59,121,70,176,57,50,153,169,249,155,59,57,58,38,17,19,73,103,194,145,128,136,136,108,230,66,136,84,160,50,100,214,61,162,136,148,27,160,119,189,78,45,105,8,98,9,168,95,66,4,68,99,112,217,189,230,147,49,139,49,37,225,137,154,44,65,43,20,48,154,187,185,41,62,242,200,142,25,25,202,138,26,169,36,170,44,169,162,166,39,169,32,113,248,206,105,200,140,153,30,63,33,198,184,129,41,10,138,240,223,245,113,142,81,29,234,73,149,32,99,99,150,99,89,140,178,52,155,6,170,17,192,34,183,17,195,60,4,24,20,168,58,206,202,81,9,136,108,81,149,64,207,93,9,8,87,72,78,198,213,172,222,41,17,133,131,27,220,127,135,71,99,150,74,10,32,197,49,71,227,100,72,25,147,141,77,223,97,181,233,193,84,177,40,164,95,58,75,53,26,117,197,244,68,86,81,27,197,41,63,70,107,188,245,169,126,32,232,53,229,249,
97,13,74,80,98,226,4,189,165,251,2,215,152,32,20,113,142,92,182,138,244,134,98,68,238,32,146,175,104,247,166,11,44,189,248,214,216,184,110,157,215,41,96,4,202,2,146,211,172,110,97,2,3,192,171,165,4,189,39,83,62,86,160,24,34,236,143,1,240,64,136,219,192,185,70,67,221,249,39,207,58,187,246,212,217,120,107,91,159,93,158,175,125,111,132,203,50,43,215,8,238,146,213,224,180,155,91,166,235,114,124,239,179,239,123,95,172,145,57,203,117,61,208,52,246,217,46,171,228,178,193,107,127,47,16,205,198,215,1,68,235,32,151,183,99,7,172,127,116,45,128,79,76,91,173,207,88,41,33,91,189,172,174,177,50,195,202,193,139,219,237,182,124,133,173,19,205,52,211,217,39,12,77,74,127,25,173,152,74,252,101,219,242,31,13,22,227,121,112,32,63,23,166,5,252,51,174,164,188,251,105,14,105,245,229,210,113,215,83,76,22,119,213,106,181,14,93,247,235,124,50,39,54,97,17,218,255,61,101,156,250,115,145,201,217,118,226,159,195,249,5,244,62,113,123,11,
252,99,169,83,3,50,186,129,130,130,248,78,140,213,109,108,108,30,175,219,188,63,91,94,35,168,19,158,195,231,120,219,80,247,221,246,185,59,58,190,206,33,68,16,210,213,200,140,77,105,41,74,193,56,87,67,146,40,162,118,154,169,92,75,46,172,30,31,85,199,72,71,101,170,203,181,118,91,148,136,8,153,146,146,220,137,95,232,158,116,61,157,163,4,203,190,228,31,180,13,72,133,13,98,160,7,246,230,148,184,95,176,89,101,47,250,39,246,180,59,224,86,141,98,185,101,98,102,185,143,154,182,124,24,147,18,135,163,238,228,172,128,163,139,69,136,67,37,184,148,80,162,86,25,42,18,81,39,242,195,4,57,5,170,15,173,80,62,114,56,70,200,252,1,245,252,99,128,182,171,52,223,228,229,237,125,99,205,239,123,10,84,216,21,243,210,114,111,208,219,200,30,12,4,26,10,84,194,38,129,242,144,200,197,249,82,225,252,80,133,213,18,181,133,183,58,30,89,138,87,117,185,151,173,241,234,19,85,170,177,60,122,227,84,157,21,95,36,105,78,22,125,20,173,170,24,
236,73,168,130,50,188,48,3,197,229,80,195,92,29,1,245,82,148,69,108,210,102,6,37,160,114,87,135,253,131,9,78,99,140,91,37,28,185,17,113,215,11,216,164,13,84,72,41,183,142,2,150,177,64,218,51,233,113,51,196,152,36,78,104,48,181,190,44,200,140,73,203,68,90,196,88,72,91,166,205,216,10,157,176,170,117,45,148,210,172,35,173,89,106,179,238,192,86,58,140,49,37,160,218,8,153,197,28,21,213,32,171,195,95,222,15,184,246,125,87,0,126,92,80,230,183,168,23,130,198,68,33,215,208,193,51,172,91,67,179,100,156,107,54,79,111,104,110,94,106,150,100,24,31,53,190,194,193,87,33,250,108,199,5,189,17,12,194,92,108,0,160,17,80,18,17,83,201,130,74,156,30,76,9,157,246,175,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,60,21,218,77,69,205,234,67,119,208,103,32,111,75,49,194,41,179,213,31,208,59,144,90,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,241,97,161,250,61,75,218,246,123,39,73,253,97,45,97,158,185,245,153,95,93,206,47,78,215,86,2,102,74,20,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,165,238,214,25,170,30,253,81,249,184,44,124,95,243,84,91,37,255,89,0,87,9,170,148,93,88,84,14,105,97,192,112,90,91,219,90,234,223,97,129,144,205,221,105,193,70,204,86,130,79,72,129,121,123,121,112,144,47,167,205,255,252,62,207,135,211,205,92,30,223,87,37,210,238,
170,42,254,222,159,233,140,37,98,197,246,29,217,74,215,194,245,6,15,111,17,157,6,67,10,234,162,179,94,226,54,211,83,115,251,213,235,56,93,78,143,155,254,187,189,47,250,219,81,228,241,158,140,116,141,83,190,173,17,45,83,79,5,165,32,31,21,103,84,168,94,154,11,177,209,1,11,32,16,22,114,131,51,174,76,75,146,203,9,185,197,198,174,166,87,23,117,149,158,89,80,130,138,18,7,227,244,12,77,39,197,159,143,142,116,32,214,32,228,130,246,15,24,187,232,163,123,5,185,167,104,70,100,145,25,134,15,21,80,63,139,7,100,7,164,195,224,88,42,152,224,5,240,189,209,1,1,195,39,226,118,66,102,118,170,78,80,10,72,23,127,23,200,201,224,122,12,199,253,154,115,186,120,234,11,121,42,145,221,219,87,137,192,161,135,214,174,231,121,30,254,1,37,178,151,166,69,225,80,41,10,26,62,230,229,121,177,255,236,18,176,14,5,180,229,148,100,195,69,60,156,184,78,197,210,239,76,72,9,71,169,183,48,150,123,103,162,124,169,243,111,234,65,225,73,213,
104,241,228,181,104,116,135,201,52,69,245,136,81,138,229,75,54,65,169,157,41,13,111,75,180,160,22,73,152,154,67,48,78,8,161,48,69,126,160,176,102,101,108,4,165,13,136,199,66,0,114,25,35,206,12,86,11,101,176,58,101,35,41,164,212,165,114,160,176,82,183,35,135,136,153,54,142,169,235,150,118,44,69,202,88,137,115,27,13,255,147,53,19,74,7,180,128,37,43,69,229,48,86,164,146,23,162,136,96,17,164,22,220,5,192,234,152,138,84,51,147,163,176,194,136,20,15,127,63,223,171,247,253,134,122,249,45,91,99,251,215,252,213,173,86,182,98,216,73,127,58,134,102,156,151,107,46,127,115,67,137,220,98,8,25,223,219,250,225,27,164,50,63,139,227,220,67,207,115,61,251,217,216,13,131,230,78,195,92,230,198,43,10,39,164,132,71,58,229,120,144,117,175,92,252,203,218,78,140,152,134,49,36,174,117,106,11,99,118,169,94,76,201,81,67,115,81,19,34,90,211,155,77,34,177,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,134,49,20,155,138,206,21,113,232,253,186,206,48,196,110,150,126,121,241,77,193,193,112,220,53,0,90,24,41,198,48,153,13,2,165,138,43,217,106,127,156,63,199,27,54,113,6,112,189,211,142,2,37,139,57,88,74,252,4,233,164,110,101,40,29,193,3,23,114,40,3,119,54,208,82,36,68,13,137,91,90,41,188,218,62,4,162,190,65,138,144,159,165,177,249,19,184,130,119,191,178,222,2,251,20,21,22,247,201,201,250,208,75,172,63,239,229,104,59,45,191,190,219,5,213,109,79,209,187,233,231,247,126,255,66,133,211,109,111,237,10,90,54,63,239,69,251,219,186,102,57,91,86,39,24,19,132,214,236,206,154,195,110,175,89,238,142,211,91,104,214,219,63,105,40,95,41,133,72,200,10,19,33,255,27,121,124,140,106,238,39,125,87,156,206,46,48,252,119,180,168,75,186,99,249,28,26,58,128,35,22,176,130,178,3,19,129,64,80,220,116,132,149,35,160,183,206,125,22,179,238,23,232,107,62,125,
15,223,67,244,246,243,81,32,231,240,239,176,73,109,70,170,135,173,234,237,113,16,194,50,68,67,1,240,153,208,34,98,148,252,160,27,60,56,203,213,98,197,102,53,217,169,246,191,125,184,22,65,39,187,91,211,181,252,164,220,143,147,188,9,117,173,0,59,42,60,115,118,48,52,92,68,168,123,61,161,144,208,100,174,102,136,142,213,127,152,152,219,25,89,156,66,46,74,43,196,57,46,123,124,75,43,34,125,73,164,53,13,76,37,132,192,70,59,169,134,219,56,133,63,153,5,167,65,134,52,118,86,182,248,1,239,181,122,66,224,113,7,137,98,130,107,78,21,18,162,215,162,158,14,147,90,131,128,146,119,252,33,242,105,60,210,128,80,84,138,198,185,52,35,149,25,30,7,134,10,241,38,204,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,253,41,221,36,155,219,62,136,93,172,58,173,19,153,192,161,243,209,49,92,19,101,165,156,128,64,157,170,177,15,113,34,37,56,169,21,58,151,200,64,114,31,5,85,166,36,
51,117,174,56,56,151,116,221,254,96,100,201,3,135,121,199,207,18,6,25,241,68,55,48,176,8,165,12,217,100,156,138,178,232,0,69,99,64,130,194,102,25,11,33,141,78,152,59,5,54,118,50,31,83,9,81,32,67,218,212,225,234,116,55,252,150,96,179,228,234,67,24,9,237,83,164,92,29,234,78,25,163,97,72,29,24,236,109,140,13,250,53,90,99,206,15,195,44,149,181,16,71,43,44,197,59,41,91,200,148,91,18,200,236,95,251,80,238,16,153,94,89,197,71,158,160,90,178,88,177,215,17,126,182,162,98,73,113,50,38,101,105,113,148,226,88,145,47,203,120,254,241,93,185,47,250,185,246,141,171,196,159,38,241,237,83,22,5,65,6,187,72,170,64,18,201,59,173,208,37,62,21,222,98,217,107,86,240,191,209,242,55,106,254,16,179,166,175,204,244,149,223,44,95,149,153,99,166,247,68,141,26,44,1,225,63,149,33,213,55,67,215,59,29,247,135,218,133,245,147,16,227,183,216,113,45,57,106,14,76,229,71,187,42,219,113,137,171,101,116,30,139,32,138,56,65,
195,240,162,185,212,254,155,77,176,80,194,196,202,183,58,186,92,235,239,222,6,138,205,184,143,193,15,210,243,173,94,128,76,129,17,163,128,74,233,202,137,7,34,32,232,228,24,129,151,132,203,151,194,139,115,133,23,184,0,152,132,101,93,120,72,80,68,164,123,23,66,53,175,84,9,175,211,132,124,253,112,88,152,43,15,33,201,161,33,114,69,4,161,124,88,12,189,177,65,92,179,214,54,127,1,72,103,48,83,96,61,114,91,83,54,227,203,250,189,123,158,159,235,112,247,188,124,95,153,86,4,78,136,108,28,46,184,77,119,211,246,14,91,80,160,237,6,116,48,81,170,159,43,210,93,65,218,237,77,199,187,101,197,255,45,119,137,142,2,189,121,92,80,216,206,41,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,236,38,118,82,17,121,137,36,205,155,242,181,22,163,205,98,68,90,205,70,203,241,6,166,202,249,191,251,199,162,7,129,223,221,112,59,106,224,134,123,
131,145,26,5,212,106,66,36,220,97,144,157,32,31,225,38,116,184,223,91,147,169,128,71,167,158,167,212,90,52,183,249,42,3,5,66,101,15,74,133,100,233,229,100,6,16,10,114,224,199,37,238,24,218,95,12,1,89,239,64,136,99,216,202,144,227,227,74,11,212,98,180,115,100,131,59,81,66,69,42,16,178,84,68,220,205,54,43,200,246,14,239,177,90,198,139,98,201,235,82,78,107,62,241,219,73,110,225,79,141,213,240,10,77,165,25,162,51,63,1,173,180,181,64,97,210,170,157,13,143,142,50,38,146,136,154,223,192,160,156,207,111,251,99,88,0,158,128,77,65,203,47,77,127,202,49,54,247,29,106,159,145,56,173,129,146,17,10,237,85,244,80,205,97,65,51,81,112,191,226,89,38,255,95,178,40,31,105,35,37,132,194,155,191,66,155,186,153,252,179,83,69,55,125,30,186,167,140,209,153,14,95,243,187,26,240,221,191,76,177,29,6,113,61,101,36,229,1,158,50,186,160,241,255,171,246,194,187,124,50,68,230,33,49,139,144,38,87,0,248,102,98,207,84,210,61,
244,113,240,197,233,59,1,46,116,45,221,182,34,18,9,33,20,141,79,179,83,21,128,154,136,37,104,26,232,121,38,8,176,8,249,171,100,184,34,92,26,113,13,82,156,153,182,150,225,70,9,193,236,151,53,52,36,162,154,60,150,0,93,70,82,177,77,94,22,94,255,236,238,109,222,74,169,99,210,176,76,44,33,136,217,104,131,49,35,183,1,249,67,66,102,17,77,10,11,70,38,129,46,38,111,122,148,182,118,241,24,133,27,96,76,95,9,166,41,20,68,59,61,167,177,189,166,156,149,52,25,22,141,222,87,72,123,185,169,95,23,91,123,217,75,46,46,62,155,201,215,212,140,223,241,228,95,152,156,235,139,155,38,129,201,0,237,153,166,144,217,102,27,163,118,78,33,214,67,16,249,233,235,59,173,165,149,50,123,105,35,49,157,31,17,103,77,1,68,10,251,92,100,95,94,68,247,204,234,23,115,54,42,164,148,137,127,33,195,191,154,167,192,196,184,154,134,103,73,196,166,47,187,57,43,144,182,230,203,161,137,105,152,64,184,66,96,51,106,254,45,236,220,98,229,47,
152,198,20,23,224,120,152,170,218,192,42,128,4,86,123,12,47,22,6,227,74,209,92,129,232,49,41,179,6,61,7,5,113,16,129,63,70,7,31,133,62,196,154,0,2,126,145,87,164,193,199,50,12,111,215,189,27,33,247,123,195,110,134,248,8,225,130,89,72,63,3,137,199,200,220,63,21,71,109,75,235,57,136,1,36,91,207,220,94,164,237,253,98,151,24,77,13,119,179,225,193,244,124,206,150,27,40,68,0,156,119,203,9,121,183,50,14,246,211,65,255,89,30,124,159,47,116,15,49,195,251,112,207,94,231,79,226,89,45,81,193,102,254,61,112,133,249,106,34,216,48,91,22,244,235,51,101,61,80,123,147,100,131,253,65,188,13,234,2,21,22,91,45,72,27,182,31,249,131,138,88,150,162,22,29,116,189,248,106,186,76,181,174,199,20,185,87,245,251,187,46,35,149,73,100,179,66,163,105,186,254,133,248,156,59,221,203,234,237,48,123,31,88,48,118,1,254,46,56,218,46,44,248,212,248,142,43,21,204,211,18,48,198,241,126,124,7,188,227,94,213,143,179,221,138,53,
64,141,96,30,70,76,76,168,168,42,104,218,186,12,17,197,40,233,232,0,70,212,131,248,59,200,89,1,5,71,5,67,85,124,13,11,45,103,35,37,36,112,128,4,228,189,1,192,200,238,243,22,4,83,146,75,227,80,245,91,107,204,193,103,115,246,53,123,78,3,229,180,72,70,197,11,49,205,74,37,167,103,141,148,56,45,65,149,44,99,172,63,189,131,241,232,137,240,110,201,195,42,225,208,74,202,91,129,52,81,137,160,224,21,180,60,74,254,33,103,177,102,150,254,1,37,36,103,98,171,46,124,193,245,29,58,236,191,113,104,2,209,79,105,216,51,107,139,172,138,194,140,252,133,246,78,159,99,237,250,153,217,178,79,130,137,59,60,76,141,34,157,225,24,55,34,112,66,206,12,203,159,52,31,209,84,206,158,156,32,107,52,199,134,241,45,240,10,205,63,204,3,138,177,80,239,34,105,51,122,72,160,208,207,180,49,76,4,204,9,246,22,16,29,108,77,42,16,4,71,68,228,230,49,233,114,33,95,136,137,69,130,166,28,59,144,102,0,0,122,215,94,188,29,50,129,
64,151,123,33,17,193,9,45,31,153,104,37,10,210,179,62,245,109,41,50,25,71,103,157,214,199,175,177,71,162,161,118,119,20,152,169,36,117,80,219,25,148,152,233,48,220,87,233,233,163,232,252,248,26,139,116,29,57,58,51,37,239,117,220,71,161,222,20,169,137,6,117,54,105,145,87,4,45,248,3,15,40,91,137,171,171,241,232,218,106,139,113,168,207,39,65,22,62,113,208,154,85,150,82,112,240,89,56,163,99,225,141,88,74,204,128,9,22,9,187,148,203,228,11,137,8,132,185,62,84,141,107,217,243,70,126,238,23,112,145,166,21,178,117,210,129,178,185,30,216,9,150,193,133,115,25,90,204,87,0,188,33,127,1,77,72,239,127,72,131,39,121,100,189,180,32,189,216,37,2,64,25,205,156,202,195,235,191,100,54,23,126,239,252,184,214,141,65,179,118,11,86,14,228,210,157,112,33,177,223,39,99,32,152,16,202,80,5,31,249,111,91,96,160,8,119,50,31,193,164,53,9,154,49,23,130,130,22,209,36,24,205,35,172,223,15,72,104,117,77,182,100,76,231,66,200,
156,70,91,161,64,139,7,10,228,8,183,133,226,177,204,11,3,235,202,233,118,21,45,201,20,145,87,68,2,213,207,248,171,189,163,183,27,129,58,18,87,123,78,36,125,32,240,24,175,255,40,80,116,117,237,50,137,115,102,24,218,99,25,60,133,43,39,172,107,183,182,192,128,191,102,182,173,187,202,89,97,170,159,75,132,21,45,174,141,230,123,119,188,236,167,159,201,125,59,130,88,133,77,152,19,45,6,188,10,158,159,69,244,76,135,182,17,46,216,29,54,123,189,204,47,76,16,57,99,158,249,182,60,135,121,59,107,77,43,207,156,173,69,84,26,192,104,197,199,174,163,19,195,10,149,99,161,198,117,137,116,50,23,198,108,43,160,164,40,77,208,14,72,15,123,103,67,8,10,237,38,203,9,119,173,104,53,79,141,102,187,205,114,61,178,174,189,47,63,254,245,100,110,124,34,144,228,223,90,162,5,86,225,123,128,57,95,11,47,93,246,62,93,89,93,43,214,213,149,137,208,44,133,16,195,241,119,45,160,4,94,226,111,130,86,184,58,163,181,211,242,169,129,74,14,236,
64,171,16,237,173,241,92,61,189,36,46,38,80,142,81,130,209,222,228,235,147,74,89,35,238,135,8,200,241,64,29,163,34,66,216,185,18,90,222,136,114,150,197,152,110,192,129,57,230,146,0,0,23,221,44,65,196,226,145,5,130,131,169,21,242,170,200,113,14,106,7,137,13,83,3,106,156,147,67,224,56,158,132,85,124,196,151,2,102,214,237,66,228,115,201,167,224,179,162,235,196,82,148,178,49,113,66,138,125,134,164,168,115,146,118,31,193,163,175,77,80,14,116,63,134,25,246,26,104,240,37,134,127,203,63,108,137,38,82,197,251,47,200,95,22,176,161,143,129,81,9,156,144,198,171,106,212,62,98,22,245,219,241,248,52,158,71,13,207,148,13,253,16,68,160,105,0,97,43,161,0,15,13,81,65,3,62,19,190,144,166,38,181,120,59,98,98,17,242,41,123,173,153,3,141,24,57,16,35,238,35,73,48,232,130,42,117,37,4,173,220,147,35,92,151,90,3,0,10,70,246,137,53,110,224,228,42,55,133,32,117,224,2,166,144,197,137,15,206,121,134,103,100,131,199,82,
99,96,84,96,168,81,199,87,222,226,77,159,79,240,218,198,91,157,13,166,128,14,204,205,179,180,19,184,232,61,167,243,44,215,147,71,223,58,24,7,64,112,28,126,109,218,166,241,92,208,35,107,28,22,137,129,173,245,103,20,252,104,7,55,121,37,243,120,249,155,39,185,38,112,38,68,103,123,26,226,217,51,17,147,167,125,36,241,36,255,143,132,115,106,151,157,107,151,240,95,111,27,105,219,61,219,246,108,219,182,109,27,179,181,215,187,191,156,39,7,185,106,84,213,253,100,140,8,110,208,32,30,189,63,133,86,206,109,75,186,91,201,131,134,9,146,58,130,6,173,159,171,191,9,214,12,144,176,17,197,134,76,220,182,254,199,64,53,87,75,219,128,29,154,198,57,243,157,136,95,255,245,196,123,97,195,26,90,46,61,170,154,150,93,51,239,22,69,169,179,176,239,183,67,50,25,83,57,132,252,247,84,169,10,162,9,33,194,2,128,207,96,236,247,37,149,19,148,14,152,73,97,33,221,242,32,57,196,16,120,11,149,180,232,205,110,200,30,227,84,204,213,51,165,234,216,
0,64,112,177,48,172,240,190,74,254,40,230,10,20,207,28,88,26,197,171,86,247,233,212,221,168,185,5,24,124,232,248,83,86,234,113,125,200,16,101,8,4,194,143,96,250,216,199,199,226,20,67,228,170,183,132,164,168,16,11,126,205,247,47,198,156,214,26,74,237,30,121,82,136,34,244,97,17,234,128,106,238,113,181,88,26,30,5,103,207,78,93,12,117,233,89,91,197,236,5,89,11,164,28,220,142,255,148,163,238,68,28,32,175,131,249,5,203,149,181,106,148,13,213,143,108,207,233,37,186,166,205,174,3,181,66,199,197,205,205,149,197,113,148,106,115,85,80,100,205,252,160,203,142,116,221,95,211,176,172,171,226,39,173,120,233,241,163,43,201,249,224,39,104,179,94,230,25,60,250,235,176,63,14,239,253,243,243,252,94,95,151,78,163,180,171,193,169,226,199,191,180,216,17,118,93,58,191,227,253,117,63,222,195,253,123,201,152,175,198,178,237,104,255,231,232,65,34,95,249,102,42,137,133,11,139,99,114,150,122,83,236,219,22,100,135,146,137,163,104,110,126,107,81,71,150,
67,186,180,116,39,67,166,53,58,72,216,95,169,33,40,88,152,132,137,20,183,76,118,196,232,6,211,88,138,177,22,111,63,194,96,53,225,143,233,135,134,150,40,65,137,71,56,33,41,171,184,21,82,31,229,162,224,126,105,110,5,48,200,210,118,229,253,214,211,64,192,141,226,236,153,13,130,152,52,148,1,143,184,196,56,242,96,0,82,14,13,89,7,245,60,31,9,6,217,83,112,172,156,87,163,97,205,9,16,19,7,54,101,165,156,118,101,105,228,161,25,88,226,39,244,79,141,57,191,214,71,229,176,144,190,215,12,192,176,54,216,161,65,74,223,180,2,226,247,191,141,245,5,127,100,140,47,224,246,193,41,49,250,130,1,176,225,82,118,22,42,255,80,75,99,212,106,7,95,77,156,18,133,199,116,228,223,123,216,32,104,36,9,33,32,69,30,234,183,23,114,18,250,75,176,119,183,177,251,168,28,100,15,106,53,125,52,108,127,224,110,101,86,3,175,82,14,83,7,202,156,125,53,234,128,173,76,221,244,175,84,238,179,249,140,172,201,147,176,153,33,152,7,24,227,44,
131,16,198,150,129,118,45,118,62,238,63,71,18,23,107,100,151,113,136,166,127,119,76,192,125,89,187,21,0,227,104,88,11,119,142,231,51,47,118,94,241,148,208,9,62,252,251,175,142,115,210,222,112,18,57,23,111,161,194,165,186,200,134,134,215,118,85,134,162,142,133,16,160,38,78,101,42,179,146,45,183,160,87,33,247,224,9,168,35,112,64,0,186,226,246,144,240,174,63,96,28,110,79,199,30,182,129,144,220,160,154,197,33,66,15,8,23,168,117,19,60,94,252,246,200,102,159,66,212,169,66,16,125,49,113,122,60,107,189,96,113,45,177,120,94,214,57,1,24,186,194,127,244,20,199,190,42,98,179,80,1,169,251,49,222,11,18,166,133,252,242,43,224,152,41,157,36,163,159,103,15,26,249,220,167,113,252,65,24,21,24,90,65,50,177,226,80,246,200,129,71,59,180,47,68,103,192,52,32,87,187,165,20,12,70,22,121,195,192,118,149,110,129,224,194,17,119,116,208,62,8,91,206,153,6,129,124,173,0,38,246,20,10,136,88,126,124,164,128,215,201,214,14,197,189,101,
8,215,183,67,217,189,90,71,122,91,224,31,213,63,254,30,163,230,240,199,42,197,8,70,144,124,150,111,30,83,184,176,46,251,93,51,77,200,244,191,20,209,230,194,245,173,30,215,78,8,78,27,105,179,239,48,71,131,40,109,62,234,102,96,126,26,219,78,15,227,31,168,20,158,46,178,239,178,126,63,57,47,118,139,202,245,49,42,183,148,195,233,102,55,183,153,162,44,72,206,204,9,169,195,166,75,114,213,93,200,219,45,23,211,32,95,37,99,13,153,213,88,70,234,174,115,20,78,132,37,136,62,72,254,202,69,80,98,134,228,86,127,217,208,242,236,23,199,58,159,213,194,205,237,171,198,221,238,121,91,46,175,199,243,235,251,85,188,31,220,5,232,234,92,184,223,248,22,175,235,255,76,53,134,84,52,50,138,110,203,136,29,101,204,253,254,171,139,208,85,32,89,35,44,238,154,142,74,22,5,108,108,219,175,2,101,200,111,86,107,188,146,62,74,53,206,94,56,39,96,41,48,77,115,180,3,52,190,15,10,28,35,60,80,197,92,23,82,186,132,92,143,96,244,114,84,
148,110,150,158,164,61,41,53,201,255,23,207,220,248,239,248,183,96,46,192,181,21,18,221,179,228,206,167,121,53,150,216,132,135,149,226,109,30,221,245,30,213,9,125,0,129,188,184,215,64,199,36,3,224,4,92,191,54,15,236,253,33,118,83,105,26,116,156,244,170,17,164,240,162,210,36,88,238,166,243,87,21,36,175,65,106,166,44,48,15,78,78,141,242,3,105,47,239,23,114,68,13,83,175,59,61,78,37,229,54,12,223,9,105,143,254,119,12,146,229,68,79,153,137,158,244,2,183,81,34,48,97,108,64,171,139,24,133,53,108,29,146,94,78,100,26,35,195,124,114,69,182,145,19,202,228,234,150,78,230,66,154,105,219,23,127,138,129,24,161,134,254,171,22,127,76,70,80,234,1,78,224,64,81,116,56,184,156,114,59,23,145,174,5,106,209,186,142,160,83,41,6,254,195,89,134,80,102,13,248,104,241,225,139,33,60,212,214,143,100,29,151,249,1,207,199,109,195,21,193,130,229,181,89,242,116,157,173,196,227,218,63,219,208,181,31,127,235,225,222,12,117,216,92,97,249,
246,141,126,149,153,176,24,135,221,107,200,56,240,215,163,118,89,78,208,63,207,12,69,205,251,97,85,89,210,10,200,88,35,232,2,166,1,121,126,104,71,40,227,92,54,251,153,133,175,148,225,146,226,144,75,144,9,100,132,72,65,242,121,44,170,33,150,60,168,242,45,31,10,223,189,208,108,30,157,136,31,53,191,197,181,71,242,203,4,136,21,185,9,36,244,143,165,168,120,236,169,202,204,64,46,191,81,152,1,29,164,192,7,9,123,229,24,216,131,89,120,143,3,220,193,154,168,8,149,65,193,253,2,224,115,161,177,72,108,174,34,195,158,168,163,35,55,8,14,125,104,114,219,45,247,111,193,57,54,11,5,3,175,253,40,83,83,14,158,65,251,160,181,94,8,94,11,231,170,193,31,75,183,130,139,90,139,133,255,227,179,65,201,16,28,218,34,154,27,50,175,32,13,182,85,34,0,216,148,119,17,195,141,49,116,11,227,143,17,64,145,62,94,192,53,206,221,204,139,23,251,112,58,154,111,196,106,134,21,114,253,198,119,69,177,210,34,159,228,102,91,88,130,201,106,198,
118,137,48,61,151,229,171,123,63,132,181,41,218,135,152,131,227,167,120,30,221,254,207,102,111,121,184,27,222,30,111,199,255,167,138,233,231,201,56,189,213,143,46,237,241,186,141,189,111,199,178,211,99,226,159,111,2,165,96,108,134,92,182,83,73,189,250,60,228,181,222,153,115,66,170,151,1,182,218,83,44,57,233,242,131,2,159,153,115,48,59,182,13,227,7,152,112,45,154,136,231,38,198,16,47,146,15,51,14,141,156,209,183,125,91,189,251,227,225,23,127,94,222,206,116,69,127,53,59,255,198,81,192,232,211,138,23,54,213,65,230,27,13,92,154,159,74,82,189,157,156,159,107,247,35,110,170,187,142,72,117,63,232,163,46,236,106,22,238,161,159,224,108,229,10,155,197,47,215,154,147,235,239,190,150,46,253,146,227,253,56,54,224,71,161,76,75,37,128,130,25,231,68,230,250,18,135,17,20,64,98,159,196,236,166,7,69,35,239,84,210,247,128,112,12,114,179,127,80,101,245,16,248,35,101,45,234,223,48,60,35,61,115,135,116,32,230,66,53,127,152,152,244,89,44,77,
50,18,66,250,95,27,6,119,193,234,63,74,88,43,32,148,45,235,122,57,9,54,129,179,97,5,32,158,151,187,217,131,85,45,161,227,241,247,141,135,177,141,10,67,2,51,203,195,150,3,137,213,105,200,186,188,32,217,90,212,178,144,251,213,78,224,61,223,255,83,210,204,110,173,37,157,125,88,57,1,201,68,194,191,34,37,58,208,240,83,145,81,168,3,235,110,38,65,117,17,7,186,223,86,27,185,185,12,225,192,70,215,246,5,152,236,78,19,242,165,24,174,108,31,56,209,173,24,104,200,230,2,23,72,249,0,7,51,200,108,20,65,182,145,177,153,210,161,6,228,179,60,96,138,16,11,69,224,72,113,192,30,2,17,126,224,140,147,39,184,223,247,153,5,124,216,66,177,242,115,96,71,255,215,128,37,223,251,241,139,127,204,140,179,233,119,200,63,242,244,83,29,59,18,216,61,20,83,77,60,50,238,138,16,242,235,116,116,49,148,139,101,175,233,117,46,241,195,182,52,84,242,230,101,1,219,138,54,87,174,44,51,210,48,0,107,26,139,192,32,20,116,196,7,17,168,
36,84,88,77,218,26,0,49,138,93,84,156,93,228,187,195,8,35,153,77,39,205,234,117,51,125,181,181,15,173,201,162,241,158,184,53,71,104,58,153,188,4,159,193,231,24,68,208,175,154,243,137,128,4,78,32,42,196,33,245,162,144,153,199,155,221,155,182,250,143,231,27,96,164,196,71,139,195,177,8,19,168,2,70,108,198,151,138,193,98,2,175,43,44,219,11,132,206,21,164,245,98,21,9,29,121,196,144,152,134,237,73,233,250,3,77,120,230,12,248,101,102,67,78,227,85,39,221,82,20,134,189,80,130,109,92,120,157,16,68,175,13,236,171,108,4,217,250,144,209,43,128,17,245,121,25,63,37,79,194,254,137,177,90,22,26,226,186,138,225,4,212,26,36,115,21,147,216,88,221,80,230,133,121,139,65,70,27,226,233,221,23,51,81,130,72,27,21,8,194,191,101,28,10,220,157,80,105,127,145,162,239,97,200,107,63,94,63,249,53,168,0,245,158,31,32,91,132,229,69,113,254,206,97,35,181,75,105,126,170,183,253,140,160,187,129,81,50,217,181,75,233,35,91,45,157,
150,224,161,225,225,106,87,132,186,215,10,209,46,131,115,17,190,67,118,252,88,237,95,96,110,153,118,55,18,5,116,125,102,187,36,219,27,94,182,205,109,18,49,66,30,215,28,168,252,40,39,54,111,162,86,171,245,16,104,189,92,87,22,140,245,221,38,192,60,72,92,129,192,149,110,230,59,237,22,167,209,245,117,219,174,206,163,231,106,117,92,176,140,116,127,203,13,124,109,184,187,80,107,55,166,137,241,101,116,183,92,219,156,93,9,89,234,236,44,147,251,90,146,40,176,170,18,254,42,6,255,139,246,49,34,110,241,4,195,148,53,22,40,150,229,142,140,209,110,17,126,148,7,128,186,77,102,55,133,74,187,176,94,170,61,151,176,177,254,60,133,14,47,149,99,53,71,61,246,51,210,242,200,139,44,69,65,16,155,124,50,9,1,41,199,26,241,63,71,77,218,68,51,210,93,238,81,160,216,240,250,200,192,240,22,253,126,164,208,153,175,79,250,88,88,149,136,90,193,29,149,36,168,223,128,249,129,140,187,22,151,33,44,149,85,137,39,148,161,185,36,91,220,187,163,240,
81,191,21,109,89,78,193,218,234,128,160,105,63,4,27,75,250,83,99,66,125,86,179,110,78,240,164,251,190,216,174,207,182,245,249,192,129,182,29,20,101,247,185,16,20,129,61,192,66,202,72,130,92,165,65,167,126,131,129,92,16,134,135,86,206,245,9,74,130,123,8,189,117,3,157,139,92,62,20,139,31,16,131,206,48,64,195,132,2,96,246,227,4,82,92,24,93,41,20,130,14,244,200,38,197,209,69,26,76,2,222,111,249,89,152,48,188,206,68,103,136,28,196,176,208,76,116,114,168,34,110,48,26,114,5,140,49,12,53,8,28,152,244,97,244,108,102,228,75,253,71,190,75,114,204,6,126,130,205,153,74,58,85,76,38,1,227,173,101,217,126,238,182,151,60,149,192,28,130,101,101,73,146,47,206,224,158,195,20,246,221,100,16,234,202,30,58,238,125,10,157,131,95,17,100,78,197,14,29,173,191,89,102,10,198,143,10,123,17,184,201,67,194,108,165,216,252,123,116,136,46,69,241,46,81,211,111,140,68,238,182,130,30,253,173,235,222,121,141,91,169,182,143,112,32,117,
249,174,252,43,86,40,24,8,14,85,228,18,170,30,20,166,8,161,49,238,15,22,117,78,248,92,167,183,14,29,121,208,10,199,113,60,34,7,1,238,29,82,154,93,177,92,18,101,105,231,78,27,236,26,10,129,134,40,74,210,117,160,152,130,129,205,142,10,4,64,68,133,156,195,37,2,208,96,246,145,1,136,118,58,1,77,14,141,132,213,162,37,6,79,155,129,176,221,9,179,182,186,216,68,245,183,2,175,26,116,104,45,166,137,252,67,53,152,40,172,135,128,8,160,141,180,79,178,7,10,167,136,60,6,132,241,200,142,227,245,231,44,192,209,54,217,6,22,122,111,103,127,1,251,50,93,198,158,7,111,58,204,62,189,179,241,30,97,61,194,31,62,254,229,228,120,43,135,160,228,4,27,134,87,42,113,189,75,130,197,191,155,195,36,102,110,203,215,65,151,56,191,80,154,109,231,88,18,103,129,62,140,76,64,12,244,184,144,78,125,166,230,167,200,237,240,159,163,216,92,214,77,252,115,90,197,119,89,11,209,138,238,220,34,177,141,56,161,133,248,7,73,39,183,102,133,
177,3,53,60,77,183,54,68,136,250,51,37,18,140,43,211,220,233,169,107,173,205,40,21,60,177,243,248,235,158,55,223,130,229,207,208,236,8,180,207,53,177,118,141,158,58,110,61,78,230,234,36,178,24,71,243,240,199,137,206,178,149,131,28,66,218,67,198,105,251,74,187,15,246,154,32,8,104,54,152,80,16,218,163,117,173,141,77,208,137,49,194,22,8,75,252,129,240,50,62,196,42,208,61,40,35,51,136,179,133,161,163,163,40,43,252,217,48,63,102,38,35,4,83,9,81,16,25,157,210,92,163,237,73,88,55,74,19,186,101,83,138,198,170,9,78,134,42,42,12,1,225,64,217,41,212,130,153,251,104,83,44,38,29,106,247,106,23,112,24,155,152,226,96,201,239,8,172,17,141,184,217,213,5,9,138,176,179,247,44,18,103,27,123,19,64,184,223,180,138,123,233,217,82,35,237,56,193,140,52,234,237,29,102,87,125,76,64,66,7,57,55,126,211,194,12,152,215,125,233,255,183,91,162,249,209,190,100,42,20,8,145,175,179,16,200,202,3,179,215,66,16,57,59,184,127,
70,176,9,51,97,32,254,175,119,144,209,9,216,77,119,79,92,219,166,65,27,214,134,236,7,107,91,63,28,135,75,68,115,116,22,157,178,195,239,188,140,229,46,12,151,194,115,218,196,2,43,91,132,171,178,71,132,82,28,10,232,4,72,137,252,247,120,120,236,158,38,21,200,27,89,117,60,4,109,72,99,122,93,10,180,239,129,114,127,79,80,79,81,193,9,83,88,6,133,65,16,44,18,98,221,11,151,16,225,18,133,66,48,48,152,4,249,190,56,52,0,101,26,74,157,112,33,244,188,205,31,174,195,231,116,45,50,17,177,147,99,50,184,218,16,235,35,236,200,192,228,211,52,245,11,193,196,245,247,159,99,221,237,23,231,125,40,102,41,40,125,186,65,26,207,100,250,234,60,58,58,250,157,23,91,16,203,239,190,50,232,191,27,73,75,75,167,122,243,175,246,118,240,186,31,16,76,220,50,164,246,238,1,161,135,14,210,39,73,86,233,62,165,223,122,249,11,164,62,254,207,52,69,129,223,198,74,162,26,0,19,198,76,214,184,30,222,115,215,214,8,130,16,5,201,64,
248,233,79,189,191,173,86,165,180,46,123,44,85,171,52,33,18,104,82,6,13,250,47,144,167,23,255,71,51,31,90,236,105,6,83,167,230,64,244,240,119,247,10,112,49,15,181,235,219,67,106,199,192,189,94,71,13,137,4,0,236,67,5,79,12,60,146,110,93,37,72,58,70,152,106,181,241,157,76,125,186,87,88,5,161,112,161,87,138,39,33,160,39,216,244,19,227,101,4,108,206,115,206,150,230,121,126,112,237,41,12,234,217,32,153,97,251,84,181,106,158,250,1,220,198,197,170,114,83,68,117,91,95,145,93,59,113,175,223,193,179,253,149,72,168,198,191,183,252,34,39,213,153,78,5,93,1,138,169,14,189,219,246,119,42,148,143,56,107,185,211,37,134,171,39,213,233,196,204,161,66,244,140,48,140,228,64,119,29,31,66,186,60,252,183,136,140,106,127,215,67,242,108,233,181,248,154,240,154,56,115,117,20,144,213,102,123,87,155,155,243,38,174,230,130,90,247,6,39,251,92,107,111,219,24,211,204,233,171,180,73,243,52,241,110,78,169,108,33,13,58,173,206,150,139,67,
130,71,109,59,202,74,121,30,251,87,198,213,77,19,119,5,74,204,138,250,48,106,16,238,143,157,239,185,65,65,79,103,27,84,88,74,36,76,53,68,69,73,17,81,209,6,7,132,139,24,77,127,137,174,159,59,109,164,34,34,101,134,126,201,103,119,70,119,90,24,98,159,208,100,215,228,147,28,230,131,200,154,166,164,20,197,191,70,38,202,187,146,78,7,43,131,113,50,194,65,77,84,40,86,206,67,125,224,219,98,9,131,177,73,151,217,206,86,122,231,157,86,202,137,243,119,208,251,181,105,252,81,65,127,85,14,5,181,199,127,26,71,192,24,225,178,249,41,252,236,92,235,14,63,240,75,99,252,255,193,43,249,127,155,209,219,56,186,127,136,13,40,108,226,22,14,93,215,231,162,22,168,17,180,180,177,121,39,121,92,42,145,45,129,44,54,97,4,121,162,204,20,142,120,192,153,233,176,25,75,238,159,167,50,139,95,188,200,21,145,178,219,154,180,40,214,79,236,101,93,128,78,193,209,1,63,3,233,63,128,226,177,204,254,213,55,233,53,216,33,110,102,5,203,252,117,
182,197,243,225,74,153,95,142,231,150,238,31,219,73,178,117,6,185,225,23,137,74,2,58,216,5,176,16,216,192,227,178,159,23,201,132,181,137,237,44,183,158,135,121,71,188,33,183,124,236,52,209,247,120,244,54,170,209,72,174,152,173,151,11,28,166,51,177,88,154,224,225,131,112,212,184,208,107,254,74,31,101,224,12,202,32,225,248,99,109,17,204,109,118,10,116,195,40,153,144,159,49,8,95,184,253,48,253,175,80,201,124,70,55,202,237,64,197,34,153,14,211,12,17,162,168,64,225,51,79,186,208,191,23,35,222,225,177,66,202,63,79,52,147,6,34,45,254,250,206,31,212,91,1,12,233,115,227,112,82,178,71,215,32,207,91,49,191,166,232,202,56,155,28,20,77,115,180,184,149,22,129,173,70,8,149,183,179,188,71,57,91,255,117,164,246,63,61,238,160,104,27,119,169,54,138,138,120,228,164,248,98,169,158,58,252,137,91,159,178,219,98,174,18,37,167,80,184,110,104,90,19,247,249,61,237,144,135,46,79,200,126,87,16,65,20,250,63,160,56,48,224,35,19,40,62,
207,183,147,212,252,138,200,127,255,161,97,221,247,77,106,93,68,8,105,176,104,44,247,39,17,47,90,30,84,88,116,15,137,31,166,33,63,60,14,125,140,214,44,31,2,36,92,253,125,16,238,253,178,50,89,216,23,175,253,221,233,243,149,174,72,130,243,233,72,105,17,236,73,104,28,54,64,147,48,80,64,106,15,128,169,246,128,31,32,77,205,151,12,233,209,160,198,201,148,204,38,57,180,157,56,157,111,176,103,1,194,111,203,166,98,233,163,220,226,191,42,140,91,32,5,77,119,83,96,197,53,177,23,218,67,48,148,169,156,20,251,82,125,187,19,133,207,101,30,31,94,224,159,50,219,246,153,113,36,114,119,234,183,18,161,248,129,126,0,217,156,115,47,62,172,196,231,83,91,31,204,215,30,222,123,101,236,220,248,15,82,29,172,101,174,22,213,246,137,32,123,184,194,145,181,222,60,70,254,36,209,212,145,166,93,154,208,47,58,247,130,103,151,131,81,66,63,208,235,245,238,239,211,235,101,115,125,93,58,207,171,196,237,89,125,242,90,101,160,92,11,160,216,173,119,167,
59,92,198,144,217,111,99,39,231,81,104,150,105,155,19,88,222,154,4,107,73,139,31,11,84,38,121,34,80,189,118,109,98,111,31,121,92,234,45,225,98,31,197,143,234,246,185,23,94,8,176,85,121,82,152,238,199,118,252,191,0,236,183,131,131,188,65,168,32,171,16,32,99,18,181,182,105,138,116,237,242,93,156,37,210,30,131,229,173,233,250,72,169,241,184,136,80,156,172,207,74,219,159,241,241,6,54,132,8,145,132,44,183,227,140,133,66,20,106,151,150,27,11,16,53,85,213,57,26,98,41,119,163,88,160,166,136,8,144,236,206,203,206,188,41,250,119,217,215,119,135,86,34,3,109,191,161,185,28,197,23,113,23,101,247,12,209,45,13,114,36,213,189,198,195,166,234,167,62,224,149,227,187,245,185,60,239,158,160,245,181,27,55,161,110,184,116,4,29,90,129,80,36,63,65,98,3,125,100,237,196,179,91,207,239,125,144,15,107,196,185,226,192,63,158,246,157,109,130,6,152,15,237,183,133,169,145,42,237,116,120,19,250,163,56,94,210,96,177,255,26,233,144,193,21,147,
64,66,49,0,99,168,136,49,212,3,18,132,61,231,5,98,236,243,25,156,206,247,243,227,178,252,203,77,55,161,199,113,237,68,200,18,167,30,156,228,179,230,194,32,33,2,98,20,193,237,14,8,12,204,45,145,202,131,102,15,195,32,16,217,142,205,155,105,163,198,112,147,120,107,32,227,66,96,133,203,102,67,112,112,184,133,106,78,20,46,27,215,146,16,77,234,212,234,150,46,211,230,132,176,89,10,63,23,228,245,13,43,207,179,206,48,119,184,148,162,66,85,174,249,106,165,66,227,164,153,201,7,248,144,36,133,36,134,255,232,28,235,81,12,250,157,92,199,62,239,239,13,169,223,59,114,42,39,49,68,76,53,180,54,108,178,71,54,85,163,251,203,3,102,135,236,169,170,250,122,116,187,144,149,57,248,159,46,90,245,117,159,59,253,164,199,137,165,70,156,27,227,38,215,223,136,189,114,205,187,75,149,92,195,187,115,209,243,77,54,86,101,142,89,120,224,76,217,4,219,111,86,93,124,33,24,139,201,159,42,140,180,77,107,132,152,206,205,45,218,230,23,63,86,138,189,
99,251,220,188,85,154,204,124,146,193,17,29,179,192,34,112,232,211,160,74,33,232,33,179,230,18,34,44,28,177,144,12,179,161,32,65,36,74,214,60,252,170,198,24,42,242,0,179,203,53,36,144,253,158,158,201,217,158,2,66,56,140,155,44,151,84,24,45,199,121,62,99,235,225,38,50,96,34,7,161,44,131,140,245,23,92,67,16,135,131,13,82,165,98,142,47,83,155,202,13,120,23,32,10,81,41,72,61,227,190,31,93,247,131,45,244,251,73,233,189,234,103,77,62,102,253,157,252,160,72,163,11,189,145,112,213,34,202,61,25,234,71,184,89,149,100,199,248,176,207,161,239,245,172,191,231,24,121,203,59,142,88,52,116,129,1,16,242,161,40,207,206,118,88,59,236,172,58,18,37,48,221,109,225,198,217,157,219,128,115,121,135,20,218,156,46,159,132,226,249,245,160,87,43,197,137,189,209,26,95,224,69,242,81,254,160,254,136,94,112,34,227,241,113,227,82,204,31,96,33,68,242,235,99,49,254,164,218,56,143,231,115,148,112,191,252,253,105,47,118,189,142,56,219,234,123,
178,28,36,254,201,250,129,64,83,72,46,83,72,205,220,231,16,6,146,7,41,112,195,177,227,171,134,198,239,210,164,90,144,69,173,103,45,16,22,127,242,230,77,4,107,214,202,47,98,111,249,180,245,236,150,13,145,61,87,217,148,208,150,108,222,18,174,156,245,251,55,209,137,85,4,250,242,211,210,152,101,188,243,29,209,95,224,97,183,99,11,106,88,20,100,55,190,65,126,227,122,123,189,54,193,241,57,58,46,169,91,183,216,148,74,180,68,195,178,37,208,111,185,104,20,155,48,0,76,163,251,193,249,49,23,5,202,3,251,20,80,17,39,215,12,212,252,252,236,94,95,52,207,247,80,116,189,78,159,200,251,121,255,221,59,93,93,87,142,172,29,110,204,171,181,102,112,62,34,221,71,166,41,87,102,12,249,223,119,249,34,182,78,212,62,155,222,25,168,98,175,27,254,174,41,219,40,182,245,235,96,59,238,36,203,146,169,91,124,82,163,59,5,144,16,86,157,54,208,212,89,132,64,227,91,3,141,247,204,213,38,155,140,131,59,12,6,38,133,201,248,128,133,111,152,160,
4,63,245,242,64,157,73,219,219,110,84,144,150,224,17,139,155,0,1,151,92,251,44,147,40,84,18,37,24,170,87,56,73,142,131,12,132,58,114,12,77,14,75,43,130,76,65,247,251,195,95,234,14,123,196,163,88,214,208,229,1,110,188,150,14,89,39,174,144,179,94,236,53,72,2,200,195,222,112,45,99,205,199,67,248,193,148,244,250,134,137,56,75,144,244,177,128,134,48,77,38,28,241,224,131,157,21,154,133,77,156,134,2,66,82,193,50,213,235,137,248,188,226,185,212,236,218,154,181,98,219,152,175,113,85,136,244,98,5,24,132,66,64,96,253,191,62,18,132,131,3,186,21,108,46,186,81,56,145,46,223,95,96,38,70,46,180,70,97,49,65,123,123,79,231,68,226,127,132,72,18,73,90,109,240,93,149,5,13,101,191,42,58,154,61,57,141,62,230,225,72,151,183,242,53,41,95,142,155,36,141,110,151,212,137,142,27,167,114,202,182,196,201,163,233,169,122,121,221,247,123,239,177,248,174,79,89,170,52,96,253,148,200,162,240,187,1,167,66,30,230,185,182,164,35,201,
236,147,244,36,83,4,6,255,140,83,50,100,125,129,100,251,154,183,59,191,18,244,24,181,125,120,127,215,155,132,115,179,68,58,30,187,167,163,186,233,247,108,138,66,169,177,126,168,167,189,218,83,6,147,160,20,155,99,152,19,170,222,122,151,136,29,153,204,108,243,87,185,232,229,32,88,114,144,121,0,136,113,238,102,238,113,101,244,232,4,166,183,119,238,116,226,245,106,20,171,157,178,90,168,96,131,165,209,208,186,33,43,158,115,85,172,53,254,234,15,197,249,230,233,61,144,216,231,104,244,247,125,171,167,171,154,60,182,173,17,159,169,183,209,215,187,79,18,153,91,182,42,109,132,226,253,40,156,212,152,186,124,21,247,125,4,131,169,83,165,117,238,66,121,107,25,76,62,246,239,107,192,227,37,25,188,181,35,213,194,172,233,224,26,3,2,9,167,144,219,9,6,67,13,233,49,92,96,17,238,35,151,83,164,47,200,128,165,179,52,122,143,134,30,27,250,100,90,107,184,190,71,41,88,56,49,201,192,169,73,46,66,11,98,162,224,61,77,146,254,183,34,42,169,51,80,
30,43,10,4,238,67,7,192,142,145,28,132,159,131,170,134,63,61,168,235,188,118,129,30,102,194,216,54,5,101,196,14,241,44,190,14,173,44,15,2,36,32,198,224,114,27,37,7,40,208,122,137,170,31,103,205,7,91,84,107,195,174,172,216,39,167,22,226,9,154,251,252,49,187,105,224,33,75,197,2,126,204,14,114,232,216,59,118,192,119,64,240,101,228,54,118,59,177,131,39,126,76,255,69,78,205,82,217,120,178,32,19,43,4,200,96,96,94,12,176,221,69,57,141,24,174,76,139,173,197,58,49,232,202,220,236,124,223,1,250,19,33,210,132,69,113,61,159,33,107,83,23,77,45,113,10,234,147,157,238,122,96,10,230,78,125,198,191,52,238,54,34,155,32,9,155,165,12,25,244,105,23,222,140,76,172,157,151,251,73,187,17,223,28,123,13,156,186,16,121,151,174,212,113,32,227,177,60,114,107,218,172,129,185,241,60,2,130,178,236,116,144,24,238,122,8,247,208,195,41,42,163,153,31,77,129,167,194,160,182,216,15,28,254,28,212,28,35,203,84,72,198,223,34,150,104,
60,148,184,180,252,35,95,94,239,110,229,210,176,231,158,33,175,194,71,71,82,39,210,245,139,40,196,154,150,96,39,59,108,153,244,104,239,222,237,138,84,249,170,207,146,184,143,60,221,28,231,248,16,200,12,122,130,107,197,114,232,5,18,53,9,126,210,141,148,252,210,177,107,230,244,240,26,173,70,181,52,203,110,225,144,56,55,123,25,104,157,115,60,164,119,159,206,95,103,234,123,119,150,189,6,155,219,38,221,2,194,86,23,175,4,119,154,71,75,6,181,69,247,149,220,48,41,104,237,39,145,194,120,192,165,9,107,106,198,14,237,209,76,155,221,45,203,121,37,55,215,155,233,30,154,243,171,245,1,172,223,127,26,105,57,126,81,144,254,24,44,230,64,80,209,254,162,199,89,239,87,247,189,0,110,51,74,100,42,100,203,100,167,105,152,237,129,10,191,232,45,131,202,253,1,130,137,66,250,255,98,166,154,138,187,224,159,97,200,195,42,179,164,168,219,149,201,65,22,29,100,64,72,102,63,168,122,217,4,179,123,217,198,63,64,130,188,55,205,28,63,67,2,238,89,63,
65,184,36,245,218,165,162,252,139,155,249,35,147,240,34,2,47,56,172,224,211,233,42,154,108,196,45,102,96,130,26,140,82,35,222,161,42,202,242,79,157,44,150,186,25,148,48,138,46,201,222,26,253,208,135,219,245,218,123,93,239,149,224,251,75,216,136,15,210,177,211,139,113,186,121,89,115,158,59,230,251,164,191,119,46,212,184,7,243,40,150,184,67,222,29,203,122,149,217,163,251,199,188,219,0,249,206,131,97,125,204,216,115,144,38,78,124,100,90,193,200,133,15,52,217,51,125,97,211,36,43,126,42,91,161,206,84,230,25,180,107,245,52,111,111,149,131,89,187,180,234,203,26,79,123,26,209,41,214,219,143,64,160,175,168,107,177,222,233,7,236,117,42,134,76,11,190,208,6,126,22,5,62,97,108,55,137,115,96,140,88,139,49,68,44,99,156,29,44,19,178,81,106,211,146,225,39,229,160,249,127,221,52,229,48,114,209,53,192,10,98,19,230,162,205,10,138,43,132,50,105,124,163,38,239,8,110,135,231,252,139,34,202,239,175,87,66,119,107,60,216,93,94,174,241,161,
94,145,30,139,103,156,17,41,136,127,21,188,24,107,235,222,110,151,79,158,75,216,12,6,101,145,31,232,248,244,95,100,130,160,131,127,69,124,228,83,213,99,108,176,79,12,54,216,50,87,117,218,223,115,134,182,210,189,235,43,158,75,221,238,216,114,129,163,177,251,254,30,218,223,15,227,251,218,60,121,242,221,223,206,231,245,106,61,78,219,211,153,54,247,42,215,154,204,197,54,217,25,226,36,155,238,58,216,242,113,161,99,219,188,218,170,116,173,195,54,253,93,186,122,1,74,252,90,61,53,181,218,74,149,30,100,39,167,99,62,221,193,94,67,144,134,80,112,56,155,139,125,148,175,29,226,216,192,137,233,30,10,18,50,202,33,222,70,158,169,139,2,31,174,206,222,214,18,142,218,232,141,221,83,34,214,38,161,135,132,14,170,127,162,234,225,22,241,78,253,0,66,148,75,138,2,137,14,43,69,70,252,56,146,83,35,33,11,143,81,79,44,213,125,86,194,134,210,178,213,177,65,174,73,147,184,224,22,25,17,150,170,217,16,148,20,117,231,93,46,222,207,63,75,49,46,
237,189,91,234,25,109,111,87,84,137,112,121,143,57,7,156,234,188,233,173,46,28,206,65,33,42,71,209,253,189,12,70,150,204,43,125,193,214,143,247,223,66,154,156,158,155,205,200,126,147,8,214,79,128,65,38,225,7,208,129,31,244,15,4,122,151,87,228,132,168,130,118,122,232,151,5,129,99,165,237,177,209,192,206,137,27,48,156,16,65,35,49,163,67,38,166,32,83,193,18,126,220,108,56,34,163,23,162,9,252,133,75,255,166,82,143,174,22,124,90,90,185,140,134,117,149,203,31,88,149,149,56,90,104,65,31,142,231,173,70,76,28,200,103,164,222,187,213,152,76,201,166,142,191,178,107,222,55,24,60,159,7,15,186,240,6,58,50,21,231,179,171,124,152,190,73,43,253,171,193,46,232,50,4,120,15,22,61,112,49,87,40,182,78,157,113,201,127,99,177,210,25,230,142,34,71,119,7,76,240,132,214,118,157,237,238,11,253,109,122,26,27,252,119,107,104,9,210,163,70,219,217,227,149,34,191,92,193,230,157,216,18,174,207,237,185,41,105,113,61,215,45,211,34,55,184,
34,29,136,114,147,107,124,85,194,86,187,46,48,191,141,29,166,96,228,184,198,214,113,247,190,110,69,170,26,181,241,164,38,125,0,8,153,123,165,36,252,34,36,51,225,78,92,211,6,173,255,2,42,101,124,187,236,159,245,23,255,57,202,222,171,143,253,34,240,109,62,231,219,251,224,218,17,106,207,147,106,59,180,27,53,113,155,65,194,35,45,65,44,206,110,61,158,73,17,220,130,150,201,223,242,206,51,240,44,90,110,22,166,48,57,120,218,88,165,56,27,104,141,108,98,208,201,152,59,151,110,242,113,209,234,30,203,1,192,124,140,240,162,143,186,230,97,57,96,44,78,37,184,230,217,34,253,147,211,23,232,191,205,0,207,12,120,45,170,218,114,209,230,59,15,188,157,169,172,107,27,15,220,179,9,214,246,155,203,18,107,230,16,148,236,112,116,26,228,185,15,0,125,36,154,181,54,36,102,20,209,213,237,191,130,246,162,210,188,13,132,189,50,49,124,145,74,194,36,162,191,147,108,111,64,211,195,34,147,103,174,244,194,78,246,196,144,198,121,61,66,158,191,206,40,147,
5,52,212,54,224,101,34,19,102,48,87,41,1,65,148,41,196,143,21,169,22,164,40,114,22,47,34,167,238,69,62,189,160,208,218,237,4,46,193,187,59,110,33,221,168,143,152,11,10,136,97,168,11,243,169,133,236,183,15,211,202,137,209,65,247,186,204,211,66,16,56,94,243,67,193,236,71,130,25,48,174,224,199,52,8,70,149,12,42,11,229,152,73,112,248,18,27,65,40,100,163,191,140,34,35,215,75,246,221,179,216,8,71,52,129,179,100,26,36,7,78,198,151,70,185,122,34,110,89,144,151,191,111,53,123,139,14,52,169,91,108,211,90,101,228,122,171,167,123,85,204,231,197,167,26,236,84,111,55,68,149,53,21,253,199,54,62,189,214,253,79,96,193,161,220,90,193,17,75,197,120,250,248,207,41,23,70,104,74,221,105,112,46,171,162,133,7,246,73,125,76,243,83,242,112,179,228,230,208,249,187,31,114,115,174,74,232,208,18,148,183,62,250,226,182,186,250,130,92,72,245,125,120,59,118,217,32,227,114,47,16,103,214,182,111,235,28,201,60,170,192,166,176,202,53,145,
187,223,127,119,233,166,131,97,94,160,211,221,55,251,227,115,224,240,185,158,102,243,14,137,156,245,247,132,91,105,38,117,253,108,68,74,244,159,67,219,22,90,214,228,213,168,206,201,85,161,241,90,10,234,201,220,102,151,226,189,211,234,241,221,4,193,54,36,232,202,191,190,183,243,245,112,109,191,187,215,224,94,34,198,236,136,93,178,244,147,230,120,244,58,139,162,13,251,129,112,96,52,114,133,115,23,166,32,167,37,207,182,44,16,23,151,174,162,41,201,60,43,254,86,171,197,210,65,227,203,36,68,41,180,218,211,63,23,136,17,8,200,128,151,153,199,196,140,208,93,253,233,39,113,87,68,14,184,250,216,67,41,215,126,13,60,172,11,190,75,234,30,243,12,141,163,91,180,142,72,158,107,115,231,96,3,2,155,162,217,94,121,165,65,214,30,174,92,37,8,214,229,54,214,182,53,218,113,94,148,177,141,64,83,139,117,81,35,19,85,48,59,123,88,94,212,119,0,134,178,202,10,154,69,20,26,45,29,32,245,129,112,26,191,29,103,50,134,180,168,197,251,94,212,99,249,
254,106,99,125,13,45,13,255,248,0,208,144,72,82,138,230,197,202,100,46,217,79,38,37,210,218,31,37,77,68,246,40,226,214,76,87,204,181,246,51,40,141,220,76,108,137,59,183,255,183,165,27,231,127,182,100,108,164,39,194,228,68,202,24,151,28,178,33,211,232,21,230,92,132,109,203,49,137,14,101,224,6,98,202,225,49,71,3,62,254,201,135,111,225,48,1,105,144,76,255,192,121,149,116,181,68,88,192,201,7,66,75,2,70,3,1,194,35,14,236,7,81,24,122,16,113,212,57,131,15,4,169,4,71,174,28,58,245,197,72,98,54,173,211,37,48,207,193,138,95,190,40,123,234,91,190,205,109,78,29,74,88,193,186,191,125,241,42,207,226,209,35,195,230,79,107,95,90,76,240,50,56,211,170,40,253,29,229,68,18,26,87,156,202,106,194,43,73,39,39,5,173,122,74,108,92,83,31,144,111,70,125,187,245,57,63,188,78,0,207,82,199,87,135,207,200,153,223,137,37,33,232,50,207,144,142,169,255,166,138,81,49,247,61,29,204,186,47,191,84,167,36,121,91,18,64,
51,221,105,148,123,15,207,14,183,79,115,203,221,226,18,249,233,26,188,23,8,181,205,183,210,37,220,92,35,207,195,121,188,17,106,121,68,141,215,123,57,111,197,32,70,220,225,77,148,54,237,223,118,106,59,95,76,70,34,141,248,46,187,122,189,130,21,125,242,185,17,62,111,228,245,125,48,190,171,93,203,247,189,200,71,190,239,217,245,23,186,69,86,181,46,230,219,181,196,42,239,118,137,142,124,60,152,149,24,174,241,230,250,102,85,65,169,175,95,93,28,219,172,128,248,119,48,169,87,214,49,161,102,243,154,203,141,191,42,107,67,55,153,96,157,209,218,204,14,160,227,216,225,14,126,224,223,167,116,221,33,25,44,218,177,235,84,199,209,116,231,167,202,68,85,103,27,154,35,138,159,112,161,160,166,124,213,6,63,169,61,72,217,238,28,103,11,16,225,160,125,9,110,58,14,220,253,63,34,214,210,207,149,241,19,227,131,77,80,86,107,228,45,32,166,61,213,77,124,5,11,17,173,170,90,118,161,202,149,118,75,221,127,0,204,80,104,48,8,128,37,81,13,123,38,185,
9,225,190,75,228,68,47,167,140,164,55,230,163,237,32,189,48,240,35,248,3,136,139,57,203,65,25,68,212,91,140,249,70,41,240,110,167,77,102,210,20,189,220,20,249,114,191,182,62,171,231,189,254,156,41,27,136,224,40,254,83,34,97,6,22,99,186,87,231,34,119,37,37,76,93,141,232,109,179,81,155,200,114,87,24,23,108,128,203,140,134,220,6,37,197,106,234,166,65,36,147,65,9,68,163,251,31,120,24,222,244,108,229,114,38,163,191,197,253,98,160,219,231,122,191,68,108,41,33,142,159,148,237,208,231,75,249,29,32,54,246,13,191,14,175,58,147,198,183,117,227,84,201,213,200,79,209,111,124,19,216,110,137,167,173,97,126,75,69,167,194,109,173,98,207,23,130,36,62,4,59,37,114,187,160,114,199,61,159,58,26,202,31,56,147,54,12,22,176,21,137,205,115,158,125,139,31,169,32,119,228,29,196,2,62,41,91,107,133,15,226,117,78,129,86,108,111,99,208,85,232,250,26,223,104,232,172,192,120,101,185,249,192,33,125,169,51,182,223,9,129,24,156,44,10,110,
119,130,17,43,53,38,131,143,183,7,106,207,179,183,212,8,58,188,157,21,92,65,37,37,233,127,62,160,18,243,137,253,41,240,241,16,8,120,173,93,193,217,187,93,168,63,103,196,166,188,95,70,181,254,125,18,190,103,213,251,189,184,252,149,90,235,220,110,103,18,248,180,223,217,119,183,250,94,98,219,222,247,83,127,29,92,243,206,182,181,122,25,156,221,156,246,86,251,245,37,59,17,226,90,159,91,235,161,51,229,225,236,243,121,181,130,77,119,206,64,110,90,170,224,194,125,189,166,78,174,67,123,145,218,152,203,84,14,56,115,52,243,67,10,16,152,14,248,1,20,27,4,60,162,244,223,251,241,101,101,84,104,238,86,250,187,217,20,75,12,145,215,133,186,52,116,169,75,150,182,190,6,209,235,62,150,159,211,221,163,12,1,15,70,226,219,84,48,210,88,236,14,189,15,75,227,104,197,16,220,131,22,32,175,38,44,234,124,217,81,122,17,228,150,214,174,186,92,124,196,248,183,118,119,166,108,106,123,234,246,111,224,65,136,139,80,204,1,161,234,232,130,133,225,131,155,
22,86,227,189,77,32,140,71,229,192,103,58,140,180,70,111,226,50,48,124,253,236,7,241,137,178,85,182,227,67,31,80,73,16,72,160,196,144,137,37,30,239,74,127,138,184,44,38,60,251,159,156,60,236,255,201,73,0,62,138,155,36,188,195,136,223,200,44,2,195,39,248,235,18,45,158,142,69,22,115,187,134,237,178,214,105,227,182,70,157,104,19,51,202,6,225,89,132,169,195,202,164,245,9,73,72,80,43,230,13,23,39,143,188,170,14,227,250,24,91,36,242,44,133,144,250,190,76,64,220,184,149,219,140,245,239,230,140,8,55,27,132,151,168,15,243,96,103,211,45,153,155,11,229,33,200,3,157,178,41,235,154,105,236,136,200,113,68,187,240,211,77,66,140,53,244,83,126,138,192,40,56,143,138,57,171,222,118,111,230,233,220,183,34,154,9,219,159,46,209,44,99,168,171,201,189,90,20,81,54,30,98,28,61,127,32,100,231,207,52,120,8,123,39,28,220,80,120,212,112,119,63,147,254,158,78,16,66,242,1,23,254,244,21,126,225,1,39,254,249,220,238,253,60,130,224,
81,146,236,63,228,161,158,104,218,127,152,188,122,128,66,60,149,242,240,221,242,101,113,184,181,186,175,158,186,42,77,95,194,15,127,87,249,104,170,158,100,181,220,36,47,15,226,168,28,77,146,85,75,142,119,205,251,250,99,191,30,215,205,167,182,75,10,124,95,245,231,114,203,124,95,53,209,167,38,80,125,223,2,209,125,117,75,16,123,31,215,174,59,175,197,38,191,139,193,213,205,184,214,168,131,239,228,59,0,181,215,247,251,108,246,124,252,177,44,175,187,249,215,61,119,110,228,83,244,144,189,18,175,236,182,115,164,167,218,183,240,245,93,197,170,242,107,106,216,135,14,27,175,19,220,146,163,70,97,24,155,243,161,96,177,102,110,241,156,22,235,143,185,174,19,229,103,133,42,193,138,81,246,48,86,221,25,129,248,154,238,200,220,31,239,148,245,38,232,122,104,227,208,32,251,129,5,4,87,0,132,6,206,90,40,110,191,222,125,236,249,253,110,56,94,94,109,45,172,55,23,103,188,91,251,240,124,240,118,23,81,245,190,92,211,195,26,197,158,240,175,176,212,251,221,160,
177,193,3,11,21,146,136,231,190,10,114,242,127,54,94,135,21,11,34,33,123,209,171,228,39,9,133,144,189,76,238,197,62,248,244,187,195,218,71,162,132,97,40,106,58,249,197,145,201,119,224,43,248,31,216,115,58,255,3,251,100,184,35,1,117,252,108,125,31,142,50,73,138,24,25,186,20,187,241,101,46,115,73,235,41,104,209,203,121,214,114,114,90,229,206,4,122,163,133,77,7,78,17,150,3,204,195,14,90,110,148,111,113,192,110,216,85,46,103,155,59,126,59,222,111,111,206,219,39,195,169,18,176,253,187,228,176,213,202,105,147,175,70,19,113,125,239,38,248,106,121,148,194,28,110,75,39,211,192,139,108,30,100,189,122,228,19,238,0,138,201,75,122,165,92,79,156,20,191,208,57,39,42,252,115,36,177,248,81,92,158,36,225,57,111,105,87,141,143,64,132,102,173,217,94,21,138,216,201,201,228,174,200,134,206,119,204,43,131,229,244,30,148,13,2,18,97,129,34,217,7,184,186,87,22,125,241,64,121,66,66,150,185,54,248,112,239,163,211,19,38,180,15,104,15,204,
115,152,201,249,104,8,234,55,232,236,221,217,119,199,79,167,151,184,233,103,93,162,126,118,211,211,243,206,139,64,192,136,61,43,210,111,145,253,41,85,217,132,230,31,135,243,152,218,91,63,223,61,202,247,142,255,125,62,136,114,254,243,252,18,255,193,91,105,208,11,125,235,34,215,139,241,253,30,120,167,78,171,211,242,213,56,79,249,163,47,124,31,238,196,174,127,192,207,243,250,132,218,245,62,136,16,102,219,163,190,35,240,76,137,250,26,3,153,169,180,118,166,243,168,161,34,140,84,116,17,219,181,233,201,213,32,111,103,206,97,85,254,126,57,41,49,170,9,41,11,209,92,119,93,28,104,105,52,239,77,139,185,236,171,192,70,194,45,145,154,187,176,22,99,55,182,103,37,43,78,36,36,236,112,5,75,142,39,163,175,251,246,84,59,202,196,21,33,177,241,248,153,66,114,177,235,7,4,12,47,176,191,71,199,88,76,48,128,121,5,198,102,183,160,58,186,176,195,16,195,191,210,27,216,221,130,114,236,228,82,85,228,129,192,184,188,50,177,71,94,139,205,126,103,120,113,
16,255,118,3,185,159,97,55,210,153,25,178,125,49,112,15,202,24,148,64,25,183,0,73,195,47,66,119,62,232,146,128,113,48,71,89,146,87,155,132,204,16,142,189,8,247,175,139,255,87,197,47,255,186,248,127,85,124,128,10,9,8,246,107,29,154,141,225,243,80,136,253,14,121,33,61,30,228,118,241,176,222,196,191,20,45,217,92,225,165,237,135,190,20,91,191,103,128,253,16,177,135,61,52,168,59,25,237,66,15,79,26,212,186,183,26,178,177,106,157,183,125,56,68,162,53,186,173,106,147,99,224,85,161,141,174,251,61,41,71,81,208,113,43,70,196,242,31,128,64,77,61,225,48,210,20,150,46,26,26,86,42,222,190,206,107,2,88,25,142,120,255,160,150,161,11,114,231,93,252,154,38,88,209,188,217,251,215,253,27,194,82,122,95,137,213,60,157,40,63,95,39,57,32,78,216,187,76,0,104,211,224,58,148,232,163,40,245,65,84,197,5,63,13,112,148,6,218,245,119,163,116,255,26,64,206,5,133,181,255,200,23,48,129,240,130,4,242,133,0,227,158,237,152,250,58,
125,125,46,120,161,209,246,223,164,27,217,96,9,7,138,199,217,224,211,181,233,255,200,73,95,165,225,187,212,40,189,65,123,133,129,231,126,245,28,63,114,61,198,119,116,203,232,125,111,227,215,247,61,170,255,236,62,235,247,237,253,190,255,9,103,67,185,254,94,19,143,139,195,253,253,229,118,4,63,41,232,158,31,181,26,29,37,168,203,231,231,238,26,39,154,107,219,187,175,60,231,175,101,204,132,137,130,48,146,236,173,90,41,109,74,22,34,110,67,5,75,200,128,130,183,252,179,114,115,126,192,225,134,94,153,137,215,144,174,83,37,185,107,192,17,110,210,215,197,90,70,147,189,184,57,177,150,178,160,189,143,67,83,118,139,125,122,21,72,2,241,163,213,92,191,59,218,207,193,87,123,58,235,109,119,227,103,103,12,224,246,227,54,92,131,10,50,17,38,146,78,171,88,102,202,43,103,219,91,124,112,227,179,123,38,10,200,59,25,96,104,7,83,216,123,24,140,196,193,203,234,148,5,25,59,115,83,114,78,236,116,244,50,226,173,236,135,169,94,43,122,191,27,205,219,40,
160,249,18,176,81,124,204,23,146,254,238,40,81,8,32,104,238,129,12,161,196,8,185,251,233,205,204,137,243,159,178,155,239,18,137,98,19,31,143,71,251,243,212,255,247,209,66,222,242,106,199,17,247,143,165,253,72,207,29,113,194,62,140,138,70,49,233,254,18,183,102,65,208,220,129,8,174,71,160,246,55,64,151,204,142,83,176,134,225,135,71,218,15,146,8,244,34,2,83,81,68,97,199,21,245,17,81,41,148,109,176,187,255,3,132,160,36,65,217,66,162,170,125,8,2,133,208,136,45,201,176,180,242,20,38,203,47,183,106,174,200,201,67,92,2,86,166,157,231,43,94,131,191,34,26,169,244,90,199,48,215,25,131,92,101,79,235,178,38,1,86,210,79,60,130,205,119,84,229,135,106,62,247,168,102,236,208,105,12,57,41,68,94,195,132,175,131,17,206,80,25,15,145,201,183,243,123,48,219,209,166,78,5,132,249,117,0,76,194,6,239,121,114,187,237,65,167,123,159,168,208,127,232,160,145,7,212,62,240,237,254,127,175,91,133,179,163,98,234,151,91,192,99,232,79,239,
71,131,87,91,102,244,212,138,44,83,169,42,170,197,123,173,82,221,189,3,143,171,232,30,178,115,198,242,29,86,240,189,206,63,175,247,39,228,122,246,57,181,169,90,125,116,236,59,29,61,182,84,225,122,59,63,39,207,253,99,1,116,68,136,41,71,25,19,33,78,47,100,120,81,117,221,95,174,207,221,252,248,188,93,254,238,226,188,53,162,164,229,50,185,69,216,52,150,198,198,166,6,93,160,242,85,164,161,27,50,76,26,172,59,22,255,144,237,76,244,234,71,131,86,167,158,118,194,198,234,187,216,208,218,112,84,92,105,38,141,50,41,91,176,95,172,241,215,253,24,185,188,63,46,63,159,218,18,241,173,115,190,78,87,143,94,251,75,244,198,42,59,92,83,138,104,62,203,163,150,146,143,158,126,42,155,31,230,39,100,89,169,218,103,47,86,92,90,64,179,0,255,26,7,60,34,73,56,182,134,55,39,41,120,35,89,187,59,153,81,243,180,96,227,150,57,154,214,133,204,224,60,54,167,222,55,50,20,28,27,45,106,208,23,75,179,128,4,40,16,19,241,99,119,38,24,
34,1,132,109,0,6,193,101,13,185,152,7,136,97,97,79,227,48,244,233,18,254,55,118,244,33,255,55,118,196,43,118,184,250,103,243,199,124,86,124,254,69,62,164,188,243,178,64,33,76,144,131,178,166,11,197,2,230,141,165,119,0,18,102,118,198,116,9,137,165,250,194,142,199,37,157,198,147,184,107,147,29,195,44,194,140,64,229,98,113,17,145,44,169,206,144,161,17,154,224,29,62,144,124,15,100,10,86,229,214,54,47,188,191,216,134,40,235,13,254,64,168,36,184,10,23,25,199,201,244,56,97,62,40,133,12,196,0,184,36,41,62,31,80,134,243,202,226,107,93,55,168,132,45,26,175,82,4,153,62,64,122,224,69,152,180,245,73,135,115,242,51,126,186,112,61,55,21,228,71,142,254,84,121,83,197,141,65,104,153,15,29,54,53,24,210,23,192,95,70,135,216,103,120,195,59,11,221,249,19,228,235,148,237,12,236,169,238,245,160,247,237,110,166,206,190,198,55,118,53,192,139,124,186,210,93,206,28,154,20,78,188,124,250,175,34,178,182,43,5,211,17,82,233,63,245,
216,242,70,189,25,41,3,247,231,238,115,83,125,95,7,206,249,182,11,126,110,250,181,252,185,121,92,44,78,30,29,89,210,172,125,73,164,249,236,196,224,25,200,195,39,241,186,175,127,60,94,58,191,23,223,17,245,19,100,237,24,250,150,214,131,202,114,96,157,93,239,77,119,71,107,106,20,161,95,115,71,83,249,189,4,27,89,6,150,85,5,129,67,127,158,182,62,74,63,253,74,83,238,220,169,144,43,17,147,237,118,65,215,14,161,55,153,165,94,97,252,197,92,205,249,54,109,136,79,217,218,162,167,217,35,233,198,82,246,47,237,138,148,92,70,13,193,187,84,249,46,68,127,148,26,51,246,165,173,29,166,146,31,247,113,142,100,115,215,149,27,191,27,197,117,2,251,89,174,103,69,36,245,79,65,179,95,70,50,54,142,170,103,122,242,206,208,192,26,255,219,75,28,54,213,185,69,215,204,223,20,209,54,38,69,31,245,143,158,69,101,173,167,188,111,182,119,117,230,37,62,225,130,227,99,133,243,9,101,105,10,233,1,155,153,140,124,89,152,11,146,104,12,62,208,126,
48,124,20,234,6,112,0,102,100,55,255,80,197,35,221,246,221,255,211,210,127,82,114,252,211,210,127,82,242,63,72,155,47,206,17,152,133,177,178,207,75,221,214,25,47,98,52,7,95,112,145,175,231,225,76,241,103,88,151,135,7,244,15,237,205,199,95,248,24,132,38,235,82,45,22,219,220,174,75,76,127,252,91,98,251,248,201,93,158,182,141,200,122,139,74,156,25,254,226,143,152,215,74,14,223,55,21,141,231,16,161,191,123,102,205,237,235,228,8,181,250,226,75,18,18,35,33,186,195,23,196,155,65,26,78,94,144,135,111,17,47,125,193,20,2,72,97,72,180,92,32,195,85,94,148,5,243,133,82,85,244,64,221,9,130,91,246,28,150,112,170,8,99,115,211,31,40,79,92,209,149,155,121,67,72,20,68,132,11,124,71,1,217,221,178,44,63,3,232,146,109,173,23,7,189,7,95,67,216,133,208,89,10,59,219,21,236,246,2,59,107,245,73,95,229,21,89,68,15,166,25,246,248,189,193,61,227,195,37,225,246,233,78,67,45,85,23,130,96,234,13,203,24,51,87,200,
237,211,54,67,114,247,118,22,113,97,79,232,6,246,167,68,202,164,76,152,87,131,157,107,13,63,151,173,37,70,57,108,43,133,247,105,222,233,93,22,161,194,226,239,81,202,93,150,93,221,211,18,188,218,238,36,29,177,56,82,127,31,139,203,250,210,122,108,56,183,84,109,199,208,103,186,58,65,87,35,232,181,20,196,29,46,102,239,250,14,195,9,124,208,228,168,224,110,3,101,74,22,98,15,92,233,209,220,104,102,210,51,108,100,45,195,214,196,113,176,112,106,210,231,52,99,158,237,140,139,200,236,180,120,113,11,77,137,68,50,4,134,162,78,127,117,102,107,130,7,105,108,56,197,247,96,254,126,125,156,159,213,234,172,215,223,204,62,183,174,123,233,210,189,117,24,70,127,40,185,55,241,170,188,32,241,159,130,42,218,165,240,187,162,17,92,138,179,89,134,164,6,0,107,208,166,114,156,33,232,97,63,125,141,50,52,181,72,117,196,65,1,150,124,96,233,46,200,140,60,167,103,125,160,4,220,110,231,217,5,122,191,79,233,239,47,195,151,249,221,197,112,93,121,152,54,
180,77,48,51,22,73,26,6,193,6,65,195,197,15,204,189,244,168,16,231,48,25,230,20,24,12,29,218,15,197,167,255,198,148,45,197,255,198,148,99,226,255,143,41,221,129,166,180,36,140,4,113,88,144,233,140,51,223,29,120,189,160,2,138,253,240,203,134,112,147,212,192,47,183,112,201,159,30,223,32,148,117,125,12,66,213,114,46,66,44,217,72,85,206,113,141,201,252,63,210,107,128,193,155,27,211,127,153,170,121,40,83,127,148,166,89,11,130,74,187,105,58,4,112,225,249,26,149,197,56,43,112,166,40,28,8,34,228,81,18,31,172,31,255,252,114,24,107,186,57,47,199,75,89,60,41,85,12,230,206,133,30,146,248,14,254,197,43,241,61,26,253,76,226,150,6,65,184,146,6,155,148,169,165,67,66,78,7,208,150,117,245,112,112,100,144,63,139,41,179,6,238,7,18,97,43,203,126,46,23,37,12,233,158,189,152,190,29,165,67,133,15,87,19,115,229,208,186,120,146,120,200,92,148,236,151,74,11,237,28,103,243,206,125,200,135,100,21,195,140,13,104,233,83,10,121,
35,131,166,217,141,98,114,48,213,61,148,115,100,48,187,153,88,41,53,92,215,178,133,215,24,195,122,246,180,159,116,148,111,185,181,35,146,45,171,13,43,54,53,54,42,225,96,175,254,113,49,209,216,221,57,97,152,248,72,121,121,72,231,1,185,243,120,250,83,255,75,168,254,149,108,174,102,132,63,121,120,109,45,29,131,245,79,58,92,191,73,163,202,24,113,153,131,70,72,216,139,227,161,2,80,135,131,103,244,249,246,111,97,98,169,102,11,239,47,154,150,190,56,90,176,150,82,93,134,237,67,254,123,254,205,122,237,48,183,197,241,211,81,127,7,195,215,203,38,123,44,148,159,131,55,244,249,112,59,71,137,221,70,159,114,187,197,17,109,111,109,150,36,112,167,249,1,79,184,145,93,254,242,108,63,171,243,23,54,100,181,23,253,139,236,31,87,85,219,90,189,190,94,72,103,126,54,22,238,127,161,111,57,7,97,94,151,231,155,35,146,115,13,11,50,125,215,113,182,131,79,161,103,218,155,97,62,169,203,108,201,148,68,137,37,166,61,46,87,116,67,158,116,12,128,215,
63,192,228,112,29,86,243,73,74,45,152,163,46,246,142,103,147,211,237,255,167,144,18,65,244,255,167,144,108,105,17,152,48,85,223,218,107,142,23,194,199,112,41,34,34,149,21,217,149,106,6,62,224,127,162,120,158,55,167,226,49,104,119,91,249,25,132,206,146,236,44,194,207,59,205,79,237,228,93,135,30,196,96,12,81,135,125,65,49,9,82,70,193,223,141,187,192,147,135,244,189,32,35,160,161,194,49,137,106,201,7,9,187,52,214,70,93,71,206,56,147,107,24,136,169,248,146,173,158,0,233,8,117,133,20,18,18,96,220,170,189,210,216,19,189,57,60,24,223,207,131,159,185,198,67,122,16,86,82,102,103,106,209,18,72,62,208,19,57,84,199,154,204,44,61,16,35,202,244,167,22,114,73,102,68,53,148,32,217,54,23,127,62,38,51,10,121,68,120,103,241,168,22,54,198,167,108,104,38,71,130,126,250,231,157,35,154,222,53,19,160,253,33,82,255,58,37,158,67,95,195,168,194,176,203,150,174,251,6,29,4,170,239,174,131,148,48,34,107,29,21,211,48,46,9,177,
180,190,142,76,171,44,79,196,230,110,79,244,172,220,33,26,199,142,76,117,54,116,158,202,201,28,13,54,155,254,53,206,126,110,92,65,144,56,22,115,243,169,36,225,197,182,239,103,106,184,138,33,50,41,100,174,223,237,116,98,86,141,243,73,117,7,88,200,102,191,93,205,140,156,59,138,113,153,188,52,209,7,213,94,2,177,210,0,143,73,141,238,92,16,48,118,123,153,179,118,216,252,235,19,151,96,235,225,150,234,241,40,80,3,52,25,225,164,100,245,131,86,194,135,210,26,37,209,203,101,255,156,220,183,207,135,243,185,3,192,251,134,233,158,183,8,134,74,72,174,72,127,22,195,109,180,173,141,51,178,234,227,132,192,121,22,29,150,14,48,193,192,242,103,8,172,160,56,107,211,152,243,191,2,152,5,5,26,103,23,122,157,223,194,153,108,188,241,237,17,234,198,66,20,246,181,161,236,48,237,101,75,240,71,43,222,24,176,165,73,149,76,72,197,114,19,55,215,23,128,102,110,120,224,238,69,165,33,49,8,170,240,135,151,246,184,135,135,32,252,237,53,174,198,103,33,
103,35,188,227,88,102,64,238,131,133,145,254,12,114,145,233,8,15,82,68,250,3,143,7,151,243,66,60,91,64,231,237,1,16,131,92,182,228,174,152,36,108,118,247,55,1,192,26,254,85,172,193,27,182,13,154,62,123,243,133,13,15,158,71,134,108,211,178,217,80,137,81,169,27,103,241,31,46,214,77,53,89,42,3,203,42,107,173,116,225,80,17,210,45,148,242,166,185,159,195,83,147,182,168,54,99,166,247,7,63,156,207,169,107,113,179,34,33,219,96,235,22,74,216,175,104,173,21,45,216,84,183,192,145,142,244,141,222,220,19,188,9,138,82,249,121,208,45,162,172,111,117,84,51,61,47,74,100,87,227,79,108,44,213,137,241,28,145,18,249,132,77,73,42,100,8,13,97,65,149,126,69,186,174,5,67,238,22,90,49,218,74,131,216,132,32,72,32,42,183,235,199,110,214,217,85,174,100,26,134,144,187,2,172,175,232,158,201,51,134,152,252,217,29,66,210,162,90,140,94,125,125,76,199,244,182,243,43,149,75,90,194,65,121,13,161,189,214,207,209,97,95,173,194,120,250,
6,85,104,165,123,255,60,207,89,121,6,52,177,65,154,4,150,31,127,101,221,31,1,68,245,189,140,254,2,179,33,57,101,27,152,246,146,200,197,138,14,149,237,201,161,14,27,118,103,10,176,64,191,174,57,155,44,139,49,38,99,57,64,228,11,242,136,197,108,208,109,156,159,197,60,1,222,69,188,172,186,138,36,215,183,35,123,123,155,229,24,140,104,202,244,224,182,75,212,198,15,91,163,253,249,154,190,103,230,43,243,210,61,7,222,87,203,232,2,188,227,106,177,13,28,176,244,145,92,15,203,173,225,48,31,40,166,232,165,227,253,168,206,129,47,207,238,54,169,218,218,209,42,215,246,73,126,221,127,182,215,194,238,58,47,84,106,129,249,207,202,10,190,161,251,90,83,71,93,202,148,232,62,136,48,61,36,37,164,221,198,157,195,65,186,110,232,82,248,202,10,119,104,101,33,74,147,221,203,10,38,188,68,185,75,142,2,66,212,0,50,36,77,81,24,46,233,147,85,91,15,61,235,123,253,41,253,55,76,60,138,167,208,16,23,194,28,236,97,67,47,78,34,114,9,11,
253,15,213,36,12,184,137,24,30,192,59,14,96,104,240,26,84,68,149,44,3,11,24,23,42,221,205,60,247,182,37,127,43,7,217,159,238,206,26,154,79,199,45,51,71,209,74,52,57,105,141,109,244,248,147,234,135,209,226,177,111,165,215,86,20,150,137,183,51,192,191,8,189,13,38,166,112,154,188,95,171,146,151,224,172,233,155,22,110,146,151,29,179,59,75,178,7,52,149,236,124,237,62,69,111,184,180,151,156,76,207,54,210,136,9,139,186,40,200,250,25,22,127,2,83,204,202,72,248,58,8,227,3,242,22,168,12,73,94,72,8,142,160,125,135,234,130,132,3,138,134,215,107,214,142,237,112,47,118,192,232,118,255,173,56,77,215,149,248,217,216,205,65,119,101,242,251,60,78,220,247,225,165,251,82,55,180,137,36,67,100,90,215,199,11,42,251,78,245,196,44,207,56,95,69,171,87,111,71,167,233,26,194,149,103,53,126,134,82,26,121,55,167,90,120,63,99,30,123,19,103,21,242,137,71,42,123,14,251,95,49,29,254,56,33,131,49,145,205,122,57,42,140,150,160,105,
169,133,44,214,59,0,82,129,132,63,61,76,157,207,252,163,253,157,213,206,149,102,35,59,27,144,165,123,77,2,128,10,121,209,219,77,63,240,101,231,18,87,226,156,46,212,165,250,61,118,210,46,209,169,165,242,43,135,227,10,58,45,237,26,63,215,198,23,183,12,146,227,44,184,230,81,58,97,240,18,53,107,221,139,107,151,189,218,4,219,183,64,32,182,191,61,239,164,13,110,54,1,180,46,41,1,230,22,58,35,125,35,193,112,95,57,52,216,215,42,238,46,125,233,248,56,230,133,253,40,128,24,14,194,148,241,67,48,40,248,10,52,223,64,205,74,197,240,212,229,146,17,177,135,170,171,163,99,149,37,140,205,235,149,144,95,47,187,238,178,187,175,54,145,8,57,1,69,191,104,74,161,45,14,106,50,13,157,175,225,148,154,71,224,216,158,223,127,63,84,241,189,10,123,252,54,222,189,239,228,63,135,113,230,108,255,28,230,174,81,163,2,132,132,65,115,166,158,96,38,40,123,235,199,207,160,57,51,17,144,69,165,17,51,15,82,230,99,158,152,169,157,130,227,226,72,
99,7,99,184,117,115,35,43,65,16,205,75,207,181,223,229,111,169,196,91,50,179,227,89,218,86,29,135,173,128,172,218,58,88,138,156,140,93,194,58,10,229,106,201,255,53,235,222,207,141,230,231,157,224,191,194,242,213,250,70,42,73,39,123,215,85,91,210,158,203,113,183,84,231,147,93,182,107,239,7,85,107,166,53,195,209,244,185,167,123,182,187,71,35,221,238,86,1,32,114,34,64,228,68,36,130,200,68,206,129,136,68,38,145,35,9,18,32,72,100,16,68,34,1,130,192,189,96,119,143,70,147,228,187,178,239,182,171,235,197,247,253,134,231,121,190,159,39,191,221,77,28,86,148,191,16,108,176,154,81,63,229,146,9,82,25,77,5,40,65,118,91,141,244,244,217,100,129,208,134,229,149,231,215,23,232,146,66,44,47,26,118,37,230,221,173,162,142,26,31,13,48,108,15,187,101,148,90,120,27,30,198,16,69,233,35,113,32,133,160,31,50,120,247,224,21,170,209,165,80,250,60,132,157,75,248,222,149,186,137,65,196,176,113,40,254,52,1,201,201,246,68,51,44,235,82,
87,106,204,55,122,100,208,97,190,235,106,128,79,149,51,125,53,209,166,53,178,199,151,231,90,89,228,182,199,206,106,10,20,127,70,17,5,157,48,216,234,64,94,163,83,42,155,71,160,150,171,35,77,4,130,100,91,50,141,48,34,155,211,59,110,84,99,230,147,238,49,74,77,28,117,129,39,31,51,210,204,124,66,222,0,85,9,184,19,169,103,55,73,172,71,10,84,104,19,92,167,163,125,21,47,251,118,126,51,184,192,52,216,42,162,48,132,172,74,236,9,42,5,167,61,233,229,162,156,86,145,105,171,97,225,38,106,167,119,96,150,68,180,113,73,90,88,202,7,236,126,140,120,48,212,237,157,222,223,171,157,142,61,203,41,251,120,232,84,110,158,136,116,21,211,150,133,126,190,203,94,108,49,151,48,119,212,121,38,62,69,54,83,42,90,13,67,113,10,116,22,55,97,40,200,95,38,148,97,158,187,49,159,19,161,252,33,14,190,229,234,212,218,214,82,162,144,64,71,19,99,75,211,138,167,139,135,182,170,161,53,38,95,171,98,120,91,115,25,98,111,43,66,5,70,110,
84,214,163,213,10,207,133,16,25,179,221,186,243,23,147,3,170,206,216,189,94,30,178,233,19,66,211,111,240,178,227,62,208,29,17,77,244,237,172,254,129,94,200,125,243,15,244,15,95,5,145,87,84,24,56,221,103,221,7,123,145,26,166,106,244,247,111,217,89,108,22,52,220,130,6,209,72,178,154,108,83,239,164,84,7,40,10,193,172,41,66,49,29,16,213,224,59,100,223,118,124,36,39,77,9,103,90,43,228,164,146,137,219,165,238,23,12,22,210,201,1,31,90,85,97,115,182,68,120,191,212,104,220,232,198,135,69,160,249,108,219,42,142,45,50,230,218,5,61,67,248,46,20,50,105,170,0,103,73,81,230,249,57,46,210,142,98,143,99,254,140,175,28,67,92,182,155,85,199,73,247,168,79,65,171,12,85,165,159,212,38,197,59,158,107,113,223,128,201,91,110,209,158,99,208,200,5,25,146,196,108,6,180,195,219,225,68,64,24,43,8,85,194,170,78,5,66,222,121,31,139,156,163,128,134,28,110,40,155,154,126,87,178,74,29,80,29,174,248,16,92,0,187,216,142,141,
211,42,77,178,49,28,186,92,209,9,75,161,208,37,169,112,21,27,105,50,234,121,27,100,161,235,42,88,22,79,149,176,80,219,135,3,199,67,208,196,221,102,24,201,242,4,227,125,215,49,97,11,162,38,83,60,249,202,124,203,80,167,237,152,197,34,11,85,28,178,243,212,236,72,118,19,66,63,60,16,18,132,94,218,233,253,244,188,39,153,7,52,122,59,183,57,178,157,156,54,225,78,205,120,100,144,69,173,53,227,150,86,67,17,79,216,24,92,214,103,20,89,115,118,171,56,146,51,76,246,76,220,242,228,146,85,158,119,238,176,197,211,41,147,135,164,152,125,184,219,185,200,81,186,223,98,47,241,204,165,18,207,88,226,57,203,30,14,191,52,240,79,153,193,34,33,117,139,175,203,181,71,133,56,231,96,123,180,0,186,138,51,244,108,35,9,105,251,48,233,196,94,121,112,118,61,103,198,14,18,23,157,61,242,233,14,134,198,245,183,246,202,88,235,189,234,152,117,238,112,20,238,104,164,34,183,182,216,65,207,118,183,247,141,39,154,38,7,59,201,158,100,233,205,43,27,
81,182,169,39,15,110,47,176,21,105,115,33,243,160,206,30,58,111,196,81,119,63,179,97,0,81,154,103,136,138,140,25,193,17,132,125,55,254,22,174,7,251,81,162,43,20,38,50,130,240,88,51,30,132,227,198,31,198,151,182,126,90,219,161,245,93,248,80,154,238,106,159,167,154,4,192,133,120,96,62,220,94,221,134,81,46,213,133,233,29,73,105,203,178,53,45,17,150,220,238,93,28,43,55,71,68,5,110,199,197,185,67,181,130,121,172,57,214,68,102,14,162,51,223,158,35,0,50,109,247,219,82,183,42,10,131,145,140,174,18,249,52,10,141,229,143,49,60,222,249,110,148,198,202,118,248,213,8,46,223,68,247,197,49,133,162,106,192,73,42,205,51,140,126,14,245,41,224,193,74,207,117,195,221,180,243,90,80,94,251,124,78,173,27,216,169,140,154,213,193,141,225,135,33,41,212,179,129,103,91,179,215,141,18,81,18,89,78,97,28,79,62,33,112,199,131,112,57,75,81,115,214,16,219,189,60,170,195,3,233,4,200,234,29,134,13,109,16,29,116,62,157,108,171,94,34,
57,103,38,83,54,64,176,135,7,172,45,74,137,192,246,168,219,32,115,61,71,183,249,242,20,205,33,78,141,193,50,99,200,208,212,19,161,203,73,23,118,108,2,44,68,235,189,174,148,61,146,104,96,71,77,187,245,238,122,208,59,148,251,26,114,169,243,114,199,223,147,42,98,57,173,88,169,180,148,88,173,14,194,84,53,14,147,20,113,133,217,175,43,119,193,144,147,186,205,58,20,13,173,246,89,203,168,178,157,120,109,74,46,70,137,33,187,208,180,52,195,77,82,241,232,125,144,129,32,92,242,171,7,75,72,160,53,58,42,129,160,247,154,221,114,135,97,182,29,49,125,67,69,240,148,200,67,150,207,55,93,214,27,176,187,209,145,194,226,103,136,51,35,238,18,76,234,27,241,117,225,178,62,73,146,78,205,73,26,109,49,151,55,166,130,12,187,76,45,217,146,244,12,119,34,25,28,72,109,232,171,19,226,249,49,35,203,17,244,202,221,155,27,217,226,198,84,40,75,75,54,195,225,196,148,184,210,159,235,133,0,119,222,174,163,185,128,220,230,185,252,163,238,201,190,255,
14,193,191,239,192,111,174,249,165,98,197,149,63,174,38,192,252,177,146,81,32,43,8,60,229,38,104,195,160,142,129,110,99,77,216,196,11,133,93,214,129,112,2,11,86,8,158,202,232,102,114,75,133,178,188,120,71,7,34,67,17,5,241,109,55,255,0,109,57,147,94,138,82,242,109,102,37,81,163,29,142,250,48,172,41,113,18,130,247,119,45,104,93,161,64,18,25,122,5,58,201,162,97,116,121,187,186,123,193,85,197,76,227,180,243,85,132,10,231,171,54,93,196,18,51,117,110,64,117,163,199,58,36,95,233,23,116,208,149,36,188,180,153,158,39,239,247,229,57,30,246,60,130,246,78,149,28,52,4,9,27,39,20,40,84,21,81,74,195,65,187,113,34,100,11,113,149,68,72,72,16,136,213,13,182,78,160,99,111,30,157,56,114,216,221,238,171,29,21,67,223,209,130,106,176,164,233,108,126,169,29,58,92,160,70,1,15,23,222,162,15,120,199,106,46,131,106,75,123,22,155,126,229,40,186,53,109,211,41,132,152,81,194,4,33,33,4,228,194,237,69,178,142,161,204,200,
30,95,237,169,163,229,150,188,90,142,179,149,229,186,54,197,86,86,235,108,168,170,133,189,27,32,35,29,21,51,150,132,156,42,15,37,50,187,46,231,62,110,220,246,14,12,212,73,240,80,157,41,230,73,51,103,85,118,20,216,131,248,207,172,25,107,135,22,10,116,58,83,101,58,34,26,231,66,214,17,141,207,239,225,179,233,45,174,218,12,189,197,7,113,190,6,23,37,177,65,167,55,71,32,243,209,253,201,214,109,242,28,222,78,43,48,138,116,240,190,71,237,184,182,111,142,51,176,179,59,156,148,130,228,70,251,53,196,212,124,140,85,9,47,56,251,243,166,66,180,175,165,157,22,229,170,83,206,152,182,61,200,240,12,14,228,152,70,188,214,74,181,167,179,108,164,52,191,182,232,202,45,27,141,25,91,36,79,156,80,27,136,71,75,171,97,73,111,195,83,223,196,221,84,103,164,122,201,44,170,28,129,55,187,247,140,217,177,243,126,130,223,188,42,5,22,66,110,206,234,191,32,35,209,250,139,54,120,54,4,29,86,208,12,2,68,194,239,18,208,161,141,109,224,158,89,
87,62,94,93,104,198,58,175,148,133,79,222,82,125,41,30,124,52,247,30,114,201,176,235,82,13,97,76,185,92,183,201,45,126,188,66,117,195,238,92,168,41,236,232,242,146,206,170,28,194,205,54,105,79,108,166,156,109,95,66,186,85,233,246,33,203,228,78,143,119,89,55,117,171,81,28,193,224,233,166,234,153,44,194,155,194,26,155,74,107,113,118,123,200,20,43,65,74,236,88,72,60,64,17,39,174,60,56,94,132,212,224,233,189,29,241,152,80,134,128,149,96,171,83,57,35,87,33,187,247,4,225,165,55,189,1,93,192,201,113,250,150,217,155,245,171,225,238,176,36,60,229,129,24,214,123,254,112,17,160,235,111,157,195,125,182,67,200,60,178,155,32,32,87,8,185,117,120,25,188,132,70,91,112,38,8,98,39,205,186,113,52,230,114,177,7,194,45,177,173,83,81,153,238,184,150,238,168,47,48,199,16,233,4,170,152,147,116,28,16,201,143,207,30,11,66,237,184,64,211,7,77,54,172,206,34,49,131,118,203,119,109,6,75,132,227,102,89,207,90,144,138,245,50,135,9,
83,175,49,5,246,241,30,195,79,202,143,134,151,54,57,239,88,184,211,52,162,115,96,241,212,70,109,183,119,68,85,20,92,107,200,145,78,197,212,45,150,20,232,225,46,137,119,157,169,130,178,87,186,170,151,143,79,81,179,45,116,17,149,34,78,67,149,244,41,225,124,121,16,88,110,98,79,239,83,184,42,161,3,221,159,210,44,11,24,200,115,127,129,17,18,124,215,194,100,125,3,72,243,116,186,201,29,231,97,111,213,78,144,77,17,72,180,204,100,233,205,246,192,147,213,57,139,210,211,70,152,54,234,235,201,170,88,140,118,68,157,136,148,203,139,171,177,83,59,162,149,186,24,47,110,226,73,156,10,244,77,26,193,6,226,24,47,195,65,83,0,110,235,76,153,220,129,138,97,18,17,110,119,153,163,25,16,49,116,71,221,84,111,217,231,10,1,235,176,113,173,254,235,11,40,18,99,46,113,247,111,155,62,68,105,81,221,222,162,146,204,140,29,87,218,22,178,133,146,177,234,237,132,105,72,241,14,230,101,244,48,44,101,29,113,38,157,214,142,183,211,231,90,58,32,115,
33,31,19,11,156,179,68,62,93,9,133,99,187,56,202,36,93,76,145,154,96,222,150,131,232,31,249,146,224,157,153,211,38,60,219,233,5,37,66,148,7,30,242,201,251,4,21,130,113,102,67,166,230,181,14,203,133,170,28,212,232,42,121,142,67,70,15,70,214,189,2,182,107,63,199,145,182,40,26,140,206,40,8,38,22,208,77,50,17,166,155,68,139,168,246,238,118,35,65,4,103,57,252,89,225,88,175,209,163,96,17,212,209,132,142,165,155,227,29,130,142,20,83,184,58,49,231,168,21,97,129,207,182,23,61,141,14,67,20,116,161,122,246,69,155,17,106,50,152,4,101,11,196,39,71,61,250,235,130,96,124,105,180,12,154,56,196,240,82,69,196,11,173,216,24,80,223,130,192,117,55,174,4,194,210,141,36,248,85,121,155,163,205,70,233,134,126,13,84,229,226,188,186,189,51,49,221,23,222,241,144,49,233,110,120,12,10,213,13,57,153,45,234,94,220,213,14,197,56,144,1,46,56,196,65,247,9,94,230,41,250,164,49,135,157,183,3,82,166,146,101,239,146,14,33,249,
16,166,91,30,181,46,164,6,10,83,76,28,238,144,33,180,65,76,30,45,84,38,147,86,135,171,137,239,106,65,109,109,78,26,171,119,157,157,161,100,188,189,119,204,81,41,157,33,162,229,92,162,106,52,231,152,234,64,149,191,205,113,213,182,165,167,188,192,157,227,230,23,251,91,55,237,101,48,182,40,120,22,174,139,208,188,130,190,9,149,183,218,198,209,134,242,120,183,52,119,160,250,142,3,13,5,77,84,237,46,230,183,100,252,4,169,167,245,174,38,48,203,125,50,181,111,201,119,150,98,201,126,105,231,106,97,202,46,196,157,173,133,41,177,20,183,78,183,36,44,85,174,173,162,181,229,42,170,156,22,25,15,35,25,56,27,12,167,92,184,240,212,253,137,7,69,103,197,18,49,98,3,29,118,67,123,184,12,39,6,52,234,157,163,120,125,114,21,50,46,47,39,160,75,30,77,232,195,155,230,27,251,205,33,138,139,219,168,66,217,153,32,57,161,67,129,219,205,120,12,97,136,186,217,157,170,232,220,198,96,228,53,225,44,20,74,36,10,43,162,26,162,6,5,229,251,
209,192,161,113,192,170,4,168,60,84,51,239,174,38,252,62,3,209,164,245,29,131,111,129,28,230,222,8,24,182,77,190,36,138,16,138,120,80,118,108,85,22,13,184,209,189,186,206,76,35,30,66,88,26,141,19,163,17,250,162,72,148,233,252,22,222,79,13,96,18,47,24,74,164,140,146,73,65,45,102,186,47,248,42,70,32,208,129,121,17,174,174,12,238,15,15,44,177,134,88,212,133,26,251,66,228,158,68,63,201,80,197,136,238,166,55,44,230,112,161,105,16,36,191,209,244,115,192,66,120,244,192,85,39,115,57,38,176,28,132,239,204,161,214,205,194,68,89,53,106,196,129,14,123,239,18,199,130,39,241,49,181,246,48,52,53,213,81,247,30,87,205,3,34,239,120,226,3,126,252,58,17,187,143,30,247,67,195,18,187,197,223,49,16,210,115,244,241,192,141,15,155,45,32,98,123,195,27,173,33,10,122,71,7,163,246,132,111,241,77,49,20,137,154,148,171,7,155,140,179,236,45,212,64,209,250,20,91,82,33,206,39,33,204,185,152,51,175,38,84,159,90,100,50,166,168,
151,141,57,122,205,118,38,19,156,30,136,107,26,14,162,70,38,16,139,71,7,78,134,63,202,208,12,187,202,113,76,209,206,92,118,117,146,97,161,113,62,164,186,187,217,212,216,89,181,179,79,98,34,90,82,119,45,47,220,134,47,253,96,21,152,193,155,91,90,100,103,210,71,147,221,18,147,133,195,36,208,87,95,76,182,144,180,83,243,173,105,94,56,159,177,164,49,170,44,133,202,7,170,231,93,102,158,228,99,32,14,67,249,97,128,122,83,55,31,171,112,119,23,135,51,254,148,165,154,32,105,240,49,33,105,42,227,135,120,33,59,198,61,145,17,232,13,95,152,169,236,187,38,200,160,184,172,29,167,244,203,13,88,214,110,62,239,35,116,125,205,190,151,91,18,223,228,23,149,125,195,230,253,53,222,121,56,28,218,192,24,34,203,77,115,250,192,242,120,198,139,224,226,92,108,170,132,41,33,112,230,248,26,2,69,58,226,89,77,234,170,134,129,143,54,8,53,255,185,13,146,195,19,85,92,118,37,32,148,59,183,25,215,28,202,113,97,191,25,132,115,25,194,248,141,39,
34,94,224,225,226,13,222,114,179,109,103,251,24,160,109,106,254,12,111,151,238,161,204,215,152,40,11,104,49,236,228,97,138,205,207,240,195,46,180,153,17,173,102,161,234,115,236,54,229,122,203,115,132,2,65,227,26,130,211,187,240,144,121,41,226,0,65,162,68,153,105,93,34,6,165,144,42,212,81,60,190,192,27,183,34,54,233,125,41,100,98,118,118,133,74,168,158,132,74,186,2,225,176,212,22,16,41,201,198,173,226,38,129,72,152,185,234,87,226,2,219,112,118,192,30,151,106,220,68,223,45,130,82,160,4,247,105,25,211,148,183,47,57,233,209,192,194,133,81,238,166,7,134,248,166,62,125,39,181,206,33,249,3,142,127,38,49,138,165,113,191,40,118,225,35,102,200,251,76,52,55,228,87,238,94,192,232,181,57,185,95,172,68,225,103,16,176,190,224,182,87,72,35,56,169,83,139,82,53,211,67,138,8,22,167,85,51,200,139,62,159,106,97,139,100,76,68,38,102,111,210,148,85,15,208,164,164,34,153,80,135,6,179,111,187,253,28,151,46,190,145,202,28,167,42,253,
19,213,228,78,90,82,29,89,239,237,189,154,98,151,228,33,140,21,73,45,251,122,136,232,26,73,39,126,86,39,163,169,110,4,60,68,94,91,120,175,43,18,164,231,231,142,137,94,225,52,72,15,234,120,205,109,9,11,59,143,114,171,206,234,102,97,247,12,189,121,216,177,107,135,40,133,43,53,64,98,132,10,172,216,132,20,245,37,23,57,243,4,177,161,105,239,159,223,145,2,17,14,29,95,228,220,87,236,135,168,204,220,5,231,80,6,164,122,237,140,193,43,74,235,176,115,47,135,221,141,249,2,11,236,189,172,199,45,222,117,16,167,38,38,103,159,109,214,233,14,207,160,179,101,163,54,155,9,83,156,66,191,2,35,30,157,91,96,246,42,186,55,81,39,53,140,77,172,178,223,171,59,244,115,219,66,103,214,121,137,195,242,25,113,98,63,152,32,123,57,108,67,68,220,215,147,216,54,157,67,167,37,106,23,176,193,161,47,182,27,76,147,27,76,22,10,20,219,26,109,96,180,53,124,13,135,192,42,183,252,119,18,49,239,20,169,81,29,220,227,211,209,153,37,203,233,
219,88,157,254,121,201,136,65,66,68,116,132,89,224,166,170,250,4,131,75,234,197,91,165,108,36,102,75,68,219,114,100,116,93,66,19,130,169,143,146,169,144,159,194,247,85,37,92,56,7,153,27,37,249,231,249,68,205,29,154,137,80,1,222,158,192,203,28,200,195,74,151,196,134,104,168,234,30,13,36,22,118,66,238,150,126,130,199,237,167,108,222,92,207,253,155,14,123,90,48,20,100,36,55,237,166,213,111,182,43,182,203,82,87,251,62,213,146,48,244,230,185,125,111,111,19,115,87,113,221,50,204,251,206,28,111,199,235,111,108,215,105,226,165,239,94,62,245,202,47,150,41,121,38,149,154,93,39,43,56,237,130,155,11,72,182,103,99,169,236,86,176,121,62,192,70,224,232,62,213,125,152,129,185,178,150,212,168,63,42,196,199,126,135,30,151,187,241,56,105,39,55,119,77,53,237,202,165,157,158,70,238,17,141,34,71,211,133,237,94,16,57,154,220,132,7,115,158,98,112,247,238,6,222,115,179,181,63,211,229,185,162,5,4,177,189,213,42,43,218,219,27,34,23,4,33,
26,177,65,169,132,239,128,207,128,179,55,248,178,5,106,235,218,121,103,174,159,237,161,16,81,163,4,36,117,163,45,82,51,2,93,137,187,44,194,83,79,201,127,69,87,150,7,214,160,212,206,211,209,249,27,125,52,168,237,59,58,158,164,125,140,109,126,190,123,125,75,63,115,99,135,90,45,20,5,222,50,228,47,211,144,189,35,164,217,175,104,204,135,116,200,248,104,136,98,9,108,164,219,221,156,85,71,228,222,233,82,35,203,189,181,11,180,11,149,125,29,135,87,136,147,16,194,222,92,237,53,222,110,67,53,198,185,166,185,129,39,242,182,244,174,17,149,4,101,29,117,43,125,30,74,202,187,109,194,110,144,19,253,224,92,35,112,27,120,200,170,209,55,98,71,221,216,100,40,96,186,170,228,27,216,214,32,5,230,111,102,245,177,43,214,46,255,12,186,13,183,76,142,29,73,102,215,238,157,211,199,51,116,218,15,109,18,52,89,169,31,166,74,116,209,117,72,246,200,115,67,204,214,125,241,49,72,136,52,215,109,88,214,216,67,46,138,40,97,184,157,27,15,98,46,12,
20,195,40,155,73,90,32,178,98,201,195,35,92,74,100,154,29,170,232,84,24,118,164,70,163,155,108,106,122,151,196,227,27,37,107,167,209,15,158,163,104,56,81,11,157,198,220,81,142,90,100,166,180,60,240,138,101,219,123,201,102,185,236,60,62,234,113,235,228,163,163,72,78,149,189,58,46,3,181,191,226,212,145,46,59,156,197,227,253,216,38,24,113,227,106,195,99,119,81,132,71,164,75,109,140,230,36,31,229,162,183,45,219,119,22,61,55,142,69,215,176,24,155,23,99,181,122,6,9,176,235,226,195,113,175,173,81,78,119,107,176,54,36,65,158,151,208,3,14,164,141,217,61,108,30,89,121,76,116,143,181,27,184,202,123,203,102,142,207,16,9,57,217,23,67,247,165,181,231,191,23,143,56,172,184,97,94,234,43,217,99,132,86,161,180,79,193,136,133,235,38,136,243,44,81,22,62,228,164,208,217,52,122,82,195,177,55,131,131,148,50,216,120,118,84,64,107,246,147,194,34,171,224,198,111,137,15,192,20,132,115,68,5,169,111,141,212,45,43,143,56,67,134,153,156,81,
164,205,148,19,188,104,230,4,46,234,7,70,66,19,137,63,140,224,180,180,131,122,70,169,18,2,229,125,96,202,169,148,122,74,11,208,244,8,206,249,14,110,31,186,171,223,229,15,231,44,95,91,153,48,95,146,94,39,14,166,56,233,44,85,246,77,78,214,184,229,213,15,116,66,47,27,168,223,32,21,75,144,214,203,135,81,167,214,24,194,92,53,246,26,76,107,212,112,108,65,49,29,27,51,167,52,18,151,139,28,157,142,160,167,219,220,18,154,232,211,11,122,95,50,188,29,12,58,8,44,29,51,100,155,149,51,206,17,156,172,97,241,226,90,63,30,187,153,18,28,134,236,59,222,157,248,178,86,75,64,194,17,66,162,187,161,43,171,123,147,124,12,1,49,9,70,197,164,70,6,221,119,195,45,178,4,209,187,219,56,24,245,17,68,38,213,116,53,23,41,96,203,22,44,76,181,102,182,8,141,68,50,187,231,192,113,51,23,135,141,29,203,245,116,172,98,91,6,174,203,224,157,209,207,71,12,35,252,171,162,193,222,79,249,10,25,20,110,180,199,67,106,249,94,25,178,
90,185,78,77,250,234,165,57,112,172,56,173,211,228,115,103,80,44,185,29,23,102,151,59,100,14,47,14,194,15,150,112,159,212,110,75,27,33,198,94,209,239,176,119,172,170,57,187,221,153,49,78,3,135,195,72,19,238,152,159,53,85,92,91,243,20,9,186,23,77,40,13,79,39,27,230,223,195,8,254,67,90,118,170,19,182,182,244,3,247,24,119,215,184,29,214,202,246,155,173,249,21,191,77,153,29,64,183,109,210,192,84,6,199,115,9,173,86,86,81,226,183,42,155,28,175,251,166,212,73,44,188,69,22,207,133,59,115,96,235,54,189,36,23,104,157,74,154,218,93,25,156,215,104,67,83,166,104,38,121,152,65,160,129,46,156,35,218,145,0,77,111,37,234,71,29,200,93,222,147,64,247,198,193,118,121,247,224,204,197,226,96,195,140,18,36,175,184,177,68,121,203,232,217,207,129,161,5,181,233,156,230,190,186,178,58,187,35,162,68,101,155,239,81,81,209,18,36,88,20,116,183,227,101,160,107,94,110,221,32,55,87,29,235,98,111,121,186,48,181,110,21,105,100,195,171,
221,169,52,38,187,224,32,7,119,237,177,43,29,45,83,101,155,45,156,13,33,40,1,232,206,107,156,25,111,92,88,82,34,72,136,99,83,36,191,126,71,6,23,105,253,250,67,23,41,113,126,138,12,67,174,65,187,42,130,219,178,121,13,167,104,26,18,20,233,2,235,183,220,187,16,3,48,179,65,239,128,20,114,176,223,171,42,147,71,217,66,210,127,7,183,87,228,105,2,8,77,159,204,60,231,166,26,207,123,117,180,141,181,240,27,122,56,140,140,181,6,131,53,26,97,228,59,216,97,32,225,160,168,122,7,153,56,35,35,207,224,11,252,168,29,219,222,104,226,217,178,224,61,209,140,207,109,131,91,110,84,219,181,0,26,62,255,34,40,155,208,52,14,204,56,69,84,197,199,124,126,252,168,97,182,94,44,193,162,238,153,147,231,113,33,48,232,91,103,56,119,199,128,154,175,97,82,182,40,229,206,154,71,243,197,209,141,233,172,117,227,205,8,27,237,61,230,8,39,25,238,49,205,46,186,207,75,137,163,250,94,196,173,107,234,69,40,109,51,205,213,149,171,155,223,223,
52,45,17,89,40,252,112,17,15,222,43,199,24,74,26,207,116,145,61,17,210,6,207,108,61,111,203,177,123,90,89,20,165,189,242,179,32,45,249,36,63,236,7,14,236,233,170,115,99,203,154,108,133,137,177,45,7,249,56,113,125,161,132,185,88,160,243,242,117,33,231,118,57,172,115,3,68,38,36,240,14,27,10,212,73,25,110,47,177,56,103,73,15,153,146,201,214,10,60,66,38,98,228,100,38,189,116,46,213,141,119,132,185,178,176,199,177,142,200,218,134,195,5,228,121,8,42,104,230,204,82,222,206,37,36,96,229,144,55,156,126,31,182,2,202,241,74,116,173,229,216,124,185,139,204,140,148,251,234,52,97,159,127,159,113,141,132,61,68,226,44,48,230,141,54,236,206,35,107,57,149,217,150,5,238,192,61,234,214,226,240,212,15,4,254,253,22,151,219,237,47,227,118,100,32,231,203,43,139,241,46,217,12,159,93,165,193,245,124,0,116,64,139,231,184,25,23,189,216,27,149,218,233,19,144,98,55,161,214,85,227,211,13,14,125,7,178,105,229,121,192,163,76,9,222,69,
195,55,174,112,136,105,172,129,20,13,120,41,179,67,164,146,220,78,141,220,202,62,140,220,231,210,41,250,90,33,17,139,25,113,195,146,203,81,139,165,199,248,126,164,152,28,35,172,7,60,204,165,69,67,150,17,14,52,105,36,164,15,130,129,134,113,31,188,226,33,31,186,71,68,161,182,150,246,177,133,45,202,2,212,180,57,195,197,141,94,144,83,217,182,9,109,27,119,7,230,97,29,65,164,163,207,17,3,111,179,121,61,119,238,112,184,181,148,112,94,156,19,54,111,6,234,228,66,192,11,86,93,229,217,245,148,218,107,156,166,198,144,70,99,177,36,227,235,215,215,35,162,234,38,121,47,221,152,59,193,76,51,21,92,158,132,114,148,213,127,37,112,195,38,97,190,92,59,62,172,89,88,23,246,18,225,242,152,169,11,29,158,237,120,57,153,52,66,112,121,57,100,42,101,13,146,173,160,173,202,209,82,57,98,87,110,185,23,178,75,87,205,116,24,113,80,206,29,104,71,147,46,223,104,41,230,69,30,202,32,227,9,102,80,165,131,209,54,113,214,4,137,22,59,200,126,
217,42,178,66,186,24,39,41,2,51,210,88,81,153,121,200,15,236,147,99,232,206,158,10,38,216,170,208,149,181,14,52,59,227,187,142,20,173,252,205,196,53,51,200,91,123,190,43,168,116,47,44,3,202,244,48,149,163,178,10,154,161,222,145,97,140,184,181,237,148,54,142,79,184,244,122,113,233,5,148,119,12,169,207,238,121,222,233,110,218,45,245,74,19,129,44,129,145,103,144,44,219,48,177,135,171,19,120,69,166,248,181,11,146,130,192,168,229,9,102,153,191,185,171,11,210,121,252,108,84,89,24,246,229,215,123,39,14,173,111,164,153,113,247,239,156,249,3,50,133,50,172,13,27,164,128,182,57,55,116,121,209,192,200,19,207,56,79,107,4,208,21,206,226,164,142,200,210,2,121,192,91,64,130,94,103,150,124,19,177,228,105,246,139,205,170,52,228,184,119,165,199,103,25,134,148,76,39,7,50,215,156,251,209,25,87,176,175,73,35,76,188,80,50,160,136,113,20,229,225,224,56,150,1,177,78,118,38,80,200,190,172,19,80,161,195,149,219,43,246,181,222,191,219,58,14,
130,60,87,104,145,117,247,248,28,25,184,38,157,245,210,121,137,151,76,226,10,220,61,144,77,126,149,72,11,186,158,17,24,165,192,145,101,247,4,194,229,220,64,146,237,180,124,71,117,87,168,111,75,235,79,26,16,42,124,42,241,230,210,252,19,51,41,118,144,97,86,178,18,100,110,103,150,240,90,44,200,49,100,234,72,18,59,136,4,199,19,75,154,14,29,108,137,118,35,238,113,195,29,154,32,215,142,76,232,69,140,189,220,77,241,222,78,191,159,214,11,222,253,88,197,205,107,233,59,122,161,127,211,10,89,90,103,4,251,201,61,67,154,116,235,54,50,84,136,166,80,237,59,114,163,138,110,186,156,17,194,89,54,44,144,106,169,54,235,155,167,71,206,219,133,227,142,80,15,206,135,150,158,41,163,146,142,25,250,105,92,90,24,23,250,2,72,42,51,56,87,55,15,106,101,22,54,231,109,10,24,181,24,200,191,53,30,217,237,204,116,134,103,146,194,229,51,179,244,40,96,138,21,206,135,252,201,185,200,121,43,81,245,134,149,97,102,86,244,11,143,9,220,218,98,127,
124,87,61,66,93,29,108,115,148,74,115,191,185,227,12,66,83,173,221,19,89,55,87,224,33,194,136,96,91,9,47,220,39,142,212,103,165,35,190,130,40,212,216,153,59,23,132,125,229,157,127,163,105,143,134,121,39,155,45,134,171,193,34,55,33,105,131,55,62,49,116,178,200,221,80,140,115,149,197,207,209,225,146,53,118,16,43,155,78,146,3,71,201,25,140,92,167,78,142,37,215,30,250,120,151,169,181,231,178,27,10,216,85,56,133,22,70,156,14,140,218,40,76,83,218,228,160,223,39,223,65,147,75,93,157,11,171,183,234,189,109,231,45,27,185,215,164,80,70,142,170,22,163,159,162,108,198,184,177,216,210,111,94,168,23,249,66,0,118,195,31,12,189,227,219,233,134,125,236,11,71,149,150,97,47,53,106,217,115,164,29,192,18,210,160,118,115,74,60,44,121,125,210,115,117,21,125,199,168,22,195,217,30,200,19,158,209,10,122,58,27,151,196,142,244,97,40,36,205,145,184,238,71,33,196,134,94,234,129,146,122,215,233,115,124,38,83,143,35,130,28,129,28,92,243,114,
65,25,211,33,38,133,142,54,60,99,219,108,28,135,36,20,26,36,146,55,136,171,128,178,233,148,8,223,158,105,74,25,27,125,247,210,194,10,210,107,162,242,198,149,146,186,139,164,229,23,216,180,132,113,65,174,109,43,116,165,49,36,75,113,221,147,79,204,17,219,210,234,129,64,119,41,194,251,241,88,47,167,40,111,212,10,227,134,166,168,183,147,211,135,148,125,230,38,122,191,223,239,47,150,197,165,177,192,221,43,41,66,14,1,84,207,113,156,57,110,108,182,83,228,29,15,121,126,183,201,240,11,72,188,62,212,135,135,83,144,135,190,132,60,236,60,88,24,47,243,70,97,190,149,198,41,178,254,177,150,17,89,250,41,32,12,184,147,66,50,229,24,225,120,58,27,156,114,28,233,250,102,102,233,207,13,170,26,243,45,99,235,180,67,26,26,233,91,148,136,91,223,133,147,156,38,186,103,46,221,56,57,187,74,13,53,6,187,69,193,80,116,242,195,173,248,204,233,43,51,39,36,59,132,123,37,147,88,138,194,221,248,142,138,65,29,243,46,54,164,245,11,135,226,202,143,
144,160,115,94,109,26,52,244,49,107,125,167,87,105,14,29,235,199,166,130,251,170,133,116,114,32,42,101,56,40,29,178,48,232,35,138,208,27,47,238,197,174,10,209,17,117,114,102,219,10,165,55,55,114,165,34,95,87,168,91,109,110,183,74,225,108,162,202,226,67,253,142,21,159,84,87,125,123,216,86,140,228,82,100,110,193,5,202,166,172,182,11,109,182,207,142,248,3,216,21,167,101,42,166,13,133,30,5,189,117,181,115,46,60,185,35,76,45,124,171,125,226,38,89,170,114,187,105,36,133,151,6,250,16,98,43,147,140,108,228,78,243,165,164,205,113,228,179,204,145,90,84,52,19,118,95,88,48,114,162,116,56,59,147,139,128,118,78,79,111,209,150,144,98,18,231,32,55,57,64,210,129,212,23,151,142,12,107,216,102,76,53,109,24,236,4,172,31,179,198,218,115,176,139,168,159,11,174,20,2,99,184,8,180,232,182,30,113,180,192,48,181,214,176,250,166,187,52,156,131,210,180,109,89,178,34,171,242,6,73,74,190,68,238,81,45,215,181,225,173,211,113,74,63,151,38,
53,55,10,213,65,159,220,140,212,198,142,18,171,124,36,9,167,111,78,143,40,60,54,214,7,25,193,218,241,29,3,223,83,86,101,149,247,157,76,44,119,226,65,248,77,172,216,17,212,179,4,156,63,128,65,116,55,10,14,164,79,232,81,219,142,21,129,210,29,241,86,134,27,100,118,42,58,166,112,143,233,46,9,175,70,49,49,108,44,105,30,182,145,97,209,244,50,142,155,74,210,228,154,110,187,44,220,215,53,58,139,133,224,4,193,161,196,36,74,68,51,1,230,224,166,9,57,134,190,56,193,150,170,163,148,159,125,69,145,204,41,145,203,61,231,46,237,244,28,115,133,232,43,182,55,73,182,92,121,160,115,220,117,98,189,61,101,147,98,176,24,151,7,185,203,219,162,217,22,213,236,154,14,70,157,195,170,56,59,168,220,129,207,157,98,60,215,226,12,67,199,147,100,13,46,22,201,119,135,80,223,80,90,172,140,203,248,139,182,6,130,130,228,125,126,21,153,166,72,147,96,52,226,221,252,174,123,193,101,117,45,84,20,137,194,218,229,10,100,187,16,204,190,42,161,228,
187,233,110,174,60,162,148,104,231,180,225,121,111,82,107,93,13,67,39,6,139,77,119,237,40,220,24,141,1,83,142,211,150,31,209,114,75,236,205,253,93,115,50,208,178,11,204,97,124,64,178,137,168,155,237,2,111,164,77,233,23,249,139,203,184,128,34,235,48,165,165,12,108,179,213,106,9,40,144,155,25,129,8,151,231,213,153,9,124,146,184,71,206,125,138,56,167,188,43,181,85,173,221,68,27,179,144,209,211,250,194,126,208,26,170,65,161,146,67,136,216,163,176,70,59,106,147,48,73,61,7,199,35,240,60,31,4,111,130,93,30,93,244,34,39,128,75,25,59,7,228,41,227,122,79,136,224,208,208,90,239,40,194,52,132,248,251,68,228,77,142,212,144,119,201,114,91,190,96,230,81,226,80,79,33,147,191,26,135,247,114,120,59,28,135,75,121,251,66,8,199,37,39,27,239,209,18,233,46,91,156,244,207,133,46,221,148,46,185,222,8,22,6,240,73,167,137,171,95,90,237,234,11,40,246,194,2,30,204,51,196,77,15,200,176,127,22,175,158,88,78,211,66,79,213,153,
139,80,34,68,113,154,145,8,117,47,119,130,71,55,147,246,165,54,166,106,34,218,227,134,210,192,84,22,43,37,108,218,135,25,21,67,151,74,80,54,90,84,48,206,186,66,71,139,226,167,237,238,50,90,121,218,222,153,59,189,119,161,42,116,179,32,23,169,65,219,218,20,36,117,173,41,116,134,46,239,42,70,132,83,97,124,42,184,176,21,118,237,167,212,250,38,247,98,74,171,206,35,179,230,66,228,220,223,60,12,115,166,60,107,251,112,175,123,69,132,55,113,6,135,14,44,62,143,116,180,70,49,146,116,110,245,179,23,206,107,147,253,148,146,13,169,121,117,245,34,12,199,99,232,72,104,11,214,198,241,242,99,213,212,184,43,214,109,205,44,185,4,222,21,199,150,55,91,153,198,253,50,229,180,238,251,251,117,33,172,122,171,76,34,40,155,80,95,146,65,69,54,160,201,48,100,22,73,236,158,183,123,86,29,252,144,161,83,106,68,167,199,199,156,249,233,226,62,119,196,93,58,54,172,211,145,206,201,80,37,176,211,179,41,74,185,228,137,40,98,200,133,15,209,160,80,
79,103,249,29,9,130,96,165,214,14,201,242,13,210,209,222,117,166,194,219,67,80,75,65,135,235,48,141,62,57,101,147,160,99,147,84,35,96,79,73,113,8,217,25,57,185,169,92,220,152,182,154,237,108,36,229,234,201,134,193,78,86,27,20,40,74,165,234,245,158,194,231,78,243,39,213,112,8,126,28,232,158,12,4,48,78,52,63,75,216,164,244,184,95,114,168,48,103,144,167,58,91,194,226,215,30,180,149,199,39,206,173,48,60,42,41,122,229,8,56,100,211,67,221,244,64,61,215,114,175,20,146,40,82,206,182,144,34,220,161,65,35,140,24,148,201,164,146,189,201,240,161,179,118,185,199,160,136,194,221,140,27,248,38,170,29,232,105,7,52,14,95,55,228,160,234,42,137,160,180,123,52,48,52,143,149,204,202,37,174,212,104,147,239,78,170,142,86,117,66,169,158,167,241,246,93,134,117,179,133,77,50,178,56,198,236,14,69,17,79,110,152,33,151,104,43,173,106,250,220,174,78,80,33,94,42,228,138,156,36,42,119,107,61,146,50,92,99,225,26,21,157,203,32,145,121,
69,54,204,228,225,237,227,112,142,41,104,169,59,165,124,69,68,186,149,169,142,72,33,89,185,56,73,159,81,17,44,15,90,145,197,238,182,58,27,182,147,92,157,203,154,117,156,240,40,144,19,116,221,129,17,127,216,198,248,121,236,145,56,167,154,212,178,84,233,108,142,186,84,80,15,231,252,67,6,201,80,162,15,69,157,235,74,97,81,139,112,66,225,200,109,193,114,136,10,218,56,59,190,178,42,120,33,47,154,5,144,196,5,244,66,196,161,30,230,81,150,69,226,226,128,194,146,248,100,103,190,101,209,237,216,150,241,45,72,153,108,32,59,184,57,10,165,69,110,165,139,200,136,162,124,205,3,186,86,142,140,94,120,70,48,247,188,60,185,31,222,43,6,227,41,107,11,121,132,205,153,246,79,14,173,36,169,197,67,68,230,47,89,244,248,222,52,103,142,32,229,170,241,192,210,180,144,52,226,9,93,168,114,5,96,74,132,162,113,118,226,173,92,138,81,225,84,8,97,133,48,36,26,1,20,215,185,57,122,8,0,215,228,56,7,207,63,168,49,44,37,167,178,31,94,162,
142,165,30,17,149,163,142,146,205,121,120,124,159,49,46,222,16,168,249,157,221,158,222,83,232,158,18,66,147,9,106,158,108,94,74,157,193,13,230,216,223,106,107,100,19,61,121,76,114,37,36,91,126,27,56,222,106,196,207,148,37,25,80,207,42,69,173,56,74,208,105,251,216,73,169,87,99,172,27,240,188,145,95,52,160,230,52,51,233,2,226,187,113,167,172,4,203,48,136,226,56,74,13,5,73,92,33,212,157,184,198,12,7,105,236,243,228,23,86,89,4,222,15,110,151,46,42,139,180,168,20,84,111,212,162,121,219,86,101,207,120,47,35,84,12,71,41,202,158,94,88,234,69,153,54,191,165,144,41,29,168,91,137,125,148,150,92,60,214,166,39,24,67,171,39,105,201,9,61,217,198,2,230,56,21,4,143,187,179,110,233,52,161,132,207,218,160,40,221,119,17,196,106,114,185,243,147,157,112,27,82,241,91,181,121,217,193,94,74,210,141,30,230,186,205,25,140,97,201,147,235,172,145,30,215,59,40,8,174,142,108,231,200,210,157,86,83,31,214,219,21,91,185,177,119,17,
75,193,179,90,253,181,1,146,244,75,231,236,147,131,69,165,201,180,36,46,50,37,168,229,216,128,25,55,124,100,162,98,95,157,161,210,7,27,245,61,170,49,8,149,68,65,73,5,206,210,74,136,117,212,94,56,163,50,148,71,172,174,169,120,150,56,113,119,29,113,81,112,193,87,88,178,200,48,114,103,152,242,233,201,180,24,113,167,213,138,30,136,77,73,211,126,249,228,126,54,93,78,115,167,203,235,230,176,94,63,221,187,178,154,170,254,51,133,210,127,118,167,129,146,46,131,236,96,92,125,173,23,239,22,185,59,213,176,202,117,50,246,180,43,203,72,170,214,205,59,101,97,68,45,176,75,99,98,114,125,223,38,238,250,72,84,189,110,109,18,147,162,142,77,8,20,6,64,12,83,179,145,19,118,132,151,72,84,251,27,247,61,156,177,186,67,51,115,165,137,2,62,128,19,118,11,188,228,249,142,98,68,50,56,253,27,97,74,220,187,7,21,32,85,19,230,245,168,3,33,99,135,57,79,236,68,126,27,117,143,81,86,133,6,236,212,164,88,120,250,85,127,76,68,203,55,
10,210,142,246,24,43,203,131,29,160,1,195,83,46,55,84,163,121,189,103,211,185,24,1,52,44,236,163,85,243,60,251,53,13,85,189,170,136,43,13,71,250,26,140,109,149,237,6,51,156,126,205,240,108,229,153,244,233,37,5,115,144,206,7,93,210,221,90,20,33,60,111,50,52,195,105,221,218,142,82,41,173,17,15,180,204,29,119,197,158,16,27,187,41,184,213,54,123,40,158,36,166,191,143,123,227,221,102,182,139,88,228,9,135,157,193,197,134,182,69,200,10,33,237,122,213,134,236,7,251,164,70,228,86,98,146,4,18,53,68,56,225,82,122,160,234,242,200,231,156,184,81,178,131,110,188,125,16,131,90,90,218,4,7,71,178,237,95,41,1,111,210,73,25,54,221,81,1,105,85,34,157,7,248,104,196,97,96,31,64,64,120,196,221,61,190,105,156,7,198,173,104,136,55,224,184,106,202,52,203,84,53,211,203,89,95,97,103,95,153,28,247,64,213,30,220,172,192,112,91,55,240,110,100,112,122,230,19,95,226,110,167,189,123,7,206,181,67,161,228,242,206,162,172,2,225,
111,167,47,139,33,158,242,38,137,214,11,196,132,8,147,33,144,17,0,71,46,163,93,243,227,197,108,126,39,142,68,34,36,214,181,244,242,146,117,108,186,200,223,108,33,153,62,104,119,16,71,106,46,111,33,82,82,168,132,129,42,155,224,50,84,37,180,17,44,97,1,187,224,147,44,154,183,137,16,129,231,25,73,235,194,48,83,79,91,122,32,238,218,125,92,205,193,7,16,68,15,249,196,198,159,7,103,155,96,155,228,38,22,59,86,115,147,56,184,43,37,61,216,178,136,155,83,180,50,62,225,11,32,49,45,25,209,138,222,249,37,112,55,84,56,86,47,248,36,238,168,204,179,166,184,202,61,170,94,117,105,130,219,11,20,70,152,210,50,224,147,87,182,116,22,166,18,66,165,187,133,109,67,25,93,56,63,154,108,223,77,118,212,98,34,85,135,225,76,171,138,228,113,128,51,107,193,45,190,176,220,11,43,133,179,103,120,26,18,166,137,222,16,65,198,77,97,158,93,106,66,90,24,125,154,130,199,116,146,11,194,45,134,106,174,110,234,166,117,187,159,81,23,164,68,22,
140,218,90,150,121,157,69,26,78,211,76,241,13,99,99,230,100,55,117,62,212,106,104,102,178,14,141,64,183,48,132,249,133,111,70,101,18,48,106,55,7,157,235,161,172,144,147,240,204,58,14,59,181,48,34,61,23,19,157,12,125,229,115,83,204,199,207,199,67,129,177,90,129,8,94,24,21,91,110,246,56,50,231,201,147,106,202,112,175,162,139,111,7,38,130,82,50,144,9,245,219,119,89,41,252,20,123,136,28,200,165,225,173,22,65,28,38,130,100,102,36,16,169,213,210,28,16,150,72,34,232,97,1,74,34,146,7,52,110,87,124,223,203,143,151,91,84,2,146,21,183,110,218,118,178,148,189,227,158,20,197,205,73,21,16,116,190,16,165,75,206,211,105,90,165,176,65,0,171,123,209,222,225,222,222,146,100,171,219,33,119,125,19,236,14,163,198,250,130,147,122,29,212,4,199,100,230,184,118,121,65,48,66,207,233,3,180,88,153,94,228,202,21,61,38,132,183,160,230,219,139,34,161,185,101,14,210,54,225,203,45,76,49,67,150,33,7,120,9,254,202,51,245,139,8,204,
62,185,107,135,122,224,206,89,104,68,84,132,48,62,209,238,213,18,86,68,193,157,138,76,30,156,26,117,59,98,171,244,160,209,107,105,133,230,166,70,151,25,135,12,23,114,89,146,16,141,103,19,237,58,248,198,131,182,41,57,92,165,164,223,208,154,224,84,169,134,236,15,42,131,140,171,139,81,201,119,25,84,232,197,78,77,153,9,51,97,134,179,203,178,138,22,101,137,198,237,194,13,14,236,64,117,10,85,21,57,121,199,176,84,109,80,245,172,159,45,201,42,228,62,111,94,153,129,43,8,134,26,148,217,164,192,14,64,244,66,168,85,111,137,239,57,90,168,193,127,127,77,135,12,181,87,199,135,214,224,141,238,220,174,222,117,54,142,55,240,244,88,123,207,68,199,178,7,52,242,165,33,52,202,21,161,89,123,75,95,31,192,136,97,153,121,175,58,36,158,105,55,240,138,211,32,247,140,83,147,220,200,130,21,56,67,200,220,172,88,52,150,244,174,210,116,114,108,82,187,173,218,59,36,22,92,186,81,116,167,112,161,21,157,198,108,39,207,142,237,122,174,8,230,224,245,
246,210,216,46,163,42,191,31,41,66,103,210,152,96,92,84,30,35,118,16,16,98,101,128,39,83,120,144,166,107,96,173,240,176,92,68,33,170,68,74,217,243,150,160,189,75,139,222,204,29,168,50,10,218,203,86,78,88,73,17,239,164,230,64,167,248,120,117,166,37,176,81,174,93,54,71,146,37,191,210,132,138,148,131,214,53,67,35,214,16,125,6,85,61,219,17,28,67,42,229,50,211,100,186,59,24,119,235,173,203,154,224,82,145,227,250,44,199,14,139,145,205,49,68,166,19,130,180,229,228,240,144,233,141,204,128,121,39,12,151,40,229,138,163,228,50,53,34,253,98,119,226,78,79,148,3,169,143,31,62,216,219,203,8,50,129,27,190,119,144,114,141,111,85,36,148,136,111,204,80,22,222,38,54,157,223,222,75,111,93,235,15,91,153,93,153,167,89,33,236,116,133,59,12,135,114,211,144,231,108,165,5,14,216,53,58,149,230,115,163,153,80,52,60,79,59,48,174,11,36,204,136,45,26,143,108,195,121,109,123,255,220,156,59,33,158,101,34,1,213,141,81,97,29,26,20,
58,156,237,92,173,219,66,225,154,18,235,89,44,186,209,238,48,110,34,231,230,89,239,248,16,123,148,178,156,115,73,231,55,140,235,185,37,16,178,148,92,76,129,47,27,29,237,152,238,75,140,25,117,162,179,146,119,4,4,169,178,7,225,30,211,49,42,221,200,182,173,59,189,222,208,120,135,56,206,145,110,238,66,111,77,7,167,249,212,177,172,123,116,172,101,135,78,209,199,248,101,157,35,191,14,141,245,232,161,78,221,155,183,169,185,210,118,227,240,132,130,225,201,76,146,142,138,116,109,40,39,181,176,139,98,33,7,178,150,226,104,250,94,207,199,75,109,68,124,182,194,54,94,77,115,31,167,247,125,116,68,184,230,129,196,82,222,224,9,202,147,187,25,118,68,88,113,234,240,62,169,211,76,192,227,99,251,118,52,99,65,14,202,74,194,205,189,221,182,153,24,164,174,46,81,20,251,16,21,109,74,84,210,50,234,58,205,39,88,130,86,34,162,225,33,233,161,173,64,114,74,246,240,8,27,89,28,210,196,167,22,125,18,53,137,92,136,35,218,45,244,9,97,234,148,22,
21,125,154,145,4,142,169,167,155,14,15,242,36,101,227,37,212,157,244,21,123,210,142,237,113,173,49,230,140,121,126,17,220,195,207,75,172,43,214,16,37,77,202,20,14,155,237,110,114,104,101,44,89,185,243,195,110,148,30,64,219,15,6,136,227,99,16,148,152,109,202,90,165,89,204,152,189,16,100,131,45,249,97,137,210,52,250,185,219,228,59,149,216,140,95,94,180,11,222,243,194,228,232,122,180,136,16,88,146,186,233,62,115,127,101,112,103,38,33,131,202,235,54,166,74,232,54,161,198,147,184,240,75,8,26,10,131,96,33,238,197,36,206,65,30,240,161,29,239,152,7,101,18,180,155,25,48,155,117,217,233,67,217,144,12,152,206,102,117,134,80,54,146,119,135,182,108,223,202,232,187,124,132,183,231,193,35,44,178,13,96,180,237,177,225,161,167,147,219,134,124,79,80,67,192,29,48,54,1,149,70,120,202,176,59,51,218,2,159,136,192,221,192,54,193,84,57,226,7,22,160,12,152,112,227,217,198,123,22,19,187,4,215,201,77,160,118,156,13,53,77,148,0,174,181,35,
23,182,231,121,144,227,100,74,82,179,8,66,48,174,229,10,218,206,76,124,71,96,3,56,232,173,140,76,252,135,17,209,91,89,141,74,199,54,128,253,194,131,175,34,140,19,64,156,123,13,140,189,217,233,66,217,85,252,29,198,178,157,47,34,81,22,246,132,54,176,11,213,6,210,192,220,81,241,107,183,103,109,113,173,239,200,159,6,175,93,217,195,101,176,162,222,39,156,131,55,149,28,128,250,146,95,1,104,174,72,82,0,154,15,36,1,154,43,146,36,128,230,138,228,129,44,95,68,89,8,50,250,134,229,97,84,37,200,86,163,51,208,138,15,117,96,7,1,178,175,70,160,129,253,97,164,89,49,7,120,147,87,204,1,222,233,21,115,128,247,205,138,57,192,123,185,98,14,240,38,174,152,255,11,220,135,128,228,215,184,128,78,228,80,194,189,4,15,37,192,61,19,190,149,224,65,154,10,136,150,11,143,59,117,150,43,66,21,134,192,237,99,38,184,1,84,29,147,145,6,39,18,124,205,44,171,232,196,181,174,4,207,168,53,166,194,139,253,253,148,254,212,93,198,6,28,
152,201,156,118,71,19,22,105,53,49,40,70,102,235,198,167,20,36,13,118,230,63,203,221,150,104,229,187,133,180,219,230,213,54,248,86,62,65,88,63,133,45,212,134,51,238,45,250,238,104,185,217,13,220,211,46,184,59,103,251,188,149,33,52,6,16,149,99,196,227,217,145,74,130,202,9,225,239,179,241,29,42,212,158,227,29,149,233,203,101,115,19,18,34,112,113,198,164,103,225,241,131,121,181,205,153,161,11,109,44,110,32,215,197,43,140,125,89,68,77,175,204,43,243,96,220,160,133,190,253,114,193,151,95,74,23,252,125,173,110,139,235,66,27,131,30,36,255,78,13,160,189,50,221,52,96,187,43,211,69,129,9,158,160,51,141,64,174,22,191,98,215,4,15,120,181,8,172,241,161,0,56,192,99,69,4,58,167,237,53,118,129,115,154,225,1,162,137,7,110,42,67,102,129,89,101,129,6,59,220,159,95,170,168,200,150,29,3,76,208,237,102,173,115,63,194,91,160,49,86,128,221,64,99,215,208,205,251,251,35,196,85,121,58,50,148,239,46,48,137,177,236,126,60,189,14,
65,243,4,143,147,224,133,85,247,112,136,42,46,112,186,8,52,108,57,23,160,35,131,240,150,134,184,46,158,82,57,131,168,119,65,228,179,160,4,46,98,223,195,131,77,44,125,46,209,131,84,78,175,111,229,14,228,13,248,94,8,72,182,79,118,170,240,71,167,139,45,200,173,27,201,15,132,76,224,2,143,182,28,50,217,118,225,45,139,198,189,239,142,33,229,59,210,106,227,1,126,127,46,190,178,143,218,70,219,245,109,196,113,43,190,91,150,89,2,40,65,56,184,238,119,196,80,2,120,32,32,175,48,97,157,14,14,226,40,130,7,138,124,141,192,91,28,144,158,215,19,158,183,19,175,159,191,119,95,255,245,244,146,41,90,194,119,122,166,218,31,62,250,217,203,127,251,227,181,213,207,191,251,241,191,249,254,195,224,79,126,252,163,127,120,252,171,245,159,124,252,248,151,235,239,189,243,254,243,103,47,95,173,189,126,249,195,247,190,247,228,217,171,247,190,247,122,238,31,94,189,120,242,236,151,171,201,55,163,239,252,8,160,240,179,63,123,231,135,63,248,225,15,254,248,79,
254,228,59,107,191,120,254,252,233,163,119,127,246,221,181,207,233,61,122,231,139,235,15,116,128,13,239,254,252,97,241,231,175,217,60,122,247,189,63,252,217,119,255,236,223,174,61,249,248,151,143,190,247,59,4,1,238,43,122,192,218,127,249,244,241,211,39,175,126,243,23,159,124,242,165,45,191,165,249,90,170,159,191,145,243,115,170,31,62,121,186,254,211,199,31,175,175,206,125,117,211,195,150,245,95,3,20,222,251,95,223,125,239,15,222,251,131,239,172,32,249,227,31,63,92,225,229,107,1,215,126,246,111,190,255,86,62,64,164,7,138,111,231,62,167,190,246,217,147,87,31,173,125,248,252,197,199,143,95,189,93,92,209,253,193,218,79,62,92,13,214,158,188,92,91,209,255,222,218,171,143,214,223,238,3,230,94,61,254,167,117,128,228,139,231,31,127,149,36,112,108,253,217,203,39,207,159,253,224,141,80,111,118,124,1,140,7,18,0,193,55,83,107,239,0,148,215,254,207,79,126,249,157,53,224,119,181,240,139,39,175,94,174,125,178,254,98,237,147,39,191,94,127,250,122,253,
57,176,240,226,141,12,47,191,243,163,111,48,138,191,3,16,122,245,45,86,241,187,143,111,54,134,223,210,249,23,179,134,95,63,168,235,103,192,232,135,223,184,231,55,255,140,61,159,61,249,224,213,71,15,251,126,250,233,211,167,223,180,235,163,245,39,191,252,232,213,231,219,222,90,200,195,189,94,2,114,126,141,137,188,255,252,249,139,15,94,254,224,237,244,175,191,247,232,237,240,55,191,29,62,112,255,237,235,27,54,63,248,6,117,252,213,139,199,159,253,253,250,251,175,254,230,201,51,64,33,171,183,111,208,196,23,125,246,47,159,63,125,254,2,216,247,21,237,252,234,249,147,15,30,180,243,69,178,128,126,222,253,249,106,226,231,15,211,143,190,120,224,189,63,124,139,217,183,104,229,155,117,241,237,26,248,61,200,127,211,242,83,64,230,255,227,107,8,252,214,178,30,238,255,243,215,48,124,110,89,239,63,188,125,231,91,113,253,187,231,43,20,87,177,238,201,255,245,229,64,248,175,5,234,187,63,127,224,250,243,181,135,159,207,197,253,228,249,203,55,177,11,16,5,136,92,
192,243,243,181,151,255,127,96,179,154,249,255,12,146,213,153,159,175,173,158,159,203,248,226,95,241,210,128,95,175,68,122,185,246,120,237,5,192,243,241,179,95,2,177,30,112,232,213,228,231,126,251,104,237,131,245,15,1,86,31,172,253,226,55,107,235,79,30,162,233,255,11,79,7,222,214,190,183,138,211,15,250,94,123,244,102,117,165,239,213,210,218,227,103,31,60,122,80,247,219,115,111,230,129,19,43,60,62,63,240,226,13,165,135,12,180,130,224,141,87,189,61,246,91,84,86,36,95,223,253,237,218,235,171,255,110,204,89,123,13,196,211,31,254,248,71,127,15,28,120,254,241,107,237,190,243,70,187,95,6,17,80,238,23,182,61,122,231,45,142,127,191,254,234,211,23,207,30,144,124,88,126,205,235,107,88,1,134,246,159,214,95,61,88,213,151,19,205,235,215,55,6,247,150,253,239,166,11,128,253,155,211,255,172,244,242,181,182,246,252,197,147,47,39,155,223,30,255,90,11,252,234,37,95,126,250,139,215,169,224,131,245,167,79,62,126,242,234,181,117,60,40,234,115,61,125,
77,182,127,96,253,77,49,31,184,216,223,173,210,246,55,39,224,175,56,220,23,228,254,79,127,241,231,128,220,192,19,144,251,187,175,97,122,160,246,232,139,212,254,121,233,246,155,3,251,91,32,0,226,175,43,145,7,45,175,61,255,16,128,228,117,201,1,120,207,55,231,200,39,207,30,191,2,234,172,183,222,179,98,244,198,123,30,189,45,122,254,241,35,160,198,121,67,234,37,224,149,143,63,120,239,251,207,159,61,253,205,27,208,222,160,245,245,176,61,92,241,47,62,253,240,195,245,23,95,3,219,183,98,244,133,163,255,3,99,180,246,181,32,125,252,252,131,39,31,62,121,252,139,167,235,95,239,110,63,121,249,159,129,114,241,131,255,7,102,245,121,53,247,230,232,191,96,41,247,251,113,123,235,100,175,94,124,10,4,227,15,191,30,149,135,216,246,57,48,107,143,95,172,226,246,203,39,31,172,127,181,136,255,61,160,124,187,209,124,59,40,111,16,120,125,250,13,14,175,95,254,135,66,227,181,72,223,140,201,111,125,233,155,76,229,31,191,46,219,191,90,255,248,147,167,128,
32,143,222,253,15,191,99,30,79,31,191,124,249,112,143,127,183,246,143,143,254,244,221,127,105,195,122,77,247,237,228,171,111,68,234,147,135,60,251,230,210,175,30,122,167,127,158,137,124,13,28,95,50,146,127,69,56,254,249,38,245,47,132,195,183,26,199,218,127,253,175,127,244,67,224,207,159,253,209,218,207,94,254,16,104,73,191,187,246,183,175,219,201,79,159,189,255,10,232,85,95,62,122,244,223,255,251,23,208,123,29,143,255,250,215,192,223,245,247,63,125,181,10,74,239,189,243,59,95,16,190,174,43,95,251,242,153,7,32,190,177,123,255,74,132,253,228,197,243,95,190,120,252,49,48,6,218,236,207,158,60,125,186,246,252,19,32,243,2,25,25,40,221,30,127,250,244,213,235,54,28,104,181,95,190,174,155,62,239,181,127,167,121,95,145,253,225,235,123,0,63,223,255,111,63,251,95,214,254,250,215,143,1,173,174,255,232,209,155,73,96,234,251,255,237,203,210,190,243,222,31,124,244,234,227,167,239,253,1,80,100,124,255,79,129,198,255,63,62,121,177,254,225,243,95,255,
96,253,215,235,239,253,193,163,111,78,247,127,245,226,201,175,214,255,230,201,203,87,95,40,183,254,252,197,139,199,191,249,249,218,195,207,163,255,240,85,24,254,244,13,94,159,159,253,154,26,236,25,16,2,128,227,175,239,250,0,208,227,87,31,1,80,61,95,123,12,96,243,193,234,228,203,239,173,194,205,250,139,103,143,159,174,74,204,21,32,171,49,48,251,193,250,179,87,64,62,1,42,26,32,37,173,14,191,252,205,75,192,182,191,165,106,121,255,179,15,190,112,129,175,87,47,176,231,235,5,253,197,203,231,79,63,125,245,90,59,107,207,30,127,188,14,36,253,79,94,172,191,92,73,241,236,151,175,19,232,167,47,94,0,175,43,53,191,191,254,18,80,225,243,23,255,180,90,251,224,201,170,106,127,254,226,91,138,131,191,252,8,216,244,54,156,125,254,77,235,155,99,251,195,254,71,239,126,67,88,250,166,143,78,207,159,126,176,254,219,42,241,31,190,96,150,43,121,223,251,159,191,70,228,149,50,222,126,2,122,125,252,141,249,61,253,227,127,255,239,191,234,196,47,63,125,
127,69,234,195,79,159,126,139,30,254,106,253,229,63,189,122,254,201,255,254,248,25,224,215,47,126,186,254,217,239,213,202,87,78,252,86,71,127,14,212,21,47,86,197,203,202,254,1,253,252,106,253,197,131,195,0,117,204,87,14,190,3,32,248,248,37,96,49,192,58,176,248,183,47,127,242,236,195,231,239,124,231,155,68,253,233,223,254,244,189,119,255,254,175,255,250,167,255,248,247,127,254,211,127,124,239,221,255,252,32,227,119,215,190,50,255,232,235,15,188,243,171,55,215,250,242,17,32,108,172,0,253,213,231,170,248,201,43,192,154,94,35,249,6,236,95,61,90,193,249,16,14,222,132,176,181,143,30,191,92,251,197,58,16,47,222,7,188,227,11,102,191,178,197,87,31,173,74,208,135,252,250,228,213,195,206,103,207,223,210,4,182,254,102,253,213,239,168,237,39,15,95,249,62,125,185,14,40,234,193,221,86,29,49,80,247,125,206,11,152,251,197,250,91,70,175,62,123,242,254,67,191,9,212,111,64,12,94,153,248,203,39,175,62,125,252,16,88,191,183,250,100,7,248,229,235,
248,243,154,201,255,244,192,229,201,31,253,201,15,127,252,183,63,92,149,129,95,184,197,138,230,203,181,191,124,245,226,233,123,63,250,209,223,189,182,188,191,254,21,64,243,229,59,223,249,241,234,179,228,183,222,249,179,143,128,241,227,181,95,124,250,234,213,23,87,87,142,8,232,117,245,25,19,184,215,155,213,247,1,183,253,197,250,219,181,181,199,191,124,12,92,225,229,243,223,101,240,102,211,23,111,250,131,223,127,9,128,201,155,19,64,236,254,203,143,158,60,253,224,111,158,191,124,245,31,159,191,255,41,112,139,183,90,88,197,246,85,15,246,108,253,51,32,194,1,205,230,103,0,226,128,81,127,111,237,233,202,243,94,62,254,205,247,214,0,0,62,254,228,213,223,254,111,128,17,190,174,150,63,123,252,101,130,175,19,197,151,100,252,209,107,213,175,3,62,191,178,230,117,96,253,253,199,128,62,191,64,112,237,99,160,173,123,249,38,163,172,63,253,96,165,211,167,207,159,191,92,127,243,173,23,32,253,54,147,60,250,191,1,88,38,3,238,

View file

@ -1,7 +1,3 @@
TOPIC("bsdiff$en-us")
#include "bsdiff$en-us.tppi"
END_TOPIC
TOPIC("Dll$en-us")
#include "Dll$en-us.tppi"
END_TOPIC
@ -26,3 +22,7 @@ TOPIC("SvgColors$en-us")
#include "SvgColors$en-us.tppi"
END_TOPIC
TOPIC("bsdiff$en-us")
#include "bsdiff$en-us.tppi"
END_TOPIC

View file

@ -4,7 +4,9 @@ topic "News and changes Log";
[{_}%EN-US
[s0; [*R+184 Functions4U. News and changes log]&]
[s0;%- &]
[ {{1441:8559f0;g0;^t/25b/25 [s0;# [2 2011/07/26]]
[ {{1441:8559f0;g0;^t/25b/25 [s0;# [2 2012/03/19]]
:: [s0;# [2 Added new math and geometry functions as Distance() and Angle().]]
:: [s0;# [2 2011/07/26]]
:: [s0;# [2 Updated QtfEquation().]]
:: [s0;# [2 2011/07/24]]
:: [s0;# [2 Added SaveImage(), PrintImage() and DrawRectLine().]]

View file

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